Show / Hide Table of Contents

Class FixedOrPercent

Encapsulates numeric value that can be either absolute or relative.

Inheritance
object
FixedOrPercent
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 FixedOrPercent : IDirectResponseSchema

Properties

Calculated

[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.

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

ETag

The ETag of the item.

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

Fixed__

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

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

Percent

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

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX