Skip to content

Latest commit

History

History
38 lines (29 loc) · 1.57 KB

File metadata and controls

38 lines (29 loc) · 1.57 KB

CreateComputeDeploymentRequest

Properties

NameTypeDescriptionNotes
namestr
cluster_idint
hardware_instance_idint
user_annotationsDict[str, str][optional]
chart_revisionstr[optional]
image_urlstr
image_pull_secret_credentialsImagePullSecretCredentials[optional]
ssh_public_keystr
enable_loggingbool[optional] [default to False]
volume_mountsList[VolumeMount][optional]

Example

fromplatform_api_python_client.models.create_compute_deployment_requestimportCreateComputeDeploymentRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateComputeDeploymentRequest from a JSON stringcreate_compute_deployment_request_instance=CreateComputeDeploymentRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateComputeDeploymentRequest.to_json())
# convert the object into a dictcreate_compute_deployment_request_dict=create_compute_deployment_request_instance.to_dict()
# create an instance of CreateComputeDeploymentRequest from a dictcreate_compute_deployment_request_from_dict=CreateComputeDeploymentRequest.from_dict(create_compute_deployment_request_dict)

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