StorageAccountUpdateParameters Constructors

Definition

Overloads

StorageAccountUpdateParameters()

Initializes a new instance of the StorageAccountUpdateParameters class.

StorageAccountUpdateParameters(Sku, IDictionary<String,String>, Identity, CustomDomain, Encryption, SasPolicy, KeyPolicy, Nullable<AccessTier>, AzureFilesIdentityBasedAuthentication, Nullable<Boolean>, NetworkRuleSet, String, RoutingPreference, Nullable<Boolean>, String, Nullable<Boolean>, String)

Initializes a new instance of the StorageAccountUpdateParameters class.

StorageAccountUpdateParameters()

Initializes a new instance of the StorageAccountUpdateParameters class.

public StorageAccountUpdateParameters ();
Public Sub New ()

Applies to

StorageAccountUpdateParameters(Sku, IDictionary<String,String>, Identity, CustomDomain, Encryption, SasPolicy, KeyPolicy, Nullable<AccessTier>, AzureFilesIdentityBasedAuthentication, Nullable<Boolean>, NetworkRuleSet, String, RoutingPreference, Nullable<Boolean>, String, Nullable<Boolean>, String)

Initializes a new instance of the StorageAccountUpdateParameters class.

public StorageAccountUpdateParameters (Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.Sku sku = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.Identity identity = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.CustomDomain customDomain = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.Encryption encryption = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.SasPolicy sasPolicy = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.KeyPolicy keyPolicy = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.AccessTier? accessTier = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.AzureFilesIdentityBasedAuthentication azureFilesIdentityBasedAuthentication = default, bool? enableHttpsTrafficOnly = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.NetworkRuleSet networkRuleSet = default, string largeFileSharesState = default, Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.RoutingPreference routingPreference = default, bool? allowBlobPublicAccess = default, string minimumTlsVersion = default, bool? allowSharedKeyAccess = default, string kind = default);
new Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.StorageAccountUpdateParameters : Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.Sku * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.Identity * Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.CustomDomain * Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.Encryption * Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.SasPolicy * Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.KeyPolicy * Nullable<Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.AccessTier> * Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.AzureFilesIdentityBasedAuthentication * Nullable<bool> * Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.NetworkRuleSet * string * Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.RoutingPreference * Nullable<bool> * string * Nullable<bool> * string -> Microsoft.Azure.PowerShell.Cmdlets.Compute.Helpers.Storage.Models.StorageAccountUpdateParameters
Public Sub New (Optional sku As Sku = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional identity As Identity = Nothing, Optional customDomain As CustomDomain = Nothing, Optional encryption As Encryption = Nothing, Optional sasPolicy As SasPolicy = Nothing, Optional keyPolicy As KeyPolicy = Nothing, Optional accessTier As Nullable(Of AccessTier) = Nothing, Optional azureFilesIdentityBasedAuthentication As AzureFilesIdentityBasedAuthentication = Nothing, Optional enableHttpsTrafficOnly As Nullable(Of Boolean) = Nothing, Optional networkRuleSet As NetworkRuleSet = Nothing, Optional largeFileSharesState As String = Nothing, Optional routingPreference As RoutingPreference = Nothing, Optional allowBlobPublicAccess As Nullable(Of Boolean) = Nothing, Optional minimumTlsVersion As String = Nothing, Optional allowSharedKeyAccess As Nullable(Of Boolean) = Nothing, Optional kind As String = Nothing)

Parameters

sku
Sku

Gets or sets the SKU name. Note that the SKU name cannot be updated to Standard_ZRS, Premium_LRS or Premium_ZRS, nor can accounts of those SKU names be updated to any other value.

tags
IDictionary<String,String>

Gets or sets a list of key value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater in length than 128 characters and a value no greater in length than 256 characters.

identity
Identity

The identity of the resource.

customDomain
CustomDomain

Custom domain assigned to the storage account by the user. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property.

encryption
Encryption

Provides the encryption settings on the account. The default setting is unencrypted.

sasPolicy
SasPolicy

SasPolicy assigned to the storage account.

keyPolicy
KeyPolicy

KeyPolicy assigned to the storage account.

accessTier
Nullable<AccessTier>

Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool'

azureFilesIdentityBasedAuthentication
AzureFilesIdentityBasedAuthentication

Provides the identity based authentication settings for Azure Files.

enableHttpsTrafficOnly
Nullable<Boolean>

Allows https traffic only to storage service if sets to true.

networkRuleSet
NetworkRuleSet

Network rule set

largeFileSharesState
String

Allow large file shares if sets to Enabled. It cannot be disabled once it is enabled. Possible values include: 'Disabled', 'Enabled'

routingPreference
RoutingPreference

Maintains information about the network routing choice opted by the user for data transfer

allowBlobPublicAccess
Nullable<Boolean>

Allow or disallow public access to all blobs or containers in the storage account. The default interpretation is true for this property.

minimumTlsVersion
String

Set the minimum TLS version to be permitted on requests to storage. The default interpretation is TLS 1.0 for this property. Possible values include: 'TLS1_0', 'TLS1_1', 'TLS1_2'

allowSharedKeyAccess
Nullable<Boolean>

Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). The default value is null, which is equivalent to true.

kind
String

Optional. Indicates the type of storage account. Currently only StorageV2 value supported by server. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage'

Applies to