Class: Google::Apis::ComputeBeta::ReservationSlotStatus
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ReservationSlotStatus
- 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
-
#physical_topology ⇒ Google::Apis::ComputeBeta::ReservationSlotPhysicalTopology
Output only.
-
#rdma_ip_addresses ⇒ Array<String>
Output only.
-
#running_instances ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReservationSlotStatus
constructor
A new instance of ReservationSlotStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReservationSlotStatus
Returns a new instance of ReservationSlotStatus.
52804 52805 52806 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52804 def initialize(**args) update!(**args) end |
Instance Attribute Details
#physical_topology ⇒ Google::Apis::ComputeBeta::ReservationSlotPhysicalTopology
Output only. [Output Only] The physical topology of the reservation sub-block.
Corresponds to the JSON property physicalTopology
52792 52793 52794 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52792 def physical_topology @physical_topology end |
#rdma_ip_addresses ⇒ Array<String>
Output only. The RDMA IP address of the physical host.
Corresponds to the JSON property rdmaIpAddresses
52797 52798 52799 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52797 def rdma_ip_addresses @rdma_ip_addresses end |
#running_instances ⇒ Array<String>
Output only. The URIs of the instances currently running on this slot.
Corresponds to the JSON property runningInstances
52802 52803 52804 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52802 def running_instances @running_instances end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
52809 52810 52811 52812 52813 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52809 def update!(**args) @physical_topology = args[:physical_topology] if args.key?(:physical_topology) @rdma_ip_addresses = args[:rdma_ip_addresses] if args.key?(:rdma_ip_addresses) @running_instances = args[:running_instances] if args.key?(:running_instances) end |