Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 822 Bytes

DestinationPost.md

File metadata and controls

24 lines (18 loc) · 822 Bytes

LaunchDarklyApi::DestinationPost

Properties

Name Type Description Notes
name String A human-readable name for your Data Export destination [optional]
kind String The type of Data Export destination [optional]
config Object An object with the configuration parameters required for the destination type [optional]
on Boolean Whether the export is on. Displayed as the integration status in the LaunchDarkly UI. [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::DestinationPost.new(
  name: example-destination,
  kind: google-pubsub,
  config: {"project":"test-prod","topic":"ld-pubsub-test-192301"},
  on: true
)