Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 696 Bytes

IntegrationDeliveryConfigurationPost.md

File metadata and controls

24 lines (18 loc) · 696 Bytes

LaunchDarklyApi::IntegrationDeliveryConfigurationPost

Properties

Name Type Description Notes
on Boolean Whether the delivery configuration is active. Default value is false. [optional]
config Hash<String, Object>
tags Array<String> Tags to associate with the integration [optional]
name String Name to identify the integration [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::IntegrationDeliveryConfigurationPost.new(
  on: false,
  config: null,
  tags: [&quot;example-tag&quot;],
  name: Sample integration
)