gpt4 book ai didi

java - microsoft azure 中 StorageAccounts 的模型对象

转载 作者:行者123 更新时间:2023-12-02 11:27:17 25 4
gpt4 key购买 nike

我需要从我的 Azure 帐户中获取所有存储帐户并列出它们的所有属性。我已经配置了 azure 对象并使用下面的调用来获取所有 storageAccounts。

Azure azure = Azure
.configure()
.withLogLevel(LogLevel.NONE)
.authenticate(credFile)
.withDefaultSubscription();

StorageAccounts storageAccounts = azure.storageAccounts();

我看到在 com.microsoft.azure.management.storage.StorageAccounts 接口(interface)中有很多方法,但我正在寻找一个模型对象来获取并列出其详细信息,就像我们有 com.amazonaws 的 aws 一样。 services.s3.model.Bucket

我的问题是:如果使用 Azure,StorageAccounts 的模型对象将是哪个?

最佳答案

您可以使用方法 .list() 列出订阅中的存储帐户。请查看此link中的SDK 。您可以使用以下代码来获取存储帐户属性。

 List<StorageAccount> accounts = azure.storageAccounts().list();
for (StorageAccount sa : accounts) {
System.out.println("Storage Account " + sa.name() + " created @ " + sa.creationTime());
}

您还可以查看此 example管理您的存储帐户。

关于java - microsoft azure 中 StorageAccounts 的模型对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49528958/

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