| 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] |
import { UpdateReleasePipelineInput } from 'launchdarkly-api-typescript';
const instance: UpdateReleasePipelineInput = {
description,
name,
phases,
tags,
};