如何从Azure PowerShell/ Azure CLI中提取连接字符串和文件服务SAS URL?
我正在处理PowerShell脚本,该脚本可以提取Azure存储容器详细信息,其中包括SAS令牌,连接字符串,到期日期和文件服务SAS URL。但是,除了SAS令牌创建之外,我没有看到任何提取这些细节的命令。
您能否建议通过Powershell或Azure CLI提取这些细节的方法?
I am working on Powershell script that could extract Azure Storage Container details which includes SAS Token, Connection String, Expiry dates and File Service SAS URL. But I don't see any command to extract those details other than the SAS Token creation.
Could you please suggest the ways to extract those details through powershell or Azure Cli?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
afaik , 使用
new-azStorageAccountSastoken
在我们生成存储帐户SAS代币时,将获得SAS令牌的输出连接字符串和斑点服务URI等。
提供以下参数:
如下所示:
要提取我们可以使用以下CMD的连接字符串:
要提取Blob服务URL,我们可以使用以下CMD :
有关更多信息,请参阅以下链接: -
强> Microsoft文档| AZ存储帐户
因此,线程| Azure存储帐户生成SAS令牌,而不是SAS URI
AFAIK,Using
New-AzStorageAccountSASToken
while we generate storage account sas token, will get the output of sas token only not connection string and blob service uri etc.This provide the following parameter:
As shown below:
To extract the connection string of our storage account we can use the below cmd :
To extract the blob service url we can use the below cmd :
For more information please refer the below links:-
MICROSOFT DOCUMENT|az storage account
SO THREAD|Azure Storage Account generate SAS Token, not an SAS URI