Struct google_api_proto::google::cloud::compute::v1::InstanceGroupManagerUpdatePolicy
source · pub struct InstanceGroupManagerUpdatePolicy {
pub instance_redistribution_type: Option<String>,
pub max_surge: Option<FixedOrPercent>,
pub max_unavailable: Option<FixedOrPercent>,
pub minimal_action: Option<String>,
pub most_disruptive_allowed_action: Option<String>,
pub replacement_method: Option<String>,
pub type: Option<String>,
}
Expand description
Fields§
§instance_redistribution_type: Option<String>
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. Check the InstanceRedistributionType enum for the list of possible values.
max_surge: Option<FixedOrPercent>
The maximum number of instances that can be created above the specified targetSize during the update process. This value can be either a fixed number or, if the group has 10 or more instances, a percentage. If you set a percentage, the number of instances is rounded if necessary. The default value for maxSurge is a fixed value equal to the number of zones in which the managed instance group operates. At least one of either maxSurge or maxUnavailable must be greater than 0. Learn more about maxSurge.
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 health check status 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. This value can be either a fixed number or, if the group has 10 or more instances, a percentage. If you set a percentage, the number of instances is rounded if necessary. The default value for maxUnavailable is a fixed value equal to the number of zones in which the managed instance group operates. At least one of either maxSurge or maxUnavailable must be greater than 0. Learn more about maxUnavailable.
minimal_action: Option<String>
Minimal action to be taken on an instance. Use this option to minimize disruption as much as possible or to apply a more disruptive action than is necessary. - To limit disruption as much as possible, set the minimal action to REFRESH. If your update requires a more disruptive action, Compute Engine performs the necessary action to execute the update. - To apply a more disruptive action than is strictly necessary, set the minimal action to RESTART or REPLACE. For example, Compute Engine does not need to restart a VM to change its metadata. But if your application reads instance metadata only when a VM is restarted, you can set the minimal action to RESTART in order to pick up metadata changes. Check the MinimalAction enum for the list of possible values.
most_disruptive_allowed_action: Option<String>
Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to avoid restarting the VM and to limit disruption as much as possible. RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all. Check the MostDisruptiveAllowedAction enum for the list of possible values.
replacement_method: Option<String>
What action should be used to replace instances. See minimal_action.REPLACE Check the ReplacementMethod enum for the list of possible values.
type: Option<String>
The type of update process. You can specify either PROACTIVE so that the MIG automatically updates VMs to the latest configurations or OPPORTUNISTIC so that you can select the VMs that you want to update. Check the Type enum for the list of possible values.
Implementations§
source§impl InstanceGroupManagerUpdatePolicy
impl InstanceGroupManagerUpdatePolicy
sourcepub fn most_disruptive_allowed_action(&self) -> &str
pub fn most_disruptive_allowed_action(&self) -> &str
Returns the value of most_disruptive_allowed_action
, or the default value if most_disruptive_allowed_action
is unset.
sourcepub fn minimal_action(&self) -> &str
pub fn minimal_action(&self) -> &str
Returns the value of minimal_action
, or the default value if minimal_action
is unset.
sourcepub fn instance_redistribution_type(&self) -> &str
pub fn instance_redistribution_type(&self) -> &str
Returns the value of instance_redistribution_type
, or the default value if instance_redistribution_type
is unset.
sourcepub fn replacement_method(&self) -> &str
pub fn replacement_method(&self) -> &str
Returns the value of replacement_method
, or the default value if replacement_method
is unset.
Trait Implementations§
source§impl Clone for InstanceGroupManagerUpdatePolicy
impl Clone for InstanceGroupManagerUpdatePolicy
source§fn clone(&self) -> InstanceGroupManagerUpdatePolicy
fn clone(&self) -> InstanceGroupManagerUpdatePolicy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Message for InstanceGroupManagerUpdatePolicy
impl Message for InstanceGroupManagerUpdatePolicy
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for InstanceGroupManagerUpdatePolicy
impl PartialEq for InstanceGroupManagerUpdatePolicy
source§fn eq(&self, other: &InstanceGroupManagerUpdatePolicy) -> bool
fn eq(&self, other: &InstanceGroupManagerUpdatePolicy) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InstanceGroupManagerUpdatePolicy
Auto Trait Implementations§
impl Freeze for InstanceGroupManagerUpdatePolicy
impl RefUnwindSafe for InstanceGroupManagerUpdatePolicy
impl Send for InstanceGroupManagerUpdatePolicy
impl Sync for InstanceGroupManagerUpdatePolicy
impl Unpin for InstanceGroupManagerUpdatePolicy
impl UnwindSafe for InstanceGroupManagerUpdatePolicy
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request