A Solution Run Template Create Request
| Name | Type | Description | Notes |
|---|---|---|---|
| id | string | The Solution Run Template id | [default to undefined] |
| 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] |
import { RunTemplateCreateRequest } from '@cosmotech/api-ts';
const instance: RunTemplateCreateRequest = {
id,
name,
labels,
description,
tags,
computeSize,
runSizing,
parameterGroups,
executionTimeout,
};