Skip to content

Commit

Permalink
Merge branch 'release-1.34.161' into develop
Browse files Browse the repository at this point in the history
* release-1.34.161:
  Bumping version to 1.34.161
  Update to latest models
  • Loading branch information
aws-sdk-python-automation committed Aug 14, 2024
2 parents a60b715 + d1f7168 commit 9ae72e9
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 12 deletions.
7 changes: 7 additions & 0 deletions .changes/1.34.161.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[
{
"category": "``codebuild``",
"description": "AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project.",
"type": "api-change"
}
]
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
CHANGELOG
=========

1.34.161
========

* api-change:``codebuild``: AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project.


1.34.160
========

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.34.160'
__version__ = '1.34.161'


class NullHandler(logging.Handler):
Expand Down
22 changes: 12 additions & 10 deletions botocore/data/codebuild/2016-10-06/service-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
{"shape":"AccountLimitExceededException"},
{"shape":"ResourceAlreadyExistsException"}
],
"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>"
"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>"
},
"InvalidateProjectCache":{
"name":"InvalidateProjectCache",
Expand Down Expand Up @@ -735,7 +735,8 @@
"OAUTH",
"BASIC_AUTH",
"PERSONAL_ACCESS_TOKEN",
"CODECONNECTIONS"
"CODECONNECTIONS",
"SECRETS_MANAGER"
]
},
"BatchDeleteBuildsInput":{
Expand Down Expand Up @@ -2424,15 +2425,15 @@
},
"token":{
"shape":"SensitiveNonEmptyString",
"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>"
"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>"
},
"serverType":{
"shape":"ServerType",
"documentation":"<p> The source provider used for this project. </p>"
},
"authType":{
"shape":"AuthType",
"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>"
"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>"
},
"shouldOverwrite":{
"shape":"WrapperBoolean",
Expand Down Expand Up @@ -3391,7 +3392,7 @@
},
"auth":{
"shape":"SourceAuth",
"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>"
"documentation":"<p>Information about the authorization settings for CodeBuild to access the source code to be built.</p>"
},
"reportBuildStatus":{
"shape":"WrapperBoolean",
Expand Down Expand Up @@ -3986,20 +3987,21 @@
"members":{
"type":{
"shape":"SourceAuthType",
"documentation":"<p>The authorization type to use. Valid options are OAUTH or CODECONNECTIONS.</p>"
"documentation":"<p>The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.</p>"
},
"resource":{
"shape":"String",
"documentation":"<p>The resource value that applies to the specified authorization type.</p>"
}
},
"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>"
"documentation":"<p>Information about the authorization settings for CodeBuild to access the source code to be built.</p>"
},
"SourceAuthType":{
"type":"string",
"enum":[
"OAUTH",
"CODECONNECTIONS"
"CODECONNECTIONS",
"SECRETS_MANAGER"
]
},
"SourceCredentialsInfo":{
Expand All @@ -4015,11 +4017,11 @@
},
"authType":{
"shape":"AuthType",
"documentation":"<p> The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, or CODECONNECTIONS. </p>"
"documentation":"<p> The type of authentication used by the credentials. Valid options are OAUTH, BASIC_AUTH, PERSONAL_ACCESS_TOKEN, CODECONNECTIONS, or SECRETS_MANAGER. </p>"
},
"resource":{
"shape":"String",
"documentation":"<p>The connection ARN if your serverType type is GITLAB or GITLAB_SELF_MANAGED and your authType is CODECONNECTIONS.</p>"
"documentation":"<p>The connection ARN if your authType is CODECONNECTIONS or SECRETS_MANAGER.</p>"
}
},
"documentation":"<p> Information about the credentials for a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket repository. </p>"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# The short X.Y version.
version = '1.34.1'
# The full version, including alpha/beta/rc tags.
release = '1.34.160'
release = '1.34.161'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 9ae72e9

Please sign in to comment.