Struct google_container1::NodePoolAutoscaling [] [src]

pub struct NodePoolAutoscaling {
    pub min_node_count: Option<i32>,
    pub enabled: Option<bool>,
    pub max_node_count: Option<i32>,
}

NodePoolAutoscaling contains information required by cluster autoscaler to adjust the size of the node pool to the current cluster usage.

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

Fields

Minimum number of nodes in the NodePool. Must be >= 1 and <= max_node_count.

Is autoscaling enabled for this node pool.

Maximum number of nodes in the NodePool. Must be >= min_node_count. There has to enough quota to scale up the cluster.

Trait Implementations

impl Default for NodePoolAutoscaling
[src]

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

impl Clone for NodePoolAutoscaling
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NodePoolAutoscaling
[src]

Formats the value using the given formatter.

impl Part for NodePoolAutoscaling
[src]