Interface FixedOrPercentOrBuilder (1.51.0)

public interface FixedOrPercentOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getCalculated()

public abstract int getCalculated()

[Output Only] Absolute value of VM instances calculated based on the specific mode. - If the value is fixed, then the calculated value is equal to the fixed value. - If the value is a percent, then the calculated value is percent/100 * targetSize. For example, the calculated value of a 80% of a managed instance group with 150 instances would be (80/100 * 150) = 120 VM instances. If there is a remainder, the number is rounded.

optional int32 calculated = 472082878;

Returns
TypeDescription
int

The calculated.

getFixed()

public abstract int getFixed()

Specifies a fixed number of VM instances. This must be a positive integer.

optional int32 fixed = 97445748;

Returns
TypeDescription
int

The fixed.

getPercent()

public abstract int getPercent()

Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%.

optional int32 percent = 394814533;

Returns
TypeDescription
int

The percent.

hasCalculated()

public abstract boolean hasCalculated()

[Output Only] Absolute value of VM instances calculated based on the specific mode. - If the value is fixed, then the calculated value is equal to the fixed value. - If the value is a percent, then the calculated value is percent/100 * targetSize. For example, the calculated value of a 80% of a managed instance group with 150 instances would be (80/100 * 150) = 120 VM instances. If there is a remainder, the number is rounded.

optional int32 calculated = 472082878;

Returns
TypeDescription
boolean

Whether the calculated field is set.

hasFixed()

public abstract boolean hasFixed()

Specifies a fixed number of VM instances. This must be a positive integer.

optional int32 fixed = 97445748;

Returns
TypeDescription
boolean

Whether the fixed field is set.

hasPercent()

public abstract boolean hasPercent()

Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%.

optional int32 percent = 394814533;

Returns
TypeDescription
boolean

Whether the percent field is set.