| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | namespace Azure.Storage.Blobs.Models |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// Encryption scope options to be used when creating a container. |
| | 8 | | /// </summary> |
| | 9 | | public class BlobContainerEncryptionScopeOptions |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// Specifies the default encryption scope to set on the container and use for all future writes. |
| | 13 | | /// </summary> |
| 0 | 14 | | public string DefaultEncryptionScope { get; set; } |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// If true, prevents any request from specifying a different encryption scope than the scope set on the contain |
| | 18 | | /// </summary> |
| 0 | 19 | | public bool PreventEncryptionScopeOverride { get; set; } |
| | 20 | | } |
| | 21 | | } |