Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 1.77 KB

File metadata and controls

38 lines (31 loc) · 1.77 KB

IntegrationConfigurationsRep

Properties

Name Type Description Notes
_links { [key: string]: Link; } The location and content type of related resources [default to undefined]
_id string The unique identifier for this integration configuration [default to undefined]
name string A human-friendly name for the integration [default to undefined]
_createdAt number [optional] [default to undefined]
_integrationKey string The type of integration [optional] [default to undefined]
tags Array<string> An array of tags for this integration [optional] [default to undefined]
enabled boolean Whether the integration is currently active [optional] [default to undefined]
_access Access [optional] [default to undefined]
configValues { [key: string]: any; } 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] [default to undefined]
capabilityConfig CapabilityConfigRep [optional] [default to undefined]

Example

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

const instance: IntegrationConfigurationsRep = {
    _links,
    _id,
    name,
    _createdAt,
    _integrationKey,
    tags,
    enabled,
    _access,
    configValues,
    capabilityConfig,
};

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