Package com.google.cloud.compute.v1
Enum AutoscalingPolicy.Mode
- java.lang.Object
-
- java.lang.Enum<AutoscalingPolicy.Mode>
-
- com.google.cloud.compute.v1.AutoscalingPolicy.Mode
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<AutoscalingPolicy.Mode>
- Enclosing class:
- AutoscalingPolicy
public static enum AutoscalingPolicy.Mode extends Enum<AutoscalingPolicy.Mode> implements com.google.protobuf.ProtocolMessageEnum
Defines the operating mode for this policy. The following modes are available: - OFF: Disables the autoscaler but maintains its configuration. - ONLY_SCALE_OUT: Restricts the autoscaler to add VM instances only. - ON: Enables all autoscaler activities according to its policy. For more information, see "Turning off or restricting an autoscaler"
Protobuf enumgoogle.cloud.compute.v1.AutoscalingPolicy.Mode
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OFFDo not automatically scale the MIG in or out.ONAutomatically scale the MIG in and out according to the policy.ONLY_SCALE_OUTAutomatically create VMs according to the policy, but do not scale the MIG in.ONLY_UPAutomatically create VMs according to the policy, but do not scale the MIG in.UNDEFINED_MODEA value indicating that the enum field is not set.UNRECOGNIZED
-
Field Summary
Fields Modifier and Type Field Description static intOFF_VALUEDo not automatically scale the MIG in or out.static intON_VALUEAutomatically scale the MIG in and out according to the policy.static intONLY_SCALE_OUT_VALUEAutomatically create VMs according to the policy, but do not scale the MIG in.static intONLY_UP_VALUEAutomatically create VMs according to the policy, but do not scale the MIG in.static intUNDEFINED_MODE_VALUEA value indicating that the enum field is not set.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AutoscalingPolicy.ModeforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<AutoscalingPolicy.Mode>internalGetValueMap()static AutoscalingPolicy.ModevalueOf(int value)Deprecated.static AutoscalingPolicy.ModevalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static AutoscalingPolicy.ModevalueOf(String name)Returns the enum constant of this type with the specified name.static AutoscalingPolicy.Mode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDEFINED_MODE
public static final AutoscalingPolicy.Mode UNDEFINED_MODE
A value indicating that the enum field is not set.
UNDEFINED_MODE = 0;
-
OFF
public static final AutoscalingPolicy.Mode OFF
Do not automatically scale the MIG in or out. The recommended_size field contains the size of MIG that would be set if the actuation mode was enabled.
OFF = 78159;
-
ON
public static final AutoscalingPolicy.Mode ON
Automatically scale the MIG in and out according to the policy.
ON = 2527;
-
ONLY_SCALE_OUT
public static final AutoscalingPolicy.Mode ONLY_SCALE_OUT
Automatically create VMs according to the policy, but do not scale the MIG in.
ONLY_SCALE_OUT = 152713670;
-
ONLY_UP
public static final AutoscalingPolicy.Mode ONLY_UP
Automatically create VMs according to the policy, but do not scale the MIG in.
ONLY_UP = 478095374;
-
UNRECOGNIZED
public static final AutoscalingPolicy.Mode UNRECOGNIZED
-
-
Field Detail
-
UNDEFINED_MODE_VALUE
public static final int UNDEFINED_MODE_VALUE
A value indicating that the enum field is not set.
UNDEFINED_MODE = 0;- See Also:
- Constant Field Values
-
OFF_VALUE
public static final int OFF_VALUE
Do not automatically scale the MIG in or out. The recommended_size field contains the size of MIG that would be set if the actuation mode was enabled.
OFF = 78159;- See Also:
- Constant Field Values
-
ON_VALUE
public static final int ON_VALUE
Automatically scale the MIG in and out according to the policy.
ON = 2527;- See Also:
- Constant Field Values
-
ONLY_SCALE_OUT_VALUE
public static final int ONLY_SCALE_OUT_VALUE
Automatically create VMs according to the policy, but do not scale the MIG in.
ONLY_SCALE_OUT = 152713670;- See Also:
- Constant Field Values
-
ONLY_UP_VALUE
public static final int ONLY_UP_VALUE
Automatically create VMs according to the policy, but do not scale the MIG in.
ONLY_UP = 478095374;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static AutoscalingPolicy.Mode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AutoscalingPolicy.Mode c : AutoscalingPolicy.Mode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AutoscalingPolicy.Mode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static AutoscalingPolicy.Mode valueOf(int value)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
value- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
forNumber
public static AutoscalingPolicy.Mode forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<AutoscalingPolicy.Mode> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static AutoscalingPolicy.Mode valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
desc- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-