-
Notifications
You must be signed in to change notification settings - Fork 892
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
GODRIVER-2859 Add search index management helpers.
- Loading branch information
1 parent
a09e00c
commit a154b3a
Showing
11 changed files
with
1,191 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// Copyright (C) MongoDB, Inc. 2023-present. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. You may obtain | ||
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
package options | ||
|
||
// CreateSearchIndexesOptions represents options that can be used to configure a SearchIndexView.CreateOne or | ||
// SearchIndexView.CreateMany operation. | ||
type CreateSearchIndexesOptions struct { | ||
} | ||
|
||
// ListSearchIndexesOptions represents options that can be used to configure a SearchIndexView.List operation. | ||
type ListSearchIndexesOptions struct { | ||
} | ||
|
||
// DropSearchIndexOptions represents options that can be used to configure a SearchIndexView.DropOne operation. | ||
type DropSearchIndexOptions struct { | ||
} | ||
|
||
// UpdateSearchIndexOptions represents options that can be used to configure a SearchIndexView.UpdateOne operation. | ||
type UpdateSearchIndexOptions struct { | ||
} |
Oops, something went wrong.