gpt4 book ai didi

azure - 是否可以在azure中获取存储帐户的 "last accessed date"?

转载 作者:行者123 更新时间:2023-12-03 03:21:34 26 4
gpt4 key购买 nike

我知道有一项生命周期管理策略,可以根据存储帐户的上次访问日期更改层(引用: link )。

但我需要首先将其放在报告上以呈现数据。

有可能得到这样的吗?可以使用日志分析,甚至资源图浏览器或任何其他工具,只要可以检索日期/数据即可

注意:上次访问日期与上次修改日期不同

非常感谢任何帮助:)

最佳答案

Is it possible to get the "last accessed date" of a storage account in Azure?

据我所知,存储 blob 没有“上次访问日期” 属性。

一个可能的解决方案是,当您的 blob 标记有上次访问日期和时间时,您可以添加日期和时间,这将有助于找出上次访问日期和时间。

您可以使用以下命令通过 Powershell 添加上次访问的标签。

命令:

$storageAccount = Get-AzStorageAccount -ResourceGroupName "xxxx" -AccountName "xxx"
$ctx = $storageAccount.Context

$lastAccessDateTime = Get-Date
$containerName = "xxx"
$blobName = "xxx"
$tags = @{"LastAccessDateTime" = $lastAccessDateTime.ToString("yyyy-MM-dd HH:mm:ss");}
Set-AzStorageBlobTag -Context $ctx -Container $containerName -Blob $blobName -Tag $tags

输出: enter image description here

现在您可以检索 Get-AzStorageBlobTag 命令。

输出:

enter image description here

引用文献:

  1. Use blob index tags to manage and find data on Azure Blob Storage - Azure Storage | Microsoft Learn
  2. lastaccesstime - Last Access Time of the Azure storage files - Stack Overflow作者:凯文·B·伯恩斯。

关于azure - 是否可以在azure中获取存储帐户的 "last accessed date"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/77145549/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com