When removing indexing, I get the following error when trying to insert a document:
{{
"code": "BadRequest",
"message": "Message: {\"Errors\":[\"Indexing mode value cannot be 'none' when automatic indexing is specified as 'true'.\"]}..."
}}
I am using the SDK to do this:
collection.IndexingPolicy.IndexingMode = IndexingMode.None;
client.ReplaceDocumentCollectionAsync(collection).Wait();
I cannot find anything online with regards to this error or for specifying automatic indexing to true/false.