@aws-sdk/client-ssm-incidents 3.975.0 → 3.978.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 +50 -37
- package/dist-es/SSMIncidents.js +23 -1
- package/dist-types/SSMIncidents.d.ts +63 -1
- package/dist-types/ts3.4/SSMIncidents.d.ts +74 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -1596,43 +1596,6 @@ class UpdateTimelineEventCommand extends smithyClient.Command
|
|
|
1596
1596
|
.build() {
|
|
1597
1597
|
}
|
|
1598
1598
|
|
|
1599
|
-
const commands = {
|
|
1600
|
-
BatchGetIncidentFindingsCommand,
|
|
1601
|
-
CreateReplicationSetCommand,
|
|
1602
|
-
CreateResponsePlanCommand,
|
|
1603
|
-
CreateTimelineEventCommand,
|
|
1604
|
-
DeleteIncidentRecordCommand,
|
|
1605
|
-
DeleteReplicationSetCommand,
|
|
1606
|
-
DeleteResourcePolicyCommand,
|
|
1607
|
-
DeleteResponsePlanCommand,
|
|
1608
|
-
DeleteTimelineEventCommand,
|
|
1609
|
-
GetIncidentRecordCommand,
|
|
1610
|
-
GetReplicationSetCommand,
|
|
1611
|
-
GetResourcePoliciesCommand,
|
|
1612
|
-
GetResponsePlanCommand,
|
|
1613
|
-
GetTimelineEventCommand,
|
|
1614
|
-
ListIncidentFindingsCommand,
|
|
1615
|
-
ListIncidentRecordsCommand,
|
|
1616
|
-
ListRelatedItemsCommand,
|
|
1617
|
-
ListReplicationSetsCommand,
|
|
1618
|
-
ListResponsePlansCommand,
|
|
1619
|
-
ListTagsForResourceCommand,
|
|
1620
|
-
ListTimelineEventsCommand,
|
|
1621
|
-
PutResourcePolicyCommand,
|
|
1622
|
-
StartIncidentCommand,
|
|
1623
|
-
TagResourceCommand,
|
|
1624
|
-
UntagResourceCommand,
|
|
1625
|
-
UpdateDeletionProtectionCommand,
|
|
1626
|
-
UpdateIncidentRecordCommand,
|
|
1627
|
-
UpdateRelatedItemsCommand,
|
|
1628
|
-
UpdateReplicationSetCommand,
|
|
1629
|
-
UpdateResponsePlanCommand,
|
|
1630
|
-
UpdateTimelineEventCommand,
|
|
1631
|
-
};
|
|
1632
|
-
class SSMIncidents extends SSMIncidentsClient {
|
|
1633
|
-
}
|
|
1634
|
-
smithyClient.createAggregatedClient(commands, SSMIncidents);
|
|
1635
|
-
|
|
1636
1599
|
const paginateGetResourcePolicies = core.createPaginator(SSMIncidentsClient, GetResourcePoliciesCommand, "nextToken", "nextToken", "maxResults");
|
|
1637
1600
|
|
|
1638
1601
|
const paginateListIncidentFindings = core.createPaginator(SSMIncidentsClient, ListIncidentFindingsCommand, "nextToken", "nextToken", "maxResults");
|
|
@@ -1746,6 +1709,56 @@ const waitUntilWaitForReplicationSetDeleted = async (params, input) => {
|
|
|
1746
1709
|
return utilWaiter.checkExceptions(result);
|
|
1747
1710
|
};
|
|
1748
1711
|
|
|
1712
|
+
const commands = {
|
|
1713
|
+
BatchGetIncidentFindingsCommand,
|
|
1714
|
+
CreateReplicationSetCommand,
|
|
1715
|
+
CreateResponsePlanCommand,
|
|
1716
|
+
CreateTimelineEventCommand,
|
|
1717
|
+
DeleteIncidentRecordCommand,
|
|
1718
|
+
DeleteReplicationSetCommand,
|
|
1719
|
+
DeleteResourcePolicyCommand,
|
|
1720
|
+
DeleteResponsePlanCommand,
|
|
1721
|
+
DeleteTimelineEventCommand,
|
|
1722
|
+
GetIncidentRecordCommand,
|
|
1723
|
+
GetReplicationSetCommand,
|
|
1724
|
+
GetResourcePoliciesCommand,
|
|
1725
|
+
GetResponsePlanCommand,
|
|
1726
|
+
GetTimelineEventCommand,
|
|
1727
|
+
ListIncidentFindingsCommand,
|
|
1728
|
+
ListIncidentRecordsCommand,
|
|
1729
|
+
ListRelatedItemsCommand,
|
|
1730
|
+
ListReplicationSetsCommand,
|
|
1731
|
+
ListResponsePlansCommand,
|
|
1732
|
+
ListTagsForResourceCommand,
|
|
1733
|
+
ListTimelineEventsCommand,
|
|
1734
|
+
PutResourcePolicyCommand,
|
|
1735
|
+
StartIncidentCommand,
|
|
1736
|
+
TagResourceCommand,
|
|
1737
|
+
UntagResourceCommand,
|
|
1738
|
+
UpdateDeletionProtectionCommand,
|
|
1739
|
+
UpdateIncidentRecordCommand,
|
|
1740
|
+
UpdateRelatedItemsCommand,
|
|
1741
|
+
UpdateReplicationSetCommand,
|
|
1742
|
+
UpdateResponsePlanCommand,
|
|
1743
|
+
UpdateTimelineEventCommand,
|
|
1744
|
+
};
|
|
1745
|
+
const paginators = {
|
|
1746
|
+
paginateGetResourcePolicies,
|
|
1747
|
+
paginateListIncidentFindings,
|
|
1748
|
+
paginateListIncidentRecords,
|
|
1749
|
+
paginateListRelatedItems,
|
|
1750
|
+
paginateListReplicationSets,
|
|
1751
|
+
paginateListResponsePlans,
|
|
1752
|
+
paginateListTimelineEvents,
|
|
1753
|
+
};
|
|
1754
|
+
const waiters = {
|
|
1755
|
+
waitUntilWaitForReplicationSetActive,
|
|
1756
|
+
waitUntilWaitForReplicationSetDeleted,
|
|
1757
|
+
};
|
|
1758
|
+
class SSMIncidents extends SSMIncidentsClient {
|
|
1759
|
+
}
|
|
1760
|
+
smithyClient.createAggregatedClient(commands, SSMIncidents, { paginators, waiters });
|
|
1761
|
+
|
|
1749
1762
|
const VariableType = {
|
|
1750
1763
|
INCIDENT_RECORD_ARN: "INCIDENT_RECORD_ARN",
|
|
1751
1764
|
INVOLVED_RESOURCES: "INVOLVED_RESOURCES",
|
package/dist-es/SSMIncidents.js
CHANGED
|
@@ -30,7 +30,16 @@ import { UpdateRelatedItemsCommand, } from "./commands/UpdateRelatedItemsCommand
|
|
|
30
30
|
import { UpdateReplicationSetCommand, } from "./commands/UpdateReplicationSetCommand";
|
|
31
31
|
import { UpdateResponsePlanCommand, } from "./commands/UpdateResponsePlanCommand";
|
|
32
32
|
import { UpdateTimelineEventCommand, } from "./commands/UpdateTimelineEventCommand";
|
|
33
|
+
import { paginateGetResourcePolicies } from "./pagination/GetResourcePoliciesPaginator";
|
|
34
|
+
import { paginateListIncidentFindings } from "./pagination/ListIncidentFindingsPaginator";
|
|
35
|
+
import { paginateListIncidentRecords } from "./pagination/ListIncidentRecordsPaginator";
|
|
36
|
+
import { paginateListRelatedItems } from "./pagination/ListRelatedItemsPaginator";
|
|
37
|
+
import { paginateListReplicationSets } from "./pagination/ListReplicationSetsPaginator";
|
|
38
|
+
import { paginateListResponsePlans } from "./pagination/ListResponsePlansPaginator";
|
|
39
|
+
import { paginateListTimelineEvents } from "./pagination/ListTimelineEventsPaginator";
|
|
33
40
|
import { SSMIncidentsClient } from "./SSMIncidentsClient";
|
|
41
|
+
import { waitUntilWaitForReplicationSetActive } from "./waiters/waitForWaitForReplicationSetActive";
|
|
42
|
+
import { waitUntilWaitForReplicationSetDeleted } from "./waiters/waitForWaitForReplicationSetDeleted";
|
|
34
43
|
const commands = {
|
|
35
44
|
BatchGetIncidentFindingsCommand,
|
|
36
45
|
CreateReplicationSetCommand,
|
|
@@ -64,6 +73,19 @@ const commands = {
|
|
|
64
73
|
UpdateResponsePlanCommand,
|
|
65
74
|
UpdateTimelineEventCommand,
|
|
66
75
|
};
|
|
76
|
+
const paginators = {
|
|
77
|
+
paginateGetResourcePolicies,
|
|
78
|
+
paginateListIncidentFindings,
|
|
79
|
+
paginateListIncidentRecords,
|
|
80
|
+
paginateListRelatedItems,
|
|
81
|
+
paginateListReplicationSets,
|
|
82
|
+
paginateListResponsePlans,
|
|
83
|
+
paginateListTimelineEvents,
|
|
84
|
+
};
|
|
85
|
+
const waiters = {
|
|
86
|
+
waitUntilWaitForReplicationSetActive,
|
|
87
|
+
waitUntilWaitForReplicationSetDeleted,
|
|
88
|
+
};
|
|
67
89
|
export class SSMIncidents extends SSMIncidentsClient {
|
|
68
90
|
}
|
|
69
|
-
createAggregatedClient(commands, SSMIncidents);
|
|
91
|
+
createAggregatedClient(commands, SSMIncidents, { paginators, waiters });
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
|
+
import type { WaiterResult } from "@smithy/util-waiter";
|
|
2
3
|
import { BatchGetIncidentFindingsCommandInput, BatchGetIncidentFindingsCommandOutput } from "./commands/BatchGetIncidentFindingsCommand";
|
|
3
4
|
import { CreateReplicationSetCommandInput, CreateReplicationSetCommandOutput } from "./commands/CreateReplicationSetCommand";
|
|
4
5
|
import { CreateResponsePlanCommandInput, CreateResponsePlanCommandOutput } from "./commands/CreateResponsePlanCommand";
|
|
@@ -221,6 +222,67 @@ export interface SSMIncidents {
|
|
|
221
222
|
updateTimelineEvent(args: UpdateTimelineEventCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTimelineEventCommandOutput>;
|
|
222
223
|
updateTimelineEvent(args: UpdateTimelineEventCommandInput, cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void): void;
|
|
223
224
|
updateTimelineEvent(args: UpdateTimelineEventCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void): void;
|
|
225
|
+
/**
|
|
226
|
+
* @see {@link GetResourcePoliciesCommand}
|
|
227
|
+
* @param args - command input.
|
|
228
|
+
* @param paginationConfig - optional pagination config.
|
|
229
|
+
* @returns AsyncIterable of {@link GetResourcePoliciesCommandOutput}.
|
|
230
|
+
*/
|
|
231
|
+
paginateGetResourcePolicies(args: GetResourcePoliciesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetResourcePoliciesCommandOutput>;
|
|
232
|
+
/**
|
|
233
|
+
* @see {@link ListIncidentFindingsCommand}
|
|
234
|
+
* @param args - command input.
|
|
235
|
+
* @param paginationConfig - optional pagination config.
|
|
236
|
+
* @returns AsyncIterable of {@link ListIncidentFindingsCommandOutput}.
|
|
237
|
+
*/
|
|
238
|
+
paginateListIncidentFindings(args: ListIncidentFindingsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIncidentFindingsCommandOutput>;
|
|
239
|
+
/**
|
|
240
|
+
* @see {@link ListIncidentRecordsCommand}
|
|
241
|
+
* @param args - command input.
|
|
242
|
+
* @param paginationConfig - optional pagination config.
|
|
243
|
+
* @returns AsyncIterable of {@link ListIncidentRecordsCommandOutput}.
|
|
244
|
+
*/
|
|
245
|
+
paginateListIncidentRecords(args?: ListIncidentRecordsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListIncidentRecordsCommandOutput>;
|
|
246
|
+
/**
|
|
247
|
+
* @see {@link ListRelatedItemsCommand}
|
|
248
|
+
* @param args - command input.
|
|
249
|
+
* @param paginationConfig - optional pagination config.
|
|
250
|
+
* @returns AsyncIterable of {@link ListRelatedItemsCommandOutput}.
|
|
251
|
+
*/
|
|
252
|
+
paginateListRelatedItems(args: ListRelatedItemsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListRelatedItemsCommandOutput>;
|
|
253
|
+
/**
|
|
254
|
+
* @see {@link ListReplicationSetsCommand}
|
|
255
|
+
* @param args - command input.
|
|
256
|
+
* @param paginationConfig - optional pagination config.
|
|
257
|
+
* @returns AsyncIterable of {@link ListReplicationSetsCommandOutput}.
|
|
258
|
+
*/
|
|
259
|
+
paginateListReplicationSets(args?: ListReplicationSetsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReplicationSetsCommandOutput>;
|
|
260
|
+
/**
|
|
261
|
+
* @see {@link ListResponsePlansCommand}
|
|
262
|
+
* @param args - command input.
|
|
263
|
+
* @param paginationConfig - optional pagination config.
|
|
264
|
+
* @returns AsyncIterable of {@link ListResponsePlansCommandOutput}.
|
|
265
|
+
*/
|
|
266
|
+
paginateListResponsePlans(args?: ListResponsePlansCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListResponsePlansCommandOutput>;
|
|
267
|
+
/**
|
|
268
|
+
* @see {@link ListTimelineEventsCommand}
|
|
269
|
+
* @param args - command input.
|
|
270
|
+
* @param paginationConfig - optional pagination config.
|
|
271
|
+
* @returns AsyncIterable of {@link ListTimelineEventsCommandOutput}.
|
|
272
|
+
*/
|
|
273
|
+
paginateListTimelineEvents(args: ListTimelineEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTimelineEventsCommandOutput>;
|
|
274
|
+
/**
|
|
275
|
+
* @see {@link GetReplicationSetCommand}
|
|
276
|
+
* @param args - command input.
|
|
277
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
278
|
+
*/
|
|
279
|
+
waitUntilWaitForReplicationSetActive(args: GetReplicationSetCommandInput, waiterConfig: number | Omit<WaiterConfiguration<SSMIncidents>, "client">): Promise<WaiterResult>;
|
|
280
|
+
/**
|
|
281
|
+
* @see {@link GetReplicationSetCommand}
|
|
282
|
+
* @param args - command input.
|
|
283
|
+
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
284
|
+
*/
|
|
285
|
+
waitUntilWaitForReplicationSetDeleted(args: GetReplicationSetCommandInput, waiterConfig: number | Omit<WaiterConfiguration<SSMIncidents>, "client">): Promise<WaiterResult>;
|
|
224
286
|
}
|
|
225
287
|
/**
|
|
226
288
|
* <p>Systems Manager Incident Manager is an incident management console designed to help users
|
|
@@ -1,4 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
WaiterConfiguration,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
import { WaiterResult } from "@smithy/util-waiter";
|
|
2
8
|
import {
|
|
3
9
|
BatchGetIncidentFindingsCommandInput,
|
|
4
10
|
BatchGetIncidentFindingsCommandOutput,
|
|
@@ -531,6 +537,73 @@ export interface SSMIncidents {
|
|
|
531
537
|
options: __HttpHandlerOptions,
|
|
532
538
|
cb: (err: any, data?: UpdateTimelineEventCommandOutput) => void
|
|
533
539
|
): void;
|
|
540
|
+
paginateGetResourcePolicies(
|
|
541
|
+
args: GetResourcePoliciesCommandInput,
|
|
542
|
+
paginationConfig?: Pick<
|
|
543
|
+
PaginationConfiguration,
|
|
544
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
545
|
+
>
|
|
546
|
+
): Paginator<GetResourcePoliciesCommandOutput>;
|
|
547
|
+
paginateListIncidentFindings(
|
|
548
|
+
args: ListIncidentFindingsCommandInput,
|
|
549
|
+
paginationConfig?: Pick<
|
|
550
|
+
PaginationConfiguration,
|
|
551
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
552
|
+
>
|
|
553
|
+
): Paginator<ListIncidentFindingsCommandOutput>;
|
|
554
|
+
paginateListIncidentRecords(
|
|
555
|
+
args?: ListIncidentRecordsCommandInput,
|
|
556
|
+
paginationConfig?: Pick<
|
|
557
|
+
PaginationConfiguration,
|
|
558
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
559
|
+
>
|
|
560
|
+
): Paginator<ListIncidentRecordsCommandOutput>;
|
|
561
|
+
paginateListRelatedItems(
|
|
562
|
+
args: ListRelatedItemsCommandInput,
|
|
563
|
+
paginationConfig?: Pick<
|
|
564
|
+
PaginationConfiguration,
|
|
565
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
566
|
+
>
|
|
567
|
+
): Paginator<ListRelatedItemsCommandOutput>;
|
|
568
|
+
paginateListReplicationSets(
|
|
569
|
+
args?: ListReplicationSetsCommandInput,
|
|
570
|
+
paginationConfig?: Pick<
|
|
571
|
+
PaginationConfiguration,
|
|
572
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
573
|
+
>
|
|
574
|
+
): Paginator<ListReplicationSetsCommandOutput>;
|
|
575
|
+
paginateListResponsePlans(
|
|
576
|
+
args?: ListResponsePlansCommandInput,
|
|
577
|
+
paginationConfig?: Pick<
|
|
578
|
+
PaginationConfiguration,
|
|
579
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
580
|
+
>
|
|
581
|
+
): Paginator<ListResponsePlansCommandOutput>;
|
|
582
|
+
paginateListTimelineEvents(
|
|
583
|
+
args: ListTimelineEventsCommandInput,
|
|
584
|
+
paginationConfig?: Pick<
|
|
585
|
+
PaginationConfiguration,
|
|
586
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
587
|
+
>
|
|
588
|
+
): Paginator<ListTimelineEventsCommandOutput>;
|
|
589
|
+
waitUntilWaitForReplicationSetActive(
|
|
590
|
+
args: GetReplicationSetCommandInput,
|
|
591
|
+
waiterConfig:
|
|
592
|
+
| number
|
|
593
|
+
| Pick<
|
|
594
|
+
WaiterConfiguration<SSMIncidents>,
|
|
595
|
+
Exclude<keyof WaiterConfiguration<SSMIncidents>, "client">
|
|
596
|
+
>
|
|
597
|
+
): Promise<WaiterResult>;
|
|
598
|
+
waitUntilWaitForReplicationSetDeleted(
|
|
599
|
+
args: GetReplicationSetCommandInput,
|
|
600
|
+
waiterConfig:
|
|
601
|
+
| number
|
|
602
|
+
| Pick<
|
|
603
|
+
WaiterConfiguration<SSMIncidents>,
|
|
604
|
+
Exclude<keyof WaiterConfiguration<SSMIncidents>, "client">
|
|
605
|
+
>
|
|
606
|
+
): Promise<WaiterResult>;
|
|
534
607
|
}
|
|
535
608
|
export declare class SSMIncidents
|
|
536
609
|
extends SSMIncidentsClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm-incidents",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Incidents Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.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-incidents",
|
|
@@ -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.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
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",
|