Struct google_sqladmin1_beta4::LocationPreference[][src]

pub struct LocationPreference {
    pub kind: Option<String>,
    pub follow_gae_application: Option<String>,
    pub zone: Option<String>,
}

Preferred location. This specifies where a Cloud SQL instance should preferably be 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.

This type is not used in any activity, and only used as part of another schema.

Fields

This is always sql#locationPreference.

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

The preferred Compute Engine zone (e.g. us-centra1-a, us-central1-b, etc.).

Trait Implementations

impl Default for LocationPreference
[src]

Returns the "default value" for a type. Read more

impl Clone for LocationPreference
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LocationPreference
[src]

Formats the value using the given formatter. Read more

impl Part for LocationPreference
[src]

Auto Trait Implementations