Class: Google::Apis::ComputeAlpha::InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers

Returns a new instance of InterconnectGroupConfiguredTopologyCapabilityIntendedCapabilityBlockers.



30709
30710
30711
# File 'lib/google/apis/compute_alpha/classes.rb', line 30709

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

Instance Attribute Details

#blocker_typeString

Corresponds to the JSON property blockerType

Returns:

  • (String)


30670
30671
30672
# File 'lib/google/apis/compute_alpha/classes.rb', line 30670

def blocker_type
  @blocker_type
end

[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

Returns:

  • (String)


30676
30677
30678
# File 'lib/google/apis/compute_alpha/classes.rb', line 30676

def documentation_link
  @documentation_link
end

#explanationString

[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

Returns:

  • (String)


30682
30683
30684
# File 'lib/google/apis/compute_alpha/classes.rb', line 30682

def explanation
  @explanation
end

#facilitiesArray<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

Returns:

  • (Array<String>)


30689
30690
30691
# File 'lib/google/apis/compute_alpha/classes.rb', line 30689

def facilities
  @facilities
end

#interconnectsArray<String>

[Output Only] Interconnects used to explain this blocker in more detail. Corresponds to the JSON property interconnects

Returns:

  • (Array<String>)


30694
30695
30696
# File 'lib/google/apis/compute_alpha/classes.rb', line 30694

def interconnects
  @interconnects
end

#metrosArray<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

Returns:

  • (Array<String>)


30701
30702
30703
# File 'lib/google/apis/compute_alpha/classes.rb', line 30701

def metros
  @metros
end

#zonesArray<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

Returns:

  • (Array<String>)


30707
30708
30709
# File 'lib/google/apis/compute_alpha/classes.rb', line 30707

def zones
  @zones
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30714
30715
30716
30717
30718
30719
30720
30721
30722
# File 'lib/google/apis/compute_alpha/classes.rb', line 30714

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