Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.88 KB

File metadata and controls

48 lines (39 loc) · 1.88 KB

GetCServeV2DeploymentResponse

Properties

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
recipe CServeV2Recipe
cserve_version str [optional]
min_scale int
max_scale int
initial_scale int [optional]
endpoint_certificate_authority str [optional]
endpoint_bearer_token str [optional]
concurrency int [optional]
env_vars Dict[str, str] [optional]

Example

from platform_api_python_client.models.get_c_serve_v2_deployment_response import GetCServeV2DeploymentResponse

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

# convert the object into a dict
get_c_serve_v2_deployment_response_dict = get_c_serve_v2_deployment_response_instance.to_dict()
# create an instance of GetCServeV2DeploymentResponse from a dict
get_c_serve_v2_deployment_response_from_dict = GetCServeV2DeploymentResponse.from_dict(get_c_serve_v2_deployment_response_dict)

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