@aws-sdk/client-ssm 3.696.0 → 3.699.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/README.md +39 -7
- package/dist-cjs/index.js +834 -437
- package/dist-es/SSM.js +8 -0
- package/dist-es/commands/GetExecutionPreviewCommand.js +22 -0
- package/dist-es/commands/ListNodesCommand.js +23 -0
- package/dist-es/commands/ListNodesSummaryCommand.js +22 -0
- package/dist-es/commands/SendCommandCommand.js +1 -1
- package/dist-es/commands/StartExecutionPreviewCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_1.js +99 -144
- package/dist-es/models/models_2.js +167 -1
- package/dist-es/pagination/ListNodesPaginator.js +4 -0
- package/dist-es/pagination/ListNodesSummaryPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +159 -3
- package/dist-types/SSM.d.ts +29 -0
- package/dist-types/SSMClient.d.ts +6 -2
- package/dist-types/commands/CreateResourceDataSyncCommand.d.ts +1 -1
- package/dist-types/commands/DeleteActivationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeActivationsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstancePatchStatesForPatchGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstancePatchesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeInstancePropertiesCommand.d.ts +1 -1
- package/dist-types/commands/GetExecutionPreviewCommand.d.ts +127 -0
- package/dist-types/commands/GetInventoryCommand.d.ts +3 -4
- package/dist-types/commands/GetOpsSummaryCommand.d.ts +3 -4
- package/dist-types/commands/ListComplianceItemsCommand.d.ts +1 -1
- package/dist-types/commands/ListComplianceSummariesCommand.d.ts +1 -1
- package/dist-types/commands/ListInventoryEntriesCommand.d.ts +1 -1
- package/dist-types/commands/ListNodesCommand.d.ts +175 -0
- package/dist-types/commands/ListNodesSummaryCommand.d.ts +166 -0
- package/dist-types/commands/ListResourceComplianceSummariesCommand.d.ts +1 -1
- package/dist-types/commands/ResetServiceSettingCommand.d.ts +2 -1
- package/dist-types/commands/ResumeSessionCommand.d.ts +1 -1
- package/dist-types/commands/SendAutomationSignalCommand.d.ts +1 -1
- package/dist-types/commands/SendCommandCommand.d.ts +1 -1
- package/dist-types/commands/StartAssociationsOnceCommand.d.ts +1 -1
- package/dist-types/commands/StartAutomationExecutionCommand.d.ts +1 -1
- package/dist-types/commands/StartExecutionPreviewCommand.d.ts +157 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +9 -4
- package/dist-types/models/models_1.d.ts +955 -989
- package/dist-types/models/models_2.d.ts +770 -5
- package/dist-types/pagination/ListNodesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListNodesSummaryPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/SSM.d.ts +69 -0
- package/dist-types/ts3.4/SSMClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/GetExecutionPreviewCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListNodesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListNodesSummaryCommand.d.ts +48 -0
- package/dist-types/ts3.4/commands/ResetServiceSettingCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ResumeSessionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendAutomationSignalCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/SendCommandCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAssociationsOnceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartAutomationExecutionCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartExecutionPreviewCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_1.d.ts +176 -170
- package/dist-types/ts3.4/models/models_2.d.ts +236 -0
- package/dist-types/ts3.4/pagination/ListNodesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListNodesSummaryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +4 -4
|
@@ -283,6 +283,10 @@ import {
|
|
|
283
283
|
GetDocumentCommandInput,
|
|
284
284
|
GetDocumentCommandOutput,
|
|
285
285
|
} from "../commands/GetDocumentCommand";
|
|
286
|
+
import {
|
|
287
|
+
GetExecutionPreviewCommandInput,
|
|
288
|
+
GetExecutionPreviewCommandOutput,
|
|
289
|
+
} from "../commands/GetExecutionPreviewCommand";
|
|
286
290
|
import {
|
|
287
291
|
GetInventoryCommandInput,
|
|
288
292
|
GetInventoryCommandOutput,
|
|
@@ -399,6 +403,14 @@ import {
|
|
|
399
403
|
ListInventoryEntriesCommandInput,
|
|
400
404
|
ListInventoryEntriesCommandOutput,
|
|
401
405
|
} from "../commands/ListInventoryEntriesCommand";
|
|
406
|
+
import {
|
|
407
|
+
ListNodesCommandInput,
|
|
408
|
+
ListNodesCommandOutput,
|
|
409
|
+
} from "../commands/ListNodesCommand";
|
|
410
|
+
import {
|
|
411
|
+
ListNodesSummaryCommandInput,
|
|
412
|
+
ListNodesSummaryCommandOutput,
|
|
413
|
+
} from "../commands/ListNodesSummaryCommand";
|
|
402
414
|
import {
|
|
403
415
|
ListOpsItemEventsCommandInput,
|
|
404
416
|
ListOpsItemEventsCommandOutput,
|
|
@@ -491,6 +503,10 @@ import {
|
|
|
491
503
|
StartChangeRequestExecutionCommandInput,
|
|
492
504
|
StartChangeRequestExecutionCommandOutput,
|
|
493
505
|
} from "../commands/StartChangeRequestExecutionCommand";
|
|
506
|
+
import {
|
|
507
|
+
StartExecutionPreviewCommandInput,
|
|
508
|
+
StartExecutionPreviewCommandOutput,
|
|
509
|
+
} from "../commands/StartExecutionPreviewCommand";
|
|
494
510
|
import {
|
|
495
511
|
StartSessionCommandInput,
|
|
496
512
|
StartSessionCommandOutput,
|
|
@@ -843,6 +859,10 @@ export declare const se_GetDocumentCommand: (
|
|
|
843
859
|
input: GetDocumentCommandInput,
|
|
844
860
|
context: __SerdeContext
|
|
845
861
|
) => Promise<__HttpRequest>;
|
|
862
|
+
export declare const se_GetExecutionPreviewCommand: (
|
|
863
|
+
input: GetExecutionPreviewCommandInput,
|
|
864
|
+
context: __SerdeContext
|
|
865
|
+
) => Promise<__HttpRequest>;
|
|
846
866
|
export declare const se_GetInventoryCommand: (
|
|
847
867
|
input: GetInventoryCommandInput,
|
|
848
868
|
context: __SerdeContext
|
|
@@ -959,6 +979,14 @@ export declare const se_ListInventoryEntriesCommand: (
|
|
|
959
979
|
input: ListInventoryEntriesCommandInput,
|
|
960
980
|
context: __SerdeContext
|
|
961
981
|
) => Promise<__HttpRequest>;
|
|
982
|
+
export declare const se_ListNodesCommand: (
|
|
983
|
+
input: ListNodesCommandInput,
|
|
984
|
+
context: __SerdeContext
|
|
985
|
+
) => Promise<__HttpRequest>;
|
|
986
|
+
export declare const se_ListNodesSummaryCommand: (
|
|
987
|
+
input: ListNodesSummaryCommandInput,
|
|
988
|
+
context: __SerdeContext
|
|
989
|
+
) => Promise<__HttpRequest>;
|
|
962
990
|
export declare const se_ListOpsItemEventsCommand: (
|
|
963
991
|
input: ListOpsItemEventsCommandInput,
|
|
964
992
|
context: __SerdeContext
|
|
@@ -1051,6 +1079,10 @@ export declare const se_StartChangeRequestExecutionCommand: (
|
|
|
1051
1079
|
input: StartChangeRequestExecutionCommandInput,
|
|
1052
1080
|
context: __SerdeContext
|
|
1053
1081
|
) => Promise<__HttpRequest>;
|
|
1082
|
+
export declare const se_StartExecutionPreviewCommand: (
|
|
1083
|
+
input: StartExecutionPreviewCommandInput,
|
|
1084
|
+
context: __SerdeContext
|
|
1085
|
+
) => Promise<__HttpRequest>;
|
|
1054
1086
|
export declare const se_StartSessionCommand: (
|
|
1055
1087
|
input: StartSessionCommandInput,
|
|
1056
1088
|
context: __SerdeContext
|
|
@@ -1403,6 +1435,10 @@ export declare const de_GetDocumentCommand: (
|
|
|
1403
1435
|
output: __HttpResponse,
|
|
1404
1436
|
context: __SerdeContext
|
|
1405
1437
|
) => Promise<GetDocumentCommandOutput>;
|
|
1438
|
+
export declare const de_GetExecutionPreviewCommand: (
|
|
1439
|
+
output: __HttpResponse,
|
|
1440
|
+
context: __SerdeContext
|
|
1441
|
+
) => Promise<GetExecutionPreviewCommandOutput>;
|
|
1406
1442
|
export declare const de_GetInventoryCommand: (
|
|
1407
1443
|
output: __HttpResponse,
|
|
1408
1444
|
context: __SerdeContext
|
|
@@ -1519,6 +1555,14 @@ export declare const de_ListInventoryEntriesCommand: (
|
|
|
1519
1555
|
output: __HttpResponse,
|
|
1520
1556
|
context: __SerdeContext
|
|
1521
1557
|
) => Promise<ListInventoryEntriesCommandOutput>;
|
|
1558
|
+
export declare const de_ListNodesCommand: (
|
|
1559
|
+
output: __HttpResponse,
|
|
1560
|
+
context: __SerdeContext
|
|
1561
|
+
) => Promise<ListNodesCommandOutput>;
|
|
1562
|
+
export declare const de_ListNodesSummaryCommand: (
|
|
1563
|
+
output: __HttpResponse,
|
|
1564
|
+
context: __SerdeContext
|
|
1565
|
+
) => Promise<ListNodesSummaryCommandOutput>;
|
|
1522
1566
|
export declare const de_ListOpsItemEventsCommand: (
|
|
1523
1567
|
output: __HttpResponse,
|
|
1524
1568
|
context: __SerdeContext
|
|
@@ -1611,6 +1655,10 @@ export declare const de_StartChangeRequestExecutionCommand: (
|
|
|
1611
1655
|
output: __HttpResponse,
|
|
1612
1656
|
context: __SerdeContext
|
|
1613
1657
|
) => Promise<StartChangeRequestExecutionCommandOutput>;
|
|
1658
|
+
export declare const de_StartExecutionPreviewCommand: (
|
|
1659
|
+
output: __HttpResponse,
|
|
1660
|
+
context: __SerdeContext
|
|
1661
|
+
) => Promise<StartExecutionPreviewCommandOutput>;
|
|
1614
1662
|
export declare const de_StartSessionCommand: (
|
|
1615
1663
|
output: __HttpResponse,
|
|
1616
1664
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ssm",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ssm Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.699.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ssm",
|
|
@@ -20,10 +20,10 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.699.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.699.0",
|
|
25
25
|
"@aws-sdk/core": "3.696.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.699.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.696.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.696.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.696.0",
|