Class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/remotebuildexecution_v1alpha/classes.rb,
lib/google/apis/remotebuildexecution_v1alpha/representations.rb,
lib/google/apis/remotebuildexecution_v1alpha/representations.rb
Overview
The request used for CreateWorkerPool
.
Instance Attribute Summary collapse
-
#parent ⇒ String
Resource name of the instance in which to create the new worker pool.
-
#pool_id ⇒ String
ID of the created worker pool.
-
#worker_pool ⇒ Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool
A worker pool resource in the Remote Build Execution API.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest
constructor
A new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest
Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaCreateWorkerPoolRequest.
1881 1882 1883 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1881 def initialize(**args) update!(**args) end |
Instance Attribute Details
#parent ⇒ String
Resource name of the instance in which to create the new worker pool. Format:
projects/[PROJECT_ID]/instances/[INSTANCE_ID]
.
Corresponds to the JSON property parent
1867 1868 1869 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1867 def parent @parent end |
#pool_id ⇒ String
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
1874 1875 1876 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1874 def pool_id @pool_id end |
#worker_pool ⇒ Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool
A worker pool resource in the Remote Build Execution API.
Corresponds to the JSON property workerPool
1879 1880 1881 |
# File 'lib/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1879 def worker_pool @worker_pool end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1886 1887 1888 1889 1890 |
# 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 |