Show / Hide Table of Contents

Class CloneContext

Database instance clone context.

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

Properties

BinLogCoordinates

Binary log coordinates, if specified, identify the position up to which the source instance is cloned. If not specified, the source instance is cloned up to the most recent binary log coordinates.

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

DestinationInstanceName

Name of the Cloud SQL instance to be created as a clone.

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

ETag

The ETag of the item.

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

Kind

This is always sql#cloneContext.

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

PitrTimestampMs

Reserved for future use.

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

PointInTime

Timestamp, if specified, identifies the time to which the source instance is cloned.

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

Implements

IDirectResponseSchema
In This Article
Back to top