Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.5 KB

File metadata and controls

35 lines (28 loc) · 1.5 KB

RunTemplateUpdateRequest

A Solution Run Template Create Request

Properties

Name Type Description Notes
name string The Run Template name [optional] [default to undefined]
labels { [key: string]: string; } A translated label with key as ISO 639-1 code [optional] [default to undefined]
description string The Run Template description [optional] [default to undefined]
tags Array<string> The list of Run Template tags [optional] [default to undefined]
computeSize string The compute size needed for this Run Template [optional] [default to undefined]
runSizing RunTemplateResourceSizing [optional] [default to undefined]
parameterGroups Array<string> The ordered list of parameters groups for the Run Template [optional] [default to undefined]
executionTimeout number An optional duration in seconds in which a workflow is allowed to run [optional] [default to undefined]

Example

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

const instance: RunTemplateUpdateRequest = {
    name,
    labels,
    description,
    tags,
    computeSize,
    runSizing,
    parameterGroups,
    executionTimeout,
};

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