| | 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.Collections.Generic; |
| | 9 | |
|
| | 10 | | namespace Azure.ResourceManager.Storage.Models |
| | 11 | | { |
| | 12 | | /// <summary> The parameters that can be provided when updating the storage account properties. </summary> |
| | 13 | | public partial class StorageAccountUpdateParameters |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of StorageAccountUpdateParameters. </summary> |
| 52 | 16 | | public StorageAccountUpdateParameters() |
| | 17 | | { |
| 52 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of StorageAccountUpdateParameters. </summary> |
| | 21 | | /// <param name="sku"> Gets or sets the SKU name. Note that the SKU name cannot be updated to Standard_ZRS, Prem |
| | 22 | | /// <param name="tags"> Gets or sets a list of key value pairs that describe the resource. These tags can be use |
| | 23 | | /// <param name="identity"> The identity of the resource. </param> |
| | 24 | | /// <param name="kind"> Optional. Indicates the type of storage account. Currently only StorageV2 value supporte |
| | 25 | | /// <param name="customDomain"> Custom domain assigned to the storage account by the user. Name is the CNAME sou |
| | 26 | | /// <param name="encryption"> Provides the encryption settings on the account. The default setting is unencrypte |
| | 27 | | /// <param name="accessTier"> Required for storage accounts where kind = BlobStorage. The access tier used for b |
| | 28 | | /// <param name="azureFilesIdentityBasedAuthentication"> Provides the identity based authentication settings for |
| | 29 | | /// <param name="enableHttpsTrafficOnly"> Allows https traffic only to storage service if sets to true. </param> |
| | 30 | | /// <param name="networkRuleSet"> Network rule set. </param> |
| | 31 | | /// <param name="largeFileSharesState"> Allow large file shares if sets to Enabled. It cannot be disabled once i |
| | 32 | | /// <param name="routingPreference"> Maintains information about the network routing choice opted by the user fo |
| 0 | 33 | | internal StorageAccountUpdateParameters(Sku sku, IDictionary<string, string> tags, Identity identity, Kind? kind |
| | 34 | | { |
| 0 | 35 | | Sku = sku; |
| 0 | 36 | | Tags = tags; |
| 0 | 37 | | Identity = identity; |
| 0 | 38 | | Kind = kind; |
| 0 | 39 | | CustomDomain = customDomain; |
| 0 | 40 | | Encryption = encryption; |
| 0 | 41 | | AccessTier = accessTier; |
| 0 | 42 | | AzureFilesIdentityBasedAuthentication = azureFilesIdentityBasedAuthentication; |
| 0 | 43 | | EnableHttpsTrafficOnly = enableHttpsTrafficOnly; |
| 0 | 44 | | NetworkRuleSet = networkRuleSet; |
| 0 | 45 | | LargeFileSharesState = largeFileSharesState; |
| 0 | 46 | | RoutingPreference = routingPreference; |
| 0 | 47 | | } |
| | 48 | |
|
| | 49 | | /// <summary> Gets or sets the SKU name. Note that the SKU name cannot be updated to Standard_ZRS, Premium_LRS o |
| 92 | 50 | | public Sku Sku { get; set; } |
| | 51 | | /// <summary> Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewi |
| 112 | 52 | | public IDictionary<string, string> Tags { get; set; } |
| | 53 | | /// <summary> The identity of the resource. </summary> |
| 0 | 54 | | public Identity Identity { get; set; } |
| | 55 | | /// <summary> Optional. Indicates the type of storage account. Currently only StorageV2 value supported by serve |
| 68 | 56 | | public Kind? Kind { get; set; } |
| | 57 | | /// <summary> Custom domain assigned to the storage account by the user. Name is the CNAME source. Only one cust |
| 68 | 58 | | public CustomDomain CustomDomain { get; set; } |
| | 59 | | /// <summary> Provides the encryption settings on the account. The default setting is unencrypted. </summary> |
| 92 | 60 | | public Encryption Encryption { get; set; } |
| | 61 | | /// <summary> Required for storage accounts where kind = BlobStorage. The access tier used for billing. </summar |
| 0 | 62 | | public AccessTier? AccessTier { get; set; } |
| | 63 | | /// <summary> Provides the identity based authentication settings for Azure Files. </summary> |
| 0 | 64 | | public AzureFilesIdentityBasedAuthentication AzureFilesIdentityBasedAuthentication { get; set; } |
| | 65 | | /// <summary> Allows https traffic only to storage service if sets to true. </summary> |
| 84 | 66 | | public bool? EnableHttpsTrafficOnly { get; set; } |
| | 67 | | /// <summary> Network rule set. </summary> |
| 76 | 68 | | public NetworkRuleSet NetworkRuleSet { get; set; } |
| | 69 | | /// <summary> Allow large file shares if sets to Enabled. It cannot be disabled once it is enabled. </summary> |
| 0 | 70 | | public LargeFileSharesState? LargeFileSharesState { get; set; } |
| | 71 | | /// <summary> Maintains information about the network routing choice opted by the user for data transfer. </summ |
| 0 | 72 | | public RoutingPreference RoutingPreference { get; set; } |
| | 73 | | } |
| | 74 | | } |