@aws-sdk/client-ssm 3.693.0 → 3.698.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 +98 -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 +123 -0
- package/dist-types/commands/ListNodesSummaryCommand.d.ts +123 -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 +141 -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 +36 -36
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand";
|
|
3
|
+
import { SSMPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListNodes: (config: SSMPaginationConfiguration, input: ListNodesCommandInput, ...rest: any[]) => Paginator<ListNodesCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListNodesSummaryCommandInput, ListNodesSummaryCommandOutput } from "../commands/ListNodesSummaryCommand";
|
|
3
|
+
import { SSMPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListNodesSummary: (config: SSMPaginationConfiguration, input: ListNodesSummaryCommandInput, ...rest: any[]) => Paginator<ListNodesSummaryCommandOutput>;
|
|
@@ -42,6 +42,8 @@ export * from "./ListComplianceItemsPaginator";
|
|
|
42
42
|
export * from "./ListComplianceSummariesPaginator";
|
|
43
43
|
export * from "./ListDocumentVersionsPaginator";
|
|
44
44
|
export * from "./ListDocumentsPaginator";
|
|
45
|
+
export * from "./ListNodesPaginator";
|
|
46
|
+
export * from "./ListNodesSummaryPaginator";
|
|
45
47
|
export * from "./ListOpsItemEventsPaginator";
|
|
46
48
|
export * from "./ListOpsItemRelatedItemsPaginator";
|
|
47
49
|
export * from "./ListOpsMetadataPaginator";
|
|
@@ -70,6 +70,7 @@ import { GetConnectionStatusCommandInput, GetConnectionStatusCommandOutput } fro
|
|
|
70
70
|
import { GetDefaultPatchBaselineCommandInput, GetDefaultPatchBaselineCommandOutput } from "../commands/GetDefaultPatchBaselineCommand";
|
|
71
71
|
import { GetDeployablePatchSnapshotForInstanceCommandInput, GetDeployablePatchSnapshotForInstanceCommandOutput } from "../commands/GetDeployablePatchSnapshotForInstanceCommand";
|
|
72
72
|
import { GetDocumentCommandInput, GetDocumentCommandOutput } from "../commands/GetDocumentCommand";
|
|
73
|
+
import { GetExecutionPreviewCommandInput, GetExecutionPreviewCommandOutput } from "../commands/GetExecutionPreviewCommand";
|
|
73
74
|
import { GetInventoryCommandInput, GetInventoryCommandOutput } from "../commands/GetInventoryCommand";
|
|
74
75
|
import { GetInventorySchemaCommandInput, GetInventorySchemaCommandOutput } from "../commands/GetInventorySchemaCommand";
|
|
75
76
|
import { GetMaintenanceWindowCommandInput, GetMaintenanceWindowCommandOutput } from "../commands/GetMaintenanceWindowCommand";
|
|
@@ -99,6 +100,8 @@ import { ListDocumentMetadataHistoryCommandInput, ListDocumentMetadataHistoryCom
|
|
|
99
100
|
import { ListDocumentsCommandInput, ListDocumentsCommandOutput } from "../commands/ListDocumentsCommand";
|
|
100
101
|
import { ListDocumentVersionsCommandInput, ListDocumentVersionsCommandOutput } from "../commands/ListDocumentVersionsCommand";
|
|
101
102
|
import { ListInventoryEntriesCommandInput, ListInventoryEntriesCommandOutput } from "../commands/ListInventoryEntriesCommand";
|
|
103
|
+
import { ListNodesCommandInput, ListNodesCommandOutput } from "../commands/ListNodesCommand";
|
|
104
|
+
import { ListNodesSummaryCommandInput, ListNodesSummaryCommandOutput } from "../commands/ListNodesSummaryCommand";
|
|
102
105
|
import { ListOpsItemEventsCommandInput, ListOpsItemEventsCommandOutput } from "../commands/ListOpsItemEventsCommand";
|
|
103
106
|
import { ListOpsItemRelatedItemsCommandInput, ListOpsItemRelatedItemsCommandOutput } from "../commands/ListOpsItemRelatedItemsCommand";
|
|
104
107
|
import { ListOpsMetadataCommandInput, ListOpsMetadataCommandOutput } from "../commands/ListOpsMetadataCommand";
|
|
@@ -122,6 +125,7 @@ import { SendCommandCommandInput, SendCommandCommandOutput } from "../commands/S
|
|
|
122
125
|
import { StartAssociationsOnceCommandInput, StartAssociationsOnceCommandOutput } from "../commands/StartAssociationsOnceCommand";
|
|
123
126
|
import { StartAutomationExecutionCommandInput, StartAutomationExecutionCommandOutput } from "../commands/StartAutomationExecutionCommand";
|
|
124
127
|
import { StartChangeRequestExecutionCommandInput, StartChangeRequestExecutionCommandOutput } from "../commands/StartChangeRequestExecutionCommand";
|
|
128
|
+
import { StartExecutionPreviewCommandInput, StartExecutionPreviewCommandOutput } from "../commands/StartExecutionPreviewCommand";
|
|
125
129
|
import { StartSessionCommandInput, StartSessionCommandOutput } from "../commands/StartSessionCommand";
|
|
126
130
|
import { StopAutomationExecutionCommandInput, StopAutomationExecutionCommandOutput } from "../commands/StopAutomationExecutionCommand";
|
|
127
131
|
import { TerminateSessionCommandInput, TerminateSessionCommandOutput } from "../commands/TerminateSessionCommand";
|
|
@@ -420,6 +424,10 @@ export declare const se_GetDeployablePatchSnapshotForInstanceCommand: (input: Ge
|
|
|
420
424
|
* serializeAws_json1_1GetDocumentCommand
|
|
421
425
|
*/
|
|
422
426
|
export declare const se_GetDocumentCommand: (input: GetDocumentCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
427
|
+
/**
|
|
428
|
+
* serializeAws_json1_1GetExecutionPreviewCommand
|
|
429
|
+
*/
|
|
430
|
+
export declare const se_GetExecutionPreviewCommand: (input: GetExecutionPreviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
423
431
|
/**
|
|
424
432
|
* serializeAws_json1_1GetInventoryCommand
|
|
425
433
|
*/
|
|
@@ -536,6 +544,14 @@ export declare const se_ListDocumentVersionsCommand: (input: ListDocumentVersion
|
|
|
536
544
|
* serializeAws_json1_1ListInventoryEntriesCommand
|
|
537
545
|
*/
|
|
538
546
|
export declare const se_ListInventoryEntriesCommand: (input: ListInventoryEntriesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
547
|
+
/**
|
|
548
|
+
* serializeAws_json1_1ListNodesCommand
|
|
549
|
+
*/
|
|
550
|
+
export declare const se_ListNodesCommand: (input: ListNodesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
551
|
+
/**
|
|
552
|
+
* serializeAws_json1_1ListNodesSummaryCommand
|
|
553
|
+
*/
|
|
554
|
+
export declare const se_ListNodesSummaryCommand: (input: ListNodesSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
539
555
|
/**
|
|
540
556
|
* serializeAws_json1_1ListOpsItemEventsCommand
|
|
541
557
|
*/
|
|
@@ -628,6 +644,10 @@ export declare const se_StartAutomationExecutionCommand: (input: StartAutomation
|
|
|
628
644
|
* serializeAws_json1_1StartChangeRequestExecutionCommand
|
|
629
645
|
*/
|
|
630
646
|
export declare const se_StartChangeRequestExecutionCommand: (input: StartChangeRequestExecutionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
647
|
+
/**
|
|
648
|
+
* serializeAws_json1_1StartExecutionPreviewCommand
|
|
649
|
+
*/
|
|
650
|
+
export declare const se_StartExecutionPreviewCommand: (input: StartExecutionPreviewCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
631
651
|
/**
|
|
632
652
|
* serializeAws_json1_1StartSessionCommand
|
|
633
653
|
*/
|
|
@@ -980,6 +1000,10 @@ export declare const de_GetDeployablePatchSnapshotForInstanceCommand: (output: _
|
|
|
980
1000
|
* deserializeAws_json1_1GetDocumentCommand
|
|
981
1001
|
*/
|
|
982
1002
|
export declare const de_GetDocumentCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDocumentCommandOutput>;
|
|
1003
|
+
/**
|
|
1004
|
+
* deserializeAws_json1_1GetExecutionPreviewCommand
|
|
1005
|
+
*/
|
|
1006
|
+
export declare const de_GetExecutionPreviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetExecutionPreviewCommandOutput>;
|
|
983
1007
|
/**
|
|
984
1008
|
* deserializeAws_json1_1GetInventoryCommand
|
|
985
1009
|
*/
|
|
@@ -1096,6 +1120,14 @@ export declare const de_ListDocumentVersionsCommand: (output: __HttpResponse, co
|
|
|
1096
1120
|
* deserializeAws_json1_1ListInventoryEntriesCommand
|
|
1097
1121
|
*/
|
|
1098
1122
|
export declare const de_ListInventoryEntriesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListInventoryEntriesCommandOutput>;
|
|
1123
|
+
/**
|
|
1124
|
+
* deserializeAws_json1_1ListNodesCommand
|
|
1125
|
+
*/
|
|
1126
|
+
export declare const de_ListNodesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNodesCommandOutput>;
|
|
1127
|
+
/**
|
|
1128
|
+
* deserializeAws_json1_1ListNodesSummaryCommand
|
|
1129
|
+
*/
|
|
1130
|
+
export declare const de_ListNodesSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNodesSummaryCommandOutput>;
|
|
1099
1131
|
/**
|
|
1100
1132
|
* deserializeAws_json1_1ListOpsItemEventsCommand
|
|
1101
1133
|
*/
|
|
@@ -1188,6 +1220,10 @@ export declare const de_StartAutomationExecutionCommand: (output: __HttpResponse
|
|
|
1188
1220
|
* deserializeAws_json1_1StartChangeRequestExecutionCommand
|
|
1189
1221
|
*/
|
|
1190
1222
|
export declare const de_StartChangeRequestExecutionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartChangeRequestExecutionCommandOutput>;
|
|
1223
|
+
/**
|
|
1224
|
+
* deserializeAws_json1_1StartExecutionPreviewCommand
|
|
1225
|
+
*/
|
|
1226
|
+
export declare const de_StartExecutionPreviewCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartExecutionPreviewCommandOutput>;
|
|
1191
1227
|
/**
|
|
1192
1228
|
* deserializeAws_json1_1StartSessionCommand
|
|
1193
1229
|
*/
|
|
@@ -279,6 +279,10 @@ import {
|
|
|
279
279
|
GetDocumentCommandInput,
|
|
280
280
|
GetDocumentCommandOutput,
|
|
281
281
|
} from "./commands/GetDocumentCommand";
|
|
282
|
+
import {
|
|
283
|
+
GetExecutionPreviewCommandInput,
|
|
284
|
+
GetExecutionPreviewCommandOutput,
|
|
285
|
+
} from "./commands/GetExecutionPreviewCommand";
|
|
282
286
|
import {
|
|
283
287
|
GetInventoryCommandInput,
|
|
284
288
|
GetInventoryCommandOutput,
|
|
@@ -395,6 +399,14 @@ import {
|
|
|
395
399
|
ListInventoryEntriesCommandInput,
|
|
396
400
|
ListInventoryEntriesCommandOutput,
|
|
397
401
|
} from "./commands/ListInventoryEntriesCommand";
|
|
402
|
+
import {
|
|
403
|
+
ListNodesCommandInput,
|
|
404
|
+
ListNodesCommandOutput,
|
|
405
|
+
} from "./commands/ListNodesCommand";
|
|
406
|
+
import {
|
|
407
|
+
ListNodesSummaryCommandInput,
|
|
408
|
+
ListNodesSummaryCommandOutput,
|
|
409
|
+
} from "./commands/ListNodesSummaryCommand";
|
|
398
410
|
import {
|
|
399
411
|
ListOpsItemEventsCommandInput,
|
|
400
412
|
ListOpsItemEventsCommandOutput,
|
|
@@ -487,6 +499,10 @@ import {
|
|
|
487
499
|
StartChangeRequestExecutionCommandInput,
|
|
488
500
|
StartChangeRequestExecutionCommandOutput,
|
|
489
501
|
} from "./commands/StartChangeRequestExecutionCommand";
|
|
502
|
+
import {
|
|
503
|
+
StartExecutionPreviewCommandInput,
|
|
504
|
+
StartExecutionPreviewCommandOutput,
|
|
505
|
+
} from "./commands/StartExecutionPreviewCommand";
|
|
490
506
|
import {
|
|
491
507
|
StartSessionCommandInput,
|
|
492
508
|
StartSessionCommandOutput,
|
|
@@ -1570,6 +1586,19 @@ export interface SSM {
|
|
|
1570
1586
|
options: __HttpHandlerOptions,
|
|
1571
1587
|
cb: (err: any, data?: GetDocumentCommandOutput) => void
|
|
1572
1588
|
): void;
|
|
1589
|
+
getExecutionPreview(
|
|
1590
|
+
args: GetExecutionPreviewCommandInput,
|
|
1591
|
+
options?: __HttpHandlerOptions
|
|
1592
|
+
): Promise<GetExecutionPreviewCommandOutput>;
|
|
1593
|
+
getExecutionPreview(
|
|
1594
|
+
args: GetExecutionPreviewCommandInput,
|
|
1595
|
+
cb: (err: any, data?: GetExecutionPreviewCommandOutput) => void
|
|
1596
|
+
): void;
|
|
1597
|
+
getExecutionPreview(
|
|
1598
|
+
args: GetExecutionPreviewCommandInput,
|
|
1599
|
+
options: __HttpHandlerOptions,
|
|
1600
|
+
cb: (err: any, data?: GetExecutionPreviewCommandOutput) => void
|
|
1601
|
+
): void;
|
|
1573
1602
|
getInventory(): Promise<GetInventoryCommandOutput>;
|
|
1574
1603
|
getInventory(
|
|
1575
1604
|
args: GetInventoryCommandInput,
|
|
@@ -1968,6 +1997,33 @@ export interface SSM {
|
|
|
1968
1997
|
options: __HttpHandlerOptions,
|
|
1969
1998
|
cb: (err: any, data?: ListInventoryEntriesCommandOutput) => void
|
|
1970
1999
|
): void;
|
|
2000
|
+
listNodes(): Promise<ListNodesCommandOutput>;
|
|
2001
|
+
listNodes(
|
|
2002
|
+
args: ListNodesCommandInput,
|
|
2003
|
+
options?: __HttpHandlerOptions
|
|
2004
|
+
): Promise<ListNodesCommandOutput>;
|
|
2005
|
+
listNodes(
|
|
2006
|
+
args: ListNodesCommandInput,
|
|
2007
|
+
cb: (err: any, data?: ListNodesCommandOutput) => void
|
|
2008
|
+
): void;
|
|
2009
|
+
listNodes(
|
|
2010
|
+
args: ListNodesCommandInput,
|
|
2011
|
+
options: __HttpHandlerOptions,
|
|
2012
|
+
cb: (err: any, data?: ListNodesCommandOutput) => void
|
|
2013
|
+
): void;
|
|
2014
|
+
listNodesSummary(
|
|
2015
|
+
args: ListNodesSummaryCommandInput,
|
|
2016
|
+
options?: __HttpHandlerOptions
|
|
2017
|
+
): Promise<ListNodesSummaryCommandOutput>;
|
|
2018
|
+
listNodesSummary(
|
|
2019
|
+
args: ListNodesSummaryCommandInput,
|
|
2020
|
+
cb: (err: any, data?: ListNodesSummaryCommandOutput) => void
|
|
2021
|
+
): void;
|
|
2022
|
+
listNodesSummary(
|
|
2023
|
+
args: ListNodesSummaryCommandInput,
|
|
2024
|
+
options: __HttpHandlerOptions,
|
|
2025
|
+
cb: (err: any, data?: ListNodesSummaryCommandOutput) => void
|
|
2026
|
+
): void;
|
|
1971
2027
|
listOpsItemEvents(): Promise<ListOpsItemEventsCommandOutput>;
|
|
1972
2028
|
listOpsItemEvents(
|
|
1973
2029
|
args: ListOpsItemEventsCommandInput,
|
|
@@ -2290,6 +2346,19 @@ export interface SSM {
|
|
|
2290
2346
|
options: __HttpHandlerOptions,
|
|
2291
2347
|
cb: (err: any, data?: StartChangeRequestExecutionCommandOutput) => void
|
|
2292
2348
|
): void;
|
|
2349
|
+
startExecutionPreview(
|
|
2350
|
+
args: StartExecutionPreviewCommandInput,
|
|
2351
|
+
options?: __HttpHandlerOptions
|
|
2352
|
+
): Promise<StartExecutionPreviewCommandOutput>;
|
|
2353
|
+
startExecutionPreview(
|
|
2354
|
+
args: StartExecutionPreviewCommandInput,
|
|
2355
|
+
cb: (err: any, data?: StartExecutionPreviewCommandOutput) => void
|
|
2356
|
+
): void;
|
|
2357
|
+
startExecutionPreview(
|
|
2358
|
+
args: StartExecutionPreviewCommandInput,
|
|
2359
|
+
options: __HttpHandlerOptions,
|
|
2360
|
+
cb: (err: any, data?: StartExecutionPreviewCommandOutput) => void
|
|
2361
|
+
): void;
|
|
2293
2362
|
startSession(
|
|
2294
2363
|
args: StartSessionCommandInput,
|
|
2295
2364
|
options?: __HttpHandlerOptions
|
|
@@ -325,6 +325,10 @@ import {
|
|
|
325
325
|
GetDocumentCommandInput,
|
|
326
326
|
GetDocumentCommandOutput,
|
|
327
327
|
} from "./commands/GetDocumentCommand";
|
|
328
|
+
import {
|
|
329
|
+
GetExecutionPreviewCommandInput,
|
|
330
|
+
GetExecutionPreviewCommandOutput,
|
|
331
|
+
} from "./commands/GetExecutionPreviewCommand";
|
|
328
332
|
import {
|
|
329
333
|
GetInventoryCommandInput,
|
|
330
334
|
GetInventoryCommandOutput,
|
|
@@ -441,6 +445,14 @@ import {
|
|
|
441
445
|
ListInventoryEntriesCommandInput,
|
|
442
446
|
ListInventoryEntriesCommandOutput,
|
|
443
447
|
} from "./commands/ListInventoryEntriesCommand";
|
|
448
|
+
import {
|
|
449
|
+
ListNodesCommandInput,
|
|
450
|
+
ListNodesCommandOutput,
|
|
451
|
+
} from "./commands/ListNodesCommand";
|
|
452
|
+
import {
|
|
453
|
+
ListNodesSummaryCommandInput,
|
|
454
|
+
ListNodesSummaryCommandOutput,
|
|
455
|
+
} from "./commands/ListNodesSummaryCommand";
|
|
444
456
|
import {
|
|
445
457
|
ListOpsItemEventsCommandInput,
|
|
446
458
|
ListOpsItemEventsCommandOutput,
|
|
@@ -533,6 +545,10 @@ import {
|
|
|
533
545
|
StartChangeRequestExecutionCommandInput,
|
|
534
546
|
StartChangeRequestExecutionCommandOutput,
|
|
535
547
|
} from "./commands/StartChangeRequestExecutionCommand";
|
|
548
|
+
import {
|
|
549
|
+
StartExecutionPreviewCommandInput,
|
|
550
|
+
StartExecutionPreviewCommandOutput,
|
|
551
|
+
} from "./commands/StartExecutionPreviewCommand";
|
|
536
552
|
import {
|
|
537
553
|
StartSessionCommandInput,
|
|
538
554
|
StartSessionCommandOutput,
|
|
@@ -683,6 +699,7 @@ export type ServiceInputTypes =
|
|
|
683
699
|
| GetDefaultPatchBaselineCommandInput
|
|
684
700
|
| GetDeployablePatchSnapshotForInstanceCommandInput
|
|
685
701
|
| GetDocumentCommandInput
|
|
702
|
+
| GetExecutionPreviewCommandInput
|
|
686
703
|
| GetInventoryCommandInput
|
|
687
704
|
| GetInventorySchemaCommandInput
|
|
688
705
|
| GetMaintenanceWindowCommandInput
|
|
@@ -712,6 +729,8 @@ export type ServiceInputTypes =
|
|
|
712
729
|
| ListDocumentVersionsCommandInput
|
|
713
730
|
| ListDocumentsCommandInput
|
|
714
731
|
| ListInventoryEntriesCommandInput
|
|
732
|
+
| ListNodesCommandInput
|
|
733
|
+
| ListNodesSummaryCommandInput
|
|
715
734
|
| ListOpsItemEventsCommandInput
|
|
716
735
|
| ListOpsItemRelatedItemsCommandInput
|
|
717
736
|
| ListOpsMetadataCommandInput
|
|
@@ -735,6 +754,7 @@ export type ServiceInputTypes =
|
|
|
735
754
|
| StartAssociationsOnceCommandInput
|
|
736
755
|
| StartAutomationExecutionCommandInput
|
|
737
756
|
| StartChangeRequestExecutionCommandInput
|
|
757
|
+
| StartExecutionPreviewCommandInput
|
|
738
758
|
| StartSessionCommandInput
|
|
739
759
|
| StopAutomationExecutionCommandInput
|
|
740
760
|
| TerminateSessionCommandInput
|
|
@@ -824,6 +844,7 @@ export type ServiceOutputTypes =
|
|
|
824
844
|
| GetDefaultPatchBaselineCommandOutput
|
|
825
845
|
| GetDeployablePatchSnapshotForInstanceCommandOutput
|
|
826
846
|
| GetDocumentCommandOutput
|
|
847
|
+
| GetExecutionPreviewCommandOutput
|
|
827
848
|
| GetInventoryCommandOutput
|
|
828
849
|
| GetInventorySchemaCommandOutput
|
|
829
850
|
| GetMaintenanceWindowCommandOutput
|
|
@@ -853,6 +874,8 @@ export type ServiceOutputTypes =
|
|
|
853
874
|
| ListDocumentVersionsCommandOutput
|
|
854
875
|
| ListDocumentsCommandOutput
|
|
855
876
|
| ListInventoryEntriesCommandOutput
|
|
877
|
+
| ListNodesCommandOutput
|
|
878
|
+
| ListNodesSummaryCommandOutput
|
|
856
879
|
| ListOpsItemEventsCommandOutput
|
|
857
880
|
| ListOpsItemRelatedItemsCommandOutput
|
|
858
881
|
| ListOpsMetadataCommandOutput
|
|
@@ -876,6 +899,7 @@ export type ServiceOutputTypes =
|
|
|
876
899
|
| StartAssociationsOnceCommandOutput
|
|
877
900
|
| StartAutomationExecutionCommandOutput
|
|
878
901
|
| StartChangeRequestExecutionCommandOutput
|
|
902
|
+
| StartExecutionPreviewCommandOutput
|
|
879
903
|
| StartSessionCommandOutput
|
|
880
904
|
| StopAutomationExecutionCommandOutput
|
|
881
905
|
| TerminateSessionCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetExecutionPreviewRequest,
|
|
5
|
+
GetExecutionPreviewResponse,
|
|
6
|
+
} from "../models/models_1";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SSMClientResolvedConfig,
|
|
11
|
+
} from "../SSMClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetExecutionPreviewCommandInput
|
|
15
|
+
extends GetExecutionPreviewRequest {}
|
|
16
|
+
export interface GetExecutionPreviewCommandOutput
|
|
17
|
+
extends GetExecutionPreviewResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetExecutionPreviewCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetExecutionPreviewCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetExecutionPreviewCommandInput,
|
|
24
|
+
GetExecutionPreviewCommandOutput,
|
|
25
|
+
SSMClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: GetExecutionPreviewCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetExecutionPreviewCommandInput,
|
|
33
|
+
GetExecutionPreviewCommandOutput,
|
|
34
|
+
SSMClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetExecutionPreviewCommand extends GetExecutionPreviewCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetExecutionPreviewRequest;
|
|
44
|
+
output: GetExecutionPreviewResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetExecutionPreviewCommandInput;
|
|
48
|
+
output: GetExecutionPreviewCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListNodesRequest, ListNodesResult } from "../models/models_1";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSMClientResolvedConfig,
|
|
8
|
+
} from "../SSMClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListNodesCommandInput extends ListNodesRequest {}
|
|
12
|
+
export interface ListNodesCommandOutput
|
|
13
|
+
extends ListNodesResult,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListNodesCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListNodesCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListNodesCommandInput,
|
|
20
|
+
ListNodesCommandOutput,
|
|
21
|
+
SSMClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListNodesCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListNodesCommandInput,
|
|
29
|
+
ListNodesCommandOutput,
|
|
30
|
+
SSMClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListNodesCommand extends ListNodesCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: ListNodesRequest;
|
|
40
|
+
output: ListNodesResult;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: ListNodesCommandInput;
|
|
44
|
+
output: ListNodesCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { ListNodesSummaryResult } from "../models/models_1";
|
|
4
|
+
import { ListNodesSummaryRequest } from "../models/models_2";
|
|
5
|
+
import {
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
SSMClientResolvedConfig,
|
|
9
|
+
} from "../SSMClient";
|
|
10
|
+
export { __MetadataBearer };
|
|
11
|
+
export { $Command };
|
|
12
|
+
export interface ListNodesSummaryCommandInput extends ListNodesSummaryRequest {}
|
|
13
|
+
export interface ListNodesSummaryCommandOutput
|
|
14
|
+
extends ListNodesSummaryResult,
|
|
15
|
+
__MetadataBearer {}
|
|
16
|
+
declare const ListNodesSummaryCommand_base: {
|
|
17
|
+
new (
|
|
18
|
+
input: ListNodesSummaryCommandInput
|
|
19
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
20
|
+
ListNodesSummaryCommandInput,
|
|
21
|
+
ListNodesSummaryCommandOutput,
|
|
22
|
+
SSMClientResolvedConfig,
|
|
23
|
+
ServiceInputTypes,
|
|
24
|
+
ServiceOutputTypes
|
|
25
|
+
>;
|
|
26
|
+
new (
|
|
27
|
+
__0_0: ListNodesSummaryCommandInput
|
|
28
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
29
|
+
ListNodesSummaryCommandInput,
|
|
30
|
+
ListNodesSummaryCommandOutput,
|
|
31
|
+
SSMClientResolvedConfig,
|
|
32
|
+
ServiceInputTypes,
|
|
33
|
+
ServiceOutputTypes
|
|
34
|
+
>;
|
|
35
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
36
|
+
};
|
|
37
|
+
export declare class ListNodesSummaryCommand extends ListNodesSummaryCommand_base {
|
|
38
|
+
protected static __types: {
|
|
39
|
+
api: {
|
|
40
|
+
input: ListNodesSummaryRequest;
|
|
41
|
+
output: ListNodesSummaryResult;
|
|
42
|
+
};
|
|
43
|
+
sdk: {
|
|
44
|
+
input: ListNodesSummaryCommandInput;
|
|
45
|
+
output: ListNodesSummaryCommandOutput;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
ResetServiceSettingResult,
|
|
6
|
-
} from "../models/models_1";
|
|
3
|
+
import { ResetServiceSettingRequest } from "../models/models_1";
|
|
4
|
+
import { ResetServiceSettingResult } from "../models/models_2";
|
|
7
5
|
import {
|
|
8
6
|
ServiceInputTypes,
|
|
9
7
|
ServiceOutputTypes,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { SendCommandRequest, SendCommandResult } from "../models/
|
|
3
|
+
import { SendCommandRequest, SendCommandResult } from "../models/models_2";
|
|
4
4
|
import {
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
StartExecutionPreviewRequest,
|
|
5
|
+
StartExecutionPreviewResponse,
|
|
6
|
+
} from "../models/models_2";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
SSMClientResolvedConfig,
|
|
11
|
+
} from "../SSMClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartExecutionPreviewCommandInput
|
|
15
|
+
extends StartExecutionPreviewRequest {}
|
|
16
|
+
export interface StartExecutionPreviewCommandOutput
|
|
17
|
+
extends StartExecutionPreviewResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const StartExecutionPreviewCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: StartExecutionPreviewCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
StartExecutionPreviewCommandInput,
|
|
24
|
+
StartExecutionPreviewCommandOutput,
|
|
25
|
+
SSMClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: StartExecutionPreviewCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
StartExecutionPreviewCommandInput,
|
|
33
|
+
StartExecutionPreviewCommandOutput,
|
|
34
|
+
SSMClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class StartExecutionPreviewCommand extends StartExecutionPreviewCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: StartExecutionPreviewRequest;
|
|
44
|
+
output: StartExecutionPreviewResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: StartExecutionPreviewCommandInput;
|
|
48
|
+
output: StartExecutionPreviewCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -68,6 +68,7 @@ export * from "./GetConnectionStatusCommand";
|
|
|
68
68
|
export * from "./GetDefaultPatchBaselineCommand";
|
|
69
69
|
export * from "./GetDeployablePatchSnapshotForInstanceCommand";
|
|
70
70
|
export * from "./GetDocumentCommand";
|
|
71
|
+
export * from "./GetExecutionPreviewCommand";
|
|
71
72
|
export * from "./GetInventoryCommand";
|
|
72
73
|
export * from "./GetInventorySchemaCommand";
|
|
73
74
|
export * from "./GetMaintenanceWindowCommand";
|
|
@@ -97,6 +98,8 @@ export * from "./ListDocumentMetadataHistoryCommand";
|
|
|
97
98
|
export * from "./ListDocumentVersionsCommand";
|
|
98
99
|
export * from "./ListDocumentsCommand";
|
|
99
100
|
export * from "./ListInventoryEntriesCommand";
|
|
101
|
+
export * from "./ListNodesCommand";
|
|
102
|
+
export * from "./ListNodesSummaryCommand";
|
|
100
103
|
export * from "./ListOpsItemEventsCommand";
|
|
101
104
|
export * from "./ListOpsItemRelatedItemsCommand";
|
|
102
105
|
export * from "./ListOpsMetadataCommand";
|
|
@@ -120,6 +123,7 @@ export * from "./SendCommandCommand";
|
|
|
120
123
|
export * from "./StartAssociationsOnceCommand";
|
|
121
124
|
export * from "./StartAutomationExecutionCommand";
|
|
122
125
|
export * from "./StartChangeRequestExecutionCommand";
|
|
126
|
+
export * from "./StartExecutionPreviewCommand";
|
|
123
127
|
export * from "./StartSessionCommand";
|
|
124
128
|
export * from "./StopAutomationExecutionCommand";
|
|
125
129
|
export * from "./TerminateSessionCommand";
|