[][src]Struct google_compute1::InterconnectLocation

pub struct InterconnectLocation {
    pub status: Option<String>,
    pub city: Option<String>,
    pub kind: Option<String>,
    pub availability_zone: Option<String>,
    pub description: Option<String>,
    pub peeringdb_facility_id: Option<String>,
    pub creation_timestamp: Option<String>,
    pub continent: Option<String>,
    pub region_infos: Option<Vec<InterconnectLocationRegionInfo>>,
    pub facility_provider_facility_id: Option<String>,
    pub address: Option<String>,
    pub facility_provider: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub name: Option<String>,
}

Represents an Interconnect Attachment (VLAN) Location resource.

You can use this resource to find location details about an Interconnect attachment (VLAN). For more information about interconnect attachments, read Creating VLAN Attachments.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

status: Option<String>

[Output Only] The status of this InterconnectLocation, which can take one of the following values:

  • CLOSED: The InterconnectLocation is closed and is unavailable for provisioning new Interconnects.
  • AVAILABLE: The InterconnectLocation is available for provisioning new Interconnects.
city: Option<String>

[Output Only] Metropolitan area designator that indicates which city an interconnect is located. For example: "Chicago, IL", "Amsterdam, Netherlands".

kind: Option<String>

[Output Only] Type of the resource. Always compute#interconnectLocation for interconnect locations.

availability_zone: Option<String>

[Output Only] Availability zone for this InterconnectLocation. Within a metropolitan area (metro), maintenance will not be simultaneously scheduled in more than one availability zone. Example: "zone1" or "zone2".

description: Option<String>

[Output Only] An optional description of the resource.

peeringdb_facility_id: Option<String>

[Output Only] The peeringdb identifier for this facility (corresponding with a netfac type in peeringdb).

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

continent: Option<String>

[Output Only] Continent for this location, which can take one of the following values:

  • AFRICA
  • ASIA_PAC
  • EUROPE
  • NORTH_AMERICA
  • SOUTH_AMERICA
region_infos: Option<Vec<InterconnectLocationRegionInfo>>

[Output Only] A list of InterconnectLocation.RegionInfo objects, that describe parameters pertaining to the relation between this InterconnectLocation and various Google Cloud regions.

facility_provider_facility_id: Option<String>

[Output Only] A provider-assigned Identifier for this facility (e.g., Ashburn-DC1).

address: Option<String>

[Output Only] The postal address of the Point of Presence, each line in the address is separated by a newline character.

facility_provider: Option<String>

[Output Only] The name of the provider for this facility (e.g., EQUINIX).

id: Option<String>

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

self_link: Option<String>

[Output Only] Server-defined URL for the resource.

name: Option<String>

[Output Only] Name of the resource.

Trait Implementations

impl Resource for InterconnectLocation[src]

impl ResponseResult for InterconnectLocation[src]

impl Default for InterconnectLocation[src]

impl Clone for InterconnectLocation[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for InterconnectLocation[src]

impl Serialize for InterconnectLocation[src]

impl<'de> Deserialize<'de> for InterconnectLocation[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]