Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.48 KB

IntegrationConfigurationsRep.md

File metadata and controls

36 lines (30 loc) · 1.48 KB

LaunchDarklyApi::IntegrationConfigurationsRep

Properties

Name Type Description Notes
_links Hash<String, Link> The location and content type of related resources
_id String The unique identifier for this integration configuration
name String A human-friendly name for the integration
_created_at Integer [optional]
_integration_key String The type of integration [optional]
tags Array<String> An array of tags for this integration [optional]
enabled Boolean Whether the integration is currently active [optional]
_access Access [optional]
config_values Hash<String, Object> Details on configuration for an integration of this type. Refer to the <code>formVariables</code> field in the corresponding <code>manifest.json</code> for a full list of fields for each integration. [optional]
capability_config CapabilityConfigRep [optional]

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::IntegrationConfigurationsRep.new(
  _links: null,
  _id: null,
  name: Example Datadog integration,
  _created_at: null,
  _integration_key: datadog,
  tags: [&quot;testing&quot;],
  enabled: null,
  _access: null,
  config_values: null,
  capability_config: null
)