durabletask-netherite/samples/scripts/clear-storage.ps1

9 строки
586 B
PowerShell

#!/usr/bin/pwsh
# import the parameter settings from the file in the same directory
. ./settings.ps1
Write-Host "Clearing storage account..."
$connectionString = (az storage account show-connection-string --name $storageName --resource-group $groupName | ConvertFrom-Json).connectionString
$list = (az storage container list --account-name $storageName --output json --connection-string $connectionString | ConvertFrom-Json)
$list | ForEach-Object -Process { Write-Host "Deleting container" $_.name ; az storage container delete --name $_.name --connection-string $connectionString }