@aws-cdk/aws-codestar-alpha 2.161.1-alpha.0 → 2.162.0-alpha.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 +5 -5
- package/.jsii.tabl.json.gz +0 -0
- package/README.md +1 -1
- package/lib/github-repository.js +1 -1
- package/package.json +6 -6
package/.jsii
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"url": "https://aws.amazon.com"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"aws-cdk-lib": "^2.
|
|
11
|
+
"aws-cdk-lib": "^2.162.0",
|
|
12
12
|
"constructs": "^10.0.0"
|
|
13
13
|
},
|
|
14
14
|
"dependencyClosure": {
|
|
@@ -3883,7 +3883,7 @@
|
|
|
3883
3883
|
},
|
|
3884
3884
|
"name": "@aws-cdk/aws-codestar-alpha",
|
|
3885
3885
|
"readme": {
|
|
3886
|
-
"markdown": "# AWS::CodeStar Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\n## GitHub Repository\n\nTo create a new GitHub Repository and commit the assets from S3 bucket into the repository after it is created:\n\n```ts\nimport * as codestar from '@aws-cdk/aws-codestar-alpha';\nimport * as s3 from 'aws-cdk-lib/aws-s3'\n\nnew codestar.GitHubRepository(this, 'GitHubRepo', {\n owner: 'aws',\n repositoryName: 'aws-cdk',\n accessToken: SecretValue.secretsManager('my-github-token', {\n jsonField: 'token',\n }),\n contentsBucket: s3.Bucket.fromBucketName(this, 'Bucket', 'bucket
|
|
3886
|
+
"markdown": "# AWS::CodeStar Construct Library\n<!--BEGIN STABILITY BANNER-->\n\n---\n\n\n\n> The APIs of higher level constructs in this module are experimental and under active development.\n> They are subject to non-backward compatible changes or removal in any future version. These are\n> not subject to the [Semantic Versioning](https://semver.org/) model and breaking changes will be\n> announced in the release notes. This means that while you may use them, you may need to update\n> your source code when upgrading to a newer version of this package.\n\n---\n\n<!--END STABILITY BANNER-->\n\n## GitHub Repository\n\nTo create a new GitHub Repository and commit the assets from S3 bucket into the repository after it is created:\n\n```ts\nimport * as codestar from '@aws-cdk/aws-codestar-alpha';\nimport * as s3 from 'aws-cdk-lib/aws-s3'\n\nnew codestar.GitHubRepository(this, 'GitHubRepo', {\n owner: 'aws',\n repositoryName: 'aws-cdk',\n accessToken: SecretValue.secretsManager('my-github-token', {\n jsonField: 'token',\n }),\n contentsBucket: s3.Bucket.fromBucketName(this, 'Bucket', 'amzn-s3-demo-bucket'),\n contentsKey: 'import.zip',\n});\n```\n\n## Update or Delete the GitHubRepository\n\nAt this moment, updates to the `GitHubRepository` are not supported and the repository will not be deleted upon the deletion of the CloudFormation stack. You will need to update or delete the GitHub repository manually.\n"
|
|
3887
3887
|
},
|
|
3888
3888
|
"repository": {
|
|
3889
3889
|
"directory": "packages/@aws-cdk/aws-codestar-alpha",
|
|
@@ -3927,7 +3927,7 @@
|
|
|
3927
3927
|
"docs": {
|
|
3928
3928
|
"stability": "experimental",
|
|
3929
3929
|
"summary": "The GitHubRepository resource.",
|
|
3930
|
-
"example": "import * as codestar from '@aws-cdk/aws-codestar-alpha';\nimport * as s3 from 'aws-cdk-lib/aws-s3'\n\nnew codestar.GitHubRepository(this, 'GitHubRepo', {\n owner: 'aws',\n repositoryName: 'aws-cdk',\n accessToken: SecretValue.secretsManager('my-github-token', {\n jsonField: 'token',\n }),\n contentsBucket: s3.Bucket.fromBucketName(this, 'Bucket', 'bucket
|
|
3930
|
+
"example": "import * as codestar from '@aws-cdk/aws-codestar-alpha';\nimport * as s3 from 'aws-cdk-lib/aws-s3'\n\nnew codestar.GitHubRepository(this, 'GitHubRepo', {\n owner: 'aws',\n repositoryName: 'aws-cdk',\n accessToken: SecretValue.secretsManager('my-github-token', {\n jsonField: 'token',\n }),\n contentsBucket: s3.Bucket.fromBucketName(this, 'Bucket', 'amzn-s3-demo-bucket'),\n contentsKey: 'import.zip',\n});",
|
|
3931
3931
|
"custom": {
|
|
3932
3932
|
"exampleMetadata": "infused"
|
|
3933
3933
|
}
|
|
@@ -4013,7 +4013,7 @@
|
|
|
4013
4013
|
"docs": {
|
|
4014
4014
|
"stability": "experimental",
|
|
4015
4015
|
"summary": "Construction properties of `GitHubRepository`.",
|
|
4016
|
-
"example": "import * as codestar from '@aws-cdk/aws-codestar-alpha';\nimport * as s3 from 'aws-cdk-lib/aws-s3'\n\nnew codestar.GitHubRepository(this, 'GitHubRepo', {\n owner: 'aws',\n repositoryName: 'aws-cdk',\n accessToken: SecretValue.secretsManager('my-github-token', {\n jsonField: 'token',\n }),\n contentsBucket: s3.Bucket.fromBucketName(this, 'Bucket', 'bucket
|
|
4016
|
+
"example": "import * as codestar from '@aws-cdk/aws-codestar-alpha';\nimport * as s3 from 'aws-cdk-lib/aws-s3'\n\nnew codestar.GitHubRepository(this, 'GitHubRepo', {\n owner: 'aws',\n repositoryName: 'aws-cdk',\n accessToken: SecretValue.secretsManager('my-github-token', {\n jsonField: 'token',\n }),\n contentsBucket: s3.Bucket.fromBucketName(this, 'Bucket', 'amzn-s3-demo-bucket'),\n contentsKey: 'import.zip',\n});",
|
|
4017
4017
|
"custom": {
|
|
4018
4018
|
"exampleMetadata": "infused"
|
|
4019
4019
|
}
|
|
@@ -4269,6 +4269,6 @@
|
|
|
4269
4269
|
"symbolId": "lib/github-repository:RepositoryVisibility"
|
|
4270
4270
|
}
|
|
4271
4271
|
},
|
|
4272
|
-
"version": "2.
|
|
4272
|
+
"version": "2.162.0-alpha.0",
|
|
4273
4273
|
"fingerprint": "**********"
|
|
4274
4274
|
}
|
package/.jsii.tabl.json.gz
CHANGED
|
Binary file
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ new codestar.GitHubRepository(this, 'GitHubRepo', {
|
|
|
29
29
|
accessToken: SecretValue.secretsManager('my-github-token', {
|
|
30
30
|
jsonField: 'token',
|
|
31
31
|
}),
|
|
32
|
-
contentsBucket: s3.Bucket.fromBucketName(this, 'Bucket', 'bucket
|
|
32
|
+
contentsBucket: s3.Bucket.fromBucketName(this, 'Bucket', 'amzn-s3-demo-bucket'),
|
|
33
33
|
contentsKey: 'import.zip',
|
|
34
34
|
});
|
|
35
35
|
```
|
package/lib/github-repository.js
CHANGED
|
@@ -42,7 +42,7 @@ class GitHubRepository extends cdk.Resource {
|
|
|
42
42
|
}
|
|
43
43
|
exports.GitHubRepository = GitHubRepository;
|
|
44
44
|
_a = JSII_RTTI_SYMBOL_1;
|
|
45
|
-
GitHubRepository[_a] = { fqn: "@aws-cdk/aws-codestar-alpha.GitHubRepository", version: "2.
|
|
45
|
+
GitHubRepository[_a] = { fqn: "@aws-cdk/aws-codestar-alpha.GitHubRepository", version: "2.162.0-alpha.0" };
|
|
46
46
|
/**
|
|
47
47
|
* Visibility of the GitHubRepository
|
|
48
48
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-cdk/aws-codestar-alpha",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.162.0-alpha.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The CDK Construct Library for AWS::CodeStar",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -83,16 +83,16 @@
|
|
|
83
83
|
},
|
|
84
84
|
"license": "Apache-2.0",
|
|
85
85
|
"devDependencies": {
|
|
86
|
-
"@aws-cdk/cdk-build-tools": "2.
|
|
87
|
-
"@aws-cdk/integ-runner": "2.
|
|
88
|
-
"@aws-cdk/pkglint": "2.
|
|
86
|
+
"@aws-cdk/cdk-build-tools": "2.162.0-alpha.0",
|
|
87
|
+
"@aws-cdk/integ-runner": "2.162.0-alpha.0",
|
|
88
|
+
"@aws-cdk/pkglint": "2.162.0-alpha.0",
|
|
89
89
|
"@types/jest": "^29.5.12",
|
|
90
|
-
"aws-cdk-lib": "2.
|
|
90
|
+
"aws-cdk-lib": "2.162.0",
|
|
91
91
|
"constructs": "^10.0.0"
|
|
92
92
|
},
|
|
93
93
|
"dependencies": {},
|
|
94
94
|
"peerDependencies": {
|
|
95
|
-
"aws-cdk-lib": "^2.
|
|
95
|
+
"aws-cdk-lib": "^2.162.0",
|
|
96
96
|
"constructs": "^10.0.0"
|
|
97
97
|
},
|
|
98
98
|
"engines": {
|