Class: Google::Apis::ComputeBeta::InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Instance Attribute Summary collapse
-
#accelerator_topology ⇒ String
Topology in the format of: "16x16", "4x4x4", etc.
-
#accelerator_topology_health ⇒ String
Corresponds to the JSON property
acceleratorTopologyHealth. -
#accelerator_topology_state ⇒ Google::Apis::ComputeBeta::InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyState
Specifies the topology state Corresponds to the JSON property
acceleratorTopologyState. -
#instances_health ⇒ String
Corresponds to the JSON property
instancesHealth. -
#parent ⇒ String
Identified by the topology Id in the accelerator_topology_info map.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo
constructor
A new instance of InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo
Returns a new instance of InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyInfo.
26837 26838 26839 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26837 def initialize(**args) update!(**args) end |
Instance Attribute Details
#accelerator_topology ⇒ String
Topology in the format of: "16x16", "4x4x4", etc.
Corresponds to the JSON property acceleratorTopology
26814 26815 26816 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26814 def accelerator_topology @accelerator_topology end |
#accelerator_topology_health ⇒ String
Corresponds to the JSON property acceleratorTopologyHealth
26819 26820 26821 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26819 def accelerator_topology_health @accelerator_topology_health end |
#accelerator_topology_state ⇒ Google::Apis::ComputeBeta::InstanceGroupManagersGetAvailableAcceleratorTopologiesResponseAcceleratorTopologyState
Specifies the topology state
Corresponds to the JSON property acceleratorTopologyState
26824 26825 26826 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26824 def accelerator_topology_state @accelerator_topology_state end |
#instances_health ⇒ String
Corresponds to the JSON property instancesHealth
26829 26830 26831 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26829 def instances_health @instances_health end |
#parent ⇒ String
Identified by the topology Id in the accelerator_topology_info map. Empty
for the top-level topology
Corresponds to the JSON property parent
26835 26836 26837 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26835 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26842 26843 26844 26845 26846 26847 26848 |
# File 'lib/google/apis/compute_beta/classes.rb', line 26842 def update!(**args) @accelerator_topology = args[:accelerator_topology] if args.key?(:accelerator_topology) @accelerator_topology_health = args[:accelerator_topology_health] if args.key?(:accelerator_topology_health) @accelerator_topology_state = args[:accelerator_topology_state] if args.key?(:accelerator_topology_state) @instances_health = args[:instances_health] if args.key?(:instances_health) @parent = args[:parent] if args.key?(:parent) end |