Show / Hide Table of Contents

Class GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale

Autoscale defines the autoscaling policy of a worker pool.

Inheritance
System.Object
GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.RemoteBuildExecution.v1.Data
Assembly: Google.Apis.RemoteBuildExecution.v1.dll
Syntax
public class GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

MaxSize

The maximal number of workers. Must be equal to or greater than min_size.

Declaration
[JsonProperty("maxSize")]
public virtual long? MaxSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MinSize

The minimal number of workers. Must be greater than 0.

Declaration
[JsonProperty("minSize")]
public virtual long? MinSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top