| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | ||
| cluster_id | int | ||
| hardware_instance_id | int | ||
| user_annotations | Dict[str, str] | [optional] | |
| chart_revision | str | [optional] | |
| image_url | str | ||
| image_pull_secret_credentials | ImagePullSecretCredentials | [optional] | |
| env_vars | Dict[str, str] | [optional] | |
| command | str | [optional] | |
| completions | int | [optional] [default to 1] | |
| parallelism | int | [optional] [default to 1] | |
| backoff_limit | int | [optional] [default to 3] | |
| active_deadline_seconds | int | [optional] | |
| enable_logging | bool | [optional] [default to True] | |
| config_file | ConfigFileMount | [optional] | |
| volume_mounts | List[VolumeMount] | [optional] |
from platform_api_python_client.models.create_job_deployment_request import CreateJobDeploymentRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateJobDeploymentRequest from a JSON string
create_job_deployment_request_instance = CreateJobDeploymentRequest.from_json(json)
# print the JSON string representation of the object
print(CreateJobDeploymentRequest.to_json())
# convert the object into a dict
create_job_deployment_request_dict = create_job_deployment_request_instance.to_dict()
# create an instance of CreateJobDeploymentRequest from a dict
create_job_deployment_request_from_dict = CreateJobDeploymentRequest.from_dict(create_job_deployment_request_dict)