Class: Google::Apis::ComputeAlpha::AutoscalingPolicyScaleInControl
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::AutoscalingPolicyScaleInControl
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Configuration that allows for slower scale in so that even if Autoscaler recommends an abrupt scale in of a MIG, it will be throttled as specified by the parameters below.
Instance Attribute Summary collapse
-
#max_scaled_in_replicas ⇒ Google::Apis::ComputeAlpha::FixedOrPercent
Encapsulates numeric value that can be either absolute or relative.
-
#time_window_sec ⇒ Fixnum
How far back autoscaling looks when computing recommendations to include directives regarding slower scale in, as described above.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AutoscalingPolicyScaleInControl
constructor
A new instance of AutoscalingPolicyScaleInControl.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AutoscalingPolicyScaleInControl
Returns a new instance of AutoscalingPolicyScaleInControl.
2903 2904 2905 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 2903 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_scaled_in_replicas ⇒ Google::Apis::ComputeAlpha::FixedOrPercent
Encapsulates numeric value that can be either absolute or relative.
Corresponds to the JSON property maxScaledInReplicas
2895 2896 2897 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 2895 def max_scaled_in_replicas @max_scaled_in_replicas end |
#time_window_sec ⇒ Fixnum
How far back autoscaling looks when computing recommendations to include
directives regarding slower scale in, as described above.
Corresponds to the JSON property timeWindowSec
2901 2902 2903 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 2901 def time_window_sec @time_window_sec end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2908 2909 2910 2911 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 2908 def update!(**args) @max_scaled_in_replicas = args[:max_scaled_in_replicas] if args.key?(:max_scaled_in_replicas) @time_window_sec = args[:time_window_sec] if args.key?(:time_window_sec) end |