[][src]Struct google_compute1::Autoscaler

pub struct Autoscaler {
    pub status: Option<String>,
    pub kind: Option<String>,
    pub description: Option<String>,
    pub zone: Option<String>,
    pub name: Option<String>,
    pub region: Option<String>,
    pub autoscaling_policy: Option<AutoscalingPolicy>,
    pub id: Option<String>,
    pub creation_timestamp: Option<String>,
    pub status_details: Option<Vec<AutoscalerStatusDetails>>,
    pub self_link: Option<String>,
    pub target: Option<String>,
}

Represents an Autoscaler resource.

Use autoscalers to automatically add or delete instances from a managed instance group according to your defined autoscaling policy. For more information, read Autoscaling Groups of Instances.

For zonal managed instance groups resource, use the autoscaler resource.

For regional managed instance groups, use the regionAutoscalers resource. (== resource_for beta.autoscalers ==) (== resource_for v1.autoscalers ==) (== resource_for beta.regionAutoscalers ==) (== resource_for v1.regionAutoscalers ==)

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

status: Option<String>

[Output Only] The status of the autoscaler configuration.

kind: Option<String>

[Output Only] Type of the resource. Always compute#autoscaler for autoscalers.

description: Option<String>

An optional description of this resource. Provide this property when you create the resource.

zone: Option<String>

[Output Only] URL of the zone where the instance group resides (for autoscalers living in zonal scope).

name: Option<String>

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

region: Option<String>

[Output Only] URL of the region where the instance group resides (for autoscalers living in regional scope).

autoscaling_policy: Option<AutoscalingPolicy>

The configuration parameters for the autoscaling algorithm. You can define one or more of the policies for an autoscaler: cpuUtilization, customMetricUtilizations, and loadBalancingUtilization.

If none of these are specified, the default will be to autoscale based on cpuUtilization to 0.6 or 60%.

id: Option<String>

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

status_details: Option<Vec<AutoscalerStatusDetails>>

[Output Only] Human-readable details about the current state of the autoscaler. Read the documentation for Commonly returned status messages for examples of status messages you might encounter.

self_link: Option<String>

[Output Only] Server-defined URL for the resource.

target: Option<String>

URL of the managed instance group that this autoscaler will scale.

Trait Implementations

impl Resource for Autoscaler[src]

impl ResponseResult for Autoscaler[src]

impl RequestValue for Autoscaler[src]

impl Clone for Autoscaler[src]

impl Default for Autoscaler[src]

impl Debug for Autoscaler[src]

impl Serialize for Autoscaler[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

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> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<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

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