pub struct StoragepoolNodepoolCreateParams {
pub l3: Option<bool>,
pub lnns: Vec<i32>,
pub name: String,
pub protection_policy: Option<String>,
pub tier: Option<String>,
}
Fields§
§l3: Option<bool>
Use SSDs in this node pool for L3 cache.
lnns: Vec<i32>
The nodes that are part of this node pool.
name: String
The node pool name.
protection_policy: Option<String>
The node pool protection policy.
tier: Option<String>
The name or ID of the node pool’s tier, if it is in a tier.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for StoragepoolNodepoolCreateParams
impl<'de> Deserialize<'de> for StoragepoolNodepoolCreateParams
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
Auto Trait Implementations§
impl Freeze for StoragepoolNodepoolCreateParams
impl RefUnwindSafe for StoragepoolNodepoolCreateParams
impl Send for StoragepoolNodepoolCreateParams
impl Sync for StoragepoolNodepoolCreateParams
impl Unpin for StoragepoolNodepoolCreateParams
impl UnwindSafe for StoragepoolNodepoolCreateParams
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
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>
Converts
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>
Converts
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