Tune the ANN Index and Query

With vector search algorithms and databases, it is common to tune the configurations of the index that govern how it is built as well as tune some parameters during search time. For example, with HNSW, one can tune maxConnections or efConstruction prior to building the index and efSearch during querying. How can I get such control over the index configuration within Pinecone? I know there is a index_config parameter that can be passed to pinecone.create_index(), but it is poorly documented and I figure out how to set up my desired configuration. If someone could share an example with the HNSW config parameters listed above, that would be greatly appreciated!!