Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.95 KB

File metadata and controls

50 lines (41 loc) · 1.95 KB

GetInferenceDeploymentResponse

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
container_port int
min_scale int
max_scale int
initial_scale int [optional]
concurrency int [optional]
healthcheck str [optional]
endpoint_certificate_authority str [optional]
endpoint_bearer_token str [optional]
env_vars Dict[str, str] [optional]
command List[str] [optional]
command_args List[str] [optional]

Example

from platform_api_python_client.models.get_inference_deployment_response import GetInferenceDeploymentResponse

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

# convert the object into a dict
get_inference_deployment_response_dict = get_inference_deployment_response_instance.to_dict()
# create an instance of GetInferenceDeploymentResponse from a dict
get_inference_deployment_response_from_dict = GetInferenceDeploymentResponse.from_dict(get_inference_deployment_response_dict)

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