aws-sdk-rds 1.292.0 → 1.293.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: 42b93d780fb78f85eb1de366656e636b15a2cc5c0425ef2db5c18449615ecb8f
4
- data.tar.gz: 5a0622f998010132c66e07a76cc6d2611d8219af534305f131ad3b173cc169d7
3
+ metadata.gz: c5eeadde180a13afff319850a3219b5563fc2f60779821cc18c5865732052fea
4
+ data.tar.gz: 303aefe70aa05469bd4cd66b3aad55d6c30a8e640b77535af0dfa66ffa4fb90d
5
5
  SHA512:
6
- metadata.gz: 938b2be89e640b3b87e6bc8435fb90026c7b203f890a17d922c21451e2695e3634291397fdefb3e008f329d25bedffbb6318f19b06afe552c47231f9e435e6ab
7
- data.tar.gz: 98bac05c5e70fa46467c0bb62f2fc1b10b25537046c60303db9a1533f162be882055cf43db323f6406a0e3a779c89e2821f9b47acce10899447d954e327979c5
6
+ metadata.gz: 839ddaf977cd0526834dd7ad1ec772d39a97d70cdabe01681023326199f4d089b5148c62e839715f3380c8334e1e759c5e36f93fdc51d8f78390b7a8b0aa41f3
7
+ data.tar.gz: edebff7aa200ef4d5c0e8659b95145fac69e40b3510e9e75446deeff8a890d9f809077f7d28a15a3d41f286a90e95081189e3f41ff8e7e685d873f50ef6473b9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.293.0 (2025-09-11)
5
+ ------------------
6
+
7
+ * Feature - Adds support for end-to-end IAM authentication in RDS Proxy for MySQL, MariaDB, and PostgreSQL engines.
8
+
4
9
  1.292.0 (2025-09-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.292.0
1
+ 1.293.0
@@ -7332,7 +7332,15 @@ module Aws::RDS
7332
7332
  # For Aurora PostgreSQL and RDS for PostgreSQL databases, specify
7333
7333
  # `POSTGRESQL`. For RDS for Microsoft SQL Server, specify `SQLSERVER`.
7334
7334
  #
7335
- # @option params [required, Array<Types::UserAuthConfig>] :auth
7335
+ # @option params [String] :default_auth_scheme
7336
+ # The default authentication scheme that the proxy uses for client
7337
+ # connections to the proxy and connections from the proxy to the
7338
+ # underlying database. Valid values are `NONE` and `IAM_AUTH`. When set
7339
+ # to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to connect
7340
+ # to the database. If you don't specify `DefaultAuthScheme` or specify
7341
+ # this parameter as `NONE`, you must specify the `Auth` option.
7342
+ #
7343
+ # @option params [Array<Types::UserAuthConfig>] :auth
7336
7344
  # The authorization mechanism that the proxy uses.
7337
7345
  #
7338
7346
  # @option params [required, String] :role_arn
@@ -7419,7 +7427,8 @@ module Aws::RDS
7419
7427
  # resp = client.create_db_proxy({
7420
7428
  # db_proxy_name: "String", # required
7421
7429
  # engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL, SQLSERVER
7422
- # auth: [ # required
7430
+ # default_auth_scheme: "IAM_AUTH", # accepts IAM_AUTH, NONE
7431
+ # auth: [
7423
7432
  # {
7424
7433
  # description: "String",
7425
7434
  # user_name: "String",
@@ -7456,6 +7465,7 @@ module Aws::RDS
7456
7465
  # resp.db_proxy.vpc_security_group_ids[0] #=> String
7457
7466
  # resp.db_proxy.vpc_subnet_ids #=> Array
7458
7467
  # resp.db_proxy.vpc_subnet_ids[0] #=> String
7468
+ # resp.db_proxy.default_auth_scheme #=> String
7459
7469
  # resp.db_proxy.auth #=> Array
7460
7470
  # resp.db_proxy.auth[0].description #=> String
7461
7471
  # resp.db_proxy.auth[0].user_name #=> String
@@ -10374,6 +10384,7 @@ module Aws::RDS
10374
10384
  # resp.db_proxy.vpc_security_group_ids[0] #=> String
10375
10385
  # resp.db_proxy.vpc_subnet_ids #=> Array
10376
10386
  # resp.db_proxy.vpc_subnet_ids[0] #=> String
10387
+ # resp.db_proxy.default_auth_scheme #=> String
10377
10388
  # resp.db_proxy.auth #=> Array
10378
10389
  # resp.db_proxy.auth[0].description #=> String
10379
10390
  # resp.db_proxy.auth[0].user_name #=> String
@@ -14320,6 +14331,7 @@ module Aws::RDS
14320
14331
  # resp.db_proxies[0].vpc_security_group_ids[0] #=> String
14321
14332
  # resp.db_proxies[0].vpc_subnet_ids #=> Array
14322
14333
  # resp.db_proxies[0].vpc_subnet_ids[0] #=> String
14334
+ # resp.db_proxies[0].default_auth_scheme #=> String
14323
14335
  # resp.db_proxies[0].auth #=> Array
14324
14336
  # resp.db_proxies[0].auth[0].description #=> String
14325
14337
  # resp.db_proxies[0].auth[0].user_name #=> String
@@ -22201,6 +22213,13 @@ module Aws::RDS
22201
22213
  # letter and must contain only ASCII letters, digits, and hyphens; it
22202
22214
  # can't end with a hyphen or contain two consecutive hyphens.
22203
22215
  #
22216
+ # @option params [String] :default_auth_scheme
22217
+ # The default authentication scheme that the proxy uses for client
22218
+ # connections to the proxy and connections from the proxy to the
22219
+ # underlying database. Valid values are `NONE` and `IAM_AUTH`. When set
22220
+ # to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to connect
22221
+ # to the database.
22222
+ #
22204
22223
  # @option params [Array<Types::UserAuthConfig>] :auth
22205
22224
  # The new authentication settings for the `DBProxy`.
22206
22225
  #
@@ -22239,6 +22258,7 @@ module Aws::RDS
22239
22258
  # resp = client.modify_db_proxy({
22240
22259
  # db_proxy_name: "String", # required
22241
22260
  # new_db_proxy_name: "String",
22261
+ # default_auth_scheme: "IAM_AUTH", # accepts IAM_AUTH, NONE
22242
22262
  # auth: [
22243
22263
  # {
22244
22264
  # description: "String",
@@ -22267,6 +22287,7 @@ module Aws::RDS
22267
22287
  # resp.db_proxy.vpc_security_group_ids[0] #=> String
22268
22288
  # resp.db_proxy.vpc_subnet_ids #=> Array
22269
22289
  # resp.db_proxy.vpc_subnet_ids[0] #=> String
22290
+ # resp.db_proxy.default_auth_scheme #=> String
22270
22291
  # resp.db_proxy.auth #=> Array
22271
22292
  # resp.db_proxy.auth[0].description #=> String
22272
22293
  # resp.db_proxy.auth[0].user_name #=> String
@@ -32596,7 +32617,7 @@ module Aws::RDS
32596
32617
  tracer: tracer
32597
32618
  )
32598
32619
  context[:gem_name] = 'aws-sdk-rds'
32599
- context[:gem_version] = '1.292.0'
32620
+ context[:gem_version] = '1.293.0'
32600
32621
  Seahorse::Client::Request.new(handlers, context)
32601
32622
  end
32602
32623
 
@@ -282,6 +282,7 @@ module Aws::RDS
282
282
  DataFilter = Shapes::StringShape.new(name: 'DataFilter')
283
283
  DatabaseArn = Shapes::StringShape.new(name: 'DatabaseArn')
284
284
  DatabaseInsightsMode = Shapes::StringShape.new(name: 'DatabaseInsightsMode')
285
+ DefaultAuthScheme = Shapes::StringShape.new(name: 'DefaultAuthScheme')
285
286
  DeleteBlueGreenDeploymentRequest = Shapes::StructureShape.new(name: 'DeleteBlueGreenDeploymentRequest')
286
287
  DeleteBlueGreenDeploymentResponse = Shapes::StructureShape.new(name: 'DeleteBlueGreenDeploymentResponse')
287
288
  DeleteCustomDBEngineVersionMessage = Shapes::StructureShape.new(name: 'DeleteCustomDBEngineVersionMessage')
@@ -1273,7 +1274,8 @@ module Aws::RDS
1273
1274
 
1274
1275
  CreateDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
1275
1276
  CreateDBProxyRequest.add_member(:engine_family, Shapes::ShapeRef.new(shape: EngineFamily, required: true, location_name: "EngineFamily"))
1276
- CreateDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, required: true, location_name: "Auth"))
1277
+ CreateDBProxyRequest.add_member(:default_auth_scheme, Shapes::ShapeRef.new(shape: DefaultAuthScheme, location_name: "DefaultAuthScheme"))
1278
+ CreateDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, location_name: "Auth"))
1277
1279
  CreateDBProxyRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "RoleArn"))
1278
1280
  CreateDBProxyRequest.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "VpcSubnetIds"))
1279
1281
  CreateDBProxyRequest.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
@@ -1940,6 +1942,7 @@ module Aws::RDS
1940
1942
  DBProxy.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
1941
1943
  DBProxy.add_member(:vpc_security_group_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSecurityGroupIds"))
1942
1944
  DBProxy.add_member(:vpc_subnet_ids, Shapes::ShapeRef.new(shape: StringList, location_name: "VpcSubnetIds"))
1945
+ DBProxy.add_member(:default_auth_scheme, Shapes::ShapeRef.new(shape: String, location_name: "DefaultAuthScheme"))
1943
1946
  DBProxy.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigInfoList, location_name: "Auth"))
1944
1947
  DBProxy.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "RoleArn"))
1945
1948
  DBProxy.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
@@ -3258,6 +3261,7 @@ module Aws::RDS
3258
3261
 
3259
3262
  ModifyDBProxyRequest.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBProxyName"))
3260
3263
  ModifyDBProxyRequest.add_member(:new_db_proxy_name, Shapes::ShapeRef.new(shape: String, location_name: "NewDBProxyName"))
3264
+ ModifyDBProxyRequest.add_member(:default_auth_scheme, Shapes::ShapeRef.new(shape: DefaultAuthScheme, location_name: "DefaultAuthScheme"))
3261
3265
  ModifyDBProxyRequest.add_member(:auth, Shapes::ShapeRef.new(shape: UserAuthConfigList, location_name: "Auth"))
3262
3266
  ModifyDBProxyRequest.add_member(:require_tls, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "RequireTLS"))
3263
3267
  ModifyDBProxyRequest.add_member(:idle_client_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "IdleClientTimeout"))
@@ -1,4 +1,3 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # customizations to generated classes
4
3
  require 'aws-sdk-rds/customizations/auth_token_generator'
@@ -6048,6 +6048,16 @@ module Aws::RDS
6048
6048
  # `SQLSERVER`.
6049
6049
  # @return [String]
6050
6050
  #
6051
+ # @!attribute [rw] default_auth_scheme
6052
+ # The default authentication scheme that the proxy uses for client
6053
+ # connections to the proxy and connections from the proxy to the
6054
+ # underlying database. Valid values are `NONE` and `IAM_AUTH`. When
6055
+ # set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
6056
+ # connect to the database. If you don't specify `DefaultAuthScheme`
6057
+ # or specify this parameter as `NONE`, you must specify the `Auth`
6058
+ # option.
6059
+ # @return [String]
6060
+ #
6051
6061
  # @!attribute [rw] auth
6052
6062
  # The authorization mechanism that the proxy uses.
6053
6063
  # @return [Array<Types::UserAuthConfig>]
@@ -6141,6 +6151,7 @@ module Aws::RDS
6141
6151
  class CreateDBProxyRequest < Struct.new(
6142
6152
  :db_proxy_name,
6143
6153
  :engine_family,
6154
+ :default_auth_scheme,
6144
6155
  :auth,
6145
6156
  :role_arn,
6146
6157
  :vpc_subnet_ids,
@@ -10406,6 +10417,14 @@ module Aws::RDS
10406
10417
  # The EC2 subnet IDs for the proxy.
10407
10418
  # @return [Array<String>]
10408
10419
  #
10420
+ # @!attribute [rw] default_auth_scheme
10421
+ # The default authentication scheme that the proxy uses for client
10422
+ # connections to the proxy and connections from the proxy to the
10423
+ # underlying database. Valid values are `NONE` and `IAM_AUTH`. When
10424
+ # set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
10425
+ # connect to the database.
10426
+ # @return [String]
10427
+ #
10409
10428
  # @!attribute [rw] auth
10410
10429
  # One or more data structures specifying the authorization mechanism
10411
10430
  # to connect to the associated RDS DB instance or Aurora DB cluster.
@@ -10490,6 +10509,7 @@ module Aws::RDS
10490
10509
  :vpc_id,
10491
10510
  :vpc_security_group_ids,
10492
10511
  :vpc_subnet_ids,
10512
+ :default_auth_scheme,
10493
10513
  :auth,
10494
10514
  :role_arn,
10495
10515
  :endpoint,
@@ -20232,6 +20252,14 @@ module Aws::RDS
20232
20252
  # it can't end with a hyphen or contain two consecutive hyphens.
20233
20253
  # @return [String]
20234
20254
  #
20255
+ # @!attribute [rw] default_auth_scheme
20256
+ # The default authentication scheme that the proxy uses for client
20257
+ # connections to the proxy and connections from the proxy to the
20258
+ # underlying database. Valid values are `NONE` and `IAM_AUTH`. When
20259
+ # set to `IAM_AUTH`, the proxy uses end-to-end IAM authentication to
20260
+ # connect to the database.
20261
+ # @return [String]
20262
+ #
20235
20263
  # @!attribute [rw] auth
20236
20264
  # The new authentication settings for the `DBProxy`.
20237
20265
  # @return [Array<Types::UserAuthConfig>]
@@ -20272,6 +20300,7 @@ module Aws::RDS
20272
20300
  class ModifyDBProxyRequest < Struct.new(
20273
20301
  :db_proxy_name,
20274
20302
  :new_db_proxy_name,
20303
+ :default_auth_scheme,
20275
20304
  :auth,
20276
20305
  :require_tls,
20277
20306
  :idle_client_timeout,
data/lib/aws-sdk-rds.rb CHANGED
@@ -80,7 +80,7 @@ module Aws::RDS
80
80
  autoload :ReservedDBInstancesOffering, 'aws-sdk-rds/reserved_db_instances_offering'
81
81
  autoload :ResourcePendingMaintenanceActionList, 'aws-sdk-rds/resource_pending_maintenance_action_list'
82
82
 
83
- GEM_VERSION = '1.292.0'
83
+ GEM_VERSION = '1.293.0'
84
84
 
85
85
  end
86
86
 
data/sig/client.rbs CHANGED
@@ -700,7 +700,8 @@ module Aws
700
700
  def create_db_proxy: (
701
701
  db_proxy_name: ::String,
702
702
  engine_family: ("MYSQL" | "POSTGRESQL" | "SQLSERVER"),
703
- auth: Array[
703
+ ?default_auth_scheme: ("IAM_AUTH" | "NONE"),
704
+ ?auth: Array[
704
705
  {
705
706
  description: ::String?,
706
707
  user_name: ::String?,
@@ -2529,6 +2530,7 @@ module Aws
2529
2530
  def modify_db_proxy: (
2530
2531
  db_proxy_name: ::String,
2531
2532
  ?new_db_proxy_name: ::String,
2533
+ ?default_auth_scheme: ("IAM_AUTH" | "NONE"),
2532
2534
  ?auth: Array[
2533
2535
  {
2534
2536
  description: ::String?,
data/sig/types.rbs CHANGED
@@ -600,6 +600,7 @@ module Aws::RDS
600
600
  class CreateDBProxyRequest
601
601
  attr_accessor db_proxy_name: ::String
602
602
  attr_accessor engine_family: ("MYSQL" | "POSTGRESQL" | "SQLSERVER")
603
+ attr_accessor default_auth_scheme: ("IAM_AUTH" | "NONE")
603
604
  attr_accessor auth: ::Array[Types::UserAuthConfig]
604
605
  attr_accessor role_arn: ::String
605
606
  attr_accessor vpc_subnet_ids: ::Array[::String]
@@ -1368,6 +1369,7 @@ module Aws::RDS
1368
1369
  attr_accessor vpc_id: ::String
1369
1370
  attr_accessor vpc_security_group_ids: ::Array[::String]
1370
1371
  attr_accessor vpc_subnet_ids: ::Array[::String]
1372
+ attr_accessor default_auth_scheme: ::String
1371
1373
  attr_accessor auth: ::Array[Types::UserAuthConfigInfo]
1372
1374
  attr_accessor role_arn: ::String
1373
1375
  attr_accessor endpoint: ::String
@@ -3031,6 +3033,7 @@ module Aws::RDS
3031
3033
  class ModifyDBProxyRequest
3032
3034
  attr_accessor db_proxy_name: ::String
3033
3035
  attr_accessor new_db_proxy_name: ::String
3036
+ attr_accessor default_auth_scheme: ("IAM_AUTH" | "NONE")
3034
3037
  attr_accessor auth: ::Array[Types::UserAuthConfig]
3035
3038
  attr_accessor require_tls: bool
3036
3039
  attr_accessor idle_client_timeout: ::Integer
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rds
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.292.0
4
+ version: 1.293.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services