Class: Google::Apis::ComputeAlpha::AutoscalingPolicyLoadBalancingUtilization

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 parameters of autoscaling based on load balancing.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AutoscalingPolicyLoadBalancingUtilization

Returns a new instance of AutoscalingPolicyLoadBalancingUtilization.



2566
2567
2568
# File 'generated/google/apis/compute_alpha/classes.rb', line 2566

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

Instance Attribute Details

#utilization_targetFloat

Fraction of backend capacity utilization (set in HTTP(S) load balancing configuration) that the autoscaler maintains. Must be a positive float value. If not defined, the default is 0.8. Corresponds to the JSON property utilizationTarget

Returns:

  • (Float)


2564
2565
2566
# File 'generated/google/apis/compute_alpha/classes.rb', line 2564

def utilization_target
  @utilization_target
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2571
2572
2573
# File 'generated/google/apis/compute_alpha/classes.rb', line 2571

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