Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ansys-grantami-serverapi-openapi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "ansys-grantami-serverapi-openapi"
description = "Autogenerated client library for the Granta MI Server API."
version = "5.1.0.dev734"
version = "5.1.0.dev738"
license = "MIT"
authors = ["ANSYS, Inc. <[email protected]>"]
maintainers = ["ANSYS, Inc. <[email protected]>"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

__version__ = "5.1.0.dev734"
__version__ = "5.1.0.dev738"

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,10 @@
from ansys.openapi.common import ApiBase

# import apis into api package
from .activity_log_api import ActivityLogApi
from .aggregation_api import AggregationApi
from .blob_infos_api import BlobInfosApi
from .blobs_api import BlobsApi
from .bulk_api import BulkApi
from .data_api import DataApi
from .data_export_api import DataExportApi
from .data_updater_api import DataUpdaterApi
from .database_api import DatabaseApi
from .graph_api import GraphApi
from .help_location_api import HelpLocationApi
Expand All @@ -56,7 +52,6 @@
from .schema___databases_api import SchemaDatabasesApi
from .schema___discrete_types___discrete_values_api import SchemaDiscreteTypesDiscreteValuesApi
from .schema___discrete_types_api import SchemaDiscreteTypesApi
from .schema___display_names_api import SchemaDisplayNamesApi
from .schema___exporters_api import SchemaExportersApi
from .schema___expressions_api import SchemaExpressionsApi
from .schema___global_standard_names_api import SchemaGlobalStandardNamesApi
Expand All @@ -75,19 +70,16 @@
from .schema___units_api import SchemaUnitsApi
from .schema_api import SchemaApi
from .search_api import SearchApi
from .selection_searches_api import SelectionSearchesApi
from .server_manager_api import ServerManagerApi
from .status_api import StatusApi

__all__ = [
"ApiBase",
"ActivityLogApi",
"AggregationApi",
"BlobInfosApi",
"BlobsApi",
"BulkApi",
"DataApi",
"DataExportApi",
"DataUpdaterApi",
"DatabaseApi",
"GraphApi",
"HelpLocationApi",
Expand All @@ -111,7 +103,6 @@
"SchemaDatabasesApi",
"SchemaDiscreteTypesDiscreteValuesApi",
"SchemaDiscreteTypesApi",
"SchemaDisplayNamesApi",
"SchemaExportersApi",
"SchemaExpressionsApi",
"SchemaGlobalStandardNamesApi",
Expand All @@ -129,6 +120,7 @@
"SchemaTablesApi",
"SchemaUnitsApi",
"SearchApi",
"SelectionSearchesApi",
"ServerManagerApi",
"StatusApi",
]

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ def database_aggregation(
Parameters
----------
database_key: str
See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)
body: GsaAggregationsRequest
x_ansys_vc_mode: str
The version control mode. If not provided, defaults to write mode if the user is allowed to see that. Can also be set in the query string.
Expand Down Expand Up @@ -178,9 +177,7 @@ def database_aggregation_for_table_with_guid(
Parameters
----------
database_key: str
See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)
table_guid: str
See [Schema - Tables/GetTables](#/Schema%20-%20Tables/GetTables) or [Schema - Tables/QueryTables](#/Schema%20-%20Tables/QueryTables)
body: GsaAggregationsRequest
x_ansys_vc_mode: str
The version control mode. If not provided, defaults to write mode if the user is allowed to see that. Can also be set in the query string.
Expand Down Expand Up @@ -304,7 +301,6 @@ def database_aggregation_for_table_with_identity(
Parameters
----------
database_key: str
See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)
table_identity: int
body: GsaAggregationsRequest
x_ansys_vc_mode: str
Expand Down
Loading