cosmotech-api 3.2.6.dev2__py3-none-any.whl → 3.3.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cosmotech-api might be problematic. Click here for more details.
- cosmotech_api/__init__.py +5 -1
- cosmotech_api/api/connector_api.py +31 -27
- cosmotech_api/api/dataset_api.py +255 -224
- cosmotech_api/api/meta_api.py +281 -0
- cosmotech_api/api/organization_api.py +120 -102
- cosmotech_api/api/run_api.py +49 -41
- cosmotech_api/api/runner_api.py +103 -89
- cosmotech_api/api/scenario_api.py +141 -121
- cosmotech_api/api/scenariorun_api.py +76 -66
- cosmotech_api/api/scenariorunresult_api.py +1 -1
- cosmotech_api/api/solution_api.py +127 -108
- cosmotech_api/api/twingraph_api.py +83 -72
- cosmotech_api/api/validator_api.py +1 -1
- cosmotech_api/api/workspace_api.py +132 -121
- cosmotech_api/api_client.py +59 -29
- cosmotech_api/configuration.py +18 -4
- cosmotech_api/exceptions.py +1 -1
- cosmotech_api/model/component_role_permissions.py +1 -1
- cosmotech_api/model/connector.py +1 -1
- cosmotech_api/model/connector_parameter.py +1 -1
- cosmotech_api/model/connector_parameter_group.py +1 -1
- cosmotech_api/model/container_resource_size_info.py +1 -1
- cosmotech_api/model/container_resource_sizing.py +1 -1
- cosmotech_api/model/dataset.py +1 -1
- cosmotech_api/model/dataset_access_control.py +1 -1
- cosmotech_api/model/dataset_compatibility.py +1 -1
- cosmotech_api/model/dataset_connector.py +1 -1
- cosmotech_api/model/dataset_copy_parameters.py +1 -1
- cosmotech_api/model/dataset_role.py +1 -1
- cosmotech_api/model/dataset_search.py +1 -1
- cosmotech_api/model/dataset_security.py +1 -1
- cosmotech_api/model/dataset_source_type.py +1 -1
- cosmotech_api/model/dataset_twin_graph_hash.py +1 -1
- cosmotech_api/model/dataset_twin_graph_info.py +1 -1
- cosmotech_api/model/dataset_twin_graph_query.py +1 -1
- cosmotech_api/model/delete_historical_data.py +1 -1
- cosmotech_api/model/file_upload_metadata.py +1 -1
- cosmotech_api/model/file_upload_validation.py +1 -1
- cosmotech_api/model/graph_properties.py +1 -1
- cosmotech_api/model/organization.py +1 -1
- cosmotech_api/model/organization_access_control.py +1 -1
- cosmotech_api/model/organization_role.py +1 -1
- cosmotech_api/model/organization_security.py +1 -1
- cosmotech_api/model/organization_service.py +1 -1
- cosmotech_api/model/organization_services.py +1 -1
- cosmotech_api/model/resource_size_info.py +1 -1
- cosmotech_api/model/run.py +1 -1
- cosmotech_api/model/run_container.py +1 -1
- cosmotech_api/model/run_container_artifact.py +1 -1
- cosmotech_api/model/run_container_logs.py +1 -1
- cosmotech_api/model/run_logs.py +1 -1
- cosmotech_api/model/run_resource_requested.py +1 -1
- cosmotech_api/model/run_search.py +1 -1
- cosmotech_api/model/run_start_containers.py +1 -1
- cosmotech_api/model/run_state.py +1 -1
- cosmotech_api/model/run_status.py +1 -1
- cosmotech_api/model/run_status_node.py +1 -1
- cosmotech_api/model/run_template.py +1 -1
- cosmotech_api/model/run_template_handler_id.py +1 -1
- cosmotech_api/model/run_template_orchestrator.py +1 -1
- cosmotech_api/model/run_template_parameter.py +1 -1
- cosmotech_api/model/run_template_parameter_group.py +1 -1
- cosmotech_api/model/run_template_parameter_value.py +1 -1
- cosmotech_api/model/run_template_resource_sizing.py +1 -1
- cosmotech_api/model/run_template_step_source.py +1 -1
- cosmotech_api/model/runner.py +21 -5
- cosmotech_api/model/runner_access_control.py +1 -1
- cosmotech_api/model/runner_changed_parameter_value.py +1 -1
- cosmotech_api/model/runner_comparison_result.py +1 -1
- cosmotech_api/model/runner_data_download_info.py +11 -1
- cosmotech_api/model/runner_data_download_job.py +1 -1
- cosmotech_api/model/runner_job_state.py +1 -1
- cosmotech_api/model/runner_last_run.py +1 -1
- cosmotech_api/model/runner_resource_sizing.py +1 -1
- cosmotech_api/model/runner_role.py +1 -1
- cosmotech_api/model/runner_run_template_parameter_value.py +1 -1
- cosmotech_api/model/runner_security.py +1 -1
- cosmotech_api/model/runner_validation_status.py +1 -1
- cosmotech_api/model/scenario.py +1 -1
- cosmotech_api/model/scenario_access_control.py +1 -1
- cosmotech_api/model/scenario_changed_parameter_value.py +1 -1
- cosmotech_api/model/scenario_comparison_result.py +1 -1
- cosmotech_api/model/scenario_data_download_info.py +1 -1
- cosmotech_api/model/scenario_data_download_job.py +1 -1
- cosmotech_api/model/scenario_job_state.py +1 -1
- cosmotech_api/model/scenario_last_run.py +1 -1
- cosmotech_api/model/scenario_resource_sizing.py +1 -1
- cosmotech_api/model/scenario_role.py +1 -1
- cosmotech_api/model/scenario_run.py +1 -1
- cosmotech_api/model/scenario_run_container.py +1 -1
- cosmotech_api/model/scenario_run_container_artifact.py +1 -1
- cosmotech_api/model/scenario_run_container_logs.py +1 -1
- cosmotech_api/model/scenario_run_logs.py +1 -1
- cosmotech_api/model/scenario_run_resource_requested.py +1 -1
- cosmotech_api/model/scenario_run_result.py +1 -1
- cosmotech_api/model/scenario_run_search.py +1 -1
- cosmotech_api/model/scenario_run_start_containers.py +1 -1
- cosmotech_api/model/scenario_run_state.py +1 -1
- cosmotech_api/model/scenario_run_status.py +1 -1
- cosmotech_api/model/scenario_run_status_node.py +1 -1
- cosmotech_api/model/scenario_run_template_parameter_value.py +1 -1
- cosmotech_api/model/scenario_security.py +1 -1
- cosmotech_api/model/scenario_validation_status.py +1 -1
- cosmotech_api/model/solution.py +1 -1
- cosmotech_api/model/solution_access_control.py +1 -1
- cosmotech_api/model/solution_role.py +1 -1
- cosmotech_api/model/solution_security.py +1 -1
- cosmotech_api/model/source_info.py +1 -1
- cosmotech_api/model/sub_dataset_graph_query.py +1 -1
- cosmotech_api/model/translated_labels.py +1 -1
- cosmotech_api/model/twin_graph_batch_result.py +1 -1
- cosmotech_api/model/twin_graph_hash.py +1 -1
- cosmotech_api/model/twin_graph_query.py +1 -1
- cosmotech_api/model/validator.py +1 -1
- cosmotech_api/model/validator_run.py +1 -1
- cosmotech_api/model/workspace.py +1 -1
- cosmotech_api/model/workspace_access_control.py +1 -1
- cosmotech_api/model/workspace_file.py +1 -1
- cosmotech_api/model/workspace_role.py +1 -1
- cosmotech_api/model/workspace_secret.py +1 -1
- cosmotech_api/model/workspace_security.py +1 -1
- cosmotech_api/model/workspace_solution.py +1 -1
- cosmotech_api/model/workspace_web_app.py +1 -1
- cosmotech_api/model_utils.py +1 -1
- cosmotech_api/models/__init__.py +5 -1
- cosmotech_api/models/about_info.py +92 -0
- cosmotech_api/models/about_info_version.py +100 -0
- cosmotech_api/models/component_role_permissions.py +7 -7
- cosmotech_api/models/connector.py +10 -10
- cosmotech_api/models/connector_parameter.py +7 -7
- cosmotech_api/models/connector_parameter_group.py +10 -10
- cosmotech_api/models/container_resource_size_info.py +7 -7
- cosmotech_api/models/container_resource_sizing.py +7 -7
- cosmotech_api/models/created_run.py +88 -0
- cosmotech_api/models/dataset.py +10 -10
- cosmotech_api/models/dataset_access_control.py +7 -7
- cosmotech_api/models/dataset_compatibility.py +7 -7
- cosmotech_api/models/dataset_connector.py +7 -7
- cosmotech_api/models/dataset_copy_parameters.py +7 -7
- cosmotech_api/models/dataset_role.py +7 -7
- cosmotech_api/models/dataset_search.py +7 -7
- cosmotech_api/models/dataset_security.py +10 -10
- cosmotech_api/models/dataset_source_type.py +1 -1
- cosmotech_api/models/dataset_twin_graph_hash.py +7 -7
- cosmotech_api/models/dataset_twin_graph_info.py +7 -7
- cosmotech_api/models/dataset_twin_graph_query.py +7 -7
- cosmotech_api/models/delete_historical_data.py +7 -7
- cosmotech_api/models/file_upload_metadata.py +7 -7
- cosmotech_api/models/file_upload_validation.py +13 -13
- cosmotech_api/models/graph_properties.py +7 -7
- cosmotech_api/models/ingestion_status_enum.py +1 -1
- cosmotech_api/models/io_types_enum.py +1 -1
- cosmotech_api/models/organization.py +7 -7
- cosmotech_api/models/organization_access_control.py +7 -7
- cosmotech_api/models/organization_create_request.py +95 -0
- cosmotech_api/models/organization_role.py +7 -7
- cosmotech_api/models/organization_security.py +10 -10
- cosmotech_api/models/organization_service.py +7 -7
- cosmotech_api/models/organization_services.py +7 -7
- cosmotech_api/models/organization_update_request.py +89 -0
- cosmotech_api/models/query_result.py +7 -7
- cosmotech_api/models/resource_size_info.py +7 -7
- cosmotech_api/models/run.py +13 -13
- cosmotech_api/models/run_container.py +10 -10
- cosmotech_api/models/run_container_artifact.py +7 -7
- cosmotech_api/models/run_container_logs.py +7 -7
- cosmotech_api/models/run_data.py +7 -7
- cosmotech_api/models/run_data_query.py +7 -7
- cosmotech_api/models/run_logs.py +10 -10
- cosmotech_api/models/run_logs_entry.py +88 -0
- cosmotech_api/models/run_resource_requested.py +7 -7
- cosmotech_api/models/run_search.py +7 -7
- cosmotech_api/models/run_search_state.py +1 -1
- cosmotech_api/models/run_start_containers.py +10 -10
- cosmotech_api/models/run_state.py +1 -1
- cosmotech_api/models/run_status.py +10 -10
- cosmotech_api/models/run_status_node.py +7 -7
- cosmotech_api/models/run_template.py +7 -7
- cosmotech_api/models/run_template_handler_id.py +1 -1
- cosmotech_api/models/run_template_orchestrator.py +1 -1
- cosmotech_api/models/run_template_parameter.py +7 -7
- cosmotech_api/models/run_template_parameter_group.py +7 -7
- cosmotech_api/models/run_template_parameter_value.py +7 -7
- cosmotech_api/models/run_template_resource_sizing.py +7 -7
- cosmotech_api/models/run_template_step_source.py +1 -1
- cosmotech_api/models/runner.py +32 -13
- cosmotech_api/models/runner_access_control.py +7 -7
- cosmotech_api/models/runner_changed_parameter_value.py +7 -7
- cosmotech_api/models/runner_comparison_result.py +10 -10
- cosmotech_api/models/runner_create_request.py +154 -0
- cosmotech_api/models/runner_data_download_info.py +12 -9
- cosmotech_api/models/runner_data_download_job.py +7 -7
- cosmotech_api/models/runner_job_state.py +1 -1
- cosmotech_api/models/runner_last_run.py +7 -7
- cosmotech_api/models/runner_parent_last_run.py +7 -7
- cosmotech_api/models/runner_resource_sizing.py +7 -7
- cosmotech_api/models/runner_role.py +7 -7
- cosmotech_api/models/runner_root_last_run.py +7 -7
- cosmotech_api/models/runner_run_template_parameter_value.py +7 -7
- cosmotech_api/models/runner_security.py +10 -10
- cosmotech_api/models/runner_update_request.py +123 -0
- cosmotech_api/models/runner_validation_status.py +1 -1
- cosmotech_api/models/scenario.py +11 -11
- cosmotech_api/models/scenario_access_control.py +7 -7
- cosmotech_api/models/scenario_changed_parameter_value.py +7 -7
- cosmotech_api/models/scenario_comparison_result.py +10 -10
- cosmotech_api/models/scenario_data_download_info.py +7 -7
- cosmotech_api/models/scenario_data_download_job.py +7 -7
- cosmotech_api/models/scenario_job_state.py +1 -1
- cosmotech_api/models/scenario_last_run.py +7 -7
- cosmotech_api/models/scenario_resource_sizing.py +7 -7
- cosmotech_api/models/scenario_role.py +7 -7
- cosmotech_api/models/scenario_run.py +13 -13
- cosmotech_api/models/scenario_run_container.py +10 -10
- cosmotech_api/models/scenario_run_container_artifact.py +7 -7
- cosmotech_api/models/scenario_run_container_logs.py +7 -7
- cosmotech_api/models/scenario_run_logs.py +10 -10
- cosmotech_api/models/scenario_run_resource_requested.py +7 -7
- cosmotech_api/models/scenario_run_search.py +7 -7
- cosmotech_api/models/scenario_run_search_state.py +1 -1
- cosmotech_api/models/scenario_run_start_containers.py +10 -10
- cosmotech_api/models/scenario_run_state.py +1 -1
- cosmotech_api/models/scenario_run_status.py +10 -10
- cosmotech_api/models/scenario_run_status_node.py +7 -7
- cosmotech_api/models/scenario_run_template_parameter_value.py +7 -7
- cosmotech_api/models/scenario_security.py +10 -10
- cosmotech_api/models/scenario_validation_status.py +1 -1
- cosmotech_api/models/send_run_data_request.py +7 -7
- cosmotech_api/models/solution.py +16 -16
- cosmotech_api/models/solution_access_control.py +7 -7
- cosmotech_api/models/solution_create_request.py +143 -0
- cosmotech_api/models/solution_role.py +7 -7
- cosmotech_api/models/solution_security.py +10 -10
- cosmotech_api/models/solution_update_request.py +107 -0
- cosmotech_api/models/source_info.py +7 -7
- cosmotech_api/models/sub_dataset_graph_query.py +7 -7
- cosmotech_api/models/twin_graph_batch_result.py +7 -7
- cosmotech_api/models/twin_graph_hash.py +7 -7
- cosmotech_api/models/twin_graph_query.py +7 -7
- cosmotech_api/models/twincache_status_enum.py +1 -1
- cosmotech_api/models/validator.py +7 -7
- cosmotech_api/models/workspace.py +7 -7
- cosmotech_api/models/workspace_access_control.py +7 -7
- cosmotech_api/models/workspace_create_request.py +117 -0
- cosmotech_api/models/workspace_file.py +7 -7
- cosmotech_api/models/workspace_role.py +7 -7
- cosmotech_api/models/workspace_secret.py +7 -7
- cosmotech_api/models/workspace_security.py +10 -10
- cosmotech_api/models/workspace_solution.py +7 -7
- cosmotech_api/models/workspace_update_request.py +109 -0
- cosmotech_api/models/workspace_web_app.py +7 -7
- cosmotech_api/rest.py +3 -1
- {cosmotech_api-3.2.6.dev2.dist-info → cosmotech_api-3.3.4.dist-info}/METADATA +13 -5
- cosmotech_api-3.3.4.dist-info/RECORD +273 -0
- {cosmotech_api-3.2.6.dev2.dist-info → cosmotech_api-3.3.4.dist-info}/WHEEL +1 -1
- cosmotech_api-3.2.6.dev2.dist-info/RECORD +0 -260
- {cosmotech_api-3.2.6.dev2.dist-info → cosmotech_api-3.3.4.dist-info}/LICENSE +0 -0
- {cosmotech_api-3.2.6.dev2.dist-info → cosmotech_api-3.3.4.dist-info}/top_level.txt +0 -0
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Cosmo Tech Platform API
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 3.
|
|
8
|
+
The version of the OpenAPI document: 3.3.4
|
|
9
9
|
Contact: platform@cosmotech.com
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
@@ -18,7 +18,7 @@ from typing import Any, Dict, List, Optional, Tuple, Union
|
|
|
18
18
|
from typing_extensions import Annotated
|
|
19
19
|
|
|
20
20
|
from pydantic import Field, StrictInt, StrictStr
|
|
21
|
-
from typing import Any, Dict, Optional
|
|
21
|
+
from typing import Any, Dict, List, Optional
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
23
|
from cosmotech_api.models.component_role_permissions import ComponentRolePermissions
|
|
24
24
|
from cosmotech_api.models.organization import Organization
|
|
@@ -273,7 +273,7 @@ class OrganizationApi:
|
|
|
273
273
|
_query_params: List[Tuple[str, str]] = []
|
|
274
274
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
275
275
|
_form_params: List[Tuple[str, str]] = []
|
|
276
|
-
_files: Dict[str, str] = {}
|
|
276
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
277
277
|
_body_params: Optional[bytes] = None
|
|
278
278
|
|
|
279
279
|
# process the path parameters
|
|
@@ -288,11 +288,12 @@ class OrganizationApi:
|
|
|
288
288
|
|
|
289
289
|
|
|
290
290
|
# set the HTTP header `Accept`
|
|
291
|
-
|
|
292
|
-
[
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
291
|
+
if 'Accept' not in _header_params:
|
|
292
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
293
|
+
[
|
|
294
|
+
'application/json'
|
|
295
|
+
]
|
|
296
|
+
)
|
|
296
297
|
|
|
297
298
|
# set the HTTP header `Content-Type`
|
|
298
299
|
if _content_type:
|
|
@@ -557,7 +558,7 @@ class OrganizationApi:
|
|
|
557
558
|
_query_params: List[Tuple[str, str]] = []
|
|
558
559
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
559
560
|
_form_params: List[Tuple[str, str]] = []
|
|
560
|
-
_files: Dict[str, str] = {}
|
|
561
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
561
562
|
_body_params: Optional[bytes] = None
|
|
562
563
|
|
|
563
564
|
# process the path parameters
|
|
@@ -576,11 +577,12 @@ class OrganizationApi:
|
|
|
576
577
|
|
|
577
578
|
|
|
578
579
|
# set the HTTP header `Accept`
|
|
579
|
-
|
|
580
|
-
[
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
580
|
+
if 'Accept' not in _header_params:
|
|
581
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
582
|
+
[
|
|
583
|
+
'application/json'
|
|
584
|
+
]
|
|
585
|
+
)
|
|
584
586
|
|
|
585
587
|
|
|
586
588
|
# authentication setting
|
|
@@ -821,7 +823,7 @@ class OrganizationApi:
|
|
|
821
823
|
_query_params: List[Tuple[str, str]] = []
|
|
822
824
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
823
825
|
_form_params: List[Tuple[str, str]] = []
|
|
824
|
-
_files: Dict[str, str] = {}
|
|
826
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
825
827
|
_body_params: Optional[bytes] = None
|
|
826
828
|
|
|
827
829
|
# process the path parameters
|
|
@@ -834,11 +836,12 @@ class OrganizationApi:
|
|
|
834
836
|
|
|
835
837
|
|
|
836
838
|
# set the HTTP header `Accept`
|
|
837
|
-
|
|
838
|
-
[
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
839
|
+
if 'Accept' not in _header_params:
|
|
840
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
841
|
+
[
|
|
842
|
+
'application/json'
|
|
843
|
+
]
|
|
844
|
+
)
|
|
842
845
|
|
|
843
846
|
|
|
844
847
|
# authentication setting
|
|
@@ -1063,7 +1066,7 @@ class OrganizationApi:
|
|
|
1063
1066
|
_query_params: List[Tuple[str, str]] = []
|
|
1064
1067
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1065
1068
|
_form_params: List[Tuple[str, str]] = []
|
|
1066
|
-
_files: Dict[str, str] = {}
|
|
1069
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1067
1070
|
_body_params: Optional[bytes] = None
|
|
1068
1071
|
|
|
1069
1072
|
# process the path parameters
|
|
@@ -1074,11 +1077,12 @@ class OrganizationApi:
|
|
|
1074
1077
|
|
|
1075
1078
|
|
|
1076
1079
|
# set the HTTP header `Accept`
|
|
1077
|
-
|
|
1078
|
-
[
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1080
|
+
if 'Accept' not in _header_params:
|
|
1081
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1082
|
+
[
|
|
1083
|
+
'application/json'
|
|
1084
|
+
]
|
|
1085
|
+
)
|
|
1082
1086
|
|
|
1083
1087
|
|
|
1084
1088
|
# authentication setting
|
|
@@ -1332,7 +1336,7 @@ class OrganizationApi:
|
|
|
1332
1336
|
_query_params: List[Tuple[str, str]] = []
|
|
1333
1337
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1334
1338
|
_form_params: List[Tuple[str, str]] = []
|
|
1335
|
-
_files: Dict[str, str] = {}
|
|
1339
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1336
1340
|
_body_params: Optional[bytes] = None
|
|
1337
1341
|
|
|
1338
1342
|
# process the path parameters
|
|
@@ -1347,11 +1351,12 @@ class OrganizationApi:
|
|
|
1347
1351
|
|
|
1348
1352
|
|
|
1349
1353
|
# set the HTTP header `Accept`
|
|
1350
|
-
|
|
1351
|
-
[
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1354
|
+
if 'Accept' not in _header_params:
|
|
1355
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1356
|
+
[
|
|
1357
|
+
'application/json'
|
|
1358
|
+
]
|
|
1359
|
+
)
|
|
1355
1360
|
|
|
1356
1361
|
|
|
1357
1362
|
# authentication setting
|
|
@@ -1602,7 +1607,7 @@ class OrganizationApi:
|
|
|
1602
1607
|
_query_params: List[Tuple[str, str]] = []
|
|
1603
1608
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1604
1609
|
_form_params: List[Tuple[str, str]] = []
|
|
1605
|
-
_files: Dict[str, str] = {}
|
|
1610
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1606
1611
|
_body_params: Optional[bytes] = None
|
|
1607
1612
|
|
|
1608
1613
|
# process the path parameters
|
|
@@ -1617,11 +1622,12 @@ class OrganizationApi:
|
|
|
1617
1622
|
|
|
1618
1623
|
|
|
1619
1624
|
# set the HTTP header `Accept`
|
|
1620
|
-
|
|
1621
|
-
[
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
+
if 'Accept' not in _header_params:
|
|
1626
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1627
|
+
[
|
|
1628
|
+
'application/json'
|
|
1629
|
+
]
|
|
1630
|
+
)
|
|
1625
1631
|
|
|
1626
1632
|
|
|
1627
1633
|
# authentication setting
|
|
@@ -1862,7 +1868,7 @@ class OrganizationApi:
|
|
|
1862
1868
|
_query_params: List[Tuple[str, str]] = []
|
|
1863
1869
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1864
1870
|
_form_params: List[Tuple[str, str]] = []
|
|
1865
|
-
_files: Dict[str, str] = {}
|
|
1871
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
1866
1872
|
_body_params: Optional[bytes] = None
|
|
1867
1873
|
|
|
1868
1874
|
# process the path parameters
|
|
@@ -1875,11 +1881,12 @@ class OrganizationApi:
|
|
|
1875
1881
|
|
|
1876
1882
|
|
|
1877
1883
|
# set the HTTP header `Accept`
|
|
1878
|
-
|
|
1879
|
-
[
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1884
|
+
if 'Accept' not in _header_params:
|
|
1885
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1886
|
+
[
|
|
1887
|
+
'application/json'
|
|
1888
|
+
]
|
|
1889
|
+
)
|
|
1883
1890
|
|
|
1884
1891
|
|
|
1885
1892
|
# authentication setting
|
|
@@ -2120,7 +2127,7 @@ class OrganizationApi:
|
|
|
2120
2127
|
_query_params: List[Tuple[str, str]] = []
|
|
2121
2128
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2122
2129
|
_form_params: List[Tuple[str, str]] = []
|
|
2123
|
-
_files: Dict[str, str] = {}
|
|
2130
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
2124
2131
|
_body_params: Optional[bytes] = None
|
|
2125
2132
|
|
|
2126
2133
|
# process the path parameters
|
|
@@ -2133,11 +2140,12 @@ class OrganizationApi:
|
|
|
2133
2140
|
|
|
2134
2141
|
|
|
2135
2142
|
# set the HTTP header `Accept`
|
|
2136
|
-
|
|
2137
|
-
[
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2143
|
+
if 'Accept' not in _header_params:
|
|
2144
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2145
|
+
[
|
|
2146
|
+
'application/json'
|
|
2147
|
+
]
|
|
2148
|
+
)
|
|
2141
2149
|
|
|
2142
2150
|
|
|
2143
2151
|
# authentication setting
|
|
@@ -2378,7 +2386,7 @@ class OrganizationApi:
|
|
|
2378
2386
|
_query_params: List[Tuple[str, str]] = []
|
|
2379
2387
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2380
2388
|
_form_params: List[Tuple[str, str]] = []
|
|
2381
|
-
_files: Dict[str, str] = {}
|
|
2389
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
2382
2390
|
_body_params: Optional[bytes] = None
|
|
2383
2391
|
|
|
2384
2392
|
# process the path parameters
|
|
@@ -2391,11 +2399,12 @@ class OrganizationApi:
|
|
|
2391
2399
|
|
|
2392
2400
|
|
|
2393
2401
|
# set the HTTP header `Accept`
|
|
2394
|
-
|
|
2395
|
-
[
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2402
|
+
if 'Accept' not in _header_params:
|
|
2403
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2404
|
+
[
|
|
2405
|
+
'application/json'
|
|
2406
|
+
]
|
|
2407
|
+
)
|
|
2399
2408
|
|
|
2400
2409
|
# set the HTTP header `Content-Type`
|
|
2401
2410
|
if _content_type:
|
|
@@ -2663,7 +2672,7 @@ class OrganizationApi:
|
|
|
2663
2672
|
_query_params: List[Tuple[str, str]] = []
|
|
2664
2673
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2665
2674
|
_form_params: List[Tuple[str, str]] = []
|
|
2666
|
-
_files: Dict[str, str] = {}
|
|
2675
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
2667
2676
|
_body_params: Optional[bytes] = None
|
|
2668
2677
|
|
|
2669
2678
|
# process the path parameters
|
|
@@ -2930,7 +2939,7 @@ class OrganizationApi:
|
|
|
2930
2939
|
_query_params: List[Tuple[str, str]] = []
|
|
2931
2940
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
2932
2941
|
_form_params: List[Tuple[str, str]] = []
|
|
2933
|
-
_files: Dict[str, str] = {}
|
|
2942
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
2934
2943
|
_body_params: Optional[bytes] = None
|
|
2935
2944
|
|
|
2936
2945
|
# process the path parameters
|
|
@@ -2945,11 +2954,12 @@ class OrganizationApi:
|
|
|
2945
2954
|
|
|
2946
2955
|
|
|
2947
2956
|
# set the HTTP header `Accept`
|
|
2948
|
-
|
|
2949
|
-
[
|
|
2950
|
-
|
|
2951
|
-
|
|
2952
|
-
|
|
2957
|
+
if 'Accept' not in _header_params:
|
|
2958
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
2959
|
+
[
|
|
2960
|
+
'application/json'
|
|
2961
|
+
]
|
|
2962
|
+
)
|
|
2953
2963
|
|
|
2954
2964
|
# set the HTTP header `Content-Type`
|
|
2955
2965
|
if _content_type:
|
|
@@ -3204,7 +3214,7 @@ class OrganizationApi:
|
|
|
3204
3214
|
_query_params: List[Tuple[str, str]] = []
|
|
3205
3215
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
3206
3216
|
_form_params: List[Tuple[str, str]] = []
|
|
3207
|
-
_files: Dict[str, str] = {}
|
|
3217
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
3208
3218
|
_body_params: Optional[bytes] = None
|
|
3209
3219
|
|
|
3210
3220
|
# process the path parameters
|
|
@@ -3245,7 +3255,7 @@ class OrganizationApi:
|
|
|
3245
3255
|
def update_organization(
|
|
3246
3256
|
self,
|
|
3247
3257
|
organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
|
|
3248
|
-
organization: Annotated[Organization, Field(description="
|
|
3258
|
+
organization: Annotated[Organization, Field(description="The new Organization details. This endpoint can't be used to update : - id - ownerId - security ")],
|
|
3249
3259
|
_request_timeout: Union[
|
|
3250
3260
|
None,
|
|
3251
3261
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3264,7 +3274,7 @@ class OrganizationApi:
|
|
|
3264
3274
|
|
|
3265
3275
|
:param organization_id: the Organization identifier (required)
|
|
3266
3276
|
:type organization_id: str
|
|
3267
|
-
:param organization:
|
|
3277
|
+
:param organization: The new Organization details. This endpoint can't be used to update : - id - ownerId - security (required)
|
|
3268
3278
|
:type organization: Organization
|
|
3269
3279
|
:param _request_timeout: timeout setting for this request. If one
|
|
3270
3280
|
number provided, it will be total request
|
|
@@ -3317,7 +3327,7 @@ class OrganizationApi:
|
|
|
3317
3327
|
def update_organization_with_http_info(
|
|
3318
3328
|
self,
|
|
3319
3329
|
organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
|
|
3320
|
-
organization: Annotated[Organization, Field(description="
|
|
3330
|
+
organization: Annotated[Organization, Field(description="The new Organization details. This endpoint can't be used to update : - id - ownerId - security ")],
|
|
3321
3331
|
_request_timeout: Union[
|
|
3322
3332
|
None,
|
|
3323
3333
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3336,7 +3346,7 @@ class OrganizationApi:
|
|
|
3336
3346
|
|
|
3337
3347
|
:param organization_id: the Organization identifier (required)
|
|
3338
3348
|
:type organization_id: str
|
|
3339
|
-
:param organization:
|
|
3349
|
+
:param organization: The new Organization details. This endpoint can't be used to update : - id - ownerId - security (required)
|
|
3340
3350
|
:type organization: Organization
|
|
3341
3351
|
:param _request_timeout: timeout setting for this request. If one
|
|
3342
3352
|
number provided, it will be total request
|
|
@@ -3389,7 +3399,7 @@ class OrganizationApi:
|
|
|
3389
3399
|
def update_organization_without_preload_content(
|
|
3390
3400
|
self,
|
|
3391
3401
|
organization_id: Annotated[StrictStr, Field(description="the Organization identifier")],
|
|
3392
|
-
organization: Annotated[Organization, Field(description="
|
|
3402
|
+
organization: Annotated[Organization, Field(description="The new Organization details. This endpoint can't be used to update : - id - ownerId - security ")],
|
|
3393
3403
|
_request_timeout: Union[
|
|
3394
3404
|
None,
|
|
3395
3405
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -3408,7 +3418,7 @@ class OrganizationApi:
|
|
|
3408
3418
|
|
|
3409
3419
|
:param organization_id: the Organization identifier (required)
|
|
3410
3420
|
:type organization_id: str
|
|
3411
|
-
:param organization:
|
|
3421
|
+
:param organization: The new Organization details. This endpoint can't be used to update : - id - ownerId - security (required)
|
|
3412
3422
|
:type organization: Organization
|
|
3413
3423
|
:param _request_timeout: timeout setting for this request. If one
|
|
3414
3424
|
number provided, it will be total request
|
|
@@ -3472,7 +3482,7 @@ class OrganizationApi:
|
|
|
3472
3482
|
_query_params: List[Tuple[str, str]] = []
|
|
3473
3483
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
3474
3484
|
_form_params: List[Tuple[str, str]] = []
|
|
3475
|
-
_files: Dict[str, str] = {}
|
|
3485
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
3476
3486
|
_body_params: Optional[bytes] = None
|
|
3477
3487
|
|
|
3478
3488
|
# process the path parameters
|
|
@@ -3487,11 +3497,12 @@ class OrganizationApi:
|
|
|
3487
3497
|
|
|
3488
3498
|
|
|
3489
3499
|
# set the HTTP header `Accept`
|
|
3490
|
-
|
|
3491
|
-
[
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3500
|
+
if 'Accept' not in _header_params:
|
|
3501
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
3502
|
+
[
|
|
3503
|
+
'application/json'
|
|
3504
|
+
]
|
|
3505
|
+
)
|
|
3495
3506
|
|
|
3496
3507
|
# set the HTTP header `Content-Type`
|
|
3497
3508
|
if _content_type:
|
|
@@ -3772,7 +3783,7 @@ class OrganizationApi:
|
|
|
3772
3783
|
_query_params: List[Tuple[str, str]] = []
|
|
3773
3784
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
3774
3785
|
_form_params: List[Tuple[str, str]] = []
|
|
3775
|
-
_files: Dict[str, str] = {}
|
|
3786
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
3776
3787
|
_body_params: Optional[bytes] = None
|
|
3777
3788
|
|
|
3778
3789
|
# process the path parameters
|
|
@@ -3789,11 +3800,12 @@ class OrganizationApi:
|
|
|
3789
3800
|
|
|
3790
3801
|
|
|
3791
3802
|
# set the HTTP header `Accept`
|
|
3792
|
-
|
|
3793
|
-
[
|
|
3794
|
-
|
|
3795
|
-
|
|
3796
|
-
|
|
3803
|
+
if 'Accept' not in _header_params:
|
|
3804
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
3805
|
+
[
|
|
3806
|
+
'application/json'
|
|
3807
|
+
]
|
|
3808
|
+
)
|
|
3797
3809
|
|
|
3798
3810
|
# set the HTTP header `Content-Type`
|
|
3799
3811
|
if _content_type:
|
|
@@ -3802,7 +3814,8 @@ class OrganizationApi:
|
|
|
3802
3814
|
_default_content_type = (
|
|
3803
3815
|
self.api_client.select_header_content_type(
|
|
3804
3816
|
[
|
|
3805
|
-
'application/json'
|
|
3817
|
+
'application/json',
|
|
3818
|
+
'application/yaml'
|
|
3806
3819
|
]
|
|
3807
3820
|
)
|
|
3808
3821
|
)
|
|
@@ -4060,7 +4073,7 @@ class OrganizationApi:
|
|
|
4060
4073
|
_query_params: List[Tuple[str, str]] = []
|
|
4061
4074
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
4062
4075
|
_form_params: List[Tuple[str, str]] = []
|
|
4063
|
-
_files: Dict[str, str] = {}
|
|
4076
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
4064
4077
|
_body_params: Optional[bytes] = None
|
|
4065
4078
|
|
|
4066
4079
|
# process the path parameters
|
|
@@ -4075,11 +4088,12 @@ class OrganizationApi:
|
|
|
4075
4088
|
|
|
4076
4089
|
|
|
4077
4090
|
# set the HTTP header `Accept`
|
|
4078
|
-
|
|
4079
|
-
[
|
|
4080
|
-
|
|
4081
|
-
|
|
4082
|
-
|
|
4091
|
+
if 'Accept' not in _header_params:
|
|
4092
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4093
|
+
[
|
|
4094
|
+
'application/json'
|
|
4095
|
+
]
|
|
4096
|
+
)
|
|
4083
4097
|
|
|
4084
4098
|
# set the HTTP header `Content-Type`
|
|
4085
4099
|
if _content_type:
|
|
@@ -4347,7 +4361,7 @@ class OrganizationApi:
|
|
|
4347
4361
|
_query_params: List[Tuple[str, str]] = []
|
|
4348
4362
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
4349
4363
|
_form_params: List[Tuple[str, str]] = []
|
|
4350
|
-
_files: Dict[str, str] = {}
|
|
4364
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
4351
4365
|
_body_params: Optional[bytes] = None
|
|
4352
4366
|
|
|
4353
4367
|
# process the path parameters
|
|
@@ -4362,11 +4376,12 @@ class OrganizationApi:
|
|
|
4362
4376
|
|
|
4363
4377
|
|
|
4364
4378
|
# set the HTTP header `Accept`
|
|
4365
|
-
|
|
4366
|
-
[
|
|
4367
|
-
|
|
4368
|
-
|
|
4369
|
-
|
|
4379
|
+
if 'Accept' not in _header_params:
|
|
4380
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4381
|
+
[
|
|
4382
|
+
'application/json'
|
|
4383
|
+
]
|
|
4384
|
+
)
|
|
4370
4385
|
|
|
4371
4386
|
# set the HTTP header `Content-Type`
|
|
4372
4387
|
if _content_type:
|
|
@@ -4634,7 +4649,7 @@ class OrganizationApi:
|
|
|
4634
4649
|
_query_params: List[Tuple[str, str]] = []
|
|
4635
4650
|
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
4636
4651
|
_form_params: List[Tuple[str, str]] = []
|
|
4637
|
-
_files: Dict[str, str] = {}
|
|
4652
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
|
4638
4653
|
_body_params: Optional[bytes] = None
|
|
4639
4654
|
|
|
4640
4655
|
# process the path parameters
|
|
@@ -4649,11 +4664,13 @@ class OrganizationApi:
|
|
|
4649
4664
|
|
|
4650
4665
|
|
|
4651
4666
|
# set the HTTP header `Accept`
|
|
4652
|
-
|
|
4653
|
-
[
|
|
4654
|
-
|
|
4655
|
-
|
|
4656
|
-
|
|
4667
|
+
if 'Accept' not in _header_params:
|
|
4668
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
4669
|
+
[
|
|
4670
|
+
'application/json',
|
|
4671
|
+
'application/yaml'
|
|
4672
|
+
]
|
|
4673
|
+
)
|
|
4657
4674
|
|
|
4658
4675
|
# set the HTTP header `Content-Type`
|
|
4659
4676
|
if _content_type:
|
|
@@ -4662,7 +4679,8 @@ class OrganizationApi:
|
|
|
4662
4679
|
_default_content_type = (
|
|
4663
4680
|
self.api_client.select_header_content_type(
|
|
4664
4681
|
[
|
|
4665
|
-
'application/json'
|
|
4682
|
+
'application/json',
|
|
4683
|
+
'application/yaml'
|
|
4666
4684
|
]
|
|
4667
4685
|
)
|
|
4668
4686
|
)
|