Skip to content

Commit

Permalink
4.1.635
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-dotnet-automation committed Aug 14, 2024
1 parent 605d0dd commit 192aeb5
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 16 deletions.
4 changes: 2 additions & 2 deletions Include/sdk/_sdk-versions.json
Original file line number Diff line number Diff line change
@@ -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,
Expand Down Expand Up @@ -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"
Expand Down
5 changes: 4 additions & 1 deletion changelogs/CHANGELOG.2024.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
5 changes: 4 additions & 1 deletion changelogs/CHANGELOG.ALL.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions modules/AWSPowerShell/AWSPowerShellCompleters.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down Expand Up @@ -12585,7 +12585,7 @@ $CB_Completers = {
($_ -eq "Start-CBBuild/SourceAuthOverride_Type")
}
{
$v = "CODECONNECTIONS","OAUTH"
$v = "CODECONNECTIONS","OAUTH","SECRETS_MANAGER"
break
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down Expand Up @@ -381,7 +381,7 @@ $CB_Completers = {
($_ -eq "Start-CBBuild/SourceAuthOverride_Type")
}
{
$v = "CODECONNECTIONS","OAUTH"
$v = "CODECONNECTIONS","OAUTH","SECRETS_MANAGER"
break
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ namespace Amazon.PowerShell.Cmdlets.CB
{
/// <summary>
/// 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.
/// </summary>
[Cmdlet("Import", "CBSourceCredential", SupportsShouldProcess = true, ConfirmImpact = ConfirmImpact.Medium)]
[OutputType("System.String")]
Expand All @@ -50,8 +51,7 @@ public partial class ImportCBSourceCredentialCmdlet : AmazonCodeBuildClientCmdle
/// <para>
/// <para> 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.</para>
/// by the API and must be created using the CodeBuild console.</para>
/// </para>
/// </summary>
#if !MODULAR
Expand Down Expand Up @@ -99,7 +99,8 @@ public partial class ImportCBSourceCredentialCmdlet : AmazonCodeBuildClientCmdle
/// <para>
/// <para> 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 <c>authType</c> CODECONNECTIONS,
/// this is the <c>connectionArn</c>.</para>
/// this is the <c>connectionArn</c>. For the <c>authType</c> SECRETS_MANAGER, this is
/// the <c>secretArn</c>.</para>
/// </para>
/// </summary>
#if !MODULAR
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -946,7 +946,7 @@ public partial class NewCBProjectCmdlet : AmazonCodeBuildClientCmdlet, IExecutor
#region Parameter Auth_Type
/// <summary>
/// <para>
/// <para>The authorization type to use. Valid options are OAUTH or CODECONNECTIONS.</para>
/// <para>The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.</para>
/// </para>
/// </summary>
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ public partial class StartCBBatchCmdlet : AmazonCodeBuildClientCmdlet, IExecutor
#region Parameter SourceAuthOverride_Type
/// <summary>
/// <para>
/// <para>The authorization type to use. Valid options are OAUTH or CODECONNECTIONS.</para>
/// <para>The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.</para>
/// </para>
/// </summary>
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -715,7 +715,7 @@ public partial class StartCBBuildCmdlet : AmazonCodeBuildClientCmdlet, IExecutor
#region Parameter SourceAuthOverride_Type
/// <summary>
/// <para>
/// <para>The authorization type to use. Valid options are OAUTH or CODECONNECTIONS.</para>
/// <para>The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.</para>
/// </para>
/// </summary>
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ public partial class UpdateCBProjectCmdlet : AmazonCodeBuildClientCmdlet, IExecu
#region Parameter Auth_Type
/// <summary>
/// <para>
/// <para>The authorization type to use. Valid options are OAUTH or CODECONNECTIONS.</para>
/// <para>The authorization type to use. Valid options are OAUTH, CODECONNECTIONS, or SECRETS_MANAGER.</para>
/// </para>
/// </summary>
[System.Management.Automation.Parameter(ValueFromPipelineByPropertyName = true)]
Expand Down
Binary file modified modules/AWSPowerShell/CmdletsList.dat
Binary file not shown.
Binary file modified modules/ModularAWSPowerShell/CmdletsList.dat
Binary file not shown.

0 comments on commit 192aeb5

Please sign in to comment.