Struct google_autoscaler1_beta2::AutoscalingPolicyCustomMetricUtilization[][src]

pub struct AutoscalingPolicyCustomMetricUtilization {
    pub metric: Option<String>,
    pub utilization_target_type: Option<String>,
    pub utilization_target: Option<f64>,
}

Custom utilization metric policy.

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

Fields

Identifier of the metric. It should be a Cloud Monitoring metric. The metric can not have negative values. The metric should be an utilization metric (increasing number of VMs handling requests x times should reduce average value of the metric roughly x times). For example you could use: compute.googleapis.com/instance/network/received_bytes_count.

Defines type in which utilization_target is expressed.

Target value of the metric which Autoscaler should maintain. Must be a positive value.

Trait Implementations

impl Default for AutoscalingPolicyCustomMetricUtilization
[src]

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

impl Clone for AutoscalingPolicyCustomMetricUtilization
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for AutoscalingPolicyCustomMetricUtilization
[src]

Formats the value using the given formatter. Read more

impl Part for AutoscalingPolicyCustomMetricUtilization
[src]

Auto Trait Implementations