pub struct LocalUserArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> LocalUserArgsBuilder<S>
impl<S: State> LocalUserArgsBuilder<S>
sourcepub fn build_struct(self) -> LocalUserArgswhere
S: IsComplete,
pub fn build_struct(self) -> LocalUserArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn home_directory(
self,
value: impl Into<Output<Option<String>>>,
) -> LocalUserArgsBuilder<SetHomeDirectory<S>>where
S::HomeDirectory: IsUnset,
pub fn home_directory(
self,
value: impl Into<Output<Option<String>>>,
) -> LocalUserArgsBuilder<SetHomeDirectory<S>>where
S::HomeDirectory: IsUnset,
sourcepub fn maybe_home_directory(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> LocalUserArgsBuilder<SetHomeDirectory<S>>where
S::HomeDirectory: IsUnset,
pub fn maybe_home_directory(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> LocalUserArgsBuilder<SetHomeDirectory<S>>where
S::HomeDirectory: IsUnset,
sourcepub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> LocalUserArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> LocalUserArgsBuilder<SetName<S>>where
S::Name: IsUnset,
sourcepub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> LocalUserArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> LocalUserArgsBuilder<SetName<S>>where
S::Name: IsUnset,
sourcepub fn permission_scopes(
self,
value: impl Into<Output<Option<Vec<LocalUserPermissionScope>>>>,
) -> LocalUserArgsBuilder<SetPermissionScopes<S>>where
S::PermissionScopes: IsUnset,
pub fn permission_scopes(
self,
value: impl Into<Output<Option<Vec<LocalUserPermissionScope>>>>,
) -> LocalUserArgsBuilder<SetPermissionScopes<S>>where
S::PermissionScopes: IsUnset,
sourcepub fn maybe_permission_scopes(
self,
value: Option<impl Into<Output<Option<Vec<LocalUserPermissionScope>>>>>,
) -> LocalUserArgsBuilder<SetPermissionScopes<S>>where
S::PermissionScopes: IsUnset,
pub fn maybe_permission_scopes(
self,
value: Option<impl Into<Output<Option<Vec<LocalUserPermissionScope>>>>>,
) -> LocalUserArgsBuilder<SetPermissionScopes<S>>where
S::PermissionScopes: IsUnset,
sourcepub fn ssh_key_enabled(
self,
value: impl Into<Output<Option<bool>>>,
) -> LocalUserArgsBuilder<SetSshKeyEnabled<S>>where
S::SshKeyEnabled: IsUnset,
pub fn ssh_key_enabled(
self,
value: impl Into<Output<Option<bool>>>,
) -> LocalUserArgsBuilder<SetSshKeyEnabled<S>>where
S::SshKeyEnabled: IsUnset,
sourcepub fn maybe_ssh_key_enabled(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> LocalUserArgsBuilder<SetSshKeyEnabled<S>>where
S::SshKeyEnabled: IsUnset,
pub fn maybe_ssh_key_enabled(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> LocalUserArgsBuilder<SetSshKeyEnabled<S>>where
S::SshKeyEnabled: IsUnset,
sourcepub fn ssh_password_enabled(
self,
value: impl Into<Output<Option<bool>>>,
) -> LocalUserArgsBuilder<SetSshPasswordEnabled<S>>where
S::SshPasswordEnabled: IsUnset,
pub fn ssh_password_enabled(
self,
value: impl Into<Output<Option<bool>>>,
) -> LocalUserArgsBuilder<SetSshPasswordEnabled<S>>where
S::SshPasswordEnabled: IsUnset,
sourcepub fn maybe_ssh_password_enabled(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> LocalUserArgsBuilder<SetSshPasswordEnabled<S>>where
S::SshPasswordEnabled: IsUnset,
pub fn maybe_ssh_password_enabled(
self,
value: Option<impl Into<Output<Option<bool>>>>,
) -> LocalUserArgsBuilder<SetSshPasswordEnabled<S>>where
S::SshPasswordEnabled: IsUnset,
sourcepub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> LocalUserArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
pub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> LocalUserArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
Required.
The ID of the Storage Account that this Storage Account Local User resides in. Changing this forces a new Storage Account Local User to be created.
Auto Trait Implementations§
impl<S> Freeze for LocalUserArgsBuilder<S>
impl<S> RefUnwindSafe for LocalUserArgsBuilder<S>
impl<S> Send for LocalUserArgsBuilder<S>
impl<S> Sync for LocalUserArgsBuilder<S>
impl<S> Unpin for LocalUserArgsBuilder<S>
impl<S> UnwindSafe for LocalUserArgsBuilder<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