| Name | Type | Description | Notes |
|---|---|---|---|
| name | String | The name of the integration configuration | |
| enabled | Boolean | Whether the integration configuration is enabled. If omitted, defaults to true | [optional] |
| tags | Array<String> | Tags for the integration | [optional] |
| config_values | Hash<String, Object> | The unique set of fields required to configure the integration. Refer to the <code>formVariables</code> field in the corresponding <code>manifest.json</code> at https://github.com/launchdarkly/integration-framework/tree/main/integrations for a full list of fields for the integration you wish to configure. | |
| capability_config | CapabilityConfigPost | [optional] |
require 'launchdarkly_api'
instance = LaunchDarklyApi::IntegrationConfigurationPost.new(
name: Example integration configuration,
enabled: true,
tags: ["ops"],
config_values: {"optional":"an optional property","required":"the required property","url":"https://example.com"},
capability_config: null
)