pub struct GetBlobResult {
pub access_tier: Output<String>,
pub content_md5: Output<String>,
pub content_type: Output<String>,
pub encryption_scope: Output<String>,
pub id: Output<String>,
pub metadata: Output<HashMap<String, String>>,
pub name: Output<String>,
pub storage_account_name: Output<String>,
pub storage_container_name: Output<String>,
pub type_: Output<String>,
pub url: Output<String>,
}
Fields§
§access_tier: Output<String>
The access tier of the storage blob.
content_md5: Output<String>
The MD5 sum of the blob contents.
content_type: Output<String>
The content type of the storage blob.
encryption_scope: Output<String>
The encryption scope for this blob.
id: Output<String>
The provider-assigned unique ID for this managed resource.
metadata: Output<HashMap<String, String>>
A map of custom blob metadata.
name: Output<String>
§storage_account_name: Output<String>
§storage_container_name: Output<String>
§type_: Output<String>
The type of the storage blob
url: Output<String>
The URL of the storage blob.
Auto Trait Implementations§
impl Freeze for GetBlobResult
impl RefUnwindSafe for GetBlobResult
impl Send for GetBlobResult
impl Sync for GetBlobResult
impl Unpin for GetBlobResult
impl UnwindSafe for GetBlobResult
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