@aws-cdk/cloud-assembly-schema 2.18.0 → 2.21.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 +1536 -49
- package/.jsii.tabl.json +658 -1
- package/.warnings.jsii.js +266 -98
- package/NOTICE +0 -17
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/integ-tests/commands/common.d.ts +178 -0
- package/lib/integ-tests/commands/common.js +22 -0
- package/lib/integ-tests/commands/deploy.d.ts +86 -0
- package/lib/integ-tests/commands/deploy.js +3 -0
- package/lib/integ-tests/commands/destroy.d.ts +18 -0
- package/lib/integ-tests/commands/destroy.js +3 -0
- package/lib/integ-tests/commands/index.d.ts +3 -0
- package/lib/integ-tests/commands/index.js +16 -0
- package/lib/integ-tests/index.d.ts +3 -0
- package/lib/integ-tests/index.js +16 -0
- package/lib/integ-tests/schema.d.ts +25 -0
- package/lib/integ-tests/schema.js +3 -0
- package/lib/integ-tests/test-case.d.ts +173 -0
- package/lib/integ-tests/test-case.js +3 -0
- package/lib/manifest.d.ts +14 -0
- package/lib/manifest.js +75 -7
- 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 +5 -5
- package/schema/cloud-assembly.version.json +1 -1
- package/schema/integ.schema.json +474 -0
- package/scripts/update-schema.js +2 -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": {
|
|
@@ -522,6 +522,124 @@
|
|
|
522
522
|
},
|
|
523
523
|
"fqnsFingerprint": "3b7fe1842f0cc0f13ad1684247b5b04a45b80ce59b32df4f294894aeb087781b"
|
|
524
524
|
},
|
|
525
|
+
"667e9c913de44b491e0d8b565101bc973a93a3bd49ed883bf6bcb065b8c52ef2": {
|
|
526
|
+
"translations": {
|
|
527
|
+
"python": {
|
|
528
|
+
"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\ncdk_command = cloud_assembly_schema.CdkCommand(\n enabled=False,\n expected_message=\"expectedMessage\",\n expect_error=False\n)",
|
|
529
|
+
"version": "2"
|
|
530
|
+
},
|
|
531
|
+
"csharp": {
|
|
532
|
+
"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\nCdkCommand cdkCommand = new CdkCommand {\n Enabled = false,\n ExpectedMessage = \"expectedMessage\",\n ExpectError = false\n};",
|
|
533
|
+
"version": "1"
|
|
534
|
+
},
|
|
535
|
+
"java": {
|
|
536
|
+
"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\nCdkCommand cdkCommand = CdkCommand.builder()\n .enabled(false)\n .expectedMessage(\"expectedMessage\")\n .expectError(false)\n .build();",
|
|
537
|
+
"version": "1"
|
|
538
|
+
},
|
|
539
|
+
"go": {
|
|
540
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ncdkCommand := &cdkCommand{\n\tenabled: jsii.Boolean(false),\n\texpectedMessage: jsii.String(\"expectedMessage\"),\n\texpectError: jsii.Boolean(false),\n}",
|
|
541
|
+
"version": "1"
|
|
542
|
+
},
|
|
543
|
+
"$": {
|
|
544
|
+
"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 cdkCommand: cloud_assembly_schema.CdkCommand = {\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};",
|
|
545
|
+
"version": "0"
|
|
546
|
+
}
|
|
547
|
+
},
|
|
548
|
+
"location": {
|
|
549
|
+
"api": {
|
|
550
|
+
"api": "type",
|
|
551
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.CdkCommand"
|
|
552
|
+
},
|
|
553
|
+
"field": {
|
|
554
|
+
"field": "example"
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
"didCompile": true,
|
|
558
|
+
"fqnsReferenced": [
|
|
559
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommand"
|
|
560
|
+
],
|
|
561
|
+
"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 cdkCommand: cloud_assembly_schema.CdkCommand = {\n enabled: false,\n expectedMessage: 'expectedMessage',\n expectError: false,\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
562
|
+
"syntaxKindCounter": {
|
|
563
|
+
"10": 2,
|
|
564
|
+
"75": 7,
|
|
565
|
+
"91": 2,
|
|
566
|
+
"153": 1,
|
|
567
|
+
"169": 1,
|
|
568
|
+
"193": 1,
|
|
569
|
+
"225": 1,
|
|
570
|
+
"242": 1,
|
|
571
|
+
"243": 1,
|
|
572
|
+
"254": 1,
|
|
573
|
+
"255": 1,
|
|
574
|
+
"256": 1,
|
|
575
|
+
"281": 3,
|
|
576
|
+
"290": 1
|
|
577
|
+
},
|
|
578
|
+
"fqnsFingerprint": "865a836cb27f42e709ad29a1f033399133017c1b7613ee028434d7ef7255a9ee"
|
|
579
|
+
},
|
|
580
|
+
"a5ed2422b3e83e2529b420b46c98c8553b381d1629a87e490891a96d1e2a0b39": {
|
|
581
|
+
"translations": {
|
|
582
|
+
"python": {
|
|
583
|
+
"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\ncdk_commands = 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)",
|
|
584
|
+
"version": "2"
|
|
585
|
+
},
|
|
586
|
+
"csharp": {
|
|
587
|
+
"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\nCdkCommands cdkCommands = 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};",
|
|
588
|
+
"version": "1"
|
|
589
|
+
},
|
|
590
|
+
"java": {
|
|
591
|
+
"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\nCdkCommands cdkCommands = 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();",
|
|
592
|
+
"version": "1"
|
|
593
|
+
},
|
|
594
|
+
"go": {
|
|
595
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ncdkCommands := &cdkCommands{\n\tdeploy: &deployCommand{\n\t\targs: &deployOptions{\n\t\t\tall: jsii.Boolean(false),\n\t\t\tapp: jsii.String(\"app\"),\n\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\tchangeSetName: jsii.String(\"changeSetName\"),\n\t\t\tci: jsii.Boolean(false),\n\t\t\tcolor: jsii.Boolean(false),\n\t\t\tcontext: map[string]*string{\n\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t},\n\t\t\tdebug: jsii.Boolean(false),\n\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\texclusively: jsii.Boolean(false),\n\t\t\texecute: jsii.Boolean(false),\n\t\t\tforce: jsii.Boolean(false),\n\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\tjson: jsii.Boolean(false),\n\t\t\tlookups: jsii.Boolean(false),\n\t\t\tnotices: jsii.Boolean(false),\n\t\t\tnotificationArns: []*string{\n\t\t\t\tjsii.String(\"notificationArns\"),\n\t\t\t},\n\t\t\toutput: jsii.String(\"output\"),\n\t\t\toutputsFile: jsii.String(\"outputsFile\"),\n\t\t\tparameters: map[string]*string{\n\t\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t\t},\n\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\t\t\treuseAssets: []*string{\n\t\t\t\tjsii.String(\"reuseAssets\"),\n\t\t\t},\n\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\trollback: jsii.Boolean(false),\n\t\t\tstacks: []*string{\n\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t},\n\t\t\tstaging: jsii.Boolean(false),\n\t\t\tstrict: jsii.Boolean(false),\n\t\t\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\t\t\ttrace: jsii.Boolean(false),\n\t\t\tusePreviousParameters: jsii.Boolean(false),\n\t\t\tverbose: jsii.Boolean(false),\n\t\t\tversionReporting: jsii.Boolean(false),\n\t\t},\n\t\tenabled: jsii.Boolean(false),\n\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\texpectError: jsii.Boolean(false),\n\t},\n\tdestroy: &destroyCommand{\n\t\targs: &destroyOptions{\n\t\t\tall: jsii.Boolean(false),\n\t\t\tapp: jsii.String(\"app\"),\n\t\t\tassetMetadata: jsii.Boolean(false),\n\t\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\t\tcolor: jsii.Boolean(false),\n\t\t\tcontext: map[string]*string{\n\t\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t\t},\n\t\t\tdebug: jsii.Boolean(false),\n\t\t\tec2Creds: jsii.Boolean(false),\n\t\t\texclusively: jsii.Boolean(false),\n\t\t\tforce: jsii.Boolean(false),\n\t\t\tignoreErrors: jsii.Boolean(false),\n\t\t\tjson: jsii.Boolean(false),\n\t\t\tlookups: jsii.Boolean(false),\n\t\t\tnotices: jsii.Boolean(false),\n\t\t\toutput: jsii.String(\"output\"),\n\t\t\tpathMetadata: jsii.Boolean(false),\n\t\t\tprofile: jsii.String(\"profile\"),\n\t\t\tproxy: jsii.String(\"proxy\"),\n\t\t\troleArn: jsii.String(\"roleArn\"),\n\t\t\tstacks: []*string{\n\t\t\t\tjsii.String(\"stacks\"),\n\t\t\t},\n\t\t\tstaging: jsii.Boolean(false),\n\t\t\tstrict: jsii.Boolean(false),\n\t\t\ttrace: jsii.Boolean(false),\n\t\t\tverbose: jsii.Boolean(false),\n\t\t\tversionReporting: jsii.Boolean(false),\n\t\t},\n\t\tenabled: jsii.Boolean(false),\n\t\texpectedMessage: jsii.String(\"expectedMessage\"),\n\t\texpectError: jsii.Boolean(false),\n\t},\n}",
|
|
596
|
+
"version": "1"
|
|
597
|
+
},
|
|
598
|
+
"$": {
|
|
599
|
+
"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 cdkCommands: cloud_assembly_schema.CdkCommands = {\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};",
|
|
600
|
+
"version": "0"
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"location": {
|
|
604
|
+
"api": {
|
|
605
|
+
"api": "type",
|
|
606
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.CdkCommands"
|
|
607
|
+
},
|
|
608
|
+
"field": {
|
|
609
|
+
"field": "example"
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"didCompile": true,
|
|
613
|
+
"fqnsReferenced": [
|
|
614
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
615
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
616
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
617
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
618
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
619
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
620
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
|
|
621
|
+
],
|
|
622
|
+
"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 cdkCommands: cloud_assembly_schema.CdkCommands = {\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/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
623
|
+
"syntaxKindCounter": {
|
|
624
|
+
"10": 25,
|
|
625
|
+
"75": 81,
|
|
626
|
+
"91": 42,
|
|
627
|
+
"153": 1,
|
|
628
|
+
"169": 1,
|
|
629
|
+
"192": 4,
|
|
630
|
+
"193": 8,
|
|
631
|
+
"194": 2,
|
|
632
|
+
"225": 1,
|
|
633
|
+
"242": 1,
|
|
634
|
+
"243": 1,
|
|
635
|
+
"254": 1,
|
|
636
|
+
"255": 1,
|
|
637
|
+
"256": 1,
|
|
638
|
+
"281": 74,
|
|
639
|
+
"290": 1
|
|
640
|
+
},
|
|
641
|
+
"fqnsFingerprint": "c5d3ceb788115e623cc23a29a6034f93b930ada545f0fcf53ea9146dbb03586b"
|
|
642
|
+
},
|
|
525
643
|
"8f7e2b076b4d344fbaa2cffd1d4b6826a6b768f06ff4f268b7962397ae513f96": {
|
|
526
644
|
"translations": {
|
|
527
645
|
"python": {
|
|
@@ -576,6 +694,294 @@
|
|
|
576
694
|
},
|
|
577
695
|
"fqnsFingerprint": "24a489bf1e77b25f5586308f2061ec7e9cdbfa0e142cd270d57fc56b6e9dc64d"
|
|
578
696
|
},
|
|
697
|
+
"446fbe4ef57d065169198f8cc45bb64f69409c17ca8b277fb2d2e8b9b84d44a1": {
|
|
698
|
+
"translations": {
|
|
699
|
+
"python": {
|
|
700
|
+
"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\ndefault_cdk_options = cloud_assembly_schema.DefaultCdkOptions(\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 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)",
|
|
701
|
+
"version": "2"
|
|
702
|
+
},
|
|
703
|
+
"csharp": {
|
|
704
|
+
"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\nDefaultCdkOptions defaultCdkOptions = new DefaultCdkOptions {\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 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};",
|
|
705
|
+
"version": "1"
|
|
706
|
+
},
|
|
707
|
+
"java": {
|
|
708
|
+
"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\nDefaultCdkOptions defaultCdkOptions = DefaultCdkOptions.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 .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();",
|
|
709
|
+
"version": "1"
|
|
710
|
+
},
|
|
711
|
+
"go": {
|
|
712
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ndefaultCdkOptions := &defaultCdkOptions{\n\tall: jsii.Boolean(false),\n\tapp: jsii.String(\"app\"),\n\tassetMetadata: jsii.Boolean(false),\n\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\tcolor: jsii.Boolean(false),\n\tcontext: map[string]*string{\n\t\t\"contextKey\": jsii.String(\"context\"),\n\t},\n\tdebug: jsii.Boolean(false),\n\tec2Creds: jsii.Boolean(false),\n\tignoreErrors: jsii.Boolean(false),\n\tjson: jsii.Boolean(false),\n\tlookups: jsii.Boolean(false),\n\tnotices: jsii.Boolean(false),\n\toutput: jsii.String(\"output\"),\n\tpathMetadata: jsii.Boolean(false),\n\tprofile: jsii.String(\"profile\"),\n\tproxy: jsii.String(\"proxy\"),\n\troleArn: jsii.String(\"roleArn\"),\n\tstacks: []*string{\n\t\tjsii.String(\"stacks\"),\n\t},\n\tstaging: jsii.Boolean(false),\n\tstrict: jsii.Boolean(false),\n\ttrace: jsii.Boolean(false),\n\tverbose: jsii.Boolean(false),\n\tversionReporting: jsii.Boolean(false),\n}",
|
|
713
|
+
"version": "1"
|
|
714
|
+
},
|
|
715
|
+
"$": {
|
|
716
|
+
"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 defaultCdkOptions: cloud_assembly_schema.DefaultCdkOptions = {\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 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};",
|
|
717
|
+
"version": "0"
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"location": {
|
|
721
|
+
"api": {
|
|
722
|
+
"api": "type",
|
|
723
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DefaultCdkOptions"
|
|
724
|
+
},
|
|
725
|
+
"field": {
|
|
726
|
+
"field": "example"
|
|
727
|
+
}
|
|
728
|
+
},
|
|
729
|
+
"didCompile": true,
|
|
730
|
+
"fqnsReferenced": [
|
|
731
|
+
"@aws-cdk/cloud-assembly-schema.DefaultCdkOptions"
|
|
732
|
+
],
|
|
733
|
+
"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 defaultCdkOptions: cloud_assembly_schema.DefaultCdkOptions = {\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 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/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
734
|
+
"syntaxKindCounter": {
|
|
735
|
+
"10": 9,
|
|
736
|
+
"75": 28,
|
|
737
|
+
"91": 15,
|
|
738
|
+
"153": 1,
|
|
739
|
+
"169": 1,
|
|
740
|
+
"192": 1,
|
|
741
|
+
"193": 2,
|
|
742
|
+
"225": 1,
|
|
743
|
+
"242": 1,
|
|
744
|
+
"243": 1,
|
|
745
|
+
"254": 1,
|
|
746
|
+
"255": 1,
|
|
747
|
+
"256": 1,
|
|
748
|
+
"281": 24,
|
|
749
|
+
"290": 1
|
|
750
|
+
},
|
|
751
|
+
"fqnsFingerprint": "f16cd9f149a62c877e1157dcab005757f63025a11ef35bfa96f204678c213aff"
|
|
752
|
+
},
|
|
753
|
+
"7ccd5fffe0e79a964aaf18c366e0a06521189a4d8bb6a3efa74271369f9b545a": {
|
|
754
|
+
"translations": {
|
|
755
|
+
"python": {
|
|
756
|
+
"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\ndeploy_command = 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)",
|
|
757
|
+
"version": "2"
|
|
758
|
+
},
|
|
759
|
+
"csharp": {
|
|
760
|
+
"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\nDeployCommand deployCommand = 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};",
|
|
761
|
+
"version": "1"
|
|
762
|
+
},
|
|
763
|
+
"java": {
|
|
764
|
+
"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\nDeployCommand deployCommand = 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();",
|
|
765
|
+
"version": "1"
|
|
766
|
+
},
|
|
767
|
+
"go": {
|
|
768
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ndeployCommand := &deployCommand{\n\targs: &deployOptions{\n\t\tall: jsii.Boolean(false),\n\t\tapp: jsii.String(\"app\"),\n\t\tassetMetadata: jsii.Boolean(false),\n\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\tchangeSetName: jsii.String(\"changeSetName\"),\n\t\tci: jsii.Boolean(false),\n\t\tcolor: jsii.Boolean(false),\n\t\tcontext: map[string]*string{\n\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t},\n\t\tdebug: jsii.Boolean(false),\n\t\tec2Creds: jsii.Boolean(false),\n\t\texclusively: jsii.Boolean(false),\n\t\texecute: jsii.Boolean(false),\n\t\tforce: jsii.Boolean(false),\n\t\tignoreErrors: jsii.Boolean(false),\n\t\tjson: jsii.Boolean(false),\n\t\tlookups: jsii.Boolean(false),\n\t\tnotices: jsii.Boolean(false),\n\t\tnotificationArns: []*string{\n\t\t\tjsii.String(\"notificationArns\"),\n\t\t},\n\t\toutput: jsii.String(\"output\"),\n\t\toutputsFile: jsii.String(\"outputsFile\"),\n\t\tparameters: map[string]*string{\n\t\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t\t},\n\t\tpathMetadata: jsii.Boolean(false),\n\t\tprofile: jsii.String(\"profile\"),\n\t\tproxy: jsii.String(\"proxy\"),\n\t\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\t\treuseAssets: []*string{\n\t\t\tjsii.String(\"reuseAssets\"),\n\t\t},\n\t\troleArn: jsii.String(\"roleArn\"),\n\t\trollback: jsii.Boolean(false),\n\t\tstacks: []*string{\n\t\t\tjsii.String(\"stacks\"),\n\t\t},\n\t\tstaging: jsii.Boolean(false),\n\t\tstrict: jsii.Boolean(false),\n\t\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\t\ttrace: jsii.Boolean(false),\n\t\tusePreviousParameters: jsii.Boolean(false),\n\t\tverbose: jsii.Boolean(false),\n\t\tversionReporting: jsii.Boolean(false),\n\t},\n\tenabled: jsii.Boolean(false),\n\texpectedMessage: jsii.String(\"expectedMessage\"),\n\texpectError: jsii.Boolean(false),\n}",
|
|
769
|
+
"version": "1"
|
|
770
|
+
},
|
|
771
|
+
"$": {
|
|
772
|
+
"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 deployCommand: cloud_assembly_schema.DeployCommand = {\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};",
|
|
773
|
+
"version": "0"
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
"location": {
|
|
777
|
+
"api": {
|
|
778
|
+
"api": "type",
|
|
779
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DeployCommand"
|
|
780
|
+
},
|
|
781
|
+
"field": {
|
|
782
|
+
"field": "example"
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
"didCompile": true,
|
|
786
|
+
"fqnsReferenced": [
|
|
787
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
788
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
789
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
790
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
|
|
791
|
+
],
|
|
792
|
+
"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 deployCommand: cloud_assembly_schema.DeployCommand = {\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/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
793
|
+
"syntaxKindCounter": {
|
|
794
|
+
"10": 16,
|
|
795
|
+
"75": 49,
|
|
796
|
+
"91": 23,
|
|
797
|
+
"153": 1,
|
|
798
|
+
"169": 1,
|
|
799
|
+
"192": 3,
|
|
800
|
+
"193": 4,
|
|
801
|
+
"194": 2,
|
|
802
|
+
"225": 1,
|
|
803
|
+
"242": 1,
|
|
804
|
+
"243": 1,
|
|
805
|
+
"254": 1,
|
|
806
|
+
"255": 1,
|
|
807
|
+
"256": 1,
|
|
808
|
+
"281": 42,
|
|
809
|
+
"290": 1
|
|
810
|
+
},
|
|
811
|
+
"fqnsFingerprint": "4ff0e777a36242b4ec55302cee22446cb2357f7a75b1cf70664eb3fe91952cc7"
|
|
812
|
+
},
|
|
813
|
+
"5fc475378a62b2de583b2786eadeb018c94f98434e093805a659ce31f8b47b8e": {
|
|
814
|
+
"translations": {
|
|
815
|
+
"python": {
|
|
816
|
+
"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\ndeploy_options = 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)",
|
|
817
|
+
"version": "2"
|
|
818
|
+
},
|
|
819
|
+
"csharp": {
|
|
820
|
+
"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\nDeployOptions deployOptions = 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};",
|
|
821
|
+
"version": "1"
|
|
822
|
+
},
|
|
823
|
+
"java": {
|
|
824
|
+
"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\nDeployOptions deployOptions = 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();",
|
|
825
|
+
"version": "1"
|
|
826
|
+
},
|
|
827
|
+
"go": {
|
|
828
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ndeployOptions := &deployOptions{\n\tall: jsii.Boolean(false),\n\tapp: jsii.String(\"app\"),\n\tassetMetadata: jsii.Boolean(false),\n\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\tchangeSetName: jsii.String(\"changeSetName\"),\n\tci: jsii.Boolean(false),\n\tcolor: jsii.Boolean(false),\n\tcontext: map[string]*string{\n\t\t\"contextKey\": jsii.String(\"context\"),\n\t},\n\tdebug: jsii.Boolean(false),\n\tec2Creds: jsii.Boolean(false),\n\texclusively: jsii.Boolean(false),\n\texecute: jsii.Boolean(false),\n\tforce: jsii.Boolean(false),\n\tignoreErrors: jsii.Boolean(false),\n\tjson: jsii.Boolean(false),\n\tlookups: jsii.Boolean(false),\n\tnotices: jsii.Boolean(false),\n\tnotificationArns: []*string{\n\t\tjsii.String(\"notificationArns\"),\n\t},\n\toutput: jsii.String(\"output\"),\n\toutputsFile: jsii.String(\"outputsFile\"),\n\tparameters: map[string]*string{\n\t\t\"parametersKey\": jsii.String(\"parameters\"),\n\t},\n\tpathMetadata: jsii.Boolean(false),\n\tprofile: jsii.String(\"profile\"),\n\tproxy: jsii.String(\"proxy\"),\n\trequireApproval: cloud_assembly_schema.requireApproval_NEVER,\n\treuseAssets: []*string{\n\t\tjsii.String(\"reuseAssets\"),\n\t},\n\troleArn: jsii.String(\"roleArn\"),\n\trollback: jsii.Boolean(false),\n\tstacks: []*string{\n\t\tjsii.String(\"stacks\"),\n\t},\n\tstaging: jsii.Boolean(false),\n\tstrict: jsii.Boolean(false),\n\ttoolkitStackName: jsii.String(\"toolkitStackName\"),\n\ttrace: jsii.Boolean(false),\n\tusePreviousParameters: jsii.Boolean(false),\n\tverbose: jsii.Boolean(false),\n\tversionReporting: jsii.Boolean(false),\n}",
|
|
829
|
+
"version": "1"
|
|
830
|
+
},
|
|
831
|
+
"$": {
|
|
832
|
+
"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 deployOptions: cloud_assembly_schema.DeployOptions = {\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};",
|
|
833
|
+
"version": "0"
|
|
834
|
+
}
|
|
835
|
+
},
|
|
836
|
+
"location": {
|
|
837
|
+
"api": {
|
|
838
|
+
"api": "type",
|
|
839
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DeployOptions"
|
|
840
|
+
},
|
|
841
|
+
"field": {
|
|
842
|
+
"field": "example"
|
|
843
|
+
}
|
|
844
|
+
},
|
|
845
|
+
"didCompile": true,
|
|
846
|
+
"fqnsReferenced": [
|
|
847
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
848
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
849
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER"
|
|
850
|
+
],
|
|
851
|
+
"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 deployOptions: cloud_assembly_schema.DeployOptions = {\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/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
852
|
+
"syntaxKindCounter": {
|
|
853
|
+
"10": 15,
|
|
854
|
+
"75": 45,
|
|
855
|
+
"91": 21,
|
|
856
|
+
"153": 1,
|
|
857
|
+
"169": 1,
|
|
858
|
+
"192": 3,
|
|
859
|
+
"193": 3,
|
|
860
|
+
"194": 2,
|
|
861
|
+
"225": 1,
|
|
862
|
+
"242": 1,
|
|
863
|
+
"243": 1,
|
|
864
|
+
"254": 1,
|
|
865
|
+
"255": 1,
|
|
866
|
+
"256": 1,
|
|
867
|
+
"281": 38,
|
|
868
|
+
"290": 1
|
|
869
|
+
},
|
|
870
|
+
"fqnsFingerprint": "09355961486ba8402673144bf03e6d46d0dac471117d5f76453974e7457e6457"
|
|
871
|
+
},
|
|
872
|
+
"1cc5adc2c6a7670c07167d9b9add60bfa86ff33152f5cc895bcd43d8ceb9136a": {
|
|
873
|
+
"translations": {
|
|
874
|
+
"python": {
|
|
875
|
+
"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\ndestroy_command = 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)",
|
|
876
|
+
"version": "2"
|
|
877
|
+
},
|
|
878
|
+
"csharp": {
|
|
879
|
+
"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\nDestroyCommand destroyCommand = 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};",
|
|
880
|
+
"version": "1"
|
|
881
|
+
},
|
|
882
|
+
"java": {
|
|
883
|
+
"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\nDestroyCommand destroyCommand = 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();",
|
|
884
|
+
"version": "1"
|
|
885
|
+
},
|
|
886
|
+
"go": {
|
|
887
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ndestroyCommand := &destroyCommand{\n\targs: &destroyOptions{\n\t\tall: jsii.Boolean(false),\n\t\tapp: jsii.String(\"app\"),\n\t\tassetMetadata: jsii.Boolean(false),\n\t\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\t\tcolor: jsii.Boolean(false),\n\t\tcontext: map[string]*string{\n\t\t\t\"contextKey\": jsii.String(\"context\"),\n\t\t},\n\t\tdebug: jsii.Boolean(false),\n\t\tec2Creds: jsii.Boolean(false),\n\t\texclusively: jsii.Boolean(false),\n\t\tforce: jsii.Boolean(false),\n\t\tignoreErrors: jsii.Boolean(false),\n\t\tjson: jsii.Boolean(false),\n\t\tlookups: jsii.Boolean(false),\n\t\tnotices: jsii.Boolean(false),\n\t\toutput: jsii.String(\"output\"),\n\t\tpathMetadata: jsii.Boolean(false),\n\t\tprofile: jsii.String(\"profile\"),\n\t\tproxy: jsii.String(\"proxy\"),\n\t\troleArn: jsii.String(\"roleArn\"),\n\t\tstacks: []*string{\n\t\t\tjsii.String(\"stacks\"),\n\t\t},\n\t\tstaging: jsii.Boolean(false),\n\t\tstrict: jsii.Boolean(false),\n\t\ttrace: jsii.Boolean(false),\n\t\tverbose: jsii.Boolean(false),\n\t\tversionReporting: jsii.Boolean(false),\n\t},\n\tenabled: jsii.Boolean(false),\n\texpectedMessage: jsii.String(\"expectedMessage\"),\n\texpectError: jsii.Boolean(false),\n}",
|
|
888
|
+
"version": "1"
|
|
889
|
+
},
|
|
890
|
+
"$": {
|
|
891
|
+
"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 destroyCommand: cloud_assembly_schema.DestroyCommand = {\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};",
|
|
892
|
+
"version": "0"
|
|
893
|
+
}
|
|
894
|
+
},
|
|
895
|
+
"location": {
|
|
896
|
+
"api": {
|
|
897
|
+
"api": "type",
|
|
898
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DestroyCommand"
|
|
899
|
+
},
|
|
900
|
+
"field": {
|
|
901
|
+
"field": "example"
|
|
902
|
+
}
|
|
903
|
+
},
|
|
904
|
+
"didCompile": true,
|
|
905
|
+
"fqnsReferenced": [
|
|
906
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
907
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions"
|
|
908
|
+
],
|
|
909
|
+
"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 destroyCommand: cloud_assembly_schema.DestroyCommand = {\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/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
910
|
+
"syntaxKindCounter": {
|
|
911
|
+
"10": 10,
|
|
912
|
+
"75": 34,
|
|
913
|
+
"91": 19,
|
|
914
|
+
"153": 1,
|
|
915
|
+
"169": 1,
|
|
916
|
+
"192": 1,
|
|
917
|
+
"193": 3,
|
|
918
|
+
"225": 1,
|
|
919
|
+
"242": 1,
|
|
920
|
+
"243": 1,
|
|
921
|
+
"254": 1,
|
|
922
|
+
"255": 1,
|
|
923
|
+
"256": 1,
|
|
924
|
+
"281": 30,
|
|
925
|
+
"290": 1
|
|
926
|
+
},
|
|
927
|
+
"fqnsFingerprint": "7fcec99496b925963a3bc30adfc7a8dc91a9313bc59f195a46abfe90eed0023e"
|
|
928
|
+
},
|
|
929
|
+
"8fc0cec17f98544a9374b423248ba8d28319962769e1e5c387945169f3523931": {
|
|
930
|
+
"translations": {
|
|
931
|
+
"python": {
|
|
932
|
+
"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\ndestroy_options = 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)",
|
|
933
|
+
"version": "2"
|
|
934
|
+
},
|
|
935
|
+
"csharp": {
|
|
936
|
+
"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\nDestroyOptions destroyOptions = 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};",
|
|
937
|
+
"version": "1"
|
|
938
|
+
},
|
|
939
|
+
"java": {
|
|
940
|
+
"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\nDestroyOptions destroyOptions = 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();",
|
|
941
|
+
"version": "1"
|
|
942
|
+
},
|
|
943
|
+
"go": {
|
|
944
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ndestroyOptions := &destroyOptions{\n\tall: jsii.Boolean(false),\n\tapp: jsii.String(\"app\"),\n\tassetMetadata: jsii.Boolean(false),\n\tcaBundlePath: jsii.String(\"caBundlePath\"),\n\tcolor: jsii.Boolean(false),\n\tcontext: map[string]*string{\n\t\t\"contextKey\": jsii.String(\"context\"),\n\t},\n\tdebug: jsii.Boolean(false),\n\tec2Creds: jsii.Boolean(false),\n\texclusively: jsii.Boolean(false),\n\tforce: jsii.Boolean(false),\n\tignoreErrors: jsii.Boolean(false),\n\tjson: jsii.Boolean(false),\n\tlookups: jsii.Boolean(false),\n\tnotices: jsii.Boolean(false),\n\toutput: jsii.String(\"output\"),\n\tpathMetadata: jsii.Boolean(false),\n\tprofile: jsii.String(\"profile\"),\n\tproxy: jsii.String(\"proxy\"),\n\troleArn: jsii.String(\"roleArn\"),\n\tstacks: []*string{\n\t\tjsii.String(\"stacks\"),\n\t},\n\tstaging: jsii.Boolean(false),\n\tstrict: jsii.Boolean(false),\n\ttrace: jsii.Boolean(false),\n\tverbose: jsii.Boolean(false),\n\tversionReporting: jsii.Boolean(false),\n}",
|
|
945
|
+
"version": "1"
|
|
946
|
+
},
|
|
947
|
+
"$": {
|
|
948
|
+
"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 destroyOptions: cloud_assembly_schema.DestroyOptions = {\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};",
|
|
949
|
+
"version": "0"
|
|
950
|
+
}
|
|
951
|
+
},
|
|
952
|
+
"location": {
|
|
953
|
+
"api": {
|
|
954
|
+
"api": "type",
|
|
955
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.DestroyOptions"
|
|
956
|
+
},
|
|
957
|
+
"field": {
|
|
958
|
+
"field": "example"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"didCompile": true,
|
|
962
|
+
"fqnsReferenced": [
|
|
963
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions"
|
|
964
|
+
],
|
|
965
|
+
"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 destroyOptions: cloud_assembly_schema.DestroyOptions = {\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/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
966
|
+
"syntaxKindCounter": {
|
|
967
|
+
"10": 9,
|
|
968
|
+
"75": 30,
|
|
969
|
+
"91": 17,
|
|
970
|
+
"153": 1,
|
|
971
|
+
"169": 1,
|
|
972
|
+
"192": 1,
|
|
973
|
+
"193": 2,
|
|
974
|
+
"225": 1,
|
|
975
|
+
"242": 1,
|
|
976
|
+
"243": 1,
|
|
977
|
+
"254": 1,
|
|
978
|
+
"255": 1,
|
|
979
|
+
"256": 1,
|
|
980
|
+
"281": 26,
|
|
981
|
+
"290": 1
|
|
982
|
+
},
|
|
983
|
+
"fqnsFingerprint": "696ab8e3123c74a19b88226c980e065a07c1f8784f57e4445833869b4f52e55f"
|
|
984
|
+
},
|
|
579
985
|
"13514bf756685ec4825817ac806f4a7510034d11baa93291d3d8749ecc9bc6e2": {
|
|
580
986
|
"translations": {
|
|
581
987
|
"python": {
|
|
@@ -1022,6 +1428,61 @@
|
|
|
1022
1428
|
},
|
|
1023
1429
|
"fqnsFingerprint": "cce5010fbb67f8f66c9253b4457f7a3f9dbbde97c641fb1b4a4302ea3a6d669c"
|
|
1024
1430
|
},
|
|
1431
|
+
"85f6ffd9f64c3dedd5848e184993a6f65f0c49e432f9f7b63824d5eeacdf62aa": {
|
|
1432
|
+
"translations": {
|
|
1433
|
+
"python": {
|
|
1434
|
+
"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\nhooks = cloud_assembly_schema.Hooks(\n post_deploy=[\"postDeploy\"],\n post_destroy=[\"postDestroy\"],\n pre_deploy=[\"preDeploy\"],\n pre_destroy=[\"preDestroy\"]\n)",
|
|
1435
|
+
"version": "2"
|
|
1436
|
+
},
|
|
1437
|
+
"csharp": {
|
|
1438
|
+
"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\nHooks hooks = new Hooks {\n PostDeploy = new [] { \"postDeploy\" },\n PostDestroy = new [] { \"postDestroy\" },\n PreDeploy = new [] { \"preDeploy\" },\n PreDestroy = new [] { \"preDestroy\" }\n};",
|
|
1439
|
+
"version": "1"
|
|
1440
|
+
},
|
|
1441
|
+
"java": {
|
|
1442
|
+
"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\nHooks 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();",
|
|
1443
|
+
"version": "1"
|
|
1444
|
+
},
|
|
1445
|
+
"go": {
|
|
1446
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\nhooks := &hooks{\n\tpostDeploy: []*string{\n\t\tjsii.String(\"postDeploy\"),\n\t},\n\tpostDestroy: []*string{\n\t\tjsii.String(\"postDestroy\"),\n\t},\n\tpreDeploy: []*string{\n\t\tjsii.String(\"preDeploy\"),\n\t},\n\tpreDestroy: []*string{\n\t\tjsii.String(\"preDestroy\"),\n\t},\n}",
|
|
1447
|
+
"version": "1"
|
|
1448
|
+
},
|
|
1449
|
+
"$": {
|
|
1450
|
+
"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 hooks: cloud_assembly_schema.Hooks = {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n};",
|
|
1451
|
+
"version": "0"
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"location": {
|
|
1455
|
+
"api": {
|
|
1456
|
+
"api": "type",
|
|
1457
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.Hooks"
|
|
1458
|
+
},
|
|
1459
|
+
"field": {
|
|
1460
|
+
"field": "example"
|
|
1461
|
+
}
|
|
1462
|
+
},
|
|
1463
|
+
"didCompile": true,
|
|
1464
|
+
"fqnsReferenced": [
|
|
1465
|
+
"@aws-cdk/cloud-assembly-schema.Hooks"
|
|
1466
|
+
],
|
|
1467
|
+
"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 hooks: cloud_assembly_schema.Hooks = {\n postDeploy: ['postDeploy'],\n postDestroy: ['postDestroy'],\n preDeploy: ['preDeploy'],\n preDestroy: ['preDestroy'],\n};\n/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
1468
|
+
"syntaxKindCounter": {
|
|
1469
|
+
"10": 5,
|
|
1470
|
+
"75": 8,
|
|
1471
|
+
"153": 1,
|
|
1472
|
+
"169": 1,
|
|
1473
|
+
"192": 4,
|
|
1474
|
+
"193": 1,
|
|
1475
|
+
"225": 1,
|
|
1476
|
+
"242": 1,
|
|
1477
|
+
"243": 1,
|
|
1478
|
+
"254": 1,
|
|
1479
|
+
"255": 1,
|
|
1480
|
+
"256": 1,
|
|
1481
|
+
"281": 4,
|
|
1482
|
+
"290": 1
|
|
1483
|
+
},
|
|
1484
|
+
"fqnsFingerprint": "8c82ece3af8968ea01c6aba3905bef2be81ac6b19318e6aaf0514ef6ae113fe5"
|
|
1485
|
+
},
|
|
1025
1486
|
"14328c9839269071fac0c6ef1f2ebd6a709366b95ee744ea64e4ea68990540e0": {
|
|
1026
1487
|
"translations": {
|
|
1027
1488
|
"python": {
|
|
@@ -1077,6 +1538,72 @@
|
|
|
1077
1538
|
},
|
|
1078
1539
|
"fqnsFingerprint": "047059be64704a685d7e0f39d3e38c24b1a7fc585a887bfdae03dfb15dbf38d9"
|
|
1079
1540
|
},
|
|
1541
|
+
"d2d97be535bc1d00381493cad842d1414bf69f21b5294a5cbb2a7918469011a5": {
|
|
1542
|
+
"translations": {
|
|
1543
|
+
"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)",
|
|
1545
|
+
"version": "2"
|
|
1546
|
+
},
|
|
1547
|
+
"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};",
|
|
1549
|
+
"version": "1"
|
|
1550
|
+
},
|
|
1551
|
+
"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();",
|
|
1553
|
+
"version": "1"
|
|
1554
|
+
},
|
|
1555
|
+
"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}",
|
|
1557
|
+
"version": "1"
|
|
1558
|
+
},
|
|
1559
|
+
"$": {
|
|
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};",
|
|
1561
|
+
"version": "0"
|
|
1562
|
+
}
|
|
1563
|
+
},
|
|
1564
|
+
"location": {
|
|
1565
|
+
"api": {
|
|
1566
|
+
"api": "type",
|
|
1567
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.IntegManifest"
|
|
1568
|
+
},
|
|
1569
|
+
"field": {
|
|
1570
|
+
"field": "example"
|
|
1571
|
+
}
|
|
1572
|
+
},
|
|
1573
|
+
"didCompile": true,
|
|
1574
|
+
"fqnsReferenced": [
|
|
1575
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
1576
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
1577
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
1578
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
1579
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
1580
|
+
"@aws-cdk/cloud-assembly-schema.Hooks",
|
|
1581
|
+
"@aws-cdk/cloud-assembly-schema.IntegManifest",
|
|
1582
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
1583
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
1584
|
+
"@aws-cdk/cloud-assembly-schema.TestCase"
|
|
1585
|
+
],
|
|
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} }",
|
|
1587
|
+
"syntaxKindCounter": {
|
|
1588
|
+
"10": 33,
|
|
1589
|
+
"75": 96,
|
|
1590
|
+
"91": 45,
|
|
1591
|
+
"153": 1,
|
|
1592
|
+
"169": 1,
|
|
1593
|
+
"192": 11,
|
|
1594
|
+
"193": 12,
|
|
1595
|
+
"194": 2,
|
|
1596
|
+
"225": 1,
|
|
1597
|
+
"242": 1,
|
|
1598
|
+
"243": 1,
|
|
1599
|
+
"254": 1,
|
|
1600
|
+
"255": 1,
|
|
1601
|
+
"256": 1,
|
|
1602
|
+
"281": 89,
|
|
1603
|
+
"290": 1
|
|
1604
|
+
},
|
|
1605
|
+
"fqnsFingerprint": "bcc337f30444939a473d200590b177697681554c69d3e17af159f8f7d8fe3033"
|
|
1606
|
+
},
|
|
1080
1607
|
"ace2c0f8cefd8405e123e856adc09df724751fa6d2d4aaee28f73a730ea65155": {
|
|
1081
1608
|
"translations": {
|
|
1082
1609
|
"python": {
|
|
@@ -1800,6 +2327,136 @@
|
|
|
1800
2327
|
},
|
|
1801
2328
|
"fqnsFingerprint": "00a9c22e7f063f4897295481ff2ff2240c6dd977d4c3724da8d90f976831fe5d"
|
|
1802
2329
|
},
|
|
2330
|
+
"0320a574665dcbe406563f4d4194924764edac6f13143a067e946caf5336ac13": {
|
|
2331
|
+
"translations": {
|
|
2332
|
+
"python": {
|
|
2333
|
+
"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_case = 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)",
|
|
2334
|
+
"version": "2"
|
|
2335
|
+
},
|
|
2336
|
+
"csharp": {
|
|
2337
|
+
"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\nTestCase testCase = 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};",
|
|
2338
|
+
"version": "1"
|
|
2339
|
+
},
|
|
2340
|
+
"java": {
|
|
2341
|
+
"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\nTestCase testCase = 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();",
|
|
2342
|
+
"version": "1"
|
|
2343
|
+
},
|
|
2344
|
+
"go": {
|
|
2345
|
+
"source": "import cloud_assembly_schema \"github.com/aws-samples/dummy/awscdkcloudassemblyschema\"\ntestCase := &testCase{\n\tstacks: []*string{\n\t\tjsii.String(\"stacks\"),\n\t},\n\n\t// the properties below are optional\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}",
|
|
2346
|
+
"version": "1"
|
|
2347
|
+
},
|
|
2348
|
+
"$": {
|
|
2349
|
+
"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 testCase: cloud_assembly_schema.TestCase = {\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};",
|
|
2350
|
+
"version": "0"
|
|
2351
|
+
}
|
|
2352
|
+
},
|
|
2353
|
+
"location": {
|
|
2354
|
+
"api": {
|
|
2355
|
+
"api": "type",
|
|
2356
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.TestCase"
|
|
2357
|
+
},
|
|
2358
|
+
"field": {
|
|
2359
|
+
"field": "example"
|
|
2360
|
+
}
|
|
2361
|
+
},
|
|
2362
|
+
"didCompile": true,
|
|
2363
|
+
"fqnsReferenced": [
|
|
2364
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
2365
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
2366
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
2367
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
2368
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
2369
|
+
"@aws-cdk/cloud-assembly-schema.Hooks",
|
|
2370
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
2371
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
2372
|
+
"@aws-cdk/cloud-assembly-schema.TestCase"
|
|
2373
|
+
],
|
|
2374
|
+
"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 testCase: cloud_assembly_schema.TestCase = {\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/// !hide\n// Code snippet ended before !hide marker above\n} }",
|
|
2375
|
+
"syntaxKindCounter": {
|
|
2376
|
+
"10": 32,
|
|
2377
|
+
"75": 92,
|
|
2378
|
+
"91": 44,
|
|
2379
|
+
"153": 1,
|
|
2380
|
+
"169": 1,
|
|
2381
|
+
"192": 11,
|
|
2382
|
+
"193": 10,
|
|
2383
|
+
"194": 2,
|
|
2384
|
+
"225": 1,
|
|
2385
|
+
"242": 1,
|
|
2386
|
+
"243": 1,
|
|
2387
|
+
"254": 1,
|
|
2388
|
+
"255": 1,
|
|
2389
|
+
"256": 1,
|
|
2390
|
+
"281": 85,
|
|
2391
|
+
"290": 1
|
|
2392
|
+
},
|
|
2393
|
+
"fqnsFingerprint": "7a4a65ed03956d821ae63c3132877ac35f7f81c79c4975a4e678860f078cbb91"
|
|
2394
|
+
},
|
|
2395
|
+
"2f3dd325771b352930f14f196545716d8018a2fcbf0b9d9a3f3dc0dc5d3e5f6c": {
|
|
2396
|
+
"translations": {
|
|
2397
|
+
"python": {
|
|
2398
|
+
"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)",
|
|
2399
|
+
"version": "2"
|
|
2400
|
+
},
|
|
2401
|
+
"csharp": {
|
|
2402
|
+
"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};",
|
|
2403
|
+
"version": "1"
|
|
2404
|
+
},
|
|
2405
|
+
"java": {
|
|
2406
|
+
"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();",
|
|
2407
|
+
"version": "1"
|
|
2408
|
+
},
|
|
2409
|
+
"go": {
|
|
2410
|
+
"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}",
|
|
2411
|
+
"version": "1"
|
|
2412
|
+
},
|
|
2413
|
+
"$": {
|
|
2414
|
+
"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};",
|
|
2415
|
+
"version": "0"
|
|
2416
|
+
}
|
|
2417
|
+
},
|
|
2418
|
+
"location": {
|
|
2419
|
+
"api": {
|
|
2420
|
+
"api": "type",
|
|
2421
|
+
"fqn": "@aws-cdk/cloud-assembly-schema.TestOptions"
|
|
2422
|
+
},
|
|
2423
|
+
"field": {
|
|
2424
|
+
"field": "example"
|
|
2425
|
+
}
|
|
2426
|
+
},
|
|
2427
|
+
"didCompile": true,
|
|
2428
|
+
"fqnsReferenced": [
|
|
2429
|
+
"@aws-cdk/cloud-assembly-schema.CdkCommands",
|
|
2430
|
+
"@aws-cdk/cloud-assembly-schema.DeployCommand",
|
|
2431
|
+
"@aws-cdk/cloud-assembly-schema.DeployOptions",
|
|
2432
|
+
"@aws-cdk/cloud-assembly-schema.DestroyCommand",
|
|
2433
|
+
"@aws-cdk/cloud-assembly-schema.DestroyOptions",
|
|
2434
|
+
"@aws-cdk/cloud-assembly-schema.Hooks",
|
|
2435
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval",
|
|
2436
|
+
"@aws-cdk/cloud-assembly-schema.RequireApproval#NEVER",
|
|
2437
|
+
"@aws-cdk/cloud-assembly-schema.TestOptions"
|
|
2438
|
+
],
|
|
2439
|
+
"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} }",
|
|
2440
|
+
"syntaxKindCounter": {
|
|
2441
|
+
"10": 31,
|
|
2442
|
+
"75": 91,
|
|
2443
|
+
"91": 44,
|
|
2444
|
+
"153": 1,
|
|
2445
|
+
"169": 1,
|
|
2446
|
+
"192": 10,
|
|
2447
|
+
"193": 10,
|
|
2448
|
+
"194": 2,
|
|
2449
|
+
"225": 1,
|
|
2450
|
+
"242": 1,
|
|
2451
|
+
"243": 1,
|
|
2452
|
+
"254": 1,
|
|
2453
|
+
"255": 1,
|
|
2454
|
+
"256": 1,
|
|
2455
|
+
"281": 84,
|
|
2456
|
+
"290": 1
|
|
2457
|
+
},
|
|
2458
|
+
"fqnsFingerprint": "2b670620b6bd6bf18bef714178abeb6b1c2c4165bfbfa9443f3340843969c643"
|
|
2459
|
+
},
|
|
1803
2460
|
"ea1bc4f88d5cfeea825e5d51c026f05a15345d5c410859f91aae9efe2897813a": {
|
|
1804
2461
|
"translations": {
|
|
1805
2462
|
"python": {
|