- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试获取未使用的存储帐户的列表。我尝试走 LastModified 路线,但有几个问题,首先,这只适用于 Blob 存储,其次,如果容器的命名带有美元符号(例如 $web),则 Get-AzStorageBlob 会出错。
有人知道实现此目标的更好方法吗?我在想,如果我可以列出存储帐户上次进行身份验证的时间,可以给我我想要的东西,但在尝试时却一片空白。
最佳答案
我一直在使用以下逻辑并成功满足类似的要求。
逻辑:
您基本上可以遍历每个存储帐户,找到其中的每个容器,根据上次修改日期(降序)对它们进行排序 - 选择最上面的 - 检查它是否超过 90(根据您的要求的任意天数) ) 天。如果是,请继续删除它们。
代码片段:
#Setting the AzContext for the required subscription
Set-AzContext -SubscriptionId "<YOUR SUBSCRIPTION ID>"
#Going through every storage account in the mentioned Subscription
foreach ($storageAccount in Get-AzStorageAccount)
{
#Storing the Account Name and Resource Group name which will be used in the below steps
$storageAccountName = $storageAccount.StorageAccountName
$resourceGroupName = $storageAccount.ResourceGroupName
# Getting the storage Account Key - it could be any 1 of the key. Taken the first key for instance.
$storageAccountKey = (Get-AzStorageAccountKey -Name $storageAccountName -ResourceGroupName $resourceGroupName).Value[0]
# Create storage account context using above key
$storagecontext = New-AzStorageContext -StorageAccountName $storageAccountName -StorageAccountKey $storageAccountKey
#Gets all the Storage Container within the Storage Account
#Sorts them in descending order based on the LastModified
#Picks the Topmost or most recently modified date
$lastModified = Get-AzStorageContainer -Context $storagecontext | Sort-Object -Property @{Expression = {$_.LastModified.DateTime}} | Select-Object -Last 1 -ExpandProperty LastModified
# Remove storage account if it is has not been in past 90 days
if ($lastModified.DateTime -lt (Get-Date).AddDays(-90))
{
Remove-AzStorageAccount -Name $storageAccountName -ResourceGroupName $resourceGroupName -Force
}
}
代码引用自此thread .
注意:
Get-AzStorageContainer - 不仅仅特定于 blob 存储。
回到您的其他问题: -
如果容器的名称带有美元符号(例如 $web),则 Get-AzStorageBlob 会出错。
这已在 Az.Storage 的更高版本中得到处理。我建议您升级模块并尝试一下。这已在thread中讨论过。 Az.Storage 的更高版本应该能够处理名为“$web”的容器
关于azure - Powershell - Azure 存储帐户 - 获取上次身份验证时间/日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66763313/
之前看到一些类似的问题,想弄清楚。 在this article ,据说异步调用“没有线程”。 然而,in another one ,据说 Here, however, we’re running th
我为我公司的平板电脑(SAMSUNG Galaxy Tab Active2)开发了一个简单的软件,自上周五(2018 年 11 月 23 日)以来,它无法正常工作。我检查了该应用程序的所有功能,其中有
我正在使用 hadoop map-reduce 作业进行一些文本处理。我的工作已完成 99.2%,并停留在上一个 map 工作上。 map 输出的最后几行如下所示。上次发生此问题时,我尝试打印出从 m
上次 Ubuntu 更新后有人对 Docker 有疑问吗?我有 2 个由 docker-compose 在 ubuntu18.04 中运行的项目。两个项目都运行良好,但在 *.yml 中进行 0 次更
SQL Developer 在表中显示公共(public)同义词的创建和上次 DDL 时间: CREATED 15-AUG-09 LAST_DDL_TIME 15-AUG-09 O
我正在使用带有以下插件的 mavenized 库项目: com.jayway.maven.plugins.android.generation2
我正在使用 Jssor Slider 作为轮播。在 Google Chrome 上次更新到版本 45.0.2454.85 之前,它一直运行良好。想法是它不显示图像。目前,它们位于标签中,可在 Safa
我是一名优秀的程序员,十分优秀!