I want to create a storage account with encryption in disabled state. But by default encryption is enabled while creating a storage.There is no option in dashboard to disable it. I referred a Microsoft API and tried with the below request but its not working.
{
"sku": {
"name": "Standard_LRS"
},
"kind": "Storage",
"location": "westus2",
"encryption": {
"services": {
"blob": {
"enabled": False
}
}
}}
Response:
{"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.'."}}
Kindly help me out to solve this.