pub struct GetBlobFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to GetBlob
.
Returns the base-64 encoded content of an individual blob in a repository.
Implementations§
source§impl GetBlobFluentBuilder
impl GetBlobFluentBuilder
sourcepub fn as_input(&self) -> &GetBlobInputBuilder
pub fn as_input(&self) -> &GetBlobInputBuilder
Access the GetBlob as a reference.
sourcepub async fn send(
self
) -> Result<GetBlobOutput, SdkError<GetBlobError, HttpResponse>>
pub async fn send( self ) -> Result<GetBlobOutput, SdkError<GetBlobError, HttpResponse>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn customize(
self
) -> CustomizableOperation<GetBlobOutput, GetBlobError, Self>
pub fn customize( self ) -> CustomizableOperation<GetBlobOutput, GetBlobError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn repository_name(self, input: impl Into<String>) -> Self
pub fn repository_name(self, input: impl Into<String>) -> Self
The name of the repository that contains the blob.
sourcepub fn set_repository_name(self, input: Option<String>) -> Self
pub fn set_repository_name(self, input: Option<String>) -> Self
The name of the repository that contains the blob.
sourcepub fn get_repository_name(&self) -> &Option<String>
pub fn get_repository_name(&self) -> &Option<String>
The name of the repository that contains the blob.
sourcepub fn blob_id(self, input: impl Into<String>) -> Self
pub fn blob_id(self, input: impl Into<String>) -> Self
The ID of the blob, which is its SHA-1 pointer.
sourcepub fn set_blob_id(self, input: Option<String>) -> Self
pub fn set_blob_id(self, input: Option<String>) -> Self
The ID of the blob, which is its SHA-1 pointer.
sourcepub fn get_blob_id(&self) -> &Option<String>
pub fn get_blob_id(&self) -> &Option<String>
The ID of the blob, which is its SHA-1 pointer.
Trait Implementations§
source§impl Clone for GetBlobFluentBuilder
impl Clone for GetBlobFluentBuilder
source§fn clone(&self) -> GetBlobFluentBuilder
fn clone(&self) -> GetBlobFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more