Skip to content

Commit b202034

Browse files
author
AWS
committed
Merge remote-tracking branch 'public/release'
2 parents c66e0e7 + a269a17 commit b202034

File tree

4 files changed

+34
-20
lines changed

4 files changed

+34
-20
lines changed

.changes/2.27.5.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"version": "2.27.5",
3+
"date": "2024-08-14",
4+
"entries": [
5+
{
6+
"type": "feature",
7+
"category": "AWS CodeBuild",
8+
"contributor": "",
9+
"description": "AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project."
10+
},
11+
{
12+
"type": "feature",
13+
"category": "S3 Transfer Manager",
14+
"contributor": "",
15+
"description": "This change enables multipart download for S3 Transfer Manager with the java-based Multipart S3 Async Client."
16+
}
17+
]
18+
}

.changes/next-release/feature-S3TransferManager-a02ba8b.json

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To automatically manage module versions (currently all modules have the same ver
5252
<dependency>
5353
<groupId>software.amazon.awssdk</groupId>
5454
<artifactId>bom</artifactId>
55-
<version>2.27.4</version>
55+
<version>2.27.5</version>
5656
<type>pom</type>
5757
<scope>import</scope>
5858
</dependency>
@@ -86,12 +86,12 @@ Alternatively you can add dependencies for the specific services you use only:
8686
<dependency>
8787
<groupId>software.amazon.awssdk</groupId>
8888
<artifactId>ec2</artifactId>
89-
<version>2.27.4</version>
89+
<version>2.27.5</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>software.amazon.awssdk</groupId>
9393
<artifactId>s3</artifactId>
94-
<version>2.27.4</version>
94+
<version>2.27.5</version>
9595
</dependency>
9696
```
9797

@@ -103,7 +103,7 @@ You can import the whole SDK into your project (includes *ALL* services). Please
103103
<dependency>
104104
<groupId>software.amazon.awssdk</groupId>
105105
<artifactId>aws-sdk-java</artifactId>
106-
<version>2.27.4</version>
106+
<version>2.27.5</version>
107107
</dependency>
108108
```
109109

services/codebuild/src/main/resources/codegen-resources/service-2.json

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@
341341
{"shape":"AccountLimitExceededException"},
342342
{"shape":"ResourceAlreadyExistsException"}
343343
],
344-
"documentation":"<p> Imports the source repository credentials for an CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, or Bitbucket repository. </p>"
344+
"documentation":"<p> Imports the source repository credentials for an CodeBuild project that has its source code stored in a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. </p>"
345345
},
346346
"InvalidateProjectCache":{
347347
"name":"InvalidateProjectCache",
@@ -735,7 +735,8 @@
735735
"OAUTH",
736736
"BASIC_AUTH",
737737
"PERSONAL_ACCESS_TOKEN",
738-
"CODECONNECTIONS"
738+
"CODECONNECTIONS",
739+
"SECRETS_MANAGER"
739740
]
740741
},
741742
"BatchDeleteBuildsInput":{
@@ -2424,15 +2425,15 @@
24242425
},
24252426
"token":{
24262427
"shape":"SensitiveNonEmptyString",
2427-
"documentation":"<p> For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is either the access token or the app password. For the <code>authType</code> CODECONNECTIONS, this is the <code>connectionArn</code>.</p>"
2428+
"documentation":"<p> For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is either the access token or the app password. For the <code>authType</code> CODECONNECTIONS, this is the <code>connectionArn</code>. For the <code>authType</code> SECRETS_MANAGER, this is the <code>secretArn</code>.</p>"
24282429
},
24292430
"serverType":{
24302431
"shape":"ServerType",
24312432
"documentation":"<p> The source provider used for this project. </p>"
24322433
},
24332434
"authType":{
24342435
"shape":"AuthType",
2435-
"documentation":"<p> The type of authentication used to connect to a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the CodeBuild console. Note that CODECONNECTIONS is only valid for GitLab and GitLab Self Managed.</p>"
2436+
"documentation":"<p> The type of authentication used to connect to a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. An OAUTH connection is not supported by the API and must be created using the CodeBuild console.</p>"
24362437
},
24372438
"shouldOverwrite":{
24382439
"shape":"WrapperBoolean",
@@ -3391,7 +3392,7 @@
33913392
},
33923393
"auth":{
33933394
"shape":"SourceAuth",
3394-
"documentation":"<p>Information about the authorization settings for CodeBuild to access the source code to be built.</p> <p>This information is for the CodeBuild console's use only. Your code should not get or set this information directly.</p>"
3395+
"documentation":"<p>Information about the authorization settings for CodeBuild to access the source code to be built.</p>"
33953396
},
33963397
"reportBuildStatus":{
33973398
"shape":"WrapperBoolean",
@@ -3986,20 +3987,21 @@
39863987
"members":{
39873988
"type":{
39883989
"shape":"SourceAuthType",
3989-
"documentation":"<p>The authorization type to use. Valid options are OAUTH or CODECONNECTIONS.</p>"
3990+
"documentation":"<p>The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.</p>"
39903991
},
39913992
"resource":{
39923993
"shape":"String",
39933994
"documentation":"<p>The resource value that applies to the specified authorization type.</p>"
39943995
}
39953996
},
3996-
"documentation":"<p>Information about the authorization settings for CodeBuild to access the source code to be built.</p> <p>This information is for the CodeBuild console's use only. Your code should not get or set this information directly.</p>"
3997+
"documentation":"<p>Information about the authorization settings for CodeBuild to access the source code to be built.</p>"
39973998
},
39983999
"SourceAuthType":{
39994000
"type":"string",
40004001
"enum":[
40014002
"OAUTH",
4002-
"CODECONNECTIONS"
4003+
"CODECONNECTIONS",
4004+
"SECRETS_MANAGER"
40034005
]
40044006
},
40054007
"SourceCredentialsInfo":{
@@ -4015,11 +4017,11 @@
40154017
},
40164018
"authType":{
40174019
"shape":"AuthType",
4018-
"documentation":"<p> The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, or CODECONNECTIONS. </p>"
4020+
"documentation":"<p> The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, CODECONNECTIONS, or SECRETS_MANAGER. </p>"
40194021
},
40204022
"resource":{
40214023
"shape":"String",
4022-
"documentation":"<p>The connection ARN if your serverType type is GITLAB or GITLAB_SELF_MANAGED and your authType is CODECONNECTIONS.</p>"
4024+
"documentation":"<p>The connection ARN if your authType is CODECONNECTIONS or SECRETS_MANAGER.</p>"
40234025
}
40244026
},
40254027
"documentation":"<p> Information about the credentials for a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. </p>"

0 commit comments

Comments
 (0)