Class: Google::Apis::TpuV2alpha1::SchedulingConfig

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SchedulingConfig

Returns a new instance of SchedulingConfig.



1290
1291
1292
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1290

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

Instance Attribute Details

#preemptibleBoolean Also known as: preemptible?

Defines whether the node is preemptible. Corresponds to the JSON property preemptible

Returns:

  • (Boolean)


1281
1282
1283
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1281

def preemptible
  @preemptible
end

#reservedBoolean Also known as: reserved?

Whether the node is created under a reservation. Corresponds to the JSON property reserved

Returns:

  • (Boolean)


1287
1288
1289
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1287

def reserved
  @reserved
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1295
1296
1297
1298
# File 'lib/google/apis/tpu_v2alpha1/classes.rb', line 1295

def update!(**args)
  @preemptible = args[:preemptible] if args.key?(:preemptible)
  @reserved = args[:reserved] if args.key?(:reserved)
end