Name | Type | Description | Notes |
---|---|---|---|
links | JobHALLinks | [optional] | |
type | UndeployType | ||
state | JobStateResult | ||
request | UndeployArgs | [optional] | |
result | UndeployResult | [optional] | |
created_at | datetime | The timestamp of creation of this job | |
created_by | str | The user that created this job | |
operation | str | Request operation | |
function | FunctionRef | [optional] | |
job | JobStatus | [optional] | |
failure_reason | FailureReason | [optional] |
from waylay.services.registry.models.undeploy import Undeploy
# TODO update the JSON string below
json = "{}"
# create an instance of Undeploy from a JSON string
undeploy_instance = Undeploy.from_json(json)
# print the JSON string representation of the object
print Undeploy.to_json()
# convert the object into a dict
undeploy_dict = undeploy_instance.to_dict()
# create an instance of Undeploy from a dict
undeploy_form_dict = undeploy.from_dict(undeploy_dict)