pub struct LicenseLicenseCreateParams {
pub evaluation: Option<Vec<String>>,
pub license_file_content: Option<String>,
pub license_file_path: Option<String>,
}
Fields§
§evaluation: Option<Vec<String>>
A list of evaluation licenses to enable on the cluster.
license_file_content: Option<String>
License file string content. The license file is obtained from EMC’s SLC web portal. Do not use with the license_file_path option.
license_file_path: Option<String>
Path to new license file, must be under /ifs. The license file is obtained from EMC’s SLC web portal. Do not include the path when only enabling evaluation licenses. Do not use with the license_file_content option.
Trait Implementations§
Source§impl Debug for LicenseLicenseCreateParams
impl Debug for LicenseLicenseCreateParams
Source§impl<'de> Deserialize<'de> for LicenseLicenseCreateParams
impl<'de> Deserialize<'de> for LicenseLicenseCreateParams
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 LicenseLicenseCreateParams
impl RefUnwindSafe for LicenseLicenseCreateParams
impl Send for LicenseLicenseCreateParams
impl Sync for LicenseLicenseCreateParams
impl Unpin for LicenseLicenseCreateParams
impl UnwindSafe for LicenseLicenseCreateParams
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