| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | using System; |
| | | 5 | | |
| | | 6 | | namespace Azure.Storage.Files.DataLake.Models |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// FileSystemInfo. |
| | | 10 | | /// </summary> |
| | | 11 | | public class FileSystemInfo |
| | | 12 | | { |
| | | 13 | | /// <summary> |
| | | 14 | | /// The ETag contains a value that you can use to perform operations conditionally. |
| | | 15 | | /// If the request version is 2011-08-18 or newer, the ETag value will be in quotes. |
| | | 16 | | /// </summary> |
| | 2762 | 17 | | public ETag ETag { get; internal set; } |
| | | 18 | | |
| | | 19 | | /// <summary> |
| | | 20 | | /// Returns the <see cref="DateTimeOffset"/> the file system was last modified. Any operation that modifies the |
| | | 21 | | /// file system, including an update of the file systems's metadata or properties, changes the last-modified |
| | | 22 | | /// time of the file system. |
| | | 23 | | /// </summary> |
| | 0 | 24 | | public DateTimeOffset LastModified { get; internal set; } |
| | | 25 | | |
| | | 26 | | /// <summary> |
| | | 27 | | /// Prevent direct instantiation of FileSystemInfo instances. |
| | | 28 | | /// You can use DataLakeModelFactory.FileSystemInfo instead. |
| | | 29 | | /// </summary> |
| | 5492 | 30 | | internal FileSystemInfo() { } |
| | | 31 | | } |
| | | 32 | | } |