@aws-cdk/cloud-assembly-schema 1.152.0 → 1.154.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 +110 -57
- package/.jsii.tabl.json +314 -142
- package/.warnings.jsii.js +253 -147
- package/NOTICE +0 -17
- package/lib/integ-tests/schema.d.ts +10 -0
- package/lib/integ-tests/schema.js +1 -1
- 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 +8 -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
|
+
"63dc388f28173d3c8caa17a4f56c2397f4a021852b0611fa6cc7e39ce47f462f": {
|
|
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\ntest_case = IntegTestCase(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)\n\nIntegTest(app, \"integ-test\",\n test_cases=[test_case]\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\nIntegTestCase testCase = new 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});\n\nnew IntegTest(app, \"integ-test\", new IntegTestProps {\n TestCases = new [] { testCase }\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 testCase = IntegTestCase.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();\n\nIntegTest.Builder.create(app, \"integ-test\")\n .testCases(List.of(testCase))\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\ntestCase := NewIntegTestCase(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})\n\nNewIntegTest(app, jsii.String(\"integ-test\"), &integTestProps{\n\ttestCases: []integTestCase{\n\t\ttestCase,\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\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});",
|
|
600
600
|
"version": "0"
|
|
601
601
|
}
|
|
602
602
|
},
|
|
@@ -617,28 +617,32 @@
|
|
|
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.IntegTest",
|
|
625
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
626
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
627
|
+
"@aws-cdk/integ-tests.IntegTestProps",
|
|
628
|
+
"constructs.Construct"
|
|
621
629
|
],
|
|
622
|
-
"fullSource": "
|
|
630
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase, IntegTest } 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\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});\n/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
623
631
|
"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"
|
|
632
|
+
"10": 4,
|
|
633
|
+
"75": 29,
|
|
634
|
+
"106": 4,
|
|
635
|
+
"192": 2,
|
|
636
|
+
"193": 7,
|
|
637
|
+
"194": 1,
|
|
638
|
+
"197": 5,
|
|
639
|
+
"225": 4,
|
|
640
|
+
"226": 1,
|
|
641
|
+
"242": 4,
|
|
642
|
+
"243": 4,
|
|
643
|
+
"281": 12
|
|
644
|
+
},
|
|
645
|
+
"fqnsFingerprint": "8fd829411f80b66bd9a64ab6ac39bec7589714513a5f5020d1ce90298ceef9cb"
|
|
642
646
|
},
|
|
643
647
|
"8f7e2b076b4d344fbaa2cffd1d4b6826a6b768f06ff4f268b7962397ae513f96": {
|
|
644
648
|
"translations": {
|
|
@@ -750,26 +754,26 @@
|
|
|
750
754
|
},
|
|
751
755
|
"fqnsFingerprint": "f16cd9f149a62c877e1157dcab005757f63025a11ef35bfa96f204678c213aff"
|
|
752
756
|
},
|
|
753
|
-
"
|
|
757
|
+
"c8b3782ddc9b1dce8ccb2b9e8fb42557d54b61dd6d00b4ea6ac6a5f673e401b2": {
|
|
754
758
|
"translations": {
|
|
755
759
|
"python": {
|
|
756
|
-
"source": "
|
|
760
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\ntest_case = IntegTestCase(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)\n\nIntegTest(app, \"integ-test\",\n test_cases=[test_case]\n)",
|
|
757
761
|
"version": "2"
|
|
758
762
|
},
|
|
759
763
|
"csharp": {
|
|
760
|
-
"source": "
|
|
764
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = new 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});\n\nnew IntegTest(app, \"integ-test\", new IntegTestProps {\n TestCases = new [] { testCase }\n});",
|
|
761
765
|
"version": "1"
|
|
762
766
|
},
|
|
763
767
|
"java": {
|
|
764
|
-
"source": "
|
|
768
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = IntegTestCase.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();\n\nIntegTest.Builder.create(app, \"integ-test\")\n .testCases(List.of(testCase))\n .build();",
|
|
765
769
|
"version": "1"
|
|
766
770
|
},
|
|
767
771
|
"go": {
|
|
768
|
-
"source": "
|
|
772
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\ntestCase := NewIntegTestCase(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})\n\nNewIntegTest(app, jsii.String(\"integ-test\"), &integTestProps{\n\ttestCases: []integTestCase{\n\t\ttestCase,\n\t},\n})",
|
|
769
773
|
"version": "1"
|
|
770
774
|
},
|
|
771
775
|
"$": {
|
|
772
|
-
"source": "
|
|
776
|
+
"source": "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});",
|
|
773
777
|
"version": "0"
|
|
774
778
|
}
|
|
775
779
|
},
|
|
@@ -784,52 +788,59 @@
|
|
|
784
788
|
},
|
|
785
789
|
"didCompile": true,
|
|
786
790
|
"fqnsReferenced": [
|
|
791
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
787
792
|
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
788
793
|
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
794
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
795
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
789
796
|
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
790
|
-
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
|
|
797
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
798
|
+
"@aws-cdk/core.App",
|
|
799
|
+
"@aws-cdk/core.Construct",
|
|
800
|
+
"@aws-cdk/core.Stack",
|
|
801
|
+
"@aws-cdk/integ-tests.IntegTest",
|
|
802
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
803
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
804
|
+
"@aws-cdk/integ-tests.IntegTestProps",
|
|
805
|
+
"constructs.Construct"
|
|
791
806
|
],
|
|
792
|
-
"fullSource": "
|
|
807
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase, IntegTest } 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\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});\n/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
793
808
|
"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"
|
|
809
|
+
"10": 4,
|
|
810
|
+
"75": 29,
|
|
811
|
+
"106": 4,
|
|
812
|
+
"192": 2,
|
|
813
|
+
"193": 7,
|
|
814
|
+
"194": 1,
|
|
815
|
+
"197": 5,
|
|
816
|
+
"225": 4,
|
|
817
|
+
"226": 1,
|
|
818
|
+
"242": 4,
|
|
819
|
+
"243": 4,
|
|
820
|
+
"281": 12
|
|
821
|
+
},
|
|
822
|
+
"fqnsFingerprint": "8fd829411f80b66bd9a64ab6ac39bec7589714513a5f5020d1ce90298ceef9cb"
|
|
812
823
|
},
|
|
813
|
-
"
|
|
824
|
+
"6a6f28417fbf216b862f3f101683041ff98b74718631395289485f566e9246c3": {
|
|
814
825
|
"translations": {
|
|
815
826
|
"python": {
|
|
816
|
-
"source": "
|
|
827
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\ntest_case = IntegTestCase(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)\n\nIntegTest(app, \"integ-test\",\n test_cases=[test_case]\n)",
|
|
817
828
|
"version": "2"
|
|
818
829
|
},
|
|
819
830
|
"csharp": {
|
|
820
|
-
"source": "
|
|
831
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = new 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});\n\nnew IntegTest(app, \"integ-test\", new IntegTestProps {\n TestCases = new [] { testCase }\n});",
|
|
821
832
|
"version": "1"
|
|
822
833
|
},
|
|
823
834
|
"java": {
|
|
824
|
-
"source": "
|
|
835
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = IntegTestCase.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();\n\nIntegTest.Builder.create(app, \"integ-test\")\n .testCases(List.of(testCase))\n .build();",
|
|
825
836
|
"version": "1"
|
|
826
837
|
},
|
|
827
838
|
"go": {
|
|
828
|
-
"source": "
|
|
839
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\ntestCase := NewIntegTestCase(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})\n\nNewIntegTest(app, jsii.String(\"integ-test\"), &integTestProps{\n\ttestCases: []integTestCase{\n\t\ttestCase,\n\t},\n})",
|
|
829
840
|
"version": "1"
|
|
830
841
|
},
|
|
831
842
|
"$": {
|
|
832
|
-
"source": "
|
|
843
|
+
"source": "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});",
|
|
833
844
|
"version": "0"
|
|
834
845
|
}
|
|
835
846
|
},
|
|
@@ -844,51 +855,59 @@
|
|
|
844
855
|
},
|
|
845
856
|
"didCompile": true,
|
|
846
857
|
"fqnsReferenced": [
|
|
858
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
859
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
847
860
|
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
861
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
862
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
848
863
|
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
849
|
-
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
|
|
864
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
865
|
+
"@aws-cdk/core.App",
|
|
866
|
+
"@aws-cdk/core.Construct",
|
|
867
|
+
"@aws-cdk/core.Stack",
|
|
868
|
+
"@aws-cdk/integ-tests.IntegTest",
|
|
869
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
870
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
871
|
+
"@aws-cdk/integ-tests.IntegTestProps",
|
|
872
|
+
"constructs.Construct"
|
|
850
873
|
],
|
|
851
|
-
"fullSource": "
|
|
874
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase, IntegTest } 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\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});\n/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
852
875
|
"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"
|
|
876
|
+
"10": 4,
|
|
877
|
+
"75": 29,
|
|
878
|
+
"106": 4,
|
|
879
|
+
"192": 2,
|
|
880
|
+
"193": 7,
|
|
881
|
+
"194": 1,
|
|
882
|
+
"197": 5,
|
|
883
|
+
"225": 4,
|
|
884
|
+
"226": 1,
|
|
885
|
+
"242": 4,
|
|
886
|
+
"243": 4,
|
|
887
|
+
"281": 12
|
|
888
|
+
},
|
|
889
|
+
"fqnsFingerprint": "8fd829411f80b66bd9a64ab6ac39bec7589714513a5f5020d1ce90298ceef9cb"
|
|
871
890
|
},
|
|
872
|
-
"
|
|
891
|
+
"859d6e01e1259b0112eb5f54bb02b87d0b973b1901669403c912c3ac96016e7c": {
|
|
873
892
|
"translations": {
|
|
874
893
|
"python": {
|
|
875
|
-
"source": "
|
|
894
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\ntest_case = IntegTestCase(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)\n\nIntegTest(app, \"integ-test\",\n test_cases=[test_case]\n)",
|
|
876
895
|
"version": "2"
|
|
877
896
|
},
|
|
878
897
|
"csharp": {
|
|
879
|
-
"source": "
|
|
898
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = new 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});\n\nnew IntegTest(app, \"integ-test\", new IntegTestProps {\n TestCases = new [] { testCase }\n});",
|
|
880
899
|
"version": "1"
|
|
881
900
|
},
|
|
882
901
|
"java": {
|
|
883
|
-
"source": "
|
|
902
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = IntegTestCase.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();\n\nIntegTest.Builder.create(app, \"integ-test\")\n .testCases(List.of(testCase))\n .build();",
|
|
884
903
|
"version": "1"
|
|
885
904
|
},
|
|
886
905
|
"go": {
|
|
887
|
-
"source": "
|
|
906
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\ntestCase := NewIntegTestCase(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})\n\nNewIntegTest(app, jsii.String(\"integ-test\"), &integTestProps{\n\ttestCases: []integTestCase{\n\t\ttestCase,\n\t},\n})",
|
|
888
907
|
"version": "1"
|
|
889
908
|
},
|
|
890
909
|
"$": {
|
|
891
|
-
"source": "
|
|
910
|
+
"source": "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});",
|
|
892
911
|
"version": "0"
|
|
893
912
|
}
|
|
894
913
|
},
|
|
@@ -903,49 +922,59 @@
|
|
|
903
922
|
},
|
|
904
923
|
"didCompile": true,
|
|
905
924
|
"fqnsReferenced": [
|
|
925
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
926
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
927
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
906
928
|
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
907
|
-
"@aws-cdk/cloud-assembly-schema.DestroyOptions"
|
|
929
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
930
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
931
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
932
|
+
"@aws-cdk/core.App",
|
|
933
|
+
"@aws-cdk/core.Construct",
|
|
934
|
+
"@aws-cdk/core.Stack",
|
|
935
|
+
"@aws-cdk/integ-tests.IntegTest",
|
|
936
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
937
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
938
|
+
"@aws-cdk/integ-tests.IntegTestProps",
|
|
939
|
+
"constructs.Construct"
|
|
908
940
|
],
|
|
909
|
-
"fullSource": "
|
|
941
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase, IntegTest } 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\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});\n/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
910
942
|
"syntaxKindCounter": {
|
|
911
|
-
"10":
|
|
912
|
-
"75":
|
|
913
|
-
"
|
|
914
|
-
"
|
|
915
|
-
"
|
|
916
|
-
"
|
|
917
|
-
"
|
|
918
|
-
"225":
|
|
919
|
-
"
|
|
920
|
-
"
|
|
921
|
-
"
|
|
922
|
-
"
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
"290": 1
|
|
926
|
-
},
|
|
927
|
-
"fqnsFingerprint": "7fcec99496b925963a3bc30adfc7a8dc91a9313bc59f195a46abfe90eed0023e"
|
|
943
|
+
"10": 4,
|
|
944
|
+
"75": 29,
|
|
945
|
+
"106": 4,
|
|
946
|
+
"192": 2,
|
|
947
|
+
"193": 7,
|
|
948
|
+
"194": 1,
|
|
949
|
+
"197": 5,
|
|
950
|
+
"225": 4,
|
|
951
|
+
"226": 1,
|
|
952
|
+
"242": 4,
|
|
953
|
+
"243": 4,
|
|
954
|
+
"281": 12
|
|
955
|
+
},
|
|
956
|
+
"fqnsFingerprint": "8fd829411f80b66bd9a64ab6ac39bec7589714513a5f5020d1ce90298ceef9cb"
|
|
928
957
|
},
|
|
929
|
-
"
|
|
958
|
+
"1dc1930944c9dfe6549bde49d2de407743410df4147e8dd7f5c23416fb3707b8": {
|
|
930
959
|
"translations": {
|
|
931
960
|
"python": {
|
|
932
|
-
"source": "
|
|
961
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\ntest_case = IntegTestCase(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)\n\nIntegTest(app, \"integ-test\",\n test_cases=[test_case]\n)",
|
|
933
962
|
"version": "2"
|
|
934
963
|
},
|
|
935
964
|
"csharp": {
|
|
936
|
-
"source": "
|
|
965
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = new 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});\n\nnew IntegTest(app, \"integ-test\", new IntegTestProps {\n TestCases = new [] { testCase }\n});",
|
|
937
966
|
"version": "1"
|
|
938
967
|
},
|
|
939
968
|
"java": {
|
|
940
|
-
"source": "
|
|
969
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = IntegTestCase.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();\n\nIntegTest.Builder.create(app, \"integ-test\")\n .testCases(List.of(testCase))\n .build();",
|
|
941
970
|
"version": "1"
|
|
942
971
|
},
|
|
943
972
|
"go": {
|
|
944
|
-
"source": "
|
|
973
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\ntestCase := NewIntegTestCase(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})\n\nNewIntegTest(app, jsii.String(\"integ-test\"), &integTestProps{\n\ttestCases: []integTestCase{\n\t\ttestCase,\n\t},\n})",
|
|
945
974
|
"version": "1"
|
|
946
975
|
},
|
|
947
976
|
"$": {
|
|
948
|
-
"source": "
|
|
977
|
+
"source": "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});",
|
|
949
978
|
"version": "0"
|
|
950
979
|
}
|
|
951
980
|
},
|
|
@@ -960,27 +989,38 @@
|
|
|
960
989
|
},
|
|
961
990
|
"didCompile": true,
|
|
962
991
|
"fqnsReferenced": [
|
|
963
|
-
"@aws-cdk/cloud-assembly-schema.
|
|
992
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
993
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
994
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
995
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
996
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
997
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
998
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
999
|
+
"@aws-cdk/core.App",
|
|
1000
|
+
"@aws-cdk/core.Construct",
|
|
1001
|
+
"@aws-cdk/core.Stack",
|
|
1002
|
+
"@aws-cdk/integ-tests.IntegTest",
|
|
1003
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
1004
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
1005
|
+
"@aws-cdk/integ-tests.IntegTestProps",
|
|
1006
|
+
"constructs.Construct"
|
|
964
1007
|
],
|
|
965
|
-
"fullSource": "
|
|
1008
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase, IntegTest } 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\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});\n/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
966
1009
|
"syntaxKindCounter": {
|
|
967
|
-
"10":
|
|
968
|
-
"75":
|
|
969
|
-
"
|
|
970
|
-
"
|
|
971
|
-
"
|
|
972
|
-
"
|
|
973
|
-
"
|
|
974
|
-
"225":
|
|
975
|
-
"
|
|
976
|
-
"
|
|
977
|
-
"
|
|
978
|
-
"
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
"290": 1
|
|
982
|
-
},
|
|
983
|
-
"fqnsFingerprint": "696ab8e3123c74a19b88226c980e065a07c1f8784f57e4445833869b4f52e55f"
|
|
1010
|
+
"10": 4,
|
|
1011
|
+
"75": 29,
|
|
1012
|
+
"106": 4,
|
|
1013
|
+
"192": 2,
|
|
1014
|
+
"193": 7,
|
|
1015
|
+
"194": 1,
|
|
1016
|
+
"197": 5,
|
|
1017
|
+
"225": 4,
|
|
1018
|
+
"226": 1,
|
|
1019
|
+
"242": 4,
|
|
1020
|
+
"243": 4,
|
|
1021
|
+
"281": 12
|
|
1022
|
+
},
|
|
1023
|
+
"fqnsFingerprint": "8fd829411f80b66bd9a64ab6ac39bec7589714513a5f5020d1ce90298ceef9cb"
|
|
984
1024
|
},
|
|
985
1025
|
"13514bf756685ec4825817ac806f4a7510034d11baa93291d3d8749ecc9bc6e2": {
|
|
986
1026
|
"translations": {
|
|
@@ -1538,26 +1578,26 @@
|
|
|
1538
1578
|
},
|
|
1539
1579
|
"fqnsFingerprint": "047059be64704a685d7e0f39d3e38c24b1a7fc585a887bfdae03dfb15dbf38d9"
|
|
1540
1580
|
},
|
|
1541
|
-
"
|
|
1581
|
+
"537e8ecc1b426402e8d989e415b08474a43060c97788650b603b8065ce879a4b": {
|
|
1542
1582
|
"translations": {
|
|
1543
1583
|
"python": {
|
|
1544
|
-
"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\ninteg_manifest = cloud_assembly_schema.IntegManifest(\n test_cases={\n \"test_cases_key\": cloud_assembly_schema.TestCase(\n stacks=[\"stacks\"],\n\n # the properties below are optional\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 )\n },\n version=\"version\",\n\n # the properties below are optional\n enable_lookups=False\n)",
|
|
1584
|
+
"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\ninteg_manifest = cloud_assembly_schema.IntegManifest(\n test_cases={\n \"test_cases_key\": cloud_assembly_schema.TestCase(\n stacks=[\"stacks\"],\n\n # the properties below are optional\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 )\n },\n version=\"version\",\n\n # the properties below are optional\n enable_lookups=False,\n synth_context={\n \"synth_context_key\": \"synthContext\"\n }\n)",
|
|
1545
1585
|
"version": "2"
|
|
1546
1586
|
},
|
|
1547
1587
|
"csharp": {
|
|
1548
|
-
"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\nIntegManifest integManifest = new IntegManifest {\n TestCases = new Dictionary<string, TestCase> {\n { \"testCasesKey\", new TestCase {\n Stacks = new [] { \"stacks\" },\n\n // the properties below are optional\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 } }\n },\n Version = \"version\",\n\n // the properties below are optional\n EnableLookups = false\n};",
|
|
1588
|
+
"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\nIntegManifest integManifest = new IntegManifest {\n TestCases = new Dictionary<string, TestCase> {\n { \"testCasesKey\", new TestCase {\n Stacks = new [] { \"stacks\" },\n\n // the properties below are optional\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 } }\n },\n Version = \"version\",\n\n // the properties below are optional\n EnableLookups = false,\n SynthContext = new Dictionary<string, string> {\n { \"synthContextKey\", \"synthContext\" }\n }\n};",
|
|
1549
1589
|
"version": "1"
|
|
1550
1590
|
},
|
|
1551
1591
|
"java": {
|
|
1552
|
-
"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\nIntegManifest integManifest = IntegManifest.builder()\n .testCases(Map.of(\n \"testCasesKey\", TestCase.builder()\n .stacks(List.of(\"stacks\"))\n\n // the properties below are optional\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()))\n .version(\"version\")\n\n // the properties below are optional\n .enableLookups(false)\n .build();",
|
|
1592
|
+
"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\nIntegManifest integManifest = IntegManifest.builder()\n .testCases(Map.of(\n \"testCasesKey\", TestCase.builder()\n .stacks(List.of(\"stacks\"))\n\n // the properties below are optional\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()))\n .version(\"version\")\n\n // the properties below are optional\n .enableLookups(false)\n .synthContext(Map.of(\n \"synthContextKey\", \"synthContext\"))\n .build();",
|
|
1553
1593
|
"version": "1"
|
|
1554
1594
|
},
|
|
1555
1595
|
"go": {
|
|
1556
|
-
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\nintegManifest := &integManifest{\n\ttestCases: map[string]testCase{\n\t\t\"testCasesKey\": &testCase{\n\t\t\t\"stacks\": []*string{\n\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t},\n\n\t\t\t// the properties below are optional\n\t\t\t\"allowDestroy\": []*string{\n\t\t\t\tjsii.String(\"allowDestroy\"),\n\t\t\t},\n\t\t\t\"cdkCommandOptions\": &CdkCommands{\n\t\t\t\t\"deploy\": &DeployCommand{\n\t\t\t\t\t\"args\": &DeployOptions{\n\t\t\t\t\t\t\"all\": jsii.Boolean(false),\n\t\t\t\t\t\t\"app\": jsii.String(\"app\"),\n\t\t\t\t\t\t\"assetMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"caBundlePath\": jsii.String(\"caBundlePath\"),\n\t\t\t\t\t\t\"changeSetName\": jsii.String(\"changeSetName\"),\n\t\t\t\t\t\t\"ci\": jsii.Boolean(false),\n\t\t\t\t\t\t\"color\": jsii.Boolean(false),\n\t\t\t\t\t\t\"context\": map[string]*string{\n\t\t\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"debug\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ec2Creds\": jsii.Boolean(false),\n\t\t\t\t\t\t\"exclusively\": jsii.Boolean(false),\n\t\t\t\t\t\t\"execute\": jsii.Boolean(false),\n\t\t\t\t\t\t\"force\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ignoreErrors\": jsii.Boolean(false),\n\t\t\t\t\t\t\"json\": jsii.Boolean(false),\n\t\t\t\t\t\t\"lookups\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notices\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notificationArns\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"notificationArns\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"output\": jsii.String(\"output\"),\n\t\t\t\t\t\t\"outputsFile\": jsii.String(\"outputsFile\"),\n\t\t\t\t\t\t\"parameters\": map[string]*string{\n\t\t\t\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pathMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"profile\": jsii.String(\"profile\"),\n\t\t\t\t\t\t\"proxy\": jsii.String(\"proxy\"),\n\t\t\t\t\t\t\"requireApproval\": cloud_assembly_schema.RequireApproval_NEVER,\n\t\t\t\t\t\t\"reuseAssets\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"reuseAssets\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"roleArn\": jsii.String(\"roleArn\"),\n\t\t\t\t\t\t\"rollback\": jsii.Boolean(false),\n\t\t\t\t\t\t\"stacks\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"staging\": jsii.Boolean(false),\n\t\t\t\t\t\t\"strict\": jsii.Boolean(false),\n\t\t\t\t\t\t\"toolkitStackName\": jsii.String(\"toolkitStackName\"),\n\t\t\t\t\t\t\"trace\": jsii.Boolean(false),\n\t\t\t\t\t\t\"usePreviousParameters\": jsii.Boolean(false),\n\t\t\t\t\t\t\"verbose\": jsii.Boolean(false),\n\t\t\t\t\t\t\"versionReporting\": jsii.Boolean(false),\n\t\t\t\t\t},\n\t\t\t\t\t\"enabled\": jsii.Boolean(false),\n\t\t\t\t\t\"expectedMessage\": jsii.String(\"expectedMessage\"),\n\t\t\t\t\t\"expectError\": jsii.Boolean(false),\n\t\t\t\t},\n\t\t\t\t\"destroy\": &DestroyCommand{\n\t\t\t\t\t\"args\": &DestroyOptions{\n\t\t\t\t\t\t\"all\": jsii.Boolean(false),\n\t\t\t\t\t\t\"app\": jsii.String(\"app\"),\n\t\t\t\t\t\t\"assetMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"caBundlePath\": jsii.String(\"caBundlePath\"),\n\t\t\t\t\t\t\"color\": jsii.Boolean(false),\n\t\t\t\t\t\t\"context\": map[string]*string{\n\t\t\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"debug\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ec2Creds\": jsii.Boolean(false),\n\t\t\t\t\t\t\"exclusively\": jsii.Boolean(false),\n\t\t\t\t\t\t\"force\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ignoreErrors\": jsii.Boolean(false),\n\t\t\t\t\t\t\"json\": jsii.Boolean(false),\n\t\t\t\t\t\t\"lookups\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notices\": jsii.Boolean(false),\n\t\t\t\t\t\t\"output\": jsii.String(\"output\"),\n\t\t\t\t\t\t\"pathMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"profile\": jsii.String(\"profile\"),\n\t\t\t\t\t\t\"proxy\": jsii.String(\"proxy\"),\n\t\t\t\t\t\t\"roleArn\": jsii.String(\"roleArn\"),\n\t\t\t\t\t\t\"stacks\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"staging\": jsii.Boolean(false),\n\t\t\t\t\t\t\"strict\": jsii.Boolean(false),\n\t\t\t\t\t\t\"trace\": jsii.Boolean(false),\n\t\t\t\t\t\t\"verbose\": jsii.Boolean(false),\n\t\t\t\t\t\t\"versionReporting\": jsii.Boolean(false),\n\t\t\t\t\t},\n\t\t\t\t\t\"enabled\": jsii.Boolean(false),\n\t\t\t\t\t\"expectedMessage\": jsii.String(\"expectedMessage\"),\n\t\t\t\t\t\"expectError\": jsii.Boolean(false),\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"diffAssets\": jsii.Boolean(false),\n\t\t\t\"hooks\": &Hooks{\n\t\t\t\t\"postDeploy\": []*string{\n\t\t\t\t\tjsii.String(\"postDeploy\"),\n\t\t\t\t},\n\t\t\t\t\"postDestroy\": []*string{\n\t\t\t\t\tjsii.String(\"postDestroy\"),\n\t\t\t\t},\n\t\t\t\t\"preDeploy\": []*string{\n\t\t\t\t\tjsii.String(\"preDeploy\"),\n\t\t\t\t},\n\t\t\t\t\"preDestroy\": []*string{\n\t\t\t\t\tjsii.String(\"preDestroy\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"regions\": []*string{\n\t\t\t\tjsii.String(\"regions\"),\n\t\t\t},\n\t\t\t\"stackUpdateWorkflow\": jsii.Boolean(false),\n\t\t},\n\t},\n\tversion: jsii.String(\"version\"),\n\n\t// the properties below are optional\n\tenableLookups: jsii.Boolean(false),\n}",
|
|
1596
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\nintegManifest := &integManifest{\n\ttestCases: map[string]testCase{\n\t\t\"testCasesKey\": &testCase{\n\t\t\t\"stacks\": []*string{\n\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t},\n\n\t\t\t// the properties below are optional\n\t\t\t\"allowDestroy\": []*string{\n\t\t\t\tjsii.String(\"allowDestroy\"),\n\t\t\t},\n\t\t\t\"cdkCommandOptions\": &CdkCommands{\n\t\t\t\t\"deploy\": &DeployCommand{\n\t\t\t\t\t\"args\": &DeployOptions{\n\t\t\t\t\t\t\"all\": jsii.Boolean(false),\n\t\t\t\t\t\t\"app\": jsii.String(\"app\"),\n\t\t\t\t\t\t\"assetMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"caBundlePath\": jsii.String(\"caBundlePath\"),\n\t\t\t\t\t\t\"changeSetName\": jsii.String(\"changeSetName\"),\n\t\t\t\t\t\t\"ci\": jsii.Boolean(false),\n\t\t\t\t\t\t\"color\": jsii.Boolean(false),\n\t\t\t\t\t\t\"context\": map[string]*string{\n\t\t\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"debug\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ec2Creds\": jsii.Boolean(false),\n\t\t\t\t\t\t\"exclusively\": jsii.Boolean(false),\n\t\t\t\t\t\t\"execute\": jsii.Boolean(false),\n\t\t\t\t\t\t\"force\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ignoreErrors\": jsii.Boolean(false),\n\t\t\t\t\t\t\"json\": jsii.Boolean(false),\n\t\t\t\t\t\t\"lookups\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notices\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notificationArns\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"notificationArns\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"output\": jsii.String(\"output\"),\n\t\t\t\t\t\t\"outputsFile\": jsii.String(\"outputsFile\"),\n\t\t\t\t\t\t\"parameters\": map[string]*string{\n\t\t\t\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pathMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"profile\": jsii.String(\"profile\"),\n\t\t\t\t\t\t\"proxy\": jsii.String(\"proxy\"),\n\t\t\t\t\t\t\"requireApproval\": cloud_assembly_schema.RequireApproval_NEVER,\n\t\t\t\t\t\t\"reuseAssets\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"reuseAssets\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"roleArn\": jsii.String(\"roleArn\"),\n\t\t\t\t\t\t\"rollback\": jsii.Boolean(false),\n\t\t\t\t\t\t\"stacks\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"staging\": jsii.Boolean(false),\n\t\t\t\t\t\t\"strict\": jsii.Boolean(false),\n\t\t\t\t\t\t\"toolkitStackName\": jsii.String(\"toolkitStackName\"),\n\t\t\t\t\t\t\"trace\": jsii.Boolean(false),\n\t\t\t\t\t\t\"usePreviousParameters\": jsii.Boolean(false),\n\t\t\t\t\t\t\"verbose\": jsii.Boolean(false),\n\t\t\t\t\t\t\"versionReporting\": jsii.Boolean(false),\n\t\t\t\t\t},\n\t\t\t\t\t\"enabled\": jsii.Boolean(false),\n\t\t\t\t\t\"expectedMessage\": jsii.String(\"expectedMessage\"),\n\t\t\t\t\t\"expectError\": jsii.Boolean(false),\n\t\t\t\t},\n\t\t\t\t\"destroy\": &DestroyCommand{\n\t\t\t\t\t\"args\": &DestroyOptions{\n\t\t\t\t\t\t\"all\": jsii.Boolean(false),\n\t\t\t\t\t\t\"app\": jsii.String(\"app\"),\n\t\t\t\t\t\t\"assetMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"caBundlePath\": jsii.String(\"caBundlePath\"),\n\t\t\t\t\t\t\"color\": jsii.Boolean(false),\n\t\t\t\t\t\t\"context\": map[string]*string{\n\t\t\t\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"debug\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ec2Creds\": jsii.Boolean(false),\n\t\t\t\t\t\t\"exclusively\": jsii.Boolean(false),\n\t\t\t\t\t\t\"force\": jsii.Boolean(false),\n\t\t\t\t\t\t\"ignoreErrors\": jsii.Boolean(false),\n\t\t\t\t\t\t\"json\": jsii.Boolean(false),\n\t\t\t\t\t\t\"lookups\": jsii.Boolean(false),\n\t\t\t\t\t\t\"notices\": jsii.Boolean(false),\n\t\t\t\t\t\t\"output\": jsii.String(\"output\"),\n\t\t\t\t\t\t\"pathMetadata\": jsii.Boolean(false),\n\t\t\t\t\t\t\"profile\": jsii.String(\"profile\"),\n\t\t\t\t\t\t\"proxy\": jsii.String(\"proxy\"),\n\t\t\t\t\t\t\"roleArn\": jsii.String(\"roleArn\"),\n\t\t\t\t\t\t\"stacks\": []*string{\n\t\t\t\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"staging\": jsii.Boolean(false),\n\t\t\t\t\t\t\"strict\": jsii.Boolean(false),\n\t\t\t\t\t\t\"trace\": jsii.Boolean(false),\n\t\t\t\t\t\t\"verbose\": jsii.Boolean(false),\n\t\t\t\t\t\t\"versionReporting\": jsii.Boolean(false),\n\t\t\t\t\t},\n\t\t\t\t\t\"enabled\": jsii.Boolean(false),\n\t\t\t\t\t\"expectedMessage\": jsii.String(\"expectedMessage\"),\n\t\t\t\t\t\"expectError\": jsii.Boolean(false),\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"diffAssets\": jsii.Boolean(false),\n\t\t\t\"hooks\": &Hooks{\n\t\t\t\t\"postDeploy\": []*string{\n\t\t\t\t\tjsii.String(\"postDeploy\"),\n\t\t\t\t},\n\t\t\t\t\"postDestroy\": []*string{\n\t\t\t\t\tjsii.String(\"postDestroy\"),\n\t\t\t\t},\n\t\t\t\t\"preDeploy\": []*string{\n\t\t\t\t\tjsii.String(\"preDeploy\"),\n\t\t\t\t},\n\t\t\t\t\"preDestroy\": []*string{\n\t\t\t\t\tjsii.String(\"preDestroy\"),\n\t\t\t\t},\n\t\t\t},\n\t\t\t\"regions\": []*string{\n\t\t\t\tjsii.String(\"regions\"),\n\t\t\t},\n\t\t\t\"stackUpdateWorkflow\": jsii.Boolean(false),\n\t\t},\n\t},\n\tversion: jsii.String(\"version\"),\n\n\t// the properties below are optional\n\tenableLookups: jsii.Boolean(false),\n\tsynthContext: map[string]*string{\n\t\t\"synthContextKey\": jsii.String(\"synthContext\"),\n\t},\n}",
|
|
1557
1597
|
"version": "1"
|
|
1558
1598
|
},
|
|
1559
1599
|
"$": {
|
|
1560
|
-
"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 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};",
|
|
1600
|
+
"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 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};",
|
|
1561
1601
|
"version": "0"
|
|
1562
1602
|
}
|
|
1563
1603
|
},
|
|
@@ -1583,15 +1623,15 @@
|
|
|
1583
1623
|
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
1584
1624
|
"@aws-cdk/cloud-assembly-schema.TestCase"
|
|
1585
1625
|
],
|
|
1586
|
-
"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 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};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
1626
|
+
"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 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};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
1587
1627
|
"syntaxKindCounter": {
|
|
1588
|
-
"10":
|
|
1589
|
-
"75":
|
|
1628
|
+
"10": 34,
|
|
1629
|
+
"75": 98,
|
|
1590
1630
|
"91": 45,
|
|
1591
1631
|
"153": 1,
|
|
1592
1632
|
"169": 1,
|
|
1593
1633
|
"192": 11,
|
|
1594
|
-
"193":
|
|
1634
|
+
"193": 13,
|
|
1595
1635
|
"194": 2,
|
|
1596
1636
|
"225": 1,
|
|
1597
1637
|
"242": 1,
|
|
@@ -1599,10 +1639,10 @@
|
|
|
1599
1639
|
"254": 1,
|
|
1600
1640
|
"255": 1,
|
|
1601
1641
|
"256": 1,
|
|
1602
|
-
"281":
|
|
1642
|
+
"281": 91,
|
|
1603
1643
|
"290": 1
|
|
1604
1644
|
},
|
|
1605
|
-
"fqnsFingerprint": "
|
|
1645
|
+
"fqnsFingerprint": "739e6f1ad66512b5d2d44d3ee586164888e444536082e817302131f4b2bda228"
|
|
1606
1646
|
},
|
|
1607
1647
|
"ace2c0f8cefd8405e123e856adc09df724751fa6d2d4aaee28f73a730ea65155": {
|
|
1608
1648
|
"translations": {
|
|
@@ -2111,6 +2151,73 @@
|
|
|
2111
2151
|
},
|
|
2112
2152
|
"fqnsFingerprint": "78d074e4d2b470a75f833cbc617f3e6d2667991e1805d63d741a9e7cc7fdf8fe"
|
|
2113
2153
|
},
|
|
2154
|
+
"bc5bef228be61a617fbc0a4e642506372ce1840e576434bbf5b6a9c022bb960a": {
|
|
2155
|
+
"translations": {
|
|
2156
|
+
"python": {
|
|
2157
|
+
"source": "app = App()\n\nstack_under_test = Stack(app, \"StackUnderTest\")\n\nstack = Stack(app, \"stack\")\n\ntest_case = IntegTestCase(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)\n\nIntegTest(app, \"integ-test\",\n test_cases=[test_case]\n)",
|
|
2158
|
+
"version": "2"
|
|
2159
|
+
},
|
|
2160
|
+
"csharp": {
|
|
2161
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = new 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});\n\nnew IntegTest(app, \"integ-test\", new IntegTestProps {\n TestCases = new [] { testCase }\n});",
|
|
2162
|
+
"version": "1"
|
|
2163
|
+
},
|
|
2164
|
+
"java": {
|
|
2165
|
+
"source": "App app = new App();\n\nStack stackUnderTest = new Stack(app, \"StackUnderTest\");\n\nStack stack = new Stack(app, \"stack\");\n\nIntegTestCase testCase = IntegTestCase.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();\n\nIntegTest.Builder.create(app, \"integ-test\")\n .testCases(List.of(testCase))\n .build();",
|
|
2166
|
+
"version": "1"
|
|
2167
|
+
},
|
|
2168
|
+
"go": {
|
|
2169
|
+
"source": "app := NewApp()\n\nstackUnderTest := NewStack(app, jsii.String(\"StackUnderTest\"))\n\nstack := NewStack(app, jsii.String(\"stack\"))\n\ntestCase := NewIntegTestCase(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})\n\nNewIntegTest(app, jsii.String(\"integ-test\"), &integTestProps{\n\ttestCases: []integTestCase{\n\t\ttestCase,\n\t},\n})",
|
|
2170
|
+
"version": "1"
|
|
2171
|
+
},
|
|
2172
|
+
"$": {
|
|
2173
|
+
"source": "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});",
|
|
2174
|
+
"version": "0"
|
|
2175
|
+
}
|
|
2176
|
+
},
|
|
2177
|
+
"location": {
|
|
2178
|
+
"api": {
|
|
2179
|
+
"api": "type",
|
|
2180
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.RequireApproval"
|
|
2181
|
+
},
|
|
2182
|
+
"field": {
|
|
2183
|
+
"field": "example"
|
|
2184
|
+
}
|
|
2185
|
+
},
|
|
2186
|
+
"didCompile": true,
|
|
2187
|
+
"fqnsReferenced": [
|
|
2188
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
2189
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
2190
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
2191
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
2192
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
2193
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
2194
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
2195
|
+
"@aws-cdk/core.App",
|
|
2196
|
+
"@aws-cdk/core.Construct",
|
|
2197
|
+
"@aws-cdk/core.Stack",
|
|
2198
|
+
"@aws-cdk/integ-tests.IntegTest",
|
|
2199
|
+
"@aws-cdk/integ-tests.IntegTestCase",
|
|
2200
|
+
"@aws-cdk/integ-tests.IntegTestCaseProps",
|
|
2201
|
+
"@aws-cdk/integ-tests.IntegTestProps",
|
|
2202
|
+
"constructs.Construct"
|
|
2203
|
+
],
|
|
2204
|
+
"fullSource": "import * as lambda from '@aws-cdk/aws-lambda';\nimport { IntegTestCase, IntegTest } 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\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});\n/// !hide\n// Code snippet ended before !hide marker above\n",
|
|
2205
|
+
"syntaxKindCounter": {
|
|
2206
|
+
"10": 4,
|
|
2207
|
+
"75": 29,
|
|
2208
|
+
"106": 4,
|
|
2209
|
+
"192": 2,
|
|
2210
|
+
"193": 7,
|
|
2211
|
+
"194": 1,
|
|
2212
|
+
"197": 5,
|
|
2213
|
+
"225": 4,
|
|
2214
|
+
"226": 1,
|
|
2215
|
+
"242": 4,
|
|
2216
|
+
"243": 4,
|
|
2217
|
+
"281": 12
|
|
2218
|
+
},
|
|
2219
|
+
"fqnsFingerprint": "8fd829411f80b66bd9a64ab6ac39bec7589714513a5f5020d1ce90298ceef9cb"
|
|
2220
|
+
},
|
|
2114
2221
|
"e327fc98591a1ca4bf6867147aeb8b7a1d27221cb2c89501caa802b5a19cd818": {
|
|
2115
2222
|
"translations": {
|
|
2116
2223
|
"python": {
|
|
@@ -2390,7 +2497,72 @@
|
|
|
2390
2497
|
"281": 85,
|
|
2391
2498
|
"290": 1
|
|
2392
2499
|
},
|
|
2393
|
-
"fqnsFingerprint": "
|
|
2500
|
+
"fqnsFingerprint": "7a4a65ed03956d821ae63c3132877ac35f7f81c79c4975a4e678860f078cbb91"
|
|
2501
|
+
},
|
|
2502
|
+
"2f3dd325771b352930f14f196545716d8018a2fcbf0b9d9a3f3dc0dc5d3e5f6c": {
|
|
2503
|
+
"translations": {
|
|
2504
|
+
"python": {
|
|
2505
|
+
"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)",
|
|
2506
|
+
"version": "2"
|
|
2507
|
+
},
|
|
2508
|
+
"csharp": {
|
|
2509
|
+
"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};",
|
|
2510
|
+
"version": "1"
|
|
2511
|
+
},
|
|
2512
|
+
"java": {
|
|
2513
|
+
"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();",
|
|
2514
|
+
"version": "1"
|
|
2515
|
+
},
|
|
2516
|
+
"go": {
|
|
2517
|
+
"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}",
|
|
2518
|
+
"version": "1"
|
|
2519
|
+
},
|
|
2520
|
+
"$": {
|
|
2521
|
+
"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};",
|
|
2522
|
+
"version": "0"
|
|
2523
|
+
}
|
|
2524
|
+
},
|
|
2525
|
+
"location": {
|
|
2526
|
+
"api": {
|
|
2527
|
+
"api": "type",
|
|
2528
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.TestOptions"
|
|
2529
|
+
},
|
|
2530
|
+
"field": {
|
|
2531
|
+
"field": "example"
|
|
2532
|
+
}
|
|
2533
|
+
},
|
|
2534
|
+
"didCompile": true,
|
|
2535
|
+
"fqnsReferenced": [
|
|
2536
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
2537
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
2538
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
2539
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
2540
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
2541
|
+
"@aws-cdk/cloud-assembly-schema.Hooks",
|
|
2542
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
2543
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
2544
|
+
"@aws-cdk/cloud-assembly-schema.TestOptions"
|
|
2545
|
+
],
|
|
2546
|
+
"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} }",
|
|
2547
|
+
"syntaxKindCounter": {
|
|
2548
|
+
"10": 31,
|
|
2549
|
+
"75": 91,
|
|
2550
|
+
"91": 44,
|
|
2551
|
+
"153": 1,
|
|
2552
|
+
"169": 1,
|
|
2553
|
+
"192": 10,
|
|
2554
|
+
"193": 10,
|
|
2555
|
+
"194": 2,
|
|
2556
|
+
"225": 1,
|
|
2557
|
+
"242": 1,
|
|
2558
|
+
"243": 1,
|
|
2559
|
+
"254": 1,
|
|
2560
|
+
"255": 1,
|
|
2561
|
+
"256": 1,
|
|
2562
|
+
"281": 84,
|
|
2563
|
+
"290": 1
|
|
2564
|
+
},
|
|
2565
|
+
"fqnsFingerprint": "2b670620b6bd6bf18bef714178abeb6b1c2c4165bfbfa9443f3340843969c643"
|
|
2394
2566
|
},
|
|
2395
2567
|
"ea1bc4f88d5cfeea825e5d51c026f05a15345d5c410859f91aae9efe2897813a": {
|
|
2396
2568
|
"translations": {
|