pub struct EncryptionScopeArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> EncryptionScopeArgsBuilder<S>
impl<S: State> EncryptionScopeArgsBuilder<S>
sourcepub fn build_struct(self) -> EncryptionScopeArgswhere
S: IsComplete,
pub fn build_struct(self) -> EncryptionScopeArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn infrastructure_encryption_required(
self,
value: impl Into<Output<Option<bool>>>,
) -> EncryptionScopeArgsBuilder<SetInfrastructureEncryptionRequired<S>>where
S::InfrastructureEncryptionRequired: IsUnset,
pub fn infrastructure_encryption_required(
self,
value: impl Into<Output<Option<bool>>>,
) -> EncryptionScopeArgsBuilder<SetInfrastructureEncryptionRequired<S>>where
S::InfrastructureEncryptionRequired: IsUnset,
sourcepub fn maybe_infrastructure_encryption_required(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> EncryptionScopeArgsBuilder<SetInfrastructureEncryptionRequired<S>>where
S::InfrastructureEncryptionRequired: IsUnset,
pub fn maybe_infrastructure_encryption_required(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> EncryptionScopeArgsBuilder<SetInfrastructureEncryptionRequired<S>>where
S::InfrastructureEncryptionRequired: IsUnset,
sourcepub fn key_vault_key_id(
self,
value: impl Into<Output<Option<String>>>,
) -> EncryptionScopeArgsBuilder<SetKeyVaultKeyId<S>>where
S::KeyVaultKeyId: IsUnset,
pub fn key_vault_key_id(
self,
value: impl Into<Output<Option<String>>>,
) -> EncryptionScopeArgsBuilder<SetKeyVaultKeyId<S>>where
S::KeyVaultKeyId: IsUnset,
sourcepub fn maybe_key_vault_key_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> EncryptionScopeArgsBuilder<SetKeyVaultKeyId<S>>where
S::KeyVaultKeyId: IsUnset,
pub fn maybe_key_vault_key_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> EncryptionScopeArgsBuilder<SetKeyVaultKeyId<S>>where
S::KeyVaultKeyId: IsUnset,
sourcepub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> EncryptionScopeArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> EncryptionScopeArgsBuilder<SetName<S>>where
S::Name: IsUnset,
sourcepub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> EncryptionScopeArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> EncryptionScopeArgsBuilder<SetName<S>>where
S::Name: IsUnset,
sourcepub fn source(
self,
value: impl Into<Output<String>>,
) -> EncryptionScopeArgsBuilder<SetSource<S>>where
S::Source: IsUnset,
pub fn source(
self,
value: impl Into<Output<String>>,
) -> EncryptionScopeArgsBuilder<SetSource<S>>where
S::Source: IsUnset,
Required.
The source of the Storage Encryption Scope. Possible values are Microsoft.KeyVault
and Microsoft.Storage
.
sourcepub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> EncryptionScopeArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
pub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> EncryptionScopeArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
Required.
The ID of the Storage Account where this Storage Encryption Scope is created. Changing this forces a new Storage Encryption Scope to be created.
Auto Trait Implementations§
impl<S> Freeze for EncryptionScopeArgsBuilder<S>
impl<S> RefUnwindSafe for EncryptionScopeArgsBuilder<S>
impl<S> Send for EncryptionScopeArgsBuilder<S>
impl<S> Sync for EncryptionScopeArgsBuilder<S>
impl<S> Unpin for EncryptionScopeArgsBuilder<S>
impl<S> UnwindSafe for EncryptionScopeArgsBuilder<S>
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