from azure.common.credentials import ServicePrincipalCredentials
from azure.mgmt.resource import ResourceManagementClient
from azure.mgmt.storage import StorageManagementClient
from azure.mgmt.storage.models import StorageAccountCreateParameters
from azure.mgmt.storage.models import (
StorageAccountCreateParameters,
StorageAccountUpdateParameters,
Sku,
SkuName,
Kind
)
#getting credentials
credentials = ServicePrincipalCredentials(clientid="",secret="",tenant="")
#storage
storage_client = StorageManagementClient(credentials, subscription_id)
#creating storage
storage_async_operation = storage_client.storage_accounts.create("testing345","testcode",StorageAccountCreateParameters(sku=Sku("standard_ragrs"),kind=Kind.storage,location='westus'))
Я получаю сообщение об ошибке типа «Ошибка типа: init () принимает ровно 1 аргумент (2 дано)»