diff --git a/src/main/antora/modules/ROOT/pages/mongodb/template-collection-management.adoc b/src/main/antora/modules/ROOT/pages/mongodb/template-collection-management.adoc index 00b3f8216..4d8ff007e 100644 --- a/src/main/antora/modules/ROOT/pages/mongodb/template-collection-management.adoc +++ b/src/main/antora/modules/ROOT/pages/mongodb/template-collection-management.adoc @@ -15,16 +15,14 @@ Imperative:: ---- public interface IndexOperations { - void ensureIndex(IndexDefinition indexDefinition); + String ensureIndex(IndexDefinition indexDefinition); - void alterIndex(String name); + void alterIndex(String name, IndexOptions options); void dropIndex(String name); void dropAllIndexes(); - void resetIndexCache(); - List getIndexInfo(); } ----