aws-sdk-rds 1.272.0 → 1.274.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +316 -10
- data/lib/aws-sdk-rds/client_api.rb +13 -1
- data/lib/aws-sdk-rds/db_cluster.rb +23 -2
- data/lib/aws-sdk-rds/db_instance.rb +89 -4
- data/lib/aws-sdk-rds/db_snapshot.rb +47 -0
- data/lib/aws-sdk-rds/resource.rb +15 -1
- data/lib/aws-sdk-rds/types.rb +347 -10
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +13 -4
- data/sig/db_instance.rbs +3 -1
- data/sig/db_snapshot.rbs +3 -1
- data/sig/types.rbs +10 -0
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2871,7 +2871,14 @@ module Aws::RDS
|
|
2871
2871
|
# the DB cluster during the maintenance window. By default, minor
|
2872
2872
|
# engine upgrades are applied automatically.
|
2873
2873
|
#
|
2874
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
|
2874
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster.
|
2875
|
+
#
|
2876
|
+
# For more information about automatic minor version upgrades, see
|
2877
|
+
# [Automatically upgrading the minor engine version][1].
|
2878
|
+
#
|
2879
|
+
#
|
2880
|
+
#
|
2881
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
2875
2882
|
# @return [Boolean]
|
2876
2883
|
#
|
2877
2884
|
# @!attribute [rw] monitoring_interval
|
@@ -4057,6 +4064,13 @@ module Aws::RDS
|
|
4057
4064
|
#
|
4058
4065
|
# If you create an RDS Custom DB instance, you must set
|
4059
4066
|
# `AutoMinorVersionUpgrade` to `false`.
|
4067
|
+
#
|
4068
|
+
# For more information about automatic minor version upgrades, see
|
4069
|
+
# [Automatically upgrading the minor engine version][1].
|
4070
|
+
#
|
4071
|
+
#
|
4072
|
+
#
|
4073
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
4060
4074
|
# @return [Boolean]
|
4061
4075
|
#
|
4062
4076
|
# @!attribute [rw] license_model
|
@@ -4955,6 +4969,13 @@ module Aws::RDS
|
|
4955
4969
|
# This setting doesn't apply to RDS Custom DB instances.
|
4956
4970
|
#
|
4957
4971
|
# Default: Inherits the value from the source DB instance.
|
4972
|
+
#
|
4973
|
+
# For more information about automatic minor version upgrades, see
|
4974
|
+
# [Automatically upgrading the minor engine version][1].
|
4975
|
+
#
|
4976
|
+
#
|
4977
|
+
#
|
4978
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
4958
4979
|
# @return [Boolean]
|
4959
4980
|
#
|
4960
4981
|
# @!attribute [rw] iops
|
@@ -6685,6 +6706,8 @@ module Aws::RDS
|
|
6685
6706
|
# * Can include any printable ASCII character except forward slash
|
6686
6707
|
# (`/`), double quote (`"`), at symbol (`@`), ampersand (`&`), or
|
6687
6708
|
# single quote (`'`).
|
6709
|
+
#
|
6710
|
+
# * Can't be specified when `ManageMasterUserPassword` is enabled.
|
6688
6711
|
# @return [String]
|
6689
6712
|
#
|
6690
6713
|
# @!attribute [rw] character_set_name
|
@@ -6696,6 +6719,49 @@ module Aws::RDS
|
|
6696
6719
|
# The `NCHAR` value for the tenant database.
|
6697
6720
|
# @return [String]
|
6698
6721
|
#
|
6722
|
+
# @!attribute [rw] manage_master_user_password
|
6723
|
+
# Specifies whether to manage the master user password with Amazon Web
|
6724
|
+
# Services Secrets Manager.
|
6725
|
+
#
|
6726
|
+
# For more information, see [Password management with Amazon Web
|
6727
|
+
# Services Secrets Manager][1] in the *Amazon RDS User Guide.*
|
6728
|
+
#
|
6729
|
+
# Constraints:
|
6730
|
+
#
|
6731
|
+
# * Can't manage the master user password with Amazon Web Services
|
6732
|
+
# Secrets Manager if `MasterUserPassword` is specified.
|
6733
|
+
#
|
6734
|
+
# ^
|
6735
|
+
#
|
6736
|
+
#
|
6737
|
+
#
|
6738
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
6739
|
+
# @return [Boolean]
|
6740
|
+
#
|
6741
|
+
# @!attribute [rw] master_user_secret_kms_key_id
|
6742
|
+
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
6743
|
+
# is automatically generated and managed in Amazon Web Services
|
6744
|
+
# Secrets Manager.
|
6745
|
+
#
|
6746
|
+
# This setting is valid only if the master user password is managed by
|
6747
|
+
# RDS in Amazon Web Services Secrets Manager for the DB instance.
|
6748
|
+
#
|
6749
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
6750
|
+
# alias ARN, or alias name for the KMS key. To use a KMS key in a
|
6751
|
+
# different Amazon Web Services account, specify the key ARN or alias
|
6752
|
+
# ARN.
|
6753
|
+
#
|
6754
|
+
# If you don't specify `MasterUserSecretKmsKeyId`, then the
|
6755
|
+
# `aws/secretsmanager` KMS key is used to encrypt the secret. If the
|
6756
|
+
# secret is in a different Amazon Web Services account, then you
|
6757
|
+
# can't use the `aws/secretsmanager` KMS key to encrypt the secret,
|
6758
|
+
# and you must use a customer managed KMS key.
|
6759
|
+
#
|
6760
|
+
# There is a default KMS key for your Amazon Web Services account.
|
6761
|
+
# Your Amazon Web Services account has a different default KMS key for
|
6762
|
+
# each Amazon Web Services Region.
|
6763
|
+
# @return [String]
|
6764
|
+
#
|
6699
6765
|
# @!attribute [rw] tags
|
6700
6766
|
# A list of tags.
|
6701
6767
|
#
|
@@ -6718,6 +6784,8 @@ module Aws::RDS
|
|
6718
6784
|
:master_user_password,
|
6719
6785
|
:character_set_name,
|
6720
6786
|
:nchar_character_set_name,
|
6787
|
+
:manage_master_user_password,
|
6788
|
+
:master_user_secret_kms_key_id,
|
6721
6789
|
:tags)
|
6722
6790
|
SENSITIVE = [:master_user_password]
|
6723
6791
|
include Aws::Structure
|
@@ -7212,6 +7280,13 @@ module Aws::RDS
|
|
7212
7280
|
# Indicates whether minor version patches are applied automatically.
|
7213
7281
|
#
|
7214
7282
|
# This setting is for Aurora DB clusters and Multi-AZ DB clusters.
|
7283
|
+
#
|
7284
|
+
# For more information about automatic minor version upgrades, see
|
7285
|
+
# [Automatically upgrading the minor engine version][1].
|
7286
|
+
#
|
7287
|
+
#
|
7288
|
+
#
|
7289
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
7215
7290
|
# @return [Boolean]
|
7216
7291
|
#
|
7217
7292
|
# @!attribute [rw] monitoring_interval
|
@@ -8896,6 +8971,13 @@ module Aws::RDS
|
|
8896
8971
|
#
|
8897
8972
|
# @!attribute [rw] auto_minor_version_upgrade
|
8898
8973
|
# Indicates whether minor version patches are applied automatically.
|
8974
|
+
#
|
8975
|
+
# For more information about automatic minor version upgrades, see
|
8976
|
+
# [Automatically upgrading the minor engine version][1].
|
8977
|
+
#
|
8978
|
+
#
|
8979
|
+
#
|
8980
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
8899
8981
|
# @return [Boolean]
|
8900
8982
|
#
|
8901
8983
|
# @!attribute [rw] read_replica_source_db_instance_identifier
|
@@ -17798,7 +17880,14 @@ module Aws::RDS
|
|
17798
17880
|
# the DB cluster during the maintenance window. By default, minor
|
17799
17881
|
# engine upgrades are applied automatically.
|
17800
17882
|
#
|
17801
|
-
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
17883
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters.
|
17884
|
+
#
|
17885
|
+
# For more information about automatic minor version upgrades, see
|
17886
|
+
# [Automatically upgrading the minor engine version][1].
|
17887
|
+
#
|
17888
|
+
#
|
17889
|
+
#
|
17890
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
17802
17891
|
# @return [Boolean]
|
17803
17892
|
#
|
17804
17893
|
# @!attribute [rw] monitoring_interval
|
@@ -18460,11 +18549,17 @@ module Aws::RDS
|
|
18460
18549
|
#
|
18461
18550
|
# This setting doesn't apply to the following DB instances:
|
18462
18551
|
#
|
18463
|
-
# * Amazon Aurora
|
18464
|
-
#
|
18552
|
+
# * Amazon Aurora
|
18553
|
+
#
|
18554
|
+
# The password for the master user is managed by the DB cluster. For
|
18555
|
+
# more information, see `ModifyDBCluster`.
|
18465
18556
|
#
|
18466
18557
|
# * RDS Custom
|
18467
18558
|
#
|
18559
|
+
# * RDS for Oracle CDBs in the multi-tenant configuration
|
18560
|
+
#
|
18561
|
+
# Specify the master password in `ModifyTenantDatabase` instead.
|
18562
|
+
#
|
18468
18563
|
# Default: Uses existing setting
|
18469
18564
|
#
|
18470
18565
|
# Constraints:
|
@@ -18685,6 +18780,13 @@ module Aws::RDS
|
|
18685
18780
|
#
|
18686
18781
|
# For an RDS Custom DB instance, don't enable this setting.
|
18687
18782
|
# Otherwise, the operation returns an error.
|
18783
|
+
#
|
18784
|
+
# For more information about automatic minor version upgrades, see
|
18785
|
+
# [Automatically upgrading the minor engine version][1].
|
18786
|
+
#
|
18787
|
+
#
|
18788
|
+
#
|
18789
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
18688
18790
|
# @return [Boolean]
|
18689
18791
|
#
|
18690
18792
|
# @!attribute [rw] license_model
|
@@ -19366,7 +19468,11 @@ module Aws::RDS
|
|
19366
19468
|
# * Can't manage the master user password with Amazon Web Services
|
19367
19469
|
# Secrets Manager if `MasterUserPassword` is specified.
|
19368
19470
|
#
|
19369
|
-
#
|
19471
|
+
# * Can't specify for RDS for Oracle CDB instances in the
|
19472
|
+
# multi-tenant configuration. Use `ModifyTenantDatabase` instead.
|
19473
|
+
#
|
19474
|
+
# * Can't specify the parameters `ManageMasterUserPassword` and
|
19475
|
+
# `MultiTenant` in the same operation.
|
19370
19476
|
#
|
19371
19477
|
#
|
19372
19478
|
#
|
@@ -19378,7 +19484,7 @@ module Aws::RDS
|
|
19378
19484
|
# Services Secrets Manager for the master user password.
|
19379
19485
|
#
|
19380
19486
|
# This setting is valid only if the master user password is managed by
|
19381
|
-
# RDS in Amazon Web Services Secrets Manager for the DB
|
19487
|
+
# RDS in Amazon Web Services Secrets Manager for the DB instance. The
|
19382
19488
|
# secret value contains the updated password.
|
19383
19489
|
#
|
19384
19490
|
# For more information, see [Password management with Amazon Web
|
@@ -20342,13 +20448,112 @@ module Aws::RDS
|
|
20342
20448
|
# * Can't be longer than 8 characters.
|
20343
20449
|
# @return [String]
|
20344
20450
|
#
|
20451
|
+
# @!attribute [rw] manage_master_user_password
|
20452
|
+
# Specifies whether to manage the master user password with Amazon Web
|
20453
|
+
# Services Secrets Manager.
|
20454
|
+
#
|
20455
|
+
# If the tenant database doesn't manage the master user password with
|
20456
|
+
# Amazon Web Services Secrets Manager, you can turn on this
|
20457
|
+
# management. In this case, you can't specify `MasterUserPassword`.
|
20458
|
+
#
|
20459
|
+
# If the tenant database already manages the master user password with
|
20460
|
+
# Amazon Web Services Secrets Manager, and you specify that the master
|
20461
|
+
# user password is not managed with Amazon Web Services Secrets
|
20462
|
+
# Manager, then you must specify `MasterUserPassword`. In this case,
|
20463
|
+
# Amazon RDS deletes the secret and uses the new password for the
|
20464
|
+
# master user specified by `MasterUserPassword`.
|
20465
|
+
#
|
20466
|
+
# For more information, see [Password management with Amazon Web
|
20467
|
+
# Services Secrets Manager][1] in the *Amazon RDS User Guide.*
|
20468
|
+
#
|
20469
|
+
# Constraints:
|
20470
|
+
#
|
20471
|
+
# * Can't manage the master user password with Amazon Web Services
|
20472
|
+
# Secrets Manager if `MasterUserPassword` is specified.
|
20473
|
+
#
|
20474
|
+
# ^
|
20475
|
+
#
|
20476
|
+
#
|
20477
|
+
#
|
20478
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
20479
|
+
# @return [Boolean]
|
20480
|
+
#
|
20481
|
+
# @!attribute [rw] rotate_master_user_password
|
20482
|
+
# Specifies whether to rotate the secret managed by Amazon Web
|
20483
|
+
# Services Secrets Manager for the master user password.
|
20484
|
+
#
|
20485
|
+
# This setting is valid only if the master user password is managed by
|
20486
|
+
# RDS in Amazon Web Services Secrets Manager for the DB instance. The
|
20487
|
+
# secret value contains the updated password.
|
20488
|
+
#
|
20489
|
+
# For more information, see [Password management with Amazon Web
|
20490
|
+
# Services Secrets Manager][1] in the *Amazon RDS User Guide.*
|
20491
|
+
#
|
20492
|
+
# Constraints:
|
20493
|
+
#
|
20494
|
+
# * You must apply the change immediately when rotating the master
|
20495
|
+
# user password.
|
20496
|
+
#
|
20497
|
+
# ^
|
20498
|
+
#
|
20499
|
+
#
|
20500
|
+
#
|
20501
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
20502
|
+
# @return [Boolean]
|
20503
|
+
#
|
20504
|
+
# @!attribute [rw] master_user_secret_kms_key_id
|
20505
|
+
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
20506
|
+
# is automatically generated and managed in Amazon Web Services
|
20507
|
+
# Secrets Manager.
|
20508
|
+
#
|
20509
|
+
# This setting is valid only if both of the following conditions are
|
20510
|
+
# met:
|
20511
|
+
#
|
20512
|
+
# * The tenant database doesn't manage the master user password in
|
20513
|
+
# Amazon Web Services Secrets Manager.
|
20514
|
+
#
|
20515
|
+
# If the tenant database already manages the master user password in
|
20516
|
+
# Amazon Web Services Secrets Manager, you can't change the KMS key
|
20517
|
+
# used to encrypt the secret.
|
20518
|
+
#
|
20519
|
+
# * You're turning on `ManageMasterUserPassword` to manage the master
|
20520
|
+
# user password in Amazon Web Services Secrets Manager.
|
20521
|
+
#
|
20522
|
+
# If you're turning on `ManageMasterUserPassword` and don't
|
20523
|
+
# specify `MasterUserSecretKmsKeyId`, then the `aws/secretsmanager`
|
20524
|
+
# KMS key is used to encrypt the secret. If the secret is in a
|
20525
|
+
# different Amazon Web Services account, then you can't use the
|
20526
|
+
# `aws/secretsmanager` KMS key to encrypt the secret, and you must
|
20527
|
+
# use a self-managed KMS key.
|
20528
|
+
#
|
20529
|
+
# The Amazon Web Services KMS key identifier is any of the following:
|
20530
|
+
#
|
20531
|
+
# * Key ARN
|
20532
|
+
#
|
20533
|
+
# * Key ID
|
20534
|
+
#
|
20535
|
+
# * Alias ARN
|
20536
|
+
#
|
20537
|
+
# * Alias name for the KMS key
|
20538
|
+
#
|
20539
|
+
# To use a KMS key in a different Amazon Web Services account, specify
|
20540
|
+
# the key ARN or alias ARN.
|
20541
|
+
#
|
20542
|
+
# A default KMS key exists for your Amazon Web Services account. Your
|
20543
|
+
# Amazon Web Services account has a different default KMS key for each
|
20544
|
+
# Amazon Web Services Region.
|
20545
|
+
# @return [String]
|
20546
|
+
#
|
20345
20547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyTenantDatabaseMessage AWS API Documentation
|
20346
20548
|
#
|
20347
20549
|
class ModifyTenantDatabaseMessage < Struct.new(
|
20348
20550
|
:db_instance_identifier,
|
20349
20551
|
:tenant_db_name,
|
20350
20552
|
:master_user_password,
|
20351
|
-
:new_tenant_db_name
|
20553
|
+
:new_tenant_db_name,
|
20554
|
+
:manage_master_user_password,
|
20555
|
+
:rotate_master_user_password,
|
20556
|
+
:master_user_secret_kms_key_id)
|
20352
20557
|
SENSITIVE = [:master_user_password]
|
20353
20558
|
include Aws::Structure
|
20354
20559
|
end
|
@@ -24643,6 +24848,13 @@ module Aws::RDS
|
|
24643
24848
|
#
|
24644
24849
|
# If you restore an RDS Custom DB instance, you must disable this
|
24645
24850
|
# parameter.
|
24851
|
+
#
|
24852
|
+
# For more information about automatic minor version upgrades, see
|
24853
|
+
# [Automatically upgrading the minor engine version][1].
|
24854
|
+
#
|
24855
|
+
#
|
24856
|
+
#
|
24857
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
24646
24858
|
# @return [Boolean]
|
24647
24859
|
#
|
24648
24860
|
# @!attribute [rw] license_model
|
@@ -25167,6 +25379,48 @@ module Aws::RDS
|
|
25167
25379
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
25168
25380
|
# @return [String]
|
25169
25381
|
#
|
25382
|
+
# @!attribute [rw] manage_master_user_password
|
25383
|
+
# Specifies whether to manage the master user password with Amazon Web
|
25384
|
+
# Services Secrets Manager in the restored DB instance.
|
25385
|
+
#
|
25386
|
+
# For more information, see [Password management with Amazon Web
|
25387
|
+
# Services Secrets Manager][1] in the *Amazon RDS User Guide*.
|
25388
|
+
#
|
25389
|
+
# Constraints:
|
25390
|
+
#
|
25391
|
+
# * Applies to RDS for Oracle only.
|
25392
|
+
#
|
25393
|
+
# ^
|
25394
|
+
#
|
25395
|
+
#
|
25396
|
+
#
|
25397
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
25398
|
+
# @return [Boolean]
|
25399
|
+
#
|
25400
|
+
# @!attribute [rw] master_user_secret_kms_key_id
|
25401
|
+
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
25402
|
+
# is automatically generated and managed in Amazon Web Services
|
25403
|
+
# Secrets Manager.
|
25404
|
+
#
|
25405
|
+
# This setting is valid only if the master user password is managed by
|
25406
|
+
# RDS in Amazon Web Services Secrets Manager for the DB instance.
|
25407
|
+
#
|
25408
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
25409
|
+
# alias ARN, or alias name for the KMS key. To use a KMS key in a
|
25410
|
+
# different Amazon Web Services account, specify the key ARN or alias
|
25411
|
+
# ARN.
|
25412
|
+
#
|
25413
|
+
# If you don't specify `MasterUserSecretKmsKeyId`, then the
|
25414
|
+
# `aws/secretsmanager` KMS key is used to encrypt the secret. If the
|
25415
|
+
# secret is in a different Amazon Web Services account, then you
|
25416
|
+
# can't use the `aws/secretsmanager` KMS key to encrypt the secret,
|
25417
|
+
# and you must use a customer managed KMS key.
|
25418
|
+
#
|
25419
|
+
# There is a default KMS key for your Amazon Web Services account.
|
25420
|
+
# Your Amazon Web Services account has a different default KMS key for
|
25421
|
+
# each Amazon Web Services Region.
|
25422
|
+
# @return [String]
|
25423
|
+
#
|
25170
25424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshotMessage AWS API Documentation
|
25171
25425
|
#
|
25172
25426
|
class RestoreDBInstanceFromDBSnapshotMessage < Struct.new(
|
@@ -25211,7 +25465,9 @@ module Aws::RDS
|
|
25211
25465
|
:allocated_storage,
|
25212
25466
|
:dedicated_log_volume,
|
25213
25467
|
:ca_certificate_identifier,
|
25214
|
-
:engine_lifecycle_support
|
25468
|
+
:engine_lifecycle_support,
|
25469
|
+
:manage_master_user_password,
|
25470
|
+
:master_user_secret_kms_key_id)
|
25215
25471
|
SENSITIVE = []
|
25216
25472
|
include Aws::Structure
|
25217
25473
|
end
|
@@ -25453,6 +25709,13 @@ module Aws::RDS
|
|
25453
25709
|
# Specifies whether to automatically apply minor engine upgrades to
|
25454
25710
|
# the DB instance during the maintenance window. By default, minor
|
25455
25711
|
# engine upgrades are not applied automatically.
|
25712
|
+
#
|
25713
|
+
# For more information about automatic minor version upgrades, see
|
25714
|
+
# [Automatically upgrading the minor engine version][1].
|
25715
|
+
#
|
25716
|
+
#
|
25717
|
+
#
|
25718
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
25456
25719
|
# @return [Boolean]
|
25457
25720
|
#
|
25458
25721
|
# @!attribute [rw] license_model
|
@@ -26065,6 +26328,13 @@ module Aws::RDS
|
|
26065
26328
|
# to the DB instance during the maintenance window.
|
26066
26329
|
#
|
26067
26330
|
# This setting doesn't apply to RDS Custom.
|
26331
|
+
#
|
26332
|
+
# For more information about automatic minor version upgrades, see
|
26333
|
+
# [Automatically upgrading the minor engine version][1].
|
26334
|
+
#
|
26335
|
+
#
|
26336
|
+
#
|
26337
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades
|
26068
26338
|
# @return [Boolean]
|
26069
26339
|
#
|
26070
26340
|
# @!attribute [rw] license_model
|
@@ -26587,6 +26857,48 @@ module Aws::RDS
|
|
26587
26857
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
26588
26858
|
# @return [String]
|
26589
26859
|
#
|
26860
|
+
# @!attribute [rw] manage_master_user_password
|
26861
|
+
# Specifies whether to manage the master user password with Amazon Web
|
26862
|
+
# Services Secrets Manager in the restored DB instance.
|
26863
|
+
#
|
26864
|
+
# For more information, see [Password management with Amazon Web
|
26865
|
+
# Services Secrets Manager][1] in the *Amazon RDS User Guide*.
|
26866
|
+
#
|
26867
|
+
# Constraints:
|
26868
|
+
#
|
26869
|
+
# * Applies to RDS for Oracle only.
|
26870
|
+
#
|
26871
|
+
# ^
|
26872
|
+
#
|
26873
|
+
#
|
26874
|
+
#
|
26875
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
26876
|
+
# @return [Boolean]
|
26877
|
+
#
|
26878
|
+
# @!attribute [rw] master_user_secret_kms_key_id
|
26879
|
+
# The Amazon Web Services KMS key identifier to encrypt a secret that
|
26880
|
+
# is automatically generated and managed in Amazon Web Services
|
26881
|
+
# Secrets Manager.
|
26882
|
+
#
|
26883
|
+
# This setting is valid only if the master user password is managed by
|
26884
|
+
# RDS in Amazon Web Services Secrets Manager for the DB instance.
|
26885
|
+
#
|
26886
|
+
# The Amazon Web Services KMS key identifier is the key ARN, key ID,
|
26887
|
+
# alias ARN, or alias name for the KMS key. To use a KMS key in a
|
26888
|
+
# different Amazon Web Services account, specify the key ARN or alias
|
26889
|
+
# ARN.
|
26890
|
+
#
|
26891
|
+
# If you don't specify `MasterUserSecretKmsKeyId`, then the
|
26892
|
+
# `aws/secretsmanager` KMS key is used to encrypt the secret. If the
|
26893
|
+
# secret is in a different Amazon Web Services account, then you
|
26894
|
+
# can't use the `aws/secretsmanager` KMS key to encrypt the secret,
|
26895
|
+
# and you must use a customer managed KMS key.
|
26896
|
+
#
|
26897
|
+
# There is a default KMS key for your Amazon Web Services account.
|
26898
|
+
# Your Amazon Web Services account has a different default KMS key for
|
26899
|
+
# each Amazon Web Services Region.
|
26900
|
+
# @return [String]
|
26901
|
+
#
|
26590
26902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTimeMessage AWS API Documentation
|
26591
26903
|
#
|
26592
26904
|
class RestoreDBInstanceToPointInTimeMessage < Struct.new(
|
@@ -26635,7 +26947,9 @@ module Aws::RDS
|
|
26635
26947
|
:allocated_storage,
|
26636
26948
|
:dedicated_log_volume,
|
26637
26949
|
:ca_certificate_identifier,
|
26638
|
-
:engine_lifecycle_support
|
26950
|
+
:engine_lifecycle_support,
|
26951
|
+
:manage_master_user_password,
|
26952
|
+
:master_user_secret_kms_key_id)
|
26639
26953
|
SENSITIVE = []
|
26640
26954
|
include Aws::Structure
|
26641
26955
|
end
|
@@ -28079,6 +28393,21 @@ module Aws::RDS
|
|
28079
28393
|
# Information about pending changes for a tenant database.
|
28080
28394
|
# @return [Types::TenantDatabasePendingModifiedValues]
|
28081
28395
|
#
|
28396
|
+
# @!attribute [rw] master_user_secret
|
28397
|
+
# Contains the secret managed by RDS in Amazon Web Services Secrets
|
28398
|
+
# Manager for the master user password.
|
28399
|
+
#
|
28400
|
+
# For more information, see [Password management with Amazon Web
|
28401
|
+
# Services Secrets Manager][1] in the *Amazon RDS User Guide* and
|
28402
|
+
# [Password management with Amazon Web Services Secrets Manager][2] in
|
28403
|
+
# the *Amazon Aurora User Guide.*
|
28404
|
+
#
|
28405
|
+
#
|
28406
|
+
#
|
28407
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html
|
28408
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html
|
28409
|
+
# @return [Types::MasterUserSecret]
|
28410
|
+
#
|
28082
28411
|
# @!attribute [rw] tag_list
|
28083
28412
|
# A list of tags.
|
28084
28413
|
#
|
@@ -28107,6 +28436,7 @@ module Aws::RDS
|
|
28107
28436
|
:nchar_character_set_name,
|
28108
28437
|
:deletion_protection,
|
28109
28438
|
:pending_modified_values,
|
28439
|
+
:master_user_secret,
|
28110
28440
|
:tag_list)
|
28111
28441
|
SENSITIVE = []
|
28112
28442
|
include Aws::Structure
|
@@ -28316,7 +28646,14 @@ module Aws::RDS
|
|
28316
28646
|
#
|
28317
28647
|
# @!attribute [rw] client_password_auth_type
|
28318
28648
|
# The type of authentication the proxy uses for connections from
|
28319
|
-
# clients.
|
28649
|
+
# clients. The following values are defaults for the corresponding
|
28650
|
+
# engines:
|
28651
|
+
#
|
28652
|
+
# * RDS for MySQL: `MYSQL_CACHING_SHA2_PASSWORD`
|
28653
|
+
#
|
28654
|
+
# * RDS for SQL Server: `SQL_SERVER_AUTHENTICATION`
|
28655
|
+
#
|
28656
|
+
# * RDS for PostgreSQL: `POSTGRES_SCRAM_SHA2_256`
|
28320
28657
|
# @return [String]
|
28321
28658
|
#
|
28322
28659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UserAuthConfig AWS API Documentation
|
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.274.0'
|
84
84
|
|
85
85
|
end
|
86
86
|
|
data/sig/client.rbs
CHANGED
@@ -927,9 +927,11 @@ module Aws
|
|
927
927
|
db_instance_identifier: ::String,
|
928
928
|
tenant_db_name: ::String,
|
929
929
|
master_username: ::String,
|
930
|
-
master_user_password: ::String,
|
930
|
+
?master_user_password: ::String,
|
931
931
|
?character_set_name: ::String,
|
932
932
|
?nchar_character_set_name: ::String,
|
933
|
+
?manage_master_user_password: bool,
|
934
|
+
?master_user_secret_kms_key_id: ::String,
|
933
935
|
?tags: Array[
|
934
936
|
{
|
935
937
|
key: ::String?,
|
@@ -2724,7 +2726,10 @@ module Aws
|
|
2724
2726
|
db_instance_identifier: ::String,
|
2725
2727
|
tenant_db_name: ::String,
|
2726
2728
|
?master_user_password: ::String,
|
2727
|
-
?new_tenant_db_name: ::String
|
2729
|
+
?new_tenant_db_name: ::String,
|
2730
|
+
?manage_master_user_password: bool,
|
2731
|
+
?rotate_master_user_password: bool,
|
2732
|
+
?master_user_secret_kms_key_id: ::String
|
2728
2733
|
) -> _ModifyTenantDatabaseResponseSuccess
|
2729
2734
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyTenantDatabaseResponseSuccess
|
2730
2735
|
|
@@ -3159,7 +3164,9 @@ module Aws
|
|
3159
3164
|
?allocated_storage: ::Integer,
|
3160
3165
|
?dedicated_log_volume: bool,
|
3161
3166
|
?ca_certificate_identifier: ::String,
|
3162
|
-
?engine_lifecycle_support: ::String
|
3167
|
+
?engine_lifecycle_support: ::String,
|
3168
|
+
?manage_master_user_password: bool,
|
3169
|
+
?master_user_secret_kms_key_id: ::String
|
3163
3170
|
) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
|
3164
3171
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
|
3165
3172
|
|
@@ -3295,7 +3302,9 @@ module Aws
|
|
3295
3302
|
?allocated_storage: ::Integer,
|
3296
3303
|
?dedicated_log_volume: bool,
|
3297
3304
|
?ca_certificate_identifier: ::String,
|
3298
|
-
?engine_lifecycle_support: ::String
|
3305
|
+
?engine_lifecycle_support: ::String,
|
3306
|
+
?manage_master_user_password: bool,
|
3307
|
+
?master_user_secret_kms_key_id: ::String
|
3299
3308
|
) -> _RestoreDBInstanceToPointInTimeResponseSuccess
|
3300
3309
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceToPointInTimeResponseSuccess
|
3301
3310
|
|
data/sig/db_instance.rbs
CHANGED
@@ -590,7 +590,9 @@ module Aws
|
|
590
590
|
?allocated_storage: ::Integer,
|
591
591
|
?dedicated_log_volume: bool,
|
592
592
|
?ca_certificate_identifier: ::String,
|
593
|
-
?engine_lifecycle_support: ::String
|
593
|
+
?engine_lifecycle_support: ::String,
|
594
|
+
?manage_master_user_password: bool,
|
595
|
+
?master_user_secret_kms_key_id: ::String
|
594
596
|
) -> DBInstance
|
595
597
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
596
598
|
|
data/sig/db_snapshot.rbs
CHANGED
@@ -224,7 +224,9 @@ module Aws
|
|
224
224
|
?allocated_storage: ::Integer,
|
225
225
|
?dedicated_log_volume: bool,
|
226
226
|
?ca_certificate_identifier: ::String,
|
227
|
-
?engine_lifecycle_support: ::String
|
227
|
+
?engine_lifecycle_support: ::String,
|
228
|
+
?manage_master_user_password: bool,
|
229
|
+
?master_user_secret_kms_key_id: ::String
|
228
230
|
) -> DBInstance
|
229
231
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
230
232
|
|
data/sig/types.rbs
CHANGED
@@ -725,6 +725,8 @@ module Aws::RDS
|
|
725
725
|
attr_accessor master_user_password: ::String
|
726
726
|
attr_accessor character_set_name: ::String
|
727
727
|
attr_accessor nchar_character_set_name: ::String
|
728
|
+
attr_accessor manage_master_user_password: bool
|
729
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
728
730
|
attr_accessor tags: ::Array[Types::Tag]
|
729
731
|
SENSITIVE: [:master_user_password]
|
730
732
|
end
|
@@ -3126,6 +3128,9 @@ module Aws::RDS
|
|
3126
3128
|
attr_accessor tenant_db_name: ::String
|
3127
3129
|
attr_accessor master_user_password: ::String
|
3128
3130
|
attr_accessor new_tenant_db_name: ::String
|
3131
|
+
attr_accessor manage_master_user_password: bool
|
3132
|
+
attr_accessor rotate_master_user_password: bool
|
3133
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
3129
3134
|
SENSITIVE: [:master_user_password]
|
3130
3135
|
end
|
3131
3136
|
|
@@ -3825,6 +3830,8 @@ module Aws::RDS
|
|
3825
3830
|
attr_accessor dedicated_log_volume: bool
|
3826
3831
|
attr_accessor ca_certificate_identifier: ::String
|
3827
3832
|
attr_accessor engine_lifecycle_support: ::String
|
3833
|
+
attr_accessor manage_master_user_password: bool
|
3834
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
3828
3835
|
SENSITIVE: []
|
3829
3836
|
end
|
3830
3837
|
|
@@ -3941,6 +3948,8 @@ module Aws::RDS
|
|
3941
3948
|
attr_accessor dedicated_log_volume: bool
|
3942
3949
|
attr_accessor ca_certificate_identifier: ::String
|
3943
3950
|
attr_accessor engine_lifecycle_support: ::String
|
3951
|
+
attr_accessor manage_master_user_password: bool
|
3952
|
+
attr_accessor master_user_secret_kms_key_id: ::String
|
3944
3953
|
SENSITIVE: []
|
3945
3954
|
end
|
3946
3955
|
|
@@ -4259,6 +4268,7 @@ module Aws::RDS
|
|
4259
4268
|
attr_accessor nchar_character_set_name: ::String
|
4260
4269
|
attr_accessor deletion_protection: bool
|
4261
4270
|
attr_accessor pending_modified_values: Types::TenantDatabasePendingModifiedValues
|
4271
|
+
attr_accessor master_user_secret: Types::MasterUserSecret
|
4262
4272
|
attr_accessor tag_list: ::Array[Types::Tag]
|
4263
4273
|
SENSITIVE: []
|
4264
4274
|
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.
|
4
|
+
version: 1.274.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: 2025-
|
11
|
+
date: 2025-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|