A Solution Run Template Create Request
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The Solution Run Template id | |
| name | str | The Run Template name | [optional] |
| labels | Dict[str, str] | A translated label with key as ISO 639-1 code | [optional] |
| description | str | The Run Template description | [optional] |
| tags | List[str] | The list of Run Template tags | [optional] |
| compute_size | str | The compute size needed for this Run Template | [optional] |
| run_sizing | RunTemplateResourceSizing | [optional] | |
| parameter_groups | List[str] | The ordered list of parameters groups for the Run Template | [optional] [default to []] |
| execution_timeout | int | An optional duration in seconds in which a workflow is allowed to run | [optional] |
from cosmotech_api.models.run_template_create_request import RunTemplateCreateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of RunTemplateCreateRequest from a JSON string
run_template_create_request_instance = RunTemplateCreateRequest.from_json(json)
# print the JSON string representation of the object
print(RunTemplateCreateRequest.to_json())
# convert the object into a dict
run_template_create_request_dict = run_template_create_request_instance.to_dict()
# create an instance of RunTemplateCreateRequest from a dict
run_template_create_request_from_dict = RunTemplateCreateRequest.from_dict(run_template_create_request_dict)