Struct google_autoscaler1_beta2::AutoscalingPolicyLoadBalancingUtilization[][src]

pub struct AutoscalingPolicyLoadBalancingUtilization {
    pub utilization_target: Option<f64>,
}

Load balancing utilization policy.

This type is not used in any activity, and only used as part of another schema.

Fields

Fraction of backend capacity utilization (set in HTTP load balancing configuration) that Autoscaler should maintain. Must be a positive float value. If not defined, the default is 0.8. For example if your maxRatePerInstance capacity (in HTTP Load Balancing configuration) is set at 10 and you would like to keep number of instances such that each instance receives 7 QPS on average, set this to 0.7.

Trait Implementations

impl Default for AutoscalingPolicyLoadBalancingUtilization
[src]

Returns the "default value" for a type. Read more

impl Clone for AutoscalingPolicyLoadBalancingUtilization
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AutoscalingPolicyLoadBalancingUtilization
[src]

Formats the value using the given formatter. Read more

impl Part for AutoscalingPolicyLoadBalancingUtilization
[src]

Auto Trait Implementations