| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Storage.Models |
| | 11 | | { |
| | 12 | | /// <summary> The parameters used to regenerate the storage account key. </summary> |
| | 13 | | public partial class StorageAccountRegenerateKeyParameters |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of StorageAccountRegenerateKeyParameters. </summary> |
| | 16 | | /// <param name="keyName"> The name of storage keys that want to be regenerated, possible values are key1, key2, |
| 4 | 17 | | public StorageAccountRegenerateKeyParameters(string keyName) |
| | 18 | | { |
| 4 | 19 | | if (keyName == null) |
| | 20 | | { |
| 0 | 21 | | throw new ArgumentNullException(nameof(keyName)); |
| | 22 | | } |
| | 23 | |
|
| 4 | 24 | | KeyName = keyName; |
| 4 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> The name of storage keys that want to be regenerated, possible values are key1, key2, kerb1, kerb2 |
| 4 | 28 | | public string KeyName { get; } |
| | 29 | | } |
| | 30 | | } |