Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.33 KB

File metadata and controls

35 lines (26 loc) · 1.33 KB

DeploymentStatusResponse

Properties

Name Type Description Notes
id int
type DeploymentType
status DeploymentStatus
service_status ServiceStatus [optional]
error_message str [optional]
endpoint_url str [optional]
pod_status List[List[object]] [optional]

Example

from platform_api_python_client.models.deployment_status_response import DeploymentStatusResponse

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

# convert the object into a dict
deployment_status_response_dict = deployment_status_response_instance.to_dict()
# create an instance of DeploymentStatusResponse from a dict
deployment_status_response_from_dict = DeploymentStatusResponse.from_dict(deployment_status_response_dict)

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