Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.52 KB

CreateInferenceDeploymentRequest.md

File metadata and controls

40 lines (31 loc) · 1.52 KB

CreateInferenceDeploymentRequest

Properties

Name Type Description Notes
name str
cluster_id int
hardware_instance_id int
image_url str
port int
min_scale int
max_scale int
concurrency int [optional]
healthcheck str [optional]
env_vars Dict[str, str] [optional]
command str [optional]
endpoint_certificate_authority str [optional]

Example

from platform_api_python_client.models.create_inference_deployment_request import CreateInferenceDeploymentRequest

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

# convert the object into a dict
create_inference_deployment_request_dict = create_inference_deployment_request_instance.to_dict()
# create an instance of CreateInferenceDeploymentRequest from a dict
create_inference_deployment_request_from_dict = CreateInferenceDeploymentRequest.from_dict(create_inference_deployment_request_dict)

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