Show / Hide Table of Contents

Class GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest

The request used for CreateWorkerPool.

Inheritance
System.Object
GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest
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 GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Parent

Resource name of the instance in which to create the new worker pool. Format: projects/[PROJECT_ID]/instances/[INSTANCE_ID].

Declaration
[JsonProperty("parent")]
public virtual string Parent { get; set; }
Property Value
Type Description
System.String

PoolId

ID of the created worker pool. A valid pool ID must: be 6-50 characters long, contain only lowercase letters, digits, hyphens and underscores, start with a lowercase letter, and end with a lowercase letter or a digit.

Declaration
[JsonProperty("poolId")]
public virtual string PoolId { get; set; }
Property Value
Type Description
System.String

WorkerPool

Specifies the worker pool to create. The name in the worker pool, if specified, is ignored.

Declaration
[JsonProperty("workerPool")]
public virtual GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool WorkerPool { get; set; }
Property Value
Type Description
GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool

Implements

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