Class: Google::Apis::ComputeV1::InterconnectLocation

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb

Overview

Represents an InterconnectLocations resource. The InterconnectLocations resource describes the locations where you can connect to Google's networks. For more information, see Colocation Facilities.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ InterconnectLocation

Returns a new instance of InterconnectLocation



10062
10063
10064
# File 'generated/google/apis/compute_v1/classes.rb', line 10062

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#addressString

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

Returns:

  • (String)


9986
9987
9988
# File 'generated/google/apis/compute_v1/classes.rb', line 9986

def address
  @address
end

#availability_zoneString

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

Returns:

  • (String)


9993
9994
9995
# File 'generated/google/apis/compute_v1/classes.rb', line 9993

def availability_zone
  @availability_zone
end

#cityString

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

Returns:

  • (String)


9999
10000
10001
# File 'generated/google/apis/compute_v1/classes.rb', line 9999

def city
  @city
end

#continentString

[Output Only] Continent for this location. Corresponds to the JSON property continent

Returns:

  • (String)


10004
10005
10006
# File 'generated/google/apis/compute_v1/classes.rb', line 10004

def continent
  @continent
end

#creation_timestampString

[Output Only] Creation timestamp in RFC3339 text format. Corresponds to the JSON property creationTimestamp

Returns:

  • (String)


10009
10010
10011
# File 'generated/google/apis/compute_v1/classes.rb', line 10009

def creation_timestamp
  @creation_timestamp
end

#descriptionString

[Output Only] An optional description of the resource. Corresponds to the JSON property description

Returns:

  • (String)


10014
10015
10016
# File 'generated/google/apis/compute_v1/classes.rb', line 10014

def description
  @description
end

#facility_providerString

[Output Only] The name of the provider for this facility (e.g., EQUINIX). Corresponds to the JSON property facilityProvider

Returns:

  • (String)


10019
10020
10021
# File 'generated/google/apis/compute_v1/classes.rb', line 10019

def facility_provider
  @facility_provider
end

#facility_provider_facility_idString

[Output Only] A provider-assigned Identifier for this facility (e.g., Ashburn- DC1). Corresponds to the JSON property facilityProviderFacilityId

Returns:

  • (String)


10025
10026
10027
# File 'generated/google/apis/compute_v1/classes.rb', line 10025

def facility_provider_facility_id
  @facility_provider_facility_id
end

#idFixnum

[Output Only] The unique identifier for the resource. This identifier is defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


10031
10032
10033
# File 'generated/google/apis/compute_v1/classes.rb', line 10031

def id
  @id
end

#kindString

[Output Only] Type of the resource. Always compute#interconnectLocation for interconnect locations. Corresponds to the JSON property kind

Returns:

  • (String)


10037
10038
10039
# File 'generated/google/apis/compute_v1/classes.rb', line 10037

def kind
  @kind
end

#nameString

[Output Only] Name of the resource. Corresponds to the JSON property name

Returns:

  • (String)


10042
10043
10044
# File 'generated/google/apis/compute_v1/classes.rb', line 10042

def name
  @name
end

#peeringdb_facility_idString

[Output Only] The peeringdb identifier for this facility (corresponding with a netfac type in peeringdb). Corresponds to the JSON property peeringdbFacilityId

Returns:

  • (String)


10048
10049
10050
# File 'generated/google/apis/compute_v1/classes.rb', line 10048

def peeringdb_facility_id
  @peeringdb_facility_id
end

#region_infosArray<Google::Apis::ComputeV1::InterconnectLocationRegionInfo>

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



10055
10056
10057
# File 'generated/google/apis/compute_v1/classes.rb', line 10055

def region_infos
  @region_infos
end

[Output Only] Server-defined URL for the resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


10060
10061
10062
# File 'generated/google/apis/compute_v1/classes.rb', line 10060

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10067
10068
10069
10070
10071
10072
10073
10074
10075
10076
10077
10078
10079
10080
10081
10082
# File 'generated/google/apis/compute_v1/classes.rb', line 10067

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @availability_zone = args[:availability_zone] if args.key?(:availability_zone)
  @city = args[:city] if args.key?(:city)
  @continent = args[:continent] if args.key?(:continent)
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
  @description = args[:description] if args.key?(:description)
  @facility_provider = args[:facility_provider] if args.key?(:facility_provider)
  @facility_provider_facility_id = args[:facility_provider_facility_id] if args.key?(:facility_provider_facility_id)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @peeringdb_facility_id = args[:peeringdb_facility_id] if args.key?(:peeringdb_facility_id)
  @region_infos = args[:region_infos] if args.key?(:region_infos)
  @self_link = args[:self_link] if args.key?(:self_link)
end