PageBlobCreateOptions
Optional parameters for creating an Page Blob.
            
                using System.Collections.Generic;
namespace Azure.Storage.Blobs.Models
{
    public class PageBlobCreateOptions
    {
        public long? SequenceNumber { get; set; }
        public BlobHttpHeaders HttpHeaders { get; set; }
        public PageBlobRequestConditions Conditions { get; set; }
        public IDictionary<string, string> Metadata { get; set; }
        public IDictionary<string, string> Tags { get; set; }
        public BlobImmutabilityPolicy ImmutabilityPolicy { get; set; }
        public bool? LegalHold { get; set; }
    }
}