| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | using Metadata = System.Collections.Generic.IDictionary<string, string>; |
| | 5 | | using Tags = System.Collections.Generic.IDictionary<string, string>; |
| | 6 | |
|
| | 7 | | namespace Azure.Storage.Blobs.Models |
| | 8 | | { |
| | 9 | | /// <summary> |
| | 10 | | /// Optional parameters for creating an Append Blob. |
| | 11 | | /// </summary> |
| | 12 | | public class AppendBlobCreateOptions |
| | 13 | | { |
| | 14 | | /// <summary> |
| | 15 | | /// Optional standard HTTP header properties that can be set for the |
| | 16 | | /// new append blob. |
| | 17 | | /// </summary> |
| 0 | 18 | | public BlobHttpHeaders HttpHeaders { get; set; } |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Optional custom metadata to set for this append blob. |
| | 22 | | /// </summary> |
| 0 | 23 | | public Metadata Metadata { get; set; } |
| | 24 | |
|
| | 25 | | /// <summary> |
| | 26 | | /// Options tags to set for this append blob. |
| | 27 | | /// </summary> |
| 64 | 28 | | public Tags Tags { get; set; } |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Optional <see cref="AppendBlobRequestConditions"/> to add |
| | 32 | | /// conditions on the creation of this new append blob. |
| | 33 | | /// </summary> |
| 0 | 34 | | public AppendBlobRequestConditions Conditions { get; set; } |
| | 35 | | } |
| | 36 | | } |