Class: Google::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/remotebuildexecution_v2/classes.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb,
generated/google/apis/remotebuildexecution_v2/representations.rb

Overview

A worker pool resource in the Remote Build Execution API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool

Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerPool.



2872
2873
2874
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2872

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

WorkerPool resource name formatted as: projects/[PROJECT_ID]/instances/[INSTANCE_ID]/workerpools/[POOL_ID]. name should not be populated when creating a worker pool since it is provided in the poolId field. Corresponds to the JSON property name

Returns:

  • (String)


2853
2854
2855
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2853

def name
  @name
end

#stateString

Output only. State of the worker pool. Corresponds to the JSON property state

Returns:

  • (String)


2858
2859
2860
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2858

def state
  @state
end

#worker_configGoogle::Apis::RemotebuildexecutionV2::GoogleDevtoolsRemotebuildexecutionAdminV1alphaWorkerConfig

Defines the configuration to be used for a creating workers in the worker pool. Corresponds to the JSON property workerConfig



2864
2865
2866
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2864

def worker_config
  @worker_config
end

#worker_countFixnum

The desired number of workers in the worker pool. Must be a value between 0 and 1000. Corresponds to the JSON property workerCount

Returns:

  • (Fixnum)


2870
2871
2872
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2870

def worker_count
  @worker_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2877
2878
2879
2880
2881
2882
# File 'generated/google/apis/remotebuildexecution_v2/classes.rb', line 2877

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
  @worker_config = args[:worker_config] if args.key?(:worker_config)
  @worker_count = args[:worker_count] if args.key?(:worker_count)
end