Class: Google::Apis::TpuV1::SchedulingConfig
- Inherits:
-
Object
- Object
- Google::Apis::TpuV1::SchedulingConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/tpu_v1/classes.rb,
lib/google/apis/tpu_v1/representations.rb,
lib/google/apis/tpu_v1/representations.rb
Overview
Sets the scheduling options for this node.
Instance Attribute Summary collapse
-
#preemptible ⇒ Boolean
(also: #preemptible?)
Defines whether the node is preemptible.
-
#reserved ⇒ Boolean
(also: #reserved?)
Whether the node is created under a reservation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SchedulingConfig
constructor
A new instance of SchedulingConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SchedulingConfig
Returns a new instance of SchedulingConfig.
583 584 585 |
# File 'lib/google/apis/tpu_v1/classes.rb', line 583 def initialize(**args) update!(**args) end |
Instance Attribute Details
#preemptible ⇒ Boolean Also known as: preemptible?
Defines whether the node is preemptible.
Corresponds to the JSON property preemptible
574 575 576 |
# File 'lib/google/apis/tpu_v1/classes.rb', line 574 def preemptible @preemptible end |
#reserved ⇒ Boolean Also known as: reserved?
Whether the node is created under a reservation.
Corresponds to the JSON property reserved
580 581 582 |
# File 'lib/google/apis/tpu_v1/classes.rb', line 580 def reserved @reserved end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
588 589 590 591 |
# File 'lib/google/apis/tpu_v1/classes.rb', line 588 def update!(**args) @preemptible = args[:preemptible] if args.key?(:preemptible) @reserved = args[:reserved] if args.key?(:reserved) end |