Show / Hide Table of Contents

Class BackupConfiguration

Database instance backup configuration.

Inheritance
System.Object
BackupConfiguration
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class BackupConfiguration : IDirectResponseSchema

Properties

BackupRetentionSettings

Backup retention settings.

Declaration
[JsonProperty("backupRetentionSettings")]
public virtual BackupRetentionSettings BackupRetentionSettings { get; set; }
Property Value
Type Description
BackupRetentionSettings

BinaryLogEnabled

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

Declaration
[JsonProperty("binaryLogEnabled")]
public virtual bool? BinaryLogEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Enabled

Whether this configuration is enabled.

Declaration
[JsonProperty("enabled")]
public virtual bool? Enabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Kind

This is always sql#backupConfiguration.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Location

Location of the backup

Declaration
[JsonProperty("location")]
public virtual string Location { get; set; }
Property Value
Type Description
System.String

PointInTimeRecoveryEnabled

(Postgres only) Whether point in time recovery is enabled.

Declaration
[JsonProperty("pointInTimeRecoveryEnabled")]
public virtual bool? PointInTimeRecoveryEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ReplicationLogArchivingEnabled

Reserved for future use.

Declaration
[JsonProperty("replicationLogArchivingEnabled")]
public virtual bool? ReplicationLogArchivingEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

StartTime

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

Declaration
[JsonProperty("startTime")]
public virtual string StartTime { get; set; }
Property Value
Type Description
System.String

TransactionLogRetentionDays

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

Declaration
[JsonProperty("transactionLogRetentionDays")]
public virtual int? TransactionLogRetentionDays { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
In This Article
Back to top