我正在尝试使用 azure 创建一个 Web 应用程序
azure.WebApps
.Define(name)
.WithExistingWindowsPlan(plan)
.WithExistingResourceGroup(resourceGroupName)
.CreateAsyn()
由于名称必须是全局唯一的,我如何检查名称是否已经存在?
我正在尝试使用 azure 创建一个 Web 应用程序
azure.WebApps
.Define(name)
.WithExistingWindowsPlan(plan)
.WithExistingResourceGroup(resourceGroupName)
.CreateAsyn()
由于名称必须是全局唯一的,我如何检查名称是否已经存在?