BlobStates
Specifies states to be used to determine the blobs that will be included
            when using the  GetBlobsAsync and
             GetBlobsByHierarchyAsync
            operations.
            
                using System;
namespace Azure.Storage.Blobs.Models
{
    [Flags]
    public enum BlobStates
    {
        None = 0,
        Snapshots = 1,
        Uncommitted = 2,
        Deleted = 4,
        Version = 8,
        DeletedWithVersions = 16,
        All = -1
    }
}