Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2 KB

File metadata and controls

47 lines (38 loc) · 2 KB

CreateInferenceV3DeploymentRequest

Properties

Name Type Description Notes
max_surge int [optional]
max_unavailable int [optional]
name str
cluster_id int
hardware_instance_id int
image_url str
image_pull_secret_credentials ImagePullSecretCredentials [optional]
port int
min_replicas int
max_replicas int
initial_replicas int [optional]
concurrency int [optional]
healthcheck str [optional]
env_vars Dict[str, str] [optional]
command str [optional]
endpoint_bearer_token str [optional]
endpoint_certificate_authority str [optional]
backend_protocol BackendProtocol [optional]
enable_logging bool [optional] [default to False]

Example

from platform_api_python_client.models.create_inference_v3_deployment_request import CreateInferenceV3DeploymentRequest

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

# convert the object into a dict
create_inference_v3_deployment_request_dict = create_inference_v3_deployment_request_instance.to_dict()
# create an instance of CreateInferenceV3DeploymentRequest from a dict
create_inference_v3_deployment_request_from_dict = CreateInferenceV3DeploymentRequest.from_dict(create_inference_v3_deployment_request_dict)

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