Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.34 KB

File metadata and controls

35 lines (26 loc) · 1.34 KB

CreateComputeDeploymentRequest

Properties

Name Type Description Notes
name str
cluster_id int
hardware_instance_id int
image_url str
enable_jupyter bool [optional] [default to False]
ssh_public_key str
enable_logging bool [optional] [default to False]

Example

from platform_api_python_client.models.create_compute_deployment_request import CreateComputeDeploymentRequest

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

# convert the object into a dict
create_compute_deployment_request_dict = create_compute_deployment_request_instance.to_dict()
# create an instance of CreateComputeDeploymentRequest from a dict
create_compute_deployment_request_from_dict = CreateComputeDeploymentRequest.from_dict(create_compute_deployment_request_dict)

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