Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 976 Bytes

StageOutput.md

File metadata and controls

26 lines (20 loc) · 976 Bytes

LaunchDarklyApi::StageOutput

Properties

Name Type Description Notes
_id String The ID of this stage
name String The stage name [optional]
conditions Array<ConditionOutput> An array of conditions for the stage
action ActionOutput
_execution ExecutionOutput

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::StageOutput.new(
  _id: 12ab3c45de678910abc12345,
  name: 10% rollout on day 1,
  conditions: [{&quot;_execution&quot;:{&quot;status&quot;:&quot;completed&quot;},&quot;id&quot;:&quot;12ab3c45de678910abc12345&quot;,&quot;kind&quot;:&quot;schedule&quot;,&quot;scheduleKind&quot;:&quot;relative&quot;,&quot;waitDuration&quot;:2,&quot;waitDurationUnit&quot;:&quot;calendarDay&quot;}],
  action: null,
  _execution: null
)