@cdklabs/cdk-ssm-documents 0.0.30 → 0.0.31
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/.jsii +69 -26
- package/API.md +198 -0
- package/changelog.md +3 -3
- package/lib/construct/synth-utils.js +1 -1
- package/lib/document/automation-document.js +1 -1
- package/lib/document/command-document.js +1 -1
- package/lib/document/document-builder.js +2 -2
- package/lib/document/ssm-document.js +1 -1
- package/lib/domain/aws-service.js +1 -1
- package/lib/domain/choice.js +1 -1
- package/lib/domain/data-type.js +1 -1
- package/lib/domain/enum/install-action.js +2 -2
- package/lib/domain/enum/install-uninstall-repair.js +2 -2
- package/lib/domain/enum/installation-type.js +2 -2
- package/lib/domain/enum/package-name.js +2 -2
- package/lib/domain/input.js +1 -1
- package/lib/domain/operation.js +1 -1
- package/lib/domain/platform.js +1 -1
- package/lib/domain/precondition.js +1 -1
- package/lib/incident-response/incident-response.js +3 -3
- package/lib/interface/approve-hook.js +2 -2
- package/lib/interface/auth-method.js +3 -3
- package/lib/interface/aws-invoker.js +2 -2
- package/lib/interface/downloadable-content.js +8 -8
- package/lib/interface/environment.js +3 -3
- package/lib/interface/execute-automation-hook/api-execute-automation-hook.js +1 -1
- package/lib/interface/observer.js +1 -1
- package/lib/interface/on-failure.js +6 -6
- package/lib/interface/pause-hook.js +2 -2
- package/lib/interface/run-command-hook/api-run-command-hook.js +1 -1
- package/lib/interface/run-document-location.js +2 -2
- package/lib/interface/sleep-hook.js +2 -2
- package/lib/interface/step-ref.js +1 -1
- package/lib/interface/variables/boolean-variable.js +2 -2
- package/lib/interface/variables/map-list-variable.js +2 -2
- package/lib/interface/variables/number-variable.js +2 -2
- package/lib/interface/variables/secure-string-variable.js +4 -4
- package/lib/interface/variables/string-list-variable.js +2 -2
- package/lib/interface/variables/string-map-variable.js +2 -2
- package/lib/interface/variables/string-variable.js +4 -4
- package/lib/interface/variables/variable.js +2 -2
- package/lib/interface/webhook.js +1 -1
- package/lib/parent-steps/automation/approve-step.js +1 -1
- package/lib/parent-steps/automation/assert-aws-resource-step.js +1 -1
- package/lib/parent-steps/automation/aws-api-step.d.ts +1 -1
- package/lib/parent-steps/automation/aws-api-step.js +3 -3
- package/lib/parent-steps/automation/branch-step.js +1 -1
- package/lib/parent-steps/automation/change-instance-state-step.js +3 -3
- package/lib/parent-steps/automation/copy-image-step.js +1 -1
- package/lib/parent-steps/automation/create-image-step.js +1 -1
- package/lib/parent-steps/automation/create-stack-step.js +3 -3
- package/lib/parent-steps/automation/create-tags-step.js +3 -3
- package/lib/parent-steps/automation/delete-image-step.js +1 -1
- package/lib/parent-steps/automation/delete-stack-step.js +1 -1
- package/lib/parent-steps/automation/execute-automation-step.js +1 -1
- package/lib/parent-steps/automation/execute-script-step.d.ts +1 -1
- package/lib/parent-steps/automation/execute-script-step.js +7 -7
- package/lib/parent-steps/automation/execute-state-machine-step.js +1 -1
- package/lib/parent-steps/automation/invoke-lambda-function-step.js +1 -1
- package/lib/parent-steps/automation/invoke-webhook-step.js +1 -1
- package/lib/parent-steps/automation/pause-step.js +1 -1
- package/lib/parent-steps/automation/run-command-step.js +3 -3
- package/lib/parent-steps/automation/run-instance-step.js +1 -1
- package/lib/parent-steps/automation/sleep-step.js +1 -1
- package/lib/parent-steps/automation/wait-for-resource-step.js +1 -1
- package/lib/parent-steps/automation-step.d.ts +6 -0
- package/lib/parent-steps/automation-step.js +13 -4
- package/lib/parent-steps/command/applications-step.js +1 -1
- package/lib/parent-steps/command/configure-docker-step.js +1 -1
- package/lib/parent-steps/command/configure-package-step.js +1 -1
- package/lib/parent-steps/command/domain-join-step.js +1 -1
- package/lib/parent-steps/command/download-content-step.js +1 -1
- package/lib/parent-steps/command/ps-module-step.js +1 -1
- package/lib/parent-steps/command/run-docker-action-step.js +1 -1
- package/lib/parent-steps/command/run-document-step.js +1 -1
- package/lib/parent-steps/command/run-powershell-script-step.js +1 -1
- package/lib/parent-steps/command/run-shell-script-step.js +1 -1
- package/lib/parent-steps/command/software-inventory-step.js +1 -1
- package/lib/parent-steps/command/update-agent-step.js +1 -1
- package/lib/parent-steps/command/update-ssm-agent-step.js +1 -1
- package/lib/parent-steps/command-step.js +1 -1
- package/lib/parent-steps/step.js +1 -1
- package/lib/patterns/automation/composite-step.js +2 -2
- package/lib/patterns/automation/reboot-instance-and-wait.js +1 -1
- package/lib/patterns/automation/string-step.js +1 -1
- package/lib/patterns/document/string-document.js +1 -1
- package/lib/patterns/document/timed-document.js +1 -1
- package/lib/samples/hello-world.js +1 -1
- package/lib/simulation/automation/approve-simulation.js +1 -1
- package/lib/simulation/automation/assert-aws-resource-simulation.js +1 -1
- package/lib/simulation/automation/automation-simulation-base.js +1 -1
- package/lib/simulation/automation/aws-api-simulation.js +1 -1
- package/lib/simulation/automation/branch-simulation.js +1 -1
- package/lib/simulation/automation/change-instance-state-simulation.js +1 -1
- package/lib/simulation/automation/copy-image-simulation.js +1 -1
- package/lib/simulation/automation/create-image-simulation.js +1 -1
- package/lib/simulation/automation/create-stack-simulation.js +1 -1
- package/lib/simulation/automation/create-tags-simulation.js +1 -1
- package/lib/simulation/automation/delete-image-simulation.js +1 -1
- package/lib/simulation/automation/delete-stack-simulation.js +1 -1
- package/lib/simulation/automation/execute-script-simulation.js +1 -1
- package/lib/simulation/automation/execute-state-machine-simulation.js +1 -1
- package/lib/simulation/automation/invoke-lambda-function-simulation.js +1 -1
- package/lib/simulation/automation/invoke-webhook-simulation.js +1 -1
- package/lib/simulation/automation/pause-simulation.js +1 -1
- package/lib/simulation/automation/run-command-simulation.js +1 -1
- package/lib/simulation/automation/run-instance-simulation.js +1 -1
- package/lib/simulation/automation/sleep-simulation.js +1 -1
- package/lib/simulation/automation/wait-for-resource-simulation.js +1 -1
- package/lib/simulation/automation-step-simulation.js +1 -1
- package/lib/simulation/command/command-simulation-base.js +1 -1
- package/lib/simulation/command/ps-module-simulation.js +1 -1
- package/lib/simulation/command/run-powershell-script-simulation.js +1 -1
- package/lib/simulation/command/run-shell-script-simulation.js +1 -1
- package/lib/simulation/command-step-simulation.js +1 -1
- package/lib/simulation/document/automation-simulation.js +1 -1
- package/lib/simulation/document/command-simulation.js +1 -1
- package/lib/simulation/simulation.js +1 -1
- package/package.json +1 -1
- package/releasetag.txt +1 -1
- package/version.txt +1 -1
package/.jsii
CHANGED
|
@@ -4043,7 +4043,7 @@
|
|
|
4043
4043
|
"line": 61
|
|
4044
4044
|
},
|
|
4045
4045
|
"name": "listOutputs",
|
|
4046
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
4046
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
4047
4047
|
"returns": {
|
|
4048
4048
|
"type": {
|
|
4049
4049
|
"collection": {
|
|
@@ -4508,7 +4508,7 @@
|
|
|
4508
4508
|
"line": 44
|
|
4509
4509
|
},
|
|
4510
4510
|
"name": "listOutputs",
|
|
4511
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
4511
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
4512
4512
|
"returns": {
|
|
4513
4513
|
"type": {
|
|
4514
4514
|
"collection": {
|
|
@@ -5452,6 +5452,49 @@
|
|
|
5452
5452
|
}
|
|
5453
5453
|
]
|
|
5454
5454
|
},
|
|
5455
|
+
{
|
|
5456
|
+
"docs": {
|
|
5457
|
+
"stability": "stable",
|
|
5458
|
+
"summary": "Lists the outputs that will be returned from this step."
|
|
5459
|
+
},
|
|
5460
|
+
"locationInModule": {
|
|
5461
|
+
"filename": "src/parent-steps/automation-step.ts",
|
|
5462
|
+
"line": 151
|
|
5463
|
+
},
|
|
5464
|
+
"name": "listOutputs",
|
|
5465
|
+
"overrides": "@cdklabs/cdk-ssm-documents.Step",
|
|
5466
|
+
"returns": {
|
|
5467
|
+
"type": {
|
|
5468
|
+
"collection": {
|
|
5469
|
+
"elementtype": {
|
|
5470
|
+
"fqn": "@cdklabs/cdk-ssm-documents.Output"
|
|
5471
|
+
},
|
|
5472
|
+
"kind": "array"
|
|
5473
|
+
}
|
|
5474
|
+
}
|
|
5475
|
+
}
|
|
5476
|
+
},
|
|
5477
|
+
{
|
|
5478
|
+
"docs": {
|
|
5479
|
+
"stability": "stable",
|
|
5480
|
+
"summary": "Lists the outputs defined by the user for this step."
|
|
5481
|
+
},
|
|
5482
|
+
"locationInModule": {
|
|
5483
|
+
"filename": "src/parent-steps/automation-step.ts",
|
|
5484
|
+
"line": 147
|
|
5485
|
+
},
|
|
5486
|
+
"name": "listUserOutputs",
|
|
5487
|
+
"returns": {
|
|
5488
|
+
"type": {
|
|
5489
|
+
"collection": {
|
|
5490
|
+
"elementtype": {
|
|
5491
|
+
"fqn": "@cdklabs/cdk-ssm-documents.Output"
|
|
5492
|
+
},
|
|
5493
|
+
"kind": "array"
|
|
5494
|
+
}
|
|
5495
|
+
}
|
|
5496
|
+
}
|
|
5497
|
+
},
|
|
5455
5498
|
{
|
|
5456
5499
|
"docs": {
|
|
5457
5500
|
"stability": "stable"
|
|
@@ -6122,14 +6165,14 @@
|
|
|
6122
6165
|
"docs": {
|
|
6123
6166
|
"returns": "Outputs as specified in params",
|
|
6124
6167
|
"stability": "stable",
|
|
6125
|
-
"summary": "Lists the outputs
|
|
6168
|
+
"summary": "Lists the outputs defined by the user for this step."
|
|
6126
6169
|
},
|
|
6127
6170
|
"locationInModule": {
|
|
6128
6171
|
"filename": "src/parent-steps/automation/aws-api-step.ts",
|
|
6129
6172
|
"line": 74
|
|
6130
6173
|
},
|
|
6131
|
-
"name": "
|
|
6132
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
6174
|
+
"name": "listUserOutputs",
|
|
6175
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
6133
6176
|
"returns": {
|
|
6134
6177
|
"type": {
|
|
6135
6178
|
"collection": {
|
|
@@ -11713,7 +11756,7 @@
|
|
|
11713
11756
|
"line": 40
|
|
11714
11757
|
},
|
|
11715
11758
|
"name": "listOutputs",
|
|
11716
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
11759
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
11717
11760
|
"returns": {
|
|
11718
11761
|
"type": {
|
|
11719
11762
|
"collection": {
|
|
@@ -12066,7 +12109,7 @@
|
|
|
12066
12109
|
"line": 91
|
|
12067
12110
|
},
|
|
12068
12111
|
"name": "listOutputs",
|
|
12069
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
12112
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
12070
12113
|
"returns": {
|
|
12071
12114
|
"type": {
|
|
12072
12115
|
"collection": {
|
|
@@ -14318,7 +14361,7 @@
|
|
|
14318
14361
|
"line": 76
|
|
14319
14362
|
},
|
|
14320
14363
|
"name": "listOutputs",
|
|
14321
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
14364
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
14322
14365
|
"returns": {
|
|
14323
14366
|
"type": {
|
|
14324
14367
|
"collection": {
|
|
@@ -14778,7 +14821,7 @@
|
|
|
14778
14821
|
"line": 64
|
|
14779
14822
|
},
|
|
14780
14823
|
"name": "listOutputs",
|
|
14781
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
14824
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
14782
14825
|
"returns": {
|
|
14783
14826
|
"type": {
|
|
14784
14827
|
"collection": {
|
|
@@ -15248,7 +15291,7 @@
|
|
|
15248
15291
|
"line": 194
|
|
15249
15292
|
},
|
|
15250
15293
|
"name": "listOutputs",
|
|
15251
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
15294
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
15252
15295
|
"returns": {
|
|
15253
15296
|
"type": {
|
|
15254
15297
|
"collection": {
|
|
@@ -15965,7 +16008,7 @@
|
|
|
15965
16008
|
"line": 77
|
|
15966
16009
|
},
|
|
15967
16010
|
"name": "listOutputs",
|
|
15968
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
16011
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
15969
16012
|
"returns": {
|
|
15970
16013
|
"type": {
|
|
15971
16014
|
"collection": {
|
|
@@ -16525,7 +16568,7 @@
|
|
|
16525
16568
|
"line": 33
|
|
16526
16569
|
},
|
|
16527
16570
|
"name": "listOutputs",
|
|
16528
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
16571
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
16529
16572
|
"returns": {
|
|
16530
16573
|
"type": {
|
|
16531
16574
|
"collection": {
|
|
@@ -16799,7 +16842,7 @@
|
|
|
16799
16842
|
"line": 50
|
|
16800
16843
|
},
|
|
16801
16844
|
"name": "listOutputs",
|
|
16802
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
16845
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
16803
16846
|
"returns": {
|
|
16804
16847
|
"type": {
|
|
16805
16848
|
"collection": {
|
|
@@ -18567,7 +18610,7 @@
|
|
|
18567
18610
|
"line": 112
|
|
18568
18611
|
},
|
|
18569
18612
|
"name": "listOutputs",
|
|
18570
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
18613
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
18571
18614
|
"returns": {
|
|
18572
18615
|
"type": {
|
|
18573
18616
|
"collection": {
|
|
@@ -19119,14 +19162,14 @@
|
|
|
19119
19162
|
{
|
|
19120
19163
|
"docs": {
|
|
19121
19164
|
"stability": "stable",
|
|
19122
|
-
"summary": "Lists the outputs
|
|
19165
|
+
"summary": "Lists the outputs defined by the user for this step."
|
|
19123
19166
|
},
|
|
19124
19167
|
"locationInModule": {
|
|
19125
19168
|
"filename": "src/parent-steps/automation/execute-script-step.ts",
|
|
19126
19169
|
"line": 255
|
|
19127
19170
|
},
|
|
19128
|
-
"name": "
|
|
19129
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
19171
|
+
"name": "listUserOutputs",
|
|
19172
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
19130
19173
|
"returns": {
|
|
19131
19174
|
"type": {
|
|
19132
19175
|
"collection": {
|
|
@@ -19542,7 +19585,7 @@
|
|
|
19542
19585
|
"line": 48
|
|
19543
19586
|
},
|
|
19544
19587
|
"name": "listOutputs",
|
|
19545
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
19588
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
19546
19589
|
"returns": {
|
|
19547
19590
|
"type": {
|
|
19548
19591
|
"collection": {
|
|
@@ -25575,7 +25618,7 @@
|
|
|
25575
25618
|
"line": 70
|
|
25576
25619
|
},
|
|
25577
25620
|
"name": "listOutputs",
|
|
25578
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
25621
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
25579
25622
|
"returns": {
|
|
25580
25623
|
"type": {
|
|
25581
25624
|
"collection": {
|
|
@@ -26162,7 +26205,7 @@
|
|
|
26162
26205
|
"line": 68
|
|
26163
26206
|
},
|
|
26164
26207
|
"name": "listOutputs",
|
|
26165
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
26208
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
26166
26209
|
"returns": {
|
|
26167
26210
|
"type": {
|
|
26168
26211
|
"collection": {
|
|
@@ -28448,7 +28491,7 @@
|
|
|
28448
28491
|
"line": 21
|
|
28449
28492
|
},
|
|
28450
28493
|
"name": "listOutputs",
|
|
28451
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
28494
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
28452
28495
|
"returns": {
|
|
28453
28496
|
"type": {
|
|
28454
28497
|
"collection": {
|
|
@@ -30292,7 +30335,7 @@
|
|
|
30292
30335
|
"line": 150
|
|
30293
30336
|
},
|
|
30294
30337
|
"name": "listOutputs",
|
|
30295
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
30338
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
30296
30339
|
"returns": {
|
|
30297
30340
|
"type": {
|
|
30298
30341
|
"collection": {
|
|
@@ -31670,7 +31713,7 @@
|
|
|
31670
31713
|
"line": 197
|
|
31671
31714
|
},
|
|
31672
31715
|
"name": "listOutputs",
|
|
31673
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
31716
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
31674
31717
|
"returns": {
|
|
31675
31718
|
"type": {
|
|
31676
31719
|
"collection": {
|
|
@@ -34625,7 +34668,7 @@
|
|
|
34625
34668
|
"line": 38
|
|
34626
34669
|
},
|
|
34627
34670
|
"name": "listOutputs",
|
|
34628
|
-
"overrides": "@cdklabs/cdk-ssm-documents.
|
|
34671
|
+
"overrides": "@cdklabs/cdk-ssm-documents.AutomationStep",
|
|
34629
34672
|
"returns": {
|
|
34630
34673
|
"type": {
|
|
34631
34674
|
"collection": {
|
|
@@ -38994,6 +39037,6 @@
|
|
|
38994
39037
|
"symbolId": "src/interface/webhook:WebhookImpl"
|
|
38995
39038
|
}
|
|
38996
39039
|
},
|
|
38997
|
-
"version": "0.0.
|
|
38998
|
-
"fingerprint": "
|
|
39040
|
+
"version": "0.0.31",
|
|
39041
|
+
"fingerprint": "UQhGxxIplcFjilCulRaBbfecabFTuPUX+mARR9Fddpo="
|
|
38999
39042
|
}
|