Show / Hide Table of Contents

Class NodeGroupAutoscalingPolicy

Inheritance
System.Object
NodeGroupAutoscalingPolicy
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class NodeGroupAutoscalingPolicy : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MaxNodes

The maximum number of nodes that the group should have. Must be set if autoscaling is enabled. Maximum value allowed is 100.

Declaration
[JsonProperty("maxNodes")]
public virtual int? MaxNodes { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MinNodes

The minimum number of nodes that the group should have.

Declaration
[JsonProperty("minNodes")]
public virtual int? MinNodes { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Mode

The autoscaling mode. Set to one of: ON, OFF, or ONLY_SCALE_OUT. For more information, see Autoscaler modes.

Declaration
[JsonProperty("mode")]
public virtual string Mode { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top