Show / Hide Table of Contents

Class LocationPreference

Preferred location. This specifies where a Cloud SQL instance is located, either in a specific Compute Engine zone, or co-located with an App Engine application. Note that if the preferred location is not available, the instance will be located as close as possible within the region. Only one location may be specified.

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

Properties

ETag

The ETag of the item.

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

FollowGaeApplication

The App Engine application to follow, it must be in the same region as the Cloud SQL instance.

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

Kind

This is always sql#locationPreference.

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

SecondaryZone

The preferred Compute Engine zone for the secondary/failover (for example: us-central1-a, us-central1-b, etc.). Reserved for future use.

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

Zone

The preferred Compute Engine zone (for example: us-central1-a, us-central1-b, etc.).

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

Implements

IDirectResponseSchema
In This Article
Back to top