Class: Google::Apis::AutoscalerV1beta2::AutoscalingPolicyCpuUtilization
- Inherits:
-
Object
- Object
- Google::Apis::AutoscalerV1beta2::AutoscalingPolicyCpuUtilization
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/autoscaler_v1beta2/classes.rb,
generated/google/apis/autoscaler_v1beta2/representations.rb,
generated/google/apis/autoscaler_v1beta2/representations.rb
Overview
CPU utilization policy.
Instance Attribute Summary collapse
-
#utilization_target ⇒ Float
The target utilization that the Autoscaler should maintain.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AutoscalingPolicyCpuUtilization
constructor
A new instance of AutoscalingPolicyCpuUtilization.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AutoscalingPolicyCpuUtilization
Returns a new instance of AutoscalingPolicyCpuUtilization
184 185 186 |
# File 'generated/google/apis/autoscaler_v1beta2/classes.rb', line 184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#utilization_target ⇒ Float
The target utilization that the Autoscaler should maintain. It is represented
as a fraction of used cores. For example: 6 cores used in 8-core VM are
represented here as 0.75. Must be a float value between (0, 1]. If not defined,
the default is 0.8.
Corresponds to the JSON property utilizationTarget
182 183 184 |
# File 'generated/google/apis/autoscaler_v1beta2/classes.rb', line 182 def utilization_target @utilization_target end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
189 190 191 |
# File 'generated/google/apis/autoscaler_v1beta2/classes.rb', line 189 def update!(**args) @utilization_target = args[:utilization_target] if args.key?(:utilization_target) end |