@aws-sdk/client-ssm-sap 3.975.0 → 3.980.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.
- package/dist-cjs/index.js +30 -19
- package/dist-es/SsmSap.js +21 -1
- package/dist-types/SsmSap.d.ts +64 -1
- package/dist-types/ts3.4/SsmSap.d.ts +68 -1
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -1302,6 +1302,24 @@ class UpdateApplicationSettingsCommand extends smithyClient.Command
|
|
|
1302
1302
|
.build() {
|
|
1303
1303
|
}
|
|
1304
1304
|
|
|
1305
|
+
const paginateListApplications = core.createPaginator(SsmSapClient, ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1306
|
+
|
|
1307
|
+
const paginateListComponents = core.createPaginator(SsmSapClient, ListComponentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1308
|
+
|
|
1309
|
+
const paginateListConfigurationCheckDefinitions = core.createPaginator(SsmSapClient, ListConfigurationCheckDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1310
|
+
|
|
1311
|
+
const paginateListConfigurationCheckOperations = core.createPaginator(SsmSapClient, ListConfigurationCheckOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1312
|
+
|
|
1313
|
+
const paginateListDatabases = core.createPaginator(SsmSapClient, ListDatabasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1314
|
+
|
|
1315
|
+
const paginateListOperationEvents = core.createPaginator(SsmSapClient, ListOperationEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1316
|
+
|
|
1317
|
+
const paginateListOperations = core.createPaginator(SsmSapClient, ListOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1318
|
+
|
|
1319
|
+
const paginateListSubCheckResults = core.createPaginator(SsmSapClient, ListSubCheckResultsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1320
|
+
|
|
1321
|
+
const paginateListSubCheckRuleResults = core.createPaginator(SsmSapClient, ListSubCheckRuleResultsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1322
|
+
|
|
1305
1323
|
const commands = {
|
|
1306
1324
|
DeleteResourcePermissionCommand,
|
|
1307
1325
|
DeregisterApplicationCommand,
|
|
@@ -1331,27 +1349,20 @@ const commands = {
|
|
|
1331
1349
|
UntagResourceCommand,
|
|
1332
1350
|
UpdateApplicationSettingsCommand,
|
|
1333
1351
|
};
|
|
1352
|
+
const paginators = {
|
|
1353
|
+
paginateListApplications,
|
|
1354
|
+
paginateListComponents,
|
|
1355
|
+
paginateListConfigurationCheckDefinitions,
|
|
1356
|
+
paginateListConfigurationCheckOperations,
|
|
1357
|
+
paginateListDatabases,
|
|
1358
|
+
paginateListOperationEvents,
|
|
1359
|
+
paginateListOperations,
|
|
1360
|
+
paginateListSubCheckResults,
|
|
1361
|
+
paginateListSubCheckRuleResults,
|
|
1362
|
+
};
|
|
1334
1363
|
class SsmSap extends SsmSapClient {
|
|
1335
1364
|
}
|
|
1336
|
-
smithyClient.createAggregatedClient(commands, SsmSap);
|
|
1337
|
-
|
|
1338
|
-
const paginateListApplications = core.createPaginator(SsmSapClient, ListApplicationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1339
|
-
|
|
1340
|
-
const paginateListComponents = core.createPaginator(SsmSapClient, ListComponentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1341
|
-
|
|
1342
|
-
const paginateListConfigurationCheckDefinitions = core.createPaginator(SsmSapClient, ListConfigurationCheckDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1343
|
-
|
|
1344
|
-
const paginateListConfigurationCheckOperations = core.createPaginator(SsmSapClient, ListConfigurationCheckOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1345
|
-
|
|
1346
|
-
const paginateListDatabases = core.createPaginator(SsmSapClient, ListDatabasesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1347
|
-
|
|
1348
|
-
const paginateListOperationEvents = core.createPaginator(SsmSapClient, ListOperationEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1349
|
-
|
|
1350
|
-
const paginateListOperations = core.createPaginator(SsmSapClient, ListOperationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1351
|
-
|
|
1352
|
-
const paginateListSubCheckResults = core.createPaginator(SsmSapClient, ListSubCheckResultsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1353
|
-
|
|
1354
|
-
const paginateListSubCheckRuleResults = core.createPaginator(SsmSapClient, ListSubCheckRuleResultsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1365
|
+
smithyClient.createAggregatedClient(commands, SsmSap, { paginators });
|
|
1355
1366
|
|
|
1356
1367
|
const AllocationType = {
|
|
1357
1368
|
ELASTIC_IP: "ELASTIC_IP",
|
package/dist-es/SsmSap.js
CHANGED
|
@@ -26,6 +26,15 @@ import { StopApplicationCommand, } from "./commands/StopApplicationCommand";
|
|
|
26
26
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
27
27
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
28
28
|
import { UpdateApplicationSettingsCommand, } from "./commands/UpdateApplicationSettingsCommand";
|
|
29
|
+
import { paginateListApplications } from "./pagination/ListApplicationsPaginator";
|
|
30
|
+
import { paginateListComponents } from "./pagination/ListComponentsPaginator";
|
|
31
|
+
import { paginateListConfigurationCheckDefinitions } from "./pagination/ListConfigurationCheckDefinitionsPaginator";
|
|
32
|
+
import { paginateListConfigurationCheckOperations } from "./pagination/ListConfigurationCheckOperationsPaginator";
|
|
33
|
+
import { paginateListDatabases } from "./pagination/ListDatabasesPaginator";
|
|
34
|
+
import { paginateListOperationEvents } from "./pagination/ListOperationEventsPaginator";
|
|
35
|
+
import { paginateListOperations } from "./pagination/ListOperationsPaginator";
|
|
36
|
+
import { paginateListSubCheckResults } from "./pagination/ListSubCheckResultsPaginator";
|
|
37
|
+
import { paginateListSubCheckRuleResults } from "./pagination/ListSubCheckRuleResultsPaginator";
|
|
29
38
|
import { SsmSapClient } from "./SsmSapClient";
|
|
30
39
|
const commands = {
|
|
31
40
|
DeleteResourcePermissionCommand,
|
|
@@ -56,6 +65,17 @@ const commands = {
|
|
|
56
65
|
UntagResourceCommand,
|
|
57
66
|
UpdateApplicationSettingsCommand,
|
|
58
67
|
};
|
|
68
|
+
const paginators = {
|
|
69
|
+
paginateListApplications,
|
|
70
|
+
paginateListComponents,
|
|
71
|
+
paginateListConfigurationCheckDefinitions,
|
|
72
|
+
paginateListConfigurationCheckOperations,
|
|
73
|
+
paginateListDatabases,
|
|
74
|
+
paginateListOperationEvents,
|
|
75
|
+
paginateListOperations,
|
|
76
|
+
paginateListSubCheckResults,
|
|
77
|
+
paginateListSubCheckRuleResults,
|
|
78
|
+
};
|
|
59
79
|
export class SsmSap extends SsmSapClient {
|
|
60
80
|
}
|
|
61
|
-
createAggregatedClient(commands, SsmSap);
|
|
81
|
+
createAggregatedClient(commands, SsmSap, { paginators });
|
package/dist-types/SsmSap.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { DeleteResourcePermissionCommandInput, DeleteResourcePermissionCommandOutput } from "./commands/DeleteResourcePermissionCommand";
|
|
3
3
|
import { DeregisterApplicationCommandInput, DeregisterApplicationCommandOutput } from "./commands/DeregisterApplicationCommand";
|
|
4
4
|
import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
|
|
@@ -196,6 +196,69 @@ export interface SsmSap {
|
|
|
196
196
|
updateApplicationSettings(args: UpdateApplicationSettingsCommandInput, options?: __HttpHandlerOptions): Promise<UpdateApplicationSettingsCommandOutput>;
|
|
197
197
|
updateApplicationSettings(args: UpdateApplicationSettingsCommandInput, cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void): void;
|
|
198
198
|
updateApplicationSettings(args: UpdateApplicationSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void): void;
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link ListApplicationsCommand}
|
|
201
|
+
* @param args - command input.
|
|
202
|
+
* @param paginationConfig - optional pagination config.
|
|
203
|
+
* @returns AsyncIterable of {@link ListApplicationsCommandOutput}.
|
|
204
|
+
*/
|
|
205
|
+
paginateListApplications(args?: ListApplicationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListApplicationsCommandOutput>;
|
|
206
|
+
/**
|
|
207
|
+
* @see {@link ListComponentsCommand}
|
|
208
|
+
* @param args - command input.
|
|
209
|
+
* @param paginationConfig - optional pagination config.
|
|
210
|
+
* @returns AsyncIterable of {@link ListComponentsCommandOutput}.
|
|
211
|
+
*/
|
|
212
|
+
paginateListComponents(args?: ListComponentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListComponentsCommandOutput>;
|
|
213
|
+
/**
|
|
214
|
+
* @see {@link ListConfigurationCheckDefinitionsCommand}
|
|
215
|
+
* @param args - command input.
|
|
216
|
+
* @param paginationConfig - optional pagination config.
|
|
217
|
+
* @returns AsyncIterable of {@link ListConfigurationCheckDefinitionsCommandOutput}.
|
|
218
|
+
*/
|
|
219
|
+
paginateListConfigurationCheckDefinitions(args?: ListConfigurationCheckDefinitionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
220
|
+
/**
|
|
221
|
+
* @see {@link ListConfigurationCheckOperationsCommand}
|
|
222
|
+
* @param args - command input.
|
|
223
|
+
* @param paginationConfig - optional pagination config.
|
|
224
|
+
* @returns AsyncIterable of {@link ListConfigurationCheckOperationsCommandOutput}.
|
|
225
|
+
*/
|
|
226
|
+
paginateListConfigurationCheckOperations(args: ListConfigurationCheckOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConfigurationCheckOperationsCommandOutput>;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link ListDatabasesCommand}
|
|
229
|
+
* @param args - command input.
|
|
230
|
+
* @param paginationConfig - optional pagination config.
|
|
231
|
+
* @returns AsyncIterable of {@link ListDatabasesCommandOutput}.
|
|
232
|
+
*/
|
|
233
|
+
paginateListDatabases(args?: ListDatabasesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDatabasesCommandOutput>;
|
|
234
|
+
/**
|
|
235
|
+
* @see {@link ListOperationEventsCommand}
|
|
236
|
+
* @param args - command input.
|
|
237
|
+
* @param paginationConfig - optional pagination config.
|
|
238
|
+
* @returns AsyncIterable of {@link ListOperationEventsCommandOutput}.
|
|
239
|
+
*/
|
|
240
|
+
paginateListOperationEvents(args: ListOperationEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOperationEventsCommandOutput>;
|
|
241
|
+
/**
|
|
242
|
+
* @see {@link ListOperationsCommand}
|
|
243
|
+
* @param args - command input.
|
|
244
|
+
* @param paginationConfig - optional pagination config.
|
|
245
|
+
* @returns AsyncIterable of {@link ListOperationsCommandOutput}.
|
|
246
|
+
*/
|
|
247
|
+
paginateListOperations(args: ListOperationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOperationsCommandOutput>;
|
|
248
|
+
/**
|
|
249
|
+
* @see {@link ListSubCheckResultsCommand}
|
|
250
|
+
* @param args - command input.
|
|
251
|
+
* @param paginationConfig - optional pagination config.
|
|
252
|
+
* @returns AsyncIterable of {@link ListSubCheckResultsCommandOutput}.
|
|
253
|
+
*/
|
|
254
|
+
paginateListSubCheckResults(args: ListSubCheckResultsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSubCheckResultsCommandOutput>;
|
|
255
|
+
/**
|
|
256
|
+
* @see {@link ListSubCheckRuleResultsCommand}
|
|
257
|
+
* @param args - command input.
|
|
258
|
+
* @param paginationConfig - optional pagination config.
|
|
259
|
+
* @returns AsyncIterable of {@link ListSubCheckRuleResultsCommandOutput}.
|
|
260
|
+
*/
|
|
261
|
+
paginateListSubCheckRuleResults(args: ListSubCheckRuleResultsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListSubCheckRuleResultsCommandOutput>;
|
|
199
262
|
}
|
|
200
263
|
/**
|
|
201
264
|
* <p>This API reference provides descriptions, syntax, and other details about each of the actions and data types for AWS Systems Manager for SAP. The topic for each action shows the API request parameters and responses. </p>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
DeleteResourcePermissionCommandInput,
|
|
4
8
|
DeleteResourcePermissionCommandOutput,
|
|
@@ -472,5 +476,68 @@ export interface SsmSap {
|
|
|
472
476
|
options: __HttpHandlerOptions,
|
|
473
477
|
cb: (err: any, data?: UpdateApplicationSettingsCommandOutput) => void
|
|
474
478
|
): void;
|
|
479
|
+
paginateListApplications(
|
|
480
|
+
args?: ListApplicationsCommandInput,
|
|
481
|
+
paginationConfig?: Pick<
|
|
482
|
+
PaginationConfiguration,
|
|
483
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
484
|
+
>
|
|
485
|
+
): Paginator<ListApplicationsCommandOutput>;
|
|
486
|
+
paginateListComponents(
|
|
487
|
+
args?: ListComponentsCommandInput,
|
|
488
|
+
paginationConfig?: Pick<
|
|
489
|
+
PaginationConfiguration,
|
|
490
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
491
|
+
>
|
|
492
|
+
): Paginator<ListComponentsCommandOutput>;
|
|
493
|
+
paginateListConfigurationCheckDefinitions(
|
|
494
|
+
args?: ListConfigurationCheckDefinitionsCommandInput,
|
|
495
|
+
paginationConfig?: Pick<
|
|
496
|
+
PaginationConfiguration,
|
|
497
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
498
|
+
>
|
|
499
|
+
): Paginator<ListConfigurationCheckDefinitionsCommandOutput>;
|
|
500
|
+
paginateListConfigurationCheckOperations(
|
|
501
|
+
args: ListConfigurationCheckOperationsCommandInput,
|
|
502
|
+
paginationConfig?: Pick<
|
|
503
|
+
PaginationConfiguration,
|
|
504
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
505
|
+
>
|
|
506
|
+
): Paginator<ListConfigurationCheckOperationsCommandOutput>;
|
|
507
|
+
paginateListDatabases(
|
|
508
|
+
args?: ListDatabasesCommandInput,
|
|
509
|
+
paginationConfig?: Pick<
|
|
510
|
+
PaginationConfiguration,
|
|
511
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
512
|
+
>
|
|
513
|
+
): Paginator<ListDatabasesCommandOutput>;
|
|
514
|
+
paginateListOperationEvents(
|
|
515
|
+
args: ListOperationEventsCommandInput,
|
|
516
|
+
paginationConfig?: Pick<
|
|
517
|
+
PaginationConfiguration,
|
|
518
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
519
|
+
>
|
|
520
|
+
): Paginator<ListOperationEventsCommandOutput>;
|
|
521
|
+
paginateListOperations(
|
|
522
|
+
args: ListOperationsCommandInput,
|
|
523
|
+
paginationConfig?: Pick<
|
|
524
|
+
PaginationConfiguration,
|
|
525
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
526
|
+
>
|
|
527
|
+
): Paginator<ListOperationsCommandOutput>;
|
|
528
|
+
paginateListSubCheckResults(
|
|
529
|
+
args: ListSubCheckResultsCommandInput,
|
|
530
|
+
paginationConfig?: Pick<
|
|
531
|
+
PaginationConfiguration,
|
|
532
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
533
|
+
>
|
|
534
|
+
): Paginator<ListSubCheckResultsCommandOutput>;
|
|
535
|
+
paginateListSubCheckRuleResults(
|
|
536
|
+
args: ListSubCheckRuleResultsCommandInput,
|
|
537
|
+
paginationConfig?: Pick<
|
|
538
|
+
PaginationConfiguration,
|
|
539
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
540
|
+
>
|
|
541
|
+
): Paginator<ListSubCheckRuleResultsCommandOutput>;
|
|
475
542
|
}
|
|
476
543
|
export declare class SsmSap extends SsmSapClient implements SsmSap {}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-sap",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Sap Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.980.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-ssm-sap",
|
|
@@ -21,38 +21,38 @@
|
|
|
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.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
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.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|