Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 971 Bytes

DeployResult.md

File metadata and controls

30 lines (21 loc) · 971 Bytes

DeployResult

The result data for a completed deployment job.

Properties

Name Type Description Notes
deploy_spec ExposedOpenfaasDeploySpec

Example

from waylay.services.registry.models.deploy_result import DeployResult

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

# convert the object into a dict
deploy_result_dict = deploy_result_instance.to_dict()
# create an instance of DeployResult from a dict
deploy_result_form_dict = deploy_result.from_dict(deploy_result_dict)

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