diff --git a/Include/sdk/_sdk-versions.json b/Include/sdk/_sdk-versions.json index 4682a2df3..bfed37993 100644 --- a/Include/sdk/_sdk-versions.json +++ b/Include/sdk/_sdk-versions.json @@ -1,7 +1,7 @@ { "NewServiceVersion" : "3.7.400.0", - "ProductVersion" : "3.7.864.0", + "ProductVersion" : "3.7.865.0", "CoreVersion" : "3.7.400.5", "OverrideCoreVersion" : "3.3", "DefaultToPreview" : false, @@ -660,7 +660,7 @@ "InPreview" : false }, "CodeBuild" : { - "Version" : "3.7.400.5", + "Version" : "3.7.401.0", "AssemblyVersionOverride" : "3.3", "Dependencies" : { "Core" : "3.7.400.5" diff --git a/changelogs/CHANGELOG.2024.md b/changelogs/CHANGELOG.2024.md index cdaff78b9..cba4e8352 100644 --- a/changelogs/CHANGELOG.2024.md +++ b/changelogs/CHANGELOG.2024.md @@ -1,4 +1,7 @@ -### 4.1.634 (2024-08-13 20:53Z) +### 4.1.635 (2024-08-14 20:43Z) + * AWS Tools for PowerShell now use AWS .NET SDK 3.7.865.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md. + +### 4.1.634 (2024-08-13 20:53Z) * AWS Tools for PowerShell now use AWS .NET SDK 3.7.864.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md. * Amazon Amplify * Modified cmdlet New-AMPApp: added parameter CacheConfig_Type. diff --git a/changelogs/CHANGELOG.ALL.md b/changelogs/CHANGELOG.ALL.md index 8b2f37b29..38566114b 100644 --- a/changelogs/CHANGELOG.ALL.md +++ b/changelogs/CHANGELOG.ALL.md @@ -1,4 +1,7 @@ -### 4.1.634 (2024-08-13 20:53Z) +### 4.1.635 (2024-08-14 20:43Z) + * AWS Tools for PowerShell now use AWS .NET SDK 3.7.865.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md. + +### 4.1.634 (2024-08-13 20:53Z) * AWS Tools for PowerShell now use AWS .NET SDK 3.7.864.0 and leverage its new features and improvements. Please find a description of the changes at https://github.com/aws/aws-sdk-net/blob/main/changelogs/SDK.CHANGELOG.ALL.md. * Amazon Amplify * Modified cmdlet New-AMPApp: added parameter CacheConfig_Type. diff --git a/modules/AWSPowerShell/AWSPowerShellCompleters.psm1 b/modules/AWSPowerShell/AWSPowerShellCompleters.psm1 index 951dfeb5e..2dabedf14 100644 --- a/modules/AWSPowerShell/AWSPowerShellCompleters.psm1 +++ b/modules/AWSPowerShell/AWSPowerShellCompleters.psm1 @@ -12323,7 +12323,7 @@ $CB_Completers = { # Amazon.CodeBuild.AuthType "Import-CBSourceCredential/AuthType" { - $v = "BASIC_AUTH","CODECONNECTIONS","OAUTH","PERSONAL_ACCESS_TOKEN" + $v = "BASIC_AUTH","CODECONNECTIONS","OAUTH","PERSONAL_ACCESS_TOKEN","SECRETS_MANAGER" break } @@ -12585,7 +12585,7 @@ $CB_Completers = { ($_ -eq "Start-CBBuild/SourceAuthOverride_Type") } { - $v = "CODECONNECTIONS","OAUTH" + $v = "CODECONNECTIONS","OAUTH","SECRETS_MANAGER" break } diff --git a/modules/AWSPowerShell/Cmdlets/CodeBuild/AWS.Tools.CodeBuild.Completers.psm1 b/modules/AWSPowerShell/Cmdlets/CodeBuild/AWS.Tools.CodeBuild.Completers.psm1 index a8fef12b4..d6bf90296 100644 --- a/modules/AWSPowerShell/Cmdlets/CodeBuild/AWS.Tools.CodeBuild.Completers.psm1 +++ b/modules/AWSPowerShell/Cmdlets/CodeBuild/AWS.Tools.CodeBuild.Completers.psm1 @@ -119,7 +119,7 @@ $CB_Completers = { # Amazon.CodeBuild.AuthType "Import-CBSourceCredential/AuthType" { - $v = "BASIC_AUTH","CODECONNECTIONS","OAUTH","PERSONAL_ACCESS_TOKEN" + $v = "BASIC_AUTH","CODECONNECTIONS","OAUTH","PERSONAL_ACCESS_TOKEN","SECRETS_MANAGER" break } @@ -381,7 +381,7 @@ $CB_Completers = { ($_ -eq "Start-CBBuild/SourceAuthOverride_Type") } { - $v = "CODECONNECTIONS","OAUTH" + $v = "CODECONNECTIONS","OAUTH","SECRETS_MANAGER" break } diff --git a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Import-CBSourceCredential-Cmdlet.cs b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Import-CBSourceCredential-Cmdlet.cs index 023a0aacf..cf92a8e56 100644 --- a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Import-CBSourceCredential-Cmdlet.cs +++ b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Import-CBSourceCredential-Cmdlet.cs @@ -29,7 +29,8 @@ namespace Amazon.PowerShell.Cmdlets.CB { /// /// Imports the source repository credentials for an CodeBuild project that has its source - /// code stored in a GitHub, GitHub Enterprise, or Bitbucket repository. + /// code stored in a GitHub, GitHub Enterprise, GitLab, GitLab Self Managed, or Bitbucket + /// repository. /// [Cmdlet("Import", "CBSourceCredential", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)] [OutputType("System.String")] @@ -50,8 +51,7 @@ public partial class ImportCBSourceCredentialCmdlet : AmazonCodeBuildClientCmdle /// /// 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. + /// by the API and must be created using the CodeBuild console. /// /// #if !MODULAR @@ -99,7 +99,8 @@ public partial class ImportCBSourceCredentialCmdlet : AmazonCodeBuildClientCmdle /// /// 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 authType CODECONNECTIONS, - /// this is the connectionArn. + /// this is the connectionArn. For the authType SECRETS_MANAGER, this is + /// the secretArn. /// /// #if !MODULAR diff --git a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/New-CBProject-Cmdlet.cs b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/New-CBProject-Cmdlet.cs index 25403b758..802a663bf 100644 --- a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/New-CBProject-Cmdlet.cs +++ b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/New-CBProject-Cmdlet.cs @@ -946,7 +946,7 @@ public partial class NewCBProjectCmdlet : AmazonCodeBuildClientCmdlet, IExecutor #region Parameter Auth_Type /// /// - /// The authorization type to use. Valid options are OAUTH or CODECONNECTIONS. + /// The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] diff --git a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Start-CBBatch-Cmdlet.cs b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Start-CBBatch-Cmdlet.cs index b80e948ab..0275ebcd6 100644 --- a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Start-CBBatch-Cmdlet.cs +++ b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Start-CBBatch-Cmdlet.cs @@ -734,7 +734,7 @@ public partial class StartCBBatchCmdlet : AmazonCodeBuildClientCmdlet, IExecutor #region Parameter SourceAuthOverride_Type /// /// - /// The authorization type to use. Valid options are OAUTH or CODECONNECTIONS. + /// The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] diff --git a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Start-CBBuild-Cmdlet.cs b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Start-CBBuild-Cmdlet.cs index 31237b9e1..8961c7779 100644 --- a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Start-CBBuild-Cmdlet.cs +++ b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Start-CBBuild-Cmdlet.cs @@ -715,7 +715,7 @@ public partial class StartCBBuildCmdlet : AmazonCodeBuildClientCmdlet, IExecutor #region Parameter SourceAuthOverride_Type /// /// - /// The authorization type to use. Valid options are OAUTH or CODECONNECTIONS. + /// The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] diff --git a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Update-CBProject-Cmdlet.cs b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Update-CBProject-Cmdlet.cs index e63bd3bcb..566eada18 100644 --- a/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Update-CBProject-Cmdlet.cs +++ b/modules/AWSPowerShell/Cmdlets/CodeBuild/Basic/Update-CBProject-Cmdlet.cs @@ -914,7 +914,7 @@ public partial class UpdateCBProjectCmdlet : AmazonCodeBuildClientCmdlet, IExecu #region Parameter Auth_Type /// /// - /// The authorization type to use. Valid options are OAUTH or CODECONNECTIONS. + /// The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER. /// /// [System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)] diff --git a/modules/AWSPowerShell/CmdletsList.dat b/modules/AWSPowerShell/CmdletsList.dat index bc5b27fd2..eb4a64ad4 100644 Binary files a/modules/AWSPowerShell/CmdletsList.dat and b/modules/AWSPowerShell/CmdletsList.dat differ diff --git a/modules/ModularAWSPowerShell/CmdletsList.dat b/modules/ModularAWSPowerShell/CmdletsList.dat index 6e43616a8..8a781d3da 100644 Binary files a/modules/ModularAWSPowerShell/CmdletsList.dat and b/modules/ModularAWSPowerShell/CmdletsList.dat differ