Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.94 KB

File metadata and controls

41 lines (34 loc) · 1.94 KB

RunnerUpdateRequest

Request object for updating a runner

Properties

Name Type Description Notes
name string the Runner name [optional] [default to undefined]
description string the Runner description [optional] [default to undefined]
tags Array<string> the list of tags [optional] [default to undefined]
runTemplateId string the Solution Run Template Id associated with this Runner [optional] [default to undefined]
datasetList Array<string> the list of Dataset Id associated to this Runner Run Template [optional] [default to undefined]
runSizing RunnerResourceSizing definition of resources needed for the runner run [optional] [default to undefined]
parametersValues Array<RunnerRunTemplateParameterValue> the list of Solution Run Template parameters values [optional] [default to undefined]
additionalData { [key: string]: any; } Free form additional data [optional] [default to undefined]
solutionName string the Solution name [optional] [default to undefined]
runTemplateName string the Solution Run Template name associated with this Runner [optional] [default to undefined]
validationStatus RunnerValidationStatus [optional] [default to undefined]

Example

import { RunnerUpdateRequest } from '@cosmotech/api-ts';

const instance: RunnerUpdateRequest = {
    name,
    description,
    tags,
    runTemplateId,
    datasetList,
    runSizing,
    parametersValues,
    additionalData,
    solutionName,
    runTemplateName,
    validationStatus,
};

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