| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Text; |
| | 7 | |
|
| | 8 | | namespace Azure.Storage.Blobs.Models |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// An Azure Storage blob. |
| | 12 | | /// </summary> |
| | 13 | | public class BlobItem |
| | 14 | | { |
| 21632 | 15 | | internal BlobItem() { } |
| | 16 | |
|
| | 17 | | /// <summary> |
| | 18 | | /// Name. |
| | 19 | | /// </summary> |
| 21464 | 20 | | public string Name { get; internal set; } |
| | 21 | |
|
| | 22 | | /// <summary> |
| | 23 | | /// Deleted. |
| | 24 | | /// </summary> |
| 528 | 25 | | public bool Deleted { get; internal set; } |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Snapshot. |
| | 29 | | /// </summary> |
| 528 | 30 | | public string Snapshot { get; internal set; } |
| | 31 | |
|
| | 32 | | /// <summary> |
| | 33 | | /// VersionId. |
| | 34 | | /// </summary> |
| 536 | 35 | | public string VersionId { get; internal set; } |
| | 36 | |
|
| | 37 | | /// <summary> |
| | 38 | | /// IsCurrentVersion. |
| | 39 | | /// </summary> |
| 536 | 40 | | public bool? IsLatestVersion { get; internal set; } |
| | 41 | |
|
| | 42 | | /// <summary> |
| | 43 | | /// Properties of a blob. |
| | 44 | | /// </summary> |
| 564 | 45 | | public BlobItemProperties Properties { get; internal set; } |
| | 46 | |
|
| | 47 | | /// <summary> |
| | 48 | | /// Metadata. |
| | 49 | | /// </summary> |
| 736 | 50 | | public IDictionary<string, string> Metadata { get; internal set; } |
| | 51 | |
|
| | 52 | | /// <summary> |
| | 53 | | /// Tags. |
| | 54 | | /// </summary> |
| 528 | 55 | | public IDictionary<string, string> Tags { get; internal set; } |
| | 56 | |
|
| | 57 | | /// <summary> |
| | 58 | | /// Object Replication Metadata (OrMetadata) |
| | 59 | | /// </summary> |
| 528 | 60 | | public IList<ObjectReplicationPolicy> ObjectReplicationSourceProperties { get; internal set; } |
| | 61 | | } |
| | 62 | | } |