Show / Hide Table of Contents

Class AutoscalingTargets

The autoscaling targets for an instance.

Inheritance
object
AutoscalingTargets
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.Spanner.v1.Data
Assembly: Google.Apis.Spanner.v1.dll
Syntax
public class AutoscalingTargets : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

HighPriorityCpuUtilizationPercent

Optional. The target high priority cpu utilization percentage that the autoscaler should be trying to achieve for the instance. This number is on a scale from 0 (no utilization) to 100 (full utilization). The valid range is [10, 90] inclusive. If not specified or set to 0, the autoscaler skips scaling based on high priority CPU utilization.

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

StorageUtilizationPercent

Required. The target storage utilization percentage that the autoscaler should be trying to achieve for the instance. This number is on a scale from 0 (no utilization) to 100 (full utilization). The valid range is [10, 99] inclusive.

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

TotalCpuUtilizationPercent

Optional. The target total CPU utilization percentage that the autoscaler should be trying to achieve for the instance. This number is on a scale from 0 (no utilization) to 100 (full utilization). The valid range is [10, 90] inclusive. If not specified or set to 0, the autoscaler skips scaling based on total CPU utilization. If both high_priority_cpu_utilization_percent and total_cpu_utilization_percent are specified, the autoscaler provisions the larger of the two required compute capacities to satisfy both targets.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX