Show / Hide Table of Contents

Class BackupInfo

Information about a backup.

Inheritance
System.Object
BackupInfo
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.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class BackupInfo : IDirectResponseSchema

Properties

Backup

Name of the backup.

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

CreateTime

The time the CreateBackup request was received.

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

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

SourceDatabase

Name of the database the backup was created from.

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

VersionTime

The backup contains an externally consistent copy of source_database at the timestamp specified by version_time. If the CreateBackup request did not specify version_time, the version_time of the backup is equivalent to the create_time.

Declaration
[JsonProperty("versionTime")]
public virtual object VersionTime { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
In This Article
Back to top