Skip to content

Commit e49a73f

Browse files
This release adds support for the "MYSQL_CACHING_SHA2_PASSWORD" enum value for RDS Proxy ClientPasswordAuthType.
1 parent a283bd8 commit e49a73f

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

generator/ServiceModels/rds/rds-2014-10-31.api.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3301,6 +3301,7 @@
33013301
"type":"string",
33023302
"enum":[
33033303
"MYSQL_NATIVE_PASSWORD",
3304+
"MYSQL_CACHING_SHA2_PASSWORD",
33043305
"POSTGRES_SCRAM_SHA_256",
33053306
"POSTGRES_MD5",
33063307
"SQL_SERVER_AUTHENTICATION"

generator/ServiceModels/rds/rds-2014-10-31.normal.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3658,6 +3658,7 @@
36583658
"type":"string",
36593659
"enum":[
36603660
"MYSQL_NATIVE_PASSWORD",
3661+
"MYSQL_CACHING_SHA2_PASSWORD",
36613662
"POSTGRES_SCRAM_SHA_256",
36623663
"POSTGRES_MD5",
36633664
"SQL_SERVER_AUTHENTICATION"

sdk/src/Services/RDS/Generated/ServiceEnumerations.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,10 @@ public static implicit operator AutomationMode(string value)
392392
public class ClientPasswordAuthType : ConstantClass
393393
{
394394

395+
/// <summary>
396+
/// Constant MYSQL_CACHING_SHA2_PASSWORD for ClientPasswordAuthType
397+
/// </summary>
398+
public static readonly ClientPasswordAuthType MYSQL_CACHING_SHA2_PASSWORD = new ClientPasswordAuthType("MYSQL_CACHING_SHA2_PASSWORD");
395399
/// <summary>
396400
/// Constant MYSQL_NATIVE_PASSWORD for ClientPasswordAuthType
397401
/// </summary>

0 commit comments

Comments
 (0)