Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.36 KB

File metadata and controls

28 lines (21 loc) · 1.36 KB

IntegrationConfigurationPost

Properties

Name Type Description Notes
name string The name of the integration configuration [default to undefined]
enabled boolean Whether the integration configuration is enabled. If omitted, defaults to true [optional] [default to undefined]
tags Array<string> Tags for the integration [optional] [default to undefined]
configValues { [key: string]: any; } 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. [default to undefined]
capabilityConfig CapabilityConfigPost [optional] [default to undefined]

Example

import { IntegrationConfigurationPost } from 'launchdarkly-api-typescript';

const instance: IntegrationConfigurationPost = {
    name,
    enabled,
    tags,
    configValues,
    capabilityConfig,
};

[Back to Model list] [Back to API list] [Back to README]