CreateRestoreRequest
Properties
Name | Type | Description | Notes |
---|---|---|---|
BackupId | string | The unique ID of the backup you want to restore. | |
RecoveryTargetTime | Pointer to time.Time | If this value is supplied as ISO 8601 timestamp, the backup will be replayed up until the given timestamp. If empty, the backup will be applied completely. | [optional] |
Methods
NewCreateRestoreRequest
func NewCreateRestoreRequest(backupId string, ) *CreateRestoreRequest
NewCreateRestoreRequest instantiates a new CreateRestoreRequest 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
NewCreateRestoreRequestWithDefaults
func NewCreateRestoreRequestWithDefaults() *CreateRestoreRequest
NewCreateRestoreRequestWithDefaults instantiates a new CreateRestoreRequest 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
GetBackupId
func (o *CreateRestoreRequest) GetBackupId() string
GetBackupId returns the BackupId field if non-nil, zero value otherwise.
GetBackupIdOk
func (o *CreateRestoreRequest) GetBackupIdOk() (*string, bool)
GetBackupIdOk returns a tuple with the BackupId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetBackupId
func (o *CreateRestoreRequest) SetBackupId(v string)
SetBackupId sets BackupId field to given value.
GetRecoveryTargetTime
func (o *CreateRestoreRequest) GetRecoveryTargetTime() time.Time
GetRecoveryTargetTime returns the RecoveryTargetTime field if non-nil, zero value otherwise.
GetRecoveryTargetTimeOk
func (o *CreateRestoreRequest) GetRecoveryTargetTimeOk() (*time.Time, bool)
GetRecoveryTargetTimeOk returns a tuple with the RecoveryTargetTime field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
SetRecoveryTargetTime
func (o *CreateRestoreRequest) SetRecoveryTargetTime(v time.Time)
SetRecoveryTargetTime sets RecoveryTargetTime field to given value.
HasRecoveryTargetTime
func (o *CreateRestoreRequest) HasRecoveryTargetTime() bool
HasRecoveryTargetTime returns a boolean if a field has been set.
Last updated