InterconnectAttachmentGroup

An interconnect attachment group resource allows customers to create, analyze, and expand highly available deployments.

JSON representation
{
  "kind": string,
  "id": string,
  "creationTimestamp": string,
  "name": string,
  "description": string,
  "selfLink": string,
  "etag": string,
  "attachments": {
    string: {
      object (Attachment)
    },
    ...
  },
  "interconnectGroup": string,
  "intent": {
    object (Intent)
  },
  "logicalStructure": {
    object (LogicalStructure)
  },
  "configured": {
    object (Configured)
  }
}
Fields
kind

string

[Output Only] Type of the resource. Always compute#interconnectAttachmentGroup.

id

string (uint64 format)

[Output Only] The unique identifier for the resource type. The server generates this identifier.

creationTimestamp

string

[Output Only] Creation timestamp in RFC3339 text format.

name

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.

description

string

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

etag

string

Opaque system-generated token that uniquely identifies the configuration. If provided when patching a configuration in update mode, the provided token must match the current token or the update is rejected. This provides a reliable means of doing read-modify-write (optimistic locking) as described by AIP 154.

attachments

map (key: string, value: object (Attachment))

Attachments in the AttachmentGroup. Keys are arbitrary user-specified strings. Users are encouraged, but not required, to use their preferred format for resource links as keys. Note that there are add-members and remove-members methods in gcloud. The size of this map is limited by an "Attachments per group" quota.

interconnectGroup

string

The URL of an InterconnectGroup that groups these Attachments' Interconnects. Customers do not need to set this unless directed by Trusted Cloud Support.

intent

object (Intent)

logicalStructure

object (LogicalStructure)

configured

object (Configured)

Attachment

An Attachment in this AttachmentGroup.

JSON representation
{
  "attachment": string
}
Fields
attachment

string

LogicalStructure

[Output Only] An analysis of the logical layout of Attachments in this group. Every Attachment in the group is shown once in this structure.

JSON representation
{
  "regions": [
    {
      object (Region)
    }
  ]
}
Fields
regions[]

object (Region)

Region

[Output Only] The regions Attachments in this group are in.

JSON representation
{
  "region": string,
  "metros": [
    {
      object (Metro)
    }
  ]
}
Fields
region

string

[Output Only] The name of a region, like "us-central1".

metros[]

object (Metro)

Metro

[Output Only] The metros of Attachments in this group in this region.

JSON representation
{
  "metro": string,
  "facilities": [
    {
      object (Facility)
    }
  ]
}
Fields
metro

string

[Output Only] The name of the metro, as a three-letter lowercase string like "iad". This is the first component of the location of an Interconnect.

facilities[]

object (Facility)

Facility

[Output Only] The facilities used for this group's Attachments' Interconnects.

JSON representation
{
  "facility": string,
  "zones": [
    {
      object (Zone)
    }
  ]
}
Fields
facility

string

[Output Only] The name of a facility, like "iad-1234".

zones[]

object (Zone)

Zone

[Output Only] The zones that Attachments in this group are present in, in the given facilities. This is inherited from their Interconnects.

JSON representation
{
  "zone": string,
  "attachments": [
    string
  ]
}
Fields
zone

string

[Output Only] The name of a zone, either "zone1" or "zone2".

attachments[]

string

[Output Only] URLs of Attachments in the given zone, to the given region, on Interconnects in the given facility and metro. Every Attachment in the AG has such an entry.