Show / Hide Table of Contents

Class UtilizationRange

Represents a range of acceptable utilization values. This message is used to configure range-based scaling policies, allowing Autoscaler to maintain utilization within a specified range instead of aiming for a single target point.

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

Properties

ETag

The ETag of the item.

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

MaxUtilization

Required. The upper bound of the utilization range. Must be greater or equal to min_utilization. This value is required when using range-based scaling. Scaling out is triggered if the utilization exceeds this value.

Declaration
[JsonProperty("maxUtilization")]
public virtual double? MaxUtilization { get; set; }
Property Value
Type Description
double?

MinUtilization

Required. The lower bound of the utilization range. Must be smaller or equal to max_utilization. This value is required when using range-based scaling. Scaling in is considered only if the utilization drops below this value.

Declaration
[JsonProperty("minUtilization")]
public virtual double? MinUtilization { get; set; }
Property Value
Type Description
double?

UtilizationTarget

The target utilization that the autoscaler aims to achieve when scaling is triggered. This value must be within the range [min_utilization, max_utilization]. If not specified, this will default to the average of max_utilization and min_utilization.

Declaration
[JsonProperty("utilizationTarget")]
public virtual double? UtilizationTarget { get; set; }
Property Value
Type Description
double?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX