Class: Google::Apis::ComputeAlpha::Scheduling
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::Scheduling
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Overview
Sets the scheduling options for an Instance. NextID: 9
Instance Attribute Summary collapse
-
#automatic_restart ⇒ Boolean
(also: #automatic_restart?)
Specifies whether the instance should be automatically restarted if it is terminated by Compute Engine (not terminated by a user).
-
#latency_tolerant ⇒ Boolean
(also: #latency_tolerant?)
Defines whether the instance is tolerant of higher cpu latency.
-
#min_node_cpus ⇒ Fixnum
The minimum number of virtual CPUs this instance will consume when running on a sole-tenant node.
-
#node_affinities ⇒ Array<Google::Apis::ComputeAlpha::SchedulingNodeAffinity>
A set of node affinity and anti-affinity configurations.
-
#on_host_maintenance ⇒ String
Defines the maintenance behavior for this instance.
-
#preemptible ⇒ Boolean
(also: #preemptible?)
Defines whether the instance is preemptible.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Scheduling
constructor
A new instance of Scheduling.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Scheduling
Returns a new instance of Scheduling
28498 28499 28500 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 28498 def initialize(**args) update!(**args) end |
Instance Attribute Details
#automatic_restart ⇒ Boolean Also known as: automatic_restart?
Specifies whether the instance should be automatically restarted if it is
terminated by Compute Engine (not terminated by a user). You can only set the
automatic restart option for standard instances. Preemptible instances cannot
be automatically restarted.
By default, this is set to true so an instance is automatically restarted if
it is terminated by Compute Engine.
Corresponds to the JSON property automaticRestart
28459 28460 28461 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 28459 def automatic_restart @automatic_restart end |
#latency_tolerant ⇒ Boolean Also known as: latency_tolerant?
Defines whether the instance is tolerant of higher cpu latency. This can only
be set during instance creation, or when the instance is not currently running.
It must not be set if the preemptible option is also set.
Corresponds to the JSON property latencyTolerant
28467 28468 28469 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 28467 def latency_tolerant @latency_tolerant end |
#min_node_cpus ⇒ Fixnum
The minimum number of virtual CPUs this instance will consume when running on
a sole-tenant node.
Corresponds to the JSON property minNodeCpus
28474 28475 28476 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 28474 def min_node_cpus @min_node_cpus end |
#node_affinities ⇒ Array<Google::Apis::ComputeAlpha::SchedulingNodeAffinity>
A set of node affinity and anti-affinity configurations. Refer to Configuring
node affinity for more information.
Corresponds to the JSON property nodeAffinities
28480 28481 28482 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 28480 def node_affinities @node_affinities end |
#on_host_maintenance ⇒ String
Defines the maintenance behavior for this instance. For standard instances,
the default behavior is MIGRATE. For preemptible instances, the default and
only possible behavior is TERMINATE. For more information, see Setting
Instance Scheduling Options.
Corresponds to the JSON property onHostMaintenance
28488 28489 28490 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 28488 def on_host_maintenance @on_host_maintenance end |
#preemptible ⇒ Boolean Also known as: preemptible?
Defines whether the instance is preemptible. This can only be set during
instance creation, it cannot be set or changed after the instance has been
created.
Corresponds to the JSON property preemptible
28495 28496 28497 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 28495 def preemptible @preemptible end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28503 28504 28505 28506 28507 28508 28509 28510 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 28503 def update!(**args) @automatic_restart = args[:automatic_restart] if args.key?(:automatic_restart) @latency_tolerant = args[:latency_tolerant] if args.key?(:latency_tolerant) @min_node_cpus = args[:min_node_cpus] if args.key?(:min_node_cpus) @node_affinities = args[:node_affinities] if args.key?(:node_affinities) @on_host_maintenance = args[:on_host_maintenance] if args.key?(:on_host_maintenance) @preemptible = args[:preemptible] if args.key?(:preemptible) end |