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/sig/db_instance.rbs
CHANGED
|
@@ -373,6 +373,17 @@ module Aws
|
|
|
373
373
|
?multi_tenant: bool,
|
|
374
374
|
?dedicated_log_volume: bool,
|
|
375
375
|
?engine_lifecycle_support: ::String,
|
|
376
|
+
?tag_specifications: Array[
|
|
377
|
+
{
|
|
378
|
+
resource_type: ::String?,
|
|
379
|
+
tags: Array[
|
|
380
|
+
{
|
|
381
|
+
key: ::String?,
|
|
382
|
+
value: ::String?
|
|
383
|
+
},
|
|
384
|
+
]?
|
|
385
|
+
},
|
|
386
|
+
],
|
|
376
387
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
377
388
|
?additional_storage_volumes: Array[
|
|
378
389
|
{
|
|
@@ -445,6 +456,17 @@ module Aws
|
|
|
445
456
|
?dedicated_log_volume: bool,
|
|
446
457
|
?upgrade_storage_config: bool,
|
|
447
458
|
?ca_certificate_identifier: ::String,
|
|
459
|
+
?tag_specifications: Array[
|
|
460
|
+
{
|
|
461
|
+
resource_type: ::String?,
|
|
462
|
+
tags: Array[
|
|
463
|
+
{
|
|
464
|
+
key: ::String?,
|
|
465
|
+
value: ::String?
|
|
466
|
+
},
|
|
467
|
+
]?
|
|
468
|
+
},
|
|
469
|
+
],
|
|
448
470
|
?additional_storage_volumes: Array[
|
|
449
471
|
{
|
|
450
472
|
volume_name: ::String,
|
|
@@ -549,6 +571,17 @@ module Aws
|
|
|
549
571
|
?multi_tenant: bool,
|
|
550
572
|
?dedicated_log_volume: bool,
|
|
551
573
|
?engine: ::String,
|
|
574
|
+
?tag_specifications: Array[
|
|
575
|
+
{
|
|
576
|
+
resource_type: ::String?,
|
|
577
|
+
tags: Array[
|
|
578
|
+
{
|
|
579
|
+
key: ::String?,
|
|
580
|
+
value: ::String?
|
|
581
|
+
},
|
|
582
|
+
]?
|
|
583
|
+
},
|
|
584
|
+
],
|
|
552
585
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
553
586
|
?additional_storage_volumes: Array[
|
|
554
587
|
{
|
|
@@ -567,7 +600,18 @@ module Aws
|
|
|
567
600
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#promote-instance_method
|
|
568
601
|
def promote: (
|
|
569
602
|
?backup_retention_period: ::Integer,
|
|
570
|
-
?preferred_backup_window: ::String
|
|
603
|
+
?preferred_backup_window: ::String,
|
|
604
|
+
?tag_specifications: Array[
|
|
605
|
+
{
|
|
606
|
+
resource_type: ::String?,
|
|
607
|
+
tags: Array[
|
|
608
|
+
{
|
|
609
|
+
key: ::String?,
|
|
610
|
+
value: ::String?
|
|
611
|
+
},
|
|
612
|
+
]?
|
|
613
|
+
},
|
|
614
|
+
]
|
|
571
615
|
) -> DBInstance
|
|
572
616
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
573
617
|
|
|
@@ -634,6 +678,17 @@ module Aws
|
|
|
634
678
|
?dedicated_log_volume: bool,
|
|
635
679
|
?ca_certificate_identifier: ::String,
|
|
636
680
|
?engine_lifecycle_support: ::String,
|
|
681
|
+
?tag_specifications: Array[
|
|
682
|
+
{
|
|
683
|
+
resource_type: ::String?,
|
|
684
|
+
tags: Array[
|
|
685
|
+
{
|
|
686
|
+
key: ::String?,
|
|
687
|
+
value: ::String?
|
|
688
|
+
},
|
|
689
|
+
]?
|
|
690
|
+
},
|
|
691
|
+
],
|
|
637
692
|
?manage_master_user_password: bool,
|
|
638
693
|
?master_user_secret_kms_key_id: ::String,
|
|
639
694
|
?additional_storage_volumes: Array[
|
data/sig/db_snapshot.rbs
CHANGED
|
@@ -233,6 +233,17 @@ module Aws
|
|
|
233
233
|
?dedicated_log_volume: bool,
|
|
234
234
|
?ca_certificate_identifier: ::String,
|
|
235
235
|
?engine_lifecycle_support: ::String,
|
|
236
|
+
?tag_specifications: Array[
|
|
237
|
+
{
|
|
238
|
+
resource_type: ::String?,
|
|
239
|
+
tags: Array[
|
|
240
|
+
{
|
|
241
|
+
key: ::String?,
|
|
242
|
+
value: ::String?
|
|
243
|
+
},
|
|
244
|
+
]?
|
|
245
|
+
},
|
|
246
|
+
],
|
|
236
247
|
?manage_master_user_password: bool,
|
|
237
248
|
?master_user_secret_kms_key_id: ::String,
|
|
238
249
|
?additional_storage_volumes: Array[
|
data/sig/resource.rbs
CHANGED
|
@@ -158,6 +158,17 @@ module Aws
|
|
|
158
158
|
?master_user_secret_kms_key_id: ::String,
|
|
159
159
|
?ca_certificate_identifier: ::String,
|
|
160
160
|
?engine_lifecycle_support: ::String,
|
|
161
|
+
?tag_specifications: Array[
|
|
162
|
+
{
|
|
163
|
+
resource_type: ::String?,
|
|
164
|
+
tags: Array[
|
|
165
|
+
{
|
|
166
|
+
key: ::String?,
|
|
167
|
+
value: ::String?
|
|
168
|
+
},
|
|
169
|
+
]?
|
|
170
|
+
},
|
|
171
|
+
],
|
|
161
172
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
162
173
|
?source_region: ::String
|
|
163
174
|
) -> DBCluster
|
|
@@ -253,6 +264,17 @@ module Aws
|
|
|
253
264
|
?multi_tenant: bool,
|
|
254
265
|
?dedicated_log_volume: bool,
|
|
255
266
|
?engine_lifecycle_support: ::String,
|
|
267
|
+
?tag_specifications: Array[
|
|
268
|
+
{
|
|
269
|
+
resource_type: ::String?,
|
|
270
|
+
tags: Array[
|
|
271
|
+
{
|
|
272
|
+
key: ::String?,
|
|
273
|
+
value: ::String?
|
|
274
|
+
},
|
|
275
|
+
]?
|
|
276
|
+
},
|
|
277
|
+
],
|
|
256
278
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
257
279
|
?additional_storage_volumes: Array[
|
|
258
280
|
{
|
data/sig/types.rbs
CHANGED
|
@@ -440,6 +440,7 @@ module Aws::RDS
|
|
|
440
440
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
441
441
|
attr_accessor ca_certificate_identifier: ::String
|
|
442
442
|
attr_accessor engine_lifecycle_support: ::String
|
|
443
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
443
444
|
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
444
445
|
attr_accessor source_region: ::String
|
|
445
446
|
SENSITIVE: [:master_user_password, :pre_signed_url]
|
|
@@ -540,6 +541,7 @@ module Aws::RDS
|
|
|
540
541
|
attr_accessor multi_tenant: bool
|
|
541
542
|
attr_accessor dedicated_log_volume: bool
|
|
542
543
|
attr_accessor engine_lifecycle_support: ::String
|
|
544
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
543
545
|
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
544
546
|
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
545
547
|
SENSITIVE: [:master_user_password, :tde_credential_password]
|
|
@@ -593,6 +595,7 @@ module Aws::RDS
|
|
|
593
595
|
attr_accessor dedicated_log_volume: bool
|
|
594
596
|
attr_accessor upgrade_storage_config: bool
|
|
595
597
|
attr_accessor ca_certificate_identifier: ::String
|
|
598
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
596
599
|
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
597
600
|
attr_accessor source_region: ::String
|
|
598
601
|
SENSITIVE: [:pre_signed_url]
|
|
@@ -921,6 +924,7 @@ module Aws::RDS
|
|
|
921
924
|
attr_accessor iops: ::Integer
|
|
922
925
|
attr_accessor storage_throughput: ::Integer
|
|
923
926
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
927
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
|
924
928
|
SENSITIVE: []
|
|
925
929
|
end
|
|
926
930
|
|
|
@@ -1300,6 +1304,7 @@ module Aws::RDS
|
|
|
1300
1304
|
attr_accessor backup_target: ::String
|
|
1301
1305
|
attr_accessor multi_tenant: bool
|
|
1302
1306
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
1307
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
|
1303
1308
|
attr_accessor dedicated_log_volume: bool
|
|
1304
1309
|
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
1305
1310
|
SENSITIVE: []
|
|
@@ -3062,6 +3067,7 @@ module Aws::RDS
|
|
|
3062
3067
|
attr_accessor multi_tenant: bool
|
|
3063
3068
|
attr_accessor dedicated_log_volume: bool
|
|
3064
3069
|
attr_accessor engine: ::String
|
|
3070
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3065
3071
|
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
3066
3072
|
attr_accessor additional_storage_volumes: ::Array[Types::ModifyAdditionalStorageVolume]
|
|
3067
3073
|
SENSITIVE: [:master_user_password, :tde_credential_password]
|
|
@@ -3521,6 +3527,7 @@ module Aws::RDS
|
|
|
3521
3527
|
attr_accessor db_instance_identifier: ::String
|
|
3522
3528
|
attr_accessor backup_retention_period: ::Integer
|
|
3523
3529
|
attr_accessor preferred_backup_window: ::String
|
|
3530
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3524
3531
|
SENSITIVE: []
|
|
3525
3532
|
end
|
|
3526
3533
|
|
|
@@ -3795,6 +3802,7 @@ module Aws::RDS
|
|
|
3795
3802
|
attr_accessor manage_master_user_password: bool
|
|
3796
3803
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3797
3804
|
attr_accessor engine_lifecycle_support: ::String
|
|
3805
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3798
3806
|
SENSITIVE: [:master_user_password]
|
|
3799
3807
|
end
|
|
3800
3808
|
|
|
@@ -3839,6 +3847,7 @@ module Aws::RDS
|
|
|
3839
3847
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
3840
3848
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
3841
3849
|
attr_accessor engine_lifecycle_support: ::String
|
|
3850
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3842
3851
|
SENSITIVE: []
|
|
3843
3852
|
end
|
|
3844
3853
|
|
|
@@ -3883,6 +3892,7 @@ module Aws::RDS
|
|
|
3883
3892
|
attr_accessor performance_insights_kms_key_id: ::String
|
|
3884
3893
|
attr_accessor performance_insights_retention_period: ::Integer
|
|
3885
3894
|
attr_accessor engine_lifecycle_support: ::String
|
|
3895
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3886
3896
|
SENSITIVE: []
|
|
3887
3897
|
end
|
|
3888
3898
|
|
|
@@ -3934,6 +3944,7 @@ module Aws::RDS
|
|
|
3934
3944
|
attr_accessor dedicated_log_volume: bool
|
|
3935
3945
|
attr_accessor ca_certificate_identifier: ::String
|
|
3936
3946
|
attr_accessor engine_lifecycle_support: ::String
|
|
3947
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3937
3948
|
attr_accessor manage_master_user_password: bool
|
|
3938
3949
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3939
3950
|
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
@@ -3998,6 +4009,7 @@ module Aws::RDS
|
|
|
3998
4009
|
attr_accessor dedicated_log_volume: bool
|
|
3999
4010
|
attr_accessor ca_certificate_identifier: ::String
|
|
4000
4011
|
attr_accessor engine_lifecycle_support: ::String
|
|
4012
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
4001
4013
|
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
4002
4014
|
SENSITIVE: [:master_user_password]
|
|
4003
4015
|
end
|
|
@@ -4054,6 +4066,7 @@ module Aws::RDS
|
|
|
4054
4066
|
attr_accessor dedicated_log_volume: bool
|
|
4055
4067
|
attr_accessor ca_certificate_identifier: ::String
|
|
4056
4068
|
attr_accessor engine_lifecycle_support: ::String
|
|
4069
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
4057
4070
|
attr_accessor manage_master_user_password: bool
|
|
4058
4071
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
4059
4072
|
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
@@ -4202,6 +4215,7 @@ module Aws::RDS
|
|
|
4202
4215
|
attr_accessor backup_retention_period: ::Integer
|
|
4203
4216
|
attr_accessor kms_key_id: ::String
|
|
4204
4217
|
attr_accessor pre_signed_url: ::String
|
|
4218
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
4205
4219
|
attr_accessor source_region: ::String
|
|
4206
4220
|
SENSITIVE: [:pre_signed_url]
|
|
4207
4221
|
end
|
|
@@ -4362,6 +4376,12 @@ module Aws::RDS
|
|
|
4362
4376
|
SENSITIVE: []
|
|
4363
4377
|
end
|
|
4364
4378
|
|
|
4379
|
+
class TagSpecification
|
|
4380
|
+
attr_accessor resource_type: ::String
|
|
4381
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
4382
|
+
SENSITIVE: []
|
|
4383
|
+
end
|
|
4384
|
+
|
|
4365
4385
|
class TargetHealth
|
|
4366
4386
|
attr_accessor state: ("REGISTERING" | "AVAILABLE" | "UNAVAILABLE" | "UNUSED")
|
|
4367
4387
|
attr_accessor reason: ("UNREACHABLE" | "CONNECTION_FAILED" | "AUTH_FAILURE" | "PENDING_PROXY_CAPACITY" | "INVALID_REPLICATION_STATE" | "PROMOTED")
|