@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
@@ -112,6 +112,7 @@ export interface CollectionDetail {
112
112
  fipsEndpoints?: FipsEndpoints | undefined;
113
113
  failureCode?: string | undefined;
114
114
  failureMessage?: string | undefined;
115
+ collectionGroupName?: string | undefined;
115
116
  }
116
117
  export interface CollectionErrorDetail {
117
118
  id?: string | undefined;
@@ -123,6 +124,41 @@ export interface BatchGetCollectionResponse {
123
124
  collectionDetails?: CollectionDetail[] | undefined;
124
125
  collectionErrorDetails?: CollectionErrorDetail[] | undefined;
125
126
  }
127
+ export interface BatchGetCollectionGroupRequest {
128
+ ids?: string[] | undefined;
129
+ names?: string[] | undefined;
130
+ }
131
+ export interface CollectionGroupCapacityLimits {
132
+ maxIndexingCapacityInOCU?: number | undefined;
133
+ maxSearchCapacityInOCU?: number | undefined;
134
+ minIndexingCapacityInOCU?: number | undefined;
135
+ minSearchCapacityInOCU?: number | undefined;
136
+ }
137
+ export interface Tag {
138
+ key: string | undefined;
139
+ value: string | undefined;
140
+ }
141
+ export interface CollectionGroupDetail {
142
+ id?: string | undefined;
143
+ arn?: string | undefined;
144
+ name?: string | undefined;
145
+ standbyReplicas?: StandbyReplicas | undefined;
146
+ description?: string | undefined;
147
+ tags?: Tag[] | undefined;
148
+ createdDate?: number | undefined;
149
+ capacityLimits?: CollectionGroupCapacityLimits | undefined;
150
+ numberOfCollections?: number | undefined;
151
+ }
152
+ export interface CollectionGroupErrorDetail {
153
+ id?: string | undefined;
154
+ name?: string | undefined;
155
+ errorMessage?: string | undefined;
156
+ errorCode?: string | undefined;
157
+ }
158
+ export interface BatchGetCollectionGroupResponse {
159
+ collectionGroupDetails?: CollectionGroupDetail[] | undefined;
160
+ collectionGroupErrorDetails?: CollectionGroupErrorDetail[] | undefined;
161
+ }
126
162
  export interface LifecyclePolicyResourceIdentifier {
127
163
  type: LifecyclePolicyType | undefined;
128
164
  resource: string | undefined;
@@ -201,9 +237,9 @@ export interface BatchGetVpcEndpointResponse {
201
237
  vpcEndpointDetails?: VpcEndpointDetail[] | undefined;
202
238
  vpcEndpointErrorDetails?: VpcEndpointErrorDetail[] | undefined;
203
239
  }
204
- export interface Tag {
205
- key: string | undefined;
206
- value: string | undefined;
240
+ export interface EncryptionConfig {
241
+ aWSOwnedKey?: boolean | undefined;
242
+ kmsKeyArn?: string | undefined;
207
243
  }
208
244
  export interface CreateCollectionRequest {
209
245
  name: string | undefined;
@@ -212,6 +248,8 @@ export interface CreateCollectionRequest {
212
248
  tags?: Tag[] | undefined;
213
249
  standbyReplicas?: StandbyReplicas | undefined;
214
250
  vectorOptions?: VectorOptions | undefined;
251
+ collectionGroupName?: string | undefined;
252
+ encryptionConfig?: EncryptionConfig | undefined;
215
253
  clientToken?: string | undefined;
216
254
  }
217
255
  export interface CreateCollectionDetail {
@@ -226,6 +264,7 @@ export interface CreateCollectionDetail {
226
264
  vectorOptions?: VectorOptions | undefined;
227
265
  createdDate?: number | undefined;
228
266
  lastModifiedDate?: number | undefined;
267
+ collectionGroupName?: string | undefined;
229
268
  }
230
269
  export interface CreateCollectionResponse {
231
270
  createCollectionDetail?: CreateCollectionDetail | undefined;
@@ -245,6 +284,7 @@ export interface DeleteCollectionResponse {
245
284
  export interface CollectionFilters {
246
285
  name?: string | undefined;
247
286
  status?: CollectionStatus | undefined;
287
+ collectionGroupName?: string | undefined;
248
288
  }
249
289
  export interface ListCollectionsRequest {
250
290
  collectionFilters?: CollectionFilters | undefined;
@@ -256,6 +296,8 @@ export interface CollectionSummary {
256
296
  name?: string | undefined;
257
297
  status?: CollectionStatus | undefined;
258
298
  arn?: string | undefined;
299
+ kmsKeyArn?: string | undefined;
300
+ collectionGroupName?: string | undefined;
259
301
  }
260
302
  export interface ListCollectionsResponse {
261
303
  collectionSummaries?: CollectionSummary[] | undefined;
@@ -279,6 +321,66 @@ export interface UpdateCollectionDetail {
279
321
  export interface UpdateCollectionResponse {
280
322
  updateCollectionDetail?: UpdateCollectionDetail | undefined;
281
323
  }
324
+ export interface CreateCollectionGroupRequest {
325
+ name: string | undefined;
326
+ standbyReplicas: StandbyReplicas | undefined;
327
+ description?: string | undefined;
328
+ tags?: Tag[] | undefined;
329
+ capacityLimits?: CollectionGroupCapacityLimits | undefined;
330
+ clientToken?: string | undefined;
331
+ }
332
+ export interface CreateCollectionGroupDetail {
333
+ id?: string | undefined;
334
+ arn?: string | undefined;
335
+ name?: string | undefined;
336
+ standbyReplicas?: StandbyReplicas | undefined;
337
+ description?: string | undefined;
338
+ tags?: Tag[] | undefined;
339
+ createdDate?: number | undefined;
340
+ capacityLimits?: CollectionGroupCapacityLimits | undefined;
341
+ }
342
+ export interface CreateCollectionGroupResponse {
343
+ createCollectionGroupDetail?: CreateCollectionGroupDetail | undefined;
344
+ }
345
+ export interface DeleteCollectionGroupRequest {
346
+ id: string | undefined;
347
+ clientToken?: string | undefined;
348
+ }
349
+ export interface DeleteCollectionGroupResponse {}
350
+ export interface ListCollectionGroupsRequest {
351
+ nextToken?: string | undefined;
352
+ maxResults?: number | undefined;
353
+ }
354
+ export interface CollectionGroupSummary {
355
+ id?: string | undefined;
356
+ arn?: string | undefined;
357
+ name?: string | undefined;
358
+ numberOfCollections?: number | undefined;
359
+ createdDate?: number | undefined;
360
+ capacityLimits?: CollectionGroupCapacityLimits | undefined;
361
+ }
362
+ export interface ListCollectionGroupsResponse {
363
+ collectionGroupSummaries?: CollectionGroupSummary[] | undefined;
364
+ nextToken?: string | undefined;
365
+ }
366
+ export interface UpdateCollectionGroupRequest {
367
+ id: string | undefined;
368
+ description?: string | undefined;
369
+ capacityLimits?: CollectionGroupCapacityLimits | undefined;
370
+ clientToken?: string | undefined;
371
+ }
372
+ export interface UpdateCollectionGroupDetail {
373
+ id?: string | undefined;
374
+ arn?: string | undefined;
375
+ name?: string | undefined;
376
+ description?: string | undefined;
377
+ capacityLimits?: CollectionGroupCapacityLimits | undefined;
378
+ createdDate?: number | undefined;
379
+ lastModifiedDate?: number | undefined;
380
+ }
381
+ export interface UpdateCollectionGroupResponse {
382
+ updateCollectionGroupDetail?: UpdateCollectionGroupDetail | undefined;
383
+ }
282
384
  export interface CreateIamIdentityCenterConfigOptions {
283
385
  instanceArn: string | undefined;
284
386
  userAttribute?: IamIdentityCenterUserAttribute | undefined;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListCollectionGroupsCommandInput,
4
+ ListCollectionGroupsCommandOutput,
5
+ } from "../commands/ListCollectionGroupsCommand";
6
+ import { OpenSearchServerlessPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListCollectionGroups: (
8
+ config: OpenSearchServerlessPaginationConfiguration,
9
+ input: ListCollectionGroupsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListCollectionGroupsCommandOutput>;
@@ -1,5 +1,6 @@
1
1
  export * from "./Interfaces";
2
2
  export * from "./ListAccessPoliciesPaginator";
3
+ export * from "./ListCollectionGroupsPaginator";
3
4
  export * from "./ListCollectionsPaginator";
4
5
  export * from "./ListLifecyclePoliciesPaginator";
5
6
  export * from "./ListSecurityConfigsPaginator";
@@ -7,6 +7,8 @@ export declare var AccessPolicyDetail$: StaticStructureSchema;
7
7
  export declare var AccessPolicyStats$: StaticStructureSchema;
8
8
  export declare var AccessPolicySummary$: StaticStructureSchema;
9
9
  export declare var AccountSettingsDetail$: StaticStructureSchema;
10
+ export declare var BatchGetCollectionGroupRequest$: StaticStructureSchema;
11
+ export declare var BatchGetCollectionGroupResponse$: StaticStructureSchema;
10
12
  export declare var BatchGetCollectionRequest$: StaticStructureSchema;
11
13
  export declare var BatchGetCollectionResponse$: StaticStructureSchema;
12
14
  export declare var BatchGetEffectiveLifecyclePolicyRequest$: StaticStructureSchema;
@@ -19,11 +21,18 @@ export declare var CapacityLimits$: StaticStructureSchema;
19
21
  export declare var CollectionDetail$: StaticStructureSchema;
20
22
  export declare var CollectionErrorDetail$: StaticStructureSchema;
21
23
  export declare var CollectionFilters$: StaticStructureSchema;
24
+ export declare var CollectionGroupCapacityLimits$: StaticStructureSchema;
25
+ export declare var CollectionGroupDetail$: StaticStructureSchema;
26
+ export declare var CollectionGroupErrorDetail$: StaticStructureSchema;
27
+ export declare var CollectionGroupSummary$: StaticStructureSchema;
22
28
  export declare var CollectionSummary$: StaticStructureSchema;
23
29
  export declare var ConflictException$: StaticErrorSchema;
24
30
  export declare var CreateAccessPolicyRequest$: StaticStructureSchema;
25
31
  export declare var CreateAccessPolicyResponse$: StaticStructureSchema;
26
32
  export declare var CreateCollectionDetail$: StaticStructureSchema;
33
+ export declare var CreateCollectionGroupDetail$: StaticStructureSchema;
34
+ export declare var CreateCollectionGroupRequest$: StaticStructureSchema;
35
+ export declare var CreateCollectionGroupResponse$: StaticStructureSchema;
27
36
  export declare var CreateCollectionRequest$: StaticStructureSchema;
28
37
  export declare var CreateCollectionResponse$: StaticStructureSchema;
29
38
  export declare var CreateIamIdentityCenterConfigOptions$: StaticStructureSchema;
@@ -41,6 +50,8 @@ export declare var CreateVpcEndpointResponse$: StaticStructureSchema;
41
50
  export declare var DeleteAccessPolicyRequest$: StaticStructureSchema;
42
51
  export declare var DeleteAccessPolicyResponse$: StaticStructureSchema;
43
52
  export declare var DeleteCollectionDetail$: StaticStructureSchema;
53
+ export declare var DeleteCollectionGroupRequest$: StaticStructureSchema;
54
+ export declare var DeleteCollectionGroupResponse$: StaticStructureSchema;
44
55
  export declare var DeleteCollectionRequest$: StaticStructureSchema;
45
56
  export declare var DeleteCollectionResponse$: StaticStructureSchema;
46
57
  export declare var DeleteIndexRequest$: StaticStructureSchema;
@@ -56,6 +67,7 @@ export declare var DeleteVpcEndpointRequest$: StaticStructureSchema;
56
67
  export declare var DeleteVpcEndpointResponse$: StaticStructureSchema;
57
68
  export declare var EffectiveLifecyclePolicyDetail$: StaticStructureSchema;
58
69
  export declare var EffectiveLifecyclePolicyErrorDetail$: StaticStructureSchema;
70
+ export declare var EncryptionConfig$: StaticStructureSchema;
59
71
  export declare var FipsEndpoints$: StaticStructureSchema;
60
72
  export declare var GetAccessPolicyRequest$: StaticStructureSchema;
61
73
  export declare var GetAccessPolicyResponse$: StaticStructureSchema;
@@ -80,6 +92,8 @@ export declare var LifecyclePolicyStats$: StaticStructureSchema;
80
92
  export declare var LifecyclePolicySummary$: StaticStructureSchema;
81
93
  export declare var ListAccessPoliciesRequest$: StaticStructureSchema;
82
94
  export declare var ListAccessPoliciesResponse$: StaticStructureSchema;
95
+ export declare var ListCollectionGroupsRequest$: StaticStructureSchema;
96
+ export declare var ListCollectionGroupsResponse$: StaticStructureSchema;
83
97
  export declare var ListCollectionsRequest$: StaticStructureSchema;
84
98
  export declare var ListCollectionsResponse$: StaticStructureSchema;
85
99
  export declare var ListLifecyclePoliciesRequest$: StaticStructureSchema;
@@ -112,6 +126,9 @@ export declare var UpdateAccessPolicyResponse$: StaticStructureSchema;
112
126
  export declare var UpdateAccountSettingsRequest$: StaticStructureSchema;
113
127
  export declare var UpdateAccountSettingsResponse$: StaticStructureSchema;
114
128
  export declare var UpdateCollectionDetail$: StaticStructureSchema;
129
+ export declare var UpdateCollectionGroupDetail$: StaticStructureSchema;
130
+ export declare var UpdateCollectionGroupRequest$: StaticStructureSchema;
131
+ export declare var UpdateCollectionGroupResponse$: StaticStructureSchema;
115
132
  export declare var UpdateCollectionRequest$: StaticStructureSchema;
116
133
  export declare var UpdateCollectionResponse$: StaticStructureSchema;
117
134
  export declare var UpdateIamIdentityCenterConfigOptions$: StaticStructureSchema;
@@ -134,11 +151,13 @@ export declare var VpcEndpointFilters$: StaticStructureSchema;
134
151
  export declare var VpcEndpointSummary$: StaticStructureSchema;
135
152
  export declare var OpenSearchServerlessServiceException$: StaticErrorSchema;
136
153
  export declare var BatchGetCollection$: StaticOperationSchema;
154
+ export declare var BatchGetCollectionGroup$: StaticOperationSchema;
137
155
  export declare var BatchGetEffectiveLifecyclePolicy$: StaticOperationSchema;
138
156
  export declare var BatchGetLifecyclePolicy$: StaticOperationSchema;
139
157
  export declare var BatchGetVpcEndpoint$: StaticOperationSchema;
140
158
  export declare var CreateAccessPolicy$: StaticOperationSchema;
141
159
  export declare var CreateCollection$: StaticOperationSchema;
160
+ export declare var CreateCollectionGroup$: StaticOperationSchema;
142
161
  export declare var CreateIndex$: StaticOperationSchema;
143
162
  export declare var CreateLifecyclePolicy$: StaticOperationSchema;
144
163
  export declare var CreateSecurityConfig$: StaticOperationSchema;
@@ -146,6 +165,7 @@ export declare var CreateSecurityPolicy$: StaticOperationSchema;
146
165
  export declare var CreateVpcEndpoint$: StaticOperationSchema;
147
166
  export declare var DeleteAccessPolicy$: StaticOperationSchema;
148
167
  export declare var DeleteCollection$: StaticOperationSchema;
168
+ export declare var DeleteCollectionGroup$: StaticOperationSchema;
149
169
  export declare var DeleteIndex$: StaticOperationSchema;
150
170
  export declare var DeleteLifecyclePolicy$: StaticOperationSchema;
151
171
  export declare var DeleteSecurityConfig$: StaticOperationSchema;
@@ -158,6 +178,7 @@ export declare var GetPoliciesStats$: StaticOperationSchema;
158
178
  export declare var GetSecurityConfig$: StaticOperationSchema;
159
179
  export declare var GetSecurityPolicy$: StaticOperationSchema;
160
180
  export declare var ListAccessPolicies$: StaticOperationSchema;
181
+ export declare var ListCollectionGroups$: StaticOperationSchema;
161
182
  export declare var ListCollections$: StaticOperationSchema;
162
183
  export declare var ListLifecyclePolicies$: StaticOperationSchema;
163
184
  export declare var ListSecurityConfigs$: StaticOperationSchema;
@@ -169,6 +190,7 @@ export declare var UntagResource$: StaticOperationSchema;
169
190
  export declare var UpdateAccessPolicy$: StaticOperationSchema;
170
191
  export declare var UpdateAccountSettings$: StaticOperationSchema;
171
192
  export declare var UpdateCollection$: StaticOperationSchema;
193
+ export declare var UpdateCollectionGroup$: StaticOperationSchema;
172
194
  export declare var UpdateIndex$: StaticOperationSchema;
173
195
  export declare var UpdateLifecyclePolicy$: StaticOperationSchema;
174
196
  export declare var UpdateSecurityConfig$: StaticOperationSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-opensearchserverless",
3
3
  "description": "AWS SDK for JavaScript Opensearchserverless Client for Node.js, Browser and React Native",
4
- "version": "3.968.0",
4
+ "version": "3.970.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-opensearchserverless",
@@ -21,41 +21,41 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "5.2.0",
23
23
  "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "3.968.0",
25
- "@aws-sdk/credential-provider-node": "3.968.0",
26
- "@aws-sdk/middleware-host-header": "3.968.0",
27
- "@aws-sdk/middleware-logger": "3.968.0",
28
- "@aws-sdk/middleware-recursion-detection": "3.968.0",
29
- "@aws-sdk/middleware-user-agent": "3.968.0",
30
- "@aws-sdk/region-config-resolver": "3.968.0",
31
- "@aws-sdk/types": "3.968.0",
32
- "@aws-sdk/util-endpoints": "3.968.0",
33
- "@aws-sdk/util-user-agent-browser": "3.968.0",
34
- "@aws-sdk/util-user-agent-node": "3.968.0",
35
- "@smithy/config-resolver": "^4.4.5",
36
- "@smithy/core": "^3.20.3",
37
- "@smithy/fetch-http-handler": "^5.3.8",
38
- "@smithy/hash-node": "^4.2.7",
39
- "@smithy/invalid-dependency": "^4.2.7",
40
- "@smithy/middleware-content-length": "^4.2.7",
41
- "@smithy/middleware-endpoint": "^4.4.4",
42
- "@smithy/middleware-retry": "^4.4.20",
43
- "@smithy/middleware-serde": "^4.2.8",
44
- "@smithy/middleware-stack": "^4.2.7",
45
- "@smithy/node-config-provider": "^4.3.7",
46
- "@smithy/node-http-handler": "^4.4.7",
47
- "@smithy/protocol-http": "^5.3.7",
48
- "@smithy/smithy-client": "^4.10.5",
49
- "@smithy/types": "^4.11.0",
50
- "@smithy/url-parser": "^4.2.7",
24
+ "@aws-sdk/core": "3.970.0",
25
+ "@aws-sdk/credential-provider-node": "3.970.0",
26
+ "@aws-sdk/middleware-host-header": "3.969.0",
27
+ "@aws-sdk/middleware-logger": "3.969.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.969.0",
29
+ "@aws-sdk/middleware-user-agent": "3.970.0",
30
+ "@aws-sdk/region-config-resolver": "3.969.0",
31
+ "@aws-sdk/types": "3.969.0",
32
+ "@aws-sdk/util-endpoints": "3.970.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.969.0",
34
+ "@aws-sdk/util-user-agent-node": "3.970.0",
35
+ "@smithy/config-resolver": "^4.4.6",
36
+ "@smithy/core": "^3.20.6",
37
+ "@smithy/fetch-http-handler": "^5.3.9",
38
+ "@smithy/hash-node": "^4.2.8",
39
+ "@smithy/invalid-dependency": "^4.2.8",
40
+ "@smithy/middleware-content-length": "^4.2.8",
41
+ "@smithy/middleware-endpoint": "^4.4.7",
42
+ "@smithy/middleware-retry": "^4.4.23",
43
+ "@smithy/middleware-serde": "^4.2.9",
44
+ "@smithy/middleware-stack": "^4.2.8",
45
+ "@smithy/node-config-provider": "^4.3.8",
46
+ "@smithy/node-http-handler": "^4.4.8",
47
+ "@smithy/protocol-http": "^5.3.8",
48
+ "@smithy/smithy-client": "^4.10.8",
49
+ "@smithy/types": "^4.12.0",
50
+ "@smithy/url-parser": "^4.2.8",
51
51
  "@smithy/util-base64": "^4.3.0",
52
52
  "@smithy/util-body-length-browser": "^4.2.0",
53
53
  "@smithy/util-body-length-node": "^4.2.1",
54
- "@smithy/util-defaults-mode-browser": "^4.3.19",
55
- "@smithy/util-defaults-mode-node": "^4.2.22",
56
- "@smithy/util-endpoints": "^3.2.7",
57
- "@smithy/util-middleware": "^4.2.7",
58
- "@smithy/util-retry": "^4.2.7",
54
+ "@smithy/util-defaults-mode-browser": "^4.3.22",
55
+ "@smithy/util-defaults-mode-node": "^4.2.25",
56
+ "@smithy/util-endpoints": "^3.2.8",
57
+ "@smithy/util-middleware": "^4.2.8",
58
+ "@smithy/util-retry": "^4.2.8",
59
59
  "@smithy/util-utf8": "^4.2.0",
60
60
  "tslib": "^2.6.2"
61
61
  },