aws-sdk-rds 1.301.0 → 1.302.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 +248 -1
- data/lib/aws-sdk-rds/client_api.rb +22 -0
- data/lib/aws-sdk-rds/db_cluster.rb +38 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -0
- data/lib/aws-sdk-rds/db_instance.rb +95 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +19 -0
- data/lib/aws-sdk-rds/resource.rb +38 -0
- data/lib/aws-sdk-rds/types.rb +195 -5
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +131 -4
- data/sig/db_cluster.rbs +23 -1
- data/sig/db_cluster_snapshot.rbs +12 -1
- data/sig/db_instance.rbs +56 -1
- data/sig/db_snapshot.rbs +11 -0
- data/sig/resource.rbs +22 -0
- data/sig/types.rbs +20 -0
- metadata +1 -1
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -3391,6 +3391,16 @@ module Aws::RDS
|
|
|
3391
3391
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3392
3392
|
# @return [String]
|
|
3393
3393
|
#
|
|
3394
|
+
# @!attribute [rw] tag_specifications
|
|
3395
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
3396
|
+
#
|
|
3397
|
+
# Valid Values:
|
|
3398
|
+
#
|
|
3399
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
3400
|
+
#
|
|
3401
|
+
# ^
|
|
3402
|
+
# @return [Array<Types::TagSpecification>]
|
|
3403
|
+
#
|
|
3394
3404
|
# @!attribute [rw] master_user_authentication_type
|
|
3395
3405
|
# Specifies the authentication type for the master user. With IAM
|
|
3396
3406
|
# master user authentication, you can configure the master DB user
|
|
@@ -3473,6 +3483,7 @@ module Aws::RDS
|
|
|
3473
3483
|
:master_user_secret_kms_key_id,
|
|
3474
3484
|
:ca_certificate_identifier,
|
|
3475
3485
|
:engine_lifecycle_support,
|
|
3486
|
+
:tag_specifications,
|
|
3476
3487
|
:master_user_authentication_type,
|
|
3477
3488
|
:source_region)
|
|
3478
3489
|
SENSITIVE = [:master_user_password, :pre_signed_url]
|
|
@@ -5058,6 +5069,16 @@ module Aws::RDS
|
|
|
5058
5069
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
5059
5070
|
# @return [String]
|
|
5060
5071
|
#
|
|
5072
|
+
# @!attribute [rw] tag_specifications
|
|
5073
|
+
# Tags to assign to resources associated with the DB instance.
|
|
5074
|
+
#
|
|
5075
|
+
# Valid Values:
|
|
5076
|
+
#
|
|
5077
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
5078
|
+
#
|
|
5079
|
+
# ^
|
|
5080
|
+
# @return [Array<Types::TagSpecification>]
|
|
5081
|
+
#
|
|
5061
5082
|
# @!attribute [rw] master_user_authentication_type
|
|
5062
5083
|
# Specifies the authentication type for the master user. With IAM
|
|
5063
5084
|
# master user authentication, you can configure the master DB user
|
|
@@ -5149,6 +5170,7 @@ module Aws::RDS
|
|
|
5149
5170
|
:multi_tenant,
|
|
5150
5171
|
:dedicated_log_volume,
|
|
5151
5172
|
:engine_lifecycle_support,
|
|
5173
|
+
:tag_specifications,
|
|
5152
5174
|
:master_user_authentication_type,
|
|
5153
5175
|
:additional_storage_volumes)
|
|
5154
5176
|
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
@@ -5938,6 +5960,16 @@ module Aws::RDS
|
|
|
5938
5960
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
5939
5961
|
# @return [String]
|
|
5940
5962
|
#
|
|
5963
|
+
# @!attribute [rw] tag_specifications
|
|
5964
|
+
# Tags to assign to resources associated with the DB instance.
|
|
5965
|
+
#
|
|
5966
|
+
# Valid Values:
|
|
5967
|
+
#
|
|
5968
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
5969
|
+
#
|
|
5970
|
+
# ^
|
|
5971
|
+
# @return [Array<Types::TagSpecification>]
|
|
5972
|
+
#
|
|
5941
5973
|
# @!attribute [rw] additional_storage_volumes
|
|
5942
5974
|
# A list of additional storage volumes to create for the DB instance.
|
|
5943
5975
|
# You can create up to three additional storage volumes using the
|
|
@@ -6001,6 +6033,7 @@ module Aws::RDS
|
|
|
6001
6033
|
:dedicated_log_volume,
|
|
6002
6034
|
:upgrade_storage_config,
|
|
6003
6035
|
:ca_certificate_identifier,
|
|
6036
|
+
:tag_specifications,
|
|
6004
6037
|
:additional_storage_volumes,
|
|
6005
6038
|
:source_region)
|
|
6006
6039
|
SENSITIVE = [:pre_signed_url]
|
|
@@ -8138,6 +8171,19 @@ module Aws::RDS
|
|
|
8138
8171
|
# Services Backup.
|
|
8139
8172
|
# @return [String]
|
|
8140
8173
|
#
|
|
8174
|
+
# @!attribute [rw] tag_list
|
|
8175
|
+
# A list of tags.
|
|
8176
|
+
#
|
|
8177
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
|
8178
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
|
8179
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
|
8180
|
+
#
|
|
8181
|
+
#
|
|
8182
|
+
#
|
|
8183
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
|
8184
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
8185
|
+
# @return [Array<Types::Tag>]
|
|
8186
|
+
#
|
|
8141
8187
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBClusterAutomatedBackup AWS API Documentation
|
|
8142
8188
|
#
|
|
8143
8189
|
class DBClusterAutomatedBackup < Struct.new(
|
|
@@ -8165,7 +8211,8 @@ module Aws::RDS
|
|
|
8165
8211
|
:storage_type,
|
|
8166
8212
|
:iops,
|
|
8167
8213
|
:storage_throughput,
|
|
8168
|
-
:aws_backup_recovery_point_arn
|
|
8214
|
+
:aws_backup_recovery_point_arn,
|
|
8215
|
+
:tag_list)
|
|
8169
8216
|
SENSITIVE = []
|
|
8170
8217
|
include Aws::Structure
|
|
8171
8218
|
end
|
|
@@ -10225,6 +10272,19 @@ module Aws::RDS
|
|
|
10225
10272
|
# Services Backup.
|
|
10226
10273
|
# @return [String]
|
|
10227
10274
|
#
|
|
10275
|
+
# @!attribute [rw] tag_list
|
|
10276
|
+
# A list of tags.
|
|
10277
|
+
#
|
|
10278
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
|
10279
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
|
10280
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
|
10281
|
+
#
|
|
10282
|
+
#
|
|
10283
|
+
#
|
|
10284
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
|
10285
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
10286
|
+
# @return [Array<Types::Tag>]
|
|
10287
|
+
#
|
|
10228
10288
|
# @!attribute [rw] dedicated_log_volume
|
|
10229
10289
|
# Indicates whether the DB instance has a dedicated log volume (DLV)
|
|
10230
10290
|
# enabled.
|
|
@@ -10269,6 +10329,7 @@ module Aws::RDS
|
|
|
10269
10329
|
:backup_target,
|
|
10270
10330
|
:multi_tenant,
|
|
10271
10331
|
:aws_backup_recovery_point_arn,
|
|
10332
|
+
:tag_list,
|
|
10272
10333
|
:dedicated_log_volume,
|
|
10273
10334
|
:additional_storage_volumes)
|
|
10274
10335
|
SENSITIVE = []
|
|
@@ -20411,6 +20472,16 @@ module Aws::RDS
|
|
|
20411
20472
|
# `--option-group-name`.
|
|
20412
20473
|
# @return [String]
|
|
20413
20474
|
#
|
|
20475
|
+
# @!attribute [rw] tag_specifications
|
|
20476
|
+
# Tags to assign to resources associated with the DB instance.
|
|
20477
|
+
#
|
|
20478
|
+
# Valid Values:
|
|
20479
|
+
#
|
|
20480
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
20481
|
+
#
|
|
20482
|
+
# ^
|
|
20483
|
+
# @return [Array<Types::TagSpecification>]
|
|
20484
|
+
#
|
|
20414
20485
|
# @!attribute [rw] master_user_authentication_type
|
|
20415
20486
|
# Specifies the authentication type for the master user. With IAM
|
|
20416
20487
|
# master user authentication, you can change the master DB user to use
|
|
@@ -20498,6 +20569,7 @@ module Aws::RDS
|
|
|
20498
20569
|
:multi_tenant,
|
|
20499
20570
|
:dedicated_log_volume,
|
|
20500
20571
|
:engine,
|
|
20572
|
+
:tag_specifications,
|
|
20501
20573
|
:master_user_authentication_type,
|
|
20502
20574
|
:additional_storage_volumes)
|
|
20503
20575
|
SENSITIVE = [:master_user_password, :tde_credential_password]
|
|
@@ -22908,12 +22980,23 @@ module Aws::RDS
|
|
|
22908
22980
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
|
22909
22981
|
# @return [String]
|
|
22910
22982
|
#
|
|
22983
|
+
# @!attribute [rw] tag_specifications
|
|
22984
|
+
# Tags to assign to resources associated with the DB instance.
|
|
22985
|
+
#
|
|
22986
|
+
# Valid Values:
|
|
22987
|
+
#
|
|
22988
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
22989
|
+
#
|
|
22990
|
+
# ^
|
|
22991
|
+
# @return [Array<Types::TagSpecification>]
|
|
22992
|
+
#
|
|
22911
22993
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaMessage AWS API Documentation
|
|
22912
22994
|
#
|
|
22913
22995
|
class PromoteReadReplicaMessage < Struct.new(
|
|
22914
22996
|
:db_instance_identifier,
|
|
22915
22997
|
:backup_retention_period,
|
|
22916
|
-
:preferred_backup_window
|
|
22998
|
+
:preferred_backup_window,
|
|
22999
|
+
:tag_specifications)
|
|
22917
23000
|
SENSITIVE = []
|
|
22918
23001
|
include Aws::Structure
|
|
22919
23002
|
end
|
|
@@ -24298,6 +24381,16 @@ module Aws::RDS
|
|
|
24298
24381
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
24299
24382
|
# @return [String]
|
|
24300
24383
|
#
|
|
24384
|
+
# @!attribute [rw] tag_specifications
|
|
24385
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
24386
|
+
#
|
|
24387
|
+
# Valid Values:
|
|
24388
|
+
#
|
|
24389
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
24390
|
+
#
|
|
24391
|
+
# ^
|
|
24392
|
+
# @return [Array<Types::TagSpecification>]
|
|
24393
|
+
#
|
|
24301
24394
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
|
24302
24395
|
#
|
|
24303
24396
|
class RestoreDBClusterFromS3Message < Struct.new(
|
|
@@ -24337,7 +24430,8 @@ module Aws::RDS
|
|
|
24337
24430
|
:serverless_v2_scaling_configuration,
|
|
24338
24431
|
:manage_master_user_password,
|
|
24339
24432
|
:master_user_secret_kms_key_id,
|
|
24340
|
-
:engine_lifecycle_support
|
|
24433
|
+
:engine_lifecycle_support,
|
|
24434
|
+
:tag_specifications)
|
|
24341
24435
|
SENSITIVE = [:master_user_password]
|
|
24342
24436
|
include Aws::Structure
|
|
24343
24437
|
end
|
|
@@ -24940,6 +25034,16 @@ module Aws::RDS
|
|
|
24940
25034
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
24941
25035
|
# @return [String]
|
|
24942
25036
|
#
|
|
25037
|
+
# @!attribute [rw] tag_specifications
|
|
25038
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
25039
|
+
#
|
|
25040
|
+
# Valid Values:
|
|
25041
|
+
#
|
|
25042
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
25043
|
+
#
|
|
25044
|
+
# ^
|
|
25045
|
+
# @return [Array<Types::TagSpecification>]
|
|
25046
|
+
#
|
|
24943
25047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
|
24944
25048
|
#
|
|
24945
25049
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
|
@@ -24977,7 +25081,8 @@ module Aws::RDS
|
|
|
24977
25081
|
:enable_performance_insights,
|
|
24978
25082
|
:performance_insights_kms_key_id,
|
|
24979
25083
|
:performance_insights_retention_period,
|
|
24980
|
-
:engine_lifecycle_support
|
|
25084
|
+
:engine_lifecycle_support,
|
|
25085
|
+
:tag_specifications)
|
|
24981
25086
|
SENSITIVE = []
|
|
24982
25087
|
include Aws::Structure
|
|
24983
25088
|
end
|
|
@@ -25557,6 +25662,16 @@ module Aws::RDS
|
|
|
25557
25662
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
25558
25663
|
# @return [String]
|
|
25559
25664
|
#
|
|
25665
|
+
# @!attribute [rw] tag_specifications
|
|
25666
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
25667
|
+
#
|
|
25668
|
+
# Valid Values:
|
|
25669
|
+
#
|
|
25670
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
25671
|
+
#
|
|
25672
|
+
# ^
|
|
25673
|
+
# @return [Array<Types::TagSpecification>]
|
|
25674
|
+
#
|
|
25560
25675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
|
25561
25676
|
#
|
|
25562
25677
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
|
@@ -25594,7 +25709,8 @@ module Aws::RDS
|
|
|
25594
25709
|
:enable_performance_insights,
|
|
25595
25710
|
:performance_insights_kms_key_id,
|
|
25596
25711
|
:performance_insights_retention_period,
|
|
25597
|
-
:engine_lifecycle_support
|
|
25712
|
+
:engine_lifecycle_support,
|
|
25713
|
+
:tag_specifications)
|
|
25598
25714
|
SENSITIVE = []
|
|
25599
25715
|
include Aws::Structure
|
|
25600
25716
|
end
|
|
@@ -26279,6 +26395,16 @@ module Aws::RDS
|
|
|
26279
26395
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
26280
26396
|
# @return [String]
|
|
26281
26397
|
#
|
|
26398
|
+
# @!attribute [rw] tag_specifications
|
|
26399
|
+
# Tags to assign to resources associated with the DB instance.
|
|
26400
|
+
#
|
|
26401
|
+
# Valid Values:
|
|
26402
|
+
#
|
|
26403
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
26404
|
+
#
|
|
26405
|
+
# ^
|
|
26406
|
+
# @return [Array<Types::TagSpecification>]
|
|
26407
|
+
#
|
|
26282
26408
|
# @!attribute [rw] manage_master_user_password
|
|
26283
26409
|
# Specifies whether to manage the master user password with Amazon Web
|
|
26284
26410
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -26374,6 +26500,7 @@ module Aws::RDS
|
|
|
26374
26500
|
:dedicated_log_volume,
|
|
26375
26501
|
:ca_certificate_identifier,
|
|
26376
26502
|
:engine_lifecycle_support,
|
|
26503
|
+
:tag_specifications,
|
|
26377
26504
|
:manage_master_user_password,
|
|
26378
26505
|
:master_user_secret_kms_key_id,
|
|
26379
26506
|
:additional_storage_volumes)
|
|
@@ -27021,6 +27148,16 @@ module Aws::RDS
|
|
|
27021
27148
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
27022
27149
|
# @return [String]
|
|
27023
27150
|
#
|
|
27151
|
+
# @!attribute [rw] tag_specifications
|
|
27152
|
+
# Tags to assign to resources associated with the DB instance.
|
|
27153
|
+
#
|
|
27154
|
+
# Valid Values:
|
|
27155
|
+
#
|
|
27156
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
27157
|
+
#
|
|
27158
|
+
# ^
|
|
27159
|
+
# @return [Array<Types::TagSpecification>]
|
|
27160
|
+
#
|
|
27024
27161
|
# @!attribute [rw] additional_storage_volumes
|
|
27025
27162
|
# A list of additional storage volumes to modify or delete for the DB
|
|
27026
27163
|
# instance. You can modify or delete up to three additional storage
|
|
@@ -27084,6 +27221,7 @@ module Aws::RDS
|
|
|
27084
27221
|
:dedicated_log_volume,
|
|
27085
27222
|
:ca_certificate_identifier,
|
|
27086
27223
|
:engine_lifecycle_support,
|
|
27224
|
+
:tag_specifications,
|
|
27087
27225
|
:additional_storage_volumes)
|
|
27088
27226
|
SENSITIVE = [:master_user_password]
|
|
27089
27227
|
include Aws::Structure
|
|
@@ -27777,6 +27915,16 @@ module Aws::RDS
|
|
|
27777
27915
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
27778
27916
|
# @return [String]
|
|
27779
27917
|
#
|
|
27918
|
+
# @!attribute [rw] tag_specifications
|
|
27919
|
+
# Tags to assign to resources associated with the DB instance.
|
|
27920
|
+
#
|
|
27921
|
+
# Valid Values:
|
|
27922
|
+
#
|
|
27923
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
27924
|
+
#
|
|
27925
|
+
# ^
|
|
27926
|
+
# @return [Array<Types::TagSpecification>]
|
|
27927
|
+
#
|
|
27780
27928
|
# @!attribute [rw] manage_master_user_password
|
|
27781
27929
|
# Specifies whether to manage the master user password with Amazon Web
|
|
27782
27930
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -27876,6 +28024,7 @@ module Aws::RDS
|
|
|
27876
28024
|
:dedicated_log_volume,
|
|
27877
28025
|
:ca_certificate_identifier,
|
|
27878
28026
|
:engine_lifecycle_support,
|
|
28027
|
+
:tag_specifications,
|
|
27879
28028
|
:manage_master_user_password,
|
|
27880
28029
|
:master_user_secret_kms_key_id,
|
|
27881
28030
|
:additional_storage_volumes)
|
|
@@ -28585,6 +28734,10 @@ module Aws::RDS
|
|
|
28585
28734
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
|
28586
28735
|
# @return [String]
|
|
28587
28736
|
#
|
|
28737
|
+
# @!attribute [rw] tags
|
|
28738
|
+
# A list of tags to associate with the replicated automated backups.
|
|
28739
|
+
# @return [Array<Types::Tag>]
|
|
28740
|
+
#
|
|
28588
28741
|
# @!attribute [rw] source_region
|
|
28589
28742
|
# The source region of the snapshot. This is only needed when the
|
|
28590
28743
|
# shapshot is encrypted and in a different region.
|
|
@@ -28597,6 +28750,7 @@ module Aws::RDS
|
|
|
28597
28750
|
:backup_retention_period,
|
|
28598
28751
|
:kms_key_id,
|
|
28599
28752
|
:pre_signed_url,
|
|
28753
|
+
:tags,
|
|
28600
28754
|
:source_region)
|
|
28601
28755
|
SENSITIVE = [:pre_signed_url]
|
|
28602
28756
|
include Aws::Structure
|
|
@@ -29290,6 +29444,42 @@ module Aws::RDS
|
|
|
29290
29444
|
include Aws::Structure
|
|
29291
29445
|
end
|
|
29292
29446
|
|
|
29447
|
+
# The tags to apply to resources when creating or modifying a DB
|
|
29448
|
+
# instance or DB cluster. When you specify a tag, you must specify the
|
|
29449
|
+
# resource type to tag, otherwise the request will fail.
|
|
29450
|
+
#
|
|
29451
|
+
# @!attribute [rw] resource_type
|
|
29452
|
+
# The type of resource to tag on creation.
|
|
29453
|
+
#
|
|
29454
|
+
# Valid Values:
|
|
29455
|
+
#
|
|
29456
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
29457
|
+
#
|
|
29458
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
29459
|
+
# @return [String]
|
|
29460
|
+
#
|
|
29461
|
+
# @!attribute [rw] tags
|
|
29462
|
+
# A list of tags.
|
|
29463
|
+
#
|
|
29464
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
|
29465
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
|
29466
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
|
29467
|
+
#
|
|
29468
|
+
#
|
|
29469
|
+
#
|
|
29470
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
|
29471
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
29472
|
+
# @return [Array<Types::Tag>]
|
|
29473
|
+
#
|
|
29474
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/TagSpecification AWS API Documentation
|
|
29475
|
+
#
|
|
29476
|
+
class TagSpecification < Struct.new(
|
|
29477
|
+
:resource_type,
|
|
29478
|
+
:tags)
|
|
29479
|
+
SENSITIVE = []
|
|
29480
|
+
include Aws::Structure
|
|
29481
|
+
end
|
|
29482
|
+
|
|
29293
29483
|
# Information about the connection health of an RDS Proxy target.
|
|
29294
29484
|
#
|
|
29295
29485
|
# @!attribute [rw] state
|
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.302.0'
|
|
84
84
|
|
|
85
85
|
end
|
|
86
86
|
|
data/sig/client.rbs
CHANGED
|
@@ -457,6 +457,17 @@ module Aws
|
|
|
457
457
|
?master_user_secret_kms_key_id: ::String,
|
|
458
458
|
?ca_certificate_identifier: ::String,
|
|
459
459
|
?engine_lifecycle_support: ::String,
|
|
460
|
+
?tag_specifications: Array[
|
|
461
|
+
{
|
|
462
|
+
resource_type: ::String?,
|
|
463
|
+
tags: Array[
|
|
464
|
+
{
|
|
465
|
+
key: ::String?,
|
|
466
|
+
value: ::String?
|
|
467
|
+
},
|
|
468
|
+
]?
|
|
469
|
+
},
|
|
470
|
+
],
|
|
460
471
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
461
472
|
?source_region: ::String
|
|
462
473
|
) -> _CreateDBClusterResponseSuccess
|
|
@@ -606,6 +617,17 @@ module Aws
|
|
|
606
617
|
?multi_tenant: bool,
|
|
607
618
|
?dedicated_log_volume: bool,
|
|
608
619
|
?engine_lifecycle_support: ::String,
|
|
620
|
+
?tag_specifications: Array[
|
|
621
|
+
{
|
|
622
|
+
resource_type: ::String?,
|
|
623
|
+
tags: Array[
|
|
624
|
+
{
|
|
625
|
+
key: ::String?,
|
|
626
|
+
value: ::String?
|
|
627
|
+
},
|
|
628
|
+
]?
|
|
629
|
+
},
|
|
630
|
+
],
|
|
609
631
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
610
632
|
?additional_storage_volumes: Array[
|
|
611
633
|
{
|
|
@@ -683,6 +705,17 @@ module Aws
|
|
|
683
705
|
?dedicated_log_volume: bool,
|
|
684
706
|
?upgrade_storage_config: bool,
|
|
685
707
|
?ca_certificate_identifier: ::String,
|
|
708
|
+
?tag_specifications: Array[
|
|
709
|
+
{
|
|
710
|
+
resource_type: ::String?,
|
|
711
|
+
tags: Array[
|
|
712
|
+
{
|
|
713
|
+
key: ::String?,
|
|
714
|
+
value: ::String?
|
|
715
|
+
},
|
|
716
|
+
]?
|
|
717
|
+
},
|
|
718
|
+
],
|
|
686
719
|
?additional_storage_volumes: Array[
|
|
687
720
|
{
|
|
688
721
|
volume_name: ::String,
|
|
@@ -2520,6 +2553,17 @@ module Aws
|
|
|
2520
2553
|
?multi_tenant: bool,
|
|
2521
2554
|
?dedicated_log_volume: bool,
|
|
2522
2555
|
?engine: ::String,
|
|
2556
|
+
?tag_specifications: Array[
|
|
2557
|
+
{
|
|
2558
|
+
resource_type: ::String?,
|
|
2559
|
+
tags: Array[
|
|
2560
|
+
{
|
|
2561
|
+
key: ::String?,
|
|
2562
|
+
value: ::String?
|
|
2563
|
+
},
|
|
2564
|
+
]?
|
|
2565
|
+
},
|
|
2566
|
+
],
|
|
2523
2567
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
2524
2568
|
?additional_storage_volumes: Array[
|
|
2525
2569
|
{
|
|
@@ -2806,7 +2850,18 @@ module Aws
|
|
|
2806
2850
|
def promote_read_replica: (
|
|
2807
2851
|
db_instance_identifier: ::String,
|
|
2808
2852
|
?backup_retention_period: ::Integer,
|
|
2809
|
-
?preferred_backup_window: ::String
|
|
2853
|
+
?preferred_backup_window: ::String,
|
|
2854
|
+
?tag_specifications: Array[
|
|
2855
|
+
{
|
|
2856
|
+
resource_type: ::String?,
|
|
2857
|
+
tags: Array[
|
|
2858
|
+
{
|
|
2859
|
+
key: ::String?,
|
|
2860
|
+
value: ::String?
|
|
2861
|
+
},
|
|
2862
|
+
]?
|
|
2863
|
+
},
|
|
2864
|
+
]
|
|
2810
2865
|
) -> _PromoteReadReplicaResponseSuccess
|
|
2811
2866
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PromoteReadReplicaResponseSuccess
|
|
2812
2867
|
|
|
@@ -3040,7 +3095,18 @@ module Aws
|
|
|
3040
3095
|
},
|
|
3041
3096
|
?manage_master_user_password: bool,
|
|
3042
3097
|
?master_user_secret_kms_key_id: ::String,
|
|
3043
|
-
?engine_lifecycle_support: ::String
|
|
3098
|
+
?engine_lifecycle_support: ::String,
|
|
3099
|
+
?tag_specifications: Array[
|
|
3100
|
+
{
|
|
3101
|
+
resource_type: ::String?,
|
|
3102
|
+
tags: Array[
|
|
3103
|
+
{
|
|
3104
|
+
key: ::String?,
|
|
3105
|
+
value: ::String?
|
|
3106
|
+
},
|
|
3107
|
+
]?
|
|
3108
|
+
},
|
|
3109
|
+
]
|
|
3044
3110
|
) -> _RestoreDBClusterFromS3ResponseSuccess
|
|
3045
3111
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromS3ResponseSuccess
|
|
3046
3112
|
|
|
@@ -3104,7 +3170,18 @@ module Aws
|
|
|
3104
3170
|
?enable_performance_insights: bool,
|
|
3105
3171
|
?performance_insights_kms_key_id: ::String,
|
|
3106
3172
|
?performance_insights_retention_period: ::Integer,
|
|
3107
|
-
?engine_lifecycle_support: ::String
|
|
3173
|
+
?engine_lifecycle_support: ::String,
|
|
3174
|
+
?tag_specifications: Array[
|
|
3175
|
+
{
|
|
3176
|
+
resource_type: ::String?,
|
|
3177
|
+
tags: Array[
|
|
3178
|
+
{
|
|
3179
|
+
key: ::String?,
|
|
3180
|
+
value: ::String?
|
|
3181
|
+
},
|
|
3182
|
+
]?
|
|
3183
|
+
},
|
|
3184
|
+
]
|
|
3108
3185
|
) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
|
3109
3186
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
|
3110
3187
|
|
|
@@ -3168,7 +3245,18 @@ module Aws
|
|
|
3168
3245
|
?enable_performance_insights: bool,
|
|
3169
3246
|
?performance_insights_kms_key_id: ::String,
|
|
3170
3247
|
?performance_insights_retention_period: ::Integer,
|
|
3171
|
-
?engine_lifecycle_support: ::String
|
|
3248
|
+
?engine_lifecycle_support: ::String,
|
|
3249
|
+
?tag_specifications: Array[
|
|
3250
|
+
{
|
|
3251
|
+
resource_type: ::String?,
|
|
3252
|
+
tags: Array[
|
|
3253
|
+
{
|
|
3254
|
+
key: ::String?,
|
|
3255
|
+
value: ::String?
|
|
3256
|
+
},
|
|
3257
|
+
]?
|
|
3258
|
+
},
|
|
3259
|
+
]
|
|
3172
3260
|
) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
|
3173
3261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
|
3174
3262
|
|
|
@@ -3230,6 +3318,17 @@ module Aws
|
|
|
3230
3318
|
?dedicated_log_volume: bool,
|
|
3231
3319
|
?ca_certificate_identifier: ::String,
|
|
3232
3320
|
?engine_lifecycle_support: ::String,
|
|
3321
|
+
?tag_specifications: Array[
|
|
3322
|
+
{
|
|
3323
|
+
resource_type: ::String?,
|
|
3324
|
+
tags: Array[
|
|
3325
|
+
{
|
|
3326
|
+
key: ::String?,
|
|
3327
|
+
value: ::String?
|
|
3328
|
+
},
|
|
3329
|
+
]?
|
|
3330
|
+
},
|
|
3331
|
+
],
|
|
3233
3332
|
?manage_master_user_password: bool,
|
|
3234
3333
|
?master_user_secret_kms_key_id: ::String,
|
|
3235
3334
|
?additional_storage_volumes: Array[
|
|
@@ -3313,6 +3412,17 @@ module Aws
|
|
|
3313
3412
|
?dedicated_log_volume: bool,
|
|
3314
3413
|
?ca_certificate_identifier: ::String,
|
|
3315
3414
|
?engine_lifecycle_support: ::String,
|
|
3415
|
+
?tag_specifications: Array[
|
|
3416
|
+
{
|
|
3417
|
+
resource_type: ::String?,
|
|
3418
|
+
tags: Array[
|
|
3419
|
+
{
|
|
3420
|
+
key: ::String?,
|
|
3421
|
+
value: ::String?
|
|
3422
|
+
},
|
|
3423
|
+
]?
|
|
3424
|
+
},
|
|
3425
|
+
],
|
|
3316
3426
|
?additional_storage_volumes: Array[
|
|
3317
3427
|
{
|
|
3318
3428
|
volume_name: ::String,
|
|
@@ -3388,6 +3498,17 @@ module Aws
|
|
|
3388
3498
|
?dedicated_log_volume: bool,
|
|
3389
3499
|
?ca_certificate_identifier: ::String,
|
|
3390
3500
|
?engine_lifecycle_support: ::String,
|
|
3501
|
+
?tag_specifications: Array[
|
|
3502
|
+
{
|
|
3503
|
+
resource_type: ::String?,
|
|
3504
|
+
tags: Array[
|
|
3505
|
+
{
|
|
3506
|
+
key: ::String?,
|
|
3507
|
+
value: ::String?
|
|
3508
|
+
},
|
|
3509
|
+
]?
|
|
3510
|
+
},
|
|
3511
|
+
],
|
|
3391
3512
|
?manage_master_user_password: bool,
|
|
3392
3513
|
?master_user_secret_kms_key_id: ::String,
|
|
3393
3514
|
?additional_storage_volumes: Array[
|
|
@@ -3466,6 +3587,12 @@ module Aws
|
|
|
3466
3587
|
?backup_retention_period: ::Integer,
|
|
3467
3588
|
?kms_key_id: ::String,
|
|
3468
3589
|
?pre_signed_url: ::String,
|
|
3590
|
+
?tags: Array[
|
|
3591
|
+
{
|
|
3592
|
+
key: ::String?,
|
|
3593
|
+
value: ::String?
|
|
3594
|
+
},
|
|
3595
|
+
],
|
|
3469
3596
|
?source_region: ::String
|
|
3470
3597
|
) -> _StartDBInstanceAutomatedBackupsReplicationResponseSuccess
|
|
3471
3598
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartDBInstanceAutomatedBackupsReplicationResponseSuccess
|
data/sig/db_cluster.rbs
CHANGED
|
@@ -360,6 +360,17 @@ module Aws
|
|
|
360
360
|
?master_user_secret_kms_key_id: ::String,
|
|
361
361
|
?ca_certificate_identifier: ::String,
|
|
362
362
|
?engine_lifecycle_support: ::String,
|
|
363
|
+
?tag_specifications: Array[
|
|
364
|
+
{
|
|
365
|
+
resource_type: ::String?,
|
|
366
|
+
tags: Array[
|
|
367
|
+
{
|
|
368
|
+
key: ::String?,
|
|
369
|
+
value: ::String?
|
|
370
|
+
},
|
|
371
|
+
]?
|
|
372
|
+
},
|
|
373
|
+
],
|
|
363
374
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
364
375
|
?source_region: ::String
|
|
365
376
|
) -> DBCluster
|
|
@@ -511,7 +522,18 @@ module Aws
|
|
|
511
522
|
?enable_performance_insights: bool,
|
|
512
523
|
?performance_insights_kms_key_id: ::String,
|
|
513
524
|
?performance_insights_retention_period: ::Integer,
|
|
514
|
-
?engine_lifecycle_support: ::String
|
|
525
|
+
?engine_lifecycle_support: ::String,
|
|
526
|
+
?tag_specifications: Array[
|
|
527
|
+
{
|
|
528
|
+
resource_type: ::String?,
|
|
529
|
+
tags: Array[
|
|
530
|
+
{
|
|
531
|
+
key: ::String?,
|
|
532
|
+
value: ::String?
|
|
533
|
+
},
|
|
534
|
+
]?
|
|
535
|
+
},
|
|
536
|
+
]
|
|
515
537
|
) -> DBCluster
|
|
516
538
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
|
517
539
|
|
data/sig/db_cluster_snapshot.rbs
CHANGED
|
@@ -194,7 +194,18 @@ module Aws
|
|
|
194
194
|
?enable_performance_insights: bool,
|
|
195
195
|
?performance_insights_kms_key_id: ::String,
|
|
196
196
|
?performance_insights_retention_period: ::Integer,
|
|
197
|
-
?engine_lifecycle_support: ::String
|
|
197
|
+
?engine_lifecycle_support: ::String,
|
|
198
|
+
?tag_specifications: Array[
|
|
199
|
+
{
|
|
200
|
+
resource_type: ::String?,
|
|
201
|
+
tags: Array[
|
|
202
|
+
{
|
|
203
|
+
key: ::String?,
|
|
204
|
+
value: ::String?
|
|
205
|
+
},
|
|
206
|
+
]?
|
|
207
|
+
},
|
|
208
|
+
]
|
|
198
209
|
) -> DBCluster
|
|
199
210
|
| (?Hash[Symbol, untyped]) -> DBCluster
|
|
200
211
|
|