@@ -32,6 +32,7 @@ import {
32
32
CreateCollectionCommandInput,
33
33
CreateCollectionCommandOutput,
34
34
} from "./commands/CreateCollectionCommand";
35
+
import { CreateIndexCommand, CreateIndexCommandInput, CreateIndexCommandOutput } from "./commands/CreateIndexCommand";
35
36
import {
36
37
CreateLifecyclePolicyCommand,
37
38
CreateLifecyclePolicyCommandInput,
@@ -62,6 +63,7 @@ import {
62
63
DeleteCollectionCommandInput,
63
64
DeleteCollectionCommandOutput,
64
65
} from "./commands/DeleteCollectionCommand";
66
+
import { DeleteIndexCommand, DeleteIndexCommandInput, DeleteIndexCommandOutput } from "./commands/DeleteIndexCommand";
65
67
import {
66
68
DeleteLifecyclePolicyCommand,
67
69
DeleteLifecyclePolicyCommandInput,
@@ -92,6 +94,7 @@ import {
92
94
GetAccountSettingsCommandInput,
93
95
GetAccountSettingsCommandOutput,
94
96
} from "./commands/GetAccountSettingsCommand";
97
+
import { GetIndexCommand, GetIndexCommandInput, GetIndexCommandOutput } from "./commands/GetIndexCommand";
95
98
import {
96
99
GetPoliciesStatsCommand,
97
100
GetPoliciesStatsCommandInput,
@@ -163,6 +166,7 @@ import {
163
166
UpdateCollectionCommandInput,
164
167
UpdateCollectionCommandOutput,
165
168
} from "./commands/UpdateCollectionCommand";
169
+
import { UpdateIndexCommand, UpdateIndexCommandInput, UpdateIndexCommandOutput } from "./commands/UpdateIndexCommand";
166
170
import {
167
171
UpdateLifecyclePolicyCommand,
168
172
UpdateLifecyclePolicyCommandInput,
@@ -192,18 +196,21 @@ const commands = {
192
196
BatchGetVpcEndpointCommand,
193
197
CreateAccessPolicyCommand,
194
198
CreateCollectionCommand,
199
+
CreateIndexCommand,
195
200
CreateLifecyclePolicyCommand,
196
201
CreateSecurityConfigCommand,
197
202
CreateSecurityPolicyCommand,
198
203
CreateVpcEndpointCommand,
199
204
DeleteAccessPolicyCommand,
200
205
DeleteCollectionCommand,
206
+
DeleteIndexCommand,
201
207
DeleteLifecyclePolicyCommand,
202
208
DeleteSecurityConfigCommand,
203
209
DeleteSecurityPolicyCommand,
204
210
DeleteVpcEndpointCommand,
205
211
GetAccessPolicyCommand,
206
212
GetAccountSettingsCommand,
213
+
GetIndexCommand,
207
214
GetPoliciesStatsCommand,
208
215
GetSecurityConfigCommand,
209
216
GetSecurityPolicyCommand,
@@ -219,6 +226,7 @@ const commands = {
219
226
UpdateAccessPolicyCommand,
220
227
UpdateAccountSettingsCommand,
221
228
UpdateCollectionCommand,
229
+
UpdateIndexCommand,
222
230
UpdateLifecyclePolicyCommand,
223
231
UpdateSecurityConfigCommand,
224
232
UpdateSecurityPolicyCommand,
@@ -329,6 +337,17 @@ export interface OpenSearchServerless {
329
337
cb: (err: any, data?: CreateCollectionCommandOutput) => void
330
338
): void;
331
339
340
+
/**
341
+
* @see {@link CreateIndexCommand}
342
+
*/
343
+
createIndex(args: CreateIndexCommandInput, options?: __HttpHandlerOptions): Promise<CreateIndexCommandOutput>;
344
+
createIndex(args: CreateIndexCommandInput, cb: (err: any, data?: CreateIndexCommandOutput) => void): void;
345
+
createIndex(
346
+
args: CreateIndexCommandInput,
347
+
options: __HttpHandlerOptions,
348
+
cb: (err: any, data?: CreateIndexCommandOutput) => void
349
+
): void;
350
+
332
351
/**
333
352
* @see {@link CreateLifecyclePolicyCommand}
334
353
*/
@@ -431,6 +450,17 @@ export interface OpenSearchServerless {
431
450
cb: (err: any, data?: DeleteCollectionCommandOutput) => void
432
451
): void;
433
452
453
+
/**
454
+
* @see {@link DeleteIndexCommand}
455
+
*/
456
+
deleteIndex(args: DeleteIndexCommandInput, options?: __HttpHandlerOptions): Promise<DeleteIndexCommandOutput>;
457
+
deleteIndex(args: DeleteIndexCommandInput, cb: (err: any, data?: DeleteIndexCommandOutput) => void): void;
458
+
deleteIndex(
459
+
args: DeleteIndexCommandInput,
460
+
options: __HttpHandlerOptions,
461
+
cb: (err: any, data?: DeleteIndexCommandOutput) => void
462
+
): void;
463
+
434
464
/**
435
465
* @see {@link DeleteLifecyclePolicyCommand}
436
466
*/
@@ -531,6 +561,17 @@ export interface OpenSearchServerless {
531
561
cb: (err: any, data?: GetAccountSettingsCommandOutput) => void
532
562
): void;
533
563
564
+
/**
565
+
* @see {@link GetIndexCommand}
566
+
*/
567
+
getIndex(args: GetIndexCommandInput, options?: __HttpHandlerOptions): Promise<GetIndexCommandOutput>;
568
+
getIndex(args: GetIndexCommandInput, cb: (err: any, data?: GetIndexCommandOutput) => void): void;
569
+
getIndex(
570
+
args: GetIndexCommandInput,
571
+
options: __HttpHandlerOptions,
572
+
cb: (err: any, data?: GetIndexCommandOutput) => void
573
+
): void;
574
+
534
575
/**
535
576
* @see {@link GetPoliciesStatsCommand}
536
577
*/
@@ -775,6 +816,17 @@ export interface OpenSearchServerless {
775
816
cb: (err: any, data?: UpdateCollectionCommandOutput) => void
776
817
): void;
777
818
819
+
/**
820
+
* @see {@link UpdateIndexCommand}
821
+
*/
822
+
updateIndex(args: UpdateIndexCommandInput, options?: __HttpHandlerOptions): Promise<UpdateIndexCommandOutput>;
823
+
updateIndex(args: UpdateIndexCommandInput, cb: (err: any, data?: UpdateIndexCommandOutput) => void): void;
824
+
updateIndex(
825
+
args: UpdateIndexCommandInput,
826
+
options: __HttpHandlerOptions,
827
+
cb: (err: any, data?: UpdateIndexCommandOutput) => void
828
+
): void;
829
+
778
830
/**
779
831
* @see {@link UpdateLifecyclePolicyCommand}
780
832
*/
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4