argo-workflows 6.6.0rc1__py3-none-any.whl → 6.6.0rc2__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.

@@ -10,7 +10,7 @@
10
10
  """
11
11
 
12
12
 
13
- __version__ = "6.6.0-rc1"
13
+ __version__ = "6.6.0-rc2"
14
14
 
15
15
  # import ApiClient
16
16
  from argo_workflows.api_client import ApiClient
@@ -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-rc1/python'
79
+ self.user_agent = 'OpenAPI-Generator/6.6.0-rc2/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-rc1".\
412
+ "SDK Package Version: 6.6.0-rc2".\
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
95
94
  'workflow_spec': (IoArgoprojWorkflowV1alpha1WorkflowSpec,), # noqa: E501
96
95
  'concurrency_policy': (str,), # noqa: E501
97
96
  '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
115
114
  'workflow_spec': 'workflowSpec', # noqa: E501
116
115
  'concurrency_policy': 'concurrencyPolicy', # noqa: E501
117
116
  '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,11 +132,10 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
132
132
 
133
133
  @classmethod
134
134
  @convert_js_args_to_python_args
135
- def _from_openapi_data(cls, schedule, workflow_spec, *args, **kwargs): # noqa: E501
135
+ def _from_openapi_data(cls, 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
140
139
  workflow_spec (IoArgoprojWorkflowV1alpha1WorkflowSpec):
141
140
 
142
141
  Keyword Args:
@@ -172,7 +171,8 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
172
171
  _visited_composed_classes = (Animal,)
173
172
  concurrency_policy (str): ConcurrencyPolicy is the K8s-style concurrency policy that will be used. [optional] # noqa: E501
174
173
  failed_jobs_history_limit (int): FailedJobsHistoryLimit is the number of failed jobs to be kept at a time. [optional] # noqa: E501
175
- schedules ([str]): Schedules is a list of schedules to run the Workflow in Cron format. [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
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,7 +207,6 @@ 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
211
210
  self.workflow_spec = workflow_spec
212
211
  for var_name, var_value in kwargs.items():
213
212
  if var_name not in self.attribute_map and \
@@ -229,11 +228,10 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
229
228
  ])
230
229
 
231
230
  @convert_js_args_to_python_args
232
- def __init__(self, schedule, workflow_spec, *args, **kwargs): # noqa: E501
231
+ def __init__(self, workflow_spec, *args, **kwargs): # noqa: E501
233
232
  """IoArgoprojWorkflowV1alpha1CronWorkflowSpec - a model defined in OpenAPI
234
233
 
235
234
  Args:
236
- schedule (str): Schedule is a schedule to run the Workflow in Cron format
237
235
  workflow_spec (IoArgoprojWorkflowV1alpha1WorkflowSpec):
238
236
 
239
237
  Keyword Args:
@@ -269,7 +267,8 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
269
267
  _visited_composed_classes = (Animal,)
270
268
  concurrency_policy (str): ConcurrencyPolicy is the K8s-style concurrency policy that will be used. [optional] # noqa: E501
271
269
  failed_jobs_history_limit (int): FailedJobsHistoryLimit is the number of failed jobs to be kept at a time. [optional] # noqa: E501
272
- schedules ([str]): Schedules is a list of schedules to run the Workflow in Cron format. [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
273
272
  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
274
273
  stop_strategy (IoArgoprojWorkflowV1alpha1StopStrategy): [optional] # noqa: E501
275
274
  successful_jobs_history_limit (int): SuccessfulJobsHistoryLimit is the number of successful jobs to be kept at a time. [optional] # noqa: E501
@@ -302,7 +301,6 @@ class IoArgoprojWorkflowV1alpha1CronWorkflowSpec(ModelNormal):
302
301
  self._configuration = _configuration
303
302
  self._visited_composed_classes = _visited_composed_classes + (self.__class__,)
304
303
 
305
- self.schedule = schedule
306
304
  self.workflow_spec = workflow_spec
307
305
  for var_name, var_value in kwargs.items():
308
306
  if var_name not in self.attribute_map and \
@@ -90,7 +90,9 @@ class IoArgoprojWorkflowV1alpha1Synchronization(ModelNormal):
90
90
  lazy_import()
91
91
  return {
92
92
  'mutex': (IoArgoprojWorkflowV1alpha1Mutex,), # noqa: E501
93
+ 'mutexes': ([IoArgoprojWorkflowV1alpha1Mutex],), # noqa: E501
93
94
  'semaphore': (IoArgoprojWorkflowV1alpha1SemaphoreRef,), # noqa: E501
95
+ 'semaphores': ([IoArgoprojWorkflowV1alpha1SemaphoreRef],), # noqa: E501
94
96
  }
95
97
 
96
98
  @cached_property
@@ -100,7 +102,9 @@ class IoArgoprojWorkflowV1alpha1Synchronization(ModelNormal):
100
102
 
101
103
  attribute_map = {
102
104
  'mutex': 'mutex', # noqa: E501
105
+ 'mutexes': 'mutexes', # noqa: E501
103
106
  'semaphore': 'semaphore', # noqa: E501
107
+ 'semaphores': 'semaphores', # noqa: E501
104
108
  }
105
109
 
106
110
  read_only_vars = {
@@ -145,7 +149,9 @@ class IoArgoprojWorkflowV1alpha1Synchronization(ModelNormal):
145
149
  through its discriminator because we passed in
146
150
  _visited_composed_classes = (Animal,)
147
151
  mutex (IoArgoprojWorkflowV1alpha1Mutex): [optional] # noqa: E501
152
+ mutexes ([IoArgoprojWorkflowV1alpha1Mutex]): v3.6 and after: Mutexes holds the list of Mutex lock details. [optional] # noqa: E501
148
153
  semaphore (IoArgoprojWorkflowV1alpha1SemaphoreRef): [optional] # noqa: E501
154
+ semaphores ([IoArgoprojWorkflowV1alpha1SemaphoreRef]): v3.6 and after: Semaphores holds the list of Semaphores configuration. [optional] # noqa: E501
149
155
  """
150
156
 
151
157
  _check_type = kwargs.pop('_check_type', True)
@@ -228,7 +234,9 @@ class IoArgoprojWorkflowV1alpha1Synchronization(ModelNormal):
228
234
  through its discriminator because we passed in
229
235
  _visited_composed_classes = (Animal,)
230
236
  mutex (IoArgoprojWorkflowV1alpha1Mutex): [optional] # noqa: E501
237
+ mutexes ([IoArgoprojWorkflowV1alpha1Mutex]): v3.6 and after: Mutexes holds the list of Mutex lock details. [optional] # noqa: E501
231
238
  semaphore (IoArgoprojWorkflowV1alpha1SemaphoreRef): [optional] # noqa: E501
239
+ semaphores ([IoArgoprojWorkflowV1alpha1SemaphoreRef]): v3.6 and after: Semaphores holds the list of Semaphores configuration. [optional] # noqa: E501
232
240
  """
233
241
 
234
242
  _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.0rc1
3
+ Version: 6.6.0rc2
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=BXhjzpRY8k1BqZvJmKLGK_7UpN57QmcZ4KxCzFJMALs,871
2
- argo_workflows/api_client.py,sha256=sovIFs0w-e5djztoIZBzJCSASZphrAiAOL1bd7DtEz0,37818
3
- argo_workflows/configuration.py,sha256=2Ba1-T98kAGaERaokiaH_sgzaU3keO1nzG1MYcVivtQ,17375
1
+ argo_workflows/__init__.py,sha256=BVQPdMt1gHja26wBpoVCisTxJwQGTJVA5-Oc2fc_E68,871
2
+ argo_workflows/api_client.py,sha256=9JEgp-SB84h9qj5D_v0vd9KHNbf3frMfGJnU8AzkJhk,37818
3
+ argo_workflows/configuration.py,sha256=zIyewdaQNkI0Jddanx3pl6ecbzYsLEnC_ZwjUG2J414,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
@@ -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=PxDQ_fRiDYa6njpFgk9nfJdSlCLnCX8gQGxFCX-SiUc,16395
222
+ argo_workflows/model/io_argoproj_workflow_v1alpha1_cron_workflow_spec.py,sha256=QzqNxLkQFA67tvv8Uu49_xJiV7nzlpVP3PEMrA6VZy4,16447
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
@@ -292,7 +292,7 @@ argo_workflows/model/io_argoproj_workflow_v1alpha1_stop_strategy.py,sha256=K1_-5
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=3ZAmJz7xklNziOGNx0LZN1fsDcHwXMmUL_6Ixcjv2MU,12087
295
+ argo_workflows/model/io_argoproj_workflow_v1alpha1_synchronization.py,sha256=ZrLqpvBmV_mGbRJfbJyfkymaWzrt8oYXYcSaXZvc9Pg,12955
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.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,,
413
+ argo_workflows-6.6.0rc2.dist-info/LICENSE,sha256=yZb8ITyU9KSoOEB9NVsIEibKp7EDpPI5u4f7jx2OOmA,11352
414
+ argo_workflows-6.6.0rc2.dist-info/METADATA,sha256=Sx-41KsiA0eWT41e3rs5FJ0IcrgcWaGgCe6-lJA_vX8,555
415
+ argo_workflows-6.6.0rc2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
416
+ argo_workflows-6.6.0rc2.dist-info/top_level.txt,sha256=yMnCMzuIXOSIbj7CSKsK35PygYYUBwZ98RBqeq9r1Ig,15
417
+ argo_workflows-6.6.0rc2.dist-info/RECORD,,