Source code for azure.mgmt.datalake.store.models.update_data_lake_store_account_parameters_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.serialization import Model


[docs]class UpdateDataLakeStoreAccountParameters(Model): """Data Lake Store account information to update. :param tags: Resource tags :type tags: dict[str, str] :param default_group: The default owner group for all new folders and files created in the Data Lake Store account. :type default_group: str :param encryption_config: Used for rotation of user managed Key Vault keys. Can only be used to rotate a user managed encryption Key Vault key. :type encryption_config: ~azure.mgmt.datalake.store.models.UpdateEncryptionConfig :param firewall_rules: The list of firewall rules associated with this Data Lake Store account. :type firewall_rules: list[~azure.mgmt.datalake.store.models.UpdateFirewallRuleWithAccountParameters] :param virtual_network_rules: The list of virtual network rules associated with this Data Lake Store account. :type virtual_network_rules: list[~azure.mgmt.datalake.store.models.UpdateVirtualNetworkRuleWithAccountParameters] :param firewall_state: The current state of the IP address firewall for this Data Lake Store account. Disabling the firewall does not remove existing rules, they will just be ignored until the firewall is re-enabled. Possible values include: 'Enabled', 'Disabled' :type firewall_state: str or ~azure.mgmt.datalake.store.models.FirewallState :param firewall_allow_azure_ips: The current state of allowing or disallowing IPs originating within Azure through the firewall. If the firewall is disabled, this is not enforced. Possible values include: 'Enabled', 'Disabled' :type firewall_allow_azure_ips: str or ~azure.mgmt.datalake.store.models.FirewallAllowAzureIpsState :param trusted_id_providers: The list of trusted identity providers associated with this Data Lake Store account. :type trusted_id_providers: list[~azure.mgmt.datalake.store.models.UpdateTrustedIdProviderWithAccountParameters] :param trusted_id_provider_state: The current state of the trusted identity provider feature for this Data Lake Store account. Disabling trusted identity provider functionality does not remove the providers, they will just be ignored until this feature is re-enabled. Possible values include: 'Enabled', 'Disabled' :type trusted_id_provider_state: str or ~azure.mgmt.datalake.store.models.TrustedIdProviderState :param new_tier: The commitment tier to use for next month. Possible values include: 'Consumption', 'Commitment_1TB', 'Commitment_10TB', 'Commitment_100TB', 'Commitment_500TB', 'Commitment_1PB', 'Commitment_5PB' :type new_tier: str or ~azure.mgmt.datalake.store.models.TierType """ _attribute_map = { 'tags': {'key': 'tags', 'type': '{str}'}, 'default_group': {'key': 'properties.defaultGroup', 'type': 'str'}, 'encryption_config': {'key': 'properties.encryptionConfig', 'type': 'UpdateEncryptionConfig'}, 'firewall_rules': {'key': 'properties.firewallRules', 'type': '[UpdateFirewallRuleWithAccountParameters]'}, 'virtual_network_rules': {'key': 'properties.virtualNetworkRules', 'type': '[UpdateVirtualNetworkRuleWithAccountParameters]'}, 'firewall_state': {'key': 'properties.firewallState', 'type': 'FirewallState'}, 'firewall_allow_azure_ips': {'key': 'properties.firewallAllowAzureIps', 'type': 'FirewallAllowAzureIpsState'}, 'trusted_id_providers': {'key': 'properties.trustedIdProviders', 'type': '[UpdateTrustedIdProviderWithAccountParameters]'}, 'trusted_id_provider_state': {'key': 'properties.trustedIdProviderState', 'type': 'TrustedIdProviderState'}, 'new_tier': {'key': 'properties.newTier', 'type': 'TierType'}, } def __init__(self, *, tags=None, default_group: str=None, encryption_config=None, firewall_rules=None, virtual_network_rules=None, firewall_state=None, firewall_allow_azure_ips=None, trusted_id_providers=None, trusted_id_provider_state=None, new_tier=None, **kwargs) -> None: super(UpdateDataLakeStoreAccountParameters, self).__init__(**kwargs) self.tags = tags self.default_group = default_group self.encryption_config = encryption_config self.firewall_rules = firewall_rules self.virtual_network_rules = virtual_network_rules self.firewall_state = firewall_state self.firewall_allow_azure_ips = firewall_allow_azure_ips self.trusted_id_providers = trusted_id_providers self.trusted_id_provider_state = trusted_id_provider_state self.new_tier = new_tier