Class: Google::Cloud::Compute::V1::InstanceGroupManagerUpdatePolicy
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::InstanceGroupManagerUpdatePolicy
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/compute/v1/compute.rb
Instance Attribute Summary collapse
-
#instance_redistribution_type ⇒ ::String
The instance redistribution policy for regional managed instance groups.
-
#max_surge ⇒ ::Google::Cloud::Compute::V1::FixedOrPercent
The maximum number of instances that can be created above the specified targetSize during the update process.
-
#max_unavailable ⇒ ::Google::Cloud::Compute::V1::FixedOrPercent
The maximum number of instances that can be unavailable during the update process.
-
#minimal_action ⇒ ::String
Minimal action to be taken on an instance.
-
#replacement_method ⇒ ::String
What action should be used to replace instances.
-
#type ⇒ ::String
The type of update process.
Instance Attribute Details
#instance_redistribution_type ⇒ ::String
Returns The instance redistribution policy for regional managed instance groups. Valid values are:
- PROACTIVE (default): The group attempts to maintain an even distribution of VM instances across zones in the region.
- NONE: For non-autoscaled groups, proactive redistribution is disabled.
5925 5926 5927 5928 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 5925 class InstanceGroupManagerUpdatePolicy include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#max_surge ⇒ ::Google::Cloud::Compute::V1::FixedOrPercent
Returns The maximum number of instances that can be created above the specified targetSize during the update process. By default, a fixed value of 1 is used. This value can be either a fixed number or a percentage if the instance group has 10 or more instances. If you set a percentage, the number of instances will be rounded up if necessary.
At least one of either maxSurge or maxUnavailable must be greater than 0. Learn more about maxSurge.
5925 5926 5927 5928 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 5925 class InstanceGroupManagerUpdatePolicy include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#max_unavailable ⇒ ::Google::Cloud::Compute::V1::FixedOrPercent
Returns The maximum number of instances that can be unavailable during the update process. An instance is considered available if all of the following conditions are satisfied:
- The instance's status is RUNNING.
- If there is a health check on the instance group, the instance's liveness health check result must be HEALTHY at least once. If there is no health check on the group, then the instance only needs to have a status of RUNNING to be considered available. By default, a fixed value of 1 is used. This value can be either a fixed number or a percentage if the instance group has 10 or more instances. If you set a percentage, the number of instances will be rounded up if necessary.
At least one of either maxSurge or maxUnavailable must be greater than 0. Learn more about maxUnavailable.
5925 5926 5927 5928 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 5925 class InstanceGroupManagerUpdatePolicy include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#minimal_action ⇒ ::String
Returns Minimal action to be taken on an instance. You can specify either RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a RESTART, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
5925 5926 5927 5928 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 5925 class InstanceGroupManagerUpdatePolicy include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#replacement_method ⇒ ::String
Returns What action should be used to replace instances. See minimal_action.REPLACE.
5925 5926 5927 5928 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 5925 class InstanceGroupManagerUpdatePolicy include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#type ⇒ ::String
Returns The type of update process. You can specify either PROACTIVE so that the instance group manager proactively executes actions in order to bring instances to their target versions or OPPORTUNISTIC so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
5925 5926 5927 5928 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 5925 class InstanceGroupManagerUpdatePolicy include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |