Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.94 KB

File metadata and controls

38 lines (29 loc) · 1.94 KB

IntegrationConfigurationsRep

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources
id str The unique identifier for this integration configuration
name str A human-friendly name for the integration
created_at int [optional]
integration_key str The type of integration [optional]
tags List[str] An array of tags for this integration [optional]
enabled bool Whether the integration is currently active [optional]
access Access [optional]
config_values Dict[str, 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

from launchdarkly_api.models.integration_configurations_rep import IntegrationConfigurationsRep

# TODO update the JSON string below
json = "{}"
# create an instance of IntegrationConfigurationsRep from a JSON string
integration_configurations_rep_instance = IntegrationConfigurationsRep.from_json(json)
# print the JSON string representation of the object
print(IntegrationConfigurationsRep.to_json())

# convert the object into a dict
integration_configurations_rep_dict = integration_configurations_rep_instance.to_dict()
# create an instance of IntegrationConfigurationsRep from a dict
integration_configurations_rep_from_dict = IntegrationConfigurationsRep.from_dict(integration_configurations_rep_dict)

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