@aws-sdk/client-imagebuilder 3.470.0 → 3.473.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 +56 -0
- package/dist-cjs/Imagebuilder.js +14 -0
- package/dist-cjs/commands/CreateWorkflowCommand.js +51 -0
- package/dist-cjs/commands/DeleteWorkflowCommand.js +51 -0
- package/dist-cjs/commands/GetWorkflowCommand.js +51 -0
- package/dist-cjs/commands/ListWaitingWorkflowStepsCommand.js +51 -0
- package/dist-cjs/commands/ListWorkflowBuildVersionsCommand.js +51 -0
- package/dist-cjs/commands/ListWorkflowsCommand.js +51 -0
- package/dist-cjs/commands/SendWorkflowStepActionCommand.js +51 -0
- package/dist-cjs/commands/index.js +7 -0
- package/dist-cjs/models/models_0.js +19 -6
- package/dist-cjs/pagination/ListWaitingWorkflowStepsPaginator.js +29 -0
- package/dist-cjs/pagination/ListWorkflowBuildVersionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListWorkflowsPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +3 -0
- package/dist-cjs/protocols/Aws_restJson1.js +565 -3
- package/dist-es/Imagebuilder.js +14 -0
- package/dist-es/commands/CreateWorkflowCommand.js +47 -0
- package/dist-es/commands/DeleteWorkflowCommand.js +47 -0
- package/dist-es/commands/GetWorkflowCommand.js +47 -0
- package/dist-es/commands/ListWaitingWorkflowStepsCommand.js +47 -0
- package/dist-es/commands/ListWorkflowBuildVersionsCommand.js +47 -0
- package/dist-es/commands/ListWorkflowsCommand.js +47 -0
- package/dist-es/commands/SendWorkflowStepActionCommand.js +47 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +18 -5
- package/dist-es/pagination/ListWaitingWorkflowStepsPaginator.js +25 -0
- package/dist-es/pagination/ListWorkflowBuildVersionsPaginator.js +25 -0
- package/dist-es/pagination/ListWorkflowsPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +548 -0
- package/dist-types/Imagebuilder.d.ts +49 -0
- package/dist-types/ImagebuilderClient.d.ts +9 -2
- package/dist-types/commands/CreateImageCommand.d.ts +16 -0
- package/dist-types/commands/CreateImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/CreateWorkflowCommand.d.ts +126 -0
- package/dist-types/commands/DeleteWorkflowCommand.d.ts +98 -0
- package/dist-types/commands/GetImageCommand.d.ts +16 -0
- package/dist-types/commands/GetImagePipelineCommand.d.ts +16 -0
- package/dist-types/commands/GetWorkflowCommand.d.ts +122 -0
- package/dist-types/commands/GetWorkflowExecutionCommand.d.ts +2 -1
- package/dist-types/commands/GetWorkflowStepExecutionCommand.d.ts +1 -1
- package/dist-types/commands/ListImagePipelinesCommand.d.ts +16 -0
- package/dist-types/commands/ListWaitingWorkflowStepsCommand.d.ts +110 -0
- package/dist-types/commands/ListWorkflowBuildVersionsCommand.d.ts +118 -0
- package/dist-types/commands/ListWorkflowExecutionsCommand.d.ts +2 -1
- package/dist-types/commands/ListWorkflowStepExecutionsCommand.d.ts +2 -2
- package/dist-types/commands/ListWorkflowsCommand.d.ts +119 -0
- package/dist-types/commands/SendWorkflowStepActionCommand.d.ts +115 -0
- package/dist-types/commands/UpdateImagePipelineCommand.d.ts +18 -1
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +786 -61
- package/dist-types/pagination/ListWaitingWorkflowStepsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowBuildVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListWorkflowsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +63 -0
- package/dist-types/ts3.4/Imagebuilder.d.ts +119 -0
- package/dist-types/ts3.4/ImagebuilderClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CreateWorkflowCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteWorkflowCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetWorkflowCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListWaitingWorkflowStepsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListWorkflowBuildVersionsCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/ListWorkflowsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/SendWorkflowStepActionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +170 -6
- package/dist-types/ts3.4/pagination/ListWaitingWorkflowStepsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowBuildVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListWorkflowsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +84 -0
- package/package.json +2 -2
|
@@ -43,6 +43,10 @@ import {
|
|
|
43
43
|
CreateLifecyclePolicyCommandInput,
|
|
44
44
|
CreateLifecyclePolicyCommandOutput,
|
|
45
45
|
} from "../commands/CreateLifecyclePolicyCommand";
|
|
46
|
+
import {
|
|
47
|
+
CreateWorkflowCommandInput,
|
|
48
|
+
CreateWorkflowCommandOutput,
|
|
49
|
+
} from "../commands/CreateWorkflowCommand";
|
|
46
50
|
import {
|
|
47
51
|
DeleteComponentCommandInput,
|
|
48
52
|
DeleteComponentCommandOutput,
|
|
@@ -75,6 +79,10 @@ import {
|
|
|
75
79
|
DeleteLifecyclePolicyCommandInput,
|
|
76
80
|
DeleteLifecyclePolicyCommandOutput,
|
|
77
81
|
} from "../commands/DeleteLifecyclePolicyCommand";
|
|
82
|
+
import {
|
|
83
|
+
DeleteWorkflowCommandInput,
|
|
84
|
+
DeleteWorkflowCommandOutput,
|
|
85
|
+
} from "../commands/DeleteWorkflowCommand";
|
|
78
86
|
import {
|
|
79
87
|
GetComponentCommandInput,
|
|
80
88
|
GetComponentCommandOutput,
|
|
@@ -127,6 +135,10 @@ import {
|
|
|
127
135
|
GetLifecyclePolicyCommandInput,
|
|
128
136
|
GetLifecyclePolicyCommandOutput,
|
|
129
137
|
} from "../commands/GetLifecyclePolicyCommand";
|
|
138
|
+
import {
|
|
139
|
+
GetWorkflowCommandInput,
|
|
140
|
+
GetWorkflowCommandOutput,
|
|
141
|
+
} from "../commands/GetWorkflowCommand";
|
|
130
142
|
import {
|
|
131
143
|
GetWorkflowExecutionCommandInput,
|
|
132
144
|
GetWorkflowExecutionCommandOutput,
|
|
@@ -211,10 +223,22 @@ import {
|
|
|
211
223
|
ListTagsForResourceCommandInput,
|
|
212
224
|
ListTagsForResourceCommandOutput,
|
|
213
225
|
} from "../commands/ListTagsForResourceCommand";
|
|
226
|
+
import {
|
|
227
|
+
ListWaitingWorkflowStepsCommandInput,
|
|
228
|
+
ListWaitingWorkflowStepsCommandOutput,
|
|
229
|
+
} from "../commands/ListWaitingWorkflowStepsCommand";
|
|
230
|
+
import {
|
|
231
|
+
ListWorkflowBuildVersionsCommandInput,
|
|
232
|
+
ListWorkflowBuildVersionsCommandOutput,
|
|
233
|
+
} from "../commands/ListWorkflowBuildVersionsCommand";
|
|
214
234
|
import {
|
|
215
235
|
ListWorkflowExecutionsCommandInput,
|
|
216
236
|
ListWorkflowExecutionsCommandOutput,
|
|
217
237
|
} from "../commands/ListWorkflowExecutionsCommand";
|
|
238
|
+
import {
|
|
239
|
+
ListWorkflowsCommandInput,
|
|
240
|
+
ListWorkflowsCommandOutput,
|
|
241
|
+
} from "../commands/ListWorkflowsCommand";
|
|
218
242
|
import {
|
|
219
243
|
ListWorkflowStepExecutionsCommandInput,
|
|
220
244
|
ListWorkflowStepExecutionsCommandOutput,
|
|
@@ -235,6 +259,10 @@ import {
|
|
|
235
259
|
PutImageRecipePolicyCommandInput,
|
|
236
260
|
PutImageRecipePolicyCommandOutput,
|
|
237
261
|
} from "../commands/PutImageRecipePolicyCommand";
|
|
262
|
+
import {
|
|
263
|
+
SendWorkflowStepActionCommandInput,
|
|
264
|
+
SendWorkflowStepActionCommandOutput,
|
|
265
|
+
} from "../commands/SendWorkflowStepActionCommand";
|
|
238
266
|
import {
|
|
239
267
|
StartImagePipelineExecutionCommandInput,
|
|
240
268
|
StartImagePipelineExecutionCommandOutput,
|
|
@@ -307,6 +335,10 @@ export declare const se_CreateLifecyclePolicyCommand: (
|
|
|
307
335
|
input: CreateLifecyclePolicyCommandInput,
|
|
308
336
|
context: __SerdeContext
|
|
309
337
|
) => Promise<__HttpRequest>;
|
|
338
|
+
export declare const se_CreateWorkflowCommand: (
|
|
339
|
+
input: CreateWorkflowCommandInput,
|
|
340
|
+
context: __SerdeContext
|
|
341
|
+
) => Promise<__HttpRequest>;
|
|
310
342
|
export declare const se_DeleteComponentCommand: (
|
|
311
343
|
input: DeleteComponentCommandInput,
|
|
312
344
|
context: __SerdeContext
|
|
@@ -339,6 +371,10 @@ export declare const se_DeleteLifecyclePolicyCommand: (
|
|
|
339
371
|
input: DeleteLifecyclePolicyCommandInput,
|
|
340
372
|
context: __SerdeContext
|
|
341
373
|
) => Promise<__HttpRequest>;
|
|
374
|
+
export declare const se_DeleteWorkflowCommand: (
|
|
375
|
+
input: DeleteWorkflowCommandInput,
|
|
376
|
+
context: __SerdeContext
|
|
377
|
+
) => Promise<__HttpRequest>;
|
|
342
378
|
export declare const se_GetComponentCommand: (
|
|
343
379
|
input: GetComponentCommandInput,
|
|
344
380
|
context: __SerdeContext
|
|
@@ -391,6 +427,10 @@ export declare const se_GetLifecyclePolicyCommand: (
|
|
|
391
427
|
input: GetLifecyclePolicyCommandInput,
|
|
392
428
|
context: __SerdeContext
|
|
393
429
|
) => Promise<__HttpRequest>;
|
|
430
|
+
export declare const se_GetWorkflowCommand: (
|
|
431
|
+
input: GetWorkflowCommandInput,
|
|
432
|
+
context: __SerdeContext
|
|
433
|
+
) => Promise<__HttpRequest>;
|
|
394
434
|
export declare const se_GetWorkflowExecutionCommand: (
|
|
395
435
|
input: GetWorkflowExecutionCommandInput,
|
|
396
436
|
context: __SerdeContext
|
|
@@ -475,10 +515,22 @@ export declare const se_ListTagsForResourceCommand: (
|
|
|
475
515
|
input: ListTagsForResourceCommandInput,
|
|
476
516
|
context: __SerdeContext
|
|
477
517
|
) => Promise<__HttpRequest>;
|
|
518
|
+
export declare const se_ListWaitingWorkflowStepsCommand: (
|
|
519
|
+
input: ListWaitingWorkflowStepsCommandInput,
|
|
520
|
+
context: __SerdeContext
|
|
521
|
+
) => Promise<__HttpRequest>;
|
|
522
|
+
export declare const se_ListWorkflowBuildVersionsCommand: (
|
|
523
|
+
input: ListWorkflowBuildVersionsCommandInput,
|
|
524
|
+
context: __SerdeContext
|
|
525
|
+
) => Promise<__HttpRequest>;
|
|
478
526
|
export declare const se_ListWorkflowExecutionsCommand: (
|
|
479
527
|
input: ListWorkflowExecutionsCommandInput,
|
|
480
528
|
context: __SerdeContext
|
|
481
529
|
) => Promise<__HttpRequest>;
|
|
530
|
+
export declare const se_ListWorkflowsCommand: (
|
|
531
|
+
input: ListWorkflowsCommandInput,
|
|
532
|
+
context: __SerdeContext
|
|
533
|
+
) => Promise<__HttpRequest>;
|
|
482
534
|
export declare const se_ListWorkflowStepExecutionsCommand: (
|
|
483
535
|
input: ListWorkflowStepExecutionsCommandInput,
|
|
484
536
|
context: __SerdeContext
|
|
@@ -499,6 +551,10 @@ export declare const se_PutImageRecipePolicyCommand: (
|
|
|
499
551
|
input: PutImageRecipePolicyCommandInput,
|
|
500
552
|
context: __SerdeContext
|
|
501
553
|
) => Promise<__HttpRequest>;
|
|
554
|
+
export declare const se_SendWorkflowStepActionCommand: (
|
|
555
|
+
input: SendWorkflowStepActionCommandInput,
|
|
556
|
+
context: __SerdeContext
|
|
557
|
+
) => Promise<__HttpRequest>;
|
|
502
558
|
export declare const se_StartImagePipelineExecutionCommand: (
|
|
503
559
|
input: StartImagePipelineExecutionCommandInput,
|
|
504
560
|
context: __SerdeContext
|
|
@@ -571,6 +627,10 @@ export declare const de_CreateLifecyclePolicyCommand: (
|
|
|
571
627
|
output: __HttpResponse,
|
|
572
628
|
context: __SerdeContext
|
|
573
629
|
) => Promise<CreateLifecyclePolicyCommandOutput>;
|
|
630
|
+
export declare const de_CreateWorkflowCommand: (
|
|
631
|
+
output: __HttpResponse,
|
|
632
|
+
context: __SerdeContext
|
|
633
|
+
) => Promise<CreateWorkflowCommandOutput>;
|
|
574
634
|
export declare const de_DeleteComponentCommand: (
|
|
575
635
|
output: __HttpResponse,
|
|
576
636
|
context: __SerdeContext
|
|
@@ -603,6 +663,10 @@ export declare const de_DeleteLifecyclePolicyCommand: (
|
|
|
603
663
|
output: __HttpResponse,
|
|
604
664
|
context: __SerdeContext
|
|
605
665
|
) => Promise<DeleteLifecyclePolicyCommandOutput>;
|
|
666
|
+
export declare const de_DeleteWorkflowCommand: (
|
|
667
|
+
output: __HttpResponse,
|
|
668
|
+
context: __SerdeContext
|
|
669
|
+
) => Promise<DeleteWorkflowCommandOutput>;
|
|
606
670
|
export declare const de_GetComponentCommand: (
|
|
607
671
|
output: __HttpResponse,
|
|
608
672
|
context: __SerdeContext
|
|
@@ -655,6 +719,10 @@ export declare const de_GetLifecyclePolicyCommand: (
|
|
|
655
719
|
output: __HttpResponse,
|
|
656
720
|
context: __SerdeContext
|
|
657
721
|
) => Promise<GetLifecyclePolicyCommandOutput>;
|
|
722
|
+
export declare const de_GetWorkflowCommand: (
|
|
723
|
+
output: __HttpResponse,
|
|
724
|
+
context: __SerdeContext
|
|
725
|
+
) => Promise<GetWorkflowCommandOutput>;
|
|
658
726
|
export declare const de_GetWorkflowExecutionCommand: (
|
|
659
727
|
output: __HttpResponse,
|
|
660
728
|
context: __SerdeContext
|
|
@@ -739,10 +807,22 @@ export declare const de_ListTagsForResourceCommand: (
|
|
|
739
807
|
output: __HttpResponse,
|
|
740
808
|
context: __SerdeContext
|
|
741
809
|
) => Promise<ListTagsForResourceCommandOutput>;
|
|
810
|
+
export declare const de_ListWaitingWorkflowStepsCommand: (
|
|
811
|
+
output: __HttpResponse,
|
|
812
|
+
context: __SerdeContext
|
|
813
|
+
) => Promise<ListWaitingWorkflowStepsCommandOutput>;
|
|
814
|
+
export declare const de_ListWorkflowBuildVersionsCommand: (
|
|
815
|
+
output: __HttpResponse,
|
|
816
|
+
context: __SerdeContext
|
|
817
|
+
) => Promise<ListWorkflowBuildVersionsCommandOutput>;
|
|
742
818
|
export declare const de_ListWorkflowExecutionsCommand: (
|
|
743
819
|
output: __HttpResponse,
|
|
744
820
|
context: __SerdeContext
|
|
745
821
|
) => Promise<ListWorkflowExecutionsCommandOutput>;
|
|
822
|
+
export declare const de_ListWorkflowsCommand: (
|
|
823
|
+
output: __HttpResponse,
|
|
824
|
+
context: __SerdeContext
|
|
825
|
+
) => Promise<ListWorkflowsCommandOutput>;
|
|
746
826
|
export declare const de_ListWorkflowStepExecutionsCommand: (
|
|
747
827
|
output: __HttpResponse,
|
|
748
828
|
context: __SerdeContext
|
|
@@ -763,6 +843,10 @@ export declare const de_PutImageRecipePolicyCommand: (
|
|
|
763
843
|
output: __HttpResponse,
|
|
764
844
|
context: __SerdeContext
|
|
765
845
|
) => Promise<PutImageRecipePolicyCommandOutput>;
|
|
846
|
+
export declare const de_SendWorkflowStepActionCommand: (
|
|
847
|
+
output: __HttpResponse,
|
|
848
|
+
context: __SerdeContext
|
|
849
|
+
) => Promise<SendWorkflowStepActionCommandOutput>;
|
|
766
850
|
export declare const de_StartImagePipelineExecutionCommand: (
|
|
767
851
|
output: __HttpResponse,
|
|
768
852
|
context: __SerdeContext
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-imagebuilder",
|
|
3
3
|
"description": "AWS SDK for JavaScript Imagebuilder Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.473.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.473.0",
|
|
24
24
|
"@aws-sdk/core": "3.468.0",
|
|
25
25
|
"@aws-sdk/credential-provider-node": "3.470.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|