Skip to content

Latest commit

 

History

History
98 lines (53 loc) · 3.16 KB

BootstrapParams.md

File metadata and controls

98 lines (53 loc) · 3.16 KB

BootstrapParams

Properties

Name Type Description Notes
AllowBootstrap Pointer to bool WARNING: This is a preview API that could change. Allow backup on whole database when only set of tables require bootstrap [optional]
BackupRequestParams BootstrapBackupParams
Tables []string Source Universe table IDs that need bootstrapping; must be a subset of tables in the main body

Methods

NewBootstrapParams

func NewBootstrapParams(backupRequestParams BootstrapBackupParams, tables []string, ) *BootstrapParams

NewBootstrapParams instantiates a new BootstrapParams 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

NewBootstrapParamsWithDefaults

func NewBootstrapParamsWithDefaults() *BootstrapParams

NewBootstrapParamsWithDefaults instantiates a new BootstrapParams 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

GetAllowBootstrap

func (o *BootstrapParams) GetAllowBootstrap() bool

GetAllowBootstrap returns the AllowBootstrap field if non-nil, zero value otherwise.

GetAllowBootstrapOk

func (o *BootstrapParams) GetAllowBootstrapOk() (*bool, bool)

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

SetAllowBootstrap

func (o *BootstrapParams) SetAllowBootstrap(v bool)

SetAllowBootstrap sets AllowBootstrap field to given value.

HasAllowBootstrap

func (o *BootstrapParams) HasAllowBootstrap() bool

HasAllowBootstrap returns a boolean if a field has been set.

GetBackupRequestParams

func (o *BootstrapParams) GetBackupRequestParams() BootstrapBackupParams

GetBackupRequestParams returns the BackupRequestParams field if non-nil, zero value otherwise.

GetBackupRequestParamsOk

func (o *BootstrapParams) GetBackupRequestParamsOk() (*BootstrapBackupParams, bool)

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

SetBackupRequestParams

func (o *BootstrapParams) SetBackupRequestParams(v BootstrapBackupParams)

SetBackupRequestParams sets BackupRequestParams field to given value.

GetTables

func (o *BootstrapParams) GetTables() []string

GetTables returns the Tables field if non-nil, zero value otherwise.

GetTablesOk

func (o *BootstrapParams) GetTablesOk() (*[]string, bool)

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

SetTables

func (o *BootstrapParams) SetTables(v []string)

SetTables sets Tables field to given value.

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