workflow_job_view.py•7.16 kB
# coding: utf-8
"""
Alteryx Server API V3
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
OpenAPI spec version: 3
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
import pprint
import re # noqa: F401
import six
from src.server_client.configuration import Configuration
class WorkflowJobView(object):
"""NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
"""
"""
Attributes:
swagger_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
swagger_types = {
"id": "str",
"create_date": "datetime",
"status": "str",
"priority": "str",
"worker_tag": "str",
"run_with_e2": "bool",
}
attribute_map = {
"id": "id",
"create_date": "createDate",
"status": "status",
"priority": "priority",
"worker_tag": "workerTag",
"run_with_e2": "runWithE2",
}
def __init__(
self,
id=None,
create_date=None,
status=None,
priority=None,
worker_tag=None,
run_with_e2=None,
_configuration=None,
): # noqa: E501
"""WorkflowJobView - a model defined in Swagger""" # noqa: E501
if _configuration is None:
_configuration = Configuration()
self._configuration = _configuration
self._id = None
self._create_date = None
self._status = None
self._priority = None
self._worker_tag = None
self._run_with_e2 = None
self.discriminator = None
if id is not None:
self.id = id
if create_date is not None:
self.create_date = create_date
if status is not None:
self.status = status
if priority is not None:
self.priority = priority
if worker_tag is not None:
self.worker_tag = worker_tag
if run_with_e2 is not None:
self.run_with_e2 = run_with_e2
@property
def id(self):
"""Gets the id of this WorkflowJobView. # noqa: E501
:return: The id of this WorkflowJobView. # noqa: E501
:rtype: str
"""
return self._id
@id.setter
def id(self, id):
"""Sets the id of this WorkflowJobView.
:param id: The id of this WorkflowJobView. # noqa: E501
:type: str
"""
self._id = id
@property
def create_date(self):
"""Gets the create_date of this WorkflowJobView. # noqa: E501
:return: The create_date of this WorkflowJobView. # noqa: E501
:rtype: datetime
"""
return self._create_date
@create_date.setter
def create_date(self, create_date):
"""Sets the create_date of this WorkflowJobView.
:param create_date: The create_date of this WorkflowJobView. # noqa: E501
:type: datetime
"""
self._create_date = create_date
@property
def status(self):
"""Gets the status of this WorkflowJobView. # noqa: E501
:return: The status of this WorkflowJobView. # noqa: E501
:rtype: str
"""
return self._status
@status.setter
def status(self, status):
"""Sets the status of this WorkflowJobView.
:param status: The status of this WorkflowJobView. # noqa: E501
:type: str
"""
allowed_values = ["Created", "Cancelled", "Running", "Queued", "Completed"] # noqa: E501
if self._configuration.client_side_validation and status not in allowed_values:
raise ValueError(
"Invalid value for `status` ({0}), must be one of {1}".format(status, allowed_values) # noqa: E501
)
self._status = status
@property
def priority(self):
"""Gets the priority of this WorkflowJobView. # noqa: E501
:return: The priority of this WorkflowJobView. # noqa: E501
:rtype: str
"""
return self._priority
@priority.setter
def priority(self, priority):
"""Sets the priority of this WorkflowJobView.
:param priority: The priority of this WorkflowJobView. # noqa: E501
:type: str
"""
self._priority = priority
@property
def worker_tag(self):
"""Gets the worker_tag of this WorkflowJobView. # noqa: E501
:return: The worker_tag of this WorkflowJobView. # noqa: E501
:rtype: str
"""
return self._worker_tag
@worker_tag.setter
def worker_tag(self, worker_tag):
"""Sets the worker_tag of this WorkflowJobView.
:param worker_tag: The worker_tag of this WorkflowJobView. # noqa: E501
:type: str
"""
self._worker_tag = worker_tag
@property
def run_with_e2(self):
"""Gets the run_with_e2 of this WorkflowJobView. # noqa: E501
:return: The run_with_e2 of this WorkflowJobView. # noqa: E501
:rtype: bool
"""
return self._run_with_e2
@run_with_e2.setter
def run_with_e2(self, run_with_e2):
"""Sets the run_with_e2 of this WorkflowJobView.
:param run_with_e2: The run_with_e2 of this WorkflowJobView. # noqa: E501
:type: bool
"""
self._run_with_e2 = run_with_e2
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.swagger_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(lambda x: x.to_dict() if hasattr(x, "to_dict") else x, value))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(
map(
lambda item: (item[0], item[1].to_dict()) if hasattr(item[1], "to_dict") else item,
value.items(),
)
)
else:
result[attr] = value
if issubclass(WorkflowJobView, dict):
for key, value in self.items():
result[key] = value
return result
def to_str(self):
"""Returns the string representation of the model"""
return pprint.pformat(self.to_dict())
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, WorkflowJobView):
return False
return self.to_dict() == other.to_dict()
def __ne__(self, other):
"""Returns true if both objects are not equal"""
if not isinstance(other, WorkflowJobView):
return True
return self.to_dict() != other.to_dict()