#[non_exhaustive]pub struct SoleTenantConfig {
pub node_affinities: Vec<NodeAffinity>,
pub min_node_cpus: Option<i32>,
/* private fields */
}Expand description
SoleTenantConfig contains the NodeAffinities to specify what shared sole tenant node groups should back the node pool.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.node_affinities: Vec<NodeAffinity>NodeAffinities used to match to a shared sole tenant node group.
min_node_cpus: Option<i32>Optional. The minimum number of virtual CPUs this instance will consume when running on a sole-tenant node. This field can only be set if the node pool is created in a shared sole-tenant node group.
Implementations§
Source§impl SoleTenantConfig
impl SoleTenantConfig
pub fn new() -> Self
Sourcepub fn set_node_affinities<T, V>(self, v: T) -> Self
pub fn set_node_affinities<T, V>(self, v: T) -> Self
Sets the value of node_affinities.
Sourcepub fn set_min_node_cpus<T>(self, v: T) -> Self
pub fn set_min_node_cpus<T>(self, v: T) -> Self
Sets the value of min_node_cpus.
Sourcepub fn set_or_clear_min_node_cpus<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_min_node_cpus<T>(self, v: Option<T>) -> Self
Sets or clears the value of min_node_cpus.
Trait Implementations§
Source§impl Clone for SoleTenantConfig
impl Clone for SoleTenantConfig
Source§fn clone(&self) -> SoleTenantConfig
fn clone(&self) -> SoleTenantConfig
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 SoleTenantConfig
impl Debug for SoleTenantConfig
Source§impl Default for SoleTenantConfig
impl Default for SoleTenantConfig
Source§fn default() -> SoleTenantConfig
fn default() -> SoleTenantConfig
Returns the “default value” for a type. Read more
Source§impl Message for SoleTenantConfig
impl Message for SoleTenantConfig
Source§impl PartialEq for SoleTenantConfig
impl PartialEq for SoleTenantConfig
impl StructuralPartialEq for SoleTenantConfig
Auto Trait Implementations§
impl Freeze for SoleTenantConfig
impl RefUnwindSafe for SoleTenantConfig
impl Send for SoleTenantConfig
impl Sync for SoleTenantConfig
impl Unpin for SoleTenantConfig
impl UnwindSafe for SoleTenantConfig
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