Show / Hide Table of Contents

Class InstanceGroupManagerUpdatePolicy

Inheritance
object
InstanceGroupManagerUpdatePolicy
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Compute.alpha.Data
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class InstanceGroupManagerUpdatePolicy : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

InstanceRedistributionType

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.

Declaration
[JsonProperty("instanceRedistributionType")]
public virtual string InstanceRedistributionType { get; set; }
Property Value
Type Description
string

MaxSurge

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.

Declaration
[JsonProperty("maxSurge")]
public virtual FixedOrPercent MaxSurge { get; set; }
Property Value
Type Description
FixedOrPercent

MaxUnavailable

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.

Declaration
[JsonProperty("maxUnavailable")]
public virtual FixedOrPercent MaxUnavailable { get; set; }
Property Value
Type Description
FixedOrPercent

MinReadySec

Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600].

Declaration
[JsonProperty("minReadySec")]
public virtual int? MinReadySec { get; set; }
Property Value
Type Description
int?

MinimalAction

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.

Declaration
[JsonProperty("minimalAction")]
public virtual string MinimalAction { get; set; }
Property Value
Type Description
string

MostDisruptiveAllowedAction

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.

Declaration
[JsonProperty("mostDisruptiveAllowedAction")]
public virtual string MostDisruptiveAllowedAction { get; set; }
Property Value
Type Description
string

ReplacementMethod

What action should be used to replace instances. See minimal_action.REPLACE

Declaration
[JsonProperty("replacementMethod")]
public virtual string ReplacementMethod { get; set; }
Property Value
Type Description
string

Type

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.

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX