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
|
@@ -1007,6 +1007,17 @@ module Aws::RDS
|
|
|
1007
1007
|
# master_user_secret_kms_key_id: "String",
|
|
1008
1008
|
# ca_certificate_identifier: "String",
|
|
1009
1009
|
# engine_lifecycle_support: "String",
|
|
1010
|
+
# tag_specifications: [
|
|
1011
|
+
# {
|
|
1012
|
+
# resource_type: "String",
|
|
1013
|
+
# tags: [
|
|
1014
|
+
# {
|
|
1015
|
+
# key: "String",
|
|
1016
|
+
# value: "String",
|
|
1017
|
+
# },
|
|
1018
|
+
# ],
|
|
1019
|
+
# },
|
|
1020
|
+
# ],
|
|
1010
1021
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
1011
1022
|
# source_region: "String",
|
|
1012
1023
|
# })
|
|
@@ -1859,6 +1870,14 @@ module Aws::RDS
|
|
|
1859
1870
|
#
|
|
1860
1871
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
1861
1872
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
1873
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
1874
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
1875
|
+
#
|
|
1876
|
+
# Valid Values:
|
|
1877
|
+
#
|
|
1878
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
1879
|
+
#
|
|
1880
|
+
# ^
|
|
1862
1881
|
# @option options [String] :master_user_authentication_type
|
|
1863
1882
|
# Specifies the authentication type for the master user. With IAM master
|
|
1864
1883
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -2831,6 +2850,17 @@ module Aws::RDS
|
|
|
2831
2850
|
# performance_insights_kms_key_id: "String",
|
|
2832
2851
|
# performance_insights_retention_period: 1,
|
|
2833
2852
|
# engine_lifecycle_support: "String",
|
|
2853
|
+
# tag_specifications: [
|
|
2854
|
+
# {
|
|
2855
|
+
# resource_type: "String",
|
|
2856
|
+
# tags: [
|
|
2857
|
+
# {
|
|
2858
|
+
# key: "String",
|
|
2859
|
+
# value: "String",
|
|
2860
|
+
# },
|
|
2861
|
+
# ],
|
|
2862
|
+
# },
|
|
2863
|
+
# ],
|
|
2834
2864
|
# })
|
|
2835
2865
|
# @param [Hash] options ({})
|
|
2836
2866
|
# @option options [required, String] :db_cluster_identifier
|
|
@@ -3283,6 +3313,14 @@ module Aws::RDS
|
|
|
3283
3313
|
#
|
|
3284
3314
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
3285
3315
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3316
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
3317
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
3318
|
+
#
|
|
3319
|
+
# Valid Values:
|
|
3320
|
+
#
|
|
3321
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
3322
|
+
#
|
|
3323
|
+
# ^
|
|
3286
3324
|
# @return [DBCluster]
|
|
3287
3325
|
def restore(options = {})
|
|
3288
3326
|
options = options.merge(source_db_cluster_identifier: @id)
|
|
@@ -606,6 +606,17 @@ module Aws::RDS
|
|
|
606
606
|
# performance_insights_kms_key_id: "String",
|
|
607
607
|
# performance_insights_retention_period: 1,
|
|
608
608
|
# engine_lifecycle_support: "String",
|
|
609
|
+
# tag_specifications: [
|
|
610
|
+
# {
|
|
611
|
+
# resource_type: "String",
|
|
612
|
+
# tags: [
|
|
613
|
+
# {
|
|
614
|
+
# key: "String",
|
|
615
|
+
# value: "String",
|
|
616
|
+
# },
|
|
617
|
+
# ],
|
|
618
|
+
# },
|
|
619
|
+
# ],
|
|
609
620
|
# })
|
|
610
621
|
# @param [Hash] options ({})
|
|
611
622
|
# @option options [Array<String>] :availability_zones
|
|
@@ -1074,6 +1085,14 @@ module Aws::RDS
|
|
|
1074
1085
|
#
|
|
1075
1086
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
1076
1087
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
1088
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
1089
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
1090
|
+
#
|
|
1091
|
+
# Valid Values:
|
|
1092
|
+
#
|
|
1093
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
1094
|
+
#
|
|
1095
|
+
# ^
|
|
1077
1096
|
# @return [DBCluster]
|
|
1078
1097
|
def restore(options = {})
|
|
1079
1098
|
options = options.merge(snapshot_identifier: @snapshot_id)
|
|
@@ -1060,6 +1060,17 @@ module Aws::RDS
|
|
|
1060
1060
|
# multi_tenant: false,
|
|
1061
1061
|
# dedicated_log_volume: false,
|
|
1062
1062
|
# engine_lifecycle_support: "String",
|
|
1063
|
+
# tag_specifications: [
|
|
1064
|
+
# {
|
|
1065
|
+
# resource_type: "String",
|
|
1066
|
+
# tags: [
|
|
1067
|
+
# {
|
|
1068
|
+
# key: "String",
|
|
1069
|
+
# value: "String",
|
|
1070
|
+
# },
|
|
1071
|
+
# ],
|
|
1072
|
+
# },
|
|
1073
|
+
# ],
|
|
1063
1074
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
1064
1075
|
# additional_storage_volumes: [
|
|
1065
1076
|
# {
|
|
@@ -2302,6 +2313,14 @@ module Aws::RDS
|
|
|
2302
2313
|
#
|
|
2303
2314
|
#
|
|
2304
2315
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
2316
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
2317
|
+
# Tags to assign to resources associated with the DB instance.
|
|
2318
|
+
#
|
|
2319
|
+
# Valid Values:
|
|
2320
|
+
#
|
|
2321
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
2322
|
+
#
|
|
2323
|
+
# ^
|
|
2305
2324
|
# @option options [String] :master_user_authentication_type
|
|
2306
2325
|
# Specifies the authentication type for the master user. With IAM master
|
|
2307
2326
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -2393,6 +2412,17 @@ module Aws::RDS
|
|
|
2393
2412
|
# dedicated_log_volume: false,
|
|
2394
2413
|
# upgrade_storage_config: false,
|
|
2395
2414
|
# ca_certificate_identifier: "String",
|
|
2415
|
+
# tag_specifications: [
|
|
2416
|
+
# {
|
|
2417
|
+
# resource_type: "String",
|
|
2418
|
+
# tags: [
|
|
2419
|
+
# {
|
|
2420
|
+
# key: "String",
|
|
2421
|
+
# value: "String",
|
|
2422
|
+
# },
|
|
2423
|
+
# ],
|
|
2424
|
+
# },
|
|
2425
|
+
# ],
|
|
2396
2426
|
# additional_storage_volumes: [
|
|
2397
2427
|
# {
|
|
2398
2428
|
# volume_name: "String", # required
|
|
@@ -3038,6 +3068,14 @@ module Aws::RDS
|
|
|
3038
3068
|
#
|
|
3039
3069
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
3040
3070
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
3071
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
3072
|
+
# Tags to assign to resources associated with the DB instance.
|
|
3073
|
+
#
|
|
3074
|
+
# Valid Values:
|
|
3075
|
+
#
|
|
3076
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
3077
|
+
#
|
|
3078
|
+
# ^
|
|
3041
3079
|
# @option options [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
3042
3080
|
# A list of additional storage volumes to create for the DB instance.
|
|
3043
3081
|
# You can create up to three additional storage volumes using the names
|
|
@@ -3248,6 +3286,17 @@ module Aws::RDS
|
|
|
3248
3286
|
# multi_tenant: false,
|
|
3249
3287
|
# dedicated_log_volume: false,
|
|
3250
3288
|
# engine: "String",
|
|
3289
|
+
# tag_specifications: [
|
|
3290
|
+
# {
|
|
3291
|
+
# resource_type: "String",
|
|
3292
|
+
# tags: [
|
|
3293
|
+
# {
|
|
3294
|
+
# key: "String",
|
|
3295
|
+
# value: "String",
|
|
3296
|
+
# },
|
|
3297
|
+
# ],
|
|
3298
|
+
# },
|
|
3299
|
+
# ],
|
|
3251
3300
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
3252
3301
|
# additional_storage_volumes: [
|
|
3253
3302
|
# {
|
|
@@ -4346,6 +4395,14 @@ module Aws::RDS
|
|
|
4346
4395
|
# parameter group. To avoid reverting to the default, specify a new
|
|
4347
4396
|
# parameter group with `--db-parameter-group-name` and a new option
|
|
4348
4397
|
# group with `--option-group-name`.
|
|
4398
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
4399
|
+
# Tags to assign to resources associated with the DB instance.
|
|
4400
|
+
#
|
|
4401
|
+
# Valid Values:
|
|
4402
|
+
#
|
|
4403
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
4404
|
+
#
|
|
4405
|
+
# ^
|
|
4349
4406
|
# @option options [String] :master_user_authentication_type
|
|
4350
4407
|
# Specifies the authentication type for the master user. With IAM master
|
|
4351
4408
|
# user authentication, you can change the master DB user to use IAM
|
|
@@ -4382,6 +4439,17 @@ module Aws::RDS
|
|
|
4382
4439
|
# dbinstance = db_instance.promote({
|
|
4383
4440
|
# backup_retention_period: 1,
|
|
4384
4441
|
# preferred_backup_window: "String",
|
|
4442
|
+
# tag_specifications: [
|
|
4443
|
+
# {
|
|
4444
|
+
# resource_type: "String",
|
|
4445
|
+
# tags: [
|
|
4446
|
+
# {
|
|
4447
|
+
# key: "String",
|
|
4448
|
+
# value: "String",
|
|
4449
|
+
# },
|
|
4450
|
+
# ],
|
|
4451
|
+
# },
|
|
4452
|
+
# ],
|
|
4385
4453
|
# })
|
|
4386
4454
|
# @param [Hash] options ({})
|
|
4387
4455
|
# @option options [Integer] :backup_retention_period
|
|
@@ -4419,6 +4487,14 @@ module Aws::RDS
|
|
|
4419
4487
|
#
|
|
4420
4488
|
#
|
|
4421
4489
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
|
4490
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
4491
|
+
# Tags to assign to resources associated with the DB instance.
|
|
4492
|
+
#
|
|
4493
|
+
# Valid Values:
|
|
4494
|
+
#
|
|
4495
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
4496
|
+
#
|
|
4497
|
+
# ^
|
|
4422
4498
|
# @return [DBInstance]
|
|
4423
4499
|
def promote(options = {})
|
|
4424
4500
|
options = options.merge(db_instance_identifier: @id)
|
|
@@ -4514,6 +4590,17 @@ module Aws::RDS
|
|
|
4514
4590
|
# dedicated_log_volume: false,
|
|
4515
4591
|
# ca_certificate_identifier: "String",
|
|
4516
4592
|
# engine_lifecycle_support: "String",
|
|
4593
|
+
# tag_specifications: [
|
|
4594
|
+
# {
|
|
4595
|
+
# resource_type: "String",
|
|
4596
|
+
# tags: [
|
|
4597
|
+
# {
|
|
4598
|
+
# key: "String",
|
|
4599
|
+
# value: "String",
|
|
4600
|
+
# },
|
|
4601
|
+
# ],
|
|
4602
|
+
# },
|
|
4603
|
+
# ],
|
|
4517
4604
|
# manage_master_user_password: false,
|
|
4518
4605
|
# master_user_secret_kms_key_id: "String",
|
|
4519
4606
|
# additional_storage_volumes: [
|
|
@@ -5088,6 +5175,14 @@ module Aws::RDS
|
|
|
5088
5175
|
#
|
|
5089
5176
|
#
|
|
5090
5177
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
5178
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
5179
|
+
# Tags to assign to resources associated with the DB instance.
|
|
5180
|
+
#
|
|
5181
|
+
# Valid Values:
|
|
5182
|
+
#
|
|
5183
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
5184
|
+
#
|
|
5185
|
+
# ^
|
|
5091
5186
|
# @option options [Boolean] :manage_master_user_password
|
|
5092
5187
|
# Specifies whether to manage the master user password with Amazon Web
|
|
5093
5188
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -752,6 +752,17 @@ module Aws::RDS
|
|
|
752
752
|
# dedicated_log_volume: false,
|
|
753
753
|
# ca_certificate_identifier: "String",
|
|
754
754
|
# engine_lifecycle_support: "String",
|
|
755
|
+
# tag_specifications: [
|
|
756
|
+
# {
|
|
757
|
+
# resource_type: "String",
|
|
758
|
+
# tags: [
|
|
759
|
+
# {
|
|
760
|
+
# key: "String",
|
|
761
|
+
# value: "String",
|
|
762
|
+
# },
|
|
763
|
+
# ],
|
|
764
|
+
# },
|
|
765
|
+
# ],
|
|
755
766
|
# manage_master_user_password: false,
|
|
756
767
|
# master_user_secret_kms_key_id: "String",
|
|
757
768
|
# additional_storage_volumes: [
|
|
@@ -1299,6 +1310,14 @@ module Aws::RDS
|
|
|
1299
1310
|
#
|
|
1300
1311
|
#
|
|
1301
1312
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
1313
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
1314
|
+
# Tags to assign to resources associated with the DB instance.
|
|
1315
|
+
#
|
|
1316
|
+
# Valid Values:
|
|
1317
|
+
#
|
|
1318
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
1319
|
+
#
|
|
1320
|
+
# ^
|
|
1302
1321
|
# @option options [Boolean] :manage_master_user_password
|
|
1303
1322
|
# Specifies whether to manage the master user password with Amazon Web
|
|
1304
1323
|
# Services Secrets Manager in the restored DB instance.
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -114,6 +114,17 @@ module Aws::RDS
|
|
|
114
114
|
# master_user_secret_kms_key_id: "String",
|
|
115
115
|
# ca_certificate_identifier: "String",
|
|
116
116
|
# engine_lifecycle_support: "String",
|
|
117
|
+
# tag_specifications: [
|
|
118
|
+
# {
|
|
119
|
+
# resource_type: "String",
|
|
120
|
+
# tags: [
|
|
121
|
+
# {
|
|
122
|
+
# key: "String",
|
|
123
|
+
# value: "String",
|
|
124
|
+
# },
|
|
125
|
+
# ],
|
|
126
|
+
# },
|
|
127
|
+
# ],
|
|
117
128
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
118
129
|
# source_region: "String",
|
|
119
130
|
# })
|
|
@@ -982,6 +993,14 @@ module Aws::RDS
|
|
|
982
993
|
#
|
|
983
994
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
984
995
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
996
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
997
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
998
|
+
#
|
|
999
|
+
# Valid Values:
|
|
1000
|
+
#
|
|
1001
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
1002
|
+
#
|
|
1003
|
+
# ^
|
|
985
1004
|
# @option options [String] :master_user_authentication_type
|
|
986
1005
|
# Specifies the authentication type for the master user. With IAM master
|
|
987
1006
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -1180,6 +1199,17 @@ module Aws::RDS
|
|
|
1180
1199
|
# multi_tenant: false,
|
|
1181
1200
|
# dedicated_log_volume: false,
|
|
1182
1201
|
# engine_lifecycle_support: "String",
|
|
1202
|
+
# tag_specifications: [
|
|
1203
|
+
# {
|
|
1204
|
+
# resource_type: "String",
|
|
1205
|
+
# tags: [
|
|
1206
|
+
# {
|
|
1207
|
+
# key: "String",
|
|
1208
|
+
# value: "String",
|
|
1209
|
+
# },
|
|
1210
|
+
# ],
|
|
1211
|
+
# },
|
|
1212
|
+
# ],
|
|
1183
1213
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
1184
1214
|
# additional_storage_volumes: [
|
|
1185
1215
|
# {
|
|
@@ -2435,6 +2465,14 @@ module Aws::RDS
|
|
|
2435
2465
|
#
|
|
2436
2466
|
#
|
|
2437
2467
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
2468
|
+
# @option options [Array<Types::TagSpecification>] :tag_specifications
|
|
2469
|
+
# Tags to assign to resources associated with the DB instance.
|
|
2470
|
+
#
|
|
2471
|
+
# Valid Values:
|
|
2472
|
+
#
|
|
2473
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
2474
|
+
#
|
|
2475
|
+
# ^
|
|
2438
2476
|
# @option options [String] :master_user_authentication_type
|
|
2439
2477
|
# Specifies the authentication type for the master user. With IAM master
|
|
2440
2478
|
# user authentication, you can configure the master DB user with IAM
|