[][src]Struct google_autoscaler1_beta2::Autoscaler

pub struct Autoscaler {
    pub kind: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub autoscaling_policy: Option<AutoscalingPolicy>,
    pub creation_timestamp: Option<String>,
    pub id: Option<String>,
    pub self_link: Option<String>,
    pub target: Option<String>,
}

Cloud Autoscaler resource.

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

kind: Option<String>

Type of resource.

description: Option<String>

An optional textual description of the resource provided by the client.

name: Option<String>

Name of the Autoscaler resource. Must be unique per project and zone.

autoscaling_policy: Option<AutoscalingPolicy>

Configuration parameters for autoscaling algorithm.

creation_timestamp: Option<String>

[Output Only] Creation timestamp in RFC3339 text format.

id: Option<String>

[Output Only] Unique identifier for the resource; defined by the server.

self_link: Option<String>

[Output Only] A self-link to the Autoscaler configuration resource.

target: Option<String>

URL to the entity which will be autoscaled. Currently the only supported value is ReplicaPool?s URL. Note: it is illegal to specify multiple Autoscalers for the same target.

Trait Implementations

impl Clone for Autoscaler[src]

impl Debug for Autoscaler[src]

impl Default for Autoscaler[src]

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

impl RequestValue for Autoscaler[src]

impl Resource for Autoscaler[src]

impl ResponseResult for Autoscaler[src]

impl Serialize for Autoscaler[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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 = 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> Typeable for T where
    T: Any