问题标签 [az]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
2 回答
46 浏览

azure - az cli fails with 'appXXXdeploycr.azurecr.io' is not recognized as an internal or external command, operable program or batch file

All I am trying to do is to run the following command in PS

I am getting back

Initialy I though that PS misinterprets | as a pipeline concatination so I escaped it with ` but it didn't help

0 投票
2 回答
355 浏览

powershell - Get-AzureAccount 在 Az 模块中不起作用

Get-AzureAccount在 Az 模块中不起作用。它给出以下错误:

此命令在 AzureRM 模块中工作,因为 AzureRm 正在贬低,我们需要将所有命令更改为 Az 模块。

请帮助!提前致谢

0 投票
1 回答
75 浏览

azure - Add-AzIotHubRoutingEndpoint cmdlet

我需要通过 PowerShell 为我的 IoT Hub 创建一些自定义端点。cmdlet Add-AzIotHubRoutingEndpoint不够用,因为它不提供自定义 BatchFrequencyInSeconds 和 MaxChunkSizeInBytes 属性的可能性。

这可以以某种方式实现吗?

0 投票
1 回答
195 浏览

azure - az cli create webapp 失败并出现 ResourceNotFound 错误

此命令失败

有错误

ResourceNotFound - 找不到资源组“my-rg”下的资源“Microsoft.Web/sites/my-app”。

对我来说这没有意义。这个命令的目的是创建 webapp,所以显然它不应该期望它在执行命令之前就存在。我错过了什么吗?

0 投票
1 回答
2059 浏览

bash - 使用 Azure CLI 的 Bash 脚本

我是 shell 脚本的新手。我正在尝试使用

az sig image-version list

command from azure which should return a list of versions and storing it into a list/array. So I can step through the list in a for loop.

However, I am not sure if the command returns more than just the versions. If so how can I only take part of the output?

I am also having issue with displaying the populated list. I believe my syntax of using the azure cli to store in the list is wrong. any guidance is much appreciated.

我是否将列表正确存储到变量中?

0 投票
1 回答
249 浏览

powershell - PowerShell Az 模块:离线导出和导入

我需要将 PowerShell Az 模块从一台机器离线移动到另一台机器(两台机器都有相同的 windows (10 Pro 1809)、.net、powershell (5.1) 等版本)

我无法使用 Private PowerShellGet Repositories 或 MSI 安装程序

Save-Module -Name Az -Path 'C:\Users\kag\Documents\ps_modules' -RequiredVersion 3.7.0 -Force在“捐赠者”机器上运行,它给了我 50 多个导出的目录: 在此处输入图像描述

我将所有内容复制到“接收器”机器并运行:

..但是得到所有依赖项的错误:

在此处输入图像描述

任何想法如何正确地将 Az 模块脱机?

0 投票
1 回答
277 浏览

azure - Az Command powershell 用于在 azure app 服务的 CORS 中添加 url

我正在寻找 az commands (powershell) 以在部署时在 azure app 服务中添加 url

为了清楚起见,您可以参考随附的图像。 在此处输入图像描述

提前致谢

0 投票
1 回答
308 浏览

azure - Azure 流量管理器终结点更新失败,并显示“resourceTargetId 属性无效或缺失”

我正在尝试使用 Azure CLI 更新 Azure 流量管理器端点,我运行以下代码:

这些不同标志的值是通过先前的调用获得的,az network traffic-manager endpoint list但是尝试将端点设置targetResourceId为不同的资源失败并出现以下错误:

操作失败,状态为:“错误请求”。详细信息:端点“we”的“resourceTargetId”属性无效或缺失。必须仅为以下终结点类型指定该属性:AzureEndpoints、NestedEndpoints。您必须对它所引用的资源具有读取权限。

我可以绝对肯定地说,我尝试更新的端点是 AzureEndpoint,并且我尝试将其设置为的资源与端点本身存在于同一位置。我查看了文档并尝试用谷歌搜索这个错误,但到目前为止还没有发现任何有用的东西。

0 投票
1 回答
100 浏览

azure - 通过 cmdlet 或 rest api 在 Azure 合作伙伴中心注册 Azure 应用

我目前必须访问 Azure 合作伙伴门户 ( https://partnercenter.microsoft.com ) 才能从 Azure 注册应用程序。我想通过 powershell 脚本自动执行此操作,但似乎不存在执行此功能的 cmdlet。澄清一下,合作伙伴中心功能存在一个 cmdlet 模块(此处链接),但这些都不会注册应用程序注册。有没有人遇到过这个问题,除了在合作伙伴中心门户中手动执行之外,您是如何处理的?

提前致谢。

0 投票
1 回答
1185 浏览

azure - 如何将 az network public-ip list 输出导出到 csv?

如何将输出导出到 csv?提前致谢

这是输出:

我试过az network public-ip list --query "[].{name: name, address: ipAddress}" | export-csv -path "c:\ips.csv"了,但这会输出一些元数据而不是实际数据。有没有办法使用 JMESPath 查询展开该文档数组?这可能会解决我面临的问题。