argo-workflows 6.6.0rc2__py3-none-any.whl → 6.6.0rc3__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 argo-workflows might be problematic. Click here for more details.
- argo_workflows/__init__.py +1 -1
- argo_workflows/api/workflow_service_api.py +6 -0
- argo_workflows/api_client.py +1 -1
- argo_workflows/configuration.py +1 -1
- argo_workflows/model/io_argoproj_workflow_v1alpha1_git_artifact.py +4 -0
- argo_workflows/model/io_argoproj_workflow_v1alpha1_stop_strategy.py +8 -8
- {argo_workflows-6.6.0rc2.dist-info → argo_workflows-6.6.0rc3.dist-info}/METADATA +1 -1
- {argo_workflows-6.6.0rc2.dist-info → argo_workflows-6.6.0rc3.dist-info}/RECORD +11 -11
- {argo_workflows-6.6.0rc2.dist-info → argo_workflows-6.6.0rc3.dist-info}/WHEEL +1 -1
- {argo_workflows-6.6.0rc2.dist-info → argo_workflows-6.6.0rc3.dist-info}/LICENSE +0 -0
- {argo_workflows-6.6.0rc2.dist-info → argo_workflows-6.6.0rc3.dist-info}/top_level.txt +0 -0
argo_workflows/__init__.py
CHANGED
|
@@ -351,6 +351,7 @@ class WorkflowServiceApi(object):
|
|
|
351
351
|
'list_options_continue',
|
|
352
352
|
'list_options_send_initial_events',
|
|
353
353
|
'fields',
|
|
354
|
+
'name_filter',
|
|
354
355
|
],
|
|
355
356
|
'required': [
|
|
356
357
|
'namespace',
|
|
@@ -392,6 +393,8 @@ class WorkflowServiceApi(object):
|
|
|
392
393
|
(bool,),
|
|
393
394
|
'fields':
|
|
394
395
|
(str,),
|
|
396
|
+
'name_filter':
|
|
397
|
+
(str,),
|
|
395
398
|
},
|
|
396
399
|
'attribute_map': {
|
|
397
400
|
'namespace': 'namespace',
|
|
@@ -406,6 +409,7 @@ class WorkflowServiceApi(object):
|
|
|
406
409
|
'list_options_continue': 'listOptions.continue',
|
|
407
410
|
'list_options_send_initial_events': 'listOptions.sendInitialEvents',
|
|
408
411
|
'fields': 'fields',
|
|
412
|
+
'name_filter': 'nameFilter',
|
|
409
413
|
},
|
|
410
414
|
'location_map': {
|
|
411
415
|
'namespace': 'path',
|
|
@@ -420,6 +424,7 @@ class WorkflowServiceApi(object):
|
|
|
420
424
|
'list_options_continue': 'query',
|
|
421
425
|
'list_options_send_initial_events': 'query',
|
|
422
426
|
'fields': 'query',
|
|
427
|
+
'name_filter': 'query',
|
|
423
428
|
},
|
|
424
429
|
'collection_format_map': {
|
|
425
430
|
}
|
|
@@ -1752,6 +1757,7 @@ class WorkflowServiceApi(object):
|
|
|
1752
1757
|
list_options_continue (str): The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server, the server will respond with a 410 ResourceExpired error together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys are after the \"next key\". This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.. [optional]
|
|
1753
1758
|
list_options_send_initial_events (bool): `sendInitialEvents=true` may be set together with `watch=true`. In that case, the watch stream will begin with synthetic events to produce the current state of objects in the collection. Once all such events have been sent, a synthetic \"Bookmark\" event will be sent. The bookmark will report the ResourceVersion (RV) corresponding to the set of objects, and be marked with `\"io.k8s.initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched. When `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan is interpreted as \"data at least as new as the provided `resourceVersion`\" and the bookmark event is send when the state is synced to a `resourceVersion` at least as fresh as the one provided by the ListOptions. If `resourceVersion` is unset, this is interpreted as \"consistent read\" and the bookmark event is send when the state is synced at least to the moment when request started being processed. - `resourceVersionMatch` set to any other value or unset Invalid error is returned. Defaults to true if `resourceVersion=\"\"` or `resourceVersion=\"0\"` (for backward compatibility reasons) and to false otherwise. +optional. [optional]
|
|
1754
1759
|
fields (str): Fields to be included or excluded in the response. e.g. \"items.spec,items.status.phase\", \"-items.status.nodes\".. [optional]
|
|
1760
|
+
name_filter (str): Filter type used for name filtering. Exact | Contains | Prefix. Default to Exact.. [optional]
|
|
1755
1761
|
_return_http_data_only (bool): response data without head status
|
|
1756
1762
|
code and headers. Default is True.
|
|
1757
1763
|
_preload_content (bool): if False, the urllib3.HTTPResponse object
|
argo_workflows/api_client.py
CHANGED
|
@@ -76,7 +76,7 @@ class ApiClient(object):
|
|
|
76
76
|
self.default_headers[header_name] = header_value
|
|
77
77
|
self.cookie = cookie
|
|
78
78
|
# Set default User-Agent.
|
|
79
|
-
self.user_agent = 'OpenAPI-Generator/6.6.0-
|
|
79
|
+
self.user_agent = 'OpenAPI-Generator/6.6.0-rc3/python'
|
|
80
80
|
|
|
81
81
|
def __enter__(self):
|
|
82
82
|
return self
|
argo_workflows/configuration.py
CHANGED
|
@@ -409,7 +409,7 @@ conf = argo_workflows.Configuration(
|
|
|
409
409
|
"OS: {env}\n"\
|
|
410
410
|
"Python Version: {pyversion}\n"\
|
|
411
411
|
"Version of the API: VERSION\n"\
|
|
412
|
-
"SDK Package Version: 6.6.0-
|
|
412
|
+
"SDK Package Version: 6.6.0-rc3".\
|
|
413
413
|
format(env=sys.platform, pyversion=sys.version)
|
|
414
414
|
|
|
415
415
|
def get_host_settings(self):
|
|
@@ -93,6 +93,7 @@ class IoArgoprojWorkflowV1alpha1GitArtifact(ModelNormal):
|
|
|
93
93
|
'disable_submodules': (bool,), # noqa: E501
|
|
94
94
|
'fetch': ([str],), # noqa: E501
|
|
95
95
|
'insecure_ignore_host_key': (bool,), # noqa: E501
|
|
96
|
+
'insecure_skip_tls': (bool,), # noqa: E501
|
|
96
97
|
'password_secret': (SecretKeySelector,), # noqa: E501
|
|
97
98
|
'revision': (str,), # noqa: E501
|
|
98
99
|
'single_branch': (bool,), # noqa: E501
|
|
@@ -112,6 +113,7 @@ class IoArgoprojWorkflowV1alpha1GitArtifact(ModelNormal):
|
|
|
112
113
|
'disable_submodules': 'disableSubmodules', # noqa: E501
|
|
113
114
|
'fetch': 'fetch', # noqa: E501
|
|
114
115
|
'insecure_ignore_host_key': 'insecureIgnoreHostKey', # noqa: E501
|
|
116
|
+
'insecure_skip_tls': 'insecureSkipTLS', # noqa: E501
|
|
115
117
|
'password_secret': 'passwordSecret', # noqa: E501
|
|
116
118
|
'revision': 'revision', # noqa: E501
|
|
117
119
|
'single_branch': 'singleBranch', # noqa: E501
|
|
@@ -168,6 +170,7 @@ class IoArgoprojWorkflowV1alpha1GitArtifact(ModelNormal):
|
|
|
168
170
|
disable_submodules (bool): DisableSubmodules disables submodules during git clone. [optional] # noqa: E501
|
|
169
171
|
fetch ([str]): Fetch specifies a number of refs that should be fetched before checkout. [optional] # noqa: E501
|
|
170
172
|
insecure_ignore_host_key (bool): InsecureIgnoreHostKey disables SSH strict host key checking during git clone. [optional] # noqa: E501
|
|
173
|
+
insecure_skip_tls (bool): InsecureSkipTLS disables server certificate verification resulting in insecure HTTPS connections. [optional] # noqa: E501
|
|
171
174
|
password_secret (SecretKeySelector): [optional] # noqa: E501
|
|
172
175
|
revision (str): Revision is the git commit, tag, branch to checkout. [optional] # noqa: E501
|
|
173
176
|
single_branch (bool): SingleBranch enables single branch clone, using the `branch` parameter. [optional] # noqa: E501
|
|
@@ -263,6 +266,7 @@ class IoArgoprojWorkflowV1alpha1GitArtifact(ModelNormal):
|
|
|
263
266
|
disable_submodules (bool): DisableSubmodules disables submodules during git clone. [optional] # noqa: E501
|
|
264
267
|
fetch ([str]): Fetch specifies a number of refs that should be fetched before checkout. [optional] # noqa: E501
|
|
265
268
|
insecure_ignore_host_key (bool): InsecureIgnoreHostKey disables SSH strict host key checking during git clone. [optional] # noqa: E501
|
|
269
|
+
insecure_skip_tls (bool): InsecureSkipTLS disables server certificate verification resulting in insecure HTTPS connections. [optional] # noqa: E501
|
|
266
270
|
password_secret (SecretKeySelector): [optional] # noqa: E501
|
|
267
271
|
revision (str): Revision is the git commit, tag, branch to checkout. [optional] # noqa: E501
|
|
268
272
|
single_branch (bool): SingleBranch enables single branch clone, using the `branch` parameter. [optional] # noqa: E501
|
|
@@ -81,7 +81,7 @@ class IoArgoprojWorkflowV1alpha1StopStrategy(ModelNormal):
|
|
|
81
81
|
and the value is attribute type.
|
|
82
82
|
"""
|
|
83
83
|
return {
|
|
84
|
-
'
|
|
84
|
+
'expression': (str,), # noqa: E501
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
@cached_property
|
|
@@ -90,7 +90,7 @@ class IoArgoprojWorkflowV1alpha1StopStrategy(ModelNormal):
|
|
|
90
90
|
|
|
91
91
|
|
|
92
92
|
attribute_map = {
|
|
93
|
-
'
|
|
93
|
+
'expression': 'expression', # noqa: E501
|
|
94
94
|
}
|
|
95
95
|
|
|
96
96
|
read_only_vars = {
|
|
@@ -100,11 +100,11 @@ class IoArgoprojWorkflowV1alpha1StopStrategy(ModelNormal):
|
|
|
100
100
|
|
|
101
101
|
@classmethod
|
|
102
102
|
@convert_js_args_to_python_args
|
|
103
|
-
def _from_openapi_data(cls,
|
|
103
|
+
def _from_openapi_data(cls, expression, *args, **kwargs): # noqa: E501
|
|
104
104
|
"""IoArgoprojWorkflowV1alpha1StopStrategy - a model defined in OpenAPI
|
|
105
105
|
|
|
106
106
|
Args:
|
|
107
|
-
|
|
107
|
+
expression (str): v3.6 and after: Expression is an expression that stops scheduling workflows when true. Use the variables `cronworkflow`.`failed` or `cronworkflow`.`succeeded` to access the number of failed or successful child workflows.
|
|
108
108
|
|
|
109
109
|
Keyword Args:
|
|
110
110
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -164,7 +164,7 @@ class IoArgoprojWorkflowV1alpha1StopStrategy(ModelNormal):
|
|
|
164
164
|
self._configuration = _configuration
|
|
165
165
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
166
166
|
|
|
167
|
-
self.
|
|
167
|
+
self.expression = expression
|
|
168
168
|
for var_name, var_value in kwargs.items():
|
|
169
169
|
if var_name not in self.attribute_map and \
|
|
170
170
|
self._configuration is not None and \
|
|
@@ -185,11 +185,11 @@ class IoArgoprojWorkflowV1alpha1StopStrategy(ModelNormal):
|
|
|
185
185
|
])
|
|
186
186
|
|
|
187
187
|
@convert_js_args_to_python_args
|
|
188
|
-
def __init__(self,
|
|
188
|
+
def __init__(self, expression, *args, **kwargs): # noqa: E501
|
|
189
189
|
"""IoArgoprojWorkflowV1alpha1StopStrategy - a model defined in OpenAPI
|
|
190
190
|
|
|
191
191
|
Args:
|
|
192
|
-
|
|
192
|
+
expression (str): v3.6 and after: Expression is an expression that stops scheduling workflows when true. Use the variables `cronworkflow`.`failed` or `cronworkflow`.`succeeded` to access the number of failed or successful child workflows.
|
|
193
193
|
|
|
194
194
|
Keyword Args:
|
|
195
195
|
_check_type (bool): if True, values for parameters in openapi_types
|
|
@@ -247,7 +247,7 @@ class IoArgoprojWorkflowV1alpha1StopStrategy(ModelNormal):
|
|
|
247
247
|
self._configuration = _configuration
|
|
248
248
|
self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
|
|
249
249
|
|
|
250
|
-
self.
|
|
250
|
+
self.expression = expression
|
|
251
251
|
for var_name, var_value in kwargs.items():
|
|
252
252
|
if var_name not in self.attribute_map and \
|
|
253
253
|
self._configuration is not None and \
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
argo_workflows/__init__.py,sha256=
|
|
2
|
-
argo_workflows/api_client.py,sha256=
|
|
3
|
-
argo_workflows/configuration.py,sha256=
|
|
1
|
+
argo_workflows/__init__.py,sha256=5RTdHhb7vfdAeJZrb-_xH8F3OewHu7EaMeyZ3NqRzuw,871
|
|
2
|
+
argo_workflows/api_client.py,sha256=1zYSpPH3khLq4ovzmbrDT15Meal31UhJ3c9KwAq4xAI,37818
|
|
3
|
+
argo_workflows/configuration.py,sha256=ahxSC7GdHoZTL72Sw42ro1C_hiHRgw7-wMK8i5B_Oyo,17375
|
|
4
4
|
argo_workflows/exceptions.py,sha256=FXvBHqAHdE1_omaxz3tI9hhgWJyD1hZbB76ocI_9iTw,5189
|
|
5
5
|
argo_workflows/model_utils.py,sha256=88he5nMaaNMgiP2clkTJrsLfEowUJZqPHmQMFisZ8RI,82203
|
|
6
6
|
argo_workflows/rest.py,sha256=ff7KjBa-FDisbsaafVaCaJ57RQMRXk3YbYoifnbp0Ls,14313
|
|
@@ -13,7 +13,7 @@ argo_workflows/api/event_service_api.py,sha256=mTTR_S32_GhLeJ64dS9s1_xBNFWQkqrui
|
|
|
13
13
|
argo_workflows/api/event_source_service_api.py,sha256=o2CJOcdKp1_Gj75hNMNa4RsStiVadlvq6cS3jj3XvSA,64138
|
|
14
14
|
argo_workflows/api/info_service_api.py,sha256=vnNYLpN2XGHFWWmA_EYS1plh1qYlcIR6F8tzbZIxQUU,19096
|
|
15
15
|
argo_workflows/api/sensor_service_api.py,sha256=_UyXMfVMeWKFAtSVUPERUODHZZC7lrnwMizotTWOohg,63830
|
|
16
|
-
argo_workflows/api/workflow_service_api.py,sha256=
|
|
16
|
+
argo_workflows/api/workflow_service_api.py,sha256=eLblUEbTViSU_8wPKM96d51oslaqL1W_h2SJv5bGc88,133204
|
|
17
17
|
argo_workflows/api/workflow_template_service_api.py,sha256=T-FthZlImHLN_oP-gbcsZTBxuYVB23qvuCiWIwIcKro,45580
|
|
18
18
|
argo_workflows/apis/__init__.py,sha256=MZ78DT4HIqArHNLynzoh6rOCN2zN96p871WifKtoChs,1221
|
|
19
19
|
argo_workflows/model/__init__.py,sha256=N49d9K35V_Hd5lOHWcMeVRl0Iy_-L-03rZgfKXwlESM,348
|
|
@@ -232,7 +232,7 @@ argo_workflows/model/io_argoproj_workflow_v1alpha1_gauge.py,sha256=AsghhnnpH2J8p
|
|
|
232
232
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_gcs_artifact.py,sha256=Ba-5yAb965fjwzB6OpEWZKmqUcZShlLMi4TW6dj3aw0,12131
|
|
233
233
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_gcs_artifact_repository.py,sha256=KAuNClXC1sD-GEV9aWF2WRUqH6dBJRiB0zsUe_f4wU4,12223
|
|
234
234
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_get_user_info_response.py,sha256=vwi4LD6GoNyS9jLC7OK1C7INfm8uuzPfkyk5v49JHls,12758
|
|
235
|
-
argo_workflows/model/io_argoproj_workflow_v1alpha1_git_artifact.py,sha256=
|
|
235
|
+
argo_workflows/model/io_argoproj_workflow_v1alpha1_git_artifact.py,sha256=kjpdDeAERwHhQyjp8g3JpFyVIJgam-GNn7-n79-gOPI,15313
|
|
236
236
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_hdfs_artifact.py,sha256=DwJAMBUKAbBSI41Yt1Ns1yb9y7XS27V4y3WjfHWSnj4,15417
|
|
237
237
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_hdfs_artifact_repository.py,sha256=w3b0uSdSKcr_wPh0A5O_UJumxdXz06KWsbu1wT-RKw4,15567
|
|
238
238
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_header.py,sha256=SuirdTxJYuj9ZN_ZYE99HwuhSl8rBp7_UX1q1YST6pY,11583
|
|
@@ -288,7 +288,7 @@ argo_workflows/model/io_argoproj_workflow_v1alpha1_semaphore_holding.py,sha256=2
|
|
|
288
288
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_semaphore_ref.py,sha256=P7ULhIuCi-dEKkNeq7AgcHgMX7aKY_aOXjbWgxR5jm8,11898
|
|
289
289
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_semaphore_status.py,sha256=1CTobWT5BdFODWH8wWLvBUHHdVmk71za7aLda3U13KE,12274
|
|
290
290
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_sequence.py,sha256=sASjKUZacEUyz5NVIr1kVMwlzr6JIT9BdoL2ekCdibU,11889
|
|
291
|
-
argo_workflows/model/io_argoproj_workflow_v1alpha1_stop_strategy.py,sha256=
|
|
291
|
+
argo_workflows/model/io_argoproj_workflow_v1alpha1_stop_strategy.py,sha256=476UraDWSRQHdrDQ8U3Rk4e7LxoHNPQWaZcNEDERj4o,11762
|
|
292
292
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_submit.py,sha256=nBET36jLVHx1sUW2cfOhrJ0RZDFrfIMIBjvbq6_Hl9k,12680
|
|
293
293
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_submit_opts.py,sha256=ViC3ft9D2FaywKkm4cRJuRMvBe1D6GA8ervFXTkeKV0,15191
|
|
294
294
|
argo_workflows/model/io_argoproj_workflow_v1alpha1_suspend_template.py,sha256=Bo1OrnkpxTUXtBKrebIHA6t8pOc5juOZsd0_r_933V0,11571
|
|
@@ -410,8 +410,8 @@ argo_workflows/model/vsphere_virtual_disk_volume_source.py,sha256=sf1ynSE8-JE-zj
|
|
|
410
410
|
argo_workflows/model/weighted_pod_affinity_term.py,sha256=tk3gTNtjgzhOtvQu3gPrqNv5J3A3qThuyYXTjXpYJRI,11958
|
|
411
411
|
argo_workflows/model/windows_security_context_options.py,sha256=_otwLgi3KoAgb6Cq2rokpn3O4ZubOLpsrLaOLDBYFuU,13772
|
|
412
412
|
argo_workflows/models/__init__.py,sha256=wOuC5yQIgWctm90z3cRnkSceO5GthAiy52AmKsCRh7Q,41982
|
|
413
|
-
argo_workflows-6.6.
|
|
414
|
-
argo_workflows-6.6.
|
|
415
|
-
argo_workflows-6.6.
|
|
416
|
-
argo_workflows-6.6.
|
|
417
|
-
argo_workflows-6.6.
|
|
413
|
+
argo_workflows-6.6.0rc3.dist-info/LICENSE,sha256=yZb8ITyU9KSoOEB9NVsIEibKp7EDpPI5u4f7jx2OOmA,11352
|
|
414
|
+
argo_workflows-6.6.0rc3.dist-info/METADATA,sha256=zs66kse4UZ994X5ex_WJ_bFGeoy6tex7m_O8Dj9I2Xw,555
|
|
415
|
+
argo_workflows-6.6.0rc3.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
|
416
|
+
argo_workflows-6.6.0rc3.dist-info/top_level.txt,sha256=yMnCMzuIXOSIbj7CSKsK35PygYYUBwZ98RBqeq9r1Ig,15
|
|
417
|
+
argo_workflows-6.6.0rc3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|