From 9c2750a2d32079b138560666bab8ede5d665d2b1 Mon Sep 17 00:00:00 2001 From: AsyncAws <61784373+async-aws-bot@users.noreply.github.com> Date: Thu, 15 Aug 2024 01:20:35 -0700 Subject: [PATCH] Update generated code (#1749) update generated code --- manifest.json | 2 +- src/Service/CodeBuild/CHANGELOG.md | 4 ++++ src/Service/CodeBuild/composer.json | 2 +- src/Service/CodeBuild/src/Enum/SourceAuthType.php | 2 ++ src/Service/CodeBuild/src/ValueObject/ProjectSource.php | 2 -- src/Service/CodeBuild/src/ValueObject/SourceAuth.php | 4 +--- 6 files changed, 9 insertions(+), 7 deletions(-) diff --git a/manifest.json b/manifest.json index 4eba8759c..6df8601f4 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "variables": { - "${LATEST}": "3.319.2" + "${LATEST}": "3.320.0" }, "endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json", "services": { diff --git a/src/Service/CodeBuild/CHANGELOG.md b/src/Service/CodeBuild/CHANGELOG.md index 4b4891d0d..c63d73878 100644 --- a/src/Service/CodeBuild/CHANGELOG.md +++ b/src/Service/CodeBuild/CHANGELOG.md @@ -2,6 +2,10 @@ ## NOT RELEASED +### Added + +- AWS api-change: AWS CodeBuild now supports using Secrets Manager to store git credentials and using multiple source credentials in a single project. + ### Changed - Enable compiler optimization for the `sprintf` function. diff --git a/src/Service/CodeBuild/composer.json b/src/Service/CodeBuild/composer.json index 3a983c885..457740963 100644 --- a/src/Service/CodeBuild/composer.json +++ b/src/Service/CodeBuild/composer.json @@ -28,7 +28,7 @@ }, "extra": { "branch-alias": { - "dev-master": "2.4-dev" + "dev-master": "2.5-dev" } } } diff --git a/src/Service/CodeBuild/src/Enum/SourceAuthType.php b/src/Service/CodeBuild/src/Enum/SourceAuthType.php index 85dda3623..ceb2f95ed 100644 --- a/src/Service/CodeBuild/src/Enum/SourceAuthType.php +++ b/src/Service/CodeBuild/src/Enum/SourceAuthType.php @@ -6,12 +6,14 @@ final class SourceAuthType { public const CODECONNECTIONS = 'CODECONNECTIONS'; public const OAUTH = 'OAUTH'; + public const SECRETS_MANAGER = 'SECRETS_MANAGER'; public static function exists(string $value): bool { return isset([ self::CODECONNECTIONS => true, self::OAUTH => true, + self::SECRETS_MANAGER => true, ][$value]); } } diff --git a/src/Service/CodeBuild/src/ValueObject/ProjectSource.php b/src/Service/CodeBuild/src/ValueObject/ProjectSource.php index a3d5a4fda..fd1087107 100644 --- a/src/Service/CodeBuild/src/ValueObject/ProjectSource.php +++ b/src/Service/CodeBuild/src/ValueObject/ProjectSource.php @@ -105,8 +105,6 @@ final class ProjectSource /** * Information about the authorization settings for CodeBuild to access the source code to be built. * - * This information is for the CodeBuild console's use only. Your code should not get or set this information directly. - * * @var SourceAuth|null */ private $auth; diff --git a/src/Service/CodeBuild/src/ValueObject/SourceAuth.php b/src/Service/CodeBuild/src/ValueObject/SourceAuth.php index c3a352b57..594a19a7f 100644 --- a/src/Service/CodeBuild/src/ValueObject/SourceAuth.php +++ b/src/Service/CodeBuild/src/ValueObject/SourceAuth.php @@ -7,13 +7,11 @@ /** * Information about the authorization settings for CodeBuild to access the source code to be built. - * - * This information is for the CodeBuild console's use only. Your code should not get or set this information directly. */ final class SourceAuth { /** - * The authorization type to use. Valid options are OAUTH or CODECONNECTIONS. + * The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER. * * @var SourceAuthType::* */