Show / Hide Table of Contents

Class RestoreBackupContext

Database instance restore from backup context. Backup context contains source instance id and project id.

Inheritance
System.Object
RestoreBackupContext
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 RestoreBackupContext : IDirectResponseSchema

Properties

BackupRunId

The ID of the backup run to restore from.

Declaration
[JsonProperty("backupRunId")]
public virtual long? BackupRunId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

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

InstanceId

The ID of the instance that the backup was taken from.

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

Kind

This is always sql#restoreBackupContext.

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

Project

The full project ID of the source instance.

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

Implements

IDirectResponseSchema
In This Article
Back to top