class Azure::Storage::Mgmt::V2019_06_01::Models::StorageAccountUpdateParameters
The parameters that can be provided when updating the storage account properties.
Attributes
@return [AccessTier] Required for storage accounts where kind = BlobStorage. The access tier used for billing. Possible values include: 'Hot', 'Cool'
@return [Boolean] Allow or disallow public access to all blobs or containers in the storage account. The default interpretation is true for this property.
@return [AzureFilesIdentityBasedAuthentication] Provides the identity based authentication settings for Azure
Files.
@return [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.
@return [Boolean] Allows https traffic only to storage service if sets to true.
@return [Encryption] Provides the encryption settings on the account. The default setting is unencrypted.
@return [Identity] The identity of the resource.
@return [Kind] Optional. Indicates the type of storage account. Currently only StorageV2 value supported by server. Possible values include: 'Storage', 'StorageV2', 'BlobStorage', 'FileStorage', 'BlockBlobStorage'
@return [MinimumTlsVersion] 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'
@return [NetworkRuleSet] Network rule set
@return [RoutingPreference] Maintains information about the network routing choice opted by the user for data transfer
@return [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.
Public Class Methods
Mapper for StorageAccountUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-06-01/generated/azure_mgmt_storage/models/storage_account_update_parameters.rb, line 88 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'StorageAccountUpdateParameters', type: { name: 'Composite', class_name: 'StorageAccountUpdateParameters', model_properties: { sku: { client_side_validation: true, required: false, serialized_name: 'sku', type: { name: 'Composite', class_name: 'Sku' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, identity: { client_side_validation: true, required: false, serialized_name: 'identity', type: { name: 'Composite', class_name: 'Identity' } }, custom_domain: { client_side_validation: true, required: false, serialized_name: 'properties.customDomain', type: { name: 'Composite', class_name: 'CustomDomain' } }, encryption: { client_side_validation: true, required: false, serialized_name: 'properties.encryption', type: { name: 'Composite', class_name: 'Encryption' } }, access_tier: { client_side_validation: true, required: false, serialized_name: 'properties.accessTier', type: { name: 'Enum', module: 'AccessTier' } }, azure_files_identity_based_authentication: { client_side_validation: true, required: false, serialized_name: 'properties.azureFilesIdentityBasedAuthentication', type: { name: 'Composite', class_name: 'AzureFilesIdentityBasedAuthentication' } }, enable_https_traffic_only: { client_side_validation: true, required: false, serialized_name: 'properties.supportsHttpsTrafficOnly', type: { name: 'Boolean' } }, network_rule_set: { client_side_validation: true, required: false, serialized_name: 'properties.networkAcls', type: { name: 'Composite', class_name: 'NetworkRuleSet' } }, large_file_shares_state: { client_side_validation: true, required: false, serialized_name: 'properties.largeFileSharesState', type: { name: 'String' } }, routing_preference: { client_side_validation: true, required: false, serialized_name: 'properties.routingPreference', type: { name: 'Composite', class_name: 'RoutingPreference' } }, allow_blob_public_access: { client_side_validation: true, required: false, serialized_name: 'properties.allowBlobPublicAccess', type: { name: 'Boolean' } }, minimum_tls_version: { client_side_validation: true, required: false, serialized_name: 'properties.minimumTlsVersion', type: { name: 'String' } }, kind: { client_side_validation: true, required: false, serialized_name: 'kind', type: { name: 'String' } } } } } end