Skip to content

Latest commit

 

History

History
191 lines (104 loc) · 5.55 KB

CreateDataSourceVM.md

File metadata and controls

191 lines (104 loc) · 5.55 KB

CreateDataSourceVM

Properties

Name Type Description Notes
Name Pointer to NullableString [optional]
ConnectionString string
SubscriptionId string
ConnectionType Pointer to DataSourceConnectionType [optional]
SelectCommands Pointer to []DataSourceSelectCommandVM [optional]
T string

Methods

NewCreateDataSourceVM

func NewCreateDataSourceVM(connectionString string, subscriptionId string, t string, ) *CreateDataSourceVM

NewCreateDataSourceVM instantiates a new CreateDataSourceVM 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

NewCreateDataSourceVMWithDefaults

func NewCreateDataSourceVMWithDefaults() *CreateDataSourceVM

NewCreateDataSourceVMWithDefaults instantiates a new CreateDataSourceVM 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

GetName

func (o *CreateDataSourceVM) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *CreateDataSourceVM) 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.

SetName

func (o *CreateDataSourceVM) SetName(v string)

SetName sets Name field to given value.

HasName

func (o *CreateDataSourceVM) HasName() bool

HasName returns a boolean if a field has been set.

SetNameNil

func (o *CreateDataSourceVM) SetNameNil(b bool)

SetNameNil sets the value for Name to be an explicit nil

UnsetName

func (o *CreateDataSourceVM) UnsetName()

UnsetName ensures that no value is present for Name, not even an explicit nil

GetConnectionString

func (o *CreateDataSourceVM) GetConnectionString() string

GetConnectionString returns the ConnectionString field if non-nil, zero value otherwise.

GetConnectionStringOk

func (o *CreateDataSourceVM) GetConnectionStringOk() (*string, bool)

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

SetConnectionString

func (o *CreateDataSourceVM) SetConnectionString(v string)

SetConnectionString sets ConnectionString field to given value.

GetSubscriptionId

func (o *CreateDataSourceVM) GetSubscriptionId() string

GetSubscriptionId returns the SubscriptionId field if non-nil, zero value otherwise.

GetSubscriptionIdOk

func (o *CreateDataSourceVM) GetSubscriptionIdOk() (*string, bool)

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

SetSubscriptionId

func (o *CreateDataSourceVM) SetSubscriptionId(v string)

SetSubscriptionId sets SubscriptionId field to given value.

GetConnectionType

func (o *CreateDataSourceVM) GetConnectionType() DataSourceConnectionType

GetConnectionType returns the ConnectionType field if non-nil, zero value otherwise.

GetConnectionTypeOk

func (o *CreateDataSourceVM) GetConnectionTypeOk() (*DataSourceConnectionType, bool)

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

SetConnectionType

func (o *CreateDataSourceVM) SetConnectionType(v DataSourceConnectionType)

SetConnectionType sets ConnectionType field to given value.

HasConnectionType

func (o *CreateDataSourceVM) HasConnectionType() bool

HasConnectionType returns a boolean if a field has been set.

GetSelectCommands

func (o *CreateDataSourceVM) GetSelectCommands() []DataSourceSelectCommandVM

GetSelectCommands returns the SelectCommands field if non-nil, zero value otherwise.

GetSelectCommandsOk

func (o *CreateDataSourceVM) GetSelectCommandsOk() (*[]DataSourceSelectCommandVM, bool)

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

SetSelectCommands

func (o *CreateDataSourceVM) SetSelectCommands(v []DataSourceSelectCommandVM)

SetSelectCommands sets SelectCommands field to given value.

HasSelectCommands

func (o *CreateDataSourceVM) HasSelectCommands() bool

HasSelectCommands returns a boolean if a field has been set.

SetSelectCommandsNil

func (o *CreateDataSourceVM) SetSelectCommandsNil(b bool)

SetSelectCommandsNil sets the value for SelectCommands to be an explicit nil

UnsetSelectCommands

func (o *CreateDataSourceVM) UnsetSelectCommands()

UnsetSelectCommands ensures that no value is present for SelectCommands, not even an explicit nil

GetT

func (o *CreateDataSourceVM) GetT() string

GetT returns the T field if non-nil, zero value otherwise.

GetTOk

func (o *CreateDataSourceVM) GetTOk() (*string, bool)

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

SetT

func (o *CreateDataSourceVM) SetT(v string)

SetT sets T field to given value.

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