| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| cluster_id | int | ||
| hardware_instance_id | int | ||
| user_annotations | Dict[str, str] | [optional] | |
| chart_revision | str | [optional] | |
| image_url | str | ||
| image_pull_secret_credentials | ImagePullSecretCredentials | [optional] | |
| ssh_public_key | str | ||
| enable_logging | bool | [optional] [default to False] | |
| volume_mounts | List[VolumeMount] | [optional] |
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)