Class: Google::Apis::ComputeAlpha::InterconnectAttachmentGroupConfiguredAvailabilitySlaIntendedSlaBlockers
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectAttachmentGroupConfiguredAvailabilitySlaIntendedSlaBlockers
- 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.availabilitySLA.sla differs from intent.availabilitySLA. This list is empty if and only if those are the same.
Instance Attribute Summary collapse
-
#attachments ⇒ Array<String>
[Output Only] URLs of any particular Attachments to explain this blocker in more detail.
-
#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.
-
#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) ⇒ InterconnectAttachmentGroupConfiguredAvailabilitySlaIntendedSlaBlockers
constructor
A new instance of InterconnectAttachmentGroupConfiguredAvailabilitySlaIntendedSlaBlockers.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectAttachmentGroupConfiguredAvailabilitySlaIntendedSlaBlockers
Returns a new instance of InterconnectAttachmentGroupConfiguredAvailabilitySlaIntendedSlaBlockers.
24530 24531 24532 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 24530 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attachments ⇒ Array<String>
[Output Only] URLs of any particular Attachments to explain this blocker in
more detail.
Corresponds to the JSON property attachments
24497 24498 24499 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 24497 def @attachments end |
#blocker_type ⇒ String
Corresponds to the JSON property blockerType
24502 24503 24504 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 24502 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
24508 24509 24510 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 24508 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
24514 24515 24516 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 24514 def explanation @explanation end |
#metros ⇒ Array<String>
[Output Only] Metros used to explain this blocker in more detail. These are
three-letter lowercase strings like "iad". This will be set for some blockers (
like NO_ATTACHMENTS_IN_METRO_AND_ZONE) but does not apply to others.
Corresponds to the JSON property metros
24521 24522 24523 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 24521 def metros @metros end |
#zones ⇒ Array<String>
[Output Only] Zones used to explain this blocker in more detail. Format is "
zone1" and/or "zone2". This will be set for some blockers (like MISSING_ZONE)
but does not apply to others.
Corresponds to the JSON property zones
24528 24529 24530 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 24528 def zones @zones end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24535 24536 24537 24538 24539 24540 24541 24542 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 24535 def update!(**args) @attachments = args[:attachments] if args.key?(:attachments) @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) @metros = args[:metros] if args.key?(:metros) @zones = args[:zones] if args.key?(:zones) end |