Skip to content

Latest commit

 

History

History
61 lines (54 loc) · 2.99 KB

File metadata and controls

61 lines (54 loc) · 2.99 KB

Runner

a Runner with complete information

Properties

Name Type Description Notes
id string the Runner unique identifier [readonly] [default to undefined]
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]
parentId string the Runner parent id [optional] [default to undefined]
createInfo RunnerEditInfo The details of the Runner creation [default to undefined]
updateInfo RunnerEditInfo The details of the Runner last update [default to undefined]
rootId string the runner root id [optional] [readonly] [default to undefined]
solutionId string the Solution Id associated with this Runner [readonly] [default to undefined]
runTemplateId string the Solution Run Template Id associated with this Runner [default to undefined]
organizationId string the associated Organization Id [readonly] [default to undefined]
workspaceId string the associated Workspace Id [readonly] [default to undefined]
solutionName string the Solution name [optional] [readonly] [default to undefined]
runTemplateName string the Solution Run Template name associated with this Runner [optional] [readonly] [default to undefined]
additionalData { [key: string]: any; } Free form additional data [optional] [default to undefined]
datasets RunnerDatasets definition of datasets used by the runner [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 [default to undefined]
lastRunInfo LastRunInfo last run info from current runner [default to undefined]
validationStatus RunnerValidationStatus [default to undefined]
security RunnerSecurity [default to undefined]

Example

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

const instance: Runner = {
    id,
    name,
    description,
    tags,
    parentId,
    createInfo,
    updateInfo,
    rootId,
    solutionId,
    runTemplateId,
    organizationId,
    workspaceId,
    solutionName,
    runTemplateName,
    additionalData,
    datasets,
    runSizing,
    parametersValues,
    lastRunInfo,
    validationStatus,
    security,
};

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