如何获取用于资源组部署的最新 Azure 库模板?
How can I get the latest Azure Gallery Template for Resource Group Deployment?
我使用 Get-AzureResourceGroupGalleryTemplate Azure PowerShell cmdlet 获取用于资源组部署的 Azure 资源组库模板,但直到我将 PowerShell 升级到最新版本后它才起作用(1.0.1).
执行此操作的is/are替代方法是什么?
Get-AzureResourceGroupGalleryTemplate cmdlet 已在最新的 Azure PowerShell 修订版 (1.0.1) 中弃用。
有几个选择。
使用 Azure 快速入门模板
你可以去Azure Quickstart Templates.
此 link 包含用于快速启动部署的最新 Azure 库模板列表,这些模板始终是最新的。
GET 请求 REST API 调用 Microsoft Azure Gallery 端点
向 Microsoft Azure 库端点发出 GET 请求:https://gallery.azure.com/Microsoft.Gallery/GalleryItems?api-version=2015-10-01
预期响应应采用 JSON 格式,其中包含 Azure 库模板项列表。
下面显示了从 JSON 响应返回的图库模板之一。
"identity": "Microsoft.Windows10Enterprisex64.1.0.0",
"publisher": "Microsoft",
"publisherDisplayName": "Microsoft",
"itemName": "Windows10Enterprisex64",
"itemDisplayName": "Windows 10 Enterprise (x64)",...
希望对您有所帮助!
我使用 Get-AzureResourceGroupGalleryTemplate Azure PowerShell cmdlet 获取用于资源组部署的 Azure 资源组库模板,但直到我将 PowerShell 升级到最新版本后它才起作用(1.0.1).
执行此操作的is/are替代方法是什么?
Get-AzureResourceGroupGalleryTemplate cmdlet 已在最新的 Azure PowerShell 修订版 (1.0.1) 中弃用。
有几个选择。
使用 Azure 快速入门模板
你可以去Azure Quickstart Templates.
此 link 包含用于快速启动部署的最新 Azure 库模板列表,这些模板始终是最新的。
GET 请求 REST API 调用 Microsoft Azure Gallery 端点
向 Microsoft Azure 库端点发出 GET 请求:https://gallery.azure.com/Microsoft.Gallery/GalleryItems?api-version=2015-10-01
预期响应应采用 JSON 格式,其中包含 Azure 库模板项列表。
下面显示了从 JSON 响应返回的图库模板之一。
"identity": "Microsoft.Windows10Enterprisex64.1.0.0", "publisher": "Microsoft", "publisherDisplayName": "Microsoft", "itemName": "Windows10Enterprisex64", "itemDisplayName": "Windows 10 Enterprise (x64)",...
希望对您有所帮助!