@aws-cdk/cloud-assembly-schema 1.153.1 → 1.156.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/.jsii +35 -11
- package/.jsii.tabl.json +166 -154
- package/NOTICE +18 -1
- package/lib/integ-tests/schema.d.ts +10 -0
- package/lib/integ-tests/schema.js +1 -1
- package/lib/manifest.js +1 -1
- package/node_modules/lru-cache/LICENSE +1 -1
- package/node_modules/lru-cache/README.md +99 -632
- package/node_modules/lru-cache/index.js +251 -732
- package/node_modules/lru-cache/package.json +7 -17
- package/node_modules/semver/bin/semver.js +2 -1
- package/node_modules/semver/classes/semver.js +1 -1
- package/node_modules/semver/functions/inc.js +4 -1
- package/node_modules/semver/package.json +6 -5
- package/node_modules/yallist/LICENSE +15 -0
- package/node_modules/yallist/README.md +204 -0
- package/node_modules/yallist/iterator.js +8 -0
- package/node_modules/yallist/package.json +29 -0
- package/node_modules/yallist/yallist.js +426 -0
- package/package.json +5 -5
- package/schema/cloud-assembly.version.json +1 -1
- package/schema/integ.schema.json +9 -2
package/.jsii
CHANGED
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
},
|
|
10
10
|
"bundled": {
|
|
11
11
|
"jsonschema": "^1.4.0",
|
|
12
|
-
"semver": "^7.3.
|
|
12
|
+
"semver": "^7.3.7"
|
|
13
13
|
},
|
|
14
14
|
"description": "Cloud Assembly Schema",
|
|
15
15
|
"docs": {
|
|
16
16
|
"stability": "stable"
|
|
17
17
|
},
|
|
18
18
|
"homepage": "https://github.com/aws/aws-cdk",
|
|
19
|
-
"jsiiVersion": "1.
|
|
19
|
+
"jsiiVersion": "1.58.0 (build f8ba112)",
|
|
20
20
|
"keywords": [
|
|
21
21
|
"aws",
|
|
22
22
|
"cdk"
|
|
@@ -1310,7 +1310,7 @@
|
|
|
1310
1310
|
"custom": {
|
|
1311
1311
|
"exampleMetadata": "infused"
|
|
1312
1312
|
},
|
|
1313
|
-
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\
|
|
1313
|
+
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
|
|
1314
1314
|
"stability": "stable",
|
|
1315
1315
|
"summary": "Options for specific cdk commands that are run as part of the integration test workflow."
|
|
1316
1316
|
},
|
|
@@ -2133,7 +2133,7 @@
|
|
|
2133
2133
|
"custom": {
|
|
2134
2134
|
"exampleMetadata": "infused"
|
|
2135
2135
|
},
|
|
2136
|
-
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\
|
|
2136
|
+
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
|
|
2137
2137
|
"stability": "stable",
|
|
2138
2138
|
"summary": "Represents a cdk deploy command."
|
|
2139
2139
|
},
|
|
@@ -2176,7 +2176,7 @@
|
|
|
2176
2176
|
"custom": {
|
|
2177
2177
|
"exampleMetadata": "infused"
|
|
2178
2178
|
},
|
|
2179
|
-
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\
|
|
2179
|
+
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
|
|
2180
2180
|
"stability": "stable",
|
|
2181
2181
|
"summary": "Options to use with cdk deploy."
|
|
2182
2182
|
},
|
|
@@ -2452,7 +2452,7 @@
|
|
|
2452
2452
|
"custom": {
|
|
2453
2453
|
"exampleMetadata": "infused"
|
|
2454
2454
|
},
|
|
2455
|
-
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\
|
|
2455
|
+
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
|
|
2456
2456
|
"stability": "stable",
|
|
2457
2457
|
"summary": "Represents a cdk destroy command."
|
|
2458
2458
|
},
|
|
@@ -2495,7 +2495,7 @@
|
|
|
2495
2495
|
"custom": {
|
|
2496
2496
|
"exampleMetadata": "infused"
|
|
2497
2497
|
},
|
|
2498
|
-
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\
|
|
2498
|
+
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
|
|
2499
2499
|
"stability": "stable",
|
|
2500
2500
|
"summary": "Options to use with cdk destroy."
|
|
2501
2501
|
},
|
|
@@ -3507,7 +3507,7 @@
|
|
|
3507
3507
|
"docs": {
|
|
3508
3508
|
"stability": "stable",
|
|
3509
3509
|
"summary": "Definitions for the integration testing manifest.",
|
|
3510
|
-
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst integManifest: cloud_assembly_schema.IntegManifest = {\n testCases: {\n testCasesKey: {\n stacks: ['stacks'],\n\n // the properties below are optional\n allowDestroy: ['allowDestroy'],\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n },\n },\n version: 'version',\n\n // the properties below are optional\n enableLookups: false,\n};",
|
|
3510
|
+
"example": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';\nconst integManifest: cloud_assembly_schema.IntegManifest = {\n testCases: {\n testCasesKey: {\n stacks: ['stacks'],\n\n // the properties below are optional\n allowDestroy: ['allowDestroy'],\n cdkCommandOptions: {\n deploy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n changeSetName: 'changeSetName',\n ci: false,\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n execute: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n notificationArns: ['notificationArns'],\n output: 'output',\n outputsFile: 'outputsFile',\n parameters: {\n parametersKey: 'parameters',\n },\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n requireApproval: cloud_assembly_schema.RequireApproval.NEVER,\n reuseAssets: ['reuseAssets'],\n roleArn: 'roleArn',\n rollback: false,\n stacks: ['stacks'],\n staging: false,\n strict: false,\n toolkitStackName: 'toolkitStackName',\n trace: false,\n usePreviousParameters: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n destroy: {\n args: {\n all: false,\n app: 'app',\n assetMetadata: false,\n caBundlePath: 'caBundlePath',\n color: false,\n context: {\n contextKey: 'context',\n },\n debug: false,\n ec2Creds: false,\n exclusively: false,\n force: false,\n ignoreErrors: false,\n json: false,\n lookups: false,\n notices: false,\n output: 'output',\n pathMetadata: false,\n profile: 'profile',\n proxy: 'proxy',\n roleArn: 'roleArn',\n stacks: ['stacks'],\n staging: false,\n strict: false,\n trace: false,\n verbose: false,\n versionReporting: false,\n },\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n },\n },\n diffAssets: false,\n hooks: {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n },\n regions: ['regions'],\n stackUpdateWorkflow: false,\n },\n },\n version: 'version',\n\n // the properties below are optional\n enableLookups: false,\n synthContext: {\n synthContextKey: 'synthContext',\n },\n};",
|
|
3511
3511
|
"custom": {
|
|
3512
3512
|
"exampleMetadata": "fixture=_generated"
|
|
3513
3513
|
}
|
|
@@ -3529,7 +3529,7 @@
|
|
|
3529
3529
|
"immutable": true,
|
|
3530
3530
|
"locationInModule": {
|
|
3531
3531
|
"filename": "lib/integ-tests/schema.ts",
|
|
3532
|
-
"line":
|
|
3532
|
+
"line": 33
|
|
3533
3533
|
},
|
|
3534
3534
|
"name": "testCases",
|
|
3535
3535
|
"type": {
|
|
@@ -3575,6 +3575,30 @@
|
|
|
3575
3575
|
"type": {
|
|
3576
3576
|
"primitive": "boolean"
|
|
3577
3577
|
}
|
|
3578
|
+
},
|
|
3579
|
+
{
|
|
3580
|
+
"abstract": true,
|
|
3581
|
+
"docs": {
|
|
3582
|
+
"default": "- no additional context",
|
|
3583
|
+
"remarks": "Any context provided here will override\nany default context",
|
|
3584
|
+
"stability": "stable",
|
|
3585
|
+
"summary": "Additional context to use when performing a synth."
|
|
3586
|
+
},
|
|
3587
|
+
"immutable": true,
|
|
3588
|
+
"locationInModule": {
|
|
3589
|
+
"filename": "lib/integ-tests/schema.ts",
|
|
3590
|
+
"line": 28
|
|
3591
|
+
},
|
|
3592
|
+
"name": "synthContext",
|
|
3593
|
+
"optional": true,
|
|
3594
|
+
"type": {
|
|
3595
|
+
"collection": {
|
|
3596
|
+
"elementtype": {
|
|
3597
|
+
"primitive": "string"
|
|
3598
|
+
},
|
|
3599
|
+
"kind": "map"
|
|
3600
|
+
}
|
|
3601
|
+
}
|
|
3578
3602
|
}
|
|
3579
3603
|
],
|
|
3580
3604
|
"symbolId": "lib/integ-tests/schema:IntegManifest"
|
|
@@ -4680,7 +4704,7 @@
|
|
|
4680
4704
|
"custom": {
|
|
4681
4705
|
"exampleMetadata": "infused"
|
|
4682
4706
|
},
|
|
4683
|
-
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\
|
|
4707
|
+
"example": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nconst testCase = new IntegTestCase(stack, 'CustomizedDeploymentWorkflow', {\n stacks: [stackUnderTest],\n diffAssets: true,\n stackUpdateWorkflow: true,\n cdkCommandOptions: {\n deploy: {\n args: {\n requireApproval: RequireApproval.NEVER,\n json: true,\n },\n\t },\n destroy: {\n args: {\n force: true,\n },\n },\n },\n});\n\nnew IntegTest(app, 'integ-test', {\n testCases: [testCase],\n});",
|
|
4684
4708
|
"stability": "stable",
|
|
4685
4709
|
"summary": "In what scenarios should the CLI ask for approval."
|
|
4686
4710
|
},
|
|
@@ -5389,6 +5413,6 @@
|
|
|
5389
5413
|
"symbolId": "lib/cloud-assembly/context-queries:VpcContextQuery"
|
|
5390
5414
|
}
|
|
5391
5415
|
},
|
|
5392
|
-
"version": "1.
|
|
5416
|
+
"version": "1.156.0",
|
|
5393
5417
|
"fingerprint": "**********"
|
|
5394
5418
|
}
|