skip to Main Content

Azure – Can't Create Blob Container: This request is not authorized to perform this operation

I'm trying to create a blob container within an Azure storage account with Azure's Python API. def create_storage_container(storageAccountName: str, containerName: str): print( f"Creating storage container '{containerName}'", f"in storage account '{storageAccountName}'" ) credentials = DefaultAzureCredential() url = f"https://{storageAccountName}.blob.core.windows.net" blobClient = BlobServiceClient(account_url=url,…

VIEW QUESTION

Azure Batch pool quota reached

when creating a pool for my Batch account I get the following error message: Pool quota for the account has been reached I currently have no other pool created and when checking the quota of the batch account in the…

VIEW QUESTION
Back To Top
Search