Name | Type | Description | Notes |
---|---|---|---|
type | DeployType | ||
operation | str | The operation name for the background task. | |
id | str | The id of the background job, or the constant `unknown` | |
state | JobStateResult | ||
created_at | datetime | The creation time of this job | |
processed_at | datetime | The timestamp of when the job has begun processing. | [optional] |
finished_at | datetime | The timestamp of when the job has finished processing. | [optional] |
attempts_made | float | The number of retries that were attempted. | [optional] |
created_by | str | The user that initiated this job | |
function | FunctionRef | [optional] | |
links | JobAndFunctionHALLink |
from waylay.services.registry.models.deploy1 import Deploy1
# TODO update the JSON string below
json = "{}"
# create an instance of Deploy1 from a JSON string
deploy1_instance = Deploy1.from_json(json)
# print the JSON string representation of the object
print Deploy1.to_json()
# convert the object into a dict
deploy1_dict = deploy1_instance.to_dict()
# create an instance of Deploy1 from a dict
deploy1_form_dict = deploy1.from_dict(deploy1_dict)