Struct google_sqladmin1_beta4::BackupConfiguration[][src]

pub struct BackupConfiguration {
    pub enabled: Option<bool>,
    pub kind: Option<String>,
    pub replication_log_archiving_enabled: Option<bool>,
    pub binary_log_enabled: Option<bool>,
    pub start_time: Option<String>,
}

Database instance backup configuration.

This type is not used in any activity, and only used as part of another schema.

Fields

Whether this configuration is enabled.

This is always sql#backupConfiguration.

Reserved for future use.

Whether binary log is enabled. If backup configuration is disabled, binary log must be disabled as well.

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

Trait Implementations

impl Default for BackupConfiguration
[src]

Returns the "default value" for a type. Read more

impl Clone for BackupConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BackupConfiguration
[src]

Formats the value using the given formatter. Read more

impl Part for BackupConfiguration
[src]

Auto Trait Implementations