| 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] |
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)