Skip to content

Commit

Permalink
This release adds support for the "MYSQL_CACHING_SHA2_PASSWORD" enum …
Browse files Browse the repository at this point in the history
…value for RDS Proxy ClientPasswordAuthType.
  • Loading branch information
aws-sdk-dotnet-automation committed Dec 16, 2024
1 parent a283bd8 commit e49a73f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions generator/ServiceModels/rds/rds-2014-10-31.api.json
Original file line number Diff line number Diff line change
Expand Up @@ -3301,6 +3301,7 @@
"type":"string",
"enum":[
"MYSQL_NATIVE_PASSWORD",
"MYSQL_CACHING_SHA2_PASSWORD",
"POSTGRES_SCRAM_SHA_256",
"POSTGRES_MD5",
"SQL_SERVER_AUTHENTICATION"
Expand Down
1 change: 1 addition & 0 deletions generator/ServiceModels/rds/rds-2014-10-31.normal.json
Original file line number Diff line number Diff line change
Expand Up @@ -3658,6 +3658,7 @@
"type":"string",
"enum":[
"MYSQL_NATIVE_PASSWORD",
"MYSQL_CACHING_SHA2_PASSWORD",
"POSTGRES_SCRAM_SHA_256",
"POSTGRES_MD5",
"SQL_SERVER_AUTHENTICATION"
Expand Down
4 changes: 4 additions & 0 deletions sdk/src/Services/RDS/Generated/ServiceEnumerations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,10 @@ public static implicit operator AutomationMode(string value)
public class ClientPasswordAuthType : ConstantClass
{

/// <summary>
/// Constant MYSQL_CACHING_SHA2_PASSWORD for ClientPasswordAuthType
/// </summary>
public static readonly ClientPasswordAuthType MYSQL_CACHING_SHA2_PASSWORD = new ClientPasswordAuthType("MYSQL_CACHING_SHA2_PASSWORD");
/// <summary>
/// Constant MYSQL_NATIVE_PASSWORD for ClientPasswordAuthType
/// </summary>
Expand Down

0 comments on commit e49a73f

Please sign in to comment.