aws-sdk-rds 1.300.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +740 -12
- data/lib/aws-sdk-rds/client_api.rb +108 -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_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +177 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +43 -0
- data/lib/aws-sdk-rds/resource.rb +56 -0
- data/lib/aws-sdk-rds/types.rb +689 -35
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +205 -10
- data/sig/db_cluster.rbs +23 -1
- data/sig/db_cluster_snapshot.rbs +12 -1
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +106 -4
- data/sig/db_snapshot.rbs +25 -1
- data/sig/resource.rbs +33 -1
- data/sig/types.rbs +97 -0
- metadata +1 -1
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
|
@@ -350,6 +350,8 @@ module Aws
|
|
|
350
350
|
def supports_local_write_forwarding: () -> bool
|
|
351
351
|
def supports_integrations: () -> bool
|
|
352
352
|
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
|
353
|
+
def database_installation_files: () -> ::Array[::String]
|
|
354
|
+
def failure_reason: () -> ::String
|
|
353
355
|
end
|
|
354
356
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#create_custom_db_engine_version-instance_method
|
|
355
357
|
def create_custom_db_engine_version: (
|
|
@@ -368,7 +370,8 @@ module Aws
|
|
|
368
370
|
key: ::String?,
|
|
369
371
|
value: ::String?
|
|
370
372
|
},
|
|
371
|
-
]
|
|
373
|
+
],
|
|
374
|
+
?database_installation_files: Array[::String]
|
|
372
375
|
) -> _CreateCustomDBEngineVersionResponseSuccess
|
|
373
376
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomDBEngineVersionResponseSuccess
|
|
374
377
|
|
|
@@ -454,6 +457,17 @@ module Aws
|
|
|
454
457
|
?master_user_secret_kms_key_id: ::String,
|
|
455
458
|
?ca_certificate_identifier: ::String,
|
|
456
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
|
+
],
|
|
457
471
|
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
458
472
|
?source_region: ::String
|
|
459
473
|
) -> _CreateDBClusterResponseSuccess
|
|
@@ -603,7 +617,28 @@ module Aws
|
|
|
603
617
|
?multi_tenant: bool,
|
|
604
618
|
?dedicated_log_volume: bool,
|
|
605
619
|
?engine_lifecycle_support: ::String,
|
|
606
|
-
?
|
|
620
|
+
?tag_specifications: Array[
|
|
621
|
+
{
|
|
622
|
+
resource_type: ::String?,
|
|
623
|
+
tags: Array[
|
|
624
|
+
{
|
|
625
|
+
key: ::String?,
|
|
626
|
+
value: ::String?
|
|
627
|
+
},
|
|
628
|
+
]?
|
|
629
|
+
},
|
|
630
|
+
],
|
|
631
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
632
|
+
?additional_storage_volumes: Array[
|
|
633
|
+
{
|
|
634
|
+
volume_name: ::String,
|
|
635
|
+
allocated_storage: ::Integer?,
|
|
636
|
+
iops: ::Integer?,
|
|
637
|
+
max_allocated_storage: ::Integer?,
|
|
638
|
+
storage_throughput: ::Integer?,
|
|
639
|
+
storage_type: ::String?
|
|
640
|
+
},
|
|
641
|
+
]
|
|
607
642
|
) -> _CreateDBInstanceResponseSuccess
|
|
608
643
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceResponseSuccess
|
|
609
644
|
|
|
@@ -670,6 +705,27 @@ module Aws
|
|
|
670
705
|
?dedicated_log_volume: bool,
|
|
671
706
|
?upgrade_storage_config: bool,
|
|
672
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
|
+
],
|
|
719
|
+
?additional_storage_volumes: Array[
|
|
720
|
+
{
|
|
721
|
+
volume_name: ::String,
|
|
722
|
+
allocated_storage: ::Integer?,
|
|
723
|
+
iops: ::Integer?,
|
|
724
|
+
max_allocated_storage: ::Integer?,
|
|
725
|
+
storage_throughput: ::Integer?,
|
|
726
|
+
storage_type: ::String?
|
|
727
|
+
},
|
|
728
|
+
],
|
|
673
729
|
?source_region: ::String
|
|
674
730
|
) -> _CreateDBInstanceReadReplicaResponseSuccess
|
|
675
731
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceReadReplicaResponseSuccess
|
|
@@ -999,6 +1055,8 @@ module Aws
|
|
|
999
1055
|
def supports_local_write_forwarding: () -> bool
|
|
1000
1056
|
def supports_integrations: () -> bool
|
|
1001
1057
|
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
|
1058
|
+
def database_installation_files: () -> ::Array[::String]
|
|
1059
|
+
def failure_reason: () -> ::String
|
|
1002
1060
|
end
|
|
1003
1061
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_custom_db_engine_version-instance_method
|
|
1004
1062
|
def delete_custom_db_engine_version: (
|
|
@@ -2278,6 +2336,8 @@ module Aws
|
|
|
2278
2336
|
def supports_local_write_forwarding: () -> bool
|
|
2279
2337
|
def supports_integrations: () -> bool
|
|
2280
2338
|
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
|
2339
|
+
def database_installation_files: () -> ::Array[::String]
|
|
2340
|
+
def failure_reason: () -> ::String
|
|
2281
2341
|
end
|
|
2282
2342
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_custom_db_engine_version-instance_method
|
|
2283
2343
|
def modify_custom_db_engine_version: (
|
|
@@ -2493,7 +2553,29 @@ module Aws
|
|
|
2493
2553
|
?multi_tenant: bool,
|
|
2494
2554
|
?dedicated_log_volume: bool,
|
|
2495
2555
|
?engine: ::String,
|
|
2496
|
-
?
|
|
2556
|
+
?tag_specifications: Array[
|
|
2557
|
+
{
|
|
2558
|
+
resource_type: ::String?,
|
|
2559
|
+
tags: Array[
|
|
2560
|
+
{
|
|
2561
|
+
key: ::String?,
|
|
2562
|
+
value: ::String?
|
|
2563
|
+
},
|
|
2564
|
+
]?
|
|
2565
|
+
},
|
|
2566
|
+
],
|
|
2567
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
2568
|
+
?additional_storage_volumes: Array[
|
|
2569
|
+
{
|
|
2570
|
+
volume_name: ::String,
|
|
2571
|
+
allocated_storage: ::Integer?,
|
|
2572
|
+
iops: ::Integer?,
|
|
2573
|
+
max_allocated_storage: ::Integer?,
|
|
2574
|
+
storage_throughput: ::Integer?,
|
|
2575
|
+
storage_type: ::String?,
|
|
2576
|
+
set_for_delete: bool?
|
|
2577
|
+
},
|
|
2578
|
+
]
|
|
2497
2579
|
) -> _ModifyDBInstanceResponseSuccess
|
|
2498
2580
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBInstanceResponseSuccess
|
|
2499
2581
|
|
|
@@ -2768,7 +2850,18 @@ module Aws
|
|
|
2768
2850
|
def promote_read_replica: (
|
|
2769
2851
|
db_instance_identifier: ::String,
|
|
2770
2852
|
?backup_retention_period: ::Integer,
|
|
2771
|
-
?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
|
+
]
|
|
2772
2865
|
) -> _PromoteReadReplicaResponseSuccess
|
|
2773
2866
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PromoteReadReplicaResponseSuccess
|
|
2774
2867
|
|
|
@@ -3002,7 +3095,18 @@ module Aws
|
|
|
3002
3095
|
},
|
|
3003
3096
|
?manage_master_user_password: bool,
|
|
3004
3097
|
?master_user_secret_kms_key_id: ::String,
|
|
3005
|
-
?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
|
+
]
|
|
3006
3110
|
) -> _RestoreDBClusterFromS3ResponseSuccess
|
|
3007
3111
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromS3ResponseSuccess
|
|
3008
3112
|
|
|
@@ -3066,7 +3170,18 @@ module Aws
|
|
|
3066
3170
|
?enable_performance_insights: bool,
|
|
3067
3171
|
?performance_insights_kms_key_id: ::String,
|
|
3068
3172
|
?performance_insights_retention_period: ::Integer,
|
|
3069
|
-
?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
|
+
]
|
|
3070
3185
|
) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
|
3071
3186
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterFromSnapshotResponseSuccess
|
|
3072
3187
|
|
|
@@ -3130,7 +3245,18 @@ module Aws
|
|
|
3130
3245
|
?enable_performance_insights: bool,
|
|
3131
3246
|
?performance_insights_kms_key_id: ::String,
|
|
3132
3247
|
?performance_insights_retention_period: ::Integer,
|
|
3133
|
-
?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
|
+
]
|
|
3134
3260
|
) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
|
3135
3261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBClusterToPointInTimeResponseSuccess
|
|
3136
3262
|
|
|
@@ -3192,8 +3318,29 @@ module Aws
|
|
|
3192
3318
|
?dedicated_log_volume: bool,
|
|
3193
3319
|
?ca_certificate_identifier: ::String,
|
|
3194
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
|
+
],
|
|
3195
3332
|
?manage_master_user_password: bool,
|
|
3196
|
-
?master_user_secret_kms_key_id: ::String
|
|
3333
|
+
?master_user_secret_kms_key_id: ::String,
|
|
3334
|
+
?additional_storage_volumes: Array[
|
|
3335
|
+
{
|
|
3336
|
+
volume_name: ::String,
|
|
3337
|
+
allocated_storage: ::Integer?,
|
|
3338
|
+
iops: ::Integer?,
|
|
3339
|
+
max_allocated_storage: ::Integer?,
|
|
3340
|
+
storage_throughput: ::Integer?,
|
|
3341
|
+
storage_type: ::String?
|
|
3342
|
+
},
|
|
3343
|
+
]
|
|
3197
3344
|
) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
|
|
3198
3345
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
|
|
3199
3346
|
|
|
@@ -3264,7 +3411,28 @@ module Aws
|
|
|
3264
3411
|
?master_user_secret_kms_key_id: ::String,
|
|
3265
3412
|
?dedicated_log_volume: bool,
|
|
3266
3413
|
?ca_certificate_identifier: ::String,
|
|
3267
|
-
?engine_lifecycle_support: ::String
|
|
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
|
+
],
|
|
3426
|
+
?additional_storage_volumes: Array[
|
|
3427
|
+
{
|
|
3428
|
+
volume_name: ::String,
|
|
3429
|
+
allocated_storage: ::Integer?,
|
|
3430
|
+
iops: ::Integer?,
|
|
3431
|
+
max_allocated_storage: ::Integer?,
|
|
3432
|
+
storage_throughput: ::Integer?,
|
|
3433
|
+
storage_type: ::String?
|
|
3434
|
+
},
|
|
3435
|
+
]
|
|
3268
3436
|
) -> _RestoreDBInstanceFromS3ResponseSuccess
|
|
3269
3437
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromS3ResponseSuccess
|
|
3270
3438
|
|
|
@@ -3330,8 +3498,29 @@ module Aws
|
|
|
3330
3498
|
?dedicated_log_volume: bool,
|
|
3331
3499
|
?ca_certificate_identifier: ::String,
|
|
3332
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
|
+
],
|
|
3333
3512
|
?manage_master_user_password: bool,
|
|
3334
|
-
?master_user_secret_kms_key_id: ::String
|
|
3513
|
+
?master_user_secret_kms_key_id: ::String,
|
|
3514
|
+
?additional_storage_volumes: Array[
|
|
3515
|
+
{
|
|
3516
|
+
volume_name: ::String,
|
|
3517
|
+
allocated_storage: ::Integer?,
|
|
3518
|
+
iops: ::Integer?,
|
|
3519
|
+
max_allocated_storage: ::Integer?,
|
|
3520
|
+
storage_throughput: ::Integer?,
|
|
3521
|
+
storage_type: ::String?
|
|
3522
|
+
},
|
|
3523
|
+
]
|
|
3335
3524
|
) -> _RestoreDBInstanceToPointInTimeResponseSuccess
|
|
3336
3525
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceToPointInTimeResponseSuccess
|
|
3337
3526
|
|
|
@@ -3398,6 +3587,12 @@ module Aws
|
|
|
3398
3587
|
?backup_retention_period: ::Integer,
|
|
3399
3588
|
?kms_key_id: ::String,
|
|
3400
3589
|
?pre_signed_url: ::String,
|
|
3590
|
+
?tags: Array[
|
|
3591
|
+
{
|
|
3592
|
+
key: ::String?,
|
|
3593
|
+
value: ::String?
|
|
3594
|
+
},
|
|
3595
|
+
],
|
|
3401
3596
|
?source_region: ::String
|
|
3402
3597
|
) -> _StartDBInstanceAutomatedBackupsReplicationResponseSuccess
|
|
3403
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
|
|
data/sig/db_engine_version.rbs
CHANGED
|
@@ -120,6 +120,12 @@ module Aws
|
|
|
120
120
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#serverless_v2_features_support-instance_method
|
|
121
121
|
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
|
122
122
|
|
|
123
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#database_installation_files-instance_method
|
|
124
|
+
def database_installation_files: () -> ::Array[::String]
|
|
125
|
+
|
|
126
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#failure_reason-instance_method
|
|
127
|
+
def failure_reason: () -> ::String
|
|
128
|
+
|
|
123
129
|
def client: () -> Client
|
|
124
130
|
|
|
125
131
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#load-instance_method
|
data/sig/db_instance.rbs
CHANGED
|
@@ -279,6 +279,12 @@ module Aws
|
|
|
279
279
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#engine_lifecycle_support-instance_method
|
|
280
280
|
def engine_lifecycle_support: () -> ::String
|
|
281
281
|
|
|
282
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#additional_storage_volumes-instance_method
|
|
283
|
+
def additional_storage_volumes: () -> ::Array[Types::AdditionalStorageVolumeOutput]
|
|
284
|
+
|
|
285
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#storage_volume_status-instance_method
|
|
286
|
+
def storage_volume_status: () -> ::String
|
|
287
|
+
|
|
282
288
|
def client: () -> Client
|
|
283
289
|
|
|
284
290
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#load-instance_method
|
|
@@ -367,7 +373,28 @@ module Aws
|
|
|
367
373
|
?multi_tenant: bool,
|
|
368
374
|
?dedicated_log_volume: bool,
|
|
369
375
|
?engine_lifecycle_support: ::String,
|
|
370
|
-
?
|
|
376
|
+
?tag_specifications: Array[
|
|
377
|
+
{
|
|
378
|
+
resource_type: ::String?,
|
|
379
|
+
tags: Array[
|
|
380
|
+
{
|
|
381
|
+
key: ::String?,
|
|
382
|
+
value: ::String?
|
|
383
|
+
},
|
|
384
|
+
]?
|
|
385
|
+
},
|
|
386
|
+
],
|
|
387
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
388
|
+
?additional_storage_volumes: Array[
|
|
389
|
+
{
|
|
390
|
+
volume_name: ::String,
|
|
391
|
+
allocated_storage: ::Integer?,
|
|
392
|
+
iops: ::Integer?,
|
|
393
|
+
max_allocated_storage: ::Integer?,
|
|
394
|
+
storage_throughput: ::Integer?,
|
|
395
|
+
storage_type: ::String?
|
|
396
|
+
},
|
|
397
|
+
]
|
|
371
398
|
) -> DBInstance
|
|
372
399
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
373
400
|
|
|
@@ -429,6 +456,27 @@ module Aws
|
|
|
429
456
|
?dedicated_log_volume: bool,
|
|
430
457
|
?upgrade_storage_config: bool,
|
|
431
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
|
+
],
|
|
470
|
+
?additional_storage_volumes: Array[
|
|
471
|
+
{
|
|
472
|
+
volume_name: ::String,
|
|
473
|
+
allocated_storage: ::Integer?,
|
|
474
|
+
iops: ::Integer?,
|
|
475
|
+
max_allocated_storage: ::Integer?,
|
|
476
|
+
storage_throughput: ::Integer?,
|
|
477
|
+
storage_type: ::String?
|
|
478
|
+
},
|
|
479
|
+
],
|
|
432
480
|
?source_region: ::String
|
|
433
481
|
) -> DBInstance
|
|
434
482
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
@@ -523,14 +571,47 @@ module Aws
|
|
|
523
571
|
?multi_tenant: bool,
|
|
524
572
|
?dedicated_log_volume: bool,
|
|
525
573
|
?engine: ::String,
|
|
526
|
-
?
|
|
574
|
+
?tag_specifications: Array[
|
|
575
|
+
{
|
|
576
|
+
resource_type: ::String?,
|
|
577
|
+
tags: Array[
|
|
578
|
+
{
|
|
579
|
+
key: ::String?,
|
|
580
|
+
value: ::String?
|
|
581
|
+
},
|
|
582
|
+
]?
|
|
583
|
+
},
|
|
584
|
+
],
|
|
585
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
586
|
+
?additional_storage_volumes: Array[
|
|
587
|
+
{
|
|
588
|
+
volume_name: ::String,
|
|
589
|
+
allocated_storage: ::Integer?,
|
|
590
|
+
iops: ::Integer?,
|
|
591
|
+
max_allocated_storage: ::Integer?,
|
|
592
|
+
storage_throughput: ::Integer?,
|
|
593
|
+
storage_type: ::String?,
|
|
594
|
+
set_for_delete: bool?
|
|
595
|
+
},
|
|
596
|
+
]
|
|
527
597
|
) -> DBInstance
|
|
528
598
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
529
599
|
|
|
530
600
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#promote-instance_method
|
|
531
601
|
def promote: (
|
|
532
602
|
?backup_retention_period: ::Integer,
|
|
533
|
-
?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
|
+
]
|
|
534
615
|
) -> DBInstance
|
|
535
616
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
536
617
|
|
|
@@ -597,8 +678,29 @@ module Aws
|
|
|
597
678
|
?dedicated_log_volume: bool,
|
|
598
679
|
?ca_certificate_identifier: ::String,
|
|
599
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
|
+
],
|
|
600
692
|
?manage_master_user_password: bool,
|
|
601
|
-
?master_user_secret_kms_key_id: ::String
|
|
693
|
+
?master_user_secret_kms_key_id: ::String,
|
|
694
|
+
?additional_storage_volumes: Array[
|
|
695
|
+
{
|
|
696
|
+
volume_name: ::String,
|
|
697
|
+
allocated_storage: ::Integer?,
|
|
698
|
+
iops: ::Integer?,
|
|
699
|
+
max_allocated_storage: ::Integer?,
|
|
700
|
+
storage_throughput: ::Integer?,
|
|
701
|
+
storage_type: ::String?
|
|
702
|
+
},
|
|
703
|
+
]
|
|
602
704
|
) -> DBInstance
|
|
603
705
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
604
706
|
|
data/sig/db_snapshot.rbs
CHANGED
|
@@ -127,6 +127,9 @@ module Aws
|
|
|
127
127
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#snapshot_availability_zone-instance_method
|
|
128
128
|
def snapshot_availability_zone: () -> ::String
|
|
129
129
|
|
|
130
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#additional_storage_volumes-instance_method
|
|
131
|
+
def additional_storage_volumes: () -> ::Array[Types::AdditionalStorageVolume]
|
|
132
|
+
|
|
130
133
|
def client: () -> Client
|
|
131
134
|
|
|
132
135
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBSnapshot.html#load-instance_method
|
|
@@ -230,8 +233,29 @@ module Aws
|
|
|
230
233
|
?dedicated_log_volume: bool,
|
|
231
234
|
?ca_certificate_identifier: ::String,
|
|
232
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
|
+
],
|
|
233
247
|
?manage_master_user_password: bool,
|
|
234
|
-
?master_user_secret_kms_key_id: ::String
|
|
248
|
+
?master_user_secret_kms_key_id: ::String,
|
|
249
|
+
?additional_storage_volumes: Array[
|
|
250
|
+
{
|
|
251
|
+
volume_name: ::String,
|
|
252
|
+
allocated_storage: ::Integer?,
|
|
253
|
+
iops: ::Integer?,
|
|
254
|
+
max_allocated_storage: ::Integer?,
|
|
255
|
+
storage_throughput: ::Integer?,
|
|
256
|
+
storage_type: ::String?
|
|
257
|
+
},
|
|
258
|
+
]
|
|
235
259
|
) -> DBInstance
|
|
236
260
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
237
261
|
|
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,7 +264,28 @@ module Aws
|
|
|
253
264
|
?multi_tenant: bool,
|
|
254
265
|
?dedicated_log_volume: bool,
|
|
255
266
|
?engine_lifecycle_support: ::String,
|
|
256
|
-
?
|
|
267
|
+
?tag_specifications: Array[
|
|
268
|
+
{
|
|
269
|
+
resource_type: ::String?,
|
|
270
|
+
tags: Array[
|
|
271
|
+
{
|
|
272
|
+
key: ::String?,
|
|
273
|
+
value: ::String?
|
|
274
|
+
},
|
|
275
|
+
]?
|
|
276
|
+
},
|
|
277
|
+
],
|
|
278
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
279
|
+
?additional_storage_volumes: Array[
|
|
280
|
+
{
|
|
281
|
+
volume_name: ::String,
|
|
282
|
+
allocated_storage: ::Integer?,
|
|
283
|
+
iops: ::Integer?,
|
|
284
|
+
max_allocated_storage: ::Integer?,
|
|
285
|
+
storage_throughput: ::Integer?,
|
|
286
|
+
storage_type: ::String?
|
|
287
|
+
},
|
|
288
|
+
]
|
|
257
289
|
) -> DBInstance
|
|
258
290
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
259
291
|
|