Class: Google::Cloud::Compute::V1::Scheduling
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::Scheduling
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/compute/v1/compute.rb
Overview
Sets the scheduling options for an Instance. NextID: 21
Defined Under Namespace
Modules: OnHostMaintenance
Instance Attribute Summary collapse
-
#automatic_restart ⇒ ::Boolean
Specifies whether the instance should be automatically restarted if it is terminated by Compute Engine (not terminated by a user).
-
#location_hint ⇒ ::String
An opaque location hint used to place the instance close to other resources.
-
#min_node_cpus ⇒ ::Integer
The minimum number of virtual CPUs this instance will consume when running on a sole-tenant node.
-
#node_affinities ⇒ ::Array<::Google::Cloud::Compute::V1::SchedulingNodeAffinity>
A set of node affinity and anti-affinity configurations.
-
#on_host_maintenance ⇒ ::String
Defines the maintenance behavior for this instance.
-
#preemptible ⇒ ::Boolean
Defines whether the instance is preemptible.
Instance Attribute Details
#automatic_restart ⇒ ::Boolean
Returns 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.
21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 21220 class Scheduling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # 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. module OnHostMaintenance # A value indicating that the enum field is not set. UNDEFINED_ON_HOST_MAINTENANCE = 0 # *[Default]* Allows Compute Engine to automatically migrate instances out of the way of maintenance events. MIGRATE = 165699979 # Tells Compute Engine to terminate and (optionally) restart the instance away from the maintenance activity. If you would like your instance to be restarted, set the automaticRestart flag to true. Your instance may be restarted more than once, and it may be restarted outside the window of maintenance events. TERMINATE = 527617601 end end |
#location_hint ⇒ ::String
Returns An opaque location hint used to place the instance close to other resources. This field is for use by internal tools that use the public API.
21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 21220 class Scheduling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # 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. module OnHostMaintenance # A value indicating that the enum field is not set. UNDEFINED_ON_HOST_MAINTENANCE = 0 # *[Default]* Allows Compute Engine to automatically migrate instances out of the way of maintenance events. MIGRATE = 165699979 # Tells Compute Engine to terminate and (optionally) restart the instance away from the maintenance activity. If you would like your instance to be restarted, set the automaticRestart flag to true. Your instance may be restarted more than once, and it may be restarted outside the window of maintenance events. TERMINATE = 527617601 end end |
#min_node_cpus ⇒ ::Integer
Returns The minimum number of virtual CPUs this instance will consume when running on a sole-tenant node.
21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 21220 class Scheduling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # 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. module OnHostMaintenance # A value indicating that the enum field is not set. UNDEFINED_ON_HOST_MAINTENANCE = 0 # *[Default]* Allows Compute Engine to automatically migrate instances out of the way of maintenance events. MIGRATE = 165699979 # Tells Compute Engine to terminate and (optionally) restart the instance away from the maintenance activity. If you would like your instance to be restarted, set the automaticRestart flag to true. Your instance may be restarted more than once, and it may be restarted outside the window of maintenance events. TERMINATE = 527617601 end end |
#node_affinities ⇒ ::Array<::Google::Cloud::Compute::V1::SchedulingNodeAffinity>
Returns A set of node affinity and anti-affinity configurations. Refer to Configuring node affinity for more information. Overrides reservationAffinity.
21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 21220 class Scheduling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # 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. module OnHostMaintenance # A value indicating that the enum field is not set. UNDEFINED_ON_HOST_MAINTENANCE = 0 # *[Default]* Allows Compute Engine to automatically migrate instances out of the way of maintenance events. MIGRATE = 165699979 # Tells Compute Engine to terminate and (optionally) restart the instance away from the maintenance activity. If you would like your instance to be restarted, set the automaticRestart flag to true. Your instance may be restarted more than once, and it may be restarted outside the window of maintenance events. TERMINATE = 527617601 end end |
#on_host_maintenance ⇒ ::String
Returns 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. Check the OnHostMaintenance enum for the list of possible values.
21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 21220 class Scheduling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # 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. module OnHostMaintenance # A value indicating that the enum field is not set. UNDEFINED_ON_HOST_MAINTENANCE = 0 # *[Default]* Allows Compute Engine to automatically migrate instances out of the way of maintenance events. MIGRATE = 165699979 # Tells Compute Engine to terminate and (optionally) restart the instance away from the maintenance activity. If you would like your instance to be restarted, set the automaticRestart flag to true. Your instance may be restarted more than once, and it may be restarted outside the window of maintenance events. TERMINATE = 527617601 end end |
#preemptible ⇒ ::Boolean
Returns Defines whether the instance is preemptible. This can only be set during instance creation or while the instance is stopped and therefore, in a TERMINATED state. See Instance Life Cycle for more information on the possible instance states.
21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 21220 class Scheduling include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # 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. module OnHostMaintenance # A value indicating that the enum field is not set. UNDEFINED_ON_HOST_MAINTENANCE = 0 # *[Default]* Allows Compute Engine to automatically migrate instances out of the way of maintenance events. MIGRATE = 165699979 # Tells Compute Engine to terminate and (optionally) restart the instance away from the maintenance activity. If you would like your instance to be restarted, set the automaticRestart flag to true. Your instance may be restarted more than once, and it may be restarted outside the window of maintenance events. TERMINATE = 527617601 end end |