Skip to content

Latest commit

History

History
43 lines (34 loc) · 1.8 KB

File metadata and controls

43 lines (34 loc) · 1.8 KB

CreateJobDeploymentRequest

Properties

NameTypeDescriptionNotes
namestr
cluster_idint
hardware_instance_idint
user_annotationsDict[str, str][optional]
chart_revisionstr[optional]
image_urlstr
image_pull_secret_credentialsImagePullSecretCredentials[optional]
env_varsDict[str, str][optional]
commandstr[optional]
completionsint[optional] [default to 1]
parallelismint[optional] [default to 1]
backoff_limitint[optional] [default to 3]
active_deadline_secondsint[optional]
enable_loggingbool[optional] [default to True]
config_fileConfigFileMount[optional]

Example

fromplatform_api_python_client.models.create_job_deployment_requestimportCreateJobDeploymentRequest# TODO update the JSON string belowjson="{}"# create an instance of CreateJobDeploymentRequest from a JSON stringcreate_job_deployment_request_instance=CreateJobDeploymentRequest.from_json(json)
# print the JSON string representation of the objectprint(CreateJobDeploymentRequest.to_json())
# convert the object into a dictcreate_job_deployment_request_dict=create_job_deployment_request_instance.to_dict()
# create an instance of CreateJobDeploymentRequest from a dictcreate_job_deployment_request_from_dict=CreateJobDeploymentRequest.from_dict(create_job_deployment_request_dict)

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