gpt4 book ai didi

azure - 禁用存储帐户的加密

转载 作者:行者123 更新时间:2023-12-03 04:22:36 25 4
gpt4 key购买 nike

我想创建一个处于禁用状态的加密存储帐户。但默认情况下,创建存储时会启用加密。仪表板中没有选项可以禁用它。我提到了Microsoft API并尝试了以下请求,但它不起作用。

{
"sku": {
"name": "Standard_LRS"
},
"kind": "Storage",
"location": "westus2",
"encryption": {
"services": {
"blob": {
"enabled": False
}
}
}}

回应:

{"error":{"code":"InvalidRequestContent","message":"The request content was invalid and could not be deserialized: 'Could not find member 'encryption' on object of type 'ResourceDefinition'. Path 'encryption', line 1, position 47.'."}}

请帮我解决这个问题。

最佳答案

您收到此错误的原因是加密属性应该位于properties属性内。请将您的请求正文更改为:

{
"sku": {
"name": "Standard_LRS"
},
"kind": "Storage",
"location": "westus2",
"properties": {
"encryption": {
"keySource": "Microsoft.Storage"
"services": {
"blob": {
"enabled": False
}
}
}
}
}

或者您可以做的其他事情就是一起摆脱加密属性。因此,在这种情况下,您的请求正文将类似于:

{
"sku": {
"name": "Standard_LRS"
},
"kind": "Storage",
"location": "westus2",
"properties": {
}
}

但是我很好奇为什么您想要禁用静态加密。

关于azure - 禁用存储帐户的加密,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47172692/

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