pub struct GetEncryptionScopeArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetEncryptionScopeArgsBuilder<S>
impl<S: State> GetEncryptionScopeArgsBuilder<S>
sourcepub fn build_struct(self) -> GetEncryptionScopeArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetEncryptionScopeArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn name(
self,
value: impl Into<Output<String>>,
) -> GetEncryptionScopeArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<String>>,
) -> GetEncryptionScopeArgsBuilder<SetName<S>>where
S::Name: IsUnset,
Required.
The name of this Storage Encryption Scope.
sourcepub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> GetEncryptionScopeArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
pub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> GetEncryptionScopeArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
Required.
The ID of the Storage Account where this Storage Encryption Scope exists.
Auto Trait Implementations§
impl<S> Freeze for GetEncryptionScopeArgsBuilder<S>
impl<S> RefUnwindSafe for GetEncryptionScopeArgsBuilder<S>
impl<S> Send for GetEncryptionScopeArgsBuilder<S>
impl<S> Sync for GetEncryptionScopeArgsBuilder<S>
impl<S> Unpin for GetEncryptionScopeArgsBuilder<S>
impl<S> UnwindSafe for GetEncryptionScopeArgsBuilder<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