Skip to content

Commit 3d7c17e

Browse files
Andy-Griggactions-user
authored andcommitted
Generate Client Library code - Automated
1 parent 2467ccd commit 3d7c17e

39 files changed

+284
-61
lines changed

ansys-grantami-serverapi-openapi/poetry.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ansys-grantami-serverapi-openapi/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
55
[tool.poetry]
66
name = "ansys-grantami-serverapi-openapi"
77
description = "Autogenerated client library for the Granta MI Server API."
8-
version = "3.0.0.dev174"
8+
version = "3.0.0.dev176"
99
license = "MIT"
1010
authors = ["ANSYS, Inc. <pyansys.core@ansys.com>"]
1111
maintainers = ["ANSYS, Inc. <pyansys.core@ansys.com>"]
@@ -36,7 +36,7 @@ requests = "^2.26.0"
3636
python-dateutil = "^2.8.2"
3737

3838
[tool.poetry.group.dev.dependencies]
39-
pytest = ">=7,<9"
39+
pytest = "^7.0.0"
4040
requests-mock = "^1.0.0"
4141

4242
[tool.tox]

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/aggregation_api.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

@@ -136,6 +137,8 @@ def _v1alpha_databases_database_key_tables_table_guidaggregations_post_with_http
136137
"application/*+json",
137138
]
138139
)
140+
# multipart/form-data request detected. Content-Type header will be
141+
# populated by openapi-common based on request content.
139142

140143
response_type_map = {
141144
200: "GrantaServerApiAggregationsAggregationsResponse",
@@ -270,6 +273,8 @@ def _v1alpha_databases_database_key_tables_table_identityaggregations_post_with_
270273
"application/*+json",
271274
]
272275
)
276+
# multipart/form-data request detected. Content-Type header will be
277+
# populated by openapi-common based on request content.
273278

274279
response_type_map = {
275280
200: "GrantaServerApiAggregationsAggregationsResponse",
@@ -388,6 +393,8 @@ def _v1alpha_databases_database_keyaggregations_post_with_http_info(
388393
"application/*+json",
389394
]
390395
)
396+
# multipart/form-data request detected. Content-Type header will be
397+
# populated by openapi-common based on request content.
391398

392399
response_type_map = {
393400
200: "GrantaServerApiAggregationsAggregationsResponse",
@@ -492,6 +499,8 @@ def _v1alpha_integration_schemas_schemaaggregations_post_with_http_info(
492499
"application/*+json",
493500
]
494501
)
502+
# multipart/form-data request detected. Content-Type header will be
503+
# populated by openapi-common based on request content.
495504

496505
response_type_map = {
497506
200: "GrantaServerApiAggregationsAggregationsResponse",

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/data_api.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/data_export_api.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

@@ -120,6 +121,8 @@ def _v1alpha_databases_database_keyexport_post_with_http_info(
120121
"application/*+json",
121122
]
122123
)
124+
# multipart/form-data request detected. Content-Type header will be
125+
# populated by openapi-common based on request content.
123126

124127
response_type_map = {
125128
200: "GrantaServerApiDataExportDataExportResponse",
@@ -225,6 +228,8 @@ def _v1alpha_integration_schemas_schemaexport_post_with_http_info(
225228
"application/*+json",
226229
]
227230
)
231+
# multipart/form-data request detected. Content-Type header will be
232+
# populated by openapi-common based on request content.
228233

229234
response_type_map = {
230235
200: "GrantaServerApiDataExportDataExportResponse",

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/database_api.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

@@ -100,6 +101,8 @@ def _v1alpha_databases_database_key_standard_namesgenerate_integration_schema_po
100101
"application/*+json",
101102
]
102103
)
104+
# multipart/form-data request detected. Content-Type header will be
105+
# populated by openapi-common based on request content.
103106

104107
response_type_map = {
105108
200: "GrantaServerApiIntegrationSchemaGuidOnlySchemaGuidOnlyIntegrationSchemaOfGrantaServerApiObjectIdentifier",
@@ -890,6 +893,8 @@ def _v1alpha_standard_namesgenerate_integration_schema_post_with_http_info(
890893
"application/*+json",
891894
]
892895
)
896+
# multipart/form-data request detected. Content-Type header will be
897+
# populated by openapi-common based on request content.
893898

894899
response_type_map = {
895900
200: "GrantaServerApiIntegrationSchemaGuidOnlySchemaGuidOnlyIntegrationSchemaOfGrantaServerApiObjectIdentifier",

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/integration_api.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

@@ -158,6 +159,8 @@ def _v1alpha_integration_schemas_post_with_http_info(
158159
"application/*+json",
159160
]
160161
)
162+
# multipart/form-data request detected. Content-Type header will be
163+
# populated by openapi-common based on request content.
161164

162165
response_type_map = {
163166
201: "GrantaServerApiIntegrationSchemaIntegrationSchemaOfGrantaServerApiObjectIdentifier",
@@ -538,6 +541,8 @@ def _v1alpha_integration_schemas_schema_put_with_http_info(
538541
"application/*+json",
539542
]
540543
)
544+
# multipart/form-data request detected. Content-Type header will be
545+
# populated by openapi-common based on request content.
541546

542547
response_type_map = {
543548
201: "GrantaServerApiIntegrationSchemaIntegrationSchemaOfGrantaServerApiObjectIdentifier",

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/job_queue_api.py

+12-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

@@ -187,10 +188,8 @@ def _v1alpha_job_queue_files_post_with_http_info(
187188
["text/plain", "application/json", "text/json"]
188189
)
189190

190-
# HTTP header 'Content-Type'
191-
header_params["Content-Type"] = self.api_client.select_header_content_type(
192-
["multipart/form-data"]
193-
)
191+
# multipart/form-data request detected. Content-Type header will be
192+
# populated by openapi-common based on request content.
194193

195194
response_type_map = {
196195
200: "str",
@@ -279,6 +278,8 @@ def _v1alpha_job_queue_jobs_delete_with_http_info(
279278
"application/*+json",
280279
]
281280
)
281+
# multipart/form-data request detected. Content-Type header will be
282+
# populated by openapi-common based on request content.
282283

283284
response_type_map = {
284285
200: "list[str]",
@@ -846,6 +847,8 @@ def _v1alpha_job_queue_jobs_id_patch_with_http_info(
846847
"application/*+json",
847848
]
848849
)
850+
# multipart/form-data request detected. Content-Type header will be
851+
# populated by openapi-common based on request content.
849852

850853
response_type_map = {
851854
200: "GrantaServerApiAsyncJobsJob",
@@ -1027,6 +1030,8 @@ def _v1alpha_job_queue_jobs_idresubmit_post_with_http_info(
10271030
"application/*+json",
10281031
]
10291032
)
1033+
# multipart/form-data request detected. Content-Type header will be
1034+
# populated by openapi-common based on request content.
10301035

10311036
response_type_map = {
10321037
200: "GrantaServerApiAsyncJobsJob",
@@ -1202,6 +1207,8 @@ def _v1alpha_job_queue_jobs_post_with_http_info(
12021207
"application/*+json",
12031208
]
12041209
)
1210+
# multipart/form-data request detected. Content-Type header will be
1211+
# populated by openapi-common based on request content.
12051212

12061213
response_type_map = {
12071214
200: "GrantaServerApiAsyncJobsJob",

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/license_api.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

@@ -95,6 +96,8 @@ def _v1alpha_license_server_licensesensure_checked_out_post_with_http_info(
9596
"application/*+json",
9697
]
9798
)
99+
# multipart/form-data request detected. Content-Type header will be
100+
# populated by openapi-common based on request content.
98101

99102
response_type_map = {
100103
200: "GrantaServerApiAppNameLicenseCheckoutResponse",

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/list_item_api.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

@@ -106,6 +107,8 @@ def _api_v1_lists_list_list_identifier_items_add_post_with_http_info(
106107
"application/*+json",
107108
]
108109
)
110+
# multipart/form-data request detected. Content-Type header will be
111+
# populated by openapi-common based on request content.
109112

110113
response_type_map = {
111114
202: "GrantaServerApiListsDtoRecordListItemsInfo",
@@ -297,6 +300,8 @@ def _api_v1_lists_list_list_identifier_items_remove_post_with_http_info(
297300
"application/*+json",
298301
]
299302
)
303+
# multipart/form-data request detected. Content-Type header will be
304+
# populated by openapi-common based on request content.
300305

301306
response_type_map = {
302307
202: "GrantaServerApiListsDtoRecordListItemsInfo",

ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/api/list_management_api.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@
99
"""
1010

1111
import re # noqa: F401
12-
from typing import TYPE_CHECKING, Dict, List, Optional, Union # noqa: F401
12+
from typing import TYPE_CHECKING, Dict, IO, List, Optional, Union # noqa: F401
1313
from . import ApiBase
1414

1515

1616
if TYPE_CHECKING:
17+
import pathlib
1718
from ..models import *
1819

1920

@@ -420,6 +421,8 @@ def _api_v1_lists_list_list_identifier_patch_with_http_info(
420421
"application/*+json",
421422
]
422423
)
424+
# multipart/form-data request detected. Content-Type header will be
425+
# populated by openapi-common based on request content.
423426

424427
response_type_map = {
425428
200: "GrantaServerApiListsDtoRecordListHeader",
@@ -939,6 +942,8 @@ def _api_v1_lists_post_with_http_info(
939942
"application/*+json",
940943
]
941944
)
945+
# multipart/form-data request detected. Content-Type header will be
946+
# populated by openapi-common based on request content.
942947

943948
response_type_map = {
944949
201: "GrantaServerApiListsDtoRecordListHeader",
@@ -1031,6 +1036,8 @@ def _api_v1_lists_search_post_with_http_info(
10311036
"application/*+json",
10321037
]
10331038
)
1039+
# multipart/form-data request detected. Content-Type header will be
1040+
# populated by openapi-common based on request content.
10341041

10351042
response_type_map = {
10361043
201: "GrantaServerApiListsDtoRecordListSearchInfo",

0 commit comments

Comments
 (0)