gpt4 book ai didi

azure - 通过 Powershell cmdlet Get-AzureRMDeployment 下载 Azure 服务配置 (.cscfg)

转载 作者:行者123 更新时间:2023-12-03 01:40:51 25 4
gpt4 key购买 nike

我正在尝试使用以下命令 powershell 命令从云服务下载服务配置 (.cscfg)。但不幸的是出现错误。

Get-AzureRmDeployment -Name "xxxx"
Get-AzureRmDeployment : Deployment 'xxxx' could not be found.

我选择了正确的订阅并传递了更正的部署名称,但仍然收到此错误。

我尝试使用以下命令获取此订阅上的所有部署,该命令没有返回任何内容,甚至没有错误。

Get-AzureRmDeployment

之前,我在经典订阅上使用 Get-AzureDeployment 来获取 .cscfg,它曾经在 RM 上运行得很好,但上述命令不起作用。

有人可以帮我弄清楚如何使用 powershell 获取服务配置...?

命令的片段。

PS C:\WINDOWS\system32> Get-AzureRmDeployment -Name "xxxx"
Get-AzureRmDeployment : Deployment 'xxxx' could not be found.
At line:1 char:1
+ Get-AzureRmDeployment -Name "xxxx"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : CloseError: (:) [Get-AzureRmDeployment], CloudException
+ FullyQualifiedErrorId : Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation.GetAzureDeploymentCmdlet

最佳答案

云服务部署为经典(ASM),您无法通过Get-AzureRMDeployment进行部署。

如果您想通过 ARM powershell 获取配置(.cscfg),可以使用 Get-AzureRmResource 来获取。

$slot = Get-AzureRmResource -ResourceGroupName <ResourceGroupName> -ResourceType Microsoft.ClassicCompute/domainNames/slots -ResourceName "xxxxx" -ApiVersion 2016-04-01
$slot.Properties.configuration

关于azure - 通过 Powershell cmdlet Get-AzureRMDeployment 下载 Azure 服务配置 (.cscfg),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53605229/

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