Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 995 Bytes

File metadata and controls

26 lines (19 loc) · 995 Bytes

UpdateReleasePipelineInput

Properties

Name Type Description Notes
description string The release pipeline description [optional] [default to undefined]
name string The name of the release pipeline [default to undefined]
phases Array<CreatePhaseInput> A logical grouping of one or more environments that share attributes for rolling out changes [default to undefined]
tags Array<string> A list of tags for this release pipeline [optional] [default to undefined]

Example

import { UpdateReleasePipelineInput } from 'launchdarkly-api-typescript';

const instance: UpdateReleasePipelineInput = {
    description,
    name,
    phases,
    tags,
};

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