Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.92 KB

SourceCoreConfig.md

File metadata and controls

82 lines (45 loc) · 2.92 KB

SourceCoreConfig

Properties

Name Type Description Notes
SourceDefinitionId string
ConnectionConfiguration interface{} The values required to configure the source. The schema for this must match the schema return by source_definition_specifications/get for the source.

Methods

NewSourceCoreConfig

func NewSourceCoreConfig(sourceDefinitionId string, connectionConfiguration interface{}, ) *SourceCoreConfig

NewSourceCoreConfig instantiates a new SourceCoreConfig 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

NewSourceCoreConfigWithDefaults

func NewSourceCoreConfigWithDefaults() *SourceCoreConfig

NewSourceCoreConfigWithDefaults instantiates a new SourceCoreConfig 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

GetSourceDefinitionId

func (o *SourceCoreConfig) GetSourceDefinitionId() string

GetSourceDefinitionId returns the SourceDefinitionId field if non-nil, zero value otherwise.

GetSourceDefinitionIdOk

func (o *SourceCoreConfig) GetSourceDefinitionIdOk() (*string, bool)

GetSourceDefinitionIdOk returns a tuple with the SourceDefinitionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetSourceDefinitionId

func (o *SourceCoreConfig) SetSourceDefinitionId(v string)

SetSourceDefinitionId sets SourceDefinitionId field to given value.

GetConnectionConfiguration

func (o *SourceCoreConfig) GetConnectionConfiguration() interface{}

GetConnectionConfiguration returns the ConnectionConfiguration field if non-nil, zero value otherwise.

GetConnectionConfigurationOk

func (o *SourceCoreConfig) GetConnectionConfigurationOk() (*interface{}, bool)

GetConnectionConfigurationOk returns a tuple with the ConnectionConfiguration field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetConnectionConfiguration

func (o *SourceCoreConfig) SetConnectionConfiguration(v interface{})

SetConnectionConfiguration sets ConnectionConfiguration field to given value.

SetConnectionConfigurationNil

func (o *SourceCoreConfig) SetConnectionConfigurationNil(b bool)

SetConnectionConfigurationNil sets the value for ConnectionConfiguration to be an explicit nil

UnsetConnectionConfiguration

func (o *SourceCoreConfig) UnsetConnectionConfiguration()

UnsetConnectionConfiguration ensures that no value is present for ConnectionConfiguration, not even an explicit nil

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