gpt4 book ai didi

azure - 指定的名称不可用 Azure EventHub 命名空间

转载 作者:行者123 更新时间:2023-12-02 06:55:01 25 4
gpt4 key购买 nike

我尝试使用新的 EventHub 命名空间部署 ARM 模板。但它失败并出现 BadRequest 错误,指定的名称不可用。。但该名称以前未曾在该资源组下的任何内容中使用过。当我尝试从门户手动创建类似的资源时,它工作正常。所以这不应该是特权问题。有人可以在这里提出我的问题吗?

{
"type": "Microsoft.EventHub/namespaces",
"apiVersion": "2021-11-01",
"name": "xxxx-xxxx-xxx-000",
"location": "[variables('location')]",
"sku": {
"name": "Standard",
"tier": "Standard",
"capacity": 1
},
"properties": {
"isAutoInflateEnabled": false,
"maximumThroughputUnits": 0
}
}

最佳答案

我们在我们的环境中尝试了同样的方法来创建一个名称与您相似的 eventhub 命名空间,并且效果很好。

以下是我们遵循的解决方法;

以相同的名称,我们将尝试通过在门户中创建的 ARM 进行部署,然后尝试通过 ARM 进行部署,但遇到了相同的问题。

enter image description here

是的这是我们可以预料到的一个已知问题,为了确保我们需要提供全局唯一的名称而不是任何资源组的名称,不仅在您的资源组中,该名称不应在任何地方使用( azure ) .

如果您是通过门户创建的并再次尝试使用 ARM,请确保如果您是该命名空间的所有者,请删除前一个。删除后用相同的名称重试。

我们提供了与您类似的命名空间来检查该值是否已传递以及是否成功运行

template.json

"resources": [
{
"type": "Microsoft.EventHub/namespaces",
"apiVersion": "2022-01-01-preview",
"name": "[parameters('namespaces_ajletter_test_111_something_name')]",
"location": "Central India",
"sku": {
"name": "Standard",
"tier": "Standard",
"capacity": 1
},

输出屏幕截图供引用:-

enter image description here enter image description here

有关更多信息,请参阅以下链接:-

关于azure - 指定的名称不可用 Azure EventHub 命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73060765/

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