class Google::Apis::ComputeV1::InterconnectLocationRegionInfo
Information about any potential InterconnectAttachments between an Interconnect
at a specific InterconnectLocation
, and a specific Cloud Region
.
Attributes
expected_rtt_ms[RW]
Expected round-trip time in milliseconds, from this InterconnectLocation
to a VM in this region. Corresponds to the JSON property `expectedRttMs` @return [Fixnum]
location_presence[RW]
Identifies the network presence of this location. Corresponds to the JSON property `locationPresence` @return [String]
region[RW]
URL for the region of this location. Corresponds to the JSON property `region` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 17538 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/compute_v1/classes.rb, line 17543 def update!(**args) @expected_rtt_ms = args[:expected_rtt_ms] if args.key?(:expected_rtt_ms) @location_presence = args[:location_presence] if args.key?(:location_presence) @region = args[:region] if args.key?(:region) end