我想创建一个处于禁用状态的加密存储帐户。但默认情况下,在创建存储时启用加密。仪表板中没有禁用它的选项。我引用了一个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.'."}}
请帮我解决这个问题。