aws-sdk-rds 1.290.0 → 1.291.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +68 -3
- data/lib/aws-sdk-rds/client_api.rb +5 -0
- data/lib/aws-sdk-rds/db_cluster.rb +35 -2
- data/lib/aws-sdk-rds/db_instance.rb +28 -0
- data/lib/aws-sdk-rds/resource.rb +30 -0
- data/lib/aws-sdk-rds/types.rb +78 -5
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +7 -3
- data/sig/db_cluster.rbs +3 -1
- data/sig/db_instance.rbs +4 -2
- data/sig/resource.rbs +3 -1
- data/sig/types.rbs +4 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30004e981fdfe16613fd17d443d84974f49123ac1e8aa8640d1a4e08f02af1db
|
4
|
+
data.tar.gz: aabededda4ba8d71c3be7643ccffa645cab98cd21368ab0d36e7c295378cf5b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ec0cea2b2620aae547abd744ea165f1e7e08915ed61b0b7be0cb2f40b8065f6cc1af594ff308edce23f8865140b50a6b1786535b75a59e2058162e373c5ffd6
|
7
|
+
data.tar.gz: 8711844b44ca8e86ec379ec3b31f901c1099d72ec27bb93ced5dea8c504341332724ccd254e110fb9fd6823b48b75c1a6f31d5284f1621da20410edaea48d73a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.291.0 (2025-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds support for MasterUserAuthenticationType parameter on CreateDBInstance, ModifyDBInstance, CreateDBCluster, and ModifyDBCluster operations.
|
8
|
+
|
4
9
|
1.290.0 (2025-08-28)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.291.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3631,6 +3631,22 @@ module Aws::RDS
|
|
3631
3631
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
3632
3632
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3633
3633
|
#
|
3634
|
+
# @option params [String] :master_user_authentication_type
|
3635
|
+
# Specifies the authentication type for the master user. With IAM master
|
3636
|
+
# user authentication, you can configure the master DB user with IAM
|
3637
|
+
# database authentication when you create a DB cluster.
|
3638
|
+
#
|
3639
|
+
# You can specify one of the following values:
|
3640
|
+
#
|
3641
|
+
# * `password` - Use standard database authentication with a password.
|
3642
|
+
#
|
3643
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
3644
|
+
#
|
3645
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3646
|
+
#
|
3647
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
3648
|
+
# engines.
|
3649
|
+
#
|
3634
3650
|
# @option params [String] :source_region
|
3635
3651
|
# The source region of the snapshot. This is only needed when the
|
3636
3652
|
# shapshot is encrypted and in a different region.
|
@@ -3846,6 +3862,7 @@ module Aws::RDS
|
|
3846
3862
|
# enable_local_write_forwarding: false,
|
3847
3863
|
# ca_certificate_identifier: "String",
|
3848
3864
|
# engine_lifecycle_support: "String",
|
3865
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
3849
3866
|
# source_region: "String",
|
3850
3867
|
# })
|
3851
3868
|
#
|
@@ -5762,6 +5779,20 @@ module Aws::RDS
|
|
5762
5779
|
#
|
5763
5780
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
5764
5781
|
#
|
5782
|
+
# @option params [String] :master_user_authentication_type
|
5783
|
+
# Specifies the authentication type for the master user. With IAM master
|
5784
|
+
# user authentication, you can configure the master DB user with IAM
|
5785
|
+
# database authentication when you create a DB instance.
|
5786
|
+
#
|
5787
|
+
# You can specify one of the following values:
|
5788
|
+
#
|
5789
|
+
# * `password` - Use standard database authentication with a password.
|
5790
|
+
#
|
5791
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
5792
|
+
#
|
5793
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
5794
|
+
# engines.
|
5795
|
+
#
|
5765
5796
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5766
5797
|
#
|
5767
5798
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -5953,6 +5984,7 @@ module Aws::RDS
|
|
5953
5984
|
# dedicated_log_volume: false,
|
5954
5985
|
# multi_tenant: false,
|
5955
5986
|
# engine_lifecycle_support: "String",
|
5987
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
5956
5988
|
# })
|
5957
5989
|
#
|
5958
5990
|
# @example Response structure
|
@@ -19580,8 +19612,9 @@ module Aws::RDS
|
|
19580
19612
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
19581
19613
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
19582
19614
|
#
|
19583
|
-
# If you change the value from `advanced` to `standard`, you
|
19584
|
-
#
|
19615
|
+
# If you change the value from `advanced` to `standard`, you can set the
|
19616
|
+
# `PerformanceInsightsEnabled` parameter to `true` to collect detailed
|
19617
|
+
# database counter and per-query metrics.
|
19585
19618
|
#
|
19586
19619
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19587
19620
|
#
|
@@ -19817,6 +19850,22 @@ module Aws::RDS
|
|
19817
19850
|
#
|
19818
19851
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
19819
19852
|
#
|
19853
|
+
# @option params [String] :master_user_authentication_type
|
19854
|
+
# Specifies the authentication type for the master user. With IAM master
|
19855
|
+
# user authentication, you can change the master DB user to use IAM
|
19856
|
+
# database authentication.
|
19857
|
+
#
|
19858
|
+
# You can specify one of the following values:
|
19859
|
+
#
|
19860
|
+
# * `password` - Use standard database authentication with a password.
|
19861
|
+
#
|
19862
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
19863
|
+
#
|
19864
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
19865
|
+
#
|
19866
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
19867
|
+
# engines.
|
19868
|
+
#
|
19820
19869
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
19821
19870
|
#
|
19822
19871
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -19959,6 +20008,7 @@ module Aws::RDS
|
|
19959
20008
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
19960
20009
|
# enable_limitless_database: false,
|
19961
20010
|
# ca_certificate_identifier: "String",
|
20011
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
19962
20012
|
# })
|
19963
20013
|
#
|
19964
20014
|
# @example Response structure
|
@@ -21622,6 +21672,20 @@ module Aws::RDS
|
|
21622
21672
|
# configuration. When you specify this parameter, you must also specify
|
21623
21673
|
# `ApplyImmediately`.
|
21624
21674
|
#
|
21675
|
+
# @option params [String] :master_user_authentication_type
|
21676
|
+
# Specifies the authentication type for the master user. With IAM master
|
21677
|
+
# user authentication, you can change the master DB user to use IAM
|
21678
|
+
# database authentication.
|
21679
|
+
#
|
21680
|
+
# You can specify one of the following values:
|
21681
|
+
#
|
21682
|
+
# * `password` - Use standard database authentication with a password.
|
21683
|
+
#
|
21684
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
21685
|
+
#
|
21686
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
21687
|
+
# engines.
|
21688
|
+
#
|
21625
21689
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
21626
21690
|
#
|
21627
21691
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -21749,6 +21813,7 @@ module Aws::RDS
|
|
21749
21813
|
# engine: "String",
|
21750
21814
|
# dedicated_log_volume: false,
|
21751
21815
|
# multi_tenant: false,
|
21816
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
21752
21817
|
# })
|
21753
21818
|
#
|
21754
21819
|
# @example Response structure
|
@@ -32451,7 +32516,7 @@ module Aws::RDS
|
|
32451
32516
|
tracer: tracer
|
32452
32517
|
)
|
32453
32518
|
context[:gem_name] = 'aws-sdk-rds'
|
32454
|
-
context[:gem_version] = '1.
|
32519
|
+
context[:gem_version] = '1.291.0'
|
32455
32520
|
Seahorse::Client::Request.new(handlers, context)
|
32456
32521
|
end
|
32457
32522
|
|
@@ -510,6 +510,7 @@ module Aws::RDS
|
|
510
510
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
511
511
|
MajorEngineVersion = Shapes::StringShape.new(name: 'MajorEngineVersion')
|
512
512
|
Marker = Shapes::StringShape.new(name: 'Marker')
|
513
|
+
MasterUserAuthenticationType = Shapes::StringShape.new(name: 'MasterUserAuthenticationType')
|
513
514
|
MasterUserSecret = Shapes::StructureShape.new(name: 'MasterUserSecret')
|
514
515
|
MaxDBShardGroupLimitReached = Shapes::StructureShape.new(name: 'MaxDBShardGroupLimitReached', error: {"code" => "MaxDBShardGroupLimitReached", "httpStatusCode" => 400, "senderFault" => true})
|
515
516
|
MaxRecords = Shapes::IntegerShape.new(name: 'MaxRecords')
|
@@ -1100,6 +1101,7 @@ module Aws::RDS
|
|
1100
1101
|
CreateDBClusterMessage.add_member(:enable_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLocalWriteForwarding"))
|
1101
1102
|
CreateDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
1102
1103
|
CreateDBClusterMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
1104
|
+
CreateDBClusterMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
1103
1105
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
1104
1106
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
1105
1107
|
|
@@ -1187,6 +1189,7 @@ module Aws::RDS
|
|
1187
1189
|
CreateDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
1188
1190
|
CreateDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
1189
1191
|
CreateDBInstanceMessage.add_member(:engine_lifecycle_support, Shapes::ShapeRef.new(shape: String, location_name: "EngineLifecycleSupport"))
|
1192
|
+
CreateDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
1190
1193
|
CreateDBInstanceMessage.struct_class = Types::CreateDBInstanceMessage
|
1191
1194
|
|
1192
1195
|
CreateDBInstanceReadReplicaMessage.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBInstanceIdentifier"))
|
@@ -3147,6 +3150,7 @@ module Aws::RDS
|
|
3147
3150
|
ModifyDBClusterMessage.add_member(:aws_backup_recovery_point_arn, Shapes::ShapeRef.new(shape: AwsBackupRecoveryPointArn, location_name: "AwsBackupRecoveryPointArn"))
|
3148
3151
|
ModifyDBClusterMessage.add_member(:enable_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableLimitlessDatabase"))
|
3149
3152
|
ModifyDBClusterMessage.add_member(:ca_certificate_identifier, Shapes::ShapeRef.new(shape: String, location_name: "CACertificateIdentifier"))
|
3153
|
+
ModifyDBClusterMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
3150
3154
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
3151
3155
|
|
3152
3156
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
@@ -3226,6 +3230,7 @@ module Aws::RDS
|
|
3226
3230
|
ModifyDBInstanceMessage.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
3227
3231
|
ModifyDBInstanceMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
|
3228
3232
|
ModifyDBInstanceMessage.add_member(:multi_tenant, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiTenant"))
|
3233
|
+
ModifyDBInstanceMessage.add_member(:master_user_authentication_type, Shapes::ShapeRef.new(shape: MasterUserAuthenticationType, location_name: "MasterUserAuthenticationType"))
|
3229
3234
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
3230
3235
|
|
3231
3236
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -993,6 +993,7 @@ module Aws::RDS
|
|
993
993
|
# enable_local_write_forwarding: false,
|
994
994
|
# ca_certificate_identifier: "String",
|
995
995
|
# engine_lifecycle_support: "String",
|
996
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
996
997
|
# source_region: "String",
|
997
998
|
# })
|
998
999
|
# @param [Hash] options ({})
|
@@ -1853,6 +1854,21 @@ module Aws::RDS
|
|
1853
1854
|
#
|
1854
1855
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
1855
1856
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
1857
|
+
# @option options [String] :master_user_authentication_type
|
1858
|
+
# Specifies the authentication type for the master user. With IAM master
|
1859
|
+
# user authentication, you can configure the master DB user with IAM
|
1860
|
+
# database authentication when you create a DB cluster.
|
1861
|
+
#
|
1862
|
+
# You can specify one of the following values:
|
1863
|
+
#
|
1864
|
+
# * `password` - Use standard database authentication with a password.
|
1865
|
+
#
|
1866
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
1867
|
+
#
|
1868
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1869
|
+
#
|
1870
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
1871
|
+
# engines.
|
1856
1872
|
# @option options [String] :source_region
|
1857
1873
|
# The source region of the snapshot. This is only needed when the
|
1858
1874
|
# shapshot is encrypted and in a different region.
|
@@ -2055,6 +2071,7 @@ module Aws::RDS
|
|
2055
2071
|
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
2056
2072
|
# enable_limitless_database: false,
|
2057
2073
|
# ca_certificate_identifier: "String",
|
2074
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
2058
2075
|
# })
|
2059
2076
|
# @param [Hash] options ({})
|
2060
2077
|
# @option options [String] :new_db_cluster_identifier
|
@@ -2501,8 +2518,9 @@ module Aws::RDS
|
|
2501
2518
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
2502
2519
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
2503
2520
|
#
|
2504
|
-
# If you change the value from `advanced` to `standard`, you
|
2505
|
-
#
|
2521
|
+
# If you change the value from `advanced` to `standard`, you can set the
|
2522
|
+
# `PerformanceInsightsEnabled` parameter to `true` to collect detailed
|
2523
|
+
# database counter and per-query metrics.
|
2506
2524
|
#
|
2507
2525
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2508
2526
|
# @option options [Boolean] :enable_performance_insights
|
@@ -2723,6 +2741,21 @@ module Aws::RDS
|
|
2723
2741
|
#
|
2724
2742
|
#
|
2725
2743
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
2744
|
+
# @option options [String] :master_user_authentication_type
|
2745
|
+
# Specifies the authentication type for the master user. With IAM master
|
2746
|
+
# user authentication, you can change the master DB user to use IAM
|
2747
|
+
# database authentication.
|
2748
|
+
#
|
2749
|
+
# You can specify one of the following values:
|
2750
|
+
#
|
2751
|
+
# * `password` - Use standard database authentication with a password.
|
2752
|
+
#
|
2753
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2754
|
+
#
|
2755
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2756
|
+
#
|
2757
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2758
|
+
# engines.
|
2726
2759
|
# @return [DBCluster]
|
2727
2760
|
def modify(options = {})
|
2728
2761
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -1030,6 +1030,7 @@ module Aws::RDS
|
|
1030
1030
|
# dedicated_log_volume: false,
|
1031
1031
|
# multi_tenant: false,
|
1032
1032
|
# engine_lifecycle_support: "String",
|
1033
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
1033
1034
|
# })
|
1034
1035
|
# @param [Hash] options ({})
|
1035
1036
|
# @option options [String] :db_name
|
@@ -2268,6 +2269,19 @@ module Aws::RDS
|
|
2268
2269
|
#
|
2269
2270
|
#
|
2270
2271
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
2272
|
+
# @option options [String] :master_user_authentication_type
|
2273
|
+
# Specifies the authentication type for the master user. With IAM master
|
2274
|
+
# user authentication, you can configure the master DB user with IAM
|
2275
|
+
# database authentication when you create a DB instance.
|
2276
|
+
#
|
2277
|
+
# You can specify one of the following values:
|
2278
|
+
#
|
2279
|
+
# * `password` - Use standard database authentication with a password.
|
2280
|
+
#
|
2281
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2282
|
+
#
|
2283
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2284
|
+
# engines.
|
2271
2285
|
# @return [DBInstance]
|
2272
2286
|
def create(options = {})
|
2273
2287
|
options = options.merge(db_instance_identifier: @id)
|
@@ -3179,6 +3193,7 @@ module Aws::RDS
|
|
3179
3193
|
# engine: "String",
|
3180
3194
|
# dedicated_log_volume: false,
|
3181
3195
|
# multi_tenant: false,
|
3196
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
3182
3197
|
# })
|
3183
3198
|
# @param [Hash] options ({})
|
3184
3199
|
# @option options [Integer] :allocated_storage
|
@@ -4265,6 +4280,19 @@ module Aws::RDS
|
|
4265
4280
|
# irreversible, so you can't later convert back to the single-tenant
|
4266
4281
|
# configuration. When you specify this parameter, you must also specify
|
4267
4282
|
# `ApplyImmediately`.
|
4283
|
+
# @option options [String] :master_user_authentication_type
|
4284
|
+
# Specifies the authentication type for the master user. With IAM master
|
4285
|
+
# user authentication, you can change the master DB user to use IAM
|
4286
|
+
# database authentication.
|
4287
|
+
#
|
4288
|
+
# You can specify one of the following values:
|
4289
|
+
#
|
4290
|
+
# * `password` - Use standard database authentication with a password.
|
4291
|
+
#
|
4292
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
4293
|
+
#
|
4294
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
4295
|
+
# engines.
|
4268
4296
|
# @return [DBInstance]
|
4269
4297
|
def modify(options = {})
|
4270
4298
|
options = options.merge(db_instance_identifier: @id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -114,6 +114,7 @@ module Aws::RDS
|
|
114
114
|
# enable_local_write_forwarding: false,
|
115
115
|
# ca_certificate_identifier: "String",
|
116
116
|
# engine_lifecycle_support: "String",
|
117
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
117
118
|
# source_region: "String",
|
118
119
|
# })
|
119
120
|
# @param [Hash] options ({})
|
@@ -990,6 +991,21 @@ module Aws::RDS
|
|
990
991
|
#
|
991
992
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
992
993
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
994
|
+
# @option options [String] :master_user_authentication_type
|
995
|
+
# Specifies the authentication type for the master user. With IAM master
|
996
|
+
# user authentication, you can configure the master DB user with IAM
|
997
|
+
# database authentication when you create a DB cluster.
|
998
|
+
#
|
999
|
+
# You can specify one of the following values:
|
1000
|
+
#
|
1001
|
+
# * `password` - Use standard database authentication with a password.
|
1002
|
+
#
|
1003
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
1004
|
+
#
|
1005
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1006
|
+
#
|
1007
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
1008
|
+
# engines.
|
993
1009
|
# @option options [String] :source_region
|
994
1010
|
# The source region of the snapshot. This is only needed when the
|
995
1011
|
# shapshot is encrypted and in a different region.
|
@@ -1173,6 +1189,7 @@ module Aws::RDS
|
|
1173
1189
|
# dedicated_log_volume: false,
|
1174
1190
|
# multi_tenant: false,
|
1175
1191
|
# engine_lifecycle_support: "String",
|
1192
|
+
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
1176
1193
|
# })
|
1177
1194
|
# @param [Hash] options ({})
|
1178
1195
|
# @option options [String] :db_name
|
@@ -2424,6 +2441,19 @@ module Aws::RDS
|
|
2424
2441
|
#
|
2425
2442
|
#
|
2426
2443
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
2444
|
+
# @option options [String] :master_user_authentication_type
|
2445
|
+
# Specifies the authentication type for the master user. With IAM master
|
2446
|
+
# user authentication, you can configure the master DB user with IAM
|
2447
|
+
# database authentication when you create a DB instance.
|
2448
|
+
#
|
2449
|
+
# You can specify one of the following values:
|
2450
|
+
#
|
2451
|
+
# * `password` - Use standard database authentication with a password.
|
2452
|
+
#
|
2453
|
+
# * `iam-db-auth` - Use IAM database authentication for the master user.
|
2454
|
+
#
|
2455
|
+
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
2456
|
+
# engines.
|
2427
2457
|
# @return [DBInstance]
|
2428
2458
|
def create_db_instance(options = {})
|
2429
2459
|
resp = Aws::Plugins::UserAgent.metric('RESOURCE_MODEL') do
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -3188,6 +3188,24 @@ module Aws::RDS
|
|
3188
3188
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
3189
3189
|
# @return [String]
|
3190
3190
|
#
|
3191
|
+
# @!attribute [rw] master_user_authentication_type
|
3192
|
+
# Specifies the authentication type for the master user. With IAM
|
3193
|
+
# master user authentication, you can configure the master DB user
|
3194
|
+
# with IAM database authentication when you create a DB cluster.
|
3195
|
+
#
|
3196
|
+
# You can specify one of the following values:
|
3197
|
+
#
|
3198
|
+
# * `password` - Use standard database authentication with a password.
|
3199
|
+
#
|
3200
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
3201
|
+
# user.
|
3202
|
+
#
|
3203
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
3204
|
+
#
|
3205
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
3206
|
+
# PostgreSQL engines.
|
3207
|
+
# @return [String]
|
3208
|
+
#
|
3191
3209
|
# @!attribute [rw] source_region
|
3192
3210
|
# The source region of the snapshot. This is only needed when the
|
3193
3211
|
# shapshot is encrypted and in a different region.
|
@@ -3252,6 +3270,7 @@ module Aws::RDS
|
|
3252
3270
|
:enable_local_write_forwarding,
|
3253
3271
|
:ca_certificate_identifier,
|
3254
3272
|
:engine_lifecycle_support,
|
3273
|
+
:master_user_authentication_type,
|
3255
3274
|
:source_region)
|
3256
3275
|
SENSITIVE = []
|
3257
3276
|
include Aws::Structure
|
@@ -4843,6 +4862,22 @@ module Aws::RDS
|
|
4843
4862
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
4844
4863
|
# @return [String]
|
4845
4864
|
#
|
4865
|
+
# @!attribute [rw] master_user_authentication_type
|
4866
|
+
# Specifies the authentication type for the master user. With IAM
|
4867
|
+
# master user authentication, you can configure the master DB user
|
4868
|
+
# with IAM database authentication when you create a DB instance.
|
4869
|
+
#
|
4870
|
+
# You can specify one of the following values:
|
4871
|
+
#
|
4872
|
+
# * `password` - Use standard database authentication with a password.
|
4873
|
+
#
|
4874
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
4875
|
+
# user.
|
4876
|
+
#
|
4877
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
4878
|
+
# PostgreSQL engines.
|
4879
|
+
# @return [String]
|
4880
|
+
#
|
4846
4881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceMessage AWS API Documentation
|
4847
4882
|
#
|
4848
4883
|
class CreateDBInstanceMessage < Struct.new(
|
@@ -4909,7 +4944,8 @@ module Aws::RDS
|
|
4909
4944
|
:db_system_id,
|
4910
4945
|
:dedicated_log_volume,
|
4911
4946
|
:multi_tenant,
|
4912
|
-
:engine_lifecycle_support
|
4947
|
+
:engine_lifecycle_support,
|
4948
|
+
:master_user_authentication_type)
|
4913
4949
|
SENSITIVE = []
|
4914
4950
|
include Aws::Structure
|
4915
4951
|
end
|
@@ -18171,8 +18207,9 @@ module Aws::RDS
|
|
18171
18207
|
# the `PerformanceInsightsEnabled` parameter to `true` and the
|
18172
18208
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
18173
18209
|
#
|
18174
|
-
# If you change the value from `advanced` to `standard`, you
|
18175
|
-
# the `PerformanceInsightsEnabled` parameter to `
|
18210
|
+
# If you change the value from `advanced` to `standard`, you can set
|
18211
|
+
# the `PerformanceInsightsEnabled` parameter to `true` to collect
|
18212
|
+
# detailed database counter and per-query metrics.
|
18176
18213
|
#
|
18177
18214
|
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18178
18215
|
# @return [String]
|
@@ -18425,6 +18462,24 @@ module Aws::RDS
|
|
18425
18462
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
18426
18463
|
# @return [String]
|
18427
18464
|
#
|
18465
|
+
# @!attribute [rw] master_user_authentication_type
|
18466
|
+
# Specifies the authentication type for the master user. With IAM
|
18467
|
+
# master user authentication, you can change the master DB user to use
|
18468
|
+
# IAM database authentication.
|
18469
|
+
#
|
18470
|
+
# You can specify one of the following values:
|
18471
|
+
#
|
18472
|
+
# * `password` - Use standard database authentication with a password.
|
18473
|
+
#
|
18474
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
18475
|
+
# user.
|
18476
|
+
#
|
18477
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
18478
|
+
#
|
18479
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
18480
|
+
# PostgreSQL engines.
|
18481
|
+
# @return [String]
|
18482
|
+
#
|
18428
18483
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
18429
18484
|
#
|
18430
18485
|
class ModifyDBClusterMessage < Struct.new(
|
@@ -18473,7 +18528,8 @@ module Aws::RDS
|
|
18473
18528
|
:enable_local_write_forwarding,
|
18474
18529
|
:aws_backup_recovery_point_arn,
|
18475
18530
|
:enable_limitless_database,
|
18476
|
-
:ca_certificate_identifier
|
18531
|
+
:ca_certificate_identifier,
|
18532
|
+
:master_user_authentication_type)
|
18477
18533
|
SENSITIVE = []
|
18478
18534
|
include Aws::Structure
|
18479
18535
|
end
|
@@ -19853,6 +19909,22 @@ module Aws::RDS
|
|
19853
19909
|
# specify `ApplyImmediately`.
|
19854
19910
|
# @return [Boolean]
|
19855
19911
|
#
|
19912
|
+
# @!attribute [rw] master_user_authentication_type
|
19913
|
+
# Specifies the authentication type for the master user. With IAM
|
19914
|
+
# master user authentication, you can change the master DB user to use
|
19915
|
+
# IAM database authentication.
|
19916
|
+
#
|
19917
|
+
# You can specify one of the following values:
|
19918
|
+
#
|
19919
|
+
# * `password` - Use standard database authentication with a password.
|
19920
|
+
#
|
19921
|
+
# * `iam-db-auth` - Use IAM database authentication for the master
|
19922
|
+
# user.
|
19923
|
+
#
|
19924
|
+
# This option is only valid for RDS for PostgreSQL and Aurora
|
19925
|
+
# PostgreSQL engines.
|
19926
|
+
# @return [String]
|
19927
|
+
#
|
19856
19928
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
19857
19929
|
#
|
19858
19930
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -19916,7 +19988,8 @@ module Aws::RDS
|
|
19916
19988
|
:master_user_secret_kms_key_id,
|
19917
19989
|
:engine,
|
19918
19990
|
:dedicated_log_volume,
|
19919
|
-
:multi_tenant
|
19991
|
+
:multi_tenant,
|
19992
|
+
:master_user_authentication_type)
|
19920
19993
|
SENSITIVE = []
|
19921
19994
|
include Aws::Structure
|
19922
19995
|
end
|
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.
|
83
|
+
GEM_VERSION = '1.291.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -454,6 +454,7 @@ module Aws
|
|
454
454
|
?enable_local_write_forwarding: bool,
|
455
455
|
?ca_certificate_identifier: ::String,
|
456
456
|
?engine_lifecycle_support: ::String,
|
457
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
457
458
|
?source_region: ::String
|
458
459
|
) -> _CreateDBClusterResponseSuccess
|
459
460
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBClusterResponseSuccess
|
@@ -601,7 +602,8 @@ module Aws
|
|
601
602
|
?db_system_id: ::String,
|
602
603
|
?dedicated_log_volume: bool,
|
603
604
|
?multi_tenant: bool,
|
604
|
-
?engine_lifecycle_support: ::String
|
605
|
+
?engine_lifecycle_support: ::String,
|
606
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
605
607
|
) -> _CreateDBInstanceResponseSuccess
|
606
608
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceResponseSuccess
|
607
609
|
|
@@ -2347,7 +2349,8 @@ module Aws
|
|
2347
2349
|
?enable_local_write_forwarding: bool,
|
2348
2350
|
?aws_backup_recovery_point_arn: ::String,
|
2349
2351
|
?enable_limitless_database: bool,
|
2350
|
-
?ca_certificate_identifier: ::String
|
2352
|
+
?ca_certificate_identifier: ::String,
|
2353
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2351
2354
|
) -> _ModifyDBClusterResponseSuccess
|
2352
2355
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBClusterResponseSuccess
|
2353
2356
|
|
@@ -2485,7 +2488,8 @@ module Aws
|
|
2485
2488
|
?master_user_secret_kms_key_id: ::String,
|
2486
2489
|
?engine: ::String,
|
2487
2490
|
?dedicated_log_volume: bool,
|
2488
|
-
?multi_tenant: bool
|
2491
|
+
?multi_tenant: bool,
|
2492
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
2489
2493
|
) -> _ModifyDBInstanceResponseSuccess
|
2490
2494
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBInstanceResponseSuccess
|
2491
2495
|
|
data/sig/db_cluster.rbs
CHANGED
@@ -357,6 +357,7 @@ module Aws
|
|
357
357
|
?enable_local_write_forwarding: bool,
|
358
358
|
?ca_certificate_identifier: ::String,
|
359
359
|
?engine_lifecycle_support: ::String,
|
360
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
360
361
|
?source_region: ::String
|
361
362
|
) -> DBCluster
|
362
363
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
@@ -447,7 +448,8 @@ module Aws
|
|
447
448
|
?enable_local_write_forwarding: bool,
|
448
449
|
?aws_backup_recovery_point_arn: ::String,
|
449
450
|
?enable_limitless_database: bool,
|
450
|
-
?ca_certificate_identifier: ::String
|
451
|
+
?ca_certificate_identifier: ::String,
|
452
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
451
453
|
) -> DBCluster
|
452
454
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
453
455
|
|
data/sig/db_instance.rbs
CHANGED
@@ -363,7 +363,8 @@ module Aws
|
|
363
363
|
?db_system_id: ::String,
|
364
364
|
?dedicated_log_volume: bool,
|
365
365
|
?multi_tenant: bool,
|
366
|
-
?engine_lifecycle_support: ::String
|
366
|
+
?engine_lifecycle_support: ::String,
|
367
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
367
368
|
) -> DBInstance
|
368
369
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
369
370
|
|
@@ -518,7 +519,8 @@ module Aws
|
|
518
519
|
?master_user_secret_kms_key_id: ::String,
|
519
520
|
?engine: ::String,
|
520
521
|
?dedicated_log_volume: bool,
|
521
|
-
?multi_tenant: bool
|
522
|
+
?multi_tenant: bool,
|
523
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
522
524
|
) -> DBInstance
|
523
525
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
524
526
|
|
data/sig/resource.rbs
CHANGED
@@ -158,6 +158,7 @@ module Aws
|
|
158
158
|
?enable_local_write_forwarding: bool,
|
159
159
|
?ca_certificate_identifier: ::String,
|
160
160
|
?engine_lifecycle_support: ::String,
|
161
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
161
162
|
?source_region: ::String
|
162
163
|
) -> DBCluster
|
163
164
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
@@ -251,7 +252,8 @@ module Aws
|
|
251
252
|
?db_system_id: ::String,
|
252
253
|
?dedicated_log_volume: bool,
|
253
254
|
?multi_tenant: bool,
|
254
|
-
?engine_lifecycle_support: ::String
|
255
|
+
?engine_lifecycle_support: ::String,
|
256
|
+
?master_user_authentication_type: ("password" | "iam-db-auth")
|
255
257
|
) -> DBInstance
|
256
258
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
257
259
|
|
data/sig/types.rbs
CHANGED
@@ -402,6 +402,7 @@ module Aws::RDS
|
|
402
402
|
attr_accessor enable_local_write_forwarding: bool
|
403
403
|
attr_accessor ca_certificate_identifier: ::String
|
404
404
|
attr_accessor engine_lifecycle_support: ::String
|
405
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
405
406
|
attr_accessor source_region: ::String
|
406
407
|
SENSITIVE: []
|
407
408
|
end
|
@@ -501,6 +502,7 @@ module Aws::RDS
|
|
501
502
|
attr_accessor dedicated_log_volume: bool
|
502
503
|
attr_accessor multi_tenant: bool
|
503
504
|
attr_accessor engine_lifecycle_support: ::String
|
505
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
504
506
|
SENSITIVE: []
|
505
507
|
end
|
506
508
|
|
@@ -2903,6 +2905,7 @@ module Aws::RDS
|
|
2903
2905
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
2904
2906
|
attr_accessor enable_limitless_database: bool
|
2905
2907
|
attr_accessor ca_certificate_identifier: ::String
|
2908
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
2906
2909
|
SENSITIVE: []
|
2907
2910
|
end
|
2908
2911
|
|
@@ -2992,6 +2995,7 @@ module Aws::RDS
|
|
2992
2995
|
attr_accessor engine: ::String
|
2993
2996
|
attr_accessor dedicated_log_volume: bool
|
2994
2997
|
attr_accessor multi_tenant: bool
|
2998
|
+
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
2995
2999
|
SENSITIVE: []
|
2996
3000
|
end
|
2997
3001
|
|