The motivations for including or excluding a job in response to a rebuild request.
Name | Type | Description | Notes |
---|---|---|---|
build | JobCause | [optional] | |
deploy | JobCause | [optional] | |
verify | JobCause | [optional] | |
undeploy | JobCause | [optional] | |
scale | JobCause | [optional] |
from waylay.services.registry.models.job_causes import JobCauses
# TODO update the JSON string below
json = "{}"
# create an instance of JobCauses from a JSON string
job_causes_instance = JobCauses.from_json(json)
# print the JSON string representation of the object
print JobCauses.to_json()
# convert the object into a dict
job_causes_dict = job_causes_instance.to_dict()
# create an instance of JobCauses from a dict
job_causes_form_dict = job_causes.from_dict(job_causes_dict)