2025-12-01
This commit is contained in:
@@ -92,6 +92,8 @@ class JobAllOf(ModelNormal):
|
||||
'updated': (datetime,), # noqa: E501
|
||||
'status': (JobStatus,), # noqa: E501
|
||||
'activity': (str,), # noqa: E501
|
||||
'steps_completed': (int,), # noqa: E501
|
||||
'steps_total': (int,), # noqa: E501
|
||||
'delete_requested_at': (datetime,), # noqa: E501
|
||||
}
|
||||
|
||||
@@ -106,6 +108,8 @@ class JobAllOf(ModelNormal):
|
||||
'updated': 'updated', # noqa: E501
|
||||
'status': 'status', # noqa: E501
|
||||
'activity': 'activity', # noqa: E501
|
||||
'steps_completed': 'steps_completed', # noqa: E501
|
||||
'steps_total': 'steps_total', # noqa: E501
|
||||
'delete_requested_at': 'delete_requested_at', # noqa: E501
|
||||
}
|
||||
|
||||
@@ -116,7 +120,7 @@ class JobAllOf(ModelNormal):
|
||||
|
||||
@classmethod
|
||||
@convert_js_args_to_python_args
|
||||
def _from_openapi_data(cls, id, created, updated, status, activity, *args, **kwargs): # noqa: E501
|
||||
def _from_openapi_data(cls, id, created, updated, status, activity, steps_completed, steps_total, *args, **kwargs): # noqa: E501
|
||||
"""JobAllOf - a model defined in OpenAPI
|
||||
|
||||
Args:
|
||||
@@ -125,6 +129,8 @@ class JobAllOf(ModelNormal):
|
||||
updated (datetime): Timestamp of last update.
|
||||
status (JobStatus):
|
||||
activity (str): Description of the last activity on this job.
|
||||
steps_completed (int):
|
||||
steps_total (int):
|
||||
|
||||
Keyword Args:
|
||||
_check_type (bool): if True, values for parameters in openapi_types
|
||||
@@ -190,6 +196,8 @@ class JobAllOf(ModelNormal):
|
||||
self.updated = updated
|
||||
self.status = status
|
||||
self.activity = activity
|
||||
self.steps_completed = steps_completed
|
||||
self.steps_total = steps_total
|
||||
for var_name, var_value in kwargs.items():
|
||||
if var_name not in self.attribute_map and \
|
||||
self._configuration is not None and \
|
||||
@@ -210,7 +218,7 @@ class JobAllOf(ModelNormal):
|
||||
])
|
||||
|
||||
@convert_js_args_to_python_args
|
||||
def __init__(self, id, created, updated, status, activity, *args, **kwargs): # noqa: E501
|
||||
def __init__(self, id, created, updated, status, activity, steps_completed, steps_total, *args, **kwargs): # noqa: E501
|
||||
"""JobAllOf - a model defined in OpenAPI
|
||||
|
||||
Args:
|
||||
@@ -219,6 +227,8 @@ class JobAllOf(ModelNormal):
|
||||
updated (datetime): Timestamp of last update.
|
||||
status (JobStatus):
|
||||
activity (str): Description of the last activity on this job.
|
||||
steps_completed (int):
|
||||
steps_total (int):
|
||||
|
||||
Keyword Args:
|
||||
_check_type (bool): if True, values for parameters in openapi_types
|
||||
@@ -282,6 +292,8 @@ class JobAllOf(ModelNormal):
|
||||
self.updated = updated
|
||||
self.status = status
|
||||
self.activity = activity
|
||||
self.steps_completed = steps_completed
|
||||
self.steps_total = steps_total
|
||||
for var_name, var_value in kwargs.items():
|
||||
if var_name not in self.attribute_map and \
|
||||
self._configuration is not None and \
|
||||
|
||||
Reference in New Issue
Block a user