projen-pipelines 0.0.61 → 0.0.63
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 +346 -141
- package/API.md +259 -15
- package/README.md +14 -0
- package/lib/awscdk/base.d.ts +32 -3
- package/lib/awscdk/base.js +29 -2
- package/lib/awscdk/bash.js +2 -2
- package/lib/awscdk/github.d.ts +6 -1
- package/lib/awscdk/github.js +146 -124
- package/lib/awscdk/gitlab.d.ts +6 -1
- package/lib/awscdk/gitlab.js +95 -50
- package/lib/awscdk/index.js +7 -3
- package/lib/engine.js +2 -2
- package/lib/index.js +7 -3
- package/lib/release.js +7 -7
- package/lib/steps/artifact-steps.d.ts +21 -0
- package/lib/steps/artifact-steps.js +56 -0
- package/lib/steps/aws-assume-role.step.d.ts +22 -0
- package/lib/steps/aws-assume-role.step.js +42 -0
- package/lib/steps/index.js +7 -3
- package/lib/steps/step.d.ts +14 -6
- package/lib/steps/step.js +29 -9
- package/package.json +16 -19
package/.jsii
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"pipelines-release": "lib/release.js"
|
|
12
12
|
},
|
|
13
13
|
"bundled": {
|
|
14
|
-
"standard-version": "^9
|
|
14
|
+
"standard-version": "^9"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"constructs": "^10.3.0",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"stability": "stable"
|
|
89
89
|
},
|
|
90
90
|
"homepage": "https://github.com/taimos/projen-pipelines.git",
|
|
91
|
-
"jsiiVersion": "
|
|
91
|
+
"jsiiVersion": "5.4.18 (build db6e7f8)",
|
|
92
92
|
"keywords": [
|
|
93
93
|
"aws",
|
|
94
94
|
"cdk"
|
|
@@ -104,7 +104,7 @@
|
|
|
104
104
|
},
|
|
105
105
|
"name": "projen-pipelines",
|
|
106
106
|
"readme": {
|
|
107
|
-
"markdown": "# Projen Pipelines\n\n[](https://www.npmjs.com/package/projen-pipelines)\n\n\nProjen Pipelines is a projen library that provides high-level abstractions for defining continuous delivery (CD) pipelines for AWS CDK applications.\nIt is specifically designed to work with the projen project configuration engine.\n\nThis library provides high-level abstractions for defining multi-environment and multi-account AWS CDK applications with ease.\nWith this library, you can handle complex deployment scenarios with less code and manage your AWS infrastructure in a more efficient and straightforward way.\n## How Projen Pipelines work\n\nUnder the hood, after you defined the pipeline and selected target engine that you want to work on, we are using code generation methods that will create - in your project - the required CI/CD pipeline.\n\nWe are considering to allow selecting multiple engines going forward - please let us know if this is a feature you would use or not!\n\n## Getting Started\n\n### Installation\n\nTo install the package, add the package `projen-pipelines` to your projects devDeps in your projen configuration file.\n\nAfter installing the package, you can import and use the constructs to define your CDK Pipelines.\n\nYou will also have to setup an IAM role that can be used by GitHub Actions. You can find a tutorial on how set this up here: [Configuring OpenID Connect in Amazon Web Services](https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services)\n\n### Usage\n\nYou can start using the constructs provided by Projen Pipelines in your AWS CDK applications. Here's a brief example:\n\n```typescript\nimport { awscdk } from 'projen';\nimport { GithubCDKPipeline } from 'projen-pipelines';\n\n// Define your AWS CDK TypeScript App\nconst app = new awscdk.AwsCdkTypeScriptApp({\n cdkVersion: '2.80.0',\n name: 'my-awesome-app',\n defaultReleaseBranch: 'main',\n devDeps: [\n 'projen-pipelines',\n ],\n});\n\nproject.package.addPackageResolutions('projen');\n\n// Create the pipeline\nnew GithubCDKPipeline(app, {\n stackPrefix: 'MyApp',\n iamRoleArns: {\n default: 'arn:aws:iam::123456789012:role/GithubDeploymentRole',\n },\n pkgNamespace: '@company-assemblies',\n useGithubPackagesForAssembly: true,\n stages: [\n {\n name: 'dev',\n env: { account: '123456789012', region: 'eu-central-1' },\n }, {\n name: 'prod',\n manualApproval: true,\n env: {account: '123456789012', region: 'eu-central-1' },\n }],\n});\n```\n\nAfter running projen (`npx projen`) a new file called `src/app.ts` will be created and contain a specialized CDK App class for your project.\n\nYou can then use this in your `main.ts` to configure your deployment.\n\n```typescript\nimport { PipelineApp } from './app';\nimport { BackendStack } from './stack';\n\nconst app = new PipelineApp({\n provideDevStack: (scope, id, props) => {\n return new BackendStack(scope, id, {\n ...props,\n apiHostname: 'api-dev',\n myConfigSetting: 'value-for-dev',\n });\n },\n provideProdStack: (scope, id, props) => {\n return new BackendStack(scope, id, {\n ...props,\n apiHostname: 'api',\n myConfigSetting: 'value-for-prod',\n });\n },\n providePersonalStack: (scope, id, props) => {\n return new BackendStack(scope, id, {\n ...props,\n apiHostname: `api-${props.stageName}`,\n myConfigSetting: 'value-for-personal-stage',\n });\n },\n});\n\napp.synth();\n```\n\n### Setting Up Trust Relationships Between Accounts\n\nWhen planning to manage multiple staging environments, you will need to establish trust relationships. This process centralizes deployment control, improving operational efficiency and security by consolidating deployment management through a singular, monitored channel. Here is a simplified diagram for the setup:\n\n\n\n#### Step 1: Bootstrapping Each Account\n\nBootstrapping initializes the AWS CDK environment in each account. It prepares the account to work with AWS CDK apps deployed from other accounts. Use the `cdk bootstrap` command for this purpose. Replace `<deployment_account_id>` with the actual AWS account ID of your deployment account.\n\nYou can use the [CloudShell](https://aws.amazon.com/cloudshell/) to bootstrap each staging account:\n\n```bash\ncdk bootstrap --trust <deployment_account_id> --cloudformation-execution-policies \"arn:aws:iam::aws:policy/AdministratorAccess\"\n```\n\n**Note:**\n\nWhile `AdministratorAccess` grants full access to all AWS services and resources, it's not recommended for production environments due to security risks. Instead, create custom IAM policies that grant only the necessary permissions required for deployment operations.\n\n### Deployment\n\nThe `<Engine>CDKPipeline` class creates and adds several tasks to the projen project that then can be used in your pipeline to deploy your application to AWS.\n\nHere's a brief description of each one:\n\n1. **deploy:personal** - This task deploys the application's personal stage, which is a distinct, isolated deployment of the application. The personal stage is intended for personal use, such as testing and development.\n\n2. **watch:personal** - This task deploys the personal stage of the application in watch mode. In this mode, the AWS CDK monitors your application source files for changes, automatically re-synthesizing and deploying when it detects any changes.\n\n3. **diff:personal** - This task compares the deployed personal stage with the current state of the application code. It's used to understand what changes would be made if the application were deployed.\n\n4. **destroy:personal** - This task destroys the resources created for the personal stage of the application.\n\n5. **deploy:feature** - This task deploys the application's feature stage. The feature stage is used for new features testing before these are merged into the main branch.\n\n6. **diff:feature** - This task is similar to `diff:personal`, but for the feature stage.\n\n7. **destroy:feature** - This task destroys the resources created for the feature stage of the application.\n\n8. **deploy:<stageName>** - This task deploys a specific stage of the application (like 'dev' or 'prod').\n\n9. **diff:<stageName>** - This task compares the specified application stage with the current state of the application code.\n\n10. **publish:assets** - This task publishes the CDK assets to all accounts. This is useful when the CDK application uses assets like Docker images or files from the S3 bucket.\n\n11. **bump** - This task bumps the version based on the latest git tag and pushes the updated tag to the git repository.\n\n12. **release:push-assembly** - This task creates a manifest, bumps the version without creating a git tag, and publishes the cloud assembly to your registry.\n\nRemember that these tasks are created and managed automatically by the `CDKPipeline` class. You can run these tasks using the `npx projen TASK_NAME` command.\n\n## Contributing\n### By raising feature requests or issues\nUse the Github integrated \"[Issues](https://github.com/taimos/projen-pipelines/issues/new)\" view to create an item that you would love to have added to our open source project.\n\n***No request is too big or too small*** - get your thoughts created and we'll get back to you if we have questions!\n\n\n### By committing code\n\nWe welcome all contributions to Projen Pipelines! Here's how you can get started:\n\n1. **Fork the Repository**: Click the 'Fork' button at the top right of this page to duplicate this repository in your GitHub account.\n\n2. **Clone your Fork**: Clone the forked repository to your local machine.\n\n```bash\ngit clone https://github.com/<your_username>/projen-pipelines.git\n```\n\n3. **Create a Branch**: To keep your work organized, create a branch for your contribution.\n\n```bash\ngit checkout -b my-branch\n```\n\n4. **Make your Changes**: Make your changes, additions, or fixes to the codebase. Remember to follow the existing code style.\n\n5. **Test your Changes**: Before committing your changes, make sure to test them to ensure they work as expected and do not introduce bugs.\n\n6. **Commit your Changes**: Commit your changes with a descriptive commit message using conventional commit messages.\n\n```bash\ngit commit -m \"feat: Your descriptive commit message\"\n```\n\n7. **Push to your Fork**: Push your commits to the branch in your forked repository.\n\n```bash\ngit push origin my-branch\n```\n\n8. **Submit a Pull Request**: Once your changes are ready to be reviewed, create a pull request from your forked repository's branch into the `main` branch of this repository.\n\nYour pull request will be reviewed and hopefully merged quickly. Thanks for contributing!\n"
|
|
107
|
+
"markdown": "# Projen Pipelines\n\n[](https://www.npmjs.com/package/projen-pipelines)\n\n\nProjen Pipelines is a projen library that provides high-level abstractions for defining continuous delivery (CD) pipelines for AWS CDK applications.\nIt is specifically designed to work with the projen project configuration engine.\n\nThis library provides high-level abstractions for defining multi-environment and multi-account AWS CDK applications with ease.\nWith this library, you can handle complex deployment scenarios with less code and manage your AWS infrastructure in a more efficient and straightforward way.\n## How Projen Pipelines work\n\nUnder the hood, after you defined the pipeline and selected target engine that you want to work on, we are using code generation methods that will create - in your project - the required CI/CD pipeline.\n\nWe are considering to allow selecting multiple engines going forward - please let us know if this is a feature you would use or not!\n\n## Getting Started\n\n### Installation\n\nTo install the package, add the package `projen-pipelines` to your projects devDeps in your projen configuration file.\n\nAfter installing the package, you can import and use the constructs to define your CDK Pipelines.\n\nYou will also have to setup an IAM role that can be used by GitHub Actions. You can find a tutorial on how set this up here: [Configuring OpenID Connect in Amazon Web Services](https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services)\n\n### Usage\n\nYou can start using the constructs provided by Projen Pipelines in your AWS CDK applications. Here's a brief example:\n\n```typescript\nimport { awscdk } from 'projen';\nimport { GithubCDKPipeline } from 'projen-pipelines';\n\n// Define your AWS CDK TypeScript App\nconst app = new awscdk.AwsCdkTypeScriptApp({\n cdkVersion: '2.80.0',\n name: 'my-awesome-app',\n defaultReleaseBranch: 'main',\n devDeps: [\n 'projen-pipelines',\n ],\n});\n\nproject.package.addPackageResolutions('projen');\n\n// Create the pipeline\nnew GithubCDKPipeline(app, {\n stackPrefix: 'MyApp',\n iamRoleArns: {\n default: 'arn:aws:iam::123456789012:role/GithubDeploymentRole',\n },\n pkgNamespace: '@company-assemblies',\n useGithubPackagesForAssembly: true,\n stages: [\n {\n name: 'dev',\n env: { account: '123456789012', region: 'eu-central-1' },\n }, {\n name: 'prod',\n manualApproval: true,\n env: {account: '123456789012', region: 'eu-central-1' },\n }],\n});\n```\n\nAfter running projen (`npx projen`) a new file called `src/app.ts` will be created and contain a specialized CDK App class for your project.\n\nYou can then use this in your `main.ts` to configure your deployment.\n\n```typescript\nimport { PipelineApp } from './app';\nimport { BackendStack } from './stack';\n\nconst app = new PipelineApp({\n provideDevStack: (scope, id, props) => {\n return new BackendStack(scope, id, {\n ...props,\n apiHostname: 'api-dev',\n myConfigSetting: 'value-for-dev',\n });\n },\n provideProdStack: (scope, id, props) => {\n return new BackendStack(scope, id, {\n ...props,\n apiHostname: 'api',\n myConfigSetting: 'value-for-prod',\n });\n },\n providePersonalStack: (scope, id, props) => {\n return new BackendStack(scope, id, {\n ...props,\n apiHostname: `api-${props.stageName}`,\n myConfigSetting: 'value-for-personal-stage',\n });\n },\n});\n\napp.synth();\n```\n\n### Setting Up Trust Relationships Between Accounts\n\nWhen planning to manage multiple staging environments, you will need to establish trust relationships. This process centralizes deployment control, improving operational efficiency and security by consolidating deployment management through a singular, monitored channel. Here is a simplified diagram for the setup:\n\n\n\n#### Step 1: Bootstrapping Each Account\n\nBootstrapping initializes the AWS CDK environment in each account. It prepares the account to work with AWS CDK apps deployed from other accounts. Use the `cdk bootstrap` command for this purpose. Replace `<deployment_account_id>` with the actual AWS account ID of your deployment account.\n\nYou can use the [CloudShell](https://aws.amazon.com/cloudshell/) to bootstrap each staging account:\n\n```bash\ncdk bootstrap --trust <deployment_account_id> --cloudformation-execution-policies \"arn:aws:iam::aws:policy/AdministratorAccess\"\n```\n\n**Note:**\n\nWhile `AdministratorAccess` grants full access to all AWS services and resources, it's not recommended for production environments due to security risks. Instead, create custom IAM policies that grant only the necessary permissions required for deployment operations.\n\n### Deployment\n\nThe `<Engine>CDKPipeline` class creates and adds several tasks to the projen project that then can be used in your pipeline to deploy your application to AWS.\n\nHere's a brief description of each one:\n\n1. **deploy:personal** - This task deploys the application's personal stage, which is a distinct, isolated deployment of the application. The personal stage is intended for personal use, such as testing and development.\n\n2. **watch:personal** - This task deploys the personal stage of the application in watch mode. In this mode, the AWS CDK monitors your application source files for changes, automatically re-synthesizing and deploying when it detects any changes.\n\n3. **diff:personal** - This task compares the deployed personal stage with the current state of the application code. It's used to understand what changes would be made if the application were deployed.\n\n4. **destroy:personal** - This task destroys the resources created for the personal stage of the application.\n\n5. **deploy:feature** - This task deploys the application's feature stage. The feature stage is used for new features testing before these are merged into the main branch.\n\n6. **diff:feature** - This task is similar to `diff:personal`, but for the feature stage.\n\n7. **destroy:feature** - This task destroys the resources created for the feature stage of the application.\n\n8. **deploy:<stageName>** - This task deploys a specific stage of the application (like 'dev' or 'prod').\n\n9. **diff:<stageName>** - This task compares the specified application stage with the current state of the application code.\n\n10. **publish:assets** - This task publishes the CDK assets to all accounts. This is useful when the CDK application uses assets like Docker images or files from the S3 bucket.\n\n11. **bump** - This task bumps the version based on the latest git tag and pushes the updated tag to the git repository.\n\n12. **release:push-assembly** - This task creates a manifest, bumps the version without creating a git tag, and publishes the cloud assembly to your registry.\n\nRemember that these tasks are created and managed automatically by the `CDKPipeline` class. You can run these tasks using the `npx projen TASK_NAME` command.\n\n## Contributing\n### By raising feature requests or issues\nUse the Github integrated \"[Issues](https://github.com/taimos/projen-pipelines/issues/new)\" view to create an item that you would love to have added to our open source project.\n\n***No request is too big or too small*** - get your thoughts created and we'll get back to you if we have questions!\n\n\n### By committing code\n\nWe welcome all contributions to Projen Pipelines! Here's how you can get started:\n\n1. **Fork the Repository**: Click the 'Fork' button at the top right of this page to duplicate this repository in your GitHub account.\n\n2. **Clone your Fork**: Clone the forked repository to your local machine.\n\n```bash\ngit clone https://github.com/<your_username>/projen-pipelines.git\n```\n\n3. **Create a Branch**: To keep your work organized, create a branch for your contribution.\n\n```bash\ngit checkout -b my-branch\n```\n\n4. **Make your Changes**: Make your changes, additions, or fixes to the codebase. Remember to follow the existing code style.\n\n5. **Test your Changes**: Before committing your changes, make sure to test them to ensure they work as expected and do not introduce bugs.\n\n6. **Commit your Changes**: Commit your changes with a descriptive commit message using conventional commit messages.\n\n```bash\ngit commit -m \"feat: Your descriptive commit message\"\n```\n\n7. **Push to your Fork**: Push your commits to the branch in your forked repository.\n\n```bash\ngit push origin my-branch\n```\n\n8. **Submit a Pull Request**: Once your changes are ready to be reviewed, create a pull request from your forked repository's branch into the `main` branch of this repository.\n\nYour pull request will be reviewed and hopefully merged quickly. Thanks for contributing!\n\n## Known issues\n\n### Environment variable not recognized during `npx projen`\n\nWhen attempting to run `npx projen`, users may encounter an error related to environment variable substitution within configuration files. Specifically, the `${GITHUB_TOKEN}` placeholder fails to be replaced.\n\n#### Solution\n\nTo resolve this issue, prefix the `npx projen` command with the `GITHUB_TOKEN=` environment variable:\n\n```bash\nGITHUB_TOKEN= npx projen\n```\n"
|
|
108
108
|
},
|
|
109
109
|
"repository": {
|
|
110
110
|
"type": "git",
|
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
"kind": "interface",
|
|
203
203
|
"locationInModule": {
|
|
204
204
|
"filename": "src/steps/step.ts",
|
|
205
|
-
"line":
|
|
205
|
+
"line": 41
|
|
206
206
|
},
|
|
207
207
|
"name": "BashStepConfig",
|
|
208
208
|
"properties": [
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"immutable": true,
|
|
216
216
|
"locationInModule": {
|
|
217
217
|
"filename": "src/steps/step.ts",
|
|
218
|
-
"line":
|
|
218
|
+
"line": 44
|
|
219
219
|
},
|
|
220
220
|
"name": "commands",
|
|
221
221
|
"type": {
|
|
@@ -246,7 +246,7 @@
|
|
|
246
246
|
},
|
|
247
247
|
"locationInModule": {
|
|
248
248
|
"filename": "src/awscdk/base.ts",
|
|
249
|
-
"line":
|
|
249
|
+
"line": 145
|
|
250
250
|
},
|
|
251
251
|
"parameters": [
|
|
252
252
|
{
|
|
@@ -266,7 +266,7 @@
|
|
|
266
266
|
"kind": "class",
|
|
267
267
|
"locationInModule": {
|
|
268
268
|
"filename": "src/awscdk/base.ts",
|
|
269
|
-
"line":
|
|
269
|
+
"line": 140
|
|
270
270
|
},
|
|
271
271
|
"methods": [
|
|
272
272
|
{
|
|
@@ -276,7 +276,7 @@
|
|
|
276
276
|
},
|
|
277
277
|
"locationInModule": {
|
|
278
278
|
"filename": "src/awscdk/base.ts",
|
|
279
|
-
"line":
|
|
279
|
+
"line": 255
|
|
280
280
|
},
|
|
281
281
|
"name": "createApplicationEntrypoint",
|
|
282
282
|
"protected": true
|
|
@@ -288,11 +288,34 @@
|
|
|
288
288
|
},
|
|
289
289
|
"locationInModule": {
|
|
290
290
|
"filename": "src/awscdk/base.ts",
|
|
291
|
-
"line":
|
|
291
|
+
"line": 413
|
|
292
292
|
},
|
|
293
293
|
"name": "createFeatureStage",
|
|
294
294
|
"protected": true
|
|
295
295
|
},
|
|
296
|
+
{
|
|
297
|
+
"docs": {
|
|
298
|
+
"stability": "stable",
|
|
299
|
+
"summary": "This method sets up tasks for the independent stages including deployment and comparing changes (diff)."
|
|
300
|
+
},
|
|
301
|
+
"locationInModule": {
|
|
302
|
+
"filename": "src/awscdk/base.ts",
|
|
303
|
+
"line": 444
|
|
304
|
+
},
|
|
305
|
+
"name": "createIndependentStage",
|
|
306
|
+
"parameters": [
|
|
307
|
+
{
|
|
308
|
+
"docs": {
|
|
309
|
+
"summary": "- The stage to create."
|
|
310
|
+
},
|
|
311
|
+
"name": "stage",
|
|
312
|
+
"type": {
|
|
313
|
+
"fqn": "projen-pipelines.IndependentStage"
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
],
|
|
317
|
+
"protected": true
|
|
318
|
+
},
|
|
296
319
|
{
|
|
297
320
|
"docs": {
|
|
298
321
|
"stability": "stable",
|
|
@@ -300,7 +323,7 @@
|
|
|
300
323
|
},
|
|
301
324
|
"locationInModule": {
|
|
302
325
|
"filename": "src/awscdk/base.ts",
|
|
303
|
-
"line":
|
|
326
|
+
"line": 393
|
|
304
327
|
},
|
|
305
328
|
"name": "createPersonalStage",
|
|
306
329
|
"protected": true
|
|
@@ -312,7 +335,7 @@
|
|
|
312
335
|
},
|
|
313
336
|
"locationInModule": {
|
|
314
337
|
"filename": "src/awscdk/base.ts",
|
|
315
|
-
"line":
|
|
338
|
+
"line": 430
|
|
316
339
|
},
|
|
317
340
|
"name": "createPipelineStage",
|
|
318
341
|
"parameters": [
|
|
@@ -335,7 +358,7 @@
|
|
|
335
358
|
},
|
|
336
359
|
"locationInModule": {
|
|
337
360
|
"filename": "src/awscdk/base.ts",
|
|
338
|
-
"line":
|
|
361
|
+
"line": 353
|
|
339
362
|
},
|
|
340
363
|
"name": "createReleaseTasks",
|
|
341
364
|
"protected": true
|
|
@@ -347,7 +370,7 @@
|
|
|
347
370
|
},
|
|
348
371
|
"locationInModule": {
|
|
349
372
|
"filename": "src/awscdk/base.ts",
|
|
350
|
-
"line":
|
|
373
|
+
"line": 193
|
|
351
374
|
},
|
|
352
375
|
"name": "engineType",
|
|
353
376
|
"returns": {
|
|
@@ -362,7 +385,7 @@
|
|
|
362
385
|
},
|
|
363
386
|
"locationInModule": {
|
|
364
387
|
"filename": "src/awscdk/base.ts",
|
|
365
|
-
"line":
|
|
388
|
+
"line": 229
|
|
366
389
|
},
|
|
367
390
|
"name": "getAssetUploadCommands",
|
|
368
391
|
"parameters": [
|
|
@@ -391,7 +414,7 @@
|
|
|
391
414
|
},
|
|
392
415
|
"locationInModule": {
|
|
393
416
|
"filename": "src/awscdk/base.ts",
|
|
394
|
-
"line":
|
|
417
|
+
"line": 454
|
|
395
418
|
},
|
|
396
419
|
"name": "getCliStackPattern",
|
|
397
420
|
"parameters": [
|
|
@@ -415,7 +438,7 @@
|
|
|
415
438
|
},
|
|
416
439
|
"locationInModule": {
|
|
417
440
|
"filename": "src/awscdk/base.ts",
|
|
418
|
-
"line":
|
|
441
|
+
"line": 239
|
|
419
442
|
},
|
|
420
443
|
"name": "renderDeployCommands",
|
|
421
444
|
"parameters": [
|
|
@@ -444,7 +467,7 @@
|
|
|
444
467
|
},
|
|
445
468
|
"locationInModule": {
|
|
446
469
|
"filename": "src/awscdk/base.ts",
|
|
447
|
-
"line":
|
|
470
|
+
"line": 245
|
|
448
471
|
},
|
|
449
472
|
"name": "renderDiffCommands",
|
|
450
473
|
"parameters": [
|
|
@@ -473,7 +496,7 @@
|
|
|
473
496
|
},
|
|
474
497
|
"locationInModule": {
|
|
475
498
|
"filename": "src/awscdk/base.ts",
|
|
476
|
-
"line":
|
|
499
|
+
"line": 195
|
|
477
500
|
},
|
|
478
501
|
"name": "renderInstallCommands",
|
|
479
502
|
"protected": true,
|
|
@@ -494,7 +517,7 @@
|
|
|
494
517
|
},
|
|
495
518
|
"locationInModule": {
|
|
496
519
|
"filename": "src/awscdk/base.ts",
|
|
497
|
-
"line":
|
|
520
|
+
"line": 202
|
|
498
521
|
},
|
|
499
522
|
"name": "renderInstallPackageCommands",
|
|
500
523
|
"parameters": [
|
|
@@ -530,7 +553,7 @@
|
|
|
530
553
|
},
|
|
531
554
|
"locationInModule": {
|
|
532
555
|
"filename": "src/awscdk/base.ts",
|
|
533
|
-
"line":
|
|
556
|
+
"line": 221
|
|
534
557
|
},
|
|
535
558
|
"name": "renderSynthCommands",
|
|
536
559
|
"protected": true,
|
|
@@ -555,7 +578,7 @@
|
|
|
555
578
|
"immutable": true,
|
|
556
579
|
"locationInModule": {
|
|
557
580
|
"filename": "src/awscdk/base.ts",
|
|
558
|
-
"line":
|
|
581
|
+
"line": 143
|
|
559
582
|
},
|
|
560
583
|
"name": "branchName",
|
|
561
584
|
"type": {
|
|
@@ -569,7 +592,7 @@
|
|
|
569
592
|
"immutable": true,
|
|
570
593
|
"locationInModule": {
|
|
571
594
|
"filename": "src/awscdk/base.ts",
|
|
572
|
-
"line":
|
|
595
|
+
"line": 142
|
|
573
596
|
},
|
|
574
597
|
"name": "stackPrefix",
|
|
575
598
|
"type": {
|
|
@@ -582,7 +605,7 @@
|
|
|
582
605
|
},
|
|
583
606
|
"locationInModule": {
|
|
584
607
|
"filename": "src/awscdk/base.ts",
|
|
585
|
-
"line":
|
|
608
|
+
"line": 145
|
|
586
609
|
},
|
|
587
610
|
"name": "app",
|
|
588
611
|
"protected": true,
|
|
@@ -605,7 +628,7 @@
|
|
|
605
628
|
"kind": "interface",
|
|
606
629
|
"locationInModule": {
|
|
607
630
|
"filename": "src/awscdk/base.ts",
|
|
608
|
-
"line":
|
|
631
|
+
"line": 73
|
|
609
632
|
},
|
|
610
633
|
"name": "CDKPipelineOptions",
|
|
611
634
|
"properties": [
|
|
@@ -619,7 +642,7 @@
|
|
|
619
642
|
"immutable": true,
|
|
620
643
|
"locationInModule": {
|
|
621
644
|
"filename": "src/awscdk/base.ts",
|
|
622
|
-
"line":
|
|
645
|
+
"line": 102
|
|
623
646
|
},
|
|
624
647
|
"name": "pkgNamespace",
|
|
625
648
|
"type": {
|
|
@@ -629,12 +652,13 @@
|
|
|
629
652
|
{
|
|
630
653
|
"abstract": true,
|
|
631
654
|
"docs": {
|
|
632
|
-
"stability": "stable"
|
|
655
|
+
"stability": "stable",
|
|
656
|
+
"summary": "This field specifies a list of stages that should be deployed using a CI/CD pipeline."
|
|
633
657
|
},
|
|
634
658
|
"immutable": true,
|
|
635
659
|
"locationInModule": {
|
|
636
660
|
"filename": "src/awscdk/base.ts",
|
|
637
|
-
"line":
|
|
661
|
+
"line": 107
|
|
638
662
|
},
|
|
639
663
|
"name": "stages",
|
|
640
664
|
"type": {
|
|
@@ -656,7 +680,7 @@
|
|
|
656
680
|
"immutable": true,
|
|
657
681
|
"locationInModule": {
|
|
658
682
|
"filename": "src/awscdk/base.ts",
|
|
659
|
-
"line":
|
|
683
|
+
"line": 79
|
|
660
684
|
},
|
|
661
685
|
"name": "branchName",
|
|
662
686
|
"optional": true,
|
|
@@ -675,7 +699,7 @@
|
|
|
675
699
|
"immutable": true,
|
|
676
700
|
"locationInModule": {
|
|
677
701
|
"filename": "src/awscdk/base.ts",
|
|
678
|
-
"line":
|
|
702
|
+
"line": 95
|
|
679
703
|
},
|
|
680
704
|
"name": "deploySubStacks",
|
|
681
705
|
"optional": true,
|
|
@@ -686,12 +710,13 @@
|
|
|
686
710
|
{
|
|
687
711
|
"abstract": true,
|
|
688
712
|
"docs": {
|
|
689
|
-
"stability": "stable"
|
|
713
|
+
"stability": "stable",
|
|
714
|
+
"summary": "This specifies details for feature stages."
|
|
690
715
|
},
|
|
691
716
|
"immutable": true,
|
|
692
717
|
"locationInModule": {
|
|
693
718
|
"filename": "src/awscdk/base.ts",
|
|
694
|
-
"line":
|
|
719
|
+
"line": 116
|
|
695
720
|
},
|
|
696
721
|
"name": "featureStages",
|
|
697
722
|
"optional": true,
|
|
@@ -702,12 +727,35 @@
|
|
|
702
727
|
{
|
|
703
728
|
"abstract": true,
|
|
704
729
|
"docs": {
|
|
705
|
-
"stability": "stable"
|
|
730
|
+
"stability": "stable",
|
|
731
|
+
"summary": "This specifies details for independent stages."
|
|
706
732
|
},
|
|
707
733
|
"immutable": true,
|
|
708
734
|
"locationInModule": {
|
|
709
735
|
"filename": "src/awscdk/base.ts",
|
|
710
|
-
"line":
|
|
736
|
+
"line": 110
|
|
737
|
+
},
|
|
738
|
+
"name": "independentStages",
|
|
739
|
+
"optional": true,
|
|
740
|
+
"type": {
|
|
741
|
+
"collection": {
|
|
742
|
+
"elementtype": {
|
|
743
|
+
"fqn": "projen-pipelines.IndependentStage"
|
|
744
|
+
},
|
|
745
|
+
"kind": "array"
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"abstract": true,
|
|
751
|
+
"docs": {
|
|
752
|
+
"stability": "stable",
|
|
753
|
+
"summary": "This specifies details for a personal stage."
|
|
754
|
+
},
|
|
755
|
+
"immutable": true,
|
|
756
|
+
"locationInModule": {
|
|
757
|
+
"filename": "src/awscdk/base.ts",
|
|
758
|
+
"line": 113
|
|
711
759
|
},
|
|
712
760
|
"name": "personalStage",
|
|
713
761
|
"optional": true,
|
|
@@ -723,7 +771,7 @@
|
|
|
723
771
|
"immutable": true,
|
|
724
772
|
"locationInModule": {
|
|
725
773
|
"filename": "src/awscdk/base.ts",
|
|
726
|
-
"line":
|
|
774
|
+
"line": 129
|
|
727
775
|
},
|
|
728
776
|
"name": "postSynthCommands",
|
|
729
777
|
"optional": true,
|
|
@@ -744,7 +792,7 @@
|
|
|
744
792
|
"immutable": true,
|
|
745
793
|
"locationInModule": {
|
|
746
794
|
"filename": "src/awscdk/base.ts",
|
|
747
|
-
"line":
|
|
795
|
+
"line": 133
|
|
748
796
|
},
|
|
749
797
|
"name": "postSynthSteps",
|
|
750
798
|
"optional": true,
|
|
@@ -765,7 +813,7 @@
|
|
|
765
813
|
"immutable": true,
|
|
766
814
|
"locationInModule": {
|
|
767
815
|
"filename": "src/awscdk/base.ts",
|
|
768
|
-
"line":
|
|
816
|
+
"line": 127
|
|
769
817
|
},
|
|
770
818
|
"name": "preInstallCommands",
|
|
771
819
|
"optional": true,
|
|
@@ -786,7 +834,7 @@
|
|
|
786
834
|
"immutable": true,
|
|
787
835
|
"locationInModule": {
|
|
788
836
|
"filename": "src/awscdk/base.ts",
|
|
789
|
-
"line":
|
|
837
|
+
"line": 131
|
|
790
838
|
},
|
|
791
839
|
"name": "preInstallSteps",
|
|
792
840
|
"optional": true,
|
|
@@ -807,7 +855,7 @@
|
|
|
807
855
|
"immutable": true,
|
|
808
856
|
"locationInModule": {
|
|
809
857
|
"filename": "src/awscdk/base.ts",
|
|
810
|
-
"line":
|
|
858
|
+
"line": 128
|
|
811
859
|
},
|
|
812
860
|
"name": "preSynthCommands",
|
|
813
861
|
"optional": true,
|
|
@@ -828,7 +876,7 @@
|
|
|
828
876
|
"immutable": true,
|
|
829
877
|
"locationInModule": {
|
|
830
878
|
"filename": "src/awscdk/base.ts",
|
|
831
|
-
"line":
|
|
879
|
+
"line": 132
|
|
832
880
|
},
|
|
833
881
|
"name": "preSynthSteps",
|
|
834
882
|
"optional": true,
|
|
@@ -851,7 +899,7 @@
|
|
|
851
899
|
"immutable": true,
|
|
852
900
|
"locationInModule": {
|
|
853
901
|
"filename": "src/awscdk/base.ts",
|
|
854
|
-
"line":
|
|
902
|
+
"line": 87
|
|
855
903
|
},
|
|
856
904
|
"name": "stackPrefix",
|
|
857
905
|
"optional": true,
|
|
@@ -866,13 +914,17 @@
|
|
|
866
914
|
"assembly": "projen-pipelines",
|
|
867
915
|
"datatype": true,
|
|
868
916
|
"docs": {
|
|
869
|
-
"stability": "stable"
|
|
917
|
+
"stability": "stable",
|
|
918
|
+
"summary": "Options for stages that are part of the pipeline."
|
|
870
919
|
},
|
|
871
920
|
"fqn": "projen-pipelines.DeploymentStage",
|
|
921
|
+
"interfaces": [
|
|
922
|
+
"projen-pipelines.NamedStageOptions"
|
|
923
|
+
],
|
|
872
924
|
"kind": "interface",
|
|
873
925
|
"locationInModule": {
|
|
874
926
|
"filename": "src/awscdk/base.ts",
|
|
875
|
-
"line":
|
|
927
|
+
"line": 41
|
|
876
928
|
},
|
|
877
929
|
"name": "DeploymentStage",
|
|
878
930
|
"properties": [
|
|
@@ -884,37 +936,7 @@
|
|
|
884
936
|
"immutable": true,
|
|
885
937
|
"locationInModule": {
|
|
886
938
|
"filename": "src/awscdk/base.ts",
|
|
887
|
-
"line":
|
|
888
|
-
},
|
|
889
|
-
"name": "env",
|
|
890
|
-
"type": {
|
|
891
|
-
"fqn": "projen-pipelines.Environment"
|
|
892
|
-
}
|
|
893
|
-
},
|
|
894
|
-
{
|
|
895
|
-
"abstract": true,
|
|
896
|
-
"docs": {
|
|
897
|
-
"stability": "stable"
|
|
898
|
-
},
|
|
899
|
-
"immutable": true,
|
|
900
|
-
"locationInModule": {
|
|
901
|
-
"filename": "src/awscdk/base.ts",
|
|
902
|
-
"line": 39
|
|
903
|
-
},
|
|
904
|
-
"name": "name",
|
|
905
|
-
"type": {
|
|
906
|
-
"primitive": "string"
|
|
907
|
-
}
|
|
908
|
-
},
|
|
909
|
-
{
|
|
910
|
-
"abstract": true,
|
|
911
|
-
"docs": {
|
|
912
|
-
"stability": "stable"
|
|
913
|
-
},
|
|
914
|
-
"immutable": true,
|
|
915
|
-
"locationInModule": {
|
|
916
|
-
"filename": "src/awscdk/base.ts",
|
|
917
|
-
"line": 41
|
|
939
|
+
"line": 42
|
|
918
940
|
},
|
|
919
941
|
"name": "manualApproval",
|
|
920
942
|
"optional": true,
|
|
@@ -993,7 +1015,7 @@
|
|
|
993
1015
|
},
|
|
994
1016
|
"locationInModule": {
|
|
995
1017
|
"filename": "src/awscdk/github.ts",
|
|
996
|
-
"line":
|
|
1018
|
+
"line": 67
|
|
997
1019
|
},
|
|
998
1020
|
"parameters": [
|
|
999
1021
|
{
|
|
@@ -1019,7 +1041,7 @@
|
|
|
1019
1041
|
"kind": "class",
|
|
1020
1042
|
"locationInModule": {
|
|
1021
1043
|
"filename": "src/awscdk/github.ts",
|
|
1022
|
-
"line":
|
|
1044
|
+
"line": 50
|
|
1023
1045
|
},
|
|
1024
1046
|
"methods": [
|
|
1025
1047
|
{
|
|
@@ -1029,7 +1051,7 @@
|
|
|
1029
1051
|
},
|
|
1030
1052
|
"locationInModule": {
|
|
1031
1053
|
"filename": "src/awscdk/github.ts",
|
|
1032
|
-
"line":
|
|
1054
|
+
"line": 169
|
|
1033
1055
|
},
|
|
1034
1056
|
"name": "createAssetUpload"
|
|
1035
1057
|
},
|
|
@@ -1040,7 +1062,7 @@
|
|
|
1040
1062
|
},
|
|
1041
1063
|
"locationInModule": {
|
|
1042
1064
|
"filename": "src/awscdk/github.ts",
|
|
1043
|
-
"line":
|
|
1065
|
+
"line": 217
|
|
1044
1066
|
},
|
|
1045
1067
|
"name": "createDeployment",
|
|
1046
1068
|
"parameters": [
|
|
@@ -1055,6 +1077,28 @@
|
|
|
1055
1077
|
}
|
|
1056
1078
|
]
|
|
1057
1079
|
},
|
|
1080
|
+
{
|
|
1081
|
+
"docs": {
|
|
1082
|
+
"stability": "stable",
|
|
1083
|
+
"summary": "Creates a job to deploy the CDK application to AWS."
|
|
1084
|
+
},
|
|
1085
|
+
"locationInModule": {
|
|
1086
|
+
"filename": "src/awscdk/github.ts",
|
|
1087
|
+
"line": 324
|
|
1088
|
+
},
|
|
1089
|
+
"name": "createIndependentDeployment",
|
|
1090
|
+
"parameters": [
|
|
1091
|
+
{
|
|
1092
|
+
"docs": {
|
|
1093
|
+
"summary": "- The independent stage to create."
|
|
1094
|
+
},
|
|
1095
|
+
"name": "stage",
|
|
1096
|
+
"type": {
|
|
1097
|
+
"fqn": "projen-pipelines.IndependentStage"
|
|
1098
|
+
}
|
|
1099
|
+
}
|
|
1100
|
+
]
|
|
1101
|
+
},
|
|
1058
1102
|
{
|
|
1059
1103
|
"docs": {
|
|
1060
1104
|
"stability": "stable",
|
|
@@ -1062,7 +1106,7 @@
|
|
|
1062
1106
|
},
|
|
1063
1107
|
"locationInModule": {
|
|
1064
1108
|
"filename": "src/awscdk/github.ts",
|
|
1065
|
-
"line":
|
|
1109
|
+
"line": 111
|
|
1066
1110
|
},
|
|
1067
1111
|
"name": "engineType",
|
|
1068
1112
|
"overrides": "projen-pipelines.CDKPipeline",
|
|
@@ -1083,7 +1127,7 @@
|
|
|
1083
1127
|
"immutable": true,
|
|
1084
1128
|
"locationInModule": {
|
|
1085
1129
|
"filename": "src/awscdk/github.ts",
|
|
1086
|
-
"line":
|
|
1130
|
+
"line": 53
|
|
1087
1131
|
},
|
|
1088
1132
|
"name": "needsVersionedArtifacts",
|
|
1089
1133
|
"type": {
|
|
@@ -1096,7 +1140,7 @@
|
|
|
1096
1140
|
},
|
|
1097
1141
|
"locationInModule": {
|
|
1098
1142
|
"filename": "src/awscdk/github.ts",
|
|
1099
|
-
"line":
|
|
1143
|
+
"line": 60
|
|
1100
1144
|
},
|
|
1101
1145
|
"name": "useGithubPackages",
|
|
1102
1146
|
"protected": true,
|
|
@@ -1121,7 +1165,7 @@
|
|
|
1121
1165
|
"kind": "interface",
|
|
1122
1166
|
"locationInModule": {
|
|
1123
1167
|
"filename": "src/awscdk/github.ts",
|
|
1124
|
-
"line":
|
|
1168
|
+
"line": 30
|
|
1125
1169
|
},
|
|
1126
1170
|
"name": "GithubCDKPipelineOptions",
|
|
1127
1171
|
"properties": [
|
|
@@ -1134,7 +1178,7 @@
|
|
|
1134
1178
|
"immutable": true,
|
|
1135
1179
|
"locationInModule": {
|
|
1136
1180
|
"filename": "src/awscdk/github.ts",
|
|
1137
|
-
"line":
|
|
1181
|
+
"line": 33
|
|
1138
1182
|
},
|
|
1139
1183
|
"name": "iamRoleArns",
|
|
1140
1184
|
"type": {
|
|
@@ -1151,7 +1195,7 @@
|
|
|
1151
1195
|
"immutable": true,
|
|
1152
1196
|
"locationInModule": {
|
|
1153
1197
|
"filename": "src/awscdk/github.ts",
|
|
1154
|
-
"line":
|
|
1198
|
+
"line": 40
|
|
1155
1199
|
},
|
|
1156
1200
|
"name": "runnerTags",
|
|
1157
1201
|
"optional": true,
|
|
@@ -1174,7 +1218,7 @@
|
|
|
1174
1218
|
"immutable": true,
|
|
1175
1219
|
"locationInModule": {
|
|
1176
1220
|
"filename": "src/awscdk/github.ts",
|
|
1177
|
-
"line":
|
|
1221
|
+
"line": 43
|
|
1178
1222
|
},
|
|
1179
1223
|
"name": "useGithubPackagesForAssembly",
|
|
1180
1224
|
"optional": true,
|
|
@@ -1196,7 +1240,7 @@
|
|
|
1196
1240
|
"kind": "interface",
|
|
1197
1241
|
"locationInModule": {
|
|
1198
1242
|
"filename": "src/awscdk/github.ts",
|
|
1199
|
-
"line":
|
|
1243
|
+
"line": 15
|
|
1200
1244
|
},
|
|
1201
1245
|
"name": "GithubIamRoleConfig",
|
|
1202
1246
|
"properties": [
|
|
@@ -1209,7 +1253,7 @@
|
|
|
1209
1253
|
"immutable": true,
|
|
1210
1254
|
"locationInModule": {
|
|
1211
1255
|
"filename": "src/awscdk/github.ts",
|
|
1212
|
-
"line":
|
|
1256
|
+
"line": 22
|
|
1213
1257
|
},
|
|
1214
1258
|
"name": "assetPublishing",
|
|
1215
1259
|
"optional": true,
|
|
@@ -1226,7 +1270,7 @@
|
|
|
1226
1270
|
"immutable": true,
|
|
1227
1271
|
"locationInModule": {
|
|
1228
1272
|
"filename": "src/awscdk/github.ts",
|
|
1229
|
-
"line":
|
|
1273
|
+
"line": 18
|
|
1230
1274
|
},
|
|
1231
1275
|
"name": "default",
|
|
1232
1276
|
"optional": true,
|
|
@@ -1243,7 +1287,7 @@
|
|
|
1243
1287
|
"immutable": true,
|
|
1244
1288
|
"locationInModule": {
|
|
1245
1289
|
"filename": "src/awscdk/github.ts",
|
|
1246
|
-
"line":
|
|
1290
|
+
"line": 24
|
|
1247
1291
|
},
|
|
1248
1292
|
"name": "deployment",
|
|
1249
1293
|
"optional": true,
|
|
@@ -1265,7 +1309,7 @@
|
|
|
1265
1309
|
"immutable": true,
|
|
1266
1310
|
"locationInModule": {
|
|
1267
1311
|
"filename": "src/awscdk/github.ts",
|
|
1268
|
-
"line":
|
|
1312
|
+
"line": 20
|
|
1269
1313
|
},
|
|
1270
1314
|
"name": "synth",
|
|
1271
1315
|
"optional": true,
|
|
@@ -1287,10 +1331,31 @@
|
|
|
1287
1331
|
"kind": "interface",
|
|
1288
1332
|
"locationInModule": {
|
|
1289
1333
|
"filename": "src/steps/step.ts",
|
|
1290
|
-
"line":
|
|
1334
|
+
"line": 26
|
|
1291
1335
|
},
|
|
1292
1336
|
"name": "GithubStepConfig",
|
|
1293
1337
|
"properties": [
|
|
1338
|
+
{
|
|
1339
|
+
"abstract": true,
|
|
1340
|
+
"docs": {
|
|
1341
|
+
"stability": "stable",
|
|
1342
|
+
"summary": "Additional environment variables to set for this step."
|
|
1343
|
+
},
|
|
1344
|
+
"immutable": true,
|
|
1345
|
+
"locationInModule": {
|
|
1346
|
+
"filename": "src/steps/step.ts",
|
|
1347
|
+
"line": 35
|
|
1348
|
+
},
|
|
1349
|
+
"name": "env",
|
|
1350
|
+
"type": {
|
|
1351
|
+
"collection": {
|
|
1352
|
+
"elementtype": {
|
|
1353
|
+
"primitive": "string"
|
|
1354
|
+
},
|
|
1355
|
+
"kind": "map"
|
|
1356
|
+
}
|
|
1357
|
+
}
|
|
1358
|
+
},
|
|
1294
1359
|
{
|
|
1295
1360
|
"abstract": true,
|
|
1296
1361
|
"docs": {
|
|
@@ -1300,7 +1365,7 @@
|
|
|
1300
1365
|
"immutable": true,
|
|
1301
1366
|
"locationInModule": {
|
|
1302
1367
|
"filename": "src/steps/step.ts",
|
|
1303
|
-
"line":
|
|
1368
|
+
"line": 29
|
|
1304
1369
|
},
|
|
1305
1370
|
"name": "needs",
|
|
1306
1371
|
"type": {
|
|
@@ -1321,7 +1386,7 @@
|
|
|
1321
1386
|
"immutable": true,
|
|
1322
1387
|
"locationInModule": {
|
|
1323
1388
|
"filename": "src/steps/step.ts",
|
|
1324
|
-
"line":
|
|
1389
|
+
"line": 32
|
|
1325
1390
|
},
|
|
1326
1391
|
"name": "steps",
|
|
1327
1392
|
"type": {
|
|
@@ -1352,7 +1417,7 @@
|
|
|
1352
1417
|
},
|
|
1353
1418
|
"locationInModule": {
|
|
1354
1419
|
"filename": "src/awscdk/gitlab.ts",
|
|
1355
|
-
"line":
|
|
1420
|
+
"line": 82
|
|
1356
1421
|
},
|
|
1357
1422
|
"parameters": [
|
|
1358
1423
|
{
|
|
@@ -1378,7 +1443,7 @@
|
|
|
1378
1443
|
"kind": "class",
|
|
1379
1444
|
"locationInModule": {
|
|
1380
1445
|
"filename": "src/awscdk/gitlab.ts",
|
|
1381
|
-
"line":
|
|
1446
|
+
"line": 61
|
|
1382
1447
|
},
|
|
1383
1448
|
"methods": [
|
|
1384
1449
|
{
|
|
@@ -1389,7 +1454,7 @@
|
|
|
1389
1454
|
},
|
|
1390
1455
|
"locationInModule": {
|
|
1391
1456
|
"filename": "src/awscdk/gitlab.ts",
|
|
1392
|
-
"line":
|
|
1457
|
+
"line": 209
|
|
1393
1458
|
},
|
|
1394
1459
|
"name": "createAssetUpload",
|
|
1395
1460
|
"protected": true
|
|
@@ -1402,7 +1467,7 @@
|
|
|
1402
1467
|
},
|
|
1403
1468
|
"locationInModule": {
|
|
1404
1469
|
"filename": "src/awscdk/gitlab.ts",
|
|
1405
|
-
"line":
|
|
1470
|
+
"line": 244
|
|
1406
1471
|
},
|
|
1407
1472
|
"name": "createDeployment",
|
|
1408
1473
|
"parameters": [
|
|
@@ -1418,6 +1483,28 @@
|
|
|
1418
1483
|
],
|
|
1419
1484
|
"protected": true
|
|
1420
1485
|
},
|
|
1486
|
+
{
|
|
1487
|
+
"docs": {
|
|
1488
|
+
"stability": "stable",
|
|
1489
|
+
"summary": "Creates a job to deploy the CDK application to AWS."
|
|
1490
|
+
},
|
|
1491
|
+
"locationInModule": {
|
|
1492
|
+
"filename": "src/awscdk/gitlab.ts",
|
|
1493
|
+
"line": 311
|
|
1494
|
+
},
|
|
1495
|
+
"name": "createIndependentDeployment",
|
|
1496
|
+
"parameters": [
|
|
1497
|
+
{
|
|
1498
|
+
"docs": {
|
|
1499
|
+
"summary": "- The independent stage to create."
|
|
1500
|
+
},
|
|
1501
|
+
"name": "stage",
|
|
1502
|
+
"type": {
|
|
1503
|
+
"fqn": "projen-pipelines.IndependentStage"
|
|
1504
|
+
}
|
|
1505
|
+
}
|
|
1506
|
+
]
|
|
1507
|
+
},
|
|
1421
1508
|
{
|
|
1422
1509
|
"docs": {
|
|
1423
1510
|
"remarks": "This method configures the job to execute CDK synthesis, applying the appropriate IAM role\nfor AWS commands and specifying runner tags for job execution. The synthesized outputs are\nconfigured to be cached as artifacts.",
|
|
@@ -1426,7 +1513,7 @@
|
|
|
1426
1513
|
},
|
|
1427
1514
|
"locationInModule": {
|
|
1428
1515
|
"filename": "src/awscdk/gitlab.ts",
|
|
1429
|
-
"line":
|
|
1516
|
+
"line": 173
|
|
1430
1517
|
},
|
|
1431
1518
|
"name": "createSynth",
|
|
1432
1519
|
"protected": true
|
|
@@ -1437,7 +1524,7 @@
|
|
|
1437
1524
|
},
|
|
1438
1525
|
"locationInModule": {
|
|
1439
1526
|
"filename": "src/awscdk/gitlab.ts",
|
|
1440
|
-
"line":
|
|
1527
|
+
"line": 346
|
|
1441
1528
|
},
|
|
1442
1529
|
"name": "engineType",
|
|
1443
1530
|
"overrides": "projen-pipelines.CDKPipeline",
|
|
@@ -1455,7 +1542,7 @@
|
|
|
1455
1542
|
},
|
|
1456
1543
|
"locationInModule": {
|
|
1457
1544
|
"filename": "src/awscdk/gitlab.ts",
|
|
1458
|
-
"line":
|
|
1545
|
+
"line": 114
|
|
1459
1546
|
},
|
|
1460
1547
|
"name": "setupSnippets",
|
|
1461
1548
|
"protected": true
|
|
@@ -1471,7 +1558,7 @@
|
|
|
1471
1558
|
"immutable": true,
|
|
1472
1559
|
"locationInModule": {
|
|
1473
1560
|
"filename": "src/awscdk/gitlab.ts",
|
|
1474
|
-
"line":
|
|
1561
|
+
"line": 70
|
|
1475
1562
|
},
|
|
1476
1563
|
"name": "config",
|
|
1477
1564
|
"type": {
|
|
@@ -1487,7 +1574,7 @@
|
|
|
1487
1574
|
"immutable": true,
|
|
1488
1575
|
"locationInModule": {
|
|
1489
1576
|
"filename": "src/awscdk/gitlab.ts",
|
|
1490
|
-
"line":
|
|
1577
|
+
"line": 67
|
|
1491
1578
|
},
|
|
1492
1579
|
"name": "jobImage",
|
|
1493
1580
|
"type": {
|
|
@@ -1503,7 +1590,7 @@
|
|
|
1503
1590
|
"immutable": true,
|
|
1504
1591
|
"locationInModule": {
|
|
1505
1592
|
"filename": "src/awscdk/gitlab.ts",
|
|
1506
|
-
"line":
|
|
1593
|
+
"line": 64
|
|
1507
1594
|
},
|
|
1508
1595
|
"name": "needsVersionedArtifacts",
|
|
1509
1596
|
"type": {
|
|
@@ -1527,7 +1614,7 @@
|
|
|
1527
1614
|
"kind": "interface",
|
|
1528
1615
|
"locationInModule": {
|
|
1529
1616
|
"filename": "src/awscdk/gitlab.ts",
|
|
1530
|
-
"line":
|
|
1617
|
+
"line": 45
|
|
1531
1618
|
},
|
|
1532
1619
|
"name": "GitlabCDKPipelineOptions",
|
|
1533
1620
|
"properties": [
|
|
@@ -1540,7 +1627,7 @@
|
|
|
1540
1627
|
"immutable": true,
|
|
1541
1628
|
"locationInModule": {
|
|
1542
1629
|
"filename": "src/awscdk/gitlab.ts",
|
|
1543
|
-
"line":
|
|
1630
|
+
"line": 47
|
|
1544
1631
|
},
|
|
1545
1632
|
"name": "iamRoleArns",
|
|
1546
1633
|
"type": {
|
|
@@ -1556,7 +1643,7 @@
|
|
|
1556
1643
|
"immutable": true,
|
|
1557
1644
|
"locationInModule": {
|
|
1558
1645
|
"filename": "src/awscdk/gitlab.ts",
|
|
1559
|
-
"line":
|
|
1646
|
+
"line": 51
|
|
1560
1647
|
},
|
|
1561
1648
|
"name": "image",
|
|
1562
1649
|
"optional": true,
|
|
@@ -1573,7 +1660,7 @@
|
|
|
1573
1660
|
"immutable": true,
|
|
1574
1661
|
"locationInModule": {
|
|
1575
1662
|
"filename": "src/awscdk/gitlab.ts",
|
|
1576
|
-
"line":
|
|
1663
|
+
"line": 49
|
|
1577
1664
|
},
|
|
1578
1665
|
"name": "runnerTags",
|
|
1579
1666
|
"optional": true,
|
|
@@ -1596,7 +1683,7 @@
|
|
|
1596
1683
|
"kind": "interface",
|
|
1597
1684
|
"locationInModule": {
|
|
1598
1685
|
"filename": "src/awscdk/gitlab.ts",
|
|
1599
|
-
"line":
|
|
1686
|
+
"line": 12
|
|
1600
1687
|
},
|
|
1601
1688
|
"name": "GitlabIamRoleConfig",
|
|
1602
1689
|
"properties": [
|
|
@@ -1609,7 +1696,7 @@
|
|
|
1609
1696
|
"immutable": true,
|
|
1610
1697
|
"locationInModule": {
|
|
1611
1698
|
"filename": "src/awscdk/gitlab.ts",
|
|
1612
|
-
"line":
|
|
1699
|
+
"line": 18
|
|
1613
1700
|
},
|
|
1614
1701
|
"name": "assetPublishing",
|
|
1615
1702
|
"optional": true,
|
|
@@ -1626,7 +1713,7 @@
|
|
|
1626
1713
|
"immutable": true,
|
|
1627
1714
|
"locationInModule": {
|
|
1628
1715
|
"filename": "src/awscdk/gitlab.ts",
|
|
1629
|
-
"line":
|
|
1716
|
+
"line": 14
|
|
1630
1717
|
},
|
|
1631
1718
|
"name": "default",
|
|
1632
1719
|
"optional": true,
|
|
@@ -1643,7 +1730,7 @@
|
|
|
1643
1730
|
"immutable": true,
|
|
1644
1731
|
"locationInModule": {
|
|
1645
1732
|
"filename": "src/awscdk/gitlab.ts",
|
|
1646
|
-
"line":
|
|
1733
|
+
"line": 22
|
|
1647
1734
|
},
|
|
1648
1735
|
"name": "deployment",
|
|
1649
1736
|
"optional": true,
|
|
@@ -1665,7 +1752,7 @@
|
|
|
1665
1752
|
"immutable": true,
|
|
1666
1753
|
"locationInModule": {
|
|
1667
1754
|
"filename": "src/awscdk/gitlab.ts",
|
|
1668
|
-
"line":
|
|
1755
|
+
"line": 20
|
|
1669
1756
|
},
|
|
1670
1757
|
"name": "diff",
|
|
1671
1758
|
"optional": true,
|
|
@@ -1687,7 +1774,7 @@
|
|
|
1687
1774
|
"immutable": true,
|
|
1688
1775
|
"locationInModule": {
|
|
1689
1776
|
"filename": "src/awscdk/gitlab.ts",
|
|
1690
|
-
"line":
|
|
1777
|
+
"line": 16
|
|
1691
1778
|
},
|
|
1692
1779
|
"name": "synth",
|
|
1693
1780
|
"optional": true,
|
|
@@ -1710,7 +1797,7 @@
|
|
|
1710
1797
|
"kind": "interface",
|
|
1711
1798
|
"locationInModule": {
|
|
1712
1799
|
"filename": "src/awscdk/gitlab.ts",
|
|
1713
|
-
"line":
|
|
1800
|
+
"line": 29
|
|
1714
1801
|
},
|
|
1715
1802
|
"name": "GitlabRunnerTags",
|
|
1716
1803
|
"properties": [
|
|
@@ -1723,7 +1810,7 @@
|
|
|
1723
1810
|
"immutable": true,
|
|
1724
1811
|
"locationInModule": {
|
|
1725
1812
|
"filename": "src/awscdk/gitlab.ts",
|
|
1726
|
-
"line":
|
|
1813
|
+
"line": 35
|
|
1727
1814
|
},
|
|
1728
1815
|
"name": "assetPublishing",
|
|
1729
1816
|
"optional": true,
|
|
@@ -1745,7 +1832,7 @@
|
|
|
1745
1832
|
"immutable": true,
|
|
1746
1833
|
"locationInModule": {
|
|
1747
1834
|
"filename": "src/awscdk/gitlab.ts",
|
|
1748
|
-
"line":
|
|
1835
|
+
"line": 31
|
|
1749
1836
|
},
|
|
1750
1837
|
"name": "default",
|
|
1751
1838
|
"optional": true,
|
|
@@ -1767,7 +1854,7 @@
|
|
|
1767
1854
|
"immutable": true,
|
|
1768
1855
|
"locationInModule": {
|
|
1769
1856
|
"filename": "src/awscdk/gitlab.ts",
|
|
1770
|
-
"line":
|
|
1857
|
+
"line": 39
|
|
1771
1858
|
},
|
|
1772
1859
|
"name": "deployment",
|
|
1773
1860
|
"optional": true,
|
|
@@ -1794,7 +1881,7 @@
|
|
|
1794
1881
|
"immutable": true,
|
|
1795
1882
|
"locationInModule": {
|
|
1796
1883
|
"filename": "src/awscdk/gitlab.ts",
|
|
1797
|
-
"line":
|
|
1884
|
+
"line": 37
|
|
1798
1885
|
},
|
|
1799
1886
|
"name": "diff",
|
|
1800
1887
|
"optional": true,
|
|
@@ -1821,7 +1908,7 @@
|
|
|
1821
1908
|
"immutable": true,
|
|
1822
1909
|
"locationInModule": {
|
|
1823
1910
|
"filename": "src/awscdk/gitlab.ts",
|
|
1824
|
-
"line":
|
|
1911
|
+
"line": 33
|
|
1825
1912
|
},
|
|
1826
1913
|
"name": "synth",
|
|
1827
1914
|
"optional": true,
|
|
@@ -1873,6 +1960,27 @@
|
|
|
1873
1960
|
}
|
|
1874
1961
|
}
|
|
1875
1962
|
},
|
|
1963
|
+
{
|
|
1964
|
+
"abstract": true,
|
|
1965
|
+
"docs": {
|
|
1966
|
+
"stability": "stable",
|
|
1967
|
+
"summary": "Additional environment variables to set for this step."
|
|
1968
|
+
},
|
|
1969
|
+
"immutable": true,
|
|
1970
|
+
"locationInModule": {
|
|
1971
|
+
"filename": "src/steps/step.ts",
|
|
1972
|
+
"line": 20
|
|
1973
|
+
},
|
|
1974
|
+
"name": "env",
|
|
1975
|
+
"type": {
|
|
1976
|
+
"collection": {
|
|
1977
|
+
"elementtype": {
|
|
1978
|
+
"primitive": "string"
|
|
1979
|
+
},
|
|
1980
|
+
"kind": "map"
|
|
1981
|
+
}
|
|
1982
|
+
}
|
|
1983
|
+
},
|
|
1876
1984
|
{
|
|
1877
1985
|
"abstract": true,
|
|
1878
1986
|
"docs": {
|
|
@@ -1918,6 +2026,105 @@
|
|
|
1918
2026
|
],
|
|
1919
2027
|
"symbolId": "src/steps/step:GitlabStepConfig"
|
|
1920
2028
|
},
|
|
2029
|
+
"projen-pipelines.IndependentStage": {
|
|
2030
|
+
"assembly": "projen-pipelines",
|
|
2031
|
+
"datatype": true,
|
|
2032
|
+
"docs": {
|
|
2033
|
+
"stability": "stable",
|
|
2034
|
+
"summary": "Options for stages that are not part of the pipeline."
|
|
2035
|
+
},
|
|
2036
|
+
"fqn": "projen-pipelines.IndependentStage",
|
|
2037
|
+
"interfaces": [
|
|
2038
|
+
"projen-pipelines.NamedStageOptions"
|
|
2039
|
+
],
|
|
2040
|
+
"kind": "interface",
|
|
2041
|
+
"locationInModule": {
|
|
2042
|
+
"filename": "src/awscdk/base.ts",
|
|
2043
|
+
"line": 48
|
|
2044
|
+
},
|
|
2045
|
+
"name": "IndependentStage",
|
|
2046
|
+
"properties": [
|
|
2047
|
+
{
|
|
2048
|
+
"abstract": true,
|
|
2049
|
+
"docs": {
|
|
2050
|
+
"stability": "stable"
|
|
2051
|
+
},
|
|
2052
|
+
"immutable": true,
|
|
2053
|
+
"locationInModule": {
|
|
2054
|
+
"filename": "src/awscdk/base.ts",
|
|
2055
|
+
"line": 50
|
|
2056
|
+
},
|
|
2057
|
+
"name": "postDeploySteps",
|
|
2058
|
+
"optional": true,
|
|
2059
|
+
"type": {
|
|
2060
|
+
"collection": {
|
|
2061
|
+
"elementtype": {
|
|
2062
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
2063
|
+
},
|
|
2064
|
+
"kind": "array"
|
|
2065
|
+
}
|
|
2066
|
+
}
|
|
2067
|
+
},
|
|
2068
|
+
{
|
|
2069
|
+
"abstract": true,
|
|
2070
|
+
"docs": {
|
|
2071
|
+
"stability": "stable"
|
|
2072
|
+
},
|
|
2073
|
+
"immutable": true,
|
|
2074
|
+
"locationInModule": {
|
|
2075
|
+
"filename": "src/awscdk/base.ts",
|
|
2076
|
+
"line": 49
|
|
2077
|
+
},
|
|
2078
|
+
"name": "postDiffSteps",
|
|
2079
|
+
"optional": true,
|
|
2080
|
+
"type": {
|
|
2081
|
+
"collection": {
|
|
2082
|
+
"elementtype": {
|
|
2083
|
+
"fqn": "projen-pipelines.PipelineStep"
|
|
2084
|
+
},
|
|
2085
|
+
"kind": "array"
|
|
2086
|
+
}
|
|
2087
|
+
}
|
|
2088
|
+
}
|
|
2089
|
+
],
|
|
2090
|
+
"symbolId": "src/awscdk/base:IndependentStage"
|
|
2091
|
+
},
|
|
2092
|
+
"projen-pipelines.NamedStageOptions": {
|
|
2093
|
+
"assembly": "projen-pipelines",
|
|
2094
|
+
"datatype": true,
|
|
2095
|
+
"docs": {
|
|
2096
|
+
"stability": "stable",
|
|
2097
|
+
"summary": "Options for a CDK stage with a name."
|
|
2098
|
+
},
|
|
2099
|
+
"fqn": "projen-pipelines.NamedStageOptions",
|
|
2100
|
+
"interfaces": [
|
|
2101
|
+
"projen-pipelines.StageOptions"
|
|
2102
|
+
],
|
|
2103
|
+
"kind": "interface",
|
|
2104
|
+
"locationInModule": {
|
|
2105
|
+
"filename": "src/awscdk/base.ts",
|
|
2106
|
+
"line": 56
|
|
2107
|
+
},
|
|
2108
|
+
"name": "NamedStageOptions",
|
|
2109
|
+
"properties": [
|
|
2110
|
+
{
|
|
2111
|
+
"abstract": true,
|
|
2112
|
+
"docs": {
|
|
2113
|
+
"stability": "stable"
|
|
2114
|
+
},
|
|
2115
|
+
"immutable": true,
|
|
2116
|
+
"locationInModule": {
|
|
2117
|
+
"filename": "src/awscdk/base.ts",
|
|
2118
|
+
"line": 57
|
|
2119
|
+
},
|
|
2120
|
+
"name": "name",
|
|
2121
|
+
"type": {
|
|
2122
|
+
"primitive": "string"
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2125
|
+
],
|
|
2126
|
+
"symbolId": "src/awscdk/base:NamedStageOptions"
|
|
2127
|
+
},
|
|
1921
2128
|
"projen-pipelines.PipelineEngine": {
|
|
1922
2129
|
"assembly": "projen-pipelines",
|
|
1923
2130
|
"docs": {
|
|
@@ -1972,7 +2179,7 @@
|
|
|
1972
2179
|
},
|
|
1973
2180
|
"locationInModule": {
|
|
1974
2181
|
"filename": "src/steps/step.ts",
|
|
1975
|
-
"line":
|
|
2182
|
+
"line": 56
|
|
1976
2183
|
},
|
|
1977
2184
|
"parameters": [
|
|
1978
2185
|
{
|
|
@@ -1989,19 +2196,18 @@
|
|
|
1989
2196
|
"kind": "class",
|
|
1990
2197
|
"locationInModule": {
|
|
1991
2198
|
"filename": "src/steps/step.ts",
|
|
1992
|
-
"line":
|
|
2199
|
+
"line": 50
|
|
1993
2200
|
},
|
|
1994
2201
|
"methods": [
|
|
1995
2202
|
{
|
|
1996
|
-
"abstract": true,
|
|
1997
2203
|
"docs": {
|
|
1998
|
-
"remarks": "
|
|
2204
|
+
"remarks": "Should be implemented by subclasses.",
|
|
1999
2205
|
"stability": "stable",
|
|
2000
2206
|
"summary": "Generates a configuration for a bash script step."
|
|
2001
2207
|
},
|
|
2002
2208
|
"locationInModule": {
|
|
2003
2209
|
"filename": "src/steps/step.ts",
|
|
2004
|
-
"line":
|
|
2210
|
+
"line": 77
|
|
2005
2211
|
},
|
|
2006
2212
|
"name": "toBash",
|
|
2007
2213
|
"returns": {
|
|
@@ -2011,15 +2217,14 @@
|
|
|
2011
2217
|
}
|
|
2012
2218
|
},
|
|
2013
2219
|
{
|
|
2014
|
-
"abstract": true,
|
|
2015
2220
|
"docs": {
|
|
2016
|
-
"remarks": "
|
|
2221
|
+
"remarks": "Should be implemented by subclasses.",
|
|
2017
2222
|
"stability": "stable",
|
|
2018
2223
|
"summary": "Generates a configuration for a GitHub Actions step."
|
|
2019
2224
|
},
|
|
2020
2225
|
"locationInModule": {
|
|
2021
2226
|
"filename": "src/steps/step.ts",
|
|
2022
|
-
"line":
|
|
2227
|
+
"line": 70
|
|
2023
2228
|
},
|
|
2024
2229
|
"name": "toGithub",
|
|
2025
2230
|
"returns": {
|
|
@@ -2029,15 +2234,14 @@
|
|
|
2029
2234
|
}
|
|
2030
2235
|
},
|
|
2031
2236
|
{
|
|
2032
|
-
"abstract": true,
|
|
2033
2237
|
"docs": {
|
|
2034
|
-
"remarks": "
|
|
2238
|
+
"remarks": "Should be implemented by subclasses.",
|
|
2035
2239
|
"stability": "stable",
|
|
2036
2240
|
"summary": "Generates a configuration for a GitLab CI step."
|
|
2037
2241
|
},
|
|
2038
2242
|
"locationInModule": {
|
|
2039
2243
|
"filename": "src/steps/step.ts",
|
|
2040
|
-
"line":
|
|
2244
|
+
"line": 63
|
|
2041
2245
|
},
|
|
2042
2246
|
"name": "toGitlab",
|
|
2043
2247
|
"returns": {
|
|
@@ -2056,7 +2260,7 @@
|
|
|
2056
2260
|
},
|
|
2057
2261
|
"locationInModule": {
|
|
2058
2262
|
"filename": "src/steps/step.ts",
|
|
2059
|
-
"line":
|
|
2263
|
+
"line": 56
|
|
2060
2264
|
},
|
|
2061
2265
|
"name": "project",
|
|
2062
2266
|
"protected": true,
|
|
@@ -2082,7 +2286,7 @@
|
|
|
2082
2286
|
},
|
|
2083
2287
|
"locationInModule": {
|
|
2084
2288
|
"filename": "src/steps/step.ts",
|
|
2085
|
-
"line":
|
|
2289
|
+
"line": 92
|
|
2086
2290
|
},
|
|
2087
2291
|
"parameters": [
|
|
2088
2292
|
{
|
|
@@ -2113,7 +2317,7 @@
|
|
|
2113
2317
|
"kind": "class",
|
|
2114
2318
|
"locationInModule": {
|
|
2115
2319
|
"filename": "src/steps/step.ts",
|
|
2116
|
-
"line":
|
|
2320
|
+
"line": 85
|
|
2117
2321
|
},
|
|
2118
2322
|
"methods": [
|
|
2119
2323
|
{
|
|
@@ -2123,7 +2327,7 @@
|
|
|
2123
2327
|
},
|
|
2124
2328
|
"locationInModule": {
|
|
2125
2329
|
"filename": "src/steps/step.ts",
|
|
2126
|
-
"line":
|
|
2330
|
+
"line": 111
|
|
2127
2331
|
},
|
|
2128
2332
|
"name": "toBash",
|
|
2129
2333
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -2140,7 +2344,7 @@
|
|
|
2140
2344
|
},
|
|
2141
2345
|
"locationInModule": {
|
|
2142
2346
|
"filename": "src/steps/step.ts",
|
|
2143
|
-
"line":
|
|
2347
|
+
"line": 120
|
|
2144
2348
|
},
|
|
2145
2349
|
"name": "toGithub",
|
|
2146
2350
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -2157,7 +2361,7 @@
|
|
|
2157
2361
|
},
|
|
2158
2362
|
"locationInModule": {
|
|
2159
2363
|
"filename": "src/steps/step.ts",
|
|
2160
|
-
"line":
|
|
2364
|
+
"line": 99
|
|
2161
2365
|
},
|
|
2162
2366
|
"name": "toGitlab",
|
|
2163
2367
|
"overrides": "projen-pipelines.PipelineStep",
|
|
@@ -2177,7 +2381,7 @@
|
|
|
2177
2381
|
},
|
|
2178
2382
|
"locationInModule": {
|
|
2179
2383
|
"filename": "src/steps/step.ts",
|
|
2180
|
-
"line":
|
|
2384
|
+
"line": 92
|
|
2181
2385
|
},
|
|
2182
2386
|
"name": "commands",
|
|
2183
2387
|
"protected": true,
|
|
@@ -2197,13 +2401,14 @@
|
|
|
2197
2401
|
"assembly": "projen-pipelines",
|
|
2198
2402
|
"datatype": true,
|
|
2199
2403
|
"docs": {
|
|
2200
|
-
"stability": "stable"
|
|
2404
|
+
"stability": "stable",
|
|
2405
|
+
"summary": "Options for a CDK stage like the target environment."
|
|
2201
2406
|
},
|
|
2202
2407
|
"fqn": "projen-pipelines.StageOptions",
|
|
2203
2408
|
"kind": "interface",
|
|
2204
2409
|
"locationInModule": {
|
|
2205
2410
|
"filename": "src/awscdk/base.ts",
|
|
2206
|
-
"line":
|
|
2411
|
+
"line": 63
|
|
2207
2412
|
},
|
|
2208
2413
|
"name": "StageOptions",
|
|
2209
2414
|
"properties": [
|
|
@@ -2215,7 +2420,7 @@
|
|
|
2215
2420
|
"immutable": true,
|
|
2216
2421
|
"locationInModule": {
|
|
2217
2422
|
"filename": "src/awscdk/base.ts",
|
|
2218
|
-
"line":
|
|
2423
|
+
"line": 64
|
|
2219
2424
|
},
|
|
2220
2425
|
"name": "env",
|
|
2221
2426
|
"type": {
|
|
@@ -2226,6 +2431,6 @@
|
|
|
2226
2431
|
"symbolId": "src/awscdk/base:StageOptions"
|
|
2227
2432
|
}
|
|
2228
2433
|
},
|
|
2229
|
-
"version": "0.0.
|
|
2230
|
-
"fingerprint": "
|
|
2434
|
+
"version": "0.0.63",
|
|
2435
|
+
"fingerprint": "iZ0Oz6yTuqWRnrLhX4ire3pd3/2Vh+Byz0cidSDXSf8="
|
|
2231
2436
|
}
|