Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.15 KB

JobCauses.md

File metadata and controls

34 lines (25 loc) · 1.15 KB

JobCauses

The motivations for including or excluding a job in response to a rebuild request.

Properties

Name Type Description Notes
build JobCause [optional]
deploy JobCause [optional]
verify JobCause [optional]
undeploy JobCause [optional]
scale JobCause [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]