I have created a search index for a blob store of HTML documents on Azure. I'm using Azure search to query the documents from this index.
What I would like to retrieve is the contents of the search index itself. That is I want to retrieve the entire inverted index.
What I have tried:I have inspected the API docs and understand that I can retrieve the index definition with the Get Index operation, get individual documents, and see a sample token with the Analyze API, but do not see a way to retrieve the actual inverted search index.
Is it possible to achieve this?