gpt4 book ai didi

azure - 使用 C# 获取 Azure 服务器列表

转载 作者:行者123 更新时间:2023-12-03 05:57:02 27 4
gpt4 key购买 nike

我需要用 Azure 门户中可用的 SQL 服务器填充组合框。例如:我需要在组合框中显示以下服务器列表..

enter image description here

Azure 是否有一些服务可以从 C# 代码获取此服务器列表?

最佳答案

您可以使用 Windows Azure 管理库(对于 ASM、Azure 服务管理)列出 Azure 订阅中的所有服务器。这些库是 Azure Api 的包装器,可让你轻松管理资源。

通过使用this SQL管理库,您可以通过一行代码检索所有服务器:

using (SqlManagementClient sqlManagementClient = new SqlManagementClient(cred))
{
var servers = await sqlManagementClient.Servers.ListAsync(CancellationToken.None);
}

问候,

关于azure - 使用 C# 获取 Azure 服务器列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39627010/

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