Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.4 KB

Scale.md

File metadata and controls

39 lines (30 loc) · 1.4 KB

Scale

Properties

Name Type Description Notes
links JobHALLinks [optional]
type ScaleType
state JobStateResult
request ScaleArgs [optional]
result object The result data for a completed scale job. [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]

Example

from waylay.services.registry.models.scale import Scale

# TODO update the JSON string below
json = "{}"
# create an instance of Scale from a JSON string
scale_instance = Scale.from_json(json)
# print the JSON string representation of the object
print Scale.to_json()

# convert the object into a dict
scale_dict = scale_instance.to_dict()
# create an instance of Scale from a dict
scale_form_dict = scale.from_dict(scale_dict)

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