BlobListingDetails Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies which items to include when listing a set of blobs.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum BlobListingDetails
[<System.Flags>]
type BlobListingDetails =
Public Enum BlobListingDetails
- Inheritance
-
BlobListingDetails
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | List only committed blobs, and do not return blob metadata. |
Snapshots | 1 | List committed blobs and blob snapshots. |
Metadata | 2 | Retrieve blob metadata for each blob returned in the listing. |
UncommittedBlobs | 4 | List committed and uncommitted blobs. |
Copy | 8 | Include copy properties in the listing. |
Deleted | 16 | Include deleted blobs in the listing. |
All | 31 | List all available committed blobs, uncommitted blobs, snapshots and deleted blobs and return all metadata and copy status for those blobs. |
Applies to
Azure SDK for .NET