aws-sdk-rds 1.164.0 → 1.165.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e272d46d80daf068ab310c9de8e4f812c67fcf2ae6c6c342e12d919b0aa34455
4
- data.tar.gz: 78be15dc4f7b784a2466922aa22455fa153ca12dc0b9af905e55f49622534f83
3
+ metadata.gz: fe9c44bc814912e6300a68f2452de5487f9cce6ce68c1f144be99ab662e5e3d5
4
+ data.tar.gz: 68c1b4e613af6180052c41347b7bd4286c2beb9127570ed7274091ddc97d804c
5
5
  SHA512:
6
- metadata.gz: b857fb18e8e17e6d103c2a2545fd6bcaa8ead898e89dd08a1f2d3f5334fec50d116eea8ab16ba4c01769f30e2f6cebdb862916a5efb2e5b6bab3310d8435eb58
7
- data.tar.gz: dcfe5b7711afa64a2bff09a5526ab76892f9e19d71bf8866eebb1ec3d82e4ce6e94816d5ceb94e45059aae95071834f6a39db5a21c62d8f3c4f0aefb4a002dc0
6
+ metadata.gz: e97725eb6ec5497b2aea69aad5081df2086455844af29ebddb73cb95c2c16af24f3ec69879d53848868410c86e4e3b44b01e98871535c6c06ab01887fdd62e2e
7
+ data.tar.gz: bcd67877f45a5331cef53dcde44a05f58847d4a370aaa2aa911625fa4c32c810a984892c135d6b364b468ee7c21f2b9cf9bd4ede93ee9217d6ec8dee11e1d90b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.165.0 (2022-12-13)
5
+ ------------------
6
+
7
+ * Feature - This deployment adds ClientPasswordAuthType field to the Auth structure of the DBProxy.
8
+
4
9
  1.164.0 (2022-12-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.164.0
1
+ 1.165.0
@@ -5935,6 +5935,7 @@ module Aws::RDS
5935
5935
  # auth_scheme: "SECRETS", # accepts SECRETS
5936
5936
  # secret_arn: "String",
5937
5937
  # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
5938
+ # client_password_auth_type: "MYSQL_NATIVE_PASSWORD", # accepts MYSQL_NATIVE_PASSWORD, POSTGRES_SCRAM_SHA_256, POSTGRES_MD5, SQL_SERVER_AUTHENTICATION
5938
5939
  # },
5939
5940
  # ],
5940
5941
  # role_arn: "String", # required
@@ -5968,6 +5969,7 @@ module Aws::RDS
5968
5969
  # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
5969
5970
  # resp.db_proxy.auth[0].secret_arn #=> String
5970
5971
  # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
5972
+ # resp.db_proxy.auth[0].client_password_auth_type #=> String, one of "MYSQL_NATIVE_PASSWORD", "POSTGRES_SCRAM_SHA_256", "POSTGRES_MD5", "SQL_SERVER_AUTHENTICATION"
5971
5973
  # resp.db_proxy.role_arn #=> String
5972
5974
  # resp.db_proxy.endpoint #=> String
5973
5975
  # resp.db_proxy.require_tls #=> Boolean
@@ -7798,6 +7800,7 @@ module Aws::RDS
7798
7800
  # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
7799
7801
  # resp.db_proxy.auth[0].secret_arn #=> String
7800
7802
  # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
7803
+ # resp.db_proxy.auth[0].client_password_auth_type #=> String, one of "MYSQL_NATIVE_PASSWORD", "POSTGRES_SCRAM_SHA_256", "POSTGRES_MD5", "SQL_SERVER_AUTHENTICATION"
7801
7804
  # resp.db_proxy.role_arn #=> String
7802
7805
  # resp.db_proxy.endpoint #=> String
7803
7806
  # resp.db_proxy.require_tls #=> Boolean
@@ -10377,6 +10380,7 @@ module Aws::RDS
10377
10380
  # resp.db_proxies[0].auth[0].auth_scheme #=> String, one of "SECRETS"
10378
10381
  # resp.db_proxies[0].auth[0].secret_arn #=> String
10379
10382
  # resp.db_proxies[0].auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
10383
+ # resp.db_proxies[0].auth[0].client_password_auth_type #=> String, one of "MYSQL_NATIVE_PASSWORD", "POSTGRES_SCRAM_SHA_256", "POSTGRES_MD5", "SQL_SERVER_AUTHENTICATION"
10380
10384
  # resp.db_proxies[0].role_arn #=> String
10381
10385
  # resp.db_proxies[0].endpoint #=> String
10382
10386
  # resp.db_proxies[0].require_tls #=> Boolean
@@ -16073,6 +16077,7 @@ module Aws::RDS
16073
16077
  # auth_scheme: "SECRETS", # accepts SECRETS
16074
16078
  # secret_arn: "String",
16075
16079
  # iam_auth: "DISABLED", # accepts DISABLED, REQUIRED, ENABLED
16080
+ # client_password_auth_type: "MYSQL_NATIVE_PASSWORD", # accepts MYSQL_NATIVE_PASSWORD, POSTGRES_SCRAM_SHA_256, POSTGRES_MD5, SQL_SERVER_AUTHENTICATION
16076
16081
  # },
16077
16082
  # ],
16078
16083
  # require_tls: false,
@@ -16099,6 +16104,7 @@ module Aws::RDS
16099
16104
  # resp.db_proxy.auth[0].auth_scheme #=> String, one of "SECRETS"
16100
16105
  # resp.db_proxy.auth[0].secret_arn #=> String
16101
16106
  # resp.db_proxy.auth[0].iam_auth #=> String, one of "DISABLED", "REQUIRED", "ENABLED"
16107
+ # resp.db_proxy.auth[0].client_password_auth_type #=> String, one of "MYSQL_NATIVE_PASSWORD", "POSTGRES_SCRAM_SHA_256", "POSTGRES_MD5", "SQL_SERVER_AUTHENTICATION"
16102
16108
  # resp.db_proxy.role_arn #=> String
16103
16109
  # resp.db_proxy.endpoint #=> String
16104
16110
  # resp.db_proxy.require_tls #=> Boolean
@@ -23660,7 +23666,7 @@ module Aws::RDS
23660
23666
  params: params,
23661
23667
  config: config)
23662
23668
  context[:gem_name] = 'aws-sdk-rds'
23663
- context[:gem_version] = '1.164.0'
23669
+ context[:gem_version] = '1.165.0'
23664
23670
  Seahorse::Client::Request.new(handlers, context)
23665
23671
  end
23666
23672
 
@@ -66,6 +66,7 @@ module Aws::RDS
66
66
  CertificateMessage = Shapes::StructureShape.new(name: 'CertificateMessage')
67
67
  CertificateNotFoundFault = Shapes::StructureShape.new(name: 'CertificateNotFoundFault')
68
68
  CharacterSet = Shapes::StructureShape.new(name: 'CharacterSet')
69
+ ClientPasswordAuthType = Shapes::StringShape.new(name: 'ClientPasswordAuthType')
69
70
  CloudwatchLogsExportConfiguration = Shapes::StructureShape.new(name: 'CloudwatchLogsExportConfiguration')
70
71
  ClusterPendingModifiedValues = Shapes::StructureShape.new(name: 'ClusterPendingModifiedValues')
71
72
  ConnectionPoolConfiguration = Shapes::StructureShape.new(name: 'ConnectionPoolConfiguration')
@@ -3563,6 +3564,7 @@ module Aws::RDS
3563
3564
  UserAuthConfig.add_member(:auth_scheme, Shapes::ShapeRef.new(shape: AuthScheme, location_name: "AuthScheme"))
3564
3565
  UserAuthConfig.add_member(:secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "SecretArn"))
3565
3566
  UserAuthConfig.add_member(:iam_auth, Shapes::ShapeRef.new(shape: IAMAuthMode, location_name: "IAMAuth"))
3567
+ UserAuthConfig.add_member(:client_password_auth_type, Shapes::ShapeRef.new(shape: ClientPasswordAuthType, location_name: "ClientPasswordAuthType"))
3566
3568
  UserAuthConfig.struct_class = Types::UserAuthConfig
3567
3569
 
3568
3570
  UserAuthConfigInfo.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
@@ -3570,6 +3572,7 @@ module Aws::RDS
3570
3572
  UserAuthConfigInfo.add_member(:auth_scheme, Shapes::ShapeRef.new(shape: AuthScheme, location_name: "AuthScheme"))
3571
3573
  UserAuthConfigInfo.add_member(:secret_arn, Shapes::ShapeRef.new(shape: String, location_name: "SecretArn"))
3572
3574
  UserAuthConfigInfo.add_member(:iam_auth, Shapes::ShapeRef.new(shape: IAMAuthMode, location_name: "IAMAuth"))
3575
+ UserAuthConfigInfo.add_member(:client_password_auth_type, Shapes::ShapeRef.new(shape: ClientPasswordAuthType, location_name: "ClientPasswordAuthType"))
3573
3576
  UserAuthConfigInfo.struct_class = Types::UserAuthConfigInfo
3574
3577
 
3575
3578
  UserAuthConfigInfoList.member = Shapes::ShapeRef.new(shape: UserAuthConfigInfo)
@@ -22689,6 +22689,11 @@ module Aws::RDS
22689
22689
  # SQL Server.
22690
22690
  # @return [String]
22691
22691
  #
22692
+ # @!attribute [rw] client_password_auth_type
22693
+ # The type of authentication the proxy uses for connections from
22694
+ # clients.
22695
+ # @return [String]
22696
+ #
22692
22697
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfig AWS API Documentation
22693
22698
  #
22694
22699
  class UserAuthConfig < Struct.new(
@@ -22696,7 +22701,8 @@ module Aws::RDS
22696
22701
  :user_name,
22697
22702
  :auth_scheme,
22698
22703
  :secret_arn,
22699
- :iam_auth)
22704
+ :iam_auth,
22705
+ :client_password_auth_type)
22700
22706
  SENSITIVE = []
22701
22707
  include Aws::Structure
22702
22708
  end
@@ -22731,6 +22737,11 @@ module Aws::RDS
22731
22737
  # SQL Server.
22732
22738
  # @return [String]
22733
22739
  #
22740
+ # @!attribute [rw] client_password_auth_type
22741
+ # The type of authentication the proxy uses for connections from
22742
+ # clients.
22743
+ # @return [String]
22744
+ #
22734
22745
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfigInfo AWS API Documentation
22735
22746
  #
22736
22747
  class UserAuthConfigInfo < Struct.new(
@@ -22738,7 +22749,8 @@ module Aws::RDS
22738
22749
  :user_name,
22739
22750
  :auth_scheme,
22740
22751
  :secret_arn,
22741
- :iam_auth)
22752
+ :iam_auth,
22753
+ :client_password_auth_type)
22742
22754
  SENSITIVE = []
22743
22755
  include Aws::Structure
22744
22756
  end
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.164.0'
81
+ GEM_VERSION = '1.165.0'
82
82
 
83
83
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.164.0
4
+ version: 1.165.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-12-12 00:00:00.000000000 Z
11
+ date: 2022-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4