Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 803 Bytes

UpdateReleasePipelineInput.md

File metadata and controls

24 lines (18 loc) · 803 Bytes

LaunchDarklyApi::UpdateReleasePipelineInput

Properties

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

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::UpdateReleasePipelineInput.new(
  description: Standard pipeline to roll out to production,
  name: Standard Pipeline,
  phases: null,
  tags: [&quot;example-tag&quot;]
)