Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.41 KB

ReleasePipeline.md

File metadata and controls

36 lines (30 loc) · 1.41 KB

LaunchDarklyApi::ReleasePipeline

Properties

Name Type Description Notes
created_at Time Timestamp of when the release pipeline was created
description String The release pipeline description [optional]
key String The release pipeline key
name String The release pipeline name
phases Array<Phase> An ordered list of the release pipeline phases. Each phase is a logical grouping of one or more environments that share attributes for rolling out changes.
tags Array<String> A list of the release pipeline's tags [optional]
_version Integer The release pipeline version [optional]
_access Access [optional]
is_project_default Boolean Whether this release pipeline is the default pipeline for the project [optional]
_is_legacy Boolean Whether this release pipeline is a legacy pipeline [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ReleasePipeline.new(
  created_at: null,
  description: Standard pipeline to roll out to production,
  key: standard-pipeline,
  name: Standard Pipeline,
  phases: null,
  tags: [&quot;example-tag&quot;],
  _version: 1,
  _access: null,
  is_project_default: null,
  _is_legacy: true
)