aws-sdk-rds 1.300.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +493 -12
- data/lib/aws-sdk-rds/client_api.rb +86 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +82 -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 +494 -30
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +74 -6
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +50 -3
- data/sig/db_snapshot.rbs +14 -1
- data/sig/resource.rbs +11 -1
- data/sig/types.rbs +77 -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.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_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,17 @@ module Aws
|
|
|
367
373
|
?multi_tenant: bool,
|
|
368
374
|
?dedicated_log_volume: bool,
|
|
369
375
|
?engine_lifecycle_support: ::String,
|
|
370
|
-
?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
|
+
]
|
|
371
387
|
) -> DBInstance
|
|
372
388
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
373
389
|
|
|
@@ -429,6 +445,16 @@ module Aws
|
|
|
429
445
|
?dedicated_log_volume: bool,
|
|
430
446
|
?upgrade_storage_config: bool,
|
|
431
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
|
+
],
|
|
432
458
|
?source_region: ::String
|
|
433
459
|
) -> DBInstance
|
|
434
460
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
@@ -523,7 +549,18 @@ module Aws
|
|
|
523
549
|
?multi_tenant: bool,
|
|
524
550
|
?dedicated_log_volume: bool,
|
|
525
551
|
?engine: ::String,
|
|
526
|
-
?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
|
+
]
|
|
527
564
|
) -> DBInstance
|
|
528
565
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
529
566
|
|
|
@@ -598,7 +635,17 @@ module Aws
|
|
|
598
635
|
?ca_certificate_identifier: ::String,
|
|
599
636
|
?engine_lifecycle_support: ::String,
|
|
600
637
|
?manage_master_user_password: bool,
|
|
601
|
-
?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
|
+
]
|
|
602
649
|
) -> DBInstance
|
|
603
650
|
| (?Hash[Symbol, untyped]) -> DBInstance
|
|
604
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
|
|
@@ -1121,6 +1161,8 @@ module Aws::RDS
|
|
|
1121
1161
|
attr_accessor supports_local_write_forwarding: bool
|
|
1122
1162
|
attr_accessor supports_integrations: bool
|
|
1123
1163
|
attr_accessor serverless_v2_features_support: Types::ServerlessV2FeaturesSupport
|
|
1164
|
+
attr_accessor database_installation_files: ::Array[::String]
|
|
1165
|
+
attr_accessor failure_reason: ::String
|
|
1124
1166
|
SENSITIVE: []
|
|
1125
1167
|
end
|
|
1126
1168
|
|
|
@@ -1219,6 +1261,8 @@ module Aws::RDS
|
|
|
1219
1261
|
attr_accessor dedicated_log_volume: bool
|
|
1220
1262
|
attr_accessor is_storage_config_upgrade_available: bool
|
|
1221
1263
|
attr_accessor engine_lifecycle_support: ::String
|
|
1264
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolumeOutput]
|
|
1265
|
+
attr_accessor storage_volume_status: ::String
|
|
1222
1266
|
SENSITIVE: []
|
|
1223
1267
|
end
|
|
1224
1268
|
|
|
@@ -1257,6 +1301,7 @@ module Aws::RDS
|
|
|
1257
1301
|
attr_accessor multi_tenant: bool
|
|
1258
1302
|
attr_accessor aws_backup_recovery_point_arn: ::String
|
|
1259
1303
|
attr_accessor dedicated_log_volume: bool
|
|
1304
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
1260
1305
|
SENSITIVE: []
|
|
1261
1306
|
end
|
|
1262
1307
|
|
|
@@ -1581,6 +1626,7 @@ module Aws::RDS
|
|
|
1581
1626
|
attr_accessor multi_tenant: bool
|
|
1582
1627
|
attr_accessor dedicated_log_volume: bool
|
|
1583
1628
|
attr_accessor snapshot_availability_zone: ::String
|
|
1629
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
1584
1630
|
SENSITIVE: []
|
|
1585
1631
|
end
|
|
1586
1632
|
|
|
@@ -2833,6 +2879,17 @@ module Aws::RDS
|
|
|
2833
2879
|
SENSITIVE: []
|
|
2834
2880
|
end
|
|
2835
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
|
+
|
|
2836
2893
|
class ModifyCertificatesMessage
|
|
2837
2894
|
attr_accessor certificate_identifier: ::String
|
|
2838
2895
|
attr_accessor remove_customer_override: bool
|
|
@@ -3006,6 +3063,7 @@ module Aws::RDS
|
|
|
3006
3063
|
attr_accessor dedicated_log_volume: bool
|
|
3007
3064
|
attr_accessor engine: ::String
|
|
3008
3065
|
attr_accessor master_user_authentication_type: ("password" | "iam-db-auth")
|
|
3066
|
+
attr_accessor additional_storage_volumes: ::Array[Types::ModifyAdditionalStorageVolume]
|
|
3009
3067
|
SENSITIVE: [:master_user_password, :tde_credential_password]
|
|
3010
3068
|
end
|
|
3011
3069
|
|
|
@@ -3339,6 +3397,8 @@ module Aws::RDS
|
|
|
3339
3397
|
attr_accessor supports_clusters: bool
|
|
3340
3398
|
attr_accessor supports_dedicated_log_volume: bool
|
|
3341
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]
|
|
3342
3402
|
SENSITIVE: []
|
|
3343
3403
|
end
|
|
3344
3404
|
|
|
@@ -3413,6 +3473,7 @@ module Aws::RDS
|
|
|
3413
3473
|
attr_accessor iam_database_authentication_enabled: bool
|
|
3414
3474
|
attr_accessor dedicated_log_volume: bool
|
|
3415
3475
|
attr_accessor engine: ::String
|
|
3476
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3416
3477
|
SENSITIVE: [:master_user_password]
|
|
3417
3478
|
end
|
|
3418
3479
|
|
|
@@ -3875,6 +3936,7 @@ module Aws::RDS
|
|
|
3875
3936
|
attr_accessor engine_lifecycle_support: ::String
|
|
3876
3937
|
attr_accessor manage_master_user_password: bool
|
|
3877
3938
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
3939
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3878
3940
|
SENSITIVE: [:tde_credential_password]
|
|
3879
3941
|
end
|
|
3880
3942
|
|
|
@@ -3936,6 +3998,7 @@ module Aws::RDS
|
|
|
3936
3998
|
attr_accessor dedicated_log_volume: bool
|
|
3937
3999
|
attr_accessor ca_certificate_identifier: ::String
|
|
3938
4000
|
attr_accessor engine_lifecycle_support: ::String
|
|
4001
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3939
4002
|
SENSITIVE: [:master_user_password]
|
|
3940
4003
|
end
|
|
3941
4004
|
|
|
@@ -3993,6 +4056,7 @@ module Aws::RDS
|
|
|
3993
4056
|
attr_accessor engine_lifecycle_support: ::String
|
|
3994
4057
|
attr_accessor manage_master_user_password: bool
|
|
3995
4058
|
attr_accessor master_user_secret_kms_key_id: ::String
|
|
4059
|
+
attr_accessor additional_storage_volumes: ::Array[Types::AdditionalStorageVolume]
|
|
3996
4060
|
SENSITIVE: [:tde_credential_password]
|
|
3997
4061
|
end
|
|
3998
4062
|
|
|
@@ -4388,10 +4452,17 @@ module Aws::RDS
|
|
|
4388
4452
|
SENSITIVE: []
|
|
4389
4453
|
end
|
|
4390
4454
|
|
|
4455
|
+
class ValidAdditionalStorageOptions
|
|
4456
|
+
attr_accessor supports_additional_storage_volumes: bool
|
|
4457
|
+
attr_accessor volumes: ::Array[Types::ValidVolumeOptions]
|
|
4458
|
+
SENSITIVE: []
|
|
4459
|
+
end
|
|
4460
|
+
|
|
4391
4461
|
class ValidDBInstanceModificationsMessage
|
|
4392
4462
|
attr_accessor storage: ::Array[Types::ValidStorageOptions]
|
|
4393
4463
|
attr_accessor valid_processor_features: ::Array[Types::AvailableProcessorFeature]
|
|
4394
4464
|
attr_accessor supports_dedicated_log_volume: bool
|
|
4465
|
+
attr_accessor additional_storage: Types::ValidAdditionalStorageOptions
|
|
4395
4466
|
SENSITIVE: []
|
|
4396
4467
|
end
|
|
4397
4468
|
|
|
@@ -4406,6 +4477,12 @@ module Aws::RDS
|
|
|
4406
4477
|
SENSITIVE: []
|
|
4407
4478
|
end
|
|
4408
4479
|
|
|
4480
|
+
class ValidVolumeOptions
|
|
4481
|
+
attr_accessor volume_name: ::String
|
|
4482
|
+
attr_accessor storage: ::Array[Types::ValidStorageOptions]
|
|
4483
|
+
SENSITIVE: []
|
|
4484
|
+
end
|
|
4485
|
+
|
|
4409
4486
|
class VpcEncryptionControlViolationException < Aws::EmptyStructure
|
|
4410
4487
|
end
|
|
4411
4488
|
|