[][src]Struct google_compute1::AutoscalingPolicyCustomMetricUtilization

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

metric: Option<String>

The identifier (type) of the Stackdriver Monitoring metric. The metric cannot have negative values.

The metric must have a value type of INT64 or DOUBLE.

utilization_target_type: Option<String>

Defines how target utilization value is expressed for a Stackdriver Monitoring metric. Either GAUGE, DELTA_PER_SECOND, or DELTA_PER_MINUTE.

utilization_target: Option<f64>

The target value of the metric that autoscaler should maintain. This must be a positive value. A utilization metric scales number of virtual machines handling requests to increase or decrease proportionally to the metric.

For example, a good metric to use as a utilization_target is compute.googleapis.com/instance/network/received_bytes_count. The autoscaler will work to keep this value constant for each of the instances.

Trait Implementations

impl Part for AutoscalingPolicyCustomMetricUtilization[src]

impl Default for AutoscalingPolicyCustomMetricUtilization[src]

impl Clone for AutoscalingPolicyCustomMetricUtilization[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for AutoscalingPolicyCustomMetricUtilization[src]

impl Serialize for AutoscalingPolicyCustomMetricUtilization[src]

impl<'de> Deserialize<'de> for AutoscalingPolicyCustomMetricUtilization[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]