pub struct KeyVersionSpec {
pub algorithm: Option<String>,
pub cloud_kms_key_version: Option<String>,
}Expand description
A Cloud KMS key configuration that a CertificateAuthority will use.
This type is not used in any activity, and only used as part of another schema.
Fields§
§algorithm: Option<String>The algorithm to use for creating a managed Cloud KMS key for a for a simplified experience. All managed keys will be have their ProtectionLevel as HSM.
cloud_kms_key_version: Option<String>The resource name for an existing Cloud KMS CryptoKeyVersion in the format projects/*/locations/*/keyRings/*/cryptoKeys/*/cryptoKeyVersions/*. This option enables full flexibility in the key’s capabilities and properties.
Trait Implementations§
Source§impl Clone for KeyVersionSpec
impl Clone for KeyVersionSpec
Source§fn clone(&self) -> KeyVersionSpec
fn clone(&self) -> KeyVersionSpec
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 KeyVersionSpec
impl Debug for KeyVersionSpec
Source§impl Default for KeyVersionSpec
impl Default for KeyVersionSpec
Source§fn default() -> KeyVersionSpec
fn default() -> KeyVersionSpec
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KeyVersionSpec
impl<'de> Deserialize<'de> for KeyVersionSpec
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
Source§impl Serialize for KeyVersionSpec
impl Serialize for KeyVersionSpec
impl Part for KeyVersionSpec
Auto Trait Implementations§
impl Freeze for KeyVersionSpec
impl RefUnwindSafe for KeyVersionSpec
impl Send for KeyVersionSpec
impl Sync for KeyVersionSpec
impl Unpin for KeyVersionSpec
impl UnwindSafe for KeyVersionSpec
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