Skip to content

Latest commit

 

History

History
45 lines (38 loc) · 2.1 KB

File metadata and controls

45 lines (38 loc) · 2.1 KB

RunnerCreateRequest

Request object for creating a new runner

Properties

Name Type Description Notes
name string the Runner name [default to undefined]
description string the Runner description [optional] [default to undefined]
tags Array<string> the list of tags [optional] [default to undefined]
solutionId string the Solution Id associated with this Runner [default to undefined]
parentId string the Runner parent id [optional] [default to undefined]
runTemplateId string the Solution Run Template Id associated with this Runner [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]
security RunnerSecurity [optional] [default to undefined]

Example

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

const instance: RunnerCreateRequest = {
    name,
    description,
    tags,
    solutionId,
    parentId,
    runTemplateId,
    datasetList,
    runSizing,
    parametersValues,
    additionalData,
    solutionName,
    runTemplateName,
    security,
};

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