【发布时间】:2021-03-04 22:30:57
【问题描述】:
如何通过 ARM 模板更新 Service Bus 主题的 duplicateDetectionHistoryTimeWindow 值?
这是我的 ARM 模板,将 duplicateDetectionHistoryTimeWindow 设置为 1 分钟,但部署失败:
"resources": [
{
"apiVersion": "2017-04-01",
"name": "[concat(parameters('serviceBusName'), '/', parameters('topicName'))]",
"type": "Microsoft.ServiceBus/namespaces/topics",
"properties": {
"path": "[parameters('topicName')]",
"requiresDuplicateDetection": true,
"defaultMessageTimeToLive": "P14D",
"duplicateDetectionHistoryTimeWindow": "P01M"
}
}
]
【问题讨论】:
标签: azure-resource-manager azure-servicebus-topics