Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.96 KB

File metadata and controls

40 lines (31 loc) · 1.96 KB

RunnerUpdateRequest

Request object for updating a runner

Properties

Name Type Description Notes
name str the Runner name [optional]
description str the Runner description [optional]
tags List[str] the list of tags [optional]
run_template_id str the Solution Run Template Id associated with this Runner [optional]
dataset_list List[str] the list of Dataset Id associated to this Runner Run Template [optional]
run_sizing RunnerResourceSizing definition of resources needed for the runner run [optional]
parameters_values List[RunnerRunTemplateParameterValue] the list of Solution Run Template parameters values [optional]
additional_data Dict[str, object] Free form additional data [optional]
solution_name str the Solution name [optional]
run_template_name str the Solution Run Template name associated with this Runner [optional]
validation_status RunnerValidationStatus [optional]

Example

from cosmotech_api.models.runner_update_request import RunnerUpdateRequest

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

# convert the object into a dict
runner_update_request_dict = runner_update_request_instance.to_dict()
# create an instance of RunnerUpdateRequest from a dict
runner_update_request_from_dict = RunnerUpdateRequest.from_dict(runner_update_request_dict)

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