pub struct GetBlobArgsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build_struct()
.
Implementations§
source§impl<S: State> GetBlobArgsBuilder<S>
impl<S: State> GetBlobArgsBuilder<S>
sourcepub fn build_struct(self) -> GetBlobArgswhere
S: IsComplete,
pub fn build_struct(self) -> GetBlobArgswhere
S: IsComplete,
Finish building and return the requested object
sourcepub fn metadata(
self,
value: impl Into<Output<Option<HashMap<String, String>>>>,
) -> GetBlobArgsBuilder<SetMetadata<S>>where
S::Metadata: IsUnset,
pub fn metadata(
self,
value: impl Into<Output<Option<HashMap<String, String>>>>,
) -> GetBlobArgsBuilder<SetMetadata<S>>where
S::Metadata: IsUnset,
sourcepub fn maybe_metadata(
self,
value: Option<impl Into<Output<Option<HashMap<String, String>>>>>,
) -> GetBlobArgsBuilder<SetMetadata<S>>where
S::Metadata: IsUnset,
pub fn maybe_metadata(
self,
value: Option<impl Into<Output<Option<HashMap<String, String>>>>>,
) -> GetBlobArgsBuilder<SetMetadata<S>>where
S::Metadata: IsUnset,
sourcepub fn name(
self,
value: impl Into<Output<String>>,
) -> GetBlobArgsBuilder<SetName<S>>where
S::Name: IsUnset,
pub fn name(
self,
value: impl Into<Output<String>>,
) -> GetBlobArgsBuilder<SetName<S>>where
S::Name: IsUnset,
Required.
The name of the Blob.
sourcepub fn storage_account_name(
self,
value: impl Into<Output<String>>,
) -> GetBlobArgsBuilder<SetStorageAccountName<S>>where
S::StorageAccountName: IsUnset,
pub fn storage_account_name(
self,
value: impl Into<Output<String>>,
) -> GetBlobArgsBuilder<SetStorageAccountName<S>>where
S::StorageAccountName: IsUnset,
Required.
The name of the Storage Account where the Container exists.
sourcepub fn storage_container_name(
self,
value: impl Into<Output<String>>,
) -> GetBlobArgsBuilder<SetStorageContainerName<S>>where
S::StorageContainerName: IsUnset,
pub fn storage_container_name(
self,
value: impl Into<Output<String>>,
) -> GetBlobArgsBuilder<SetStorageContainerName<S>>where
S::StorageContainerName: IsUnset,
Required.
The name of the Storage Container where the Blob exists.
Auto Trait Implementations§
impl<S> Freeze for GetBlobArgsBuilder<S>
impl<S> RefUnwindSafe for GetBlobArgsBuilder<S>
impl<S> Send for GetBlobArgsBuilder<S>
impl<S> Sync for GetBlobArgsBuilder<S>
impl<S> Unpin for GetBlobArgsBuilder<S>
impl<S> UnwindSafe for GetBlobArgsBuilder<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