Class: Google::Apis::ComputeAlpha::InterconnectLocationCrossSiteInterconnectInfo
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectLocationCrossSiteInterconnectInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Information about any potential WireGroups between an Interconnect at a specific InterconnectLocation, and an Interconnect in another metro.
Instance Attribute Summary collapse
-
#city ⇒ String
Metropolitan area designator Corresponds to the JSON property
city
. -
#max_single_flow_gbps ⇒ Fixnum
The maximum gbps for a single flow to this metro.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectLocationCrossSiteInterconnectInfo
constructor
A new instance of InterconnectLocationCrossSiteInterconnectInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectLocationCrossSiteInterconnectInfo
Returns a new instance of InterconnectLocationCrossSiteInterconnectInfo.
26814 26815 26816 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26814 def initialize(**args) update!(**args) end |
Instance Attribute Details
#city ⇒ String
Metropolitan area designator
Corresponds to the JSON property city
26806 26807 26808 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26806 def city @city end |
#max_single_flow_gbps ⇒ Fixnum
The maximum gbps for a single flow to this metro. This limits the total
bandwidth which may be configured per wire.
Corresponds to the JSON property maxSingleFlowGbps
26812 26813 26814 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26812 def max_single_flow_gbps @max_single_flow_gbps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26819 26820 26821 26822 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26819 def update!(**args) @city = args[:city] if args.key?(:city) @max_single_flow_gbps = args[:max_single_flow_gbps] if args.key?(:max_single_flow_gbps) end |