argo-workflows 6.6.0__py3-none-any.whl → 6.6.0rc1__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.
@@ -10,7 +10,7 @@
10
10
  """
11
11
 
12
12
 
13
- __version__ = "6.6.0"
13
+ __version__ = "6.6.0-rc1"
14
14
 
15
15
  # import ApiClient
16
16
  from argo_workflows.api_client import ApiClient
@@ -351,7 +351,6 @@ class WorkflowServiceApi(object):
351
351
  'list_options_continue',
352
352
  'list_options_send_initial_events',
353
353
  'fields',
354
- 'name_filter',
355
354
  ],
356
355
  'required': [
357
356
  'namespace',
@@ -393,8 +392,6 @@ class WorkflowServiceApi(object):
393
392
  (bool,),
394
393
  'fields':
395
394
  (str,),
396
- 'name_filter':
397
- (str,),
398
395
  },
399
396
  'attribute_map': {
400
397
  'namespace': 'namespace',
@@ -409,7 +406,6 @@ class WorkflowServiceApi(object):
409
406
  'list_options_continue': 'listOptions.continue',
410
407
  'list_options_send_initial_events': 'listOptions.sendInitialEvents',
411
408
  'fields': 'fields',
412
- 'name_filter': 'nameFilter',
413
409
  },
414
410
  'location_map': {
415
411
  'namespace': 'path',
@@ -424,7 +420,6 @@ class WorkflowServiceApi(object):
424
420
  'list_options_continue': 'query',
425
421
  'list_options_send_initial_events': 'query',
426
422
  'fields': 'query',
427
- 'name_filter': 'query',
428
423
  },
429
424
  'collection_format_map': {
430
425
  }
@@ -1757,7 +1752,6 @@ class WorkflowServiceApi(object):
1757
1752
  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]
1758
1753
  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]
1759
1754
  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]
1761
1755
  _return_http_data_only (bool): response data without head status
1762
1756
  code and headers. Default is True.
1763
1757
  _preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -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/python'
79
+ self.user_agent = 'OpenAPI-Generator/6.6.0-rc1/python'
80
80
 
81
81
  def __enter__(self):
82
82
  return self
@@ -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-rc1".\
413
413
  format(env=sys.platform, pyversion=sys.version)
414
414
 
415
415
  def get_host_settings(self):
@@ -91,10 +91,10 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
91
91
  """
92
92
  lazy_import()
93
93
  return {
94
+ 'schedule': (str,), # noqa: E501
94
95
  'workflow_spec': (IoArgoprojWorkflowV1alpha1WorkflowSpec,), # noqa: E501
95
96
  'concurrency_policy': (str,), # noqa: E501
96
97
  'failed_jobs_history_limit': (int,), # noqa: E501
97
- 'schedule': (str,), # noqa: E501
98
98
  'schedules': ([str],), # noqa: E501
99
99
  'starting_deadline_seconds': (int,), # noqa: E501
100
100
  'stop_strategy': (IoArgoprojWorkflowV1alpha1StopStrategy,), # noqa: E501
@@ -111,10 +111,10 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
111
111
 
112
112
 
113
113
  attribute_map = {
114
+ 'schedule': 'schedule', # noqa: E501
114
115
  'workflow_spec': 'workflowSpec', # noqa: E501
115
116
  'concurrency_policy': 'concurrencyPolicy', # noqa: E501
116
117
  'failed_jobs_history_limit': 'failedJobsHistoryLimit', # noqa: E501
117
- 'schedule': 'schedule', # noqa: E501
118
118
  'schedules': 'schedules', # noqa: E501
119
119
  'starting_deadline_seconds': 'startingDeadlineSeconds', # noqa: E501
120
120
  'stop_strategy': 'stopStrategy', # noqa: E501
@@ -132,10 +132,11 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
132
132
 
133
133
  @classmethod
134
134
  @convert_js_args_to_python_args
135
- def _from_openapi_data(cls, workflow_spec, *args, **kwargs): # noqa: E501
135
+ def _from_openapi_data(cls, schedule, workflow_spec, *args, **kwargs): # noqa: E501
136
136
  """IoArgoprojWorkflowV1alpha1CronWorkflowSpec - a model defined in OpenAPI
137
137
 
138
138
  Args:
139
+ schedule (str): Schedule is a schedule to run the Workflow in Cron format
139
140
  workflow_spec (IoArgoprojWorkflowV1alpha1WorkflowSpec):
140
141
 
141
142
  Keyword Args:
@@ -171,8 +172,7 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
171
172
  _visited_composed_classes = (Animal,)
172
173
  concurrency_policy (str): ConcurrencyPolicy is the K8s-style concurrency policy that will be used. [optional] # noqa: E501
173
174
  failed_jobs_history_limit (int): FailedJobsHistoryLimit is the number of failed jobs to be kept at a time. [optional] # noqa: E501
174
- schedule (str): Schedule is a schedule to run the Workflow in Cron format. Deprecated, use Schedules. [optional] # noqa: E501
175
- schedules ([str]): v3.6 and after: Schedules is a list of schedules to run the Workflow in Cron format. [optional] # noqa: E501
175
+ schedules ([str]): Schedules is a list of schedules to run the Workflow in Cron format. [optional] # noqa: E501
176
176
  starting_deadline_seconds (int): StartingDeadlineSeconds is the K8s-style deadline that will limit the time a CronWorkflow will be run after its original scheduled time if it is missed.. [optional] # noqa: E501
177
177
  stop_strategy (IoArgoprojWorkflowV1alpha1StopStrategy): [optional] # noqa: E501
178
178
  successful_jobs_history_limit (int): SuccessfulJobsHistoryLimit is the number of successful jobs to be kept at a time. [optional] # noqa: E501
@@ -207,6 +207,7 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
207
207
  self._configuration = _configuration
208
208
  self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
209
209
 
210
+ self.schedule = schedule
210
211
  self.workflow_spec = workflow_spec
211
212
  for var_name, var_value in kwargs.items():
212
213
  if var_name not in self.attribute_map and \
@@ -228,10 +229,11 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
228
229
  ])
229
230
 
230
231
  @convert_js_args_to_python_args
231
- def __init__(self, workflow_spec, *args, **kwargs): # noqa: E501
232
+ def __init__(self, schedule, workflow_spec, *args, **kwargs): # noqa: E501
232
233
  """IoArgoprojWorkflowV1alpha1CronWorkflowSpec - a model defined in OpenAPI
233
234
 
234
235
  Args:
236
+ schedule (str): Schedule is a schedule to run the Workflow in Cron format
235
237
  workflow_spec (IoArgoprojWorkflowV1alpha1WorkflowSpec):
236
238
 
237
239
  Keyword Args:
@@ -267,8 +269,7 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
267
269
  _visited_composed_classes = (Animal,)
268
270
  concurrency_policy (str): ConcurrencyPolicy is the K8s-style concurrency policy that will be used. [optional] # noqa: E501
269
271
  failed_jobs_history_limit (int): FailedJobsHistoryLimit is the number of failed jobs to be kept at a time. [optional] # noqa: E501
270
- schedule (str): Schedule is a schedule to run the Workflow in Cron format. Deprecated, use Schedules. [optional] # noqa: E501
271
- schedules ([str]): v3.6 and after: Schedules is a list of schedules to run the Workflow in Cron format. [optional] # noqa: E501
272
+ schedules ([str]): Schedules is a list of schedules to run the Workflow in Cron format. [optional] # noqa: E501
272
273
  starting_deadline_seconds (int): StartingDeadlineSeconds is the K8s-style deadline that will limit the time a CronWorkflow will be run after its original scheduled time if it is missed.. [optional] # noqa: E501
273
274
  stop_strategy (IoArgoprojWorkflowV1alpha1StopStrategy): [optional] # noqa: E501
274
275
  successful_jobs_history_limit (int): SuccessfulJobsHistoryLimit is the number of successful jobs to be kept at a time. [optional] # noqa: E501
@@ -301,6 +302,7 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
301
302
  self._configuration = _configuration
302
303
  self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
303
304
 
305
+ self.schedule = schedule
304
306
  self.workflow_spec = workflow_spec
305
307
  for var_name, var_value in kwargs.items():
306
308
  if var_name not in self.attribute_map and \
@@ -93,7 +93,6 @@ 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
97
96
  'password_secret': (SecretKeySelector,), # noqa: E501
98
97
  'revision': (str,), # noqa: E501
99
98
  'single_branch': (bool,), # noqa: E501
@@ -113,7 +112,6 @@ class IoArgoprojWorkflowV1alpha1GitArtifact(ModelNormal):
113
112
  'disable_submodules': 'disableSubmodules', # noqa: E501
114
113
  'fetch': 'fetch', # noqa: E501
115
114
  'insecure_ignore_host_key': 'insecureIgnoreHostKey', # noqa: E501
116
- 'insecure_skip_tls': 'insecureSkipTLS', # noqa: E501
117
115
  'password_secret': 'passwordSecret', # noqa: E501
118
116
  'revision': 'revision', # noqa: E501
119
117
  'single_branch': 'singleBranch', # noqa: E501
@@ -170,7 +168,6 @@ class IoArgoprojWorkflowV1alpha1GitArtifact(ModelNormal):
170
168
  disable_submodules (bool): DisableSubmodules disables submodules during git clone. [optional] # noqa: E501
171
169
  fetch ([str]): Fetch specifies a number of refs that should be fetched before checkout. [optional] # noqa: E501
172
170
  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
174
171
  password_secret (SecretKeySelector): [optional] # noqa: E501
175
172
  revision (str): Revision is the git commit, tag, branch to checkout. [optional] # noqa: E501
176
173
  single_branch (bool): SingleBranch enables single branch clone, using the `branch` parameter. [optional] # noqa: E501
@@ -266,7 +263,6 @@ class IoArgoprojWorkflowV1alpha1GitArtifact(ModelNormal):
266
263
  disable_submodules (bool): DisableSubmodules disables submodules during git clone. [optional] # noqa: E501
267
264
  fetch ([str]): Fetch specifies a number of refs that should be fetched before checkout. [optional] # noqa: E501
268
265
  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
270
266
  password_secret (SecretKeySelector): [optional] # noqa: E501
271
267
  revision (str): Revision is the git commit, tag, branch to checkout. [optional] # noqa: E501
272
268
  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
- 'expression': (str,), # noqa: E501
84
+ 'condition': (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
- 'expression': 'expression', # noqa: E501
93
+ 'condition': 'condition', # 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, expression, *args, **kwargs): # noqa: E501
103
+ def _from_openapi_data(cls, condition, *args, **kwargs): # noqa: E501
104
104
  """IoArgoprojWorkflowV1alpha1StopStrategy - a model defined in OpenAPI
105
105
 
106
106
  Args:
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.
107
+ condition (str): v3.6 and after: Condition is an expression that stops scheduling workflows when true. Use the variables `failed` or `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.expression = expression
167
+ self.condition = condition
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, expression, *args, **kwargs): # noqa: E501
188
+ def __init__(self, condition, *args, **kwargs): # noqa: E501
189
189
  """IoArgoprojWorkflowV1alpha1StopStrategy - a model defined in OpenAPI
190
190
 
191
191
  Args:
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.
192
+ condition (str): v3.6 and after: Condition is an expression that stops scheduling workflows when true. Use the variables `failed` or `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.expression = expression
250
+ self.condition = condition
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 \
@@ -90,9 +90,7 @@ class IoArgoprojWorkflowV1alpha1Synchronization(ModelNormal):
90
90
  lazy_import()
91
91
  return {
92
92
  'mutex': (IoArgoprojWorkflowV1alpha1Mutex,), # noqa: E501
93
- 'mutexes': ([IoArgoprojWorkflowV1alpha1Mutex],), # noqa: E501
94
93
  'semaphore': (IoArgoprojWorkflowV1alpha1SemaphoreRef,), # noqa: E501
95
- 'semaphores': ([IoArgoprojWorkflowV1alpha1SemaphoreRef],), # noqa: E501
96
94
  }
97
95
 
98
96
  @cached_property
@@ -102,9 +100,7 @@ class IoArgoprojWorkflowV1alpha1Synchronization(ModelNormal):
102
100
 
103
101
  attribute_map = {
104
102
  'mutex': 'mutex', # noqa: E501
105
- 'mutexes': 'mutexes', # noqa: E501
106
103
  'semaphore': 'semaphore', # noqa: E501
107
- 'semaphores': 'semaphores', # noqa: E501
108
104
  }
109
105
 
110
106
  read_only_vars = {
@@ -149,9 +145,7 @@ class IoArgoprojWorkflowV1alpha1Synchronization(ModelNormal):
149
145
  through its discriminator because we passed in
150
146
  _visited_composed_classes = (Animal,)
151
147
  mutex (IoArgoprojWorkflowV1alpha1Mutex): [optional] # noqa: E501
152
- mutexes ([IoArgoprojWorkflowV1alpha1Mutex]): v3.6 and after: Mutexes holds the list of Mutex lock details. [optional] # noqa: E501
153
148
  semaphore (IoArgoprojWorkflowV1alpha1SemaphoreRef): [optional] # noqa: E501
154
- semaphores ([IoArgoprojWorkflowV1alpha1SemaphoreRef]): v3.6 and after: Semaphores holds the list of Semaphores configuration. [optional] # noqa: E501
155
149
  """
156
150
 
157
151
  _check_type = kwargs.pop('_check_type', True)
@@ -234,9 +228,7 @@ class IoArgoprojWorkflowV1alpha1Synchronization(ModelNormal):
234
228
  through its discriminator because we passed in
235
229
  _visited_composed_classes = (Animal,)
236
230
  mutex (IoArgoprojWorkflowV1alpha1Mutex): [optional] # noqa: E501
237
- mutexes ([IoArgoprojWorkflowV1alpha1Mutex]): v3.6 and after: Mutexes holds the list of Mutex lock details. [optional] # noqa: E501
238
231
  semaphore (IoArgoprojWorkflowV1alpha1SemaphoreRef): [optional] # noqa: E501
239
- semaphores ([IoArgoprojWorkflowV1alpha1SemaphoreRef]): v3.6 and after: Semaphores holds the list of Semaphores configuration. [optional] # noqa: E501
240
232
  """
241
233
 
242
234
  _check_type = kwargs.pop('_check_type', True)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: argo-workflows
3
- Version: 6.6.0
3
+ Version: 6.6.0rc1
4
4
  Summary: Argo Workflows API
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -1,6 +1,6 @@
1
- argo_workflows/__init__.py,sha256=pr_Cs3Yh9NhkztrWqCzbSXa6NWhMhrEk4OdvAeXOgLQ,867
2
- argo_workflows/api_client.py,sha256=KiYCz4HPPJtuDey5Vn0KP763q-N_qOgkVletFR2DFEE,37814
3
- argo_workflows/configuration.py,sha256=9m1jDehNqTBOXAUqcUTeuR7BQpTY-3J22JfFYlhsjko,17371
1
+ argo_workflows/__init__.py,sha256=BXhjzpRY8k1BqZvJmKLGK_7UpN57QmcZ4KxCzFJMALs,871
2
+ argo_workflows/api_client.py,sha256=sovIFs0w-e5djztoIZBzJCSASZphrAiAOL1bd7DtEz0,37818
3
+ argo_workflows/configuration.py,sha256=2Ba1-T98kAGaERaokiaH_sgzaU3keO1nzG1MYcVivtQ,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=eLblUEbTViSU_8wPKM96d51oslaqL1W_h2SJv5bGc88,133204
16
+ argo_workflows/api/workflow_service_api.py,sha256=95alpHNsNFKkFg2Zu-qthhwAjurwoe8yWe4KVIYyjgM,132884
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
@@ -219,7 +219,7 @@ argo_workflows/model/io_argoproj_workflow_v1alpha1_create_s3_bucket_options.py,s
219
219
  argo_workflows/model/io_argoproj_workflow_v1alpha1_cron_workflow.py,sha256=ONGyinXEdP_h4iMqOwePjIFN76pBW9eFNeRKBjEIf4Y,14134
220
220
  argo_workflows/model/io_argoproj_workflow_v1alpha1_cron_workflow_list.py,sha256=DxFT34mbru7YkGy8LRGlW1d-WM92lHNbuCzLkq3vQ0E,13567
221
221
  argo_workflows/model/io_argoproj_workflow_v1alpha1_cron_workflow_resume_request.py,sha256=q30cZiE3kvHUvphpKLWctmPceOrzjz5blEkn9rlTwHI,11454
222
- argo_workflows/model/io_argoproj_workflow_v1alpha1_cron_workflow_spec.py,sha256=QzqNxLkQFA67tvv8Uu49_xJiV7nzlpVP3PEMrA6VZy4,16447
222
+ argo_workflows/model/io_argoproj_workflow_v1alpha1_cron_workflow_spec.py,sha256=PxDQ_fRiDYa6njpFgk9nfJdSlCLnCX8gQGxFCX-SiUc,16395
223
223
  argo_workflows/model/io_argoproj_workflow_v1alpha1_cron_workflow_status.py,sha256=nQX58XVD3sDrOo9iyEr-IlEKzPwkd-5fdWmcGJzda8g,14223
224
224
  argo_workflows/model/io_argoproj_workflow_v1alpha1_cron_workflow_suspend_request.py,sha256=sXuCNcsfcFlUbdXnKPMR3R2EolTdcCoDWfRlIVw9IVI,11457
225
225
  argo_workflows/model/io_argoproj_workflow_v1alpha1_dag_task.py,sha256=GnL0auF1FwaouNky7_AKqImSqY2Ls_J3goA7aeOleEc,17394
@@ -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=kjpdDeAERwHhQyjp8g3JpFyVIJgam-GNn7-n79-gOPI,15313
235
+ argo_workflows/model/io_argoproj_workflow_v1alpha1_git_artifact.py,sha256=rXLYXQtXLMfL0jpP0y5kzorweNjy03T9o8JLh1SHR_M,14873
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,11 +288,11 @@ 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=476UraDWSRQHdrDQ8U3Rk4e7LxoHNPQWaZcNEDERj4o,11762
291
+ argo_workflows/model/io_argoproj_workflow_v1alpha1_stop_strategy.py,sha256=K1_-58H5t4dZo6yc3HgwoVlTArZgzpamTU_mOpleI-U,11689
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
295
- argo_workflows/model/io_argoproj_workflow_v1alpha1_synchronization.py,sha256=ZrLqpvBmV_mGbRJfbJyfkymaWzrt8oYXYcSaXZvc9Pg,12955
295
+ argo_workflows/model/io_argoproj_workflow_v1alpha1_synchronization.py,sha256=3ZAmJz7xklNziOGNx0LZN1fsDcHwXMmUL_6Ixcjv2MU,12087
296
296
  argo_workflows/model/io_argoproj_workflow_v1alpha1_synchronization_status.py,sha256=w9fr5NUmmpLw1p-Y68-gIQpouSyrJyTQYX3Nq5k5Se0,12169
297
297
  argo_workflows/model/io_argoproj_workflow_v1alpha1_tar_strategy.py,sha256=2fyGv_L4jMZZ7QKykxCQ679DSxSLhprOEtABzhKI3_k,11507
298
298
  argo_workflows/model/io_argoproj_workflow_v1alpha1_template.py,sha256=7hwFyD5bKXXHJIH-gOIkR2HZrok5-6OhI7RUNexKIVI,30366
@@ -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.0.dist-info/LICENSE,sha256=yZb8ITyU9KSoOEB9NVsIEibKp7EDpPI5u4f7jx2OOmA,11352
414
- argo_workflows-6.6.0.dist-info/METADATA,sha256=aVA5-Bfl7exxEVjkRmBiLg8FSzdapENDvzbO6SS6JXU,552
415
- argo_workflows-6.6.0.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
416
- argo_workflows-6.6.0.dist-info/top_level.txt,sha256=yMnCMzuIXOSIbj7CSKsK35PygYYUBwZ98RBqeq9r1Ig,15
417
- argo_workflows-6.6.0.dist-info/RECORD,,
413
+ argo_workflows-6.6.0rc1.dist-info/LICENSE,sha256=yZb8ITyU9KSoOEB9NVsIEibKp7EDpPI5u4f7jx2OOmA,11352
414
+ argo_workflows-6.6.0rc1.dist-info/METADATA,sha256=G8DdABKpoZ7hGG06zoxqwv3zctKP29IfUMn7docy1ok,555
415
+ argo_workflows-6.6.0rc1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
416
+ argo_workflows-6.6.0rc1.dist-info/top_level.txt,sha256=yMnCMzuIXOSIbj7CSKsK35PygYYUBwZ98RBqeq9r1Ig,15
417
+ argo_workflows-6.6.0rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.5.0)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5