pub struct CloudPoolExtended {
pub accounts: Option<Vec<String>>,
pub birth_cluster_id: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
pub vendor: Option<String>,
pub id: Option<String>,
pub state: Option<String>,
pub state_details: Option<String>,
pub _type: Option<String>,
}
Fields§
§accounts: Option<Vec<String>>
A list of valid names for the accounts in this pool. There is currently only one account allowed per pool.
birth_cluster_id: Option<String>
The guid of the cluster where this pool was created
description: Option<String>
A brief description of this pool
name: Option<String>
A unique name for this pool
vendor: Option<String>
A string identifier of the cloud services vendor
id: Option<String>
A unique name for this pool
state: Option<String>
Indicates whether this pool is in a good state ("OK") or disabled ("disabled")
state_details: Option<String>
Gives further information to describe the state of this pool
_type: Option<String>
The type of cloud protocol required. E.g., "isilon" for EMC Isilon, "ecs" for EMC ECS Appliance, "virtustream" for Virtustream Storage Cloud, "azure" for Microsoft Azure and "s3" for Amazon S3
Trait Implementations§
Source§impl Debug for CloudPoolExtended
impl Debug for CloudPoolExtended
Source§impl<'de> Deserialize<'de> for CloudPoolExtended
impl<'de> Deserialize<'de> for CloudPoolExtended
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 CloudPoolExtended
impl RefUnwindSafe for CloudPoolExtended
impl Send for CloudPoolExtended
impl Sync for CloudPoolExtended
impl Unpin for CloudPoolExtended
impl UnwindSafe for CloudPoolExtended
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