Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

CreateComputeDeploymentResponse

Properties

Name Type Description Notes
id int
created_at datetime
endpoint_url str
port int
jupyter_token str [optional]

Example

from platform_api_python_client.models.create_compute_deployment_response import CreateComputeDeploymentResponse

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

# convert the object into a dict
create_compute_deployment_response_dict = create_compute_deployment_response_instance.to_dict()
# create an instance of CreateComputeDeploymentResponse from a dict
create_compute_deployment_response_from_dict = CreateComputeDeploymentResponse.from_dict(create_compute_deployment_response_dict)

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