Class: Google::Apis::ComputeAlpha::AutoscalingPolicyScaleDownControl

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AutoscalingPolicyScaleDownControl

Returns a new instance of AutoscalingPolicyScaleDownControl.



2593
2594
2595
# File 'generated/google/apis/compute_alpha/classes.rb', line 2593

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

Instance Attribute Details

#max_scaled_down_replicasGoogle::Apis::ComputeAlpha::FixedOrPercent

Encapsulates numeric value that can be either absolute or relative. Corresponds to the JSON property maxScaledDownReplicas



2585
2586
2587
# File 'generated/google/apis/compute_alpha/classes.rb', line 2585

def max_scaled_down_replicas
  @max_scaled_down_replicas
end

#time_window_secFixnum

How far back autoscaling looks when computing recommendations to include directives regarding slower scale in, as described above. Corresponds to the JSON property timeWindowSec

Returns:

  • (Fixnum)


2591
2592
2593
# File 'generated/google/apis/compute_alpha/classes.rb', line 2591

def time_window_sec
  @time_window_sec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2598
2599
2600
2601
# File 'generated/google/apis/compute_alpha/classes.rb', line 2598

def update!(**args)
  @max_scaled_down_replicas = args[:max_scaled_down_replicas] if args.key?(:max_scaled_down_replicas)
  @time_window_sec = args[:time_window_sec] if args.key?(:time_window_sec)
end