| Name | Type | Description | Notes |
|---|---|---|---|
| creator_email | str | ||
| cluster_id | int | ||
| id | int | ||
| name | str | ||
| endpoint_url | str | ||
| image_url | str | [optional] | |
| type | DeploymentType | ||
| status | DeploymentStatus | ||
| created_at | datetime | ||
| hardware_instance_id | int | ||
| revision_number | int | ||
| user_annotations | Dict[str, str] | [optional] | |
| exposed_port | int | ||
| ssh_public_key | str | [optional] | |
| ssh_password | str | [optional] | |
| env_vars | Dict[str, str] | [optional] | |
| image_pull_secret_credentials | ImagePullSecretCredentials | [optional] | |
| enable_logging | bool | [optional] [default to True] |
from platform_api_python_client.models.get_compute_deployment_response import GetComputeDeploymentResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetComputeDeploymentResponse from a JSON string
get_compute_deployment_response_instance = GetComputeDeploymentResponse.from_json(json)
# print the JSON string representation of the object
print(GetComputeDeploymentResponse.to_json())
# convert the object into a dict
get_compute_deployment_response_dict = get_compute_deployment_response_instance.to_dict()
# create an instance of GetComputeDeploymentResponse from a dict
get_compute_deployment_response_from_dict = GetComputeDeploymentResponse.from_dict(get_compute_deployment_response_dict)