aws-sdk-rds 1.299.0 → 1.301.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 +518 -12
- data/lib/aws-sdk-rds/client_api.rb +89 -0
- data/lib/aws-sdk-rds/db_cluster.rb +14 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +96 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -0
- data/lib/aws-sdk-rds/resource.rb +18 -0
- data/lib/aws-sdk-rds/types.rb +522 -30
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +74 -6
- data/sig/db_cluster.rbs +3 -0
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +53 -3
- data/sig/db_snapshot.rbs +14 -1
- data/sig/resource.rbs +11 -1
- data/sig/types.rbs +79 -0
- metadata +3 -3
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.301.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
|
|
|
@@ -603,7 +606,17 @@ module Aws
|
|
|
603
606
|
?multi_tenant: bool,
|
|
604
607
|
?dedicated_log_volume: bool,
|
|
605
608
|
?engine_lifecycle_support: ::String,
|
|
606
|
-
?master_user_authentication_type: ("password" | "iam-db-auth")
|
|
609
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
610
|
+
?additional_storage_volumes: Array[
|
|
611
|
+
{
|
|
612
|
+
volume_name: ::String,
|
|
613
|
+
allocated_storage: ::Integer?,
|
|
614
|
+
iops: ::Integer?,
|
|
615
|
+
max_allocated_storage: ::Integer?,
|
|
616
|
+
storage_throughput: ::Integer?,
|
|
617
|
+
storage_type: ::String?
|
|
618
|
+
},
|
|
619
|
+
]
|
|
607
620
|
) -> _CreateDBInstanceResponseSuccess
|
|
608
621
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceResponseSuccess
|
|
609
622
|
|
|
@@ -670,6 +683,16 @@ module Aws
|
|
|
670
683
|
?dedicated_log_volume: bool,
|
|
671
684
|
?upgrade_storage_config: bool,
|
|
672
685
|
?ca_certificate_identifier: ::String,
|
|
686
|
+
?additional_storage_volumes: Array[
|
|
687
|
+
{
|
|
688
|
+
volume_name: ::String,
|
|
689
|
+
allocated_storage: ::Integer?,
|
|
690
|
+
iops: ::Integer?,
|
|
691
|
+
max_allocated_storage: ::Integer?,
|
|
692
|
+
storage_throughput: ::Integer?,
|
|
693
|
+
storage_type: ::String?
|
|
694
|
+
},
|
|
695
|
+
],
|
|
673
696
|
?source_region: ::String
|
|
674
697
|
) -> _CreateDBInstanceReadReplicaResponseSuccess
|
|
675
698
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDBInstanceReadReplicaResponseSuccess
|
|
@@ -999,6 +1022,8 @@ module Aws
|
|
|
999
1022
|
def supports_local_write_forwarding: () -> bool
|
|
1000
1023
|
def supports_integrations: () -> bool
|
|
1001
1024
|
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
|
1025
|
+
def database_installation_files: () -> ::Array[::String]
|
|
1026
|
+
def failure_reason: () -> ::String
|
|
1002
1027
|
end
|
|
1003
1028
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#delete_custom_db_engine_version-instance_method
|
|
1004
1029
|
def delete_custom_db_engine_version: (
|
|
@@ -2278,6 +2303,8 @@ module Aws
|
|
|
2278
2303
|
def supports_local_write_forwarding: () -> bool
|
|
2279
2304
|
def supports_integrations: () -> bool
|
|
2280
2305
|
def serverless_v2_features_support: () -> Types::ServerlessV2FeaturesSupport
|
|
2306
|
+
def database_installation_files: () -> ::Array[::String]
|
|
2307
|
+
def failure_reason: () -> ::String
|
|
2281
2308
|
end
|
|
2282
2309
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/Client.html#modify_custom_db_engine_version-instance_method
|
|
2283
2310
|
def modify_custom_db_engine_version: (
|
|
@@ -2493,7 +2520,18 @@ module Aws
|
|
|
2493
2520
|
?multi_tenant: bool,
|
|
2494
2521
|
?dedicated_log_volume: bool,
|
|
2495
2522
|
?engine: ::String,
|
|
2496
|
-
?master_user_authentication_type: ("password" | "iam-db-auth")
|
|
2523
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
2524
|
+
?additional_storage_volumes: Array[
|
|
2525
|
+
{
|
|
2526
|
+
volume_name: ::String,
|
|
2527
|
+
allocated_storage: ::Integer?,
|
|
2528
|
+
iops: ::Integer?,
|
|
2529
|
+
max_allocated_storage: ::Integer?,
|
|
2530
|
+
storage_throughput: ::Integer?,
|
|
2531
|
+
storage_type: ::String?,
|
|
2532
|
+
set_for_delete: bool?
|
|
2533
|
+
},
|
|
2534
|
+
]
|
|
2497
2535
|
) -> _ModifyDBInstanceResponseSuccess
|
|
2498
2536
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyDBInstanceResponseSuccess
|
|
2499
2537
|
|
|
@@ -3193,7 +3231,17 @@ module Aws
|
|
|
3193
3231
|
?ca_certificate_identifier: ::String,
|
|
3194
3232
|
?engine_lifecycle_support: ::String,
|
|
3195
3233
|
?manage_master_user_password: bool,
|
|
3196
|
-
?master_user_secret_kms_key_id: ::String
|
|
3234
|
+
?master_user_secret_kms_key_id: ::String,
|
|
3235
|
+
?additional_storage_volumes: Array[
|
|
3236
|
+
{
|
|
3237
|
+
volume_name: ::String,
|
|
3238
|
+
allocated_storage: ::Integer?,
|
|
3239
|
+
iops: ::Integer?,
|
|
3240
|
+
max_allocated_storage: ::Integer?,
|
|
3241
|
+
storage_throughput: ::Integer?,
|
|
3242
|
+
storage_type: ::String?
|
|
3243
|
+
},
|
|
3244
|
+
]
|
|
3197
3245
|
) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
|
|
3198
3246
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromDBSnapshotResponseSuccess
|
|
3199
3247
|
|
|
@@ -3264,7 +3312,17 @@ module Aws
|
|
|
3264
3312
|
?master_user_secret_kms_key_id: ::String,
|
|
3265
3313
|
?dedicated_log_volume: bool,
|
|
3266
3314
|
?ca_certificate_identifier: ::String,
|
|
3267
|
-
?engine_lifecycle_support: ::String
|
|
3315
|
+
?engine_lifecycle_support: ::String,
|
|
3316
|
+
?additional_storage_volumes: Array[
|
|
3317
|
+
{
|
|
3318
|
+
volume_name: ::String,
|
|
3319
|
+
allocated_storage: ::Integer?,
|
|
3320
|
+
iops: ::Integer?,
|
|
3321
|
+
max_allocated_storage: ::Integer?,
|
|
3322
|
+
storage_throughput: ::Integer?,
|
|
3323
|
+
storage_type: ::String?
|
|
3324
|
+
},
|
|
3325
|
+
]
|
|
3268
3326
|
) -> _RestoreDBInstanceFromS3ResponseSuccess
|
|
3269
3327
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceFromS3ResponseSuccess
|
|
3270
3328
|
|
|
@@ -3331,7 +3389,17 @@ module Aws
|
|
|
3331
3389
|
?ca_certificate_identifier: ::String,
|
|
3332
3390
|
?engine_lifecycle_support: ::String,
|
|
3333
3391
|
?manage_master_user_password: bool,
|
|
3334
|
-
?master_user_secret_kms_key_id: ::String
|
|
3392
|
+
?master_user_secret_kms_key_id: ::String,
|
|
3393
|
+
?additional_storage_volumes: Array[
|
|
3394
|
+
{
|
|
3395
|
+
volume_name: ::String,
|
|
3396
|
+
allocated_storage: ::Integer?,
|
|
3397
|
+
iops: ::Integer?,
|
|
3398
|
+
max_allocated_storage: ::Integer?,
|
|
3399
|
+
storage_throughput: ::Integer?,
|
|
3400
|
+
storage_type: ::String?
|
|
3401
|
+
},
|
|
3402
|
+
]
|
|
3335
3403
|
) -> _RestoreDBInstanceToPointInTimeResponseSuccess
|
|
3336
3404
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RestoreDBInstanceToPointInTimeResponseSuccess
|
|
3337
3405
|
|
data/sig/db_cluster.rbs
CHANGED
|
@@ -84,6 +84,9 @@ module Aws
|
|
|
84
84
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#preferred_maintenance_window-instance_method
|
|
85
85
|
def preferred_maintenance_window: () -> ::String
|
|
86
86
|
|
|
87
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#upgrade_rollout_order-instance_method
|
|
88
|
+
def upgrade_rollout_order: () -> ("first" | "second" | "last")
|
|
89
|
+
|
|
87
90
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBCluster.html#replication_source_identifier-instance_method
|
|
88
91
|
def replication_source_identifier: () -> ::String
|
|
89
92
|
|
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
|
@@ -66,6 +66,9 @@ module Aws
|
|
|
66
66
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#preferred_maintenance_window-instance_method
|
|
67
67
|
def preferred_maintenance_window: () -> ::String
|
|
68
68
|
|
|
69
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#upgrade_rollout_order-instance_method
|
|
70
|
+
def upgrade_rollout_order: () -> ("first" | "second" | "last")
|
|
71
|
+
|
|
69
72
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#pending_modified_values-instance_method
|
|
70
73
|
def pending_modified_values: () -> Types::PendingModifiedValues
|
|
71
74
|
|
|
@@ -276,6 +279,12 @@ module Aws
|
|
|
276
279
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#engine_lifecycle_support-instance_method
|
|
277
280
|
def engine_lifecycle_support: () -> ::String
|
|
278
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
|
+
|
|
279
288
|
def client: () -> Client
|
|
280
289
|
|
|
281
290
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBInstance.html#load-instance_method
|
|
@@ -364,7 +373,17 @@ module Aws
|
|
|
364
373
|
?multi_tenant: bool,
|
|
365
374
|
?dedicated_log_volume: bool,
|
|
366
375
|
?engine_lifecycle_support: ::String,
|
|
367
|
-
?master_user_authentication_type: ("password" | "iam-db-auth")
|
|
376
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
377
|
+
?additional_storage_volumes: Array[
|
|
378
|
+
{
|
|
379
|
+
volume_name: ::String,
|
|
380
|
+
allocated_storage: ::Integer?,
|
|
381
|
+
iops: ::Integer?,
|
|
382
|
+
max_allocated_storage: ::Integer?,
|
|
383
|
+
storage_throughput: ::Integer?,
|
|
384
|
+
storage_type: ::String?
|
|
385
|
+
},
|
|
386
|
+
]
|
|
368
387
|
) -> DBInstance
|
|
369
388
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
370
389
|
|
|
@@ -426,6 +445,16 @@ module Aws
|
|
|
426
445
|
?dedicated_log_volume: bool,
|
|
427
446
|
?upgrade_storage_config: bool,
|
|
428
447
|
?ca_certificate_identifier: ::String,
|
|
448
|
+
?additional_storage_volumes: Array[
|
|
449
|
+
{
|
|
450
|
+
volume_name: ::String,
|
|
451
|
+
allocated_storage: ::Integer?,
|
|
452
|
+
iops: ::Integer?,
|
|
453
|
+
max_allocated_storage: ::Integer?,
|
|
454
|
+
storage_throughput: ::Integer?,
|
|
455
|
+
storage_type: ::String?
|
|
456
|
+
},
|
|
457
|
+
],
|
|
429
458
|
?source_region: ::String
|
|
430
459
|
) -> DBInstance
|
|
431
460
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
@@ -520,7 +549,18 @@ module Aws
|
|
|
520
549
|
?multi_tenant: bool,
|
|
521
550
|
?dedicated_log_volume: bool,
|
|
522
551
|
?engine: ::String,
|
|
523
|
-
?master_user_authentication_type: ("password" | "iam-db-auth")
|
|
552
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
553
|
+
?additional_storage_volumes: Array[
|
|
554
|
+
{
|
|
555
|
+
volume_name: ::String,
|
|
556
|
+
allocated_storage: ::Integer?,
|
|
557
|
+
iops: ::Integer?,
|
|
558
|
+
max_allocated_storage: ::Integer?,
|
|
559
|
+
storage_throughput: ::Integer?,
|
|
560
|
+
storage_type: ::String?,
|
|
561
|
+
set_for_delete: bool?
|
|
562
|
+
},
|
|
563
|
+
]
|
|
524
564
|
) -> DBInstance
|
|
525
565
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
526
566
|
|
|
@@ -595,7 +635,17 @@ module Aws
|
|
|
595
635
|
?ca_certificate_identifier: ::String,
|
|
596
636
|
?engine_lifecycle_support: ::String,
|
|
597
637
|
?manage_master_user_password: bool,
|
|
598
|
-
?master_user_secret_kms_key_id: ::String
|
|
638
|
+
?master_user_secret_kms_key_id: ::String,
|
|
639
|
+
?additional_storage_volumes: Array[
|
|
640
|
+
{
|
|
641
|
+
volume_name: ::String,
|
|
642
|
+
allocated_storage: ::Integer?,
|
|
643
|
+
iops: ::Integer?,
|
|
644
|
+
max_allocated_storage: ::Integer?,
|
|
645
|
+
storage_throughput: ::Integer?,
|
|
646
|
+
storage_type: ::String?
|
|
647
|
+
},
|
|
648
|
+
]
|
|
599
649
|
) -> DBInstance
|
|
600
650
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
601
651
|
|
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
|
|
@@ -231,7 +234,17 @@ module Aws
|
|
|
231
234
|
?ca_certificate_identifier: ::String,
|
|
232
235
|
?engine_lifecycle_support: ::String,
|
|
233
236
|
?manage_master_user_password: bool,
|
|
234
|
-
?master_user_secret_kms_key_id: ::String
|
|
237
|
+
?master_user_secret_kms_key_id: ::String,
|
|
238
|
+
?additional_storage_volumes: Array[
|
|
239
|
+
{
|
|
240
|
+
volume_name: ::String,
|
|
241
|
+
allocated_storage: ::Integer?,
|
|
242
|
+
iops: ::Integer?,
|
|
243
|
+
max_allocated_storage: ::Integer?,
|
|
244
|
+
storage_throughput: ::Integer?,
|
|
245
|
+
storage_type: ::String?
|
|
246
|
+
},
|
|
247
|
+
]
|
|
235
248
|
) -> DBInstance
|
|
236
249
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
237
250
|
|
data/sig/resource.rbs
CHANGED
|
@@ -253,7 +253,17 @@ module Aws
|
|
|
253
253
|
?multi_tenant: bool,
|
|
254
254
|
?dedicated_log_volume: bool,
|
|
255
255
|
?engine_lifecycle_support: ::String,
|
|
256
|
-
?master_user_authentication_type: ("password" | "iam-db-auth")
|
|
256
|
+
?master_user_authentication_type: ("password" | "iam-db-auth"),
|
|
257
|
+
?additional_storage_volumes: Array[
|
|
258
|
+
{
|
|
259
|
+
volume_name: ::String,
|
|
260
|
+
allocated_storage: ::Integer?,
|
|
261
|
+
iops: ::Integer?,
|
|
262
|
+
max_allocated_storage: ::Integer?,
|
|
263
|
+
storage_throughput: ::Integer?,
|
|
264
|
+
storage_type: ::String?
|
|
265
|
+
},
|
|
266
|
+
]
|
|
257
267
|
) -> DBInstance
|
|
258
268
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
259
269
|
|
data/sig/types.rbs
CHANGED
|
@@ -51,6 +51,27 @@ module Aws::RDS
|
|
|
51
51
|
SENSITIVE: []
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
+
class AdditionalStorageVolume
|
|
55
|
+
attr_accessor volume_name: ::String
|
|
56
|
+
attr_accessor allocated_storage: ::Integer
|
|
57
|
+
attr_accessor iops: ::Integer
|
|
58
|
+
attr_accessor max_allocated_storage: ::Integer
|
|
59
|
+
attr_accessor storage_throughput: ::Integer
|
|
60
|
+
attr_accessor storage_type: ::String
|
|
61
|
+
SENSITIVE: []
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
class AdditionalStorageVolumeOutput
|
|
65
|
+
attr_accessor volume_name: ::String
|
|
66
|
+
attr_accessor storage_volume_status: ::String
|
|
67
|
+
attr_accessor allocated_storage: ::Integer
|
|
68
|
+
attr_accessor iops: ::Integer
|
|
69
|
+
attr_accessor max_allocated_storage: ::Integer
|
|
70
|
+
attr_accessor storage_throughput: ::Integer
|
|
71
|
+
attr_accessor storage_type: ::String
|
|
72
|
+
SENSITIVE: []
|
|
73
|
+
end
|
|
74
|
+
|
|
54
75
|
class ApplyPendingMaintenanceActionMessage
|
|
55
76
|
attr_accessor resource_identifier: ::String
|
|
56
77
|
attr_accessor apply_action: ::String
|
|
@@ -91,6 +112,22 @@ module Aws::RDS
|
|
|
91
112
|
SENSITIVE: []
|
|
92
113
|
end
|
|
93
114
|
|
|
115
|
+
class AvailableAdditionalStorageVolumesOption
|
|
116
|
+
attr_accessor supports_storage_autoscaling: bool
|
|
117
|
+
attr_accessor supports_storage_throughput: bool
|
|
118
|
+
attr_accessor supports_iops: bool
|
|
119
|
+
attr_accessor storage_type: ::String
|
|
120
|
+
attr_accessor min_storage_size: ::Integer
|
|
121
|
+
attr_accessor max_storage_size: ::Integer
|
|
122
|
+
attr_accessor min_iops: ::Integer
|
|
123
|
+
attr_accessor max_iops: ::Integer
|
|
124
|
+
attr_accessor min_iops_per_gib: ::Float
|
|
125
|
+
attr_accessor max_iops_per_gib: ::Float
|
|
126
|
+
attr_accessor min_storage_throughput: ::Integer
|
|
127
|
+
attr_accessor max_storage_throughput: ::Integer
|
|
128
|
+
SENSITIVE: []
|
|
129
|
+
end
|
|
130
|
+
|
|
94
131
|
class AvailableProcessorFeature
|
|
95
132
|
attr_accessor name: ::String
|
|
96
133
|
attr_accessor default_value: ::String
|
|
@@ -332,6 +369,7 @@ module Aws::RDS
|
|
|
332
369
|
attr_accessor description: ::String
|
|
333
370
|
attr_accessor manifest: ::String
|
|
334
371
|
attr_accessor tags: ::Array[Types::Tag]
|
|
372
|
+
attr_accessor database_installation_files: ::Array[::String]
|
|
335
373
|
SENSITIVE: []
|
|
336
374
|
end
|
|
337
375
|
|
|
@@ -503,6 +541,7 @@ module Aws::RDS
|
|
|
503
541
|
attr_accessor dedicated_log_volume: bool
|
|
504
542
|
attr_accessor engine_lifecycle_support: ::String
|
|
505
543
|
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
544
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
506
545
|
SENSITIVE: [:master_user_password, :tde_credential_password]
|
|
507
546
|
end
|
|
508
547
|
|
|
@@ -554,6 +593,7 @@ module Aws::RDS
|
|
|
554
593
|
attr_accessor dedicated_log_volume: bool
|
|
555
594
|
attr_accessor upgrade_storage_config: bool
|
|
556
595
|
attr_accessor ca_certificate_identifier: ::String
|
|
596
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
557
597
|
attr_accessor source_region: ::String
|
|
558
598
|
SENSITIVE: [:pre_signed_url]
|
|
559
599
|
end
|
|
@@ -787,6 +827,7 @@ module Aws::RDS
|
|
|
787
827
|
attr_accessor db_cluster_option_group_memberships: ::Array[Types::DBClusterOptionGroupStatus]
|
|
788
828
|
attr_accessor preferred_backup_window: ::String
|
|
789
829
|
attr_accessor preferred_maintenance_window: ::String
|
|
830
|
+
attr_accessor upgrade_rollout_order: ("first" | "second" | "last")
|
|
790
831
|
attr_accessor replication_source_identifier: ::String
|
|
791
832
|
attr_accessor read_replica_identifiers: ::Array[::String]
|
|
792
833
|
attr_accessor status_infos: ::Array[Types::DBClusterStatusInfo]
|
|
@@ -1120,6 +1161,8 @@ module Aws::RDS
|
|
|
1120
1161
|
attr_accessor supports_local_write_forwarding: bool
|
|
1121
1162
|
attr_accessor supports_integrations: bool
|
|
1122
1163
|
attr_accessor serverless_v2_features_support: Types::ServerlessV2FeaturesSupport
|
|
1164
|
+
attr_accessor database_installation_files: ::Array[::String]
|
|
1165
|
+
attr_accessor failure_reason: ::String
|
|
1123
1166
|
SENSITIVE: []
|
|
1124
1167
|
end
|
|
1125
1168
|
|
|
@@ -1147,6 +1190,7 @@ module Aws::RDS
|
|
|
1147
1190
|
attr_accessor availability_zone: ::String
|
|
1148
1191
|
attr_accessor db_subnet_group: Types::DBSubnetGroup
|
|
1149
1192
|
attr_accessor preferred_maintenance_window: ::String
|
|
1193
|
+
attr_accessor upgrade_rollout_order: ("first" | "second" | "last")
|
|
1150
1194
|
attr_accessor pending_modified_values: Types::PendingModifiedValues
|
|
1151
1195
|
attr_accessor latest_restorable_time: ::Time
|
|
1152
1196
|
attr_accessor multi_az: bool
|
|
@@ -1217,6 +1261,8 @@ module Aws::RDS
|
|
|
1217
1261
|
attr_accessor dedicated_log_volume: bool
|
|
1218
1262
|
attr_accessor is_storage_config_upgrade_available: bool
|
|
1219
1263
|
attr_accessor engine_lifecycle_support: ::String
|
|
1264
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolumeOutput]
|
|
1265
|
+
attr_accessor storage_volume_status: ::String
|
|
1220
1266
|
SENSITIVE: []
|
|
1221
1267
|
end
|
|
1222
1268
|
|
|
@@ -1255,6 +1301,7 @@ module Aws::RDS
|
|
|
1255
1301
|
attr_accessor multi_tenant: bool
|
|
1256
1302
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
1257
1303
|
attr_accessor dedicated_log_volume: bool
|
|
1304
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
1258
1305
|
SENSITIVE: []
|
|
1259
1306
|
end
|
|
1260
1307
|
|
|
@@ -1579,6 +1626,7 @@ module Aws::RDS
|
|
|
1579
1626
|
attr_accessor multi_tenant: bool
|
|
1580
1627
|
attr_accessor dedicated_log_volume: bool
|
|
1581
1628
|
attr_accessor snapshot_availability_zone: ::String
|
|
1629
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
1582
1630
|
SENSITIVE: []
|
|
1583
1631
|
end
|
|
1584
1632
|
|
|
@@ -2831,6 +2879,17 @@ module Aws::RDS
|
|
|
2831
2879
|
SENSITIVE: []
|
|
2832
2880
|
end
|
|
2833
2881
|
|
|
2882
|
+
class ModifyAdditionalStorageVolume
|
|
2883
|
+
attr_accessor volume_name: ::String
|
|
2884
|
+
attr_accessor allocated_storage: ::Integer
|
|
2885
|
+
attr_accessor iops: ::Integer
|
|
2886
|
+
attr_accessor max_allocated_storage: ::Integer
|
|
2887
|
+
attr_accessor storage_throughput: ::Integer
|
|
2888
|
+
attr_accessor storage_type: ::String
|
|
2889
|
+
attr_accessor set_for_delete: bool
|
|
2890
|
+
SENSITIVE: []
|
|
2891
|
+
end
|
|
2892
|
+
|
|
2834
2893
|
class ModifyCertificatesMessage
|
|
2835
2894
|
attr_accessor certificate_identifier: ::String
|
|
2836
2895
|
attr_accessor remove_customer_override: bool
|
|
@@ -3004,6 +3063,7 @@ module Aws::RDS
|
|
|
3004
3063
|
attr_accessor dedicated_log_volume: bool
|
|
3005
3064
|
attr_accessor engine: ::String
|
|
3006
3065
|
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
3066
|
+
attr_accessor additional_storage_volumes: ::Array[Types::ModifyAdditionalStorageVolume]
|
|
3007
3067
|
SENSITIVE: [:master_user_password, :tde_credential_password]
|
|
3008
3068
|
end
|
|
3009
3069
|
|
|
@@ -3337,6 +3397,8 @@ module Aws::RDS
|
|
|
3337
3397
|
attr_accessor supports_clusters: bool
|
|
3338
3398
|
attr_accessor supports_dedicated_log_volume: bool
|
|
3339
3399
|
attr_accessor supports_http_endpoint: bool
|
|
3400
|
+
attr_accessor supports_additional_storage_volumes: bool
|
|
3401
|
+
attr_accessor available_additional_storage_volumes_options: ::Array[Types::AvailableAdditionalStorageVolumesOption]
|
|
3340
3402
|
SENSITIVE: []
|
|
3341
3403
|
end
|
|
3342
3404
|
|
|
@@ -3411,6 +3473,7 @@ module Aws::RDS
|
|
|
3411
3473
|
attr_accessor iam_database_authentication_enabled: bool
|
|
3412
3474
|
attr_accessor dedicated_log_volume: bool
|
|
3413
3475
|
attr_accessor engine: ::String
|
|
3476
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3414
3477
|
SENSITIVE: [:master_user_password]
|
|
3415
3478
|
end
|
|
3416
3479
|
|
|
@@ -3873,6 +3936,7 @@ module Aws::RDS
|
|
|
3873
3936
|
attr_accessor engine_lifecycle_support: ::String
|
|
3874
3937
|
attr_accessor manage_master_user_password: bool
|
|
3875
3938
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3939
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3876
3940
|
SENSITIVE: [:tde_credential_password]
|
|
3877
3941
|
end
|
|
3878
3942
|
|
|
@@ -3934,6 +3998,7 @@ module Aws::RDS
|
|
|
3934
3998
|
attr_accessor dedicated_log_volume: bool
|
|
3935
3999
|
attr_accessor ca_certificate_identifier: ::String
|
|
3936
4000
|
attr_accessor engine_lifecycle_support: ::String
|
|
4001
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3937
4002
|
SENSITIVE: [:master_user_password]
|
|
3938
4003
|
end
|
|
3939
4004
|
|
|
@@ -3991,6 +4056,7 @@ module Aws::RDS
|
|
|
3991
4056
|
attr_accessor engine_lifecycle_support: ::String
|
|
3992
4057
|
attr_accessor manage_master_user_password: bool
|
|
3993
4058
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
4059
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3994
4060
|
SENSITIVE: [:tde_credential_password]
|
|
3995
4061
|
end
|
|
3996
4062
|
|
|
@@ -4386,10 +4452,17 @@ module Aws::RDS
|
|
|
4386
4452
|
SENSITIVE: []
|
|
4387
4453
|
end
|
|
4388
4454
|
|
|
4455
|
+
class ValidAdditionalStorageOptions
|
|
4456
|
+
attr_accessor supports_additional_storage_volumes: bool
|
|
4457
|
+
attr_accessor volumes: ::Array[Types::ValidVolumeOptions]
|
|
4458
|
+
SENSITIVE: []
|
|
4459
|
+
end
|
|
4460
|
+
|
|
4389
4461
|
class ValidDBInstanceModificationsMessage
|
|
4390
4462
|
attr_accessor storage: ::Array[Types::ValidStorageOptions]
|
|
4391
4463
|
attr_accessor valid_processor_features: ::Array[Types::AvailableProcessorFeature]
|
|
4392
4464
|
attr_accessor supports_dedicated_log_volume: bool
|
|
4465
|
+
attr_accessor additional_storage: Types::ValidAdditionalStorageOptions
|
|
4393
4466
|
SENSITIVE: []
|
|
4394
4467
|
end
|
|
4395
4468
|
|
|
@@ -4404,6 +4477,12 @@ module Aws::RDS
|
|
|
4404
4477
|
SENSITIVE: []
|
|
4405
4478
|
end
|
|
4406
4479
|
|
|
4480
|
+
class ValidVolumeOptions
|
|
4481
|
+
attr_accessor volume_name: ::String
|
|
4482
|
+
attr_accessor storage: ::Array[Types::ValidStorageOptions]
|
|
4483
|
+
SENSITIVE: []
|
|
4484
|
+
end
|
|
4485
|
+
|
|
4407
4486
|
class VpcEncryptionControlViolationException < Aws::EmptyStructure
|
|
4408
4487
|
end
|
|
4409
4488
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.301.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|