|
| 1 | +# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates. |
| 2 | +# SPDX-License-Identifier: MIT |
| 3 | +# |
| 4 | +# |
| 5 | +# Permission is hereby granted, free of charge, to any person obtaining a copy |
| 6 | +# of this software and associated documentation files (the "Software"), to deal |
| 7 | +# in the Software without restriction, including without limitation the rights |
| 8 | +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 9 | +# copies of the Software, and to permit persons to whom the Software is |
| 10 | +# furnished to do so, subject to the following conditions: |
| 11 | +# |
| 12 | +# The above copyright notice and this permission notice shall be included in all |
| 13 | +# copies or substantial portions of the Software. |
| 14 | +# |
| 15 | +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 18 | +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 20 | +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 21 | +# SOFTWARE. |
| 22 | + |
| 23 | +# flake8: noqa |
| 24 | + |
| 25 | +# import API ABC |
| 26 | +from ansys.openapi.common import ApiBase |
| 27 | + |
| 28 | +# import apis into api package |
| 29 | +from .activity_log_api import ActivityLogApi |
| 30 | +from .aggregation_api import AggregationApi |
| 31 | +from .blob_infos_api import BlobInfosApi |
| 32 | +from .blobs_api import BlobsApi |
| 33 | +from .bulk_api import BulkApi |
| 34 | +from .data_api import DataApi |
| 35 | +from .data_export_api import DataExportApi |
| 36 | +from .data_updater_api import DataUpdaterApi |
| 37 | +from .database_api import DatabaseApi |
| 38 | +from .graph_api import GraphApi |
| 39 | +from .help_location_api import HelpLocationApi |
| 40 | +from .identities_api import IdentitiesApi |
| 41 | +from .integration_api import IntegrationApi |
| 42 | +from .job_queue_api import JobQueueApi |
| 43 | +from .license_api import LicenseApi |
| 44 | +from .list_audit_log_api import ListAuditLogApi |
| 45 | +from .list_item_api import ListItemApi |
| 46 | +from .list_management_api import ListManagementApi |
| 47 | +from .list_permissions_api import ListPermissionsApi |
| 48 | +from .metrics_api import MetricsApi |
| 49 | +from .permission_based_access_control_api import PermissionBasedAccessControlApi |
| 50 | +from .record_links_api import RecordLinksApi |
| 51 | +from .records___record_histories_api import RecordsRecordHistoriesApi |
| 52 | +from .records___record_versions_api import RecordsRecordVersionsApi |
| 53 | +from .schema___attributes_api import SchemaAttributesApi |
| 54 | +from .schema___configurations_api import SchemaConfigurationsApi |
| 55 | +from .schema___constants_api import SchemaConstantsApi |
| 56 | +from .schema___data_rules_api import SchemaDataRulesApi |
| 57 | +from .schema___databases_api import SchemaDatabasesApi |
| 58 | +from .schema___discrete_types___discrete_values_api import SchemaDiscreteTypesDiscreteValuesApi |
| 59 | +from .schema___discrete_types_api import SchemaDiscreteTypesApi |
| 60 | +from .schema___display_names_api import SchemaDisplayNamesApi |
| 61 | +from .schema___exporters_api import SchemaExportersApi |
| 62 | +from .schema___expressions_api import SchemaExpressionsApi |
| 63 | +from .schema___global_standard_names_api import SchemaGlobalStandardNamesApi |
| 64 | +from .schema___help_files_api import SchemaHelpFilesApi |
| 65 | +from .schema___home_pages_api import SchemaHomePagesApi |
| 66 | +from .schema___layout_sections_api import SchemaLayoutSectionsApi |
| 67 | +from .schema___layouts_api import SchemaLayoutsApi |
| 68 | +from .schema___parameters_api import SchemaParametersApi |
| 69 | +from .schema___profile_tables_api import SchemaProfileTablesApi |
| 70 | +from .schema___profiles_api import SchemaProfilesApi |
| 71 | +from .schema___record_link_groups_api import SchemaRecordLinkGroupsApi |
| 72 | +from .schema___replacement_strings_api import SchemaReplacementStringsApi |
| 73 | +from .schema___search_masks_api import SchemaSearchMasksApi |
| 74 | +from .schema___search_templates_api import SchemaSearchTemplatesApi |
| 75 | +from .schema___security_groups_api import SchemaSecurityGroupsApi |
| 76 | +from .schema___standard_names_api import SchemaStandardNamesApi |
| 77 | +from .schema___subsets_api import SchemaSubsetsApi |
| 78 | +from .schema___tables_api import SchemaTablesApi |
| 79 | +from .schema___units_api import SchemaUnitsApi |
| 80 | +from .schema_api import SchemaApi |
| 81 | +from .search_api import SearchApi |
| 82 | +from .status_api import StatusApi |
| 83 | + |
| 84 | +__all__ = [ |
| 85 | + "ApiBase", |
| 86 | + "ActivityLogApi", |
| 87 | + "AggregationApi", |
| 88 | + "BlobInfosApi", |
| 89 | + "BlobsApi", |
| 90 | + "BulkApi", |
| 91 | + "DataApi", |
| 92 | + "DataExportApi", |
| 93 | + "DataUpdaterApi", |
| 94 | + "DatabaseApi", |
| 95 | + "GraphApi", |
| 96 | + "HelpLocationApi", |
| 97 | + "IdentitiesApi", |
| 98 | + "IntegrationApi", |
| 99 | + "JobQueueApi", |
| 100 | + "LicenseApi", |
| 101 | + "ListAuditLogApi", |
| 102 | + "ListItemApi", |
| 103 | + "ListManagementApi", |
| 104 | + "ListPermissionsApi", |
| 105 | + "MetricsApi", |
| 106 | + "PermissionBasedAccessControlApi", |
| 107 | + "RecordLinksApi", |
| 108 | + "RecordsRecordHistoriesApi", |
| 109 | + "RecordsRecordVersionsApi", |
| 110 | + "SchemaApi", |
| 111 | + "SchemaAttributesApi", |
| 112 | + "SchemaConfigurationsApi", |
| 113 | + "SchemaConstantsApi", |
| 114 | + "SchemaDataRulesApi", |
| 115 | + "SchemaDatabasesApi", |
| 116 | + "SchemaDiscreteTypesDiscreteValuesApi", |
| 117 | + "SchemaDiscreteTypesApi", |
| 118 | + "SchemaDisplayNamesApi", |
| 119 | + "SchemaExportersApi", |
| 120 | + "SchemaExpressionsApi", |
| 121 | + "SchemaGlobalStandardNamesApi", |
| 122 | + "SchemaHelpFilesApi", |
| 123 | + "SchemaHomePagesApi", |
| 124 | + "SchemaLayoutSectionsApi", |
| 125 | + "SchemaLayoutsApi", |
| 126 | + "SchemaParametersApi", |
| 127 | + "SchemaProfileTablesApi", |
| 128 | + "SchemaProfilesApi", |
| 129 | + "SchemaRecordLinkGroupsApi", |
| 130 | + "SchemaReplacementStringsApi", |
| 131 | + "SchemaSearchMasksApi", |
| 132 | + "SchemaSearchTemplatesApi", |
| 133 | + "SchemaSecurityGroupsApi", |
| 134 | + "SchemaStandardNamesApi", |
| 135 | + "SchemaSubsetsApi", |
| 136 | + "SchemaTablesApi", |
| 137 | + "SchemaUnitsApi", |
| 138 | + "SearchApi", |
| 139 | + "StatusApi", |
| 140 | +] |
0 commit comments