Struct google_api_proto::google::cloud::compute::v1::AutoscalingPolicyScalingSchedule
source · pub struct AutoscalingPolicyScalingSchedule {
pub description: Option<String>,
pub disabled: Option<bool>,
pub duration_sec: Option<i32>,
pub min_required_replicas: Option<i32>,
pub schedule: Option<String>,
pub time_zone: Option<String>,
}
Expand description
Scaling based on user-defined schedule. The message describes a single scaling schedule. A scaling schedule changes the minimum number of VM instances an autoscaler can recommend, which can trigger scaling out.
Fields§
§description: Option<String>
A description of a scaling schedule.
disabled: Option<bool>
A boolean value that specifies whether a scaling schedule can influence autoscaler recommendations. If set to true, then a scaling schedule has no effect. This field is optional, and its value is false by default.
duration_sec: Option<i32>
The duration of time intervals, in seconds, for which this scaling schedule is to run. The minimum allowed value is 300. This field is required.
min_required_replicas: Option<i32>
The minimum number of VM instances that the autoscaler will recommend in time intervals starting according to schedule. This field is required.
schedule: Option<String>
The start timestamps of time intervals when this scaling schedule is to provide a scaling signal. This field uses the extended cron format (with an optional year field). The expression can describe a single timestamp if the optional year is set, in which case the scaling schedule runs once. The schedule is interpreted with respect to time_zone. This field is required. Note: These timestamps only describe when autoscaler starts providing the scaling signal. The VMs need additional time to become serving.
time_zone: Option<String>
The time zone to use when interpreting the schedule. The value of this field must be a time zone name from the tz database: https://en.wikipedia.org/wiki/Tz_database. This field is assigned a default value of “UTC” if left empty.
Implementations§
source§impl AutoscalingPolicyScalingSchedule
impl AutoscalingPolicyScalingSchedule
sourcepub fn time_zone(&self) -> &str
pub fn time_zone(&self) -> &str
Returns the value of time_zone
, or the default value if time_zone
is unset.
sourcepub fn duration_sec(&self) -> i32
pub fn duration_sec(&self) -> i32
Returns the value of duration_sec
, or the default value if duration_sec
is unset.
sourcepub fn disabled(&self) -> bool
pub fn disabled(&self) -> bool
Returns the value of disabled
, or the default value if disabled
is unset.
sourcepub fn min_required_replicas(&self) -> i32
pub fn min_required_replicas(&self) -> i32
Returns the value of min_required_replicas
, or the default value if min_required_replicas
is unset.
sourcepub fn schedule(&self) -> &str
pub fn schedule(&self) -> &str
Returns the value of schedule
, or the default value if schedule
is unset.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Returns the value of description
, or the default value if description
is unset.
Trait Implementations§
source§impl Clone for AutoscalingPolicyScalingSchedule
impl Clone for AutoscalingPolicyScalingSchedule
source§fn clone(&self) -> AutoscalingPolicyScalingSchedule
fn clone(&self) -> AutoscalingPolicyScalingSchedule
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Message for AutoscalingPolicyScalingSchedule
impl Message for AutoscalingPolicyScalingSchedule
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for AutoscalingPolicyScalingSchedule
impl PartialEq for AutoscalingPolicyScalingSchedule
source§fn eq(&self, other: &AutoscalingPolicyScalingSchedule) -> bool
fn eq(&self, other: &AutoscalingPolicyScalingSchedule) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AutoscalingPolicyScalingSchedule
Auto Trait Implementations§
impl Freeze for AutoscalingPolicyScalingSchedule
impl RefUnwindSafe for AutoscalingPolicyScalingSchedule
impl Send for AutoscalingPolicyScalingSchedule
impl Sync for AutoscalingPolicyScalingSchedule
impl Unpin for AutoscalingPolicyScalingSchedule
impl UnwindSafe for AutoscalingPolicyScalingSchedule
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request