rapidata 0.4.1__py3-none-any.whl → 0.5.0__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.
- rapidata/__init__.py +4 -3
- rapidata/api_client/__init__.py +22 -12
- rapidata/api_client/api/__init__.py +2 -0
- rapidata/api_client/api/campaign_api.py +1044 -0
- rapidata/api_client/api/order_api.py +0 -556
- rapidata/api_client/api/pipeline_api.py +843 -0
- rapidata/api_client/models/__init__.py +20 -12
- rapidata/api_client/models/add_campaign_artifact_result.py +87 -0
- rapidata/api_client/models/add_campaign_model.py +149 -0
- rapidata/api_client/models/campaign_artifact_model.py +98 -0
- rapidata/api_client/models/campaign_query_model.py +105 -0
- rapidata/api_client/models/campaign_query_model_paged_result.py +105 -0
- rapidata/api_client/models/campaign_status.py +39 -0
- rapidata/api_client/models/compare_workflow_config.py +2 -12
- rapidata/api_client/models/compare_workflow_config_model.py +138 -0
- rapidata/api_client/models/conditional_validation_selection.py +106 -0
- rapidata/api_client/models/create_order_model_selections_inner.py +26 -12
- rapidata/api_client/models/dataset_artifact_model.py +98 -0
- rapidata/api_client/models/demographic_rapid_selection_config.py +7 -5
- rapidata/api_client/models/demographic_selection.py +7 -5
- rapidata/api_client/models/file_artifact_model.py +98 -0
- rapidata/api_client/models/get_pipeline_by_id_result.py +100 -0
- rapidata/api_client/models/get_pipeline_by_id_result_artifacts_value.py +182 -0
- rapidata/api_client/models/query_campaigns_model.py +112 -0
- rapidata/api_client/models/simple_workflow_config.py +2 -12
- rapidata/api_client/models/simple_workflow_config_model.py +132 -0
- rapidata/api_client/models/simple_workflow_config_model_blueprint.py +238 -0
- rapidata/api_client/models/update_workflow_config_request.py +107 -0
- rapidata/api_client/models/update_workflow_config_request_config.py +140 -0
- rapidata/api_client/models/workflow_artifact_model.py +98 -0
- rapidata/api_client/models/workflow_config_artifact_model.py +102 -0
- rapidata/api_client/models/workflow_config_artifact_model_workflow_config.py +140 -0
- rapidata/api_client_README.md +31 -21
- rapidata/rapidata_client/__init__.py +6 -1
- rapidata/rapidata_client/selection/__init__.py +1 -0
- rapidata/rapidata_client/selection/conditional_validation_rapid_selection.py +41 -0
- rapidata/rapidata_client/selection/demographic_selection.py +3 -5
- {rapidata-0.4.1.dist-info → rapidata-0.5.0.dist-info}/METADATA +1 -1
- {rapidata-0.4.1.dist-info → rapidata-0.5.0.dist-info}/RECORD +41 -18
- {rapidata-0.4.1.dist-info → rapidata-0.5.0.dist-info}/LICENSE +0 -0
- {rapidata-0.4.1.dist-info → rapidata-0.5.0.dist-info}/WHEEL +0 -0
|
@@ -0,0 +1,843 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Rapidata.Dataset
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
import warnings
|
|
15
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
16
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
|
+
from typing_extensions import Annotated
|
|
18
|
+
|
|
19
|
+
from pydantic import Field, StrictStr
|
|
20
|
+
from typing import Optional
|
|
21
|
+
from typing_extensions import Annotated
|
|
22
|
+
from rapidata.api_client.models.add_campaign_artifact_result import AddCampaignArtifactResult
|
|
23
|
+
from rapidata.api_client.models.add_campaign_model import AddCampaignModel
|
|
24
|
+
from rapidata.api_client.models.get_pipeline_by_id_result import GetPipelineByIdResult
|
|
25
|
+
from rapidata.api_client.models.update_workflow_config_request import UpdateWorkflowConfigRequest
|
|
26
|
+
|
|
27
|
+
from rapidata.api_client.api_client import ApiClient, RequestSerialized
|
|
28
|
+
from rapidata.api_client.api_response import ApiResponse
|
|
29
|
+
from rapidata.api_client.rest import RESTResponseType
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
class PipelineApi:
|
|
33
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
34
|
+
Ref: https://openapi-generator.tech
|
|
35
|
+
|
|
36
|
+
Do not edit the class manually.
|
|
37
|
+
"""
|
|
38
|
+
|
|
39
|
+
def __init__(self, api_client=None) -> None:
|
|
40
|
+
if api_client is None:
|
|
41
|
+
api_client = ApiClient.get_default()
|
|
42
|
+
self.api_client = api_client
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
@validate_call
|
|
46
|
+
def pipeline_add_campaign_patch(
|
|
47
|
+
self,
|
|
48
|
+
add_campaign_model: Optional[AddCampaignModel] = None,
|
|
49
|
+
_request_timeout: Union[
|
|
50
|
+
None,
|
|
51
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
52
|
+
Tuple[
|
|
53
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
54
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
55
|
+
]
|
|
56
|
+
] = None,
|
|
57
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
58
|
+
_content_type: Optional[StrictStr] = None,
|
|
59
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
60
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
61
|
+
) -> AddCampaignArtifactResult:
|
|
62
|
+
"""Adds a campaign to a pipeline.
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
:param add_campaign_model:
|
|
66
|
+
:type add_campaign_model: AddCampaignModel
|
|
67
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
68
|
+
number provided, it will be total request
|
|
69
|
+
timeout. It can also be a pair (tuple) of
|
|
70
|
+
(connection, read) timeouts.
|
|
71
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
72
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
73
|
+
request; this effectively ignores the
|
|
74
|
+
authentication in the spec for a single request.
|
|
75
|
+
:type _request_auth: dict, optional
|
|
76
|
+
:param _content_type: force content-type for the request.
|
|
77
|
+
:type _content_type: str, Optional
|
|
78
|
+
:param _headers: set to override the headers for a single
|
|
79
|
+
request; this effectively ignores the headers
|
|
80
|
+
in the spec for a single request.
|
|
81
|
+
:type _headers: dict, optional
|
|
82
|
+
:param _host_index: set to override the host_index for a single
|
|
83
|
+
request; this effectively ignores the host_index
|
|
84
|
+
in the spec for a single request.
|
|
85
|
+
:type _host_index: int, optional
|
|
86
|
+
:return: Returns the result object.
|
|
87
|
+
""" # noqa: E501
|
|
88
|
+
|
|
89
|
+
_param = self._pipeline_add_campaign_patch_serialize(
|
|
90
|
+
add_campaign_model=add_campaign_model,
|
|
91
|
+
_request_auth=_request_auth,
|
|
92
|
+
_content_type=_content_type,
|
|
93
|
+
_headers=_headers,
|
|
94
|
+
_host_index=_host_index
|
|
95
|
+
)
|
|
96
|
+
|
|
97
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
98
|
+
'200': "AddCampaignArtifactResult",
|
|
99
|
+
}
|
|
100
|
+
response_data = self.api_client.call_api(
|
|
101
|
+
*_param,
|
|
102
|
+
_request_timeout=_request_timeout
|
|
103
|
+
)
|
|
104
|
+
response_data.read()
|
|
105
|
+
return self.api_client.response_deserialize(
|
|
106
|
+
response_data=response_data,
|
|
107
|
+
response_types_map=_response_types_map,
|
|
108
|
+
).data
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
@validate_call
|
|
112
|
+
def pipeline_add_campaign_patch_with_http_info(
|
|
113
|
+
self,
|
|
114
|
+
add_campaign_model: Optional[AddCampaignModel] = None,
|
|
115
|
+
_request_timeout: Union[
|
|
116
|
+
None,
|
|
117
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
118
|
+
Tuple[
|
|
119
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
120
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
121
|
+
]
|
|
122
|
+
] = None,
|
|
123
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
124
|
+
_content_type: Optional[StrictStr] = None,
|
|
125
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
126
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
127
|
+
) -> ApiResponse[AddCampaignArtifactResult]:
|
|
128
|
+
"""Adds a campaign to a pipeline.
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
:param add_campaign_model:
|
|
132
|
+
:type add_campaign_model: AddCampaignModel
|
|
133
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
134
|
+
number provided, it will be total request
|
|
135
|
+
timeout. It can also be a pair (tuple) of
|
|
136
|
+
(connection, read) timeouts.
|
|
137
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
138
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
139
|
+
request; this effectively ignores the
|
|
140
|
+
authentication in the spec for a single request.
|
|
141
|
+
:type _request_auth: dict, optional
|
|
142
|
+
:param _content_type: force content-type for the request.
|
|
143
|
+
:type _content_type: str, Optional
|
|
144
|
+
:param _headers: set to override the headers for a single
|
|
145
|
+
request; this effectively ignores the headers
|
|
146
|
+
in the spec for a single request.
|
|
147
|
+
:type _headers: dict, optional
|
|
148
|
+
:param _host_index: set to override the host_index for a single
|
|
149
|
+
request; this effectively ignores the host_index
|
|
150
|
+
in the spec for a single request.
|
|
151
|
+
:type _host_index: int, optional
|
|
152
|
+
:return: Returns the result object.
|
|
153
|
+
""" # noqa: E501
|
|
154
|
+
|
|
155
|
+
_param = self._pipeline_add_campaign_patch_serialize(
|
|
156
|
+
add_campaign_model=add_campaign_model,
|
|
157
|
+
_request_auth=_request_auth,
|
|
158
|
+
_content_type=_content_type,
|
|
159
|
+
_headers=_headers,
|
|
160
|
+
_host_index=_host_index
|
|
161
|
+
)
|
|
162
|
+
|
|
163
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
164
|
+
'200': "AddCampaignArtifactResult",
|
|
165
|
+
}
|
|
166
|
+
response_data = self.api_client.call_api(
|
|
167
|
+
*_param,
|
|
168
|
+
_request_timeout=_request_timeout
|
|
169
|
+
)
|
|
170
|
+
response_data.read()
|
|
171
|
+
return self.api_client.response_deserialize(
|
|
172
|
+
response_data=response_data,
|
|
173
|
+
response_types_map=_response_types_map,
|
|
174
|
+
)
|
|
175
|
+
|
|
176
|
+
|
|
177
|
+
@validate_call
|
|
178
|
+
def pipeline_add_campaign_patch_without_preload_content(
|
|
179
|
+
self,
|
|
180
|
+
add_campaign_model: Optional[AddCampaignModel] = None,
|
|
181
|
+
_request_timeout: Union[
|
|
182
|
+
None,
|
|
183
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
184
|
+
Tuple[
|
|
185
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
186
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
187
|
+
]
|
|
188
|
+
] = None,
|
|
189
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
190
|
+
_content_type: Optional[StrictStr] = None,
|
|
191
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
192
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
193
|
+
) -> RESTResponseType:
|
|
194
|
+
"""Adds a campaign to a pipeline.
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
:param add_campaign_model:
|
|
198
|
+
:type add_campaign_model: AddCampaignModel
|
|
199
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
200
|
+
number provided, it will be total request
|
|
201
|
+
timeout. It can also be a pair (tuple) of
|
|
202
|
+
(connection, read) timeouts.
|
|
203
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
204
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
205
|
+
request; this effectively ignores the
|
|
206
|
+
authentication in the spec for a single request.
|
|
207
|
+
:type _request_auth: dict, optional
|
|
208
|
+
:param _content_type: force content-type for the request.
|
|
209
|
+
:type _content_type: str, Optional
|
|
210
|
+
:param _headers: set to override the headers for a single
|
|
211
|
+
request; this effectively ignores the headers
|
|
212
|
+
in the spec for a single request.
|
|
213
|
+
:type _headers: dict, optional
|
|
214
|
+
:param _host_index: set to override the host_index for a single
|
|
215
|
+
request; this effectively ignores the host_index
|
|
216
|
+
in the spec for a single request.
|
|
217
|
+
:type _host_index: int, optional
|
|
218
|
+
:return: Returns the result object.
|
|
219
|
+
""" # noqa: E501
|
|
220
|
+
|
|
221
|
+
_param = self._pipeline_add_campaign_patch_serialize(
|
|
222
|
+
add_campaign_model=add_campaign_model,
|
|
223
|
+
_request_auth=_request_auth,
|
|
224
|
+
_content_type=_content_type,
|
|
225
|
+
_headers=_headers,
|
|
226
|
+
_host_index=_host_index
|
|
227
|
+
)
|
|
228
|
+
|
|
229
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
230
|
+
'200': "AddCampaignArtifactResult",
|
|
231
|
+
}
|
|
232
|
+
response_data = self.api_client.call_api(
|
|
233
|
+
*_param,
|
|
234
|
+
_request_timeout=_request_timeout
|
|
235
|
+
)
|
|
236
|
+
return response_data.response
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
def _pipeline_add_campaign_patch_serialize(
|
|
240
|
+
self,
|
|
241
|
+
add_campaign_model,
|
|
242
|
+
_request_auth,
|
|
243
|
+
_content_type,
|
|
244
|
+
_headers,
|
|
245
|
+
_host_index,
|
|
246
|
+
) -> RequestSerialized:
|
|
247
|
+
|
|
248
|
+
_host = None
|
|
249
|
+
|
|
250
|
+
_collection_formats: Dict[str, str] = {
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
_path_params: Dict[str, str] = {}
|
|
254
|
+
_query_params: List[Tuple[str, str]] = []
|
|
255
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
256
|
+
_form_params: List[Tuple[str, str]] = []
|
|
257
|
+
_files: Dict[
|
|
258
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
259
|
+
] = {}
|
|
260
|
+
_body_params: Optional[bytes] = None
|
|
261
|
+
|
|
262
|
+
# process the path parameters
|
|
263
|
+
# process the query parameters
|
|
264
|
+
# process the header parameters
|
|
265
|
+
# process the form parameters
|
|
266
|
+
# process the body parameter
|
|
267
|
+
if add_campaign_model is not None:
|
|
268
|
+
_body_params = add_campaign_model
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
# set the HTTP header `Accept`
|
|
272
|
+
if 'Accept' not in _header_params:
|
|
273
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
274
|
+
[
|
|
275
|
+
'text/plain',
|
|
276
|
+
'application/json',
|
|
277
|
+
'text/json'
|
|
278
|
+
]
|
|
279
|
+
)
|
|
280
|
+
|
|
281
|
+
# set the HTTP header `Content-Type`
|
|
282
|
+
if _content_type:
|
|
283
|
+
_header_params['Content-Type'] = _content_type
|
|
284
|
+
else:
|
|
285
|
+
_default_content_type = (
|
|
286
|
+
self.api_client.select_header_content_type(
|
|
287
|
+
[
|
|
288
|
+
'application/json',
|
|
289
|
+
'text/json',
|
|
290
|
+
'application/*+json'
|
|
291
|
+
]
|
|
292
|
+
)
|
|
293
|
+
)
|
|
294
|
+
if _default_content_type is not None:
|
|
295
|
+
_header_params['Content-Type'] = _default_content_type
|
|
296
|
+
|
|
297
|
+
# authentication setting
|
|
298
|
+
_auth_settings: List[str] = [
|
|
299
|
+
'bearer'
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
return self.api_client.param_serialize(
|
|
303
|
+
method='PATCH',
|
|
304
|
+
resource_path='/Pipeline/AddCampaign',
|
|
305
|
+
path_params=_path_params,
|
|
306
|
+
query_params=_query_params,
|
|
307
|
+
header_params=_header_params,
|
|
308
|
+
body=_body_params,
|
|
309
|
+
post_params=_form_params,
|
|
310
|
+
files=_files,
|
|
311
|
+
auth_settings=_auth_settings,
|
|
312
|
+
collection_formats=_collection_formats,
|
|
313
|
+
_host=_host,
|
|
314
|
+
_request_auth=_request_auth
|
|
315
|
+
)
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
@validate_call
|
|
321
|
+
def pipeline_id_get(
|
|
322
|
+
self,
|
|
323
|
+
id: Annotated[StrictStr, Field(description="The id of the pipeline to get.")],
|
|
324
|
+
_request_timeout: Union[
|
|
325
|
+
None,
|
|
326
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
327
|
+
Tuple[
|
|
328
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
329
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
330
|
+
]
|
|
331
|
+
] = None,
|
|
332
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
333
|
+
_content_type: Optional[StrictStr] = None,
|
|
334
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
335
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
336
|
+
) -> GetPipelineByIdResult:
|
|
337
|
+
"""Gets a pipeline by its id.
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
:param id: The id of the pipeline to get. (required)
|
|
341
|
+
:type id: str
|
|
342
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
343
|
+
number provided, it will be total request
|
|
344
|
+
timeout. It can also be a pair (tuple) of
|
|
345
|
+
(connection, read) timeouts.
|
|
346
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
347
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
348
|
+
request; this effectively ignores the
|
|
349
|
+
authentication in the spec for a single request.
|
|
350
|
+
:type _request_auth: dict, optional
|
|
351
|
+
:param _content_type: force content-type for the request.
|
|
352
|
+
:type _content_type: str, Optional
|
|
353
|
+
:param _headers: set to override the headers for a single
|
|
354
|
+
request; this effectively ignores the headers
|
|
355
|
+
in the spec for a single request.
|
|
356
|
+
:type _headers: dict, optional
|
|
357
|
+
:param _host_index: set to override the host_index for a single
|
|
358
|
+
request; this effectively ignores the host_index
|
|
359
|
+
in the spec for a single request.
|
|
360
|
+
:type _host_index: int, optional
|
|
361
|
+
:return: Returns the result object.
|
|
362
|
+
""" # noqa: E501
|
|
363
|
+
|
|
364
|
+
_param = self._pipeline_id_get_serialize(
|
|
365
|
+
id=id,
|
|
366
|
+
_request_auth=_request_auth,
|
|
367
|
+
_content_type=_content_type,
|
|
368
|
+
_headers=_headers,
|
|
369
|
+
_host_index=_host_index
|
|
370
|
+
)
|
|
371
|
+
|
|
372
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
373
|
+
'200': "GetPipelineByIdResult",
|
|
374
|
+
}
|
|
375
|
+
response_data = self.api_client.call_api(
|
|
376
|
+
*_param,
|
|
377
|
+
_request_timeout=_request_timeout
|
|
378
|
+
)
|
|
379
|
+
response_data.read()
|
|
380
|
+
return self.api_client.response_deserialize(
|
|
381
|
+
response_data=response_data,
|
|
382
|
+
response_types_map=_response_types_map,
|
|
383
|
+
).data
|
|
384
|
+
|
|
385
|
+
|
|
386
|
+
@validate_call
|
|
387
|
+
def pipeline_id_get_with_http_info(
|
|
388
|
+
self,
|
|
389
|
+
id: Annotated[StrictStr, Field(description="The id of the pipeline to get.")],
|
|
390
|
+
_request_timeout: Union[
|
|
391
|
+
None,
|
|
392
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
393
|
+
Tuple[
|
|
394
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
395
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
396
|
+
]
|
|
397
|
+
] = None,
|
|
398
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
399
|
+
_content_type: Optional[StrictStr] = None,
|
|
400
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
401
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
402
|
+
) -> ApiResponse[GetPipelineByIdResult]:
|
|
403
|
+
"""Gets a pipeline by its id.
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
:param id: The id of the pipeline to get. (required)
|
|
407
|
+
:type id: str
|
|
408
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
409
|
+
number provided, it will be total request
|
|
410
|
+
timeout. It can also be a pair (tuple) of
|
|
411
|
+
(connection, read) timeouts.
|
|
412
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
413
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
414
|
+
request; this effectively ignores the
|
|
415
|
+
authentication in the spec for a single request.
|
|
416
|
+
:type _request_auth: dict, optional
|
|
417
|
+
:param _content_type: force content-type for the request.
|
|
418
|
+
:type _content_type: str, Optional
|
|
419
|
+
:param _headers: set to override the headers for a single
|
|
420
|
+
request; this effectively ignores the headers
|
|
421
|
+
in the spec for a single request.
|
|
422
|
+
:type _headers: dict, optional
|
|
423
|
+
:param _host_index: set to override the host_index for a single
|
|
424
|
+
request; this effectively ignores the host_index
|
|
425
|
+
in the spec for a single request.
|
|
426
|
+
:type _host_index: int, optional
|
|
427
|
+
:return: Returns the result object.
|
|
428
|
+
""" # noqa: E501
|
|
429
|
+
|
|
430
|
+
_param = self._pipeline_id_get_serialize(
|
|
431
|
+
id=id,
|
|
432
|
+
_request_auth=_request_auth,
|
|
433
|
+
_content_type=_content_type,
|
|
434
|
+
_headers=_headers,
|
|
435
|
+
_host_index=_host_index
|
|
436
|
+
)
|
|
437
|
+
|
|
438
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
439
|
+
'200': "GetPipelineByIdResult",
|
|
440
|
+
}
|
|
441
|
+
response_data = self.api_client.call_api(
|
|
442
|
+
*_param,
|
|
443
|
+
_request_timeout=_request_timeout
|
|
444
|
+
)
|
|
445
|
+
response_data.read()
|
|
446
|
+
return self.api_client.response_deserialize(
|
|
447
|
+
response_data=response_data,
|
|
448
|
+
response_types_map=_response_types_map,
|
|
449
|
+
)
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
@validate_call
|
|
453
|
+
def pipeline_id_get_without_preload_content(
|
|
454
|
+
self,
|
|
455
|
+
id: Annotated[StrictStr, Field(description="The id of the pipeline to get.")],
|
|
456
|
+
_request_timeout: Union[
|
|
457
|
+
None,
|
|
458
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
459
|
+
Tuple[
|
|
460
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
461
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
462
|
+
]
|
|
463
|
+
] = None,
|
|
464
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
465
|
+
_content_type: Optional[StrictStr] = None,
|
|
466
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
467
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
468
|
+
) -> RESTResponseType:
|
|
469
|
+
"""Gets a pipeline by its id.
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
:param id: The id of the pipeline to get. (required)
|
|
473
|
+
:type id: str
|
|
474
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
475
|
+
number provided, it will be total request
|
|
476
|
+
timeout. It can also be a pair (tuple) of
|
|
477
|
+
(connection, read) timeouts.
|
|
478
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
479
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
480
|
+
request; this effectively ignores the
|
|
481
|
+
authentication in the spec for a single request.
|
|
482
|
+
:type _request_auth: dict, optional
|
|
483
|
+
:param _content_type: force content-type for the request.
|
|
484
|
+
:type _content_type: str, Optional
|
|
485
|
+
:param _headers: set to override the headers for a single
|
|
486
|
+
request; this effectively ignores the headers
|
|
487
|
+
in the spec for a single request.
|
|
488
|
+
:type _headers: dict, optional
|
|
489
|
+
:param _host_index: set to override the host_index for a single
|
|
490
|
+
request; this effectively ignores the host_index
|
|
491
|
+
in the spec for a single request.
|
|
492
|
+
:type _host_index: int, optional
|
|
493
|
+
:return: Returns the result object.
|
|
494
|
+
""" # noqa: E501
|
|
495
|
+
|
|
496
|
+
_param = self._pipeline_id_get_serialize(
|
|
497
|
+
id=id,
|
|
498
|
+
_request_auth=_request_auth,
|
|
499
|
+
_content_type=_content_type,
|
|
500
|
+
_headers=_headers,
|
|
501
|
+
_host_index=_host_index
|
|
502
|
+
)
|
|
503
|
+
|
|
504
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
505
|
+
'200': "GetPipelineByIdResult",
|
|
506
|
+
}
|
|
507
|
+
response_data = self.api_client.call_api(
|
|
508
|
+
*_param,
|
|
509
|
+
_request_timeout=_request_timeout
|
|
510
|
+
)
|
|
511
|
+
return response_data.response
|
|
512
|
+
|
|
513
|
+
|
|
514
|
+
def _pipeline_id_get_serialize(
|
|
515
|
+
self,
|
|
516
|
+
id,
|
|
517
|
+
_request_auth,
|
|
518
|
+
_content_type,
|
|
519
|
+
_headers,
|
|
520
|
+
_host_index,
|
|
521
|
+
) -> RequestSerialized:
|
|
522
|
+
|
|
523
|
+
_host = None
|
|
524
|
+
|
|
525
|
+
_collection_formats: Dict[str, str] = {
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
_path_params: Dict[str, str] = {}
|
|
529
|
+
_query_params: List[Tuple[str, str]] = []
|
|
530
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
531
|
+
_form_params: List[Tuple[str, str]] = []
|
|
532
|
+
_files: Dict[
|
|
533
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
534
|
+
] = {}
|
|
535
|
+
_body_params: Optional[bytes] = None
|
|
536
|
+
|
|
537
|
+
# process the path parameters
|
|
538
|
+
if id is not None:
|
|
539
|
+
_path_params['id'] = id
|
|
540
|
+
# process the query parameters
|
|
541
|
+
# process the header parameters
|
|
542
|
+
# process the form parameters
|
|
543
|
+
# process the body parameter
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
# set the HTTP header `Accept`
|
|
547
|
+
if 'Accept' not in _header_params:
|
|
548
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
549
|
+
[
|
|
550
|
+
'text/plain',
|
|
551
|
+
'application/json',
|
|
552
|
+
'text/json'
|
|
553
|
+
]
|
|
554
|
+
)
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
# authentication setting
|
|
558
|
+
_auth_settings: List[str] = [
|
|
559
|
+
'bearer'
|
|
560
|
+
]
|
|
561
|
+
|
|
562
|
+
return self.api_client.param_serialize(
|
|
563
|
+
method='GET',
|
|
564
|
+
resource_path='/Pipeline/{id}',
|
|
565
|
+
path_params=_path_params,
|
|
566
|
+
query_params=_query_params,
|
|
567
|
+
header_params=_header_params,
|
|
568
|
+
body=_body_params,
|
|
569
|
+
post_params=_form_params,
|
|
570
|
+
files=_files,
|
|
571
|
+
auth_settings=_auth_settings,
|
|
572
|
+
collection_formats=_collection_formats,
|
|
573
|
+
_host=_host,
|
|
574
|
+
_request_auth=_request_auth
|
|
575
|
+
)
|
|
576
|
+
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
@validate_call
|
|
581
|
+
def pipeline_update_workflow_config_post(
|
|
582
|
+
self,
|
|
583
|
+
update_workflow_config_request: Annotated[Optional[UpdateWorkflowConfigRequest], Field(description="The request to update the workflow configuration.")] = None,
|
|
584
|
+
_request_timeout: Union[
|
|
585
|
+
None,
|
|
586
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
587
|
+
Tuple[
|
|
588
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
589
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
590
|
+
]
|
|
591
|
+
] = None,
|
|
592
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
593
|
+
_content_type: Optional[StrictStr] = None,
|
|
594
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
595
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
596
|
+
) -> None:
|
|
597
|
+
"""Updates the workflow configuration for a pipeline.
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
:param update_workflow_config_request: The request to update the workflow configuration.
|
|
601
|
+
:type update_workflow_config_request: UpdateWorkflowConfigRequest
|
|
602
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
603
|
+
number provided, it will be total request
|
|
604
|
+
timeout. It can also be a pair (tuple) of
|
|
605
|
+
(connection, read) timeouts.
|
|
606
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
607
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
608
|
+
request; this effectively ignores the
|
|
609
|
+
authentication in the spec for a single request.
|
|
610
|
+
:type _request_auth: dict, optional
|
|
611
|
+
:param _content_type: force content-type for the request.
|
|
612
|
+
:type _content_type: str, Optional
|
|
613
|
+
:param _headers: set to override the headers for a single
|
|
614
|
+
request; this effectively ignores the headers
|
|
615
|
+
in the spec for a single request.
|
|
616
|
+
:type _headers: dict, optional
|
|
617
|
+
:param _host_index: set to override the host_index for a single
|
|
618
|
+
request; this effectively ignores the host_index
|
|
619
|
+
in the spec for a single request.
|
|
620
|
+
:type _host_index: int, optional
|
|
621
|
+
:return: Returns the result object.
|
|
622
|
+
""" # noqa: E501
|
|
623
|
+
|
|
624
|
+
_param = self._pipeline_update_workflow_config_post_serialize(
|
|
625
|
+
update_workflow_config_request=update_workflow_config_request,
|
|
626
|
+
_request_auth=_request_auth,
|
|
627
|
+
_content_type=_content_type,
|
|
628
|
+
_headers=_headers,
|
|
629
|
+
_host_index=_host_index
|
|
630
|
+
)
|
|
631
|
+
|
|
632
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
633
|
+
'200': None,
|
|
634
|
+
}
|
|
635
|
+
response_data = self.api_client.call_api(
|
|
636
|
+
*_param,
|
|
637
|
+
_request_timeout=_request_timeout
|
|
638
|
+
)
|
|
639
|
+
response_data.read()
|
|
640
|
+
return self.api_client.response_deserialize(
|
|
641
|
+
response_data=response_data,
|
|
642
|
+
response_types_map=_response_types_map,
|
|
643
|
+
).data
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
@validate_call
|
|
647
|
+
def pipeline_update_workflow_config_post_with_http_info(
|
|
648
|
+
self,
|
|
649
|
+
update_workflow_config_request: Annotated[Optional[UpdateWorkflowConfigRequest], Field(description="The request to update the workflow configuration.")] = None,
|
|
650
|
+
_request_timeout: Union[
|
|
651
|
+
None,
|
|
652
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
653
|
+
Tuple[
|
|
654
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
655
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
656
|
+
]
|
|
657
|
+
] = None,
|
|
658
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
659
|
+
_content_type: Optional[StrictStr] = None,
|
|
660
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
661
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
662
|
+
) -> ApiResponse[None]:
|
|
663
|
+
"""Updates the workflow configuration for a pipeline.
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
:param update_workflow_config_request: The request to update the workflow configuration.
|
|
667
|
+
:type update_workflow_config_request: UpdateWorkflowConfigRequest
|
|
668
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
669
|
+
number provided, it will be total request
|
|
670
|
+
timeout. It can also be a pair (tuple) of
|
|
671
|
+
(connection, read) timeouts.
|
|
672
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
673
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
674
|
+
request; this effectively ignores the
|
|
675
|
+
authentication in the spec for a single request.
|
|
676
|
+
:type _request_auth: dict, optional
|
|
677
|
+
:param _content_type: force content-type for the request.
|
|
678
|
+
:type _content_type: str, Optional
|
|
679
|
+
:param _headers: set to override the headers for a single
|
|
680
|
+
request; this effectively ignores the headers
|
|
681
|
+
in the spec for a single request.
|
|
682
|
+
:type _headers: dict, optional
|
|
683
|
+
:param _host_index: set to override the host_index for a single
|
|
684
|
+
request; this effectively ignores the host_index
|
|
685
|
+
in the spec for a single request.
|
|
686
|
+
:type _host_index: int, optional
|
|
687
|
+
:return: Returns the result object.
|
|
688
|
+
""" # noqa: E501
|
|
689
|
+
|
|
690
|
+
_param = self._pipeline_update_workflow_config_post_serialize(
|
|
691
|
+
update_workflow_config_request=update_workflow_config_request,
|
|
692
|
+
_request_auth=_request_auth,
|
|
693
|
+
_content_type=_content_type,
|
|
694
|
+
_headers=_headers,
|
|
695
|
+
_host_index=_host_index
|
|
696
|
+
)
|
|
697
|
+
|
|
698
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
699
|
+
'200': None,
|
|
700
|
+
}
|
|
701
|
+
response_data = self.api_client.call_api(
|
|
702
|
+
*_param,
|
|
703
|
+
_request_timeout=_request_timeout
|
|
704
|
+
)
|
|
705
|
+
response_data.read()
|
|
706
|
+
return self.api_client.response_deserialize(
|
|
707
|
+
response_data=response_data,
|
|
708
|
+
response_types_map=_response_types_map,
|
|
709
|
+
)
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
@validate_call
|
|
713
|
+
def pipeline_update_workflow_config_post_without_preload_content(
|
|
714
|
+
self,
|
|
715
|
+
update_workflow_config_request: Annotated[Optional[UpdateWorkflowConfigRequest], Field(description="The request to update the workflow configuration.")] = None,
|
|
716
|
+
_request_timeout: Union[
|
|
717
|
+
None,
|
|
718
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
719
|
+
Tuple[
|
|
720
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
721
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
722
|
+
]
|
|
723
|
+
] = None,
|
|
724
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
725
|
+
_content_type: Optional[StrictStr] = None,
|
|
726
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
727
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
728
|
+
) -> RESTResponseType:
|
|
729
|
+
"""Updates the workflow configuration for a pipeline.
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
:param update_workflow_config_request: The request to update the workflow configuration.
|
|
733
|
+
:type update_workflow_config_request: UpdateWorkflowConfigRequest
|
|
734
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
735
|
+
number provided, it will be total request
|
|
736
|
+
timeout. It can also be a pair (tuple) of
|
|
737
|
+
(connection, read) timeouts.
|
|
738
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
739
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
740
|
+
request; this effectively ignores the
|
|
741
|
+
authentication in the spec for a single request.
|
|
742
|
+
:type _request_auth: dict, optional
|
|
743
|
+
:param _content_type: force content-type for the request.
|
|
744
|
+
:type _content_type: str, Optional
|
|
745
|
+
:param _headers: set to override the headers for a single
|
|
746
|
+
request; this effectively ignores the headers
|
|
747
|
+
in the spec for a single request.
|
|
748
|
+
:type _headers: dict, optional
|
|
749
|
+
:param _host_index: set to override the host_index for a single
|
|
750
|
+
request; this effectively ignores the host_index
|
|
751
|
+
in the spec for a single request.
|
|
752
|
+
:type _host_index: int, optional
|
|
753
|
+
:return: Returns the result object.
|
|
754
|
+
""" # noqa: E501
|
|
755
|
+
|
|
756
|
+
_param = self._pipeline_update_workflow_config_post_serialize(
|
|
757
|
+
update_workflow_config_request=update_workflow_config_request,
|
|
758
|
+
_request_auth=_request_auth,
|
|
759
|
+
_content_type=_content_type,
|
|
760
|
+
_headers=_headers,
|
|
761
|
+
_host_index=_host_index
|
|
762
|
+
)
|
|
763
|
+
|
|
764
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
765
|
+
'200': None,
|
|
766
|
+
}
|
|
767
|
+
response_data = self.api_client.call_api(
|
|
768
|
+
*_param,
|
|
769
|
+
_request_timeout=_request_timeout
|
|
770
|
+
)
|
|
771
|
+
return response_data.response
|
|
772
|
+
|
|
773
|
+
|
|
774
|
+
def _pipeline_update_workflow_config_post_serialize(
|
|
775
|
+
self,
|
|
776
|
+
update_workflow_config_request,
|
|
777
|
+
_request_auth,
|
|
778
|
+
_content_type,
|
|
779
|
+
_headers,
|
|
780
|
+
_host_index,
|
|
781
|
+
) -> RequestSerialized:
|
|
782
|
+
|
|
783
|
+
_host = None
|
|
784
|
+
|
|
785
|
+
_collection_formats: Dict[str, str] = {
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
_path_params: Dict[str, str] = {}
|
|
789
|
+
_query_params: List[Tuple[str, str]] = []
|
|
790
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
791
|
+
_form_params: List[Tuple[str, str]] = []
|
|
792
|
+
_files: Dict[
|
|
793
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
794
|
+
] = {}
|
|
795
|
+
_body_params: Optional[bytes] = None
|
|
796
|
+
|
|
797
|
+
# process the path parameters
|
|
798
|
+
# process the query parameters
|
|
799
|
+
# process the header parameters
|
|
800
|
+
# process the form parameters
|
|
801
|
+
# process the body parameter
|
|
802
|
+
if update_workflow_config_request is not None:
|
|
803
|
+
_body_params = update_workflow_config_request
|
|
804
|
+
|
|
805
|
+
|
|
806
|
+
|
|
807
|
+
# set the HTTP header `Content-Type`
|
|
808
|
+
if _content_type:
|
|
809
|
+
_header_params['Content-Type'] = _content_type
|
|
810
|
+
else:
|
|
811
|
+
_default_content_type = (
|
|
812
|
+
self.api_client.select_header_content_type(
|
|
813
|
+
[
|
|
814
|
+
'application/json',
|
|
815
|
+
'text/json',
|
|
816
|
+
'application/*+json'
|
|
817
|
+
]
|
|
818
|
+
)
|
|
819
|
+
)
|
|
820
|
+
if _default_content_type is not None:
|
|
821
|
+
_header_params['Content-Type'] = _default_content_type
|
|
822
|
+
|
|
823
|
+
# authentication setting
|
|
824
|
+
_auth_settings: List[str] = [
|
|
825
|
+
'bearer'
|
|
826
|
+
]
|
|
827
|
+
|
|
828
|
+
return self.api_client.param_serialize(
|
|
829
|
+
method='POST',
|
|
830
|
+
resource_path='/Pipeline/UpdateWorkflowConfig',
|
|
831
|
+
path_params=_path_params,
|
|
832
|
+
query_params=_query_params,
|
|
833
|
+
header_params=_header_params,
|
|
834
|
+
body=_body_params,
|
|
835
|
+
post_params=_form_params,
|
|
836
|
+
files=_files,
|
|
837
|
+
auth_settings=_auth_settings,
|
|
838
|
+
collection_formats=_collection_formats,
|
|
839
|
+
_host=_host,
|
|
840
|
+
_request_auth=_request_auth
|
|
841
|
+
)
|
|
842
|
+
|
|
843
|
+
|