Skip to content

Latest commit

 

History

History
82 lines (45 loc) · 2.53 KB

DatabaseConfiguration.md

File metadata and controls

82 lines (45 loc) · 2.53 KB

DatabaseConfiguration

Properties

Name Type Description Notes
DatabaseType Pointer to DatabaseTypeEnum [optional]
Version Pointer to []DatabaseVersionMode [optional]

Methods

NewDatabaseConfiguration

func NewDatabaseConfiguration() *DatabaseConfiguration

NewDatabaseConfiguration instantiates a new DatabaseConfiguration 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

NewDatabaseConfigurationWithDefaults

func NewDatabaseConfigurationWithDefaults() *DatabaseConfiguration

NewDatabaseConfigurationWithDefaults instantiates a new DatabaseConfiguration 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

GetDatabaseType

func (o *DatabaseConfiguration) GetDatabaseType() DatabaseTypeEnum

GetDatabaseType returns the DatabaseType field if non-nil, zero value otherwise.

GetDatabaseTypeOk

func (o *DatabaseConfiguration) GetDatabaseTypeOk() (*DatabaseTypeEnum, bool)

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

SetDatabaseType

func (o *DatabaseConfiguration) SetDatabaseType(v DatabaseTypeEnum)

SetDatabaseType sets DatabaseType field to given value.

HasDatabaseType

func (o *DatabaseConfiguration) HasDatabaseType() bool

HasDatabaseType returns a boolean if a field has been set.

GetVersion

func (o *DatabaseConfiguration) GetVersion() []DatabaseVersionMode

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *DatabaseConfiguration) GetVersionOk() (*[]DatabaseVersionMode, bool)

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

SetVersion

func (o *DatabaseConfiguration) SetVersion(v []DatabaseVersionMode)

SetVersion sets Version field to given value.

HasVersion

func (o *DatabaseConfiguration) HasVersion() bool

HasVersion returns a boolean if a field has been set.

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