I am trying to update Azure storage accounts through the Azure python SDK. I follow the documentation and can authenticate against Azure just fine.
However when I run code to update the parameters of the storage account I get the following error: 'minimum_tls_version is not a known attribute of class <class 'azure.mgmt.storage.v2019_06_01.models._models_py3.StorageAccountUpdateParameters'> and will be ignored'
reference from microsoft saying it should exist: https://learn.microsoft.com/en-us/python/api/azure-mgmt-storage/azure.mgmt.storage.v2019_06_01.models.storageaccountupdateparameters?view=azure-python
Code in question: storage_account = self.storage.storage_accounts.update(resource_group, storage_account_name, StorageAccountUpdateParameters(enable_https_traffic_only=True, minimum_tls_version='TLS1_1' ))
Any help or direction is appreciate.