class Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest

The request used for `CreateWorkerPool`.

Attributes

parent[RW]

Resource name of the instance in which to create the new worker pool. Format: ` projects//instances/`. Corresponds to the JSON property `parent` @return [String]

pool_id[RW]

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. Corresponds to the JSON property `poolId` @return [String]

worker_pool[RW]

A worker pool resource in the Remote Build Execution API. Corresponds to the JSON property `workerPool` @return [Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 1881
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/remotebuildexecution_v1alpha/classes.rb, line 1886
def update!(**args)
  @parent = args[:parent] if args.key?(:parent)
  @pool_id = args[:pool_id] if args.key?(:pool_id)
  @worker_pool = args[:worker_pool] if args.key?(:worker_pool)
end