@aws-cdk/cloud-assembly-schema 1.152.0 → 1.153.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 +84 -55
- package/.jsii.tabl.json +289 -129
- package/.warnings.jsii.js +253 -147
- package/NOTICE +0 -17
- package/lib/integ-tests/test-case.d.ts +47 -42
- package/lib/integ-tests/test-case.js +1 -1
- package/lib/manifest.js +57 -8
- package/node_modules/lru-cache/LICENSE +1 -1
- package/node_modules/lru-cache/README.md +632 -99
- package/node_modules/lru-cache/index.js +732 -251
- package/node_modules/lru-cache/package.json +17 -7
- package/node_modules/semver/README.md +3 -1
- package/node_modules/semver/bin/semver.js +17 -8
- package/node_modules/semver/classes/comparator.js +3 -2
- package/node_modules/semver/classes/index.js +1 -1
- package/node_modules/semver/classes/range.js +31 -22
- package/node_modules/semver/functions/cmp.js +8 -4
- package/node_modules/semver/functions/coerce.js +3 -2
- package/node_modules/semver/functions/parse.js +1 -1
- package/node_modules/semver/internal/constants.js +2 -2
- package/node_modules/semver/internal/identifiers.js +1 -1
- package/node_modules/semver/internal/parse-options.js +3 -3
- package/node_modules/semver/internal/re.js +3 -3
- package/node_modules/semver/package.json +46 -13
- package/node_modules/semver/ranges/min-version.js +2 -1
- package/node_modules/semver/ranges/outside.js +1 -1
- package/node_modules/semver/ranges/simplify.js +15 -12
- package/node_modules/semver/ranges/subset.js +53 -31
- package/package.json +4 -4
- package/schema/cloud-assembly.version.json +1 -1
- package/schema/integ.schema.json +1 -1
- package/node_modules/semver/CHANGELOG.md +0 -111
- package/node_modules/yallist/LICENSE +0 -15
- package/node_modules/yallist/README.md +0 -204
- package/node_modules/yallist/iterator.js +0 -8
- package/node_modules/yallist/package.json +0 -29
- package/node_modules/yallist/yallist.js +0 -426
package/.jsii.tabl.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "2",
|
|
3
|
-
"toolVersion": "1.
|
|
3
|
+
"toolVersion": "1.57.0",
|
|
4
4
|
"snippets": {
|
|
5
5
|
"cecc4b6be0cf4accc3e46f1670579b731439bd3e3b6efffdbd431eb0130d724c": {
|
|
6
6
|
"translations": {
|
|
@@ -577,26 +577,26 @@
|
|
|
577
577
|
},
|
|
578
578
|
"fqnsFingerprint": "865a836cb27f42e709ad29a1f033399133017c1b7613ee028434d7ef7255a9ee"
|
|
579
579
|
},
|
|
580
|
-
"
|
|
580
|
+
"e1878445a7c32ec61e4a4c4a76d3838f81b8dd771500ada79258664195466038": {
|
|
581
581
|
"translations": {
|
|
582
582
|
"python": {
|
|
583
|
-
"source": "
|
|
583
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\nIntegTestCase(stack, \"CustomizedDeploymentWorkflow\",\n stacks=[stack_under_test],\n diff_assets=True,\n stack_update_workflow=True,\n cdk_command_options=CdkCommands(\n deploy=DeployCommand(\n args=DeployOptions(\n require_approval=RequireApproval.NEVER,\n json=True\n )\n ),\n destroy=DestroyCommand(\n args=DestroyOptions(\n force=True\n )\n )\n )\n)",
|
|
584
584
|
"version": "2"
|
|
585
585
|
},
|
|
586
586
|
"csharp": {
|
|
587
|
-
"source": "
|
|
587
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nnew IntegTestCase(stack, \"CustomizedDeploymentWorkflow\", new IntegTestCaseProps {\n Stacks = new [] { stackUnderTest },\n DiffAssets = true,\n StackUpdateWorkflow = true,\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n RequireApproval = RequireApproval.NEVER,\n Json = true\n }\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n Force = true\n }\n }\n }\n});",
|
|
588
588
|
"version": "1"
|
|
589
589
|
},
|
|
590
590
|
"java": {
|
|
591
|
-
"source": "
|
|
591
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase.Builder.create(stack, \"CustomizedDeploymentWorkflow\")\n .stacks(List.of(stackUnderTest))\n .diffAssets(true)\n .stackUpdateWorkflow(true)\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .requireApproval(RequireApproval.NEVER)\n .json(true)\n .build())\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .force(true)\n .build())\n .build())\n .build())\n .build();",
|
|
592
592
|
"version": "1"
|
|
593
593
|
},
|
|
594
594
|
"go": {
|
|
595
|
-
"source": "
|
|
595
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\nNewIntegTestCase(stack, jsii.String(\"CustomizedDeploymentWorkflow\"), &integTestCaseProps{\n\tstacks: []stack{\n\t\tstackUnderTest,\n\t},\n\tdiffAssets: jsii.Boolean(true),\n\tstackUpdateWorkflow: jsii.Boolean(true),\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\trequireApproval: requireApproval_NEVER,\n\t\t\t\tjson: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tforce: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t},\n})",
|
|
596
596
|
"version": "1"
|
|
597
597
|
},
|
|
598
598
|
"$": {
|
|
599
|
-
"source": "
|
|
599
|
+
"source": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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});",
|
|
600
600
|
"version": "0"
|
|
601
601
|
}
|
|
602
602
|
},
|
|
@@ -617,28 +617,30 @@
|
|
|
617
617
|
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
618
618
|
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
619
619
|
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
620
|
-
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
|
|
620
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
621
|
+
"@aws-cdk/core.App",
|
|
622
|
+
"@aws-cdk/core.Construct",
|
|
623
|
+
"@aws-cdk/core.Stack",
|
|
624
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
625
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
626
|
+
"constructs.Construct"
|
|
621
627
|
],
|
|
622
|
-
"fullSource": "
|
|
628
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase } from '@aws-cdk/integ-tests';\nimport {\n App,\n Construct,\n Stack,\n StackProps,\n} from '@aws-cdk/core';\nimport * as path from 'path';\nimport { RequireApproval } from '@aws-cdk/cloud-assembly-schema';\n\n// Code snippet begins after !show marker below\n/// !show\nconst app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
623
629
|
"syntaxKindCounter": {
|
|
624
|
-
"10":
|
|
625
|
-
"75":
|
|
626
|
-
"
|
|
627
|
-
"
|
|
628
|
-
"
|
|
629
|
-
"
|
|
630
|
-
"
|
|
631
|
-
"
|
|
632
|
-
"
|
|
633
|
-
"242":
|
|
634
|
-
"243":
|
|
635
|
-
"
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
"281": 74,
|
|
639
|
-
"290": 1
|
|
640
|
-
},
|
|
641
|
-
"fqnsFingerprint": "c5d3ceb788115e623cc23a29a6034f93b930ada545f0fcf53ea9146dbb03586b"
|
|
630
|
+
"10": 3,
|
|
631
|
+
"75": 24,
|
|
632
|
+
"106": 4,
|
|
633
|
+
"192": 1,
|
|
634
|
+
"193": 6,
|
|
635
|
+
"194": 1,
|
|
636
|
+
"197": 4,
|
|
637
|
+
"225": 3,
|
|
638
|
+
"226": 1,
|
|
639
|
+
"242": 3,
|
|
640
|
+
"243": 3,
|
|
641
|
+
"281": 11
|
|
642
|
+
},
|
|
643
|
+
"fqnsFingerprint": "f7371420104093fc3724943346d98e1a48bcffb7a90c7c56b1ae19a9d7c09417"
|
|
642
644
|
},
|
|
643
645
|
"8f7e2b076b4d344fbaa2cffd1d4b6826a6b768f06ff4f268b7962397ae513f96": {
|
|
644
646
|
"translations": {
|
|
@@ -750,26 +752,26 @@
|
|
|
750
752
|
},
|
|
751
753
|
"fqnsFingerprint": "f16cd9f149a62c877e1157dcab005757f63025a11ef35bfa96f204678c213aff"
|
|
752
754
|
},
|
|
753
|
-
"
|
|
755
|
+
"227b7107a3248e30506ca01e993d9ea92a8841385d1fd440686190308c193ac4": {
|
|
754
756
|
"translations": {
|
|
755
757
|
"python": {
|
|
756
|
-
"source": "
|
|
758
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\nIntegTestCase(stack, \"CustomizedDeploymentWorkflow\",\n stacks=[stack_under_test],\n diff_assets=True,\n stack_update_workflow=True,\n cdk_command_options=CdkCommands(\n deploy=DeployCommand(\n args=DeployOptions(\n require_approval=RequireApproval.NEVER,\n json=True\n )\n ),\n destroy=DestroyCommand(\n args=DestroyOptions(\n force=True\n )\n )\n )\n)",
|
|
757
759
|
"version": "2"
|
|
758
760
|
},
|
|
759
761
|
"csharp": {
|
|
760
|
-
"source": "
|
|
762
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nnew IntegTestCase(stack, \"CustomizedDeploymentWorkflow\", new IntegTestCaseProps {\n Stacks = new [] { stackUnderTest },\n DiffAssets = true,\n StackUpdateWorkflow = true,\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n RequireApproval = RequireApproval.NEVER,\n Json = true\n }\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n Force = true\n }\n }\n }\n});",
|
|
761
763
|
"version": "1"
|
|
762
764
|
},
|
|
763
765
|
"java": {
|
|
764
|
-
"source": "
|
|
766
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase.Builder.create(stack, \"CustomizedDeploymentWorkflow\")\n .stacks(List.of(stackUnderTest))\n .diffAssets(true)\n .stackUpdateWorkflow(true)\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .requireApproval(RequireApproval.NEVER)\n .json(true)\n .build())\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .force(true)\n .build())\n .build())\n .build())\n .build();",
|
|
765
767
|
"version": "1"
|
|
766
768
|
},
|
|
767
769
|
"go": {
|
|
768
|
-
"source": "
|
|
770
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\nNewIntegTestCase(stack, jsii.String(\"CustomizedDeploymentWorkflow\"), &integTestCaseProps{\n\tstacks: []stack{\n\t\tstackUnderTest,\n\t},\n\tdiffAssets: jsii.Boolean(true),\n\tstackUpdateWorkflow: jsii.Boolean(true),\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\trequireApproval: requireApproval_NEVER,\n\t\t\t\tjson: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tforce: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t},\n})",
|
|
769
771
|
"version": "1"
|
|
770
772
|
},
|
|
771
773
|
"$": {
|
|
772
|
-
"source": "
|
|
774
|
+
"source": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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});",
|
|
773
775
|
"version": "0"
|
|
774
776
|
}
|
|
775
777
|
},
|
|
@@ -784,52 +786,57 @@
|
|
|
784
786
|
},
|
|
785
787
|
"didCompile": true,
|
|
786
788
|
"fqnsReferenced": [
|
|
789
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
787
790
|
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
788
791
|
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
792
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
793
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
789
794
|
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
790
|
-
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
|
|
795
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
796
|
+
"@aws-cdk/core.App",
|
|
797
|
+
"@aws-cdk/core.Construct",
|
|
798
|
+
"@aws-cdk/core.Stack",
|
|
799
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
800
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
801
|
+
"constructs.Construct"
|
|
791
802
|
],
|
|
792
|
-
"fullSource": "
|
|
803
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase } from '@aws-cdk/integ-tests';\nimport {\n App,\n Construct,\n Stack,\n StackProps,\n} from '@aws-cdk/core';\nimport * as path from 'path';\nimport { RequireApproval } from '@aws-cdk/cloud-assembly-schema';\n\n// Code snippet begins after !show marker below\n/// !show\nconst app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
793
804
|
"syntaxKindCounter": {
|
|
794
|
-
"10":
|
|
795
|
-
"75":
|
|
796
|
-
"
|
|
797
|
-
"
|
|
798
|
-
"
|
|
799
|
-
"
|
|
800
|
-
"
|
|
801
|
-
"
|
|
802
|
-
"
|
|
803
|
-
"242":
|
|
804
|
-
"243":
|
|
805
|
-
"
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
"281": 42,
|
|
809
|
-
"290": 1
|
|
810
|
-
},
|
|
811
|
-
"fqnsFingerprint": "4ff0e777a36242b4ec55302cee22446cb2357f7a75b1cf70664eb3fe91952cc7"
|
|
805
|
+
"10": 3,
|
|
806
|
+
"75": 24,
|
|
807
|
+
"106": 4,
|
|
808
|
+
"192": 1,
|
|
809
|
+
"193": 6,
|
|
810
|
+
"194": 1,
|
|
811
|
+
"197": 4,
|
|
812
|
+
"225": 3,
|
|
813
|
+
"226": 1,
|
|
814
|
+
"242": 3,
|
|
815
|
+
"243": 3,
|
|
816
|
+
"281": 11
|
|
817
|
+
},
|
|
818
|
+
"fqnsFingerprint": "f7371420104093fc3724943346d98e1a48bcffb7a90c7c56b1ae19a9d7c09417"
|
|
812
819
|
},
|
|
813
|
-
"
|
|
820
|
+
"70052450dc2f54d1618ec6e4e88e63643eee73fcf615cbecd75d42326c4a9516": {
|
|
814
821
|
"translations": {
|
|
815
822
|
"python": {
|
|
816
|
-
"source": "
|
|
823
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\nIntegTestCase(stack, \"CustomizedDeploymentWorkflow\",\n stacks=[stack_under_test],\n diff_assets=True,\n stack_update_workflow=True,\n cdk_command_options=CdkCommands(\n deploy=DeployCommand(\n args=DeployOptions(\n require_approval=RequireApproval.NEVER,\n json=True\n )\n ),\n destroy=DestroyCommand(\n args=DestroyOptions(\n force=True\n )\n )\n )\n)",
|
|
817
824
|
"version": "2"
|
|
818
825
|
},
|
|
819
826
|
"csharp": {
|
|
820
|
-
"source": "
|
|
827
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nnew IntegTestCase(stack, \"CustomizedDeploymentWorkflow\", new IntegTestCaseProps {\n Stacks = new [] { stackUnderTest },\n DiffAssets = true,\n StackUpdateWorkflow = true,\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n RequireApproval = RequireApproval.NEVER,\n Json = true\n }\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n Force = true\n }\n }\n }\n});",
|
|
821
828
|
"version": "1"
|
|
822
829
|
},
|
|
823
830
|
"java": {
|
|
824
|
-
"source": "
|
|
831
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase.Builder.create(stack, \"CustomizedDeploymentWorkflow\")\n .stacks(List.of(stackUnderTest))\n .diffAssets(true)\n .stackUpdateWorkflow(true)\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .requireApproval(RequireApproval.NEVER)\n .json(true)\n .build())\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .force(true)\n .build())\n .build())\n .build())\n .build();",
|
|
825
832
|
"version": "1"
|
|
826
833
|
},
|
|
827
834
|
"go": {
|
|
828
|
-
"source": "
|
|
835
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\nNewIntegTestCase(stack, jsii.String(\"CustomizedDeploymentWorkflow\"), &integTestCaseProps{\n\tstacks: []stack{\n\t\tstackUnderTest,\n\t},\n\tdiffAssets: jsii.Boolean(true),\n\tstackUpdateWorkflow: jsii.Boolean(true),\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\trequireApproval: requireApproval_NEVER,\n\t\t\t\tjson: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tforce: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t},\n})",
|
|
829
836
|
"version": "1"
|
|
830
837
|
},
|
|
831
838
|
"$": {
|
|
832
|
-
"source": "
|
|
839
|
+
"source": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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});",
|
|
833
840
|
"version": "0"
|
|
834
841
|
}
|
|
835
842
|
},
|
|
@@ -844,51 +851,57 @@
|
|
|
844
851
|
},
|
|
845
852
|
"didCompile": true,
|
|
846
853
|
"fqnsReferenced": [
|
|
854
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
855
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
847
856
|
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
857
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
858
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
848
859
|
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
849
|
-
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
|
|
860
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
861
|
+
"@aws-cdk/core.App",
|
|
862
|
+
"@aws-cdk/core.Construct",
|
|
863
|
+
"@aws-cdk/core.Stack",
|
|
864
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
865
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
866
|
+
"constructs.Construct"
|
|
850
867
|
],
|
|
851
|
-
"fullSource": "
|
|
868
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase } from '@aws-cdk/integ-tests';\nimport {\n App,\n Construct,\n Stack,\n StackProps,\n} from '@aws-cdk/core';\nimport * as path from 'path';\nimport { RequireApproval } from '@aws-cdk/cloud-assembly-schema';\n\n// Code snippet begins after !show marker below\n/// !show\nconst app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
852
869
|
"syntaxKindCounter": {
|
|
853
|
-
"10":
|
|
854
|
-
"75":
|
|
855
|
-
"
|
|
856
|
-
"
|
|
857
|
-
"
|
|
858
|
-
"
|
|
859
|
-
"
|
|
860
|
-
"
|
|
861
|
-
"
|
|
862
|
-
"242":
|
|
863
|
-
"243":
|
|
864
|
-
"
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
"281": 38,
|
|
868
|
-
"290": 1
|
|
869
|
-
},
|
|
870
|
-
"fqnsFingerprint": "09355961486ba8402673144bf03e6d46d0dac471117d5f76453974e7457e6457"
|
|
870
|
+
"10": 3,
|
|
871
|
+
"75": 24,
|
|
872
|
+
"106": 4,
|
|
873
|
+
"192": 1,
|
|
874
|
+
"193": 6,
|
|
875
|
+
"194": 1,
|
|
876
|
+
"197": 4,
|
|
877
|
+
"225": 3,
|
|
878
|
+
"226": 1,
|
|
879
|
+
"242": 3,
|
|
880
|
+
"243": 3,
|
|
881
|
+
"281": 11
|
|
882
|
+
},
|
|
883
|
+
"fqnsFingerprint": "f7371420104093fc3724943346d98e1a48bcffb7a90c7c56b1ae19a9d7c09417"
|
|
871
884
|
},
|
|
872
|
-
"
|
|
885
|
+
"b98cf5b295bcce2c33e45af08510573eea7c0e4eb5986fc22b1d3a55b74281cd": {
|
|
873
886
|
"translations": {
|
|
874
887
|
"python": {
|
|
875
|
-
"source": "
|
|
888
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\nIntegTestCase(stack, \"CustomizedDeploymentWorkflow\",\n stacks=[stack_under_test],\n diff_assets=True,\n stack_update_workflow=True,\n cdk_command_options=CdkCommands(\n deploy=DeployCommand(\n args=DeployOptions(\n require_approval=RequireApproval.NEVER,\n json=True\n )\n ),\n destroy=DestroyCommand(\n args=DestroyOptions(\n force=True\n )\n )\n )\n)",
|
|
876
889
|
"version": "2"
|
|
877
890
|
},
|
|
878
891
|
"csharp": {
|
|
879
|
-
"source": "
|
|
892
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nnew IntegTestCase(stack, \"CustomizedDeploymentWorkflow\", new IntegTestCaseProps {\n Stacks = new [] { stackUnderTest },\n DiffAssets = true,\n StackUpdateWorkflow = true,\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n RequireApproval = RequireApproval.NEVER,\n Json = true\n }\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n Force = true\n }\n }\n }\n});",
|
|
880
893
|
"version": "1"
|
|
881
894
|
},
|
|
882
895
|
"java": {
|
|
883
|
-
"source": "
|
|
896
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase.Builder.create(stack, \"CustomizedDeploymentWorkflow\")\n .stacks(List.of(stackUnderTest))\n .diffAssets(true)\n .stackUpdateWorkflow(true)\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .requireApproval(RequireApproval.NEVER)\n .json(true)\n .build())\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .force(true)\n .build())\n .build())\n .build())\n .build();",
|
|
884
897
|
"version": "1"
|
|
885
898
|
},
|
|
886
899
|
"go": {
|
|
887
|
-
"source": "
|
|
900
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\nNewIntegTestCase(stack, jsii.String(\"CustomizedDeploymentWorkflow\"), &integTestCaseProps{\n\tstacks: []stack{\n\t\tstackUnderTest,\n\t},\n\tdiffAssets: jsii.Boolean(true),\n\tstackUpdateWorkflow: jsii.Boolean(true),\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\trequireApproval: requireApproval_NEVER,\n\t\t\t\tjson: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tforce: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t},\n})",
|
|
888
901
|
"version": "1"
|
|
889
902
|
},
|
|
890
903
|
"$": {
|
|
891
|
-
"source": "
|
|
904
|
+
"source": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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});",
|
|
892
905
|
"version": "0"
|
|
893
906
|
}
|
|
894
907
|
},
|
|
@@ -903,49 +916,57 @@
|
|
|
903
916
|
},
|
|
904
917
|
"didCompile": true,
|
|
905
918
|
"fqnsReferenced": [
|
|
919
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
920
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
921
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
906
922
|
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
907
|
-
"@aws-cdk/cloud-assembly-schema.DestroyOptions"
|
|
923
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
924
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
925
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
926
|
+
"@aws-cdk/core.App",
|
|
927
|
+
"@aws-cdk/core.Construct",
|
|
928
|
+
"@aws-cdk/core.Stack",
|
|
929
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
930
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
931
|
+
"constructs.Construct"
|
|
908
932
|
],
|
|
909
|
-
"fullSource": "
|
|
933
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase } from '@aws-cdk/integ-tests';\nimport {\n App,\n Construct,\n Stack,\n StackProps,\n} from '@aws-cdk/core';\nimport * as path from 'path';\nimport { RequireApproval } from '@aws-cdk/cloud-assembly-schema';\n\n// Code snippet begins after !show marker below\n/// !show\nconst app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
910
934
|
"syntaxKindCounter": {
|
|
911
|
-
"10":
|
|
912
|
-
"75":
|
|
913
|
-
"
|
|
914
|
-
"153": 1,
|
|
915
|
-
"169": 1,
|
|
935
|
+
"10": 3,
|
|
936
|
+
"75": 24,
|
|
937
|
+
"106": 4,
|
|
916
938
|
"192": 1,
|
|
917
|
-
"193":
|
|
918
|
-
"
|
|
919
|
-
"
|
|
920
|
-
"
|
|
921
|
-
"
|
|
922
|
-
"
|
|
923
|
-
"
|
|
924
|
-
"281":
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
"fqnsFingerprint": "7fcec99496b925963a3bc30adfc7a8dc91a9313bc59f195a46abfe90eed0023e"
|
|
939
|
+
"193": 6,
|
|
940
|
+
"194": 1,
|
|
941
|
+
"197": 4,
|
|
942
|
+
"225": 3,
|
|
943
|
+
"226": 1,
|
|
944
|
+
"242": 3,
|
|
945
|
+
"243": 3,
|
|
946
|
+
"281": 11
|
|
947
|
+
},
|
|
948
|
+
"fqnsFingerprint": "f7371420104093fc3724943346d98e1a48bcffb7a90c7c56b1ae19a9d7c09417"
|
|
928
949
|
},
|
|
929
|
-
"
|
|
950
|
+
"9dec2b6f769e28988a31bcdb159750f8ca785f2fbb8986c1f3c3650552f59ae3": {
|
|
930
951
|
"translations": {
|
|
931
952
|
"python": {
|
|
932
|
-
"source": "
|
|
953
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\nIntegTestCase(stack, \"CustomizedDeploymentWorkflow\",\n stacks=[stack_under_test],\n diff_assets=True,\n stack_update_workflow=True,\n cdk_command_options=CdkCommands(\n deploy=DeployCommand(\n args=DeployOptions(\n require_approval=RequireApproval.NEVER,\n json=True\n )\n ),\n destroy=DestroyCommand(\n args=DestroyOptions(\n force=True\n )\n )\n )\n)",
|
|
933
954
|
"version": "2"
|
|
934
955
|
},
|
|
935
956
|
"csharp": {
|
|
936
|
-
"source": "
|
|
957
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nnew IntegTestCase(stack, \"CustomizedDeploymentWorkflow\", new IntegTestCaseProps {\n Stacks = new [] { stackUnderTest },\n DiffAssets = true,\n StackUpdateWorkflow = true,\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n RequireApproval = RequireApproval.NEVER,\n Json = true\n }\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n Force = true\n }\n }\n }\n});",
|
|
937
958
|
"version": "1"
|
|
938
959
|
},
|
|
939
960
|
"java": {
|
|
940
|
-
"source": "
|
|
961
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase.Builder.create(stack, \"CustomizedDeploymentWorkflow\")\n .stacks(List.of(stackUnderTest))\n .diffAssets(true)\n .stackUpdateWorkflow(true)\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .requireApproval(RequireApproval.NEVER)\n .json(true)\n .build())\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .force(true)\n .build())\n .build())\n .build())\n .build();",
|
|
941
962
|
"version": "1"
|
|
942
963
|
},
|
|
943
964
|
"go": {
|
|
944
|
-
"source": "
|
|
965
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\nNewIntegTestCase(stack, jsii.String(\"CustomizedDeploymentWorkflow\"), &integTestCaseProps{\n\tstacks: []stack{\n\t\tstackUnderTest,\n\t},\n\tdiffAssets: jsii.Boolean(true),\n\tstackUpdateWorkflow: jsii.Boolean(true),\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\trequireApproval: requireApproval_NEVER,\n\t\t\t\tjson: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tforce: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t},\n})",
|
|
945
966
|
"version": "1"
|
|
946
967
|
},
|
|
947
968
|
"$": {
|
|
948
|
-
"source": "
|
|
969
|
+
"source": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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});",
|
|
949
970
|
"version": "0"
|
|
950
971
|
}
|
|
951
972
|
},
|
|
@@ -960,27 +981,36 @@
|
|
|
960
981
|
},
|
|
961
982
|
"didCompile": true,
|
|
962
983
|
"fqnsReferenced": [
|
|
963
|
-
"@aws-cdk/cloud-assembly-schema.
|
|
984
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
985
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
986
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
987
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
988
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
989
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
990
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
991
|
+
"@aws-cdk/core.App",
|
|
992
|
+
"@aws-cdk/core.Construct",
|
|
993
|
+
"@aws-cdk/core.Stack",
|
|
994
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
995
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
996
|
+
"constructs.Construct"
|
|
964
997
|
],
|
|
965
|
-
"fullSource": "
|
|
998
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase } from '@aws-cdk/integ-tests';\nimport {\n App,\n Construct,\n Stack,\n StackProps,\n} from '@aws-cdk/core';\nimport * as path from 'path';\nimport { RequireApproval } from '@aws-cdk/cloud-assembly-schema';\n\n// Code snippet begins after !show marker below\n/// !show\nconst app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
966
999
|
"syntaxKindCounter": {
|
|
967
|
-
"10":
|
|
968
|
-
"75":
|
|
969
|
-
"
|
|
970
|
-
"153": 1,
|
|
971
|
-
"169": 1,
|
|
1000
|
+
"10": 3,
|
|
1001
|
+
"75": 24,
|
|
1002
|
+
"106": 4,
|
|
972
1003
|
"192": 1,
|
|
973
|
-
"193":
|
|
974
|
-
"
|
|
975
|
-
"
|
|
976
|
-
"
|
|
977
|
-
"
|
|
978
|
-
"
|
|
979
|
-
"
|
|
980
|
-
"281":
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
"fqnsFingerprint": "696ab8e3123c74a19b88226c980e065a07c1f8784f57e4445833869b4f52e55f"
|
|
1004
|
+
"193": 6,
|
|
1005
|
+
"194": 1,
|
|
1006
|
+
"197": 4,
|
|
1007
|
+
"225": 3,
|
|
1008
|
+
"226": 1,
|
|
1009
|
+
"242": 3,
|
|
1010
|
+
"243": 3,
|
|
1011
|
+
"281": 11
|
|
1012
|
+
},
|
|
1013
|
+
"fqnsFingerprint": "f7371420104093fc3724943346d98e1a48bcffb7a90c7c56b1ae19a9d7c09417"
|
|
984
1014
|
},
|
|
985
1015
|
"13514bf756685ec4825817ac806f4a7510034d11baa93291d3d8749ecc9bc6e2": {
|
|
986
1016
|
"translations": {
|
|
@@ -1602,7 +1632,7 @@
|
|
|
1602
1632
|
"281": 89,
|
|
1603
1633
|
"290": 1
|
|
1604
1634
|
},
|
|
1605
|
-
"fqnsFingerprint": "
|
|
1635
|
+
"fqnsFingerprint": "bcc337f30444939a473d200590b177697681554c69d3e17af159f8f7d8fe3033"
|
|
1606
1636
|
},
|
|
1607
1637
|
"ace2c0f8cefd8405e123e856adc09df724751fa6d2d4aaee28f73a730ea65155": {
|
|
1608
1638
|
"translations": {
|
|
@@ -2111,6 +2141,71 @@
|
|
|
2111
2141
|
},
|
|
2112
2142
|
"fqnsFingerprint": "78d074e4d2b470a75f833cbc617f3e6d2667991e1805d63d741a9e7cc7fdf8fe"
|
|
2113
2143
|
},
|
|
2144
|
+
"fb97752a7b7026825568ac955084004bb4dee2dd162df288ccba5b2cf6468189": {
|
|
2145
|
+
"translations": {
|
|
2146
|
+
"python": {
|
|
2147
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\nIntegTestCase(stack, \"CustomizedDeploymentWorkflow\",\n stacks=[stack_under_test],\n diff_assets=True,\n stack_update_workflow=True,\n cdk_command_options=CdkCommands(\n deploy=DeployCommand(\n args=DeployOptions(\n require_approval=RequireApproval.NEVER,\n json=True\n )\n ),\n destroy=DestroyCommand(\n args=DestroyOptions(\n force=True\n )\n )\n )\n)",
|
|
2148
|
+
"version": "2"
|
|
2149
|
+
},
|
|
2150
|
+
"csharp": {
|
|
2151
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nnew IntegTestCase(stack, \"CustomizedDeploymentWorkflow\", new IntegTestCaseProps {\n Stacks = new [] { stackUnderTest },\n DiffAssets = true,\n StackUpdateWorkflow = true,\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n RequireApproval = RequireApproval.NEVER,\n Json = true\n }\n },\n Destroy = new DestroyCommand {\n Args = new DestroyOptions {\n Force = true\n }\n }\n }\n});",
|
|
2152
|
+
"version": "1"
|
|
2153
|
+
},
|
|
2154
|
+
"java": {
|
|
2155
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase.Builder.create(stack, \"CustomizedDeploymentWorkflow\")\n .stacks(List.of(stackUnderTest))\n .diffAssets(true)\n .stackUpdateWorkflow(true)\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .requireApproval(RequireApproval.NEVER)\n .json(true)\n .build())\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .force(true)\n .build())\n .build())\n .build())\n .build();",
|
|
2156
|
+
"version": "1"
|
|
2157
|
+
},
|
|
2158
|
+
"go": {
|
|
2159
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\nNewIntegTestCase(stack, jsii.String(\"CustomizedDeploymentWorkflow\"), &integTestCaseProps{\n\tstacks: []stack{\n\t\tstackUnderTest,\n\t},\n\tdiffAssets: jsii.Boolean(true),\n\tstackUpdateWorkflow: jsii.Boolean(true),\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\trequireApproval: requireApproval_NEVER,\n\t\t\t\tjson: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tforce: jsii.Boolean(true),\n\t\t\t},\n\t\t},\n\t},\n})",
|
|
2160
|
+
"version": "1"
|
|
2161
|
+
},
|
|
2162
|
+
"$": {
|
|
2163
|
+
"source": "const app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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});",
|
|
2164
|
+
"version": "0"
|
|
2165
|
+
}
|
|
2166
|
+
},
|
|
2167
|
+
"location": {
|
|
2168
|
+
"api": {
|
|
2169
|
+
"api": "type",
|
|
2170
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.RequireApproval"
|
|
2171
|
+
},
|
|
2172
|
+
"field": {
|
|
2173
|
+
"field": "example"
|
|
2174
|
+
}
|
|
2175
|
+
},
|
|
2176
|
+
"didCompile": true,
|
|
2177
|
+
"fqnsReferenced": [
|
|
2178
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
2179
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
2180
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
2181
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
2182
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
2183
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
2184
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
2185
|
+
"@aws-cdk/core.App",
|
|
2186
|
+
"@aws-cdk/core.Construct",
|
|
2187
|
+
"@aws-cdk/core.Stack",
|
|
2188
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
2189
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
2190
|
+
"constructs.Construct"
|
|
2191
|
+
],
|
|
2192
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase } from '@aws-cdk/integ-tests';\nimport {\n App,\n Construct,\n Stack,\n StackProps,\n} from '@aws-cdk/core';\nimport * as path from 'path';\nimport { RequireApproval } from '@aws-cdk/cloud-assembly-schema';\n\n// Code snippet begins after !show marker below\n/// !show\nconst app = new App();\n\nconst stackUnderTest = new Stack(app, 'StackUnderTest', /* ... */);\n\nconst stack = new Stack(app, 'stack');\n\nnew 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/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
2193
|
+
"syntaxKindCounter": {
|
|
2194
|
+
"10": 3,
|
|
2195
|
+
"75": 24,
|
|
2196
|
+
"106": 4,
|
|
2197
|
+
"192": 1,
|
|
2198
|
+
"193": 6,
|
|
2199
|
+
"194": 1,
|
|
2200
|
+
"197": 4,
|
|
2201
|
+
"225": 3,
|
|
2202
|
+
"226": 1,
|
|
2203
|
+
"242": 3,
|
|
2204
|
+
"243": 3,
|
|
2205
|
+
"281": 11
|
|
2206
|
+
},
|
|
2207
|
+
"fqnsFingerprint": "f7371420104093fc3724943346d98e1a48bcffb7a90c7c56b1ae19a9d7c09417"
|
|
2208
|
+
},
|
|
2114
2209
|
"e327fc98591a1ca4bf6867147aeb8b7a1d27221cb2c89501caa802b5a19cd818": {
|
|
2115
2210
|
"translations": {
|
|
2116
2211
|
"python": {
|
|
@@ -2390,7 +2485,72 @@
|
|
|
2390
2485
|
"281": 85,
|
|
2391
2486
|
"290": 1
|
|
2392
2487
|
},
|
|
2393
|
-
"fqnsFingerprint": "
|
|
2488
|
+
"fqnsFingerprint": "7a4a65ed03956d821ae63c3132877ac35f7f81c79c4975a4e678860f078cbb91"
|
|
2489
|
+
},
|
|
2490
|
+
"2f3dd325771b352930f14f196545716d8018a2fcbf0b9d9a3f3dc0dc5d3e5f6c": {
|
|
2491
|
+
"translations": {
|
|
2492
|
+
"python": {
|
|
2493
|
+
"source": "# The code below shows an example of how to instantiate this type.\n# The values are placeholders you should change.\nimport aws_cdk.cloud_assembly_schema as cloud_assembly_schema\n\ntest_options = cloud_assembly_schema.TestOptions(\n allow_destroy=[\"allowDestroy\"],\n cdk_command_options=cloud_assembly_schema.CdkCommands(\n deploy=cloud_assembly_schema.DeployCommand(\n args=cloud_assembly_schema.DeployOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n change_set_name=\"changeSetName\",\n ci=False,\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n execute=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n notification_arns=[\"notificationArns\"],\n output=\"output\",\n outputs_file=\"outputsFile\",\n parameters={\n \"parameters_key\": \"parameters\"\n },\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n require_approval=cloud_assembly_schema.RequireApproval.NEVER,\n reuse_assets=[\"reuseAssets\"],\n role_arn=\"roleArn\",\n rollback=False,\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n toolkit_stack_name=\"toolkitStackName\",\n trace=False,\n use_previous_parameters=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n ),\n destroy=cloud_assembly_schema.DestroyCommand(\n args=cloud_assembly_schema.DestroyOptions(\n all=False,\n app=\"app\",\n asset_metadata=False,\n ca_bundle_path=\"caBundlePath\",\n color=False,\n context={\n \"context_key\": \"context\"\n },\n debug=False,\n ec2_creds=False,\n exclusively=False,\n force=False,\n ignore_errors=False,\n json=False,\n lookups=False,\n notices=False,\n output=\"output\",\n path_metadata=False,\n profile=\"profile\",\n proxy=\"proxy\",\n role_arn=\"roleArn\",\n stacks=[\"stacks\"],\n staging=False,\n strict=False,\n trace=False,\n verbose=False,\n version_reporting=False\n ),\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n )\n ),\n diff_assets=False,\n hooks=cloud_assembly_schema.Hooks(\n post_deploy=[\"postDeploy\"],\n post_destroy=[\"postDestroy\"],\n pre_deploy=[\"preDeploy\"],\n pre_destroy=[\"preDestroy\"]\n ),\n regions=[\"regions\"],\n stack_update_workflow=False\n)",
|
|
2494
|
+
"version": "2"
|
|
2495
|
+
},
|
|
2496
|
+
"csharp": {
|
|
2497
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nusing Amazon.CDK.CloudAssembly.Schema;\n\nTestOptions testOptions = new TestOptions {\n AllowDestroy = new [] { \"allowDestroy\" },\n CdkCommandOptions = new CdkCommands {\n Deploy = new DeployCommand {\n Args = new DeployOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n ChangeSetName = \"changeSetName\",\n Ci = false,\n Color = false,\n Context = new Dictionary<string, string> {\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 = new [] { \"notificationArns\" },\n Output = \"output\",\n OutputsFile = \"outputsFile\",\n Parameters = new Dictionary<string, string> {\n { \"parametersKey\", \"parameters\" }\n },\n PathMetadata = false,\n Profile = \"profile\",\n Proxy = \"proxy\",\n RequireApproval = RequireApproval.NEVER,\n ReuseAssets = new [] { \"reuseAssets\" },\n RoleArn = \"roleArn\",\n Rollback = false,\n Stacks = new [] { \"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 = new DestroyCommand {\n Args = new DestroyOptions {\n All = false,\n App = \"app\",\n AssetMetadata = false,\n CaBundlePath = \"caBundlePath\",\n Color = false,\n Context = new Dictionary<string, string> {\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 = new [] { \"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 = new Hooks {\n PostDeploy = new [] { \"postDeploy\" },\n PostDestroy = new [] { \"postDestroy\" },\n PreDeploy = new [] { \"preDeploy\" },\n PreDestroy = new [] { \"preDestroy\" }\n },\n Regions = new [] { \"regions\" },\n StackUpdateWorkflow = false\n};",
|
|
2498
|
+
"version": "1"
|
|
2499
|
+
},
|
|
2500
|
+
"java": {
|
|
2501
|
+
"source": "// The code below shows an example of how to instantiate this type.\n// The values are placeholders you should change.\nimport software.amazon.awscdk.cloudassembly.schema.*;\n\nTestOptions testOptions = TestOptions.builder()\n .allowDestroy(List.of(\"allowDestroy\"))\n .cdkCommandOptions(CdkCommands.builder()\n .deploy(DeployCommand.builder()\n .args(DeployOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .changeSetName(\"changeSetName\")\n .ci(false)\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\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(List.of(\"notificationArns\"))\n .output(\"output\")\n .outputsFile(\"outputsFile\")\n .parameters(Map.of(\n \"parametersKey\", \"parameters\"))\n .pathMetadata(false)\n .profile(\"profile\")\n .proxy(\"proxy\")\n .requireApproval(RequireApproval.NEVER)\n .reuseAssets(List.of(\"reuseAssets\"))\n .roleArn(\"roleArn\")\n .rollback(false)\n .stacks(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .toolkitStackName(\"toolkitStackName\")\n .trace(false)\n .usePreviousParameters(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .destroy(DestroyCommand.builder()\n .args(DestroyOptions.builder()\n .all(false)\n .app(\"app\")\n .assetMetadata(false)\n .caBundlePath(\"caBundlePath\")\n .color(false)\n .context(Map.of(\n \"contextKey\", \"context\"))\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(List.of(\"stacks\"))\n .staging(false)\n .strict(false)\n .trace(false)\n .verbose(false)\n .versionReporting(false)\n .build())\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build())\n .build())\n .diffAssets(false)\n .hooks(Hooks.builder()\n .postDeploy(List.of(\"postDeploy\"))\n .postDestroy(List.of(\"postDestroy\"))\n .preDeploy(List.of(\"preDeploy\"))\n .preDestroy(List.of(\"preDestroy\"))\n .build())\n .regions(List.of(\"regions\"))\n .stackUpdateWorkflow(false)\n .build();",
|
|
2502
|
+
"version": "1"
|
|
2503
|
+
},
|
|
2504
|
+
"go": {
|
|
2505
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ntestOptions := &testOptions{\n\tallowDestroy: []*string{\n\t\tjsii.String(\"allowDestroy\"),\n\t},\n\tcdkCommandOptions: &cdkCommands{\n\t\tdeploy: &deployCommand{\n\t\t\targs: &deployOptions{\n\t\t\t\tall: jsii.Boolean(false),\n\t\t\t\tapp: jsii.String(\"app\"),\n\t\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\t\tchangeSetName: jsii.String(\"changeSetName\"),\n\t\t\t\tci: jsii.Boolean(false),\n\t\t\t\tcolor: jsii.Boolean(false),\n\t\t\t\tcontext: map[string]*string{\n\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t},\n\t\t\t\tdebug: jsii.Boolean(false),\n\t\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\t\texclusively: jsii.Boolean(false),\n\t\t\t\texecute: jsii.Boolean(false),\n\t\t\t\tforce: jsii.Boolean(false),\n\t\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\t\tjson: jsii.Boolean(false),\n\t\t\t\tlookups: jsii.Boolean(false),\n\t\t\t\tnotices: jsii.Boolean(false),\n\t\t\t\tnotificationArns: []*string{\n\t\t\t\t\tjsii.String(\"notificationArns\"),\n\t\t\t\t},\n\t\t\t\toutput: jsii.String(\"output\"),\n\t\t\t\toutputsFile: jsii.String(\"outputsFile\"),\n\t\t\t\tparameters: map[string]*string{\n\t\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t\t},\n\t\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\t\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\t\t\t\treuseAssets: []*string{\n\t\t\t\t\tjsii.String(\"reuseAssets\"),\n\t\t\t\t},\n\t\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\t\trollback: jsii.Boolean(false),\n\t\t\t\tstacks: []*string{\n\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t},\n\t\t\t\tstaging: jsii.Boolean(false),\n\t\t\t\tstrict: jsii.Boolean(false),\n\t\t\t\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\t\t\t\ttrace: jsii.Boolean(false),\n\t\t\t\tusePreviousParameters: jsii.Boolean(false),\n\t\t\t\tverbose: jsii.Boolean(false),\n\t\t\t\tversionReporting: jsii.Boolean(false),\n\t\t\t},\n\t\t\tenabled: jsii.Boolean(false),\n\t\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\t\texpectError: jsii.Boolean(false),\n\t\t},\n\t\tdestroy: &destroyCommand{\n\t\t\targs: &destroyOptions{\n\t\t\t\tall: jsii.Boolean(false),\n\t\t\t\tapp: jsii.String(\"app\"),\n\t\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\t\tcolor: jsii.Boolean(false),\n\t\t\t\tcontext: map[string]*string{\n\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t},\n\t\t\t\tdebug: jsii.Boolean(false),\n\t\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\t\texclusively: jsii.Boolean(false),\n\t\t\t\tforce: jsii.Boolean(false),\n\t\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\t\tjson: jsii.Boolean(false),\n\t\t\t\tlookups: jsii.Boolean(false),\n\t\t\t\tnotices: jsii.Boolean(false),\n\t\t\t\toutput: jsii.String(\"output\"),\n\t\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\t\tstacks: []*string{\n\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t},\n\t\t\t\tstaging: jsii.Boolean(false),\n\t\t\t\tstrict: jsii.Boolean(false),\n\t\t\t\ttrace: jsii.Boolean(false),\n\t\t\t\tverbose: jsii.Boolean(false),\n\t\t\t\tversionReporting: jsii.Boolean(false),\n\t\t\t},\n\t\t\tenabled: jsii.Boolean(false),\n\t\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\t\texpectError: jsii.Boolean(false),\n\t\t},\n\t},\n\tdiffAssets: jsii.Boolean(false),\n\thooks: &hooks{\n\t\tpostDeploy: []*string{\n\t\t\tjsii.String(\"postDeploy\"),\n\t\t},\n\t\tpostDestroy: []*string{\n\t\t\tjsii.String(\"postDestroy\"),\n\t\t},\n\t\tpreDeploy: []*string{\n\t\t\tjsii.String(\"preDeploy\"),\n\t\t},\n\t\tpreDestroy: []*string{\n\t\t\tjsii.String(\"preDestroy\"),\n\t\t},\n\t},\n\tregions: []*string{\n\t\tjsii.String(\"regions\"),\n\t},\n\tstackUpdateWorkflow: jsii.Boolean(false),\n}",
|
|
2506
|
+
"version": "1"
|
|
2507
|
+
},
|
|
2508
|
+
"$": {
|
|
2509
|
+
"source": "// 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 testOptions: cloud_assembly_schema.TestOptions = {\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};",
|
|
2510
|
+
"version": "0"
|
|
2511
|
+
}
|
|
2512
|
+
},
|
|
2513
|
+
"location": {
|
|
2514
|
+
"api": {
|
|
2515
|
+
"api": "type",
|
|
2516
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.TestOptions"
|
|
2517
|
+
},
|
|
2518
|
+
"field": {
|
|
2519
|
+
"field": "example"
|
|
2520
|
+
}
|
|
2521
|
+
},
|
|
2522
|
+
"didCompile": true,
|
|
2523
|
+
"fqnsReferenced": [
|
|
2524
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
2525
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
2526
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
2527
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
2528
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
2529
|
+
"@aws-cdk/cloud-assembly-schema.Hooks",
|
|
2530
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
2531
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
2532
|
+
"@aws-cdk/cloud-assembly-schema.TestOptions"
|
|
2533
|
+
],
|
|
2534
|
+
"fullSource": "// Hoisted imports begin after !show marker below\n/// !show\n// 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';\n/// !hide\n// Hoisted imports ended before !hide marker above\nimport { Construct } from \"constructs\";\nclass MyConstruct extends Construct {\nconstructor(scope: Construct, id: string) {\nsuper(scope, id);\n// Code snippet begins after !show marker below\n/// !show\n\nconst testOptions: cloud_assembly_schema.TestOptions = {\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/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
2535
|
+
"syntaxKindCounter": {
|
|
2536
|
+
"10": 31,
|
|
2537
|
+
"75": 91,
|
|
2538
|
+
"91": 44,
|
|
2539
|
+
"153": 1,
|
|
2540
|
+
"169": 1,
|
|
2541
|
+
"192": 10,
|
|
2542
|
+
"193": 10,
|
|
2543
|
+
"194": 2,
|
|
2544
|
+
"225": 1,
|
|
2545
|
+
"242": 1,
|
|
2546
|
+
"243": 1,
|
|
2547
|
+
"254": 1,
|
|
2548
|
+
"255": 1,
|
|
2549
|
+
"256": 1,
|
|
2550
|
+
"281": 84,
|
|
2551
|
+
"290": 1
|
|
2552
|
+
},
|
|
2553
|
+
"fqnsFingerprint": "2b670620b6bd6bf18bef714178abeb6b1c2c4165bfbfa9443f3340843969c643"
|
|
2394
2554
|
},
|
|
2395
2555
|
"ea1bc4f88d5cfeea825e5d51c026f05a15345d5c410859f91aae9efe2897813a": {
|
|
2396
2556
|
"translations": {
|