[][src]Struct google_compute1::Interconnect

pub struct Interconnect {
    pub link_type: Option<String>,
    pub customer_name: Option<String>,
    pub circuit_infos: Option<Vec<InterconnectCircuitInfo>>,
    pub noc_contact_email: Option<String>,
    pub operational_status: Option<String>,
    pub creation_timestamp: Option<String>,
    pub id: Option<String>,
    pub description: Option<String>,
    pub interconnect_type: Option<String>,
    pub interconnect_attachments: Option<Vec<String>>,
    pub kind: Option<String>,
    pub provisioned_link_count: Option<i32>,
    pub google_ip_address: Option<String>,
    pub google_reference_id: Option<String>,
    pub expected_outages: Option<Vec<InterconnectOutageNotification>>,
    pub peer_ip_address: Option<String>,
    pub name: Option<String>,
    pub admin_enabled: Option<bool>,
    pub state: Option<String>,
    pub location: Option<String>,
    pub self_link: Option<String>,
    pub requested_link_count: Option<i32>,
}

Represents an Interconnect resource.

An Interconnect resource is a dedicated connection between the GCP network and your on-premises network. For more information, read the Dedicated Interconnect Overview. (== resource_for v1.interconnects ==) (== resource_for beta.interconnects ==)

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

link_type: Option<String>

Type of link requested, which can take one of the following values:

  • LINK_TYPE_ETHERNET_10G_LR: A 10G Ethernet with LR optics
  • LINK_TYPE_ETHERNET_100G_LR: A 100G Ethernet with LR optics. Note that this field indicates the speed of each of the links in the bundle, not the speed of the entire bundle.
customer_name: Option<String>

Customer name, to put in the Letter of Authorization as the party authorized to request a crossconnect.

circuit_infos: Option<Vec<InterconnectCircuitInfo>>

[Output Only] A list of CircuitInfo objects, that describe the individual circuits in this LAG.

noc_contact_email: Option<String>

Email address to contact the customer NOC for operations and maintenance notifications regarding this Interconnect. If specified, this will be used for notifications in addition to all other forms described, such as Stackdriver logs alerting and Cloud Notifications.

operational_status: Option<String>

[Output Only] The current status of this Interconnect's functionality, which can take one of the following values:

  • OS_ACTIVE: A valid Interconnect, which is turned up and is ready to use. Attachments may be provisioned on this Interconnect.
  • OS_UNPROVISIONED: An Interconnect that has not completed turnup. No attachments may be provisioned on this Interconnect.
  • OS_UNDER_MAINTENANCE: An Interconnect that is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

id: Option<String>

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

description: Option<String>

An optional description of this resource. Provide this property when you create the resource.

interconnect_type: Option<String>

Type of interconnect, which can take one of the following values:

  • PARTNER: A partner-managed interconnection shared between customers though a partner.
  • DEDICATED: A dedicated physical interconnection with the customer. Note that a value IT_PRIVATE has been deprecated in favor of DEDICATED.
interconnect_attachments: Option<Vec<String>>

[Output Only] A list of the URLs of all InterconnectAttachments configured to use this Interconnect.

kind: Option<String>

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

provisioned_link_count: Option<i32>

[Output Only] Number of links actually provisioned in this interconnect.

google_ip_address: Option<String>

[Output Only] IP address configured on the Google side of the Interconnect link. This can be used only for ping tests.

google_reference_id: Option<String>

[Output Only] Google reference ID to be used when raising support tickets with Google or otherwise to debug backend connectivity issues.

expected_outages: Option<Vec<InterconnectOutageNotification>>

[Output Only] A list of outages expected for this Interconnect.

peer_ip_address: Option<String>

[Output Only] IP address configured on the customer side of the Interconnect link. The customer should configure this IP address during turnup when prompted by Google NOC. This can be used only for ping tests.

name: Option<String>

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

admin_enabled: Option<bool>

Administrative status of the interconnect. When this is set to true, the Interconnect is functional and can carry traffic. When set to false, no packets can be carried over the interconnect and no BGP routes are exchanged over it. By default, the status is set to true.

state: Option<String>

[Output Only] The current state of Interconnect functionality, which can take one of the following values:

  • ACTIVE: The Interconnect is valid, turned up and ready to use. Attachments may be provisioned on this Interconnect.
  • UNPROVISIONED: The Interconnect has not completed turnup. No attachments may be provisioned on this Interconnect.
  • UNDER_MAINTENANCE: The Interconnect is undergoing internal maintenance. No attachments may be provisioned or updated on this Interconnect.
location: Option<String>

URL of the InterconnectLocation object that represents where this connection is to be provisioned.

self_link: Option<String>

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

requested_link_count: Option<i32>

Target number of physical links in the link bundle, as requested by the customer.

Trait Implementations

impl Resource for Interconnect[src]

impl ResponseResult for Interconnect[src]

impl RequestValue for Interconnect[src]

impl Default for Interconnect[src]

impl Clone for Interconnect[src]

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

Performs copy-assignment from source. Read more

impl Debug for Interconnect[src]

impl Serialize for Interconnect[src]

impl<'de> Deserialize<'de> for Interconnect[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]