Interface DropPrimaryQueryIndexOptions

interface DropPrimaryQueryIndexOptions {
    collectionName?: string;
    ignoreIfNotExists?: boolean;
    name?: string;
    scopeName?: string;
    timeout?: number;
}

Properties

collectionName?: string

Specifies the collection of this index.

Deprecated

Use CollectionQueryIndexManager instead.

ignoreIfNotExists?: boolean

Whether or not the call should ignore the index already existing when determining whether the call was successful.

name?: string

The name of the primary index to drop.

scopeName?: string

Specifies the collection scope of this index.

Deprecated

Use CollectionQueryIndexManager instead.

timeout?: number

The timeout for this operation, represented in milliseconds.