Microsoft Azure Storage Client Library for C++  7.5.0
The Microsoft Azure Storage Client Library for C++ is a library for working with the Azure Storage Services in C++.
Public Types | List of all members
azure::storage::blob_listing_details Struct Reference

Specifies which items to include when listing a set of blobs. More...

Public Types

enum  values {
  none = 0, snapshots = 1 << 0, metadata = 1 << 1, uncommitted_blobs = 1 << 2,
  copy = 1 << 3, versions = 1 << 4, all = snapshots | metadata | uncommitted_blobs | copy
}
 

Detailed Description

Specifies which items to include when listing a set of blobs.

Member Enumeration Documentation

◆ values

Enumerator
none 

List only committed blobs, and do not return blob metadata.

snapshots 

List committed blobs and blob snapshots.

metadata 

Retrieve blob metadata for each blob returned in the listing.

uncommitted_blobs 

List committed and uncommitted blobs.

copy 

Include copy properties in the listing.

versions 

Include saved versions of blobs.

all 

List all available committed blobs, uncommitted blobs, and snapshots, and return all metadata and copy status for those blobs.