Class: Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale
- Inherits:
-
Object
- Object
- Google::Apis::RemotebuildexecutionV1alpha::GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/remotebuildexecution_v1alpha/classes.rb,
generated/google/apis/remotebuildexecution_v1alpha/representations.rb,
generated/google/apis/remotebuildexecution_v1alpha/representations.rb
Overview
Autoscale defines the autoscaling policy of a worker pool.
Instance Attribute Summary collapse
-
#max_size ⇒ Fixnum
The maximal number of workers.
-
#min_size ⇒ Fixnum
The minimal number of workers.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale
constructor
A new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale
Returns a new instance of GoogleDevtoolsRemotebuildexecutionAdminV1alphaAutoscale.
1622 1623 1624 |
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1622 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_size ⇒ Fixnum
The maximal number of workers. Must be equal to or greater than min_size.
Corresponds to the JSON property maxSize
1615 1616 1617 |
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1615 def max_size @max_size end |
#min_size ⇒ Fixnum
The minimal number of workers. Must be greater than 0.
Corresponds to the JSON property minSize
1620 1621 1622 |
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1620 def min_size @min_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1627 1628 1629 1630 |
# File 'generated/google/apis/remotebuildexecution_v1alpha/classes.rb', line 1627 def update!(**args) @max_size = args[:max_size] if args.key?(:max_size) @min_size = args[:min_size] if args.key?(:min_size) end |