Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.72 KB

File metadata and controls

33 lines (24 loc) · 1.72 KB

IntegrationConfigurationPost

Properties

Name Type Description Notes
name str The name of the integration configuration
enabled bool Whether the integration configuration is enabled. If omitted, defaults to true [optional]
tags List[str] Tags for the integration [optional]
config_values Dict[str, 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]

Example

from launchdarkly_api.models.integration_configuration_post import IntegrationConfigurationPost

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

# convert the object into a dict
integration_configuration_post_dict = integration_configuration_post_instance.to_dict()
# create an instance of IntegrationConfigurationPost from a dict
integration_configuration_post_from_dict = IntegrationConfigurationPost.from_dict(integration_configuration_post_dict)

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