@aws-sdk/client-opensearchserverless 3.968.0 → 3.970.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/README.md +35 -0
  2. package/dist-cjs/index.js +296 -56
  3. package/dist-es/OpenSearchServerless.js +10 -0
  4. package/dist-es/commands/BatchGetCollectionGroupCommand.js +16 -0
  5. package/dist-es/commands/CreateCollectionGroupCommand.js +16 -0
  6. package/dist-es/commands/DeleteCollectionGroupCommand.js +16 -0
  7. package/dist-es/commands/ListCollectionGroupsCommand.js +16 -0
  8. package/dist-es/commands/UpdateCollectionGroupCommand.js +16 -0
  9. package/dist-es/commands/index.js +5 -0
  10. package/dist-es/pagination/ListCollectionGroupsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/schemas/schemas_0.js +203 -56
  13. package/dist-types/OpenSearchServerless.d.ts +37 -0
  14. package/dist-types/OpenSearchServerlessClient.d.ts +7 -2
  15. package/dist-types/commands/BatchGetCollectionCommand.d.ts +1 -0
  16. package/dist-types/commands/BatchGetCollectionGroupCommand.d.ts +115 -0
  17. package/dist-types/commands/CreateAccessPolicyCommand.d.ts +1 -1
  18. package/dist-types/commands/CreateCollectionCommand.d.ts +7 -1
  19. package/dist-types/commands/CreateCollectionGroupCommand.d.ts +120 -0
  20. package/dist-types/commands/CreateIndexCommand.d.ts +1 -1
  21. package/dist-types/commands/CreateLifecyclePolicyCommand.d.ts +1 -1
  22. package/dist-types/commands/CreateSecurityConfigCommand.d.ts +1 -1
  23. package/dist-types/commands/CreateSecurityPolicyCommand.d.ts +1 -1
  24. package/dist-types/commands/CreateVpcEndpointCommand.d.ts +1 -1
  25. package/dist-types/commands/DeleteAccessPolicyCommand.d.ts +1 -1
  26. package/dist-types/commands/DeleteCollectionCommand.d.ts +1 -1
  27. package/dist-types/commands/DeleteCollectionGroupCommand.d.ts +85 -0
  28. package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +1 -1
  29. package/dist-types/commands/DeleteSecurityConfigCommand.d.ts +1 -1
  30. package/dist-types/commands/DeleteSecurityPolicyCommand.d.ts +1 -1
  31. package/dist-types/commands/DeleteVpcEndpointCommand.d.ts +1 -1
  32. package/dist-types/commands/ListCollectionGroupsCommand.d.ts +96 -0
  33. package/dist-types/commands/ListCollectionsCommand.d.ts +3 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  35. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  36. package/dist-types/commands/UpdateAccessPolicyCommand.d.ts +1 -1
  37. package/dist-types/commands/UpdateCollectionCommand.d.ts +1 -1
  38. package/dist-types/commands/UpdateCollectionGroupCommand.d.ts +107 -0
  39. package/dist-types/commands/UpdateLifecyclePolicyCommand.d.ts +1 -1
  40. package/dist-types/commands/UpdateSecurityConfigCommand.d.ts +1 -1
  41. package/dist-types/commands/UpdateSecurityPolicyCommand.d.ts +1 -1
  42. package/dist-types/commands/UpdateVpcEndpointCommand.d.ts +1 -1
  43. package/dist-types/commands/index.d.ts +5 -0
  44. package/dist-types/models/errors.d.ts +1 -1
  45. package/dist-types/models/models_0.d.ts +445 -8
  46. package/dist-types/pagination/ListCollectionGroupsPaginator.d.ts +7 -0
  47. package/dist-types/pagination/index.d.ts +1 -0
  48. package/dist-types/schemas/schemas_0.d.ts +22 -0
  49. package/dist-types/ts3.4/OpenSearchServerless.d.ts +87 -0
  50. package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +30 -0
  51. package/dist-types/ts3.4/commands/BatchGetCollectionGroupCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/CreateCollectionGroupCommand.d.ts +51 -0
  53. package/dist-types/ts3.4/commands/DeleteCollectionGroupCommand.d.ts +51 -0
  54. package/dist-types/ts3.4/commands/ListCollectionGroupsCommand.d.ts +51 -0
  55. package/dist-types/ts3.4/commands/UpdateCollectionGroupCommand.d.ts +51 -0
  56. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  57. package/dist-types/ts3.4/models/models_0.d.ts +105 -3
  58. package/dist-types/ts3.4/pagination/ListCollectionGroupsPaginator.d.ts +11 -0
  59. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  60. package/dist-types/ts3.4/schemas/schemas_0.d.ts +22 -0
  61. package/package.json +33 -33
@@ -3,6 +3,10 @@ import {
3
3
  BatchGetCollectionCommandInput,
4
4
  BatchGetCollectionCommandOutput,
5
5
  } from "./commands/BatchGetCollectionCommand";
6
+ import {
7
+ BatchGetCollectionGroupCommandInput,
8
+ BatchGetCollectionGroupCommandOutput,
9
+ } from "./commands/BatchGetCollectionGroupCommand";
6
10
  import {
7
11
  BatchGetEffectiveLifecyclePolicyCommandInput,
8
12
  BatchGetEffectiveLifecyclePolicyCommandOutput,
@@ -23,6 +27,10 @@ import {
23
27
  CreateCollectionCommandInput,
24
28
  CreateCollectionCommandOutput,
25
29
  } from "./commands/CreateCollectionCommand";
30
+ import {
31
+ CreateCollectionGroupCommandInput,
32
+ CreateCollectionGroupCommandOutput,
33
+ } from "./commands/CreateCollectionGroupCommand";
26
34
  import {
27
35
  CreateIndexCommandInput,
28
36
  CreateIndexCommandOutput,
@@ -51,6 +59,10 @@ import {
51
59
  DeleteCollectionCommandInput,
52
60
  DeleteCollectionCommandOutput,
53
61
  } from "./commands/DeleteCollectionCommand";
62
+ import {
63
+ DeleteCollectionGroupCommandInput,
64
+ DeleteCollectionGroupCommandOutput,
65
+ } from "./commands/DeleteCollectionGroupCommand";
54
66
  import {
55
67
  DeleteIndexCommandInput,
56
68
  DeleteIndexCommandOutput,
@@ -99,6 +111,10 @@ import {
99
111
  ListAccessPoliciesCommandInput,
100
112
  ListAccessPoliciesCommandOutput,
101
113
  } from "./commands/ListAccessPoliciesCommand";
114
+ import {
115
+ ListCollectionGroupsCommandInput,
116
+ ListCollectionGroupsCommandOutput,
117
+ } from "./commands/ListCollectionGroupsCommand";
102
118
  import {
103
119
  ListCollectionsCommandInput,
104
120
  ListCollectionsCommandOutput,
@@ -143,6 +159,10 @@ import {
143
159
  UpdateCollectionCommandInput,
144
160
  UpdateCollectionCommandOutput,
145
161
  } from "./commands/UpdateCollectionCommand";
162
+ import {
163
+ UpdateCollectionGroupCommandInput,
164
+ UpdateCollectionGroupCommandOutput,
165
+ } from "./commands/UpdateCollectionGroupCommand";
146
166
  import {
147
167
  UpdateIndexCommandInput,
148
168
  UpdateIndexCommandOutput,
@@ -179,6 +199,20 @@ export interface OpenSearchServerless {
179
199
  options: __HttpHandlerOptions,
180
200
  cb: (err: any, data?: BatchGetCollectionCommandOutput) => void
181
201
  ): void;
202
+ batchGetCollectionGroup(): Promise<BatchGetCollectionGroupCommandOutput>;
203
+ batchGetCollectionGroup(
204
+ args: BatchGetCollectionGroupCommandInput,
205
+ options?: __HttpHandlerOptions
206
+ ): Promise<BatchGetCollectionGroupCommandOutput>;
207
+ batchGetCollectionGroup(
208
+ args: BatchGetCollectionGroupCommandInput,
209
+ cb: (err: any, data?: BatchGetCollectionGroupCommandOutput) => void
210
+ ): void;
211
+ batchGetCollectionGroup(
212
+ args: BatchGetCollectionGroupCommandInput,
213
+ options: __HttpHandlerOptions,
214
+ cb: (err: any, data?: BatchGetCollectionGroupCommandOutput) => void
215
+ ): void;
182
216
  batchGetEffectiveLifecyclePolicy(
183
217
  args: BatchGetEffectiveLifecyclePolicyCommandInput,
184
218
  options?: __HttpHandlerOptions
@@ -244,6 +278,19 @@ export interface OpenSearchServerless {
244
278
  options: __HttpHandlerOptions,
245
279
  cb: (err: any, data?: CreateCollectionCommandOutput) => void
246
280
  ): void;
281
+ createCollectionGroup(
282
+ args: CreateCollectionGroupCommandInput,
283
+ options?: __HttpHandlerOptions
284
+ ): Promise<CreateCollectionGroupCommandOutput>;
285
+ createCollectionGroup(
286
+ args: CreateCollectionGroupCommandInput,
287
+ cb: (err: any, data?: CreateCollectionGroupCommandOutput) => void
288
+ ): void;
289
+ createCollectionGroup(
290
+ args: CreateCollectionGroupCommandInput,
291
+ options: __HttpHandlerOptions,
292
+ cb: (err: any, data?: CreateCollectionGroupCommandOutput) => void
293
+ ): void;
247
294
  createIndex(
248
295
  args: CreateIndexCommandInput,
249
296
  options?: __HttpHandlerOptions
@@ -335,6 +382,19 @@ export interface OpenSearchServerless {
335
382
  options: __HttpHandlerOptions,
336
383
  cb: (err: any, data?: DeleteCollectionCommandOutput) => void
337
384
  ): void;
385
+ deleteCollectionGroup(
386
+ args: DeleteCollectionGroupCommandInput,
387
+ options?: __HttpHandlerOptions
388
+ ): Promise<DeleteCollectionGroupCommandOutput>;
389
+ deleteCollectionGroup(
390
+ args: DeleteCollectionGroupCommandInput,
391
+ cb: (err: any, data?: DeleteCollectionGroupCommandOutput) => void
392
+ ): void;
393
+ deleteCollectionGroup(
394
+ args: DeleteCollectionGroupCommandInput,
395
+ options: __HttpHandlerOptions,
396
+ cb: (err: any, data?: DeleteCollectionGroupCommandOutput) => void
397
+ ): void;
338
398
  deleteIndex(
339
399
  args: DeleteIndexCommandInput,
340
400
  options?: __HttpHandlerOptions
@@ -493,6 +553,20 @@ export interface OpenSearchServerless {
493
553
  options: __HttpHandlerOptions,
494
554
  cb: (err: any, data?: ListAccessPoliciesCommandOutput) => void
495
555
  ): void;
556
+ listCollectionGroups(): Promise<ListCollectionGroupsCommandOutput>;
557
+ listCollectionGroups(
558
+ args: ListCollectionGroupsCommandInput,
559
+ options?: __HttpHandlerOptions
560
+ ): Promise<ListCollectionGroupsCommandOutput>;
561
+ listCollectionGroups(
562
+ args: ListCollectionGroupsCommandInput,
563
+ cb: (err: any, data?: ListCollectionGroupsCommandOutput) => void
564
+ ): void;
565
+ listCollectionGroups(
566
+ args: ListCollectionGroupsCommandInput,
567
+ options: __HttpHandlerOptions,
568
+ cb: (err: any, data?: ListCollectionGroupsCommandOutput) => void
569
+ ): void;
496
570
  listCollections(): Promise<ListCollectionsCommandOutput>;
497
571
  listCollections(
498
572
  args: ListCollectionsCommandInput,
@@ -639,6 +713,19 @@ export interface OpenSearchServerless {
639
713
  options: __HttpHandlerOptions,
640
714
  cb: (err: any, data?: UpdateCollectionCommandOutput) => void
641
715
  ): void;
716
+ updateCollectionGroup(
717
+ args: UpdateCollectionGroupCommandInput,
718
+ options?: __HttpHandlerOptions
719
+ ): Promise<UpdateCollectionGroupCommandOutput>;
720
+ updateCollectionGroup(
721
+ args: UpdateCollectionGroupCommandInput,
722
+ cb: (err: any, data?: UpdateCollectionGroupCommandOutput) => void
723
+ ): void;
724
+ updateCollectionGroup(
725
+ args: UpdateCollectionGroupCommandInput,
726
+ options: __HttpHandlerOptions,
727
+ cb: (err: any, data?: UpdateCollectionGroupCommandOutput) => void
728
+ ): void;
642
729
  updateIndex(
643
730
  args: UpdateIndexCommandInput,
644
731
  options?: __HttpHandlerOptions
@@ -49,6 +49,10 @@ import {
49
49
  BatchGetCollectionCommandInput,
50
50
  BatchGetCollectionCommandOutput,
51
51
  } from "./commands/BatchGetCollectionCommand";
52
+ import {
53
+ BatchGetCollectionGroupCommandInput,
54
+ BatchGetCollectionGroupCommandOutput,
55
+ } from "./commands/BatchGetCollectionGroupCommand";
52
56
  import {
53
57
  BatchGetEffectiveLifecyclePolicyCommandInput,
54
58
  BatchGetEffectiveLifecyclePolicyCommandOutput,
@@ -69,6 +73,10 @@ import {
69
73
  CreateCollectionCommandInput,
70
74
  CreateCollectionCommandOutput,
71
75
  } from "./commands/CreateCollectionCommand";
76
+ import {
77
+ CreateCollectionGroupCommandInput,
78
+ CreateCollectionGroupCommandOutput,
79
+ } from "./commands/CreateCollectionGroupCommand";
72
80
  import {
73
81
  CreateIndexCommandInput,
74
82
  CreateIndexCommandOutput,
@@ -97,6 +105,10 @@ import {
97
105
  DeleteCollectionCommandInput,
98
106
  DeleteCollectionCommandOutput,
99
107
  } from "./commands/DeleteCollectionCommand";
108
+ import {
109
+ DeleteCollectionGroupCommandInput,
110
+ DeleteCollectionGroupCommandOutput,
111
+ } from "./commands/DeleteCollectionGroupCommand";
100
112
  import {
101
113
  DeleteIndexCommandInput,
102
114
  DeleteIndexCommandOutput,
@@ -145,6 +157,10 @@ import {
145
157
  ListAccessPoliciesCommandInput,
146
158
  ListAccessPoliciesCommandOutput,
147
159
  } from "./commands/ListAccessPoliciesCommand";
160
+ import {
161
+ ListCollectionGroupsCommandInput,
162
+ ListCollectionGroupsCommandOutput,
163
+ } from "./commands/ListCollectionGroupsCommand";
148
164
  import {
149
165
  ListCollectionsCommandInput,
150
166
  ListCollectionsCommandOutput,
@@ -189,6 +205,10 @@ import {
189
205
  UpdateCollectionCommandInput,
190
206
  UpdateCollectionCommandOutput,
191
207
  } from "./commands/UpdateCollectionCommand";
208
+ import {
209
+ UpdateCollectionGroupCommandInput,
210
+ UpdateCollectionGroupCommandOutput,
211
+ } from "./commands/UpdateCollectionGroupCommand";
192
212
  import {
193
213
  UpdateIndexCommandInput,
194
214
  UpdateIndexCommandOutput,
@@ -218,11 +238,13 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
218
238
  export { __Client };
219
239
  export type ServiceInputTypes =
220
240
  | BatchGetCollectionCommandInput
241
+ | BatchGetCollectionGroupCommandInput
221
242
  | BatchGetEffectiveLifecyclePolicyCommandInput
222
243
  | BatchGetLifecyclePolicyCommandInput
223
244
  | BatchGetVpcEndpointCommandInput
224
245
  | CreateAccessPolicyCommandInput
225
246
  | CreateCollectionCommandInput
247
+ | CreateCollectionGroupCommandInput
226
248
  | CreateIndexCommandInput
227
249
  | CreateLifecyclePolicyCommandInput
228
250
  | CreateSecurityConfigCommandInput
@@ -230,6 +252,7 @@ export type ServiceInputTypes =
230
252
  | CreateVpcEndpointCommandInput
231
253
  | DeleteAccessPolicyCommandInput
232
254
  | DeleteCollectionCommandInput
255
+ | DeleteCollectionGroupCommandInput
233
256
  | DeleteIndexCommandInput
234
257
  | DeleteLifecyclePolicyCommandInput
235
258
  | DeleteSecurityConfigCommandInput
@@ -242,6 +265,7 @@ export type ServiceInputTypes =
242
265
  | GetSecurityConfigCommandInput
243
266
  | GetSecurityPolicyCommandInput
244
267
  | ListAccessPoliciesCommandInput
268
+ | ListCollectionGroupsCommandInput
245
269
  | ListCollectionsCommandInput
246
270
  | ListLifecyclePoliciesCommandInput
247
271
  | ListSecurityConfigsCommandInput
@@ -253,6 +277,7 @@ export type ServiceInputTypes =
253
277
  | UpdateAccessPolicyCommandInput
254
278
  | UpdateAccountSettingsCommandInput
255
279
  | UpdateCollectionCommandInput
280
+ | UpdateCollectionGroupCommandInput
256
281
  | UpdateIndexCommandInput
257
282
  | UpdateLifecyclePolicyCommandInput
258
283
  | UpdateSecurityConfigCommandInput
@@ -260,11 +285,13 @@ export type ServiceInputTypes =
260
285
  | UpdateVpcEndpointCommandInput;
261
286
  export type ServiceOutputTypes =
262
287
  | BatchGetCollectionCommandOutput
288
+ | BatchGetCollectionGroupCommandOutput
263
289
  | BatchGetEffectiveLifecyclePolicyCommandOutput
264
290
  | BatchGetLifecyclePolicyCommandOutput
265
291
  | BatchGetVpcEndpointCommandOutput
266
292
  | CreateAccessPolicyCommandOutput
267
293
  | CreateCollectionCommandOutput
294
+ | CreateCollectionGroupCommandOutput
268
295
  | CreateIndexCommandOutput
269
296
  | CreateLifecyclePolicyCommandOutput
270
297
  | CreateSecurityConfigCommandOutput
@@ -272,6 +299,7 @@ export type ServiceOutputTypes =
272
299
  | CreateVpcEndpointCommandOutput
273
300
  | DeleteAccessPolicyCommandOutput
274
301
  | DeleteCollectionCommandOutput
302
+ | DeleteCollectionGroupCommandOutput
275
303
  | DeleteIndexCommandOutput
276
304
  | DeleteLifecyclePolicyCommandOutput
277
305
  | DeleteSecurityConfigCommandOutput
@@ -284,6 +312,7 @@ export type ServiceOutputTypes =
284
312
  | GetSecurityConfigCommandOutput
285
313
  | GetSecurityPolicyCommandOutput
286
314
  | ListAccessPoliciesCommandOutput
315
+ | ListCollectionGroupsCommandOutput
287
316
  | ListCollectionsCommandOutput
288
317
  | ListLifecyclePoliciesCommandOutput
289
318
  | ListSecurityConfigsCommandOutput
@@ -295,6 +324,7 @@ export type ServiceOutputTypes =
295
324
  | UpdateAccessPolicyCommandOutput
296
325
  | UpdateAccountSettingsCommandOutput
297
326
  | UpdateCollectionCommandOutput
327
+ | UpdateCollectionGroupCommandOutput
298
328
  | UpdateIndexCommandOutput
299
329
  | UpdateLifecyclePolicyCommandOutput
300
330
  | UpdateSecurityConfigCommandOutput
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ BatchGetCollectionGroupRequest,
5
+ BatchGetCollectionGroupResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OpenSearchServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OpenSearchServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface BatchGetCollectionGroupCommandInput
15
+ extends BatchGetCollectionGroupRequest {}
16
+ export interface BatchGetCollectionGroupCommandOutput
17
+ extends BatchGetCollectionGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const BatchGetCollectionGroupCommand_base: {
20
+ new (
21
+ input: BatchGetCollectionGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ BatchGetCollectionGroupCommandInput,
24
+ BatchGetCollectionGroupCommandOutput,
25
+ OpenSearchServerlessClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [BatchGetCollectionGroupCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ BatchGetCollectionGroupCommandInput,
33
+ BatchGetCollectionGroupCommandOutput,
34
+ OpenSearchServerlessClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class BatchGetCollectionGroupCommand extends BatchGetCollectionGroupCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: BatchGetCollectionGroupRequest;
44
+ output: BatchGetCollectionGroupResponse;
45
+ };
46
+ sdk: {
47
+ input: BatchGetCollectionGroupCommandInput;
48
+ output: BatchGetCollectionGroupCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateCollectionGroupRequest,
5
+ CreateCollectionGroupResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OpenSearchServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OpenSearchServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateCollectionGroupCommandInput
15
+ extends CreateCollectionGroupRequest {}
16
+ export interface CreateCollectionGroupCommandOutput
17
+ extends CreateCollectionGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateCollectionGroupCommand_base: {
20
+ new (
21
+ input: CreateCollectionGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateCollectionGroupCommandInput,
24
+ CreateCollectionGroupCommandOutput,
25
+ OpenSearchServerlessClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: CreateCollectionGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateCollectionGroupCommandInput,
33
+ CreateCollectionGroupCommandOutput,
34
+ OpenSearchServerlessClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateCollectionGroupCommand extends CreateCollectionGroupCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateCollectionGroupRequest;
44
+ output: CreateCollectionGroupResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateCollectionGroupCommandInput;
48
+ output: CreateCollectionGroupCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ DeleteCollectionGroupRequest,
5
+ DeleteCollectionGroupResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OpenSearchServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OpenSearchServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface DeleteCollectionGroupCommandInput
15
+ extends DeleteCollectionGroupRequest {}
16
+ export interface DeleteCollectionGroupCommandOutput
17
+ extends DeleteCollectionGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const DeleteCollectionGroupCommand_base: {
20
+ new (
21
+ input: DeleteCollectionGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ DeleteCollectionGroupCommandInput,
24
+ DeleteCollectionGroupCommandOutput,
25
+ OpenSearchServerlessClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: DeleteCollectionGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ DeleteCollectionGroupCommandInput,
33
+ DeleteCollectionGroupCommandOutput,
34
+ OpenSearchServerlessClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class DeleteCollectionGroupCommand extends DeleteCollectionGroupCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: DeleteCollectionGroupRequest;
44
+ output: {};
45
+ };
46
+ sdk: {
47
+ input: DeleteCollectionGroupCommandInput;
48
+ output: DeleteCollectionGroupCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListCollectionGroupsRequest,
5
+ ListCollectionGroupsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OpenSearchServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OpenSearchServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListCollectionGroupsCommandInput
15
+ extends ListCollectionGroupsRequest {}
16
+ export interface ListCollectionGroupsCommandOutput
17
+ extends ListCollectionGroupsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListCollectionGroupsCommand_base: {
20
+ new (
21
+ input: ListCollectionGroupsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListCollectionGroupsCommandInput,
24
+ ListCollectionGroupsCommandOutput,
25
+ OpenSearchServerlessClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListCollectionGroupsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListCollectionGroupsCommandInput,
33
+ ListCollectionGroupsCommandOutput,
34
+ OpenSearchServerlessClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListCollectionGroupsCommand extends ListCollectionGroupsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListCollectionGroupsRequest;
44
+ output: ListCollectionGroupsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListCollectionGroupsCommandInput;
48
+ output: ListCollectionGroupsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ UpdateCollectionGroupRequest,
5
+ UpdateCollectionGroupResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ OpenSearchServerlessClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../OpenSearchServerlessClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface UpdateCollectionGroupCommandInput
15
+ extends UpdateCollectionGroupRequest {}
16
+ export interface UpdateCollectionGroupCommandOutput
17
+ extends UpdateCollectionGroupResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateCollectionGroupCommand_base: {
20
+ new (
21
+ input: UpdateCollectionGroupCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateCollectionGroupCommandInput,
24
+ UpdateCollectionGroupCommandOutput,
25
+ OpenSearchServerlessClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: UpdateCollectionGroupCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateCollectionGroupCommandInput,
33
+ UpdateCollectionGroupCommandOutput,
34
+ OpenSearchServerlessClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateCollectionGroupCommand extends UpdateCollectionGroupCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateCollectionGroupRequest;
44
+ output: UpdateCollectionGroupResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateCollectionGroupCommandInput;
48
+ output: UpdateCollectionGroupCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -1,9 +1,11 @@
1
1
  export * from "./BatchGetCollectionCommand";
2
+ export * from "./BatchGetCollectionGroupCommand";
2
3
  export * from "./BatchGetEffectiveLifecyclePolicyCommand";
3
4
  export * from "./BatchGetLifecyclePolicyCommand";
4
5
  export * from "./BatchGetVpcEndpointCommand";
5
6
  export * from "./CreateAccessPolicyCommand";
6
7
  export * from "./CreateCollectionCommand";
8
+ export * from "./CreateCollectionGroupCommand";
7
9
  export * from "./CreateIndexCommand";
8
10
  export * from "./CreateLifecyclePolicyCommand";
9
11
  export * from "./CreateSecurityConfigCommand";
@@ -11,6 +13,7 @@ export * from "./CreateSecurityPolicyCommand";
11
13
  export * from "./CreateVpcEndpointCommand";
12
14
  export * from "./DeleteAccessPolicyCommand";
13
15
  export * from "./DeleteCollectionCommand";
16
+ export * from "./DeleteCollectionGroupCommand";
14
17
  export * from "./DeleteIndexCommand";
15
18
  export * from "./DeleteLifecyclePolicyCommand";
16
19
  export * from "./DeleteSecurityConfigCommand";
@@ -23,6 +26,7 @@ export * from "./GetPoliciesStatsCommand";
23
26
  export * from "./GetSecurityConfigCommand";
24
27
  export * from "./GetSecurityPolicyCommand";
25
28
  export * from "./ListAccessPoliciesCommand";
29
+ export * from "./ListCollectionGroupsCommand";
26
30
  export * from "./ListCollectionsCommand";
27
31
  export * from "./ListLifecyclePoliciesCommand";
28
32
  export * from "./ListSecurityConfigsCommand";
@@ -34,6 +38,7 @@ export * from "./UntagResourceCommand";
34
38
  export * from "./UpdateAccessPolicyCommand";
35
39
  export * from "./UpdateAccountSettingsCommand";
36
40
  export * from "./UpdateCollectionCommand";
41
+ export * from "./UpdateCollectionGroupCommand";
37
42
  export * from "./UpdateIndexCommand";
38
43
  export * from "./UpdateLifecyclePolicyCommand";
39
44
  export * from "./UpdateSecurityConfigCommand";