pub struct Autoscaler {Show 14 fields
pub autoscaling_policy: Option<AutoscalingPolicy>,
pub creation_timestamp: Option<String>,
pub description: Option<String>,
pub id: Option<u64>,
pub kind: Option<String>,
pub name: Option<String>,
pub recommended_size: Option<i32>,
pub region: Option<String>,
pub scaling_schedule_status: Option<HashMap<String, ScalingScheduleStatus>>,
pub self_link: Option<String>,
pub status: Option<String>,
pub status_details: Option<Vec<AutoscalerStatusDetails>>,
pub target: Option<String>,
pub zone: Option<String>,
}
Expand description
Represents an Autoscaler resource. Google Compute Engine has two Autoscaler resources: * Zonal * Regional 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.
§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).
- aggregated list autoscalers (none)
- delete autoscalers (none)
- get autoscalers (response)
- insert autoscalers (request)
- list autoscalers (none)
- patch autoscalers (request)
- update autoscalers (request)
- get region autoscalers (response)
- insert region autoscalers (request)
- patch region autoscalers (request)
- update region autoscalers (request)
Fields§
§autoscaling_policy: Option<AutoscalingPolicy>
The configuration parameters for the autoscaling algorithm. You can define one or more signals 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%.
creation_timestamp: Option<String>
[Output Only] Creation timestamp in RFC3339 text format.
description: Option<String>
An optional description of this resource. Provide this property when you create the resource.
id: Option<u64>
[Output Only] The unique identifier for the resource. This identifier is defined by the server.
kind: Option<String>
[Output Only] Type of the resource. Always compute#autoscaler for autoscalers.
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.
recommended_size: Option<i32>
[Output Only] Target recommended MIG size (number of instances) computed by autoscaler. Autoscaler calculates the recommended MIG size even when the autoscaling policy mode is different from ON. This field is empty when autoscaler is not connected to an existing managed instance group or autoscaler did not generate its prediction.
region: Option<String>
[Output Only] URL of the region where the instance group resides (for autoscalers living in regional scope).
scaling_schedule_status: Option<HashMap<String, ScalingScheduleStatus>>
[Output Only] Status information of existing scaling schedules.
self_link: Option<String>
[Output Only] Server-defined URL for the resource.
status: Option<String>
[Output Only] The status of the autoscaler configuration. Current set of possible values: - PENDING: Autoscaler backend hasn’t read new/updated configuration. - DELETING: Configuration is being deleted. - ACTIVE: Configuration is acknowledged to be effective. Some warnings might be present in the statusDetails field. - ERROR: Configuration has errors. Actionable for users. Details are present in the statusDetails field. New values might be added in the future.
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.
target: Option<String>
URL of the managed instance group that this autoscaler will scale. This field is required when creating an autoscaler.
zone: Option<String>
[Output Only] URL of the zone where the instance group resides (for autoscalers living in zonal scope).
Trait Implementations§
Source§impl Clone for Autoscaler
impl Clone for Autoscaler
Source§fn clone(&self) -> Autoscaler
fn clone(&self) -> Autoscaler
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for Autoscaler
impl Debug for Autoscaler
Source§impl Default for Autoscaler
impl Default for Autoscaler
Source§fn default() -> Autoscaler
fn default() -> Autoscaler
Source§impl<'de> Deserialize<'de> for Autoscaler
impl<'de> Deserialize<'de> for Autoscaler
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for Autoscaler
impl Serialize for Autoscaler
impl RequestValue for Autoscaler
impl Resource for Autoscaler
impl ResponseResult for Autoscaler
Auto Trait Implementations§
impl Freeze for Autoscaler
impl RefUnwindSafe for Autoscaler
impl Send for Autoscaler
impl Sync for Autoscaler
impl Unpin for Autoscaler
impl UnwindSafe for Autoscaler
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more