@aws-sdk/client-opensearchserverless 3.433.0 → 3.436.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 (59) hide show
  1. package/README.md +48 -0
  2. package/dist-cjs/OpenSearchServerless.js +12 -0
  3. package/dist-cjs/commands/BatchGetEffectiveLifecyclePolicyCommand.js +51 -0
  4. package/dist-cjs/commands/BatchGetLifecyclePolicyCommand.js +51 -0
  5. package/dist-cjs/commands/CreateLifecyclePolicyCommand.js +51 -0
  6. package/dist-cjs/commands/DeleteLifecyclePolicyCommand.js +51 -0
  7. package/dist-cjs/commands/ListLifecyclePoliciesCommand.js +51 -0
  8. package/dist-cjs/commands/UpdateLifecyclePolicyCommand.js +51 -0
  9. package/dist-cjs/commands/index.js +6 -0
  10. package/dist-cjs/endpoint/ruleset.js +3 -3
  11. package/dist-cjs/models/models_0.js +7 -1
  12. package/dist-cjs/pagination/ListLifecyclePoliciesPaginator.js +28 -0
  13. package/dist-cjs/pagination/index.js +1 -0
  14. package/dist-cjs/protocols/Aws_json1_0.js +342 -2
  15. package/dist-cjs/runtimeConfig.js +2 -0
  16. package/dist-cjs/runtimeConfig.shared.js +15 -13
  17. package/dist-es/OpenSearchServerless.js +12 -0
  18. package/dist-es/commands/BatchGetEffectiveLifecyclePolicyCommand.js +47 -0
  19. package/dist-es/commands/BatchGetLifecyclePolicyCommand.js +47 -0
  20. package/dist-es/commands/CreateLifecyclePolicyCommand.js +47 -0
  21. package/dist-es/commands/DeleteLifecyclePolicyCommand.js +47 -0
  22. package/dist-es/commands/ListLifecyclePoliciesCommand.js +47 -0
  23. package/dist-es/commands/UpdateLifecyclePolicyCommand.js +47 -0
  24. package/dist-es/commands/index.js +6 -0
  25. package/dist-es/endpoint/ruleset.js +3 -3
  26. package/dist-es/models/models_0.js +6 -0
  27. package/dist-es/pagination/ListLifecyclePoliciesPaginator.js +24 -0
  28. package/dist-es/pagination/index.js +1 -0
  29. package/dist-es/protocols/Aws_json1_0.js +328 -0
  30. package/dist-es/runtimeConfig.js +2 -0
  31. package/dist-es/runtimeConfig.shared.js +15 -13
  32. package/dist-types/OpenSearchServerless.d.ts +42 -0
  33. package/dist-types/OpenSearchServerlessClient.d.ts +8 -2
  34. package/dist-types/commands/BatchGetEffectiveLifecyclePolicyCommand.d.ts +102 -0
  35. package/dist-types/commands/BatchGetLifecyclePolicyCommand.d.ts +103 -0
  36. package/dist-types/commands/CreateLifecyclePolicyCommand.d.ts +101 -0
  37. package/dist-types/commands/DeleteLifecyclePolicyCommand.d.ts +88 -0
  38. package/dist-types/commands/GetPoliciesStatsCommand.d.ts +3 -0
  39. package/dist-types/commands/ListLifecyclePoliciesCommand.d.ts +95 -0
  40. package/dist-types/commands/UpdateLifecyclePolicyCommand.d.ts +104 -0
  41. package/dist-types/commands/index.d.ts +6 -0
  42. package/dist-types/models/models_0.d.ts +446 -4
  43. package/dist-types/pagination/ListLifecyclePoliciesPaginator.d.ts +7 -0
  44. package/dist-types/pagination/index.d.ts +1 -0
  45. package/dist-types/protocols/Aws_json1_0.d.ts +54 -0
  46. package/dist-types/ts3.4/OpenSearchServerless.d.ts +102 -0
  47. package/dist-types/ts3.4/OpenSearchServerlessClient.d.ts +36 -0
  48. package/dist-types/ts3.4/commands/BatchGetEffectiveLifecyclePolicyCommand.d.ts +42 -0
  49. package/dist-types/ts3.4/commands/BatchGetLifecyclePolicyCommand.d.ts +42 -0
  50. package/dist-types/ts3.4/commands/CreateLifecyclePolicyCommand.d.ts +42 -0
  51. package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +42 -0
  52. package/dist-types/ts3.4/commands/ListLifecyclePoliciesCommand.d.ts +42 -0
  53. package/dist-types/ts3.4/commands/UpdateLifecyclePolicyCommand.d.ts +42 -0
  54. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  55. package/dist-types/ts3.4/models/models_0.d.ts +109 -0
  56. package/dist-types/ts3.4/pagination/ListLifecyclePoliciesPaginator.d.ts +11 -0
  57. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  58. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +72 -0
  59. package/package.json +4 -3
@@ -3,6 +3,14 @@ import {
3
3
  BatchGetCollectionCommandInput,
4
4
  BatchGetCollectionCommandOutput,
5
5
  } from "./commands/BatchGetCollectionCommand";
6
+ import {
7
+ BatchGetEffectiveLifecyclePolicyCommandInput,
8
+ BatchGetEffectiveLifecyclePolicyCommandOutput,
9
+ } from "./commands/BatchGetEffectiveLifecyclePolicyCommand";
10
+ import {
11
+ BatchGetLifecyclePolicyCommandInput,
12
+ BatchGetLifecyclePolicyCommandOutput,
13
+ } from "./commands/BatchGetLifecyclePolicyCommand";
6
14
  import {
7
15
  BatchGetVpcEndpointCommandInput,
8
16
  BatchGetVpcEndpointCommandOutput,
@@ -15,6 +23,10 @@ import {
15
23
  CreateCollectionCommandInput,
16
24
  CreateCollectionCommandOutput,
17
25
  } from "./commands/CreateCollectionCommand";
26
+ import {
27
+ CreateLifecyclePolicyCommandInput,
28
+ CreateLifecyclePolicyCommandOutput,
29
+ } from "./commands/CreateLifecyclePolicyCommand";
18
30
  import {
19
31
  CreateSecurityConfigCommandInput,
20
32
  CreateSecurityConfigCommandOutput,
@@ -35,6 +47,10 @@ import {
35
47
  DeleteCollectionCommandInput,
36
48
  DeleteCollectionCommandOutput,
37
49
  } from "./commands/DeleteCollectionCommand";
50
+ import {
51
+ DeleteLifecyclePolicyCommandInput,
52
+ DeleteLifecyclePolicyCommandOutput,
53
+ } from "./commands/DeleteLifecyclePolicyCommand";
38
54
  import {
39
55
  DeleteSecurityConfigCommandInput,
40
56
  DeleteSecurityConfigCommandOutput,
@@ -75,6 +91,10 @@ import {
75
91
  ListCollectionsCommandInput,
76
92
  ListCollectionsCommandOutput,
77
93
  } from "./commands/ListCollectionsCommand";
94
+ import {
95
+ ListLifecyclePoliciesCommandInput,
96
+ ListLifecyclePoliciesCommandOutput,
97
+ } from "./commands/ListLifecyclePoliciesCommand";
78
98
  import {
79
99
  ListSecurityConfigsCommandInput,
80
100
  ListSecurityConfigsCommandOutput,
@@ -111,6 +131,10 @@ import {
111
131
  UpdateCollectionCommandInput,
112
132
  UpdateCollectionCommandOutput,
113
133
  } from "./commands/UpdateCollectionCommand";
134
+ import {
135
+ UpdateLifecyclePolicyCommandInput,
136
+ UpdateLifecyclePolicyCommandOutput,
137
+ } from "./commands/UpdateLifecyclePolicyCommand";
114
138
  import {
115
139
  UpdateSecurityConfigCommandInput,
116
140
  UpdateSecurityConfigCommandOutput,
@@ -138,6 +162,32 @@ export interface OpenSearchServerless {
138
162
  options: __HttpHandlerOptions,
139
163
  cb: (err: any, data?: BatchGetCollectionCommandOutput) => void
140
164
  ): void;
165
+ batchGetEffectiveLifecyclePolicy(
166
+ args: BatchGetEffectiveLifecyclePolicyCommandInput,
167
+ options?: __HttpHandlerOptions
168
+ ): Promise<BatchGetEffectiveLifecyclePolicyCommandOutput>;
169
+ batchGetEffectiveLifecyclePolicy(
170
+ args: BatchGetEffectiveLifecyclePolicyCommandInput,
171
+ cb: (err: any, data?: BatchGetEffectiveLifecyclePolicyCommandOutput) => void
172
+ ): void;
173
+ batchGetEffectiveLifecyclePolicy(
174
+ args: BatchGetEffectiveLifecyclePolicyCommandInput,
175
+ options: __HttpHandlerOptions,
176
+ cb: (err: any, data?: BatchGetEffectiveLifecyclePolicyCommandOutput) => void
177
+ ): void;
178
+ batchGetLifecyclePolicy(
179
+ args: BatchGetLifecyclePolicyCommandInput,
180
+ options?: __HttpHandlerOptions
181
+ ): Promise<BatchGetLifecyclePolicyCommandOutput>;
182
+ batchGetLifecyclePolicy(
183
+ args: BatchGetLifecyclePolicyCommandInput,
184
+ cb: (err: any, data?: BatchGetLifecyclePolicyCommandOutput) => void
185
+ ): void;
186
+ batchGetLifecyclePolicy(
187
+ args: BatchGetLifecyclePolicyCommandInput,
188
+ options: __HttpHandlerOptions,
189
+ cb: (err: any, data?: BatchGetLifecyclePolicyCommandOutput) => void
190
+ ): void;
141
191
  batchGetVpcEndpoint(
142
192
  args: BatchGetVpcEndpointCommandInput,
143
193
  options?: __HttpHandlerOptions
@@ -177,6 +227,19 @@ export interface OpenSearchServerless {
177
227
  options: __HttpHandlerOptions,
178
228
  cb: (err: any, data?: CreateCollectionCommandOutput) => void
179
229
  ): void;
230
+ createLifecyclePolicy(
231
+ args: CreateLifecyclePolicyCommandInput,
232
+ options?: __HttpHandlerOptions
233
+ ): Promise<CreateLifecyclePolicyCommandOutput>;
234
+ createLifecyclePolicy(
235
+ args: CreateLifecyclePolicyCommandInput,
236
+ cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void
237
+ ): void;
238
+ createLifecyclePolicy(
239
+ args: CreateLifecyclePolicyCommandInput,
240
+ options: __HttpHandlerOptions,
241
+ cb: (err: any, data?: CreateLifecyclePolicyCommandOutput) => void
242
+ ): void;
180
243
  createSecurityConfig(
181
244
  args: CreateSecurityConfigCommandInput,
182
245
  options?: __HttpHandlerOptions
@@ -242,6 +305,19 @@ export interface OpenSearchServerless {
242
305
  options: __HttpHandlerOptions,
243
306
  cb: (err: any, data?: DeleteCollectionCommandOutput) => void
244
307
  ): void;
308
+ deleteLifecyclePolicy(
309
+ args: DeleteLifecyclePolicyCommandInput,
310
+ options?: __HttpHandlerOptions
311
+ ): Promise<DeleteLifecyclePolicyCommandOutput>;
312
+ deleteLifecyclePolicy(
313
+ args: DeleteLifecyclePolicyCommandInput,
314
+ cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
315
+ ): void;
316
+ deleteLifecyclePolicy(
317
+ args: DeleteLifecyclePolicyCommandInput,
318
+ options: __HttpHandlerOptions,
319
+ cb: (err: any, data?: DeleteLifecyclePolicyCommandOutput) => void
320
+ ): void;
245
321
  deleteSecurityConfig(
246
322
  args: DeleteSecurityConfigCommandInput,
247
323
  options?: __HttpHandlerOptions
@@ -372,6 +448,19 @@ export interface OpenSearchServerless {
372
448
  options: __HttpHandlerOptions,
373
449
  cb: (err: any, data?: ListCollectionsCommandOutput) => void
374
450
  ): void;
451
+ listLifecyclePolicies(
452
+ args: ListLifecyclePoliciesCommandInput,
453
+ options?: __HttpHandlerOptions
454
+ ): Promise<ListLifecyclePoliciesCommandOutput>;
455
+ listLifecyclePolicies(
456
+ args: ListLifecyclePoliciesCommandInput,
457
+ cb: (err: any, data?: ListLifecyclePoliciesCommandOutput) => void
458
+ ): void;
459
+ listLifecyclePolicies(
460
+ args: ListLifecyclePoliciesCommandInput,
461
+ options: __HttpHandlerOptions,
462
+ cb: (err: any, data?: ListLifecyclePoliciesCommandOutput) => void
463
+ ): void;
375
464
  listSecurityConfigs(
376
465
  args: ListSecurityConfigsCommandInput,
377
466
  options?: __HttpHandlerOptions
@@ -489,6 +578,19 @@ export interface OpenSearchServerless {
489
578
  options: __HttpHandlerOptions,
490
579
  cb: (err: any, data?: UpdateCollectionCommandOutput) => void
491
580
  ): void;
581
+ updateLifecyclePolicy(
582
+ args: UpdateLifecyclePolicyCommandInput,
583
+ options?: __HttpHandlerOptions
584
+ ): Promise<UpdateLifecyclePolicyCommandOutput>;
585
+ updateLifecyclePolicy(
586
+ args: UpdateLifecyclePolicyCommandInput,
587
+ cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void
588
+ ): void;
589
+ updateLifecyclePolicy(
590
+ args: UpdateLifecyclePolicyCommandInput,
591
+ options: __HttpHandlerOptions,
592
+ cb: (err: any, data?: UpdateLifecyclePolicyCommandOutput) => void
593
+ ): void;
492
594
  updateSecurityConfig(
493
595
  args: UpdateSecurityConfigCommandInput,
494
596
  options?: __HttpHandlerOptions
@@ -49,6 +49,14 @@ import {
49
49
  BatchGetCollectionCommandInput,
50
50
  BatchGetCollectionCommandOutput,
51
51
  } from "./commands/BatchGetCollectionCommand";
52
+ import {
53
+ BatchGetEffectiveLifecyclePolicyCommandInput,
54
+ BatchGetEffectiveLifecyclePolicyCommandOutput,
55
+ } from "./commands/BatchGetEffectiveLifecyclePolicyCommand";
56
+ import {
57
+ BatchGetLifecyclePolicyCommandInput,
58
+ BatchGetLifecyclePolicyCommandOutput,
59
+ } from "./commands/BatchGetLifecyclePolicyCommand";
52
60
  import {
53
61
  BatchGetVpcEndpointCommandInput,
54
62
  BatchGetVpcEndpointCommandOutput,
@@ -61,6 +69,10 @@ import {
61
69
  CreateCollectionCommandInput,
62
70
  CreateCollectionCommandOutput,
63
71
  } from "./commands/CreateCollectionCommand";
72
+ import {
73
+ CreateLifecyclePolicyCommandInput,
74
+ CreateLifecyclePolicyCommandOutput,
75
+ } from "./commands/CreateLifecyclePolicyCommand";
64
76
  import {
65
77
  CreateSecurityConfigCommandInput,
66
78
  CreateSecurityConfigCommandOutput,
@@ -81,6 +93,10 @@ import {
81
93
  DeleteCollectionCommandInput,
82
94
  DeleteCollectionCommandOutput,
83
95
  } from "./commands/DeleteCollectionCommand";
96
+ import {
97
+ DeleteLifecyclePolicyCommandInput,
98
+ DeleteLifecyclePolicyCommandOutput,
99
+ } from "./commands/DeleteLifecyclePolicyCommand";
84
100
  import {
85
101
  DeleteSecurityConfigCommandInput,
86
102
  DeleteSecurityConfigCommandOutput,
@@ -121,6 +137,10 @@ import {
121
137
  ListCollectionsCommandInput,
122
138
  ListCollectionsCommandOutput,
123
139
  } from "./commands/ListCollectionsCommand";
140
+ import {
141
+ ListLifecyclePoliciesCommandInput,
142
+ ListLifecyclePoliciesCommandOutput,
143
+ } from "./commands/ListLifecyclePoliciesCommand";
124
144
  import {
125
145
  ListSecurityConfigsCommandInput,
126
146
  ListSecurityConfigsCommandOutput,
@@ -157,6 +177,10 @@ import {
157
177
  UpdateCollectionCommandInput,
158
178
  UpdateCollectionCommandOutput,
159
179
  } from "./commands/UpdateCollectionCommand";
180
+ import {
181
+ UpdateLifecyclePolicyCommandInput,
182
+ UpdateLifecyclePolicyCommandOutput,
183
+ } from "./commands/UpdateLifecyclePolicyCommand";
160
184
  import {
161
185
  UpdateSecurityConfigCommandInput,
162
186
  UpdateSecurityConfigCommandOutput,
@@ -178,14 +202,18 @@ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
178
202
  export { __Client };
179
203
  export type ServiceInputTypes =
180
204
  | BatchGetCollectionCommandInput
205
+ | BatchGetEffectiveLifecyclePolicyCommandInput
206
+ | BatchGetLifecyclePolicyCommandInput
181
207
  | BatchGetVpcEndpointCommandInput
182
208
  | CreateAccessPolicyCommandInput
183
209
  | CreateCollectionCommandInput
210
+ | CreateLifecyclePolicyCommandInput
184
211
  | CreateSecurityConfigCommandInput
185
212
  | CreateSecurityPolicyCommandInput
186
213
  | CreateVpcEndpointCommandInput
187
214
  | DeleteAccessPolicyCommandInput
188
215
  | DeleteCollectionCommandInput
216
+ | DeleteLifecyclePolicyCommandInput
189
217
  | DeleteSecurityConfigCommandInput
190
218
  | DeleteSecurityPolicyCommandInput
191
219
  | DeleteVpcEndpointCommandInput
@@ -196,6 +224,7 @@ export type ServiceInputTypes =
196
224
  | GetSecurityPolicyCommandInput
197
225
  | ListAccessPoliciesCommandInput
198
226
  | ListCollectionsCommandInput
227
+ | ListLifecyclePoliciesCommandInput
199
228
  | ListSecurityConfigsCommandInput
200
229
  | ListSecurityPoliciesCommandInput
201
230
  | ListTagsForResourceCommandInput
@@ -205,19 +234,24 @@ export type ServiceInputTypes =
205
234
  | UpdateAccessPolicyCommandInput
206
235
  | UpdateAccountSettingsCommandInput
207
236
  | UpdateCollectionCommandInput
237
+ | UpdateLifecyclePolicyCommandInput
208
238
  | UpdateSecurityConfigCommandInput
209
239
  | UpdateSecurityPolicyCommandInput
210
240
  | UpdateVpcEndpointCommandInput;
211
241
  export type ServiceOutputTypes =
212
242
  | BatchGetCollectionCommandOutput
243
+ | BatchGetEffectiveLifecyclePolicyCommandOutput
244
+ | BatchGetLifecyclePolicyCommandOutput
213
245
  | BatchGetVpcEndpointCommandOutput
214
246
  | CreateAccessPolicyCommandOutput
215
247
  | CreateCollectionCommandOutput
248
+ | CreateLifecyclePolicyCommandOutput
216
249
  | CreateSecurityConfigCommandOutput
217
250
  | CreateSecurityPolicyCommandOutput
218
251
  | CreateVpcEndpointCommandOutput
219
252
  | DeleteAccessPolicyCommandOutput
220
253
  | DeleteCollectionCommandOutput
254
+ | DeleteLifecyclePolicyCommandOutput
221
255
  | DeleteSecurityConfigCommandOutput
222
256
  | DeleteSecurityPolicyCommandOutput
223
257
  | DeleteVpcEndpointCommandOutput
@@ -228,6 +262,7 @@ export type ServiceOutputTypes =
228
262
  | GetSecurityPolicyCommandOutput
229
263
  | ListAccessPoliciesCommandOutput
230
264
  | ListCollectionsCommandOutput
265
+ | ListLifecyclePoliciesCommandOutput
231
266
  | ListSecurityConfigsCommandOutput
232
267
  | ListSecurityPoliciesCommandOutput
233
268
  | ListTagsForResourceCommandOutput
@@ -237,6 +272,7 @@ export type ServiceOutputTypes =
237
272
  | UpdateAccessPolicyCommandOutput
238
273
  | UpdateAccountSettingsCommandOutput
239
274
  | UpdateCollectionCommandOutput
275
+ | UpdateLifecyclePolicyCommandOutput
240
276
  | UpdateSecurityConfigCommandOutput
241
277
  | UpdateSecurityPolicyCommandOutput
242
278
  | UpdateVpcEndpointCommandOutput;
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ BatchGetEffectiveLifecyclePolicyRequest,
11
+ BatchGetEffectiveLifecyclePolicyResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ OpenSearchServerlessClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../OpenSearchServerlessClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface BatchGetEffectiveLifecyclePolicyCommandInput
20
+ extends BatchGetEffectiveLifecyclePolicyRequest {}
21
+ export interface BatchGetEffectiveLifecyclePolicyCommandOutput
22
+ extends BatchGetEffectiveLifecyclePolicyResponse,
23
+ __MetadataBearer {}
24
+ export declare class BatchGetEffectiveLifecyclePolicyCommand extends $Command<
25
+ BatchGetEffectiveLifecyclePolicyCommandInput,
26
+ BatchGetEffectiveLifecyclePolicyCommandOutput,
27
+ OpenSearchServerlessClientResolvedConfig
28
+ > {
29
+ readonly input: BatchGetEffectiveLifecyclePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: BatchGetEffectiveLifecyclePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: OpenSearchServerlessClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ BatchGetEffectiveLifecyclePolicyCommandInput,
38
+ BatchGetEffectiveLifecyclePolicyCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ BatchGetLifecyclePolicyRequest,
11
+ BatchGetLifecyclePolicyResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ OpenSearchServerlessClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../OpenSearchServerlessClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface BatchGetLifecyclePolicyCommandInput
20
+ extends BatchGetLifecyclePolicyRequest {}
21
+ export interface BatchGetLifecyclePolicyCommandOutput
22
+ extends BatchGetLifecyclePolicyResponse,
23
+ __MetadataBearer {}
24
+ export declare class BatchGetLifecyclePolicyCommand extends $Command<
25
+ BatchGetLifecyclePolicyCommandInput,
26
+ BatchGetLifecyclePolicyCommandOutput,
27
+ OpenSearchServerlessClientResolvedConfig
28
+ > {
29
+ readonly input: BatchGetLifecyclePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: BatchGetLifecyclePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: OpenSearchServerlessClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ BatchGetLifecyclePolicyCommandInput,
38
+ BatchGetLifecyclePolicyCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ CreateLifecyclePolicyRequest,
11
+ CreateLifecyclePolicyResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ OpenSearchServerlessClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../OpenSearchServerlessClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface CreateLifecyclePolicyCommandInput
20
+ extends CreateLifecyclePolicyRequest {}
21
+ export interface CreateLifecyclePolicyCommandOutput
22
+ extends CreateLifecyclePolicyResponse,
23
+ __MetadataBearer {}
24
+ export declare class CreateLifecyclePolicyCommand extends $Command<
25
+ CreateLifecyclePolicyCommandInput,
26
+ CreateLifecyclePolicyCommandOutput,
27
+ OpenSearchServerlessClientResolvedConfig
28
+ > {
29
+ readonly input: CreateLifecyclePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: CreateLifecyclePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: OpenSearchServerlessClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ CreateLifecyclePolicyCommandInput,
38
+ CreateLifecyclePolicyCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DeleteLifecyclePolicyRequest,
11
+ DeleteLifecyclePolicyResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ OpenSearchServerlessClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../OpenSearchServerlessClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DeleteLifecyclePolicyCommandInput
20
+ extends DeleteLifecyclePolicyRequest {}
21
+ export interface DeleteLifecyclePolicyCommandOutput
22
+ extends DeleteLifecyclePolicyResponse,
23
+ __MetadataBearer {}
24
+ export declare class DeleteLifecyclePolicyCommand extends $Command<
25
+ DeleteLifecyclePolicyCommandInput,
26
+ DeleteLifecyclePolicyCommandOutput,
27
+ OpenSearchServerlessClientResolvedConfig
28
+ > {
29
+ readonly input: DeleteLifecyclePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DeleteLifecyclePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: OpenSearchServerlessClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DeleteLifecyclePolicyCommandInput,
38
+ DeleteLifecyclePolicyCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ ListLifecyclePoliciesRequest,
11
+ ListLifecyclePoliciesResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ OpenSearchServerlessClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../OpenSearchServerlessClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListLifecyclePoliciesCommandInput
20
+ extends ListLifecyclePoliciesRequest {}
21
+ export interface ListLifecyclePoliciesCommandOutput
22
+ extends ListLifecyclePoliciesResponse,
23
+ __MetadataBearer {}
24
+ export declare class ListLifecyclePoliciesCommand extends $Command<
25
+ ListLifecyclePoliciesCommandInput,
26
+ ListLifecyclePoliciesCommandOutput,
27
+ OpenSearchServerlessClientResolvedConfig
28
+ > {
29
+ readonly input: ListLifecyclePoliciesCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListLifecyclePoliciesCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: OpenSearchServerlessClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ ListLifecyclePoliciesCommandInput,
38
+ ListLifecyclePoliciesCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ UpdateLifecyclePolicyRequest,
11
+ UpdateLifecyclePolicyResponse,
12
+ } from "../models/models_0";
13
+ import {
14
+ OpenSearchServerlessClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../OpenSearchServerlessClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface UpdateLifecyclePolicyCommandInput
20
+ extends UpdateLifecyclePolicyRequest {}
21
+ export interface UpdateLifecyclePolicyCommandOutput
22
+ extends UpdateLifecyclePolicyResponse,
23
+ __MetadataBearer {}
24
+ export declare class UpdateLifecyclePolicyCommand extends $Command<
25
+ UpdateLifecyclePolicyCommandInput,
26
+ UpdateLifecyclePolicyCommandOutput,
27
+ OpenSearchServerlessClientResolvedConfig
28
+ > {
29
+ readonly input: UpdateLifecyclePolicyCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: UpdateLifecyclePolicyCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: OpenSearchServerlessClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ UpdateLifecyclePolicyCommandInput,
38
+ UpdateLifecyclePolicyCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -1,12 +1,16 @@
1
1
  export * from "./BatchGetCollectionCommand";
2
+ export * from "./BatchGetEffectiveLifecyclePolicyCommand";
3
+ export * from "./BatchGetLifecyclePolicyCommand";
2
4
  export * from "./BatchGetVpcEndpointCommand";
3
5
  export * from "./CreateAccessPolicyCommand";
4
6
  export * from "./CreateCollectionCommand";
7
+ export * from "./CreateLifecyclePolicyCommand";
5
8
  export * from "./CreateSecurityConfigCommand";
6
9
  export * from "./CreateSecurityPolicyCommand";
7
10
  export * from "./CreateVpcEndpointCommand";
8
11
  export * from "./DeleteAccessPolicyCommand";
9
12
  export * from "./DeleteCollectionCommand";
13
+ export * from "./DeleteLifecyclePolicyCommand";
10
14
  export * from "./DeleteSecurityConfigCommand";
11
15
  export * from "./DeleteSecurityPolicyCommand";
12
16
  export * from "./DeleteVpcEndpointCommand";
@@ -17,6 +21,7 @@ export * from "./GetSecurityConfigCommand";
17
21
  export * from "./GetSecurityPolicyCommand";
18
22
  export * from "./ListAccessPoliciesCommand";
19
23
  export * from "./ListCollectionsCommand";
24
+ export * from "./ListLifecyclePoliciesCommand";
20
25
  export * from "./ListSecurityConfigsCommand";
21
26
  export * from "./ListSecurityPoliciesCommand";
22
27
  export * from "./ListTagsForResourceCommand";
@@ -26,6 +31,7 @@ export * from "./UntagResourceCommand";
26
31
  export * from "./UpdateAccessPolicyCommand";
27
32
  export * from "./UpdateAccountSettingsCommand";
28
33
  export * from "./UpdateCollectionCommand";
34
+ export * from "./UpdateLifecyclePolicyCommand";
29
35
  export * from "./UpdateSecurityConfigCommand";
30
36
  export * from "./UpdateSecurityPolicyCommand";
31
37
  export * from "./UpdateVpcEndpointCommand";