#[non_exhaustive]pub struct AzureDatabaseEncryption {
pub key_id: String,
/* private fields */
}๐Deprecated
Expand description
Configuration related to application-layer secrets encryption.
Anthos clusters on Azure encrypts your Kubernetes data at rest in etcd using Azure Key Vault.
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.key_id: String๐Deprecated
Required. The ARM ID of the Azure Key Vault key to encrypt / decrypt data.
For example:
/subscriptions/<subscription-id>/resourceGroups/<resource-group-id>/providers/Microsoft.KeyVault/vaults/<key-vault-id>/keys/<key-name>
Encryption will always take the latest version of the key and hence
specific version is not supported.
Implementationsยง
Trait Implementationsยง
Sourceยงimpl Clone for AzureDatabaseEncryption
impl Clone for AzureDatabaseEncryption
Sourceยงfn clone(&self) -> AzureDatabaseEncryption
fn clone(&self) -> AzureDatabaseEncryption
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 AzureDatabaseEncryption
impl Debug for AzureDatabaseEncryption
Sourceยงimpl Default for AzureDatabaseEncryption
impl Default for AzureDatabaseEncryption
Sourceยงfn default() -> AzureDatabaseEncryption
fn default() -> AzureDatabaseEncryption
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl Message for AzureDatabaseEncryption
impl Message for AzureDatabaseEncryption
Sourceยงimpl PartialEq for AzureDatabaseEncryption
impl PartialEq for AzureDatabaseEncryption
impl StructuralPartialEq for AzureDatabaseEncryption
Auto Trait Implementationsยง
impl Freeze for AzureDatabaseEncryption
impl RefUnwindSafe for AzureDatabaseEncryption
impl Send for AzureDatabaseEncryption
impl Sync for AzureDatabaseEncryption
impl Unpin for AzureDatabaseEncryption
impl UnsafeUnpin for AzureDatabaseEncryption
impl UnwindSafe for AzureDatabaseEncryption
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