Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 2.01 KB

File metadata and controls

41 lines (34 loc) · 2.01 KB

SolutionUpdateRequest

Request object for updating a solution

Properties

Name Type Description Notes
key string Technical key for resource name convention and version grouping. Must be unique [optional] [default to undefined]
name string The Solution name [optional] [default to undefined]
description string The Solution description [optional] [default to undefined]
repository string The registry repository containing the image [optional] [default to undefined]
alwaysPull boolean Set to true if the runtemplate wants to always pull the image [optional] [default to undefined]
version string The Solution version MAJOR.MINOR.PATCH. Must be aligned with an existing repository tag [optional] [default to undefined]
url string An optional URL link to solution page [optional] [default to undefined]
tags Array<string> The list of tags [optional] [default to undefined]
parameters Array<RunTemplateParameterCreateRequest> The list of Run Template Parameters [optional] [default to undefined]
parameterGroups Array<RunTemplateParameterGroupCreateRequest> The list of parameters groups for the Run Templates [optional] [default to undefined]
runTemplates Array<RunTemplateCreateRequest> List of Run Templates [optional] [default to undefined]

Example

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

const instance: SolutionUpdateRequest = {
    key,
    name,
    description,
    repository,
    alwaysPull,
    version,
    url,
    tags,
    parameters,
    parameterGroups,
    runTemplates,
};

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