pub struct SyncCloudEndpointArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> SyncCloudEndpointArgsBuilder<S>
impl<S: State> SyncCloudEndpointArgsBuilder<S>
sourcepub fn build_struct(self) -> SyncCloudEndpointArgswhere
S: IsComplete,
pub fn build_struct(self) -> SyncCloudEndpointArgswhere
S: IsComplete,
Finish building and return the requested object
Required.
The Storage Share name to be synchronized in this Storage Sync Cloud Endpoint. Changing this forces a new Storage Sync Cloud Endpoint to be created.
sourcepub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> SyncCloudEndpointArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<Option<String>>>,
) -> SyncCloudEndpointArgsBuilder<SetName<S>>where
S::Name: IsUnset,
sourcepub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SyncCloudEndpointArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn maybe_name(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SyncCloudEndpointArgsBuilder<SetName<S>>where
S::Name: IsUnset,
sourcepub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> SyncCloudEndpointArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
pub fn storage_account_id(
self,
value: impl Into<Output<String>>,
) -> SyncCloudEndpointArgsBuilder<SetStorageAccountId<S>>where
S::StorageAccountId: IsUnset,
Required.
The ID of the Storage Account where the Storage Share exists. Changing this forces a new Storage Sync Cloud Endpoint to be created.
sourcepub fn storage_account_tenant_id(
self,
value: impl Into<Output<Option<String>>>,
) -> SyncCloudEndpointArgsBuilder<SetStorageAccountTenantId<S>>where
S::StorageAccountTenantId: IsUnset,
pub fn storage_account_tenant_id(
self,
value: impl Into<Output<Option<String>>>,
) -> SyncCloudEndpointArgsBuilder<SetStorageAccountTenantId<S>>where
S::StorageAccountTenantId: IsUnset,
sourcepub fn maybe_storage_account_tenant_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SyncCloudEndpointArgsBuilder<SetStorageAccountTenantId<S>>where
S::StorageAccountTenantId: IsUnset,
pub fn maybe_storage_account_tenant_id(
self,
value: Option<impl Into<Output<Option<String>>>>,
) -> SyncCloudEndpointArgsBuilder<SetStorageAccountTenantId<S>>where
S::StorageAccountTenantId: IsUnset,
sourcepub fn storage_sync_group_id(
self,
value: impl Into<Output<String>>,
) -> SyncCloudEndpointArgsBuilder<SetStorageSyncGroupId<S>>where
S::StorageSyncGroupId: IsUnset,
pub fn storage_sync_group_id(
self,
value: impl Into<Output<String>>,
) -> SyncCloudEndpointArgsBuilder<SetStorageSyncGroupId<S>>where
S::StorageSyncGroupId: IsUnset,
Required.
The ID of the Storage Sync Group where this Cloud Endpoint should be created. Changing this forces a new Storage Sync Cloud Endpoint to be created.
Auto Trait Implementations§
impl<S> Freeze for SyncCloudEndpointArgsBuilder<S>
impl<S> RefUnwindSafe for SyncCloudEndpointArgsBuilder<S>
impl<S> Send for SyncCloudEndpointArgsBuilder<S>
impl<S> Sync for SyncCloudEndpointArgsBuilder<S>
impl<S> Unpin for SyncCloudEndpointArgsBuilder<S>
impl<S> UnwindSafe for SyncCloudEndpointArgsBuilder<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