Struct gapi_grpc::google::cloud::sql::v1beta4::BackupConfiguration[][src]

pub struct BackupConfiguration {
    pub start_time: String,
    pub enabled: Option<bool>,
    pub kind: String,
    pub binary_log_enabled: Option<bool>,
    pub replication_log_archiving_enabled: Option<bool>,
    pub location: String,
    pub point_in_time_recovery_enabled: Option<bool>,
    pub transaction_log_retention_days: Option<i32>,
    pub backup_retention_settings: Option<BackupRetentionSettings>,
}

Database instance backup configuration.

Fields

start_time: String

Start time for the daily backup configuration in UTC timezone in the 24 hour format - HH:MM.

enabled: Option<bool>

Whether this configuration is enabled.

kind: String

This is always sql#backupConfiguration.

binary_log_enabled: Option<bool>

(MySQL only) Whether binary log is enabled. If backup configuration is disabled, binarylog must be disabled as well.

replication_log_archiving_enabled: Option<bool>

Reserved for future use.

location: String

Location of the backup

point_in_time_recovery_enabled: Option<bool>

Reserved for future use.

transaction_log_retention_days: Option<i32>

The number of days of transaction logs we retain for point in time restore, from 1-7.

backup_retention_settings: Option<BackupRetentionSettings>

Backup retention settings.

Trait Implementations

impl Clone for BackupConfiguration[src]

impl Debug for BackupConfiguration[src]

impl Default for BackupConfiguration[src]

impl Message for BackupConfiguration[src]

impl PartialEq<BackupConfiguration> for BackupConfiguration[src]

impl StructuralPartialEq for BackupConfiguration[src]

Auto Trait Implementations

impl RefUnwindSafe for BackupConfiguration

impl Send for BackupConfiguration

impl Sync for BackupConfiguration

impl Unpin for BackupConfiguration

impl UnwindSafe for BackupConfiguration

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]