| Name | Type | Description | Notes |
|---|---|---|---|
| Name | string | The name of the integration configuration | |
| Enabled | Pointer to bool | Whether the integration configuration is enabled. If omitted, defaults to true | [optional] |
| Tags | Pointer to []string | Tags for the integration | [optional] |
| ConfigValues | map[string]interface{} | 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. | |
| CapabilityConfig | Pointer to CapabilityConfigPost | [optional] |
func NewIntegrationConfigurationPost(name string, configValues map[string]interface{}, ) *IntegrationConfigurationPost
NewIntegrationConfigurationPost instantiates a new IntegrationConfigurationPost object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewIntegrationConfigurationPostWithDefaults() *IntegrationConfigurationPost
NewIntegrationConfigurationPostWithDefaults instantiates a new IntegrationConfigurationPost object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *IntegrationConfigurationPost) GetName() string
GetName returns the Name field if non-nil, zero value otherwise.
func (o *IntegrationConfigurationPost) GetNameOk() (*string, bool)
GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntegrationConfigurationPost) SetName(v string)
SetName sets Name field to given value.
func (o *IntegrationConfigurationPost) GetEnabled() bool
GetEnabled returns the Enabled field if non-nil, zero value otherwise.
func (o *IntegrationConfigurationPost) GetEnabledOk() (*bool, bool)
GetEnabledOk returns a tuple with the Enabled field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntegrationConfigurationPost) SetEnabled(v bool)
SetEnabled sets Enabled field to given value.
func (o *IntegrationConfigurationPost) HasEnabled() bool
HasEnabled returns a boolean if a field has been set.
func (o *IntegrationConfigurationPost) GetTags() []string
GetTags returns the Tags field if non-nil, zero value otherwise.
func (o *IntegrationConfigurationPost) GetTagsOk() (*[]string, bool)
GetTagsOk returns a tuple with the Tags field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntegrationConfigurationPost) SetTags(v []string)
SetTags sets Tags field to given value.
func (o *IntegrationConfigurationPost) HasTags() bool
HasTags returns a boolean if a field has been set.
func (o *IntegrationConfigurationPost) GetConfigValues() map[string]interface{}
GetConfigValues returns the ConfigValues field if non-nil, zero value otherwise.
func (o *IntegrationConfigurationPost) GetConfigValuesOk() (*map[string]interface{}, bool)
GetConfigValuesOk returns a tuple with the ConfigValues field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntegrationConfigurationPost) SetConfigValues(v map[string]interface{})
SetConfigValues sets ConfigValues field to given value.
func (o *IntegrationConfigurationPost) GetCapabilityConfig() CapabilityConfigPost
GetCapabilityConfig returns the CapabilityConfig field if non-nil, zero value otherwise.
func (o *IntegrationConfigurationPost) GetCapabilityConfigOk() (*CapabilityConfigPost, bool)
GetCapabilityConfigOk returns a tuple with the CapabilityConfig field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *IntegrationConfigurationPost) SetCapabilityConfig(v CapabilityConfigPost)
SetCapabilityConfig sets CapabilityConfig field to given value.
func (o *IntegrationConfigurationPost) HasCapabilityConfig() bool
HasCapabilityConfig returns a boolean if a field has been set.