Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.28 KB

FlagCopyConfigPost.md

File metadata and controls

26 lines (20 loc) · 1.28 KB

LaunchDarklyApi::FlagCopyConfigPost

Properties

Name Type Description Notes
source FlagCopyConfigEnvironment
target FlagCopyConfigEnvironment
comment String Optional comment [optional]
included_actions Array<String> Optional list of the flag changes to copy from the source environment to the target environment. You may include either <code>includedActions</code> or <code>excludedActions</code>, but not both. If you include neither, then all flag changes will be copied. [optional]
excluded_actions Array<String> Optional list of the flag changes NOT to copy from the source environment to the target environment. You may include either <code>includedActions</code> or <code>excludedActions</code>, but not both. If you include neither, then all flag changes will be copied. [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::FlagCopyConfigPost.new(
  source: null,
  target: null,
  comment: null,
  included_actions: [&quot;updateOn&quot;],
  excluded_actions: [&quot;updateOn&quot;]
)