cosmotech-api 2.4.7__py3-none-any.whl → 3.0.9.dev0__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 +1 -1
- cosmotech_api/api/connector_api.py +20 -21
- cosmotech_api/api/dataset_api.py +2612 -153
- cosmotech_api/api/organization_api.py +1 -131
- cosmotech_api/api/scenario_api.py +13 -158
- cosmotech_api/api/scenariorun_api.py +1 -160
- cosmotech_api/api/scenariorunresult_api.py +386 -0
- cosmotech_api/api/solution_api.py +639 -36
- cosmotech_api/api/twingraph_api.py +2 -145
- cosmotech_api/api/user_api.py +1 -1
- cosmotech_api/api/validator_api.py +1 -1
- cosmotech_api/api/workspace_api.py +1 -141
- cosmotech_api/api_client.py +1 -1
- cosmotech_api/apis/__init__.py +1 -0
- cosmotech_api/configuration.py +2 -2
- 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 +55 -1
- cosmotech_api/model/dataset_access_control.py +268 -0
- 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 +262 -0
- cosmotech_api/model/dataset_search.py +1 -1
- cosmotech_api/model/dataset_security.py +274 -0
- cosmotech_api/model/dataset_source_type.py +286 -0
- cosmotech_api/model/dataset_twin_graph_hash.py +256 -0
- cosmotech_api/model/dataset_twin_graph_info.py +264 -0
- cosmotech_api/model/dataset_twin_graph_query.py +262 -0
- cosmotech_api/model/delete_historical_data.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_template.py +7 -1
- cosmotech_api/model/run_template_handler_id.py +1 -1
- cosmotech_api/model/run_template_orchestrator.py +283 -0
- 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/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 +6 -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 +260 -0
- 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 +16 -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 +7 -1
- cosmotech_api/model/solution_access_control.py +268 -0
- cosmotech_api/model/solution_role.py +262 -0
- cosmotech_api/model/solution_security.py +274 -0
- cosmotech_api/model/source_info.py +3 -13
- cosmotech_api/model/sub_dataset_graph_query.py +268 -0
- 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_import.py +1 -1
- cosmotech_api/model/twin_graph_import_info.py +1 -1
- cosmotech_api/model/twin_graph_query.py +1 -1
- cosmotech_api/model/user.py +1 -1
- cosmotech_api/model/user_organization.py +1 -1
- cosmotech_api/model/user_workspace.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 +14 -2
- cosmotech_api/rest.py +1 -1
- {cosmotech_api-2.4.7.dist-info → cosmotech_api-3.0.9.dev0.dist-info}/METADATA +2 -2
- cosmotech_api-3.0.9.dev0.dist-info/RECORD +114 -0
- {cosmotech_api-2.4.7.dist-info → cosmotech_api-3.0.9.dev0.dist-info}/WHEEL +1 -1
- cosmotech_api-2.4.7.dist-info/RECORD +0 -100
- {cosmotech_api-2.4.7.dist-info → cosmotech_api-3.0.9.dev0.dist-info}/LICENSE +0 -0
- {cosmotech_api-2.4.7.dist-info → cosmotech_api-3.0.9.dev0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,283 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Cosmo Tech Platform API
|
|
3
|
+
|
|
4
|
+
Cosmo Tech Platform API # noqa: E501
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 3.0.9-SNAPSHOT
|
|
7
|
+
Contact: platform@cosmotech.com
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
"""
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
import re # noqa: F401
|
|
13
|
+
import sys # noqa: F401
|
|
14
|
+
|
|
15
|
+
from cosmotech_api.model_utils import ( # noqa: F401
|
|
16
|
+
ApiTypeError,
|
|
17
|
+
ModelComposed,
|
|
18
|
+
ModelNormal,
|
|
19
|
+
ModelSimple,
|
|
20
|
+
cached_property,
|
|
21
|
+
change_keys_js_to_python,
|
|
22
|
+
convert_js_args_to_python_args,
|
|
23
|
+
date,
|
|
24
|
+
datetime,
|
|
25
|
+
file_type,
|
|
26
|
+
none_type,
|
|
27
|
+
validate_get_composed_info,
|
|
28
|
+
OpenApiModel
|
|
29
|
+
)
|
|
30
|
+
from cosmotech_api.exceptions import ApiAttributeError
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
class RunTemplateOrchestrator(ModelSimple):
|
|
35
|
+
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
36
|
+
Ref: https://openapi-generator.tech
|
|
37
|
+
|
|
38
|
+
Do not edit the class manually.
|
|
39
|
+
|
|
40
|
+
Attributes:
|
|
41
|
+
allowed_values (dict): The key is the tuple path to the attribute
|
|
42
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
43
|
+
with a capitalized key describing the allowed value and an allowed
|
|
44
|
+
value. These dicts store the allowed enum values.
|
|
45
|
+
validations (dict): The key is the tuple path to the attribute
|
|
46
|
+
and the for var_name this is (var_name,). The value is a dict
|
|
47
|
+
that stores validations for max_length, min_length, max_items,
|
|
48
|
+
min_items, exclusive_maximum, inclusive_maximum, exclusive_minimum,
|
|
49
|
+
inclusive_minimum, and regex.
|
|
50
|
+
additional_properties_type (tuple): A tuple of classes accepted
|
|
51
|
+
as additional properties values.
|
|
52
|
+
"""
|
|
53
|
+
|
|
54
|
+
allowed_values = {
|
|
55
|
+
('value',): {
|
|
56
|
+
'ARGOWORKFLOW': "argoWorkflow",
|
|
57
|
+
'CSMORC': "csmOrc",
|
|
58
|
+
},
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
validations = {
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
additional_properties_type = None
|
|
65
|
+
|
|
66
|
+
_nullable = False
|
|
67
|
+
|
|
68
|
+
@cached_property
|
|
69
|
+
def openapi_types():
|
|
70
|
+
"""
|
|
71
|
+
This must be a method because a model may have properties that are
|
|
72
|
+
of type self, this must run after the class is loaded
|
|
73
|
+
|
|
74
|
+
Returns
|
|
75
|
+
openapi_types (dict): The key is attribute name
|
|
76
|
+
and the value is attribute type.
|
|
77
|
+
"""
|
|
78
|
+
return {
|
|
79
|
+
'value': (str,),
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@cached_property
|
|
83
|
+
def discriminator():
|
|
84
|
+
return None
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
attribute_map = {}
|
|
88
|
+
|
|
89
|
+
read_only_vars = set()
|
|
90
|
+
|
|
91
|
+
_composed_schemas = None
|
|
92
|
+
|
|
93
|
+
required_properties = set([
|
|
94
|
+
'_data_store',
|
|
95
|
+
'_check_type',
|
|
96
|
+
'_spec_property_naming',
|
|
97
|
+
'_path_to_item',
|
|
98
|
+
'_configuration',
|
|
99
|
+
'_visited_composed_classes',
|
|
100
|
+
])
|
|
101
|
+
|
|
102
|
+
@convert_js_args_to_python_args
|
|
103
|
+
def __init__(self, *args, **kwargs):
|
|
104
|
+
"""RunTemplateOrchestrator - a model defined in OpenAPI
|
|
105
|
+
|
|
106
|
+
Note that value can be passed either in args or in kwargs, but not in both.
|
|
107
|
+
|
|
108
|
+
Args:
|
|
109
|
+
args[0] (str): the Orchestrator to use for the Run Template., must be one of ["argoWorkflow", "csmOrc", ] # noqa: E501
|
|
110
|
+
|
|
111
|
+
Keyword Args:
|
|
112
|
+
value (str): the Orchestrator to use for the Run Template., must be one of ["argoWorkflow", "csmOrc", ] # noqa: E501
|
|
113
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
114
|
+
will be type checked and a TypeError will be
|
|
115
|
+
raised if the wrong type is input.
|
|
116
|
+
Defaults to True
|
|
117
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
118
|
+
drill down to the model in received_data
|
|
119
|
+
when deserializing a response
|
|
120
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
121
|
+
are serialized names, as specified in the OpenAPI document.
|
|
122
|
+
False if the variable names in the input data
|
|
123
|
+
are pythonic names, e.g. snake case (default)
|
|
124
|
+
_configuration (Configuration): the instance to use when
|
|
125
|
+
deserializing a file_type parameter.
|
|
126
|
+
If passed, type conversion is attempted
|
|
127
|
+
If omitted no type conversion is done.
|
|
128
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
129
|
+
classes that we have traveled through so that
|
|
130
|
+
if we see that class again we will not use its
|
|
131
|
+
discriminator again.
|
|
132
|
+
When traveling through a discriminator, the
|
|
133
|
+
composed schema that is
|
|
134
|
+
is traveled through is added to this set.
|
|
135
|
+
For example if Animal has a discriminator
|
|
136
|
+
petType and we pass in "Dog", and the class Dog
|
|
137
|
+
allOf includes Animal, we move through Animal
|
|
138
|
+
once using the discriminator, and pick Dog.
|
|
139
|
+
Then in Dog, we will make an instance of the
|
|
140
|
+
Animal class but this time we won't travel
|
|
141
|
+
through its discriminator because we passed in
|
|
142
|
+
_visited_composed_classes = (Animal,)
|
|
143
|
+
"""
|
|
144
|
+
# required up here when default value is not given
|
|
145
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
146
|
+
|
|
147
|
+
if 'value' in kwargs:
|
|
148
|
+
value = kwargs.pop('value')
|
|
149
|
+
elif args:
|
|
150
|
+
args = list(args)
|
|
151
|
+
value = args.pop(0)
|
|
152
|
+
else:
|
|
153
|
+
raise ApiTypeError(
|
|
154
|
+
"value is required, but not passed in args or kwargs and doesn't have default",
|
|
155
|
+
path_to_item=_path_to_item,
|
|
156
|
+
valid_classes=(self.__class__,),
|
|
157
|
+
)
|
|
158
|
+
|
|
159
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
160
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
161
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
162
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
163
|
+
|
|
164
|
+
if args:
|
|
165
|
+
raise ApiTypeError(
|
|
166
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
167
|
+
args,
|
|
168
|
+
self.__class__.__name__,
|
|
169
|
+
),
|
|
170
|
+
path_to_item=_path_to_item,
|
|
171
|
+
valid_classes=(self.__class__,),
|
|
172
|
+
)
|
|
173
|
+
|
|
174
|
+
self._data_store = {}
|
|
175
|
+
self._check_type = _check_type
|
|
176
|
+
self._spec_property_naming = _spec_property_naming
|
|
177
|
+
self._path_to_item = _path_to_item
|
|
178
|
+
self._configuration = _configuration
|
|
179
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
180
|
+
self.value = value
|
|
181
|
+
if kwargs:
|
|
182
|
+
raise ApiTypeError(
|
|
183
|
+
"Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % (
|
|
184
|
+
kwargs,
|
|
185
|
+
self.__class__.__name__,
|
|
186
|
+
),
|
|
187
|
+
path_to_item=_path_to_item,
|
|
188
|
+
valid_classes=(self.__class__,),
|
|
189
|
+
)
|
|
190
|
+
|
|
191
|
+
@classmethod
|
|
192
|
+
@convert_js_args_to_python_args
|
|
193
|
+
def _from_openapi_data(cls, *args, **kwargs):
|
|
194
|
+
"""RunTemplateOrchestrator - a model defined in OpenAPI
|
|
195
|
+
|
|
196
|
+
Note that value can be passed either in args or in kwargs, but not in both.
|
|
197
|
+
|
|
198
|
+
Args:
|
|
199
|
+
args[0] (str): the Orchestrator to use for the Run Template., must be one of ["argoWorkflow", "csmOrc", ] # noqa: E501
|
|
200
|
+
|
|
201
|
+
Keyword Args:
|
|
202
|
+
value (str): the Orchestrator to use for the Run Template., must be one of ["argoWorkflow", "csmOrc", ] # noqa: E501
|
|
203
|
+
_check_type (bool): if True, values for parameters in openapi_types
|
|
204
|
+
will be type checked and a TypeError will be
|
|
205
|
+
raised if the wrong type is input.
|
|
206
|
+
Defaults to True
|
|
207
|
+
_path_to_item (tuple/list): This is a list of keys or values to
|
|
208
|
+
drill down to the model in received_data
|
|
209
|
+
when deserializing a response
|
|
210
|
+
_spec_property_naming (bool): True if the variable names in the input data
|
|
211
|
+
are serialized names, as specified in the OpenAPI document.
|
|
212
|
+
False if the variable names in the input data
|
|
213
|
+
are pythonic names, e.g. snake case (default)
|
|
214
|
+
_configuration (Configuration): the instance to use when
|
|
215
|
+
deserializing a file_type parameter.
|
|
216
|
+
If passed, type conversion is attempted
|
|
217
|
+
If omitted no type conversion is done.
|
|
218
|
+
_visited_composed_classes (tuple): This stores a tuple of
|
|
219
|
+
classes that we have traveled through so that
|
|
220
|
+
if we see that class again we will not use its
|
|
221
|
+
discriminator again.
|
|
222
|
+
When traveling through a discriminator, the
|
|
223
|
+
composed schema that is
|
|
224
|
+
is traveled through is added to this set.
|
|
225
|
+
For example if Animal has a discriminator
|
|
226
|
+
petType and we pass in "Dog", and the class Dog
|
|
227
|
+
allOf includes Animal, we move through Animal
|
|
228
|
+
once using the discriminator, and pick Dog.
|
|
229
|
+
Then in Dog, we will make an instance of the
|
|
230
|
+
Animal class but this time we won't travel
|
|
231
|
+
through its discriminator because we passed in
|
|
232
|
+
_visited_composed_classes = (Animal,)
|
|
233
|
+
"""
|
|
234
|
+
# required up here when default value is not given
|
|
235
|
+
_path_to_item = kwargs.pop('_path_to_item', ())
|
|
236
|
+
|
|
237
|
+
self = super(OpenApiModel, cls).__new__(cls)
|
|
238
|
+
|
|
239
|
+
if 'value' in kwargs:
|
|
240
|
+
value = kwargs.pop('value')
|
|
241
|
+
elif args:
|
|
242
|
+
args = list(args)
|
|
243
|
+
value = args.pop(0)
|
|
244
|
+
else:
|
|
245
|
+
raise ApiTypeError(
|
|
246
|
+
"value is required, but not passed in args or kwargs and doesn't have default",
|
|
247
|
+
path_to_item=_path_to_item,
|
|
248
|
+
valid_classes=(self.__class__,),
|
|
249
|
+
)
|
|
250
|
+
|
|
251
|
+
_check_type = kwargs.pop('_check_type', True)
|
|
252
|
+
_spec_property_naming = kwargs.pop('_spec_property_naming', False)
|
|
253
|
+
_configuration = kwargs.pop('_configuration', None)
|
|
254
|
+
_visited_composed_classes = kwargs.pop('_visited_composed_classes', ())
|
|
255
|
+
|
|
256
|
+
if args:
|
|
257
|
+
raise ApiTypeError(
|
|
258
|
+
"Invalid positional arguments=%s passed to %s. Remove those invalid positional arguments." % (
|
|
259
|
+
args,
|
|
260
|
+
self.__class__.__name__,
|
|
261
|
+
),
|
|
262
|
+
path_to_item=_path_to_item,
|
|
263
|
+
valid_classes=(self.__class__,),
|
|
264
|
+
)
|
|
265
|
+
|
|
266
|
+
self._data_store = {}
|
|
267
|
+
self._check_type = _check_type
|
|
268
|
+
self._spec_property_naming = _spec_property_naming
|
|
269
|
+
self._path_to_item = _path_to_item
|
|
270
|
+
self._configuration = _configuration
|
|
271
|
+
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
272
|
+
self.value = value
|
|
273
|
+
if kwargs:
|
|
274
|
+
raise ApiTypeError(
|
|
275
|
+
"Invalid named arguments=%s passed to %s. Remove those invalid named arguments." % (
|
|
276
|
+
kwargs,
|
|
277
|
+
self.__class__.__name__,
|
|
278
|
+
),
|
|
279
|
+
path_to_item=_path_to_item,
|
|
280
|
+
valid_classes=(self.__class__,),
|
|
281
|
+
)
|
|
282
|
+
|
|
283
|
+
return self
|
cosmotech_api/model/scenario.py
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
Cosmo Tech Platform API # noqa: E501
|
|
5
5
|
|
|
6
|
-
The version of the OpenAPI document:
|
|
6
|
+
The version of the OpenAPI document: 3.0.9-SNAPSHOT
|
|
7
7
|
Contact: platform@cosmotech.com
|
|
8
8
|
Generated by: https://openapi-generator.tech
|
|
9
9
|
"""
|
|
@@ -107,6 +107,7 @@ class ScenarioRun(ModelNormal):
|
|
|
107
107
|
'run_template_id': (str,), # noqa: E501
|
|
108
108
|
'compute_size': (str,), # noqa: E501
|
|
109
109
|
'sdk_version': (str,), # noqa: E501
|
|
110
|
+
'created_at': (str,), # noqa: E501
|
|
110
111
|
'no_data_ingestion_state': (bool,), # noqa: E501
|
|
111
112
|
'dataset_list': ([str],), # noqa: E501
|
|
112
113
|
'parameters_values': ([RunTemplateParameterValue],), # noqa: E501
|
|
@@ -137,6 +138,7 @@ class ScenarioRun(ModelNormal):
|
|
|
137
138
|
'run_template_id': 'runTemplateId', # noqa: E501
|
|
138
139
|
'compute_size': 'computeSize', # noqa: E501
|
|
139
140
|
'sdk_version': 'sdkVersion', # noqa: E501
|
|
141
|
+
'created_at': 'createdAt', # noqa: E501
|
|
140
142
|
'no_data_ingestion_state': 'noDataIngestionState', # noqa: E501
|
|
141
143
|
'dataset_list': 'datasetList', # noqa: E501
|
|
142
144
|
'parameters_values': 'parametersValues', # noqa: E501
|
|
@@ -156,6 +158,7 @@ class ScenarioRun(ModelNormal):
|
|
|
156
158
|
'solution_id', # noqa: E501
|
|
157
159
|
'run_template_id', # noqa: E501
|
|
158
160
|
'compute_size', # noqa: E501
|
|
161
|
+
'created_at', # noqa: E501
|
|
159
162
|
'dataset_list', # noqa: E501
|
|
160
163
|
'parameters_values', # noqa: E501
|
|
161
164
|
'send_datasets_to_data_warehouse', # noqa: E501
|
|
@@ -216,6 +219,7 @@ class ScenarioRun(ModelNormal):
|
|
|
216
219
|
run_template_id (str): the Solution Run Template id. [optional] # noqa: E501
|
|
217
220
|
compute_size (str): the compute size needed for this Analysis. Standard sizes are basic and highcpu. Default is basic. [optional] # noqa: E501
|
|
218
221
|
sdk_version (str): the MAJOR.MINOR version used to build the solution solution. [optional] # noqa: E501
|
|
222
|
+
created_at (str): the ScenarioRun creation date. [optional] # noqa: E501
|
|
219
223
|
no_data_ingestion_state (bool): set to true if the run template does not use any Datawarehouse consumers (AMQP consumers for Azure). [optional] # noqa: E501
|
|
220
224
|
dataset_list ([str]): the list of Dataset Id associated to this Analysis. [optional] # noqa: E501
|
|
221
225
|
parameters_values ([RunTemplateParameterValue]): the list of Run Template parameters values. [optional] # noqa: E501
|
|
@@ -319,6 +323,7 @@ class ScenarioRun(ModelNormal):
|
|
|
319
323
|
run_template_id (str): the Solution Run Template id. [optional] # noqa: E501
|
|
320
324
|
compute_size (str): the compute size needed for this Analysis. Standard sizes are basic and highcpu. Default is basic. [optional] # noqa: E501
|
|
321
325
|
sdk_version (str): the MAJOR.MINOR version used to build the solution solution. [optional] # noqa: E501
|
|
326
|
+
created_at (str): the ScenarioRun creation date. [optional] # noqa: E501
|
|
322
327
|
no_data_ingestion_state (bool): set to true if the run template does not use any Datawarehouse consumers (AMQP consumers for Azure). [optional] # noqa: E501
|
|
323
328
|
dataset_list ([str]): the list of Dataset Id associated to this Analysis. [optional] # noqa: E501
|
|
324
329
|
parameters_values ([RunTemplateParameterValue]): the list of Run Template parameters values. [optional] # noqa: E501
|