Class: Google::Apis::ComputeAlpha::InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers
- 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
[Output Only] Reasons why configuration.topologyCapability.sla differs from intent.topologyCapability. This list is empty if and only if those are the same.
Instance Attribute Summary collapse
-
#blocker_type ⇒ String
Corresponds to the JSON property
blockerType
. -
#documentation_link ⇒ String
[Output Only] The url of Google Cloud public documentation explaining this requirement.
-
#explanation ⇒ String
[Output Only] A human-readable explanation of this requirement and why it's not met.
-
#facilities ⇒ Array<String>
[Output Only] Facilities used to explain this blocker in more detail.
-
#interconnects ⇒ Array<String>
[Output Only] Interconnects used to explain this blocker in more detail.
-
#metros ⇒ Array<String>
[Output Only] Metros used to explain this blocker in more detail.
-
#zones ⇒ Array<String>
[Output Only] Zones used to explain this blocker in more detail.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers
constructor
A new instance of InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers
Returns a new instance of InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.
26125 26126 26127 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26125 def initialize(**args) update!(**args) end |
Instance Attribute Details
#blocker_type ⇒ String
Corresponds to the JSON property blockerType
26086 26087 26088 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26086 def blocker_type @blocker_type end |
#documentation_link ⇒ String
[Output Only] The url of Google Cloud public documentation explaining this
requirement. This is set for every type of requirement.
Corresponds to the JSON property documentationLink
26092 26093 26094 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26092 def documentation_link @documentation_link end |
#explanation ⇒ String
[Output Only] A human-readable explanation of this requirement and why it's
not met. This is set for every type of requirement.
Corresponds to the JSON property explanation
26098 26099 26100 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26098 def explanation @explanation end |
#facilities ⇒ Array<String>
[Output Only] Facilities used to explain this blocker in more detail. Like
physicalStructure.metros.facilities.facility, this is a numeric string like "
5467".
Corresponds to the JSON property facilities
26105 26106 26107 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26105 def facilities @facilities end |
#interconnects ⇒ Array<String>
[Output Only] Interconnects used to explain this blocker in more detail.
Corresponds to the JSON property interconnects
26110 26111 26112 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26110 def interconnects @interconnects end |
#metros ⇒ Array<String>
[Output Only] Metros used to explain this blocker in more detail. These are
three-letter lowercase strings like "iad". A blocker like INCOMPATIBLE_METROS
will specify the problematic metros in this field.
Corresponds to the JSON property metros
26117 26118 26119 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26117 def metros @metros end |
#zones ⇒ Array<String>
[Output Only] Zones used to explain this blocker in more detail. Zone names
are "zone1" and/or "zone2".
Corresponds to the JSON property zones
26123 26124 26125 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26123 def zones @zones end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26130 26131 26132 26133 26134 26135 26136 26137 26138 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 26130 def update!(**args) @blocker_type = args[:blocker_type] if args.key?(:blocker_type) @documentation_link = args[:documentation_link] if args.key?(:documentation_link) @explanation = args[:explanation] if args.key?(:explanation) @facilities = args[:facilities] if args.key?(:facilities) @interconnects = args[:interconnects] if args.key?(:interconnects) @metros = args[:metros] if args.key?(:metros) @zones = args[:zones] if args.key?(:zones) end |