| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | namespace Azure.Storage.Files.DataLake.Models |
| | | 5 | | { |
| | | 6 | | /// <summary> |
| | | 7 | | /// A Signed identifier for a shared access policy. |
| | | 8 | | /// </summary> |
| | | 9 | | public class DataLakeSignedIdentifier |
| | | 10 | | { |
| | | 11 | | /// <summary> |
| | | 12 | | /// A unique id for the <see cref="DataLakeSignedIdentifier"/>. |
| | | 13 | | /// </summary> |
| | 172 | 14 | | public string Id { get; set; } |
| | | 15 | | |
| | | 16 | | /// <summary> |
| | | 17 | | /// An <see cref="DataLakeAccessPolicy"/>. |
| | | 18 | | /// </summary> |
| | 304 | 19 | | public DataLakeAccessPolicy AccessPolicy { get; set; } |
| | | 20 | | } |
| | | 21 | | } |