Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.31 KB

File metadata and controls

24 lines (18 loc) · 1.31 KB

LaunchDarklyApi::ViewLinkRequestSegmentIdentifiers

Properties

Name Type Description Notes
segment_identifiers Array<ViewLinkRequestSegmentIdentifier> Identifiers of the segments to link/unlink (environmentId and segmentKey)
filter String Optional filter string to determine which resources should be linked. Resources only need to match either the filter or explicitly-listed keys to be linked (union). Uses the same queryfilter syntax as the segments list endpoint. Supported filters for segments: query, tags, keys, excludedKeys, unbounded, external, view, type [optional]
environment_id String Required when using filter for segment resources. Specifies which environment to query for segments matching the filter. Ignored when only using explicit segmentIdentifiers (since each identifier contains its own environmentId). [optional]
comment String Optional comment for the link/unlink operation [optional][default to '']

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ViewLinkRequestSegmentIdentifiers.new(
  segment_identifiers: null,
  filter: tags anyOf [&quot;backend&quot;],
  environment_id: null,
  comment: null
)