Show / Hide Table of Contents

Class AutomaticScaling

Automatic scaling is based on request rate, response latencies, and other application metrics.

Inheritance
object
AutomaticScaling
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.Appengine.v1beta.Data
Assembly: Google.Apis.Appengine.v1beta.dll
Syntax
public class AutomaticScaling : IDirectResponseSchema

Properties

CoolDownPeriod

The time period that the Autoscaler (https://cloud.google.com/compute/docs/autoscaler/) should wait before it starts collecting information from a new instance. This prevents the autoscaler from collecting information when the instance is initializing, during which the collected usage would not be reliable. Only applicable in the App Engine flexible environment.

Declaration
[JsonProperty("coolDownPeriod")]
public virtual object CoolDownPeriod { get; set; }
Property Value
Type Description
object

CpuUtilization

Target scaling by CPU usage.

Declaration
[JsonProperty("cpuUtilization")]
public virtual CpuUtilization CpuUtilization { get; set; }
Property Value
Type Description
CpuUtilization

CustomMetrics

Target scaling by user-provided metrics. Only applicable in the App Engine flexible environment.

Declaration
[JsonProperty("customMetrics")]
public virtual IList<CustomMetric> CustomMetrics { get; set; }
Property Value
Type Description
IList<CustomMetric>

DiskUtilization

Target scaling by disk usage.

Declaration
[JsonProperty("diskUtilization")]
public virtual DiskUtilization DiskUtilization { get; set; }
Property Value
Type Description
DiskUtilization

ETag

The ETag of the item.

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

MaxConcurrentRequests

Number of concurrent requests an automatic scaling instance can accept before the scheduler spawns a new instance.Defaults to a runtime-specific value.

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

MaxIdleInstances

Maximum number of idle instances that should be maintained for this version.

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

MaxPendingLatency

Maximum amount of time that a request should wait in the pending queue before starting a new instance to handle it.

Declaration
[JsonProperty("maxPendingLatency")]
public virtual object MaxPendingLatency { get; set; }
Property Value
Type Description
object

MaxTotalInstances

Maximum number of instances that should be started to handle requests for this version.

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

MinIdleInstances

Minimum number of idle instances that should be maintained for this version. Only applicable for the default version of a service.

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

MinPendingLatency

Minimum amount of time a request should wait in the pending queue before starting a new instance to handle it.

Declaration
[JsonProperty("minPendingLatency")]
public virtual object MinPendingLatency { get; set; }
Property Value
Type Description
object

MinTotalInstances

Minimum number of running instances that should be maintained for this version.

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

NetworkUtilization

Target scaling by network usage.

Declaration
[JsonProperty("networkUtilization")]
public virtual NetworkUtilization NetworkUtilization { get; set; }
Property Value
Type Description
NetworkUtilization

RequestUtilization

Target scaling by request utilization.

Declaration
[JsonProperty("requestUtilization")]
public virtual RequestUtilization RequestUtilization { get; set; }
Property Value
Type Description
RequestUtilization

StandardSchedulerSettings

Scheduler settings for standard environment.

Declaration
[JsonProperty("standardSchedulerSettings")]
public virtual StandardSchedulerSettings StandardSchedulerSettings { get; set; }
Property Value
Type Description
StandardSchedulerSettings

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX