无法使用 Azure CLI 清除 Azure CDN 终结点
Not able to purge Azure CDN Endpoint using Azure CLI
我正在使用 Azure CLI 清除 Azure CDN 终结点中的所有内容。我从 Microsoft Docs 获得参考:https://docs.microsoft.com/en-us/cli/azure/cdn/endpoint?view=azure-cli-latest
我正在尝试使用正确的参数执行完全相同的命令,但它说 - "Endpoint(s) not found. Please verify the resource(s), group or it's parent resources exist."
az cdn endpoint purge -g <my-resource-group> --profile-name \
<name-of-cdn-profile> --content-paths '/*' --name <cdn-endpoint-name>
-呈现以上错误
但是,当我发出列表命令时,我可以看到 CDN 端点:
az cdn endpoint list -g <my-resource-group> --profile-name <cd>n-profile-name>
上面的命令工作正常,returns 我试图清除的端点
有人有类似经历吗?
TIA!
我会产生这个错误,请检查参数--name <cdn-endpoint-name>
,它不应该有像.azureedge.net
这样的后缀。终结点名称是资源组中类型为 Endpoint
的资源的名称。
我正在使用 Azure CLI 清除 Azure CDN 终结点中的所有内容。我从 Microsoft Docs 获得参考:https://docs.microsoft.com/en-us/cli/azure/cdn/endpoint?view=azure-cli-latest
我正在尝试使用正确的参数执行完全相同的命令,但它说 - "Endpoint(s) not found. Please verify the resource(s), group or it's parent resources exist."
az cdn endpoint purge -g <my-resource-group> --profile-name \
<name-of-cdn-profile> --content-paths '/*' --name <cdn-endpoint-name>
-呈现以上错误
但是,当我发出列表命令时,我可以看到 CDN 端点:
az cdn endpoint list -g <my-resource-group> --profile-name <cd>n-profile-name>
上面的命令工作正常,returns 我试图清除的端点
有人有类似经历吗?
TIA!
我会产生这个错误,请检查参数--name <cdn-endpoint-name>
,它不应该有像.azureedge.net
这样的后缀。终结点名称是资源组中类型为 Endpoint
的资源的名称。