Class: Google::Apis::TpuV2alpha1::SchedulingConfig
- Inherits:
-
Object
- Object
- Google::Apis::TpuV2alpha1::SchedulingConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/tpu_v2alpha1/classes.rb,
lib/google/apis/tpu_v2alpha1/representations.rb,
lib/google/apis/tpu_v2alpha1/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.
-
#spot ⇒ Boolean
(also: #spot?)
Optional.
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.
1495 1496 1497 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1495 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
1480 1481 1482 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1480 def preemptible @preemptible end |
#reserved ⇒ Boolean Also known as: reserved?
Whether the node is created under a reservation.
Corresponds to the JSON property reserved
1486 1487 1488 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1486 def reserved @reserved end |
#spot ⇒ Boolean Also known as: spot?
Optional. Defines whether the node is Spot VM.
Corresponds to the JSON property spot
1492 1493 1494 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1492 def spot @spot end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1500 1501 1502 1503 1504 |
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1500 def update!(**args) @preemptible = args[:preemptible] if args.key?(:preemptible) @reserved = args[:reserved] if args.key?(:reserved) @spot = args[:spot] if args.key?(:spot) end |