pub struct AutoscalingConfigOverrides {
pub autoscaling_limits: Option<AutoscalingLimits>,
pub autoscaling_target_high_priority_cpu_utilization_percent: Option<i32>,
}Expand description
Overrides the top-level autoscaling configuration for the replicas identified by replica_selection. All fields in this message are optional. Any unspecified fields will use the corresponding values from the top-level autoscaling configuration.
This type is not used in any activity, and only used as part of another schema.
Fields§
§autoscaling_limits: Option<AutoscalingLimits>Optional. If specified, overrides the min/max limit in the top-level autoscaling configuration for the selected replicas.
autoscaling_target_high_priority_cpu_utilization_percent: Option<i32>Optional. If specified, overrides the autoscaling target high_priority_cpu_utilization_percent in the top-level autoscaling configuration for the selected replicas.
Trait Implementations§
Source§impl Clone for AutoscalingConfigOverrides
impl Clone for AutoscalingConfigOverrides
Source§fn clone(&self) -> AutoscalingConfigOverrides
fn clone(&self) -> AutoscalingConfigOverrides
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AutoscalingConfigOverrides
impl Debug for AutoscalingConfigOverrides
Source§impl Default for AutoscalingConfigOverrides
impl Default for AutoscalingConfigOverrides
Source§fn default() -> AutoscalingConfigOverrides
fn default() -> AutoscalingConfigOverrides
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutoscalingConfigOverrides
impl<'de> Deserialize<'de> for AutoscalingConfigOverrides
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for AutoscalingConfigOverrides
Auto Trait Implementations§
impl Freeze for AutoscalingConfigOverrides
impl RefUnwindSafe for AutoscalingConfigOverrides
impl Send for AutoscalingConfigOverrides
impl Sync for AutoscalingConfigOverrides
impl Unpin for AutoscalingConfigOverrides
impl UnwindSafe for AutoscalingConfigOverrides
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
Mutably borrows from an owned value. Read more