Uses of Class
com.couchbase.client.java.manager.query.DropPrimaryQueryIndexOptions
-
Packages that use DropPrimaryQueryIndexOptions Package Description com.couchbase.client.java.manager.query APIs related to N1QL query index management. -
-
Uses of DropPrimaryQueryIndexOptions in com.couchbase.client.java.manager.query
Methods in com.couchbase.client.java.manager.query that return DropPrimaryQueryIndexOptions Modifier and Type Method Description DropPrimaryQueryIndexOptions
DropPrimaryQueryIndexOptions. collectionName(String collectionName)
Deprecated.`collection.queryIndexes()` should now be used for collection-related query index operations.static DropPrimaryQueryIndexOptions
DropPrimaryQueryIndexOptions. dropPrimaryQueryIndexOptions()
Creates a new instance with default values.DropPrimaryQueryIndexOptions
DropPrimaryQueryIndexOptions. ignoreIfNotExists(boolean ignore)
If the index does not exist, an exception will be thrown unless this is set to true.DropPrimaryQueryIndexOptions
DropPrimaryQueryIndexOptions. scopeName(String scopeName)
Deprecated.`collection.queryIndexes()` should now be used for collection-related query index operations.Methods in com.couchbase.client.java.manager.query with parameters of type DropPrimaryQueryIndexOptions Modifier and Type Method Description CompletableFuture<Void>
AsyncCollectionQueryIndexManager. dropPrimaryIndex(DropPrimaryQueryIndexOptions options)
Drops the primary index from this collection with custom options.CompletableFuture<Void>
AsyncQueryIndexManager. dropPrimaryIndex(String bucketName, DropPrimaryQueryIndexOptions options)
Drops the primary index from a bucket with custom options.void
CollectionQueryIndexManager. dropPrimaryIndex(DropPrimaryQueryIndexOptions options)
Drops the primary index from this collection with custom options.void
QueryIndexManager. dropPrimaryIndex(String bucketName, DropPrimaryQueryIndexOptions options)
Drops the primary index from a bucket with custom options.Mono<Void>
ReactiveCollectionQueryIndexManager. dropPrimaryIndex(DropPrimaryQueryIndexOptions options)
Drops the primary index from this collection.Mono<Void>
ReactiveQueryIndexManager. dropPrimaryIndex(String bucketName, DropPrimaryQueryIndexOptions options)
Drops the primary index from a bucket with custom options.
-