【Azure Notification Hub】创建Notification Hub失败,提示 unrecognized arguments: --sku Free

简介: 【Azure Notification Hub】创建Notification Hub失败,提示 unrecognized arguments: --sku Free

问题描述

用Azure CLI命令创建 Notification Hub,报错不识别的参数 --Free SKU

问题解答

经测试发现,在创建Notification Hub前,需要创建 Notification Hub Namespace,而在创建Namespace时候,需要指定资源的定价层(如: --sku Free),所以当在Namespace下创建Notification Hub时,就不在需要指定 --SKU参数。

正确的创建 CLI命令为:

#1: 创建notification hub namespace 
az notification-hub namespace create --resource-group test --name testnhns001 --location chinaeast --sku Free
#2: 创建notification hub
az notification-hub create --resource-group test --namespace-name testnhns001 --name testnhub01 --location chinaeast

 

参考文档

使用 Azure CLI 创建 Azure 通知中心 : https://docs.azure.cn/zh-cn/notification-hubs/create-notification-hub-azure-cli

相关文章
Mac Source Tree拉代码报错,remote: CODING 提示: Authentication failed. remote: 认证失败,请确认您输入了正确的账号密码。 fatal...
Mac Source Tree拉代码报错,remote: CODING 提示: Authentication failed. remote: 认证失败,请确认您输入了正确的账号密码。 fatal...
1921 0
Mac Source Tree拉代码报错,remote: CODING 提示: Authentication failed. remote: 认证失败,请确认您输入了正确的账号密码。 fatal...
微信分享报错 wxlog:Error:fail to load Keychain status:-25300 解决办法
微信分享报错 wxlog:Error:fail to load Keychain status:-25300 解决办法
2407 0
|
4月前
|
Android开发
【Azure 环境】记录使用Notification Hub,安卓手机收不到Push通知时的错误,Error_Code 30602 or 30608
【Azure 环境】记录使用Notification Hub,安卓手机收不到Push通知时的错误,Error_Code 30602 or 30608
|
4月前
|
消息中间件 存储 Kafka
【Azure 事件中心】适用Mirror Maker生产数据发送到Azure Event Hub出现发送一段时间后Timeout Exception: Expiring 18 record(s) for xxxxxxx: 79823 ms has passed since last append
【Azure 事件中心】适用Mirror Maker生产数据发送到Azure Event Hub出现发送一段时间后Timeout Exception: Expiring 18 record(s) for xxxxxxx: 79823 ms has passed since last append
|
4月前
|
C# 开发工具
【Azure Notification Hub】如何手动删除 Notification Hub 中已注册的设备
【Azure Notification Hub】如何手动删除 Notification Hub 中已注册的设备
|
4月前
|
JSON Go 数据格式
【Azure 环境】Notification Hub无法创建Policy : 出现 500 Internal Server Error
【Azure 环境】Notification Hub无法创建Policy : 出现 500 Internal Server Error
|
4月前
|
消息中间件 开发工具
【Azure 事件中心】Event Hub 消费端出现 Timeout Exception,errorContext中 LINK_CREDIT为0的解释
【Azure 事件中心】Event Hub 消费端出现 Timeout Exception,errorContext中 LINK_CREDIT为0的解释
|
4月前
|
JSON 开发工具 数据格式
【Azure Event Hub】Event Hub的Process Data页面无法通过JSON格式预览数据
【Azure Event Hub】Event Hub的Process Data页面无法通过JSON格式预览数据
|
7月前
|
iOS开发
XCode10.2.1打开老工程报Multiple commands produce与Info.plis错误
XCode10.2.1打开老工程报Multiple commands produce与Info.plis错误
56 0
|
Java 程序员 项目管理
记录:remote: You are not allowed to push code to this project...【亲测有效】
记录:remote: You are not allowed to push code to this project...【亲测有效】
2090 0