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/client.rb
CHANGED
|
@@ -1976,6 +1976,13 @@ module Aws::RDS
|
|
|
1976
1976
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
1977
1977
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
1978
1978
|
# resp.db_snapshot.snapshot_availability_zone #=> String
|
|
1979
|
+
# resp.db_snapshot.additional_storage_volumes #=> Array
|
|
1980
|
+
# resp.db_snapshot.additional_storage_volumes[0].volume_name #=> String
|
|
1981
|
+
# resp.db_snapshot.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
1982
|
+
# resp.db_snapshot.additional_storage_volumes[0].iops #=> Integer
|
|
1983
|
+
# resp.db_snapshot.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
1984
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
1985
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_type #=> String
|
|
1979
1986
|
#
|
|
1980
1987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
|
1981
1988
|
#
|
|
@@ -2418,8 +2425,9 @@ module Aws::RDS
|
|
|
2418
2425
|
# Creates a custom DB engine version (CEV).
|
|
2419
2426
|
#
|
|
2420
2427
|
# @option params [required, String] :engine
|
|
2421
|
-
# The database engine.
|
|
2422
|
-
#
|
|
2428
|
+
# The database engine.
|
|
2429
|
+
#
|
|
2430
|
+
# RDS Custom for Oracle supports the following values:
|
|
2423
2431
|
#
|
|
2424
2432
|
# * `custom-oracle-ee`
|
|
2425
2433
|
#
|
|
@@ -2429,12 +2437,30 @@ module Aws::RDS
|
|
|
2429
2437
|
#
|
|
2430
2438
|
# * `custom-oracle-se2-cdb`
|
|
2431
2439
|
#
|
|
2440
|
+
# RDS Custom for SQL Server supports the following values:
|
|
2441
|
+
#
|
|
2442
|
+
# * `custom-sqlserver-ee`
|
|
2443
|
+
#
|
|
2444
|
+
# * `custom-sqlserver-se`
|
|
2445
|
+
#
|
|
2446
|
+
# * `ccustom-sqlserver-web`
|
|
2447
|
+
#
|
|
2448
|
+
# * `custom-sqlserver-dev`
|
|
2449
|
+
#
|
|
2450
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
2451
|
+
#
|
|
2432
2452
|
# @option params [required, String] :engine_version
|
|
2433
|
-
# The name of your
|
|
2434
|
-
#
|
|
2435
|
-
#
|
|
2436
|
-
#
|
|
2437
|
-
#
|
|
2453
|
+
# The name of your custom engine version (CEV).
|
|
2454
|
+
#
|
|
2455
|
+
# For RDS Custom for Oracle, the name format is
|
|
2456
|
+
# `19.*customized_string*`. For example, a valid CEV name is
|
|
2457
|
+
# `19.my_cev1`.
|
|
2458
|
+
#
|
|
2459
|
+
# For RDS for SQL Server and RDS Custom for SQL Server, the name format
|
|
2460
|
+
# is `major engine_version*.*minor_engine_version*.*customized_string*`.
|
|
2461
|
+
# For example, a valid CEV name is `16.00.4215.2.my_cev1`.
|
|
2462
|
+
#
|
|
2463
|
+
# The CEV name is unique per customer per Amazon Web Services Regions.
|
|
2438
2464
|
#
|
|
2439
2465
|
# @option params [String] :database_installation_files_s3_bucket_name
|
|
2440
2466
|
# The name of an Amazon S3 bucket that contains database installation
|
|
@@ -2540,6 +2566,10 @@ module Aws::RDS
|
|
|
2540
2566
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
|
2541
2567
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
|
2542
2568
|
#
|
|
2569
|
+
# @option params [Array<String>] :database_installation_files
|
|
2570
|
+
# The database installation files (ISO and EXE) uploaded to Amazon S3
|
|
2571
|
+
# for your database engine version to import to Amazon RDS.
|
|
2572
|
+
#
|
|
2543
2573
|
# @return [Types::DBEngineVersion] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2544
2574
|
#
|
|
2545
2575
|
# * {Types::DBEngineVersion#engine #engine} => String
|
|
@@ -2577,6 +2607,8 @@ module Aws::RDS
|
|
|
2577
2607
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
2578
2608
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
2579
2609
|
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
|
2610
|
+
# * {Types::DBEngineVersion#database_installation_files #database_installation_files} => Array<String>
|
|
2611
|
+
# * {Types::DBEngineVersion#failure_reason #failure_reason} => String
|
|
2580
2612
|
#
|
|
2581
2613
|
# @example Request syntax with placeholder values
|
|
2582
2614
|
#
|
|
@@ -2597,6 +2629,7 @@ module Aws::RDS
|
|
|
2597
2629
|
# value: "String",
|
|
2598
2630
|
# },
|
|
2599
2631
|
# ],
|
|
2632
|
+
# database_installation_files: ["String"],
|
|
2600
2633
|
# })
|
|
2601
2634
|
#
|
|
2602
2635
|
# @example Response structure
|
|
@@ -2663,6 +2696,9 @@ module Aws::RDS
|
|
|
2663
2696
|
# resp.supports_integrations #=> Boolean
|
|
2664
2697
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
2665
2698
|
# resp.serverless_v2_features_support.max_capacity #=> Float
|
|
2699
|
+
# resp.database_installation_files #=> Array
|
|
2700
|
+
# resp.database_installation_files[0] #=> String
|
|
2701
|
+
# resp.failure_reason #=> String
|
|
2666
2702
|
#
|
|
2667
2703
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
|
|
2668
2704
|
#
|
|
@@ -3883,6 +3919,7 @@ module Aws::RDS
|
|
|
3883
3919
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
3884
3920
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
3885
3921
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
3922
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
3886
3923
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
3887
3924
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
3888
3925
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -4776,6 +4813,8 @@ module Aws::RDS
|
|
|
4776
4813
|
#
|
|
4777
4814
|
# * `postgres`
|
|
4778
4815
|
#
|
|
4816
|
+
# * `sqlserver-dev-ee`
|
|
4817
|
+
#
|
|
4779
4818
|
# * `sqlserver-ee`
|
|
4780
4819
|
#
|
|
4781
4820
|
# * `sqlserver-se`
|
|
@@ -5772,6 +5811,13 @@ module Aws::RDS
|
|
|
5772
5811
|
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
|
5773
5812
|
# engines.
|
|
5774
5813
|
#
|
|
5814
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
5815
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
5816
|
+
# You can create up to three additional storage volumes using the names
|
|
5817
|
+
# `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional storage
|
|
5818
|
+
# volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
5819
|
+
# instances only.
|
|
5820
|
+
#
|
|
5775
5821
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5776
5822
|
#
|
|
5777
5823
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -5964,6 +6010,16 @@ module Aws::RDS
|
|
|
5964
6010
|
# dedicated_log_volume: false,
|
|
5965
6011
|
# engine_lifecycle_support: "String",
|
|
5966
6012
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
6013
|
+
# additional_storage_volumes: [
|
|
6014
|
+
# {
|
|
6015
|
+
# volume_name: "String", # required
|
|
6016
|
+
# allocated_storage: 1,
|
|
6017
|
+
# iops: 1,
|
|
6018
|
+
# max_allocated_storage: 1,
|
|
6019
|
+
# storage_throughput: 1,
|
|
6020
|
+
# storage_type: "String",
|
|
6021
|
+
# },
|
|
6022
|
+
# ],
|
|
5967
6023
|
# })
|
|
5968
6024
|
#
|
|
5969
6025
|
# @example Response structure
|
|
@@ -6004,6 +6060,7 @@ module Aws::RDS
|
|
|
6004
6060
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
6005
6061
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
6006
6062
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
6063
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
6007
6064
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
6008
6065
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
6009
6066
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -6031,6 +6088,13 @@ module Aws::RDS
|
|
|
6031
6088
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
6032
6089
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
6033
6090
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
6091
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
6092
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
6093
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
6094
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
6095
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
6096
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
6097
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
6034
6098
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
6035
6099
|
# resp.db_instance.multi_az #=> Boolean
|
|
6036
6100
|
# resp.db_instance.engine_version #=> String
|
|
@@ -6130,6 +6194,15 @@ module Aws::RDS
|
|
|
6130
6194
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
6131
6195
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
6132
6196
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
6197
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
6198
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
6199
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
6200
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
6201
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
6202
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
6203
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
6204
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
6205
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
6133
6206
|
#
|
|
6134
6207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
|
6135
6208
|
#
|
|
@@ -6885,6 +6958,13 @@ module Aws::RDS
|
|
|
6885
6958
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
6886
6959
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
6887
6960
|
#
|
|
6961
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
6962
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
6963
|
+
# You can create up to three additional storage volumes using the names
|
|
6964
|
+
# `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional storage
|
|
6965
|
+
# volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
6966
|
+
# instances only.
|
|
6967
|
+
#
|
|
6888
6968
|
# @option params [String] :source_region
|
|
6889
6969
|
# The source region of the snapshot. This is only needed when the
|
|
6890
6970
|
# shapshot is encrypted and in a different region.
|
|
@@ -6975,6 +7055,16 @@ module Aws::RDS
|
|
|
6975
7055
|
# dedicated_log_volume: false,
|
|
6976
7056
|
# upgrade_storage_config: false,
|
|
6977
7057
|
# ca_certificate_identifier: "String",
|
|
7058
|
+
# additional_storage_volumes: [
|
|
7059
|
+
# {
|
|
7060
|
+
# volume_name: "String", # required
|
|
7061
|
+
# allocated_storage: 1,
|
|
7062
|
+
# iops: 1,
|
|
7063
|
+
# max_allocated_storage: 1,
|
|
7064
|
+
# storage_throughput: 1,
|
|
7065
|
+
# storage_type: "String",
|
|
7066
|
+
# },
|
|
7067
|
+
# ],
|
|
6978
7068
|
# source_region: "String",
|
|
6979
7069
|
# })
|
|
6980
7070
|
#
|
|
@@ -7016,6 +7106,7 @@ module Aws::RDS
|
|
|
7016
7106
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
7017
7107
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
7018
7108
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
7109
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
7019
7110
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
7020
7111
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
7021
7112
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -7043,6 +7134,13 @@ module Aws::RDS
|
|
|
7043
7134
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7044
7135
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
7045
7136
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
7137
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
7138
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
7139
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
7140
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
7141
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
7142
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
7143
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
7046
7144
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
7047
7145
|
# resp.db_instance.multi_az #=> Boolean
|
|
7048
7146
|
# resp.db_instance.engine_version #=> String
|
|
@@ -7142,6 +7240,15 @@ module Aws::RDS
|
|
|
7142
7240
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
7143
7241
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
7144
7242
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
7243
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
7244
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
7245
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
7246
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
7247
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
7248
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
7249
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
7250
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
7251
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
7145
7252
|
#
|
|
7146
7253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
|
7147
7254
|
#
|
|
@@ -7957,6 +8064,13 @@ module Aws::RDS
|
|
|
7957
8064
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
7958
8065
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
7959
8066
|
# resp.db_snapshot.snapshot_availability_zone #=> String
|
|
8067
|
+
# resp.db_snapshot.additional_storage_volumes #=> Array
|
|
8068
|
+
# resp.db_snapshot.additional_storage_volumes[0].volume_name #=> String
|
|
8069
|
+
# resp.db_snapshot.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
8070
|
+
# resp.db_snapshot.additional_storage_volumes[0].iops #=> Integer
|
|
8071
|
+
# resp.db_snapshot.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
8072
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
8073
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_type #=> String
|
|
7960
8074
|
#
|
|
7961
8075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
|
7962
8076
|
#
|
|
@@ -9185,8 +9299,9 @@ module Aws::RDS
|
|
|
9185
9299
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.delete
|
|
9186
9300
|
#
|
|
9187
9301
|
# @option params [required, String] :engine
|
|
9188
|
-
# The database engine.
|
|
9189
|
-
#
|
|
9302
|
+
# The database engine.
|
|
9303
|
+
#
|
|
9304
|
+
# RDS Custom for Oracle supports the following values:
|
|
9190
9305
|
#
|
|
9191
9306
|
# * `custom-oracle-ee`
|
|
9192
9307
|
#
|
|
@@ -9196,6 +9311,18 @@ module Aws::RDS
|
|
|
9196
9311
|
#
|
|
9197
9312
|
# * `custom-oracle-se2-cdb`
|
|
9198
9313
|
#
|
|
9314
|
+
# RDS Custom for SQL Server supports the following values:
|
|
9315
|
+
#
|
|
9316
|
+
# * `custom-sqlserver-ee`
|
|
9317
|
+
#
|
|
9318
|
+
# * `custom-sqlserver-se`
|
|
9319
|
+
#
|
|
9320
|
+
# * `ccustom-sqlserver-web`
|
|
9321
|
+
#
|
|
9322
|
+
# * `custom-sqlserver-dev`
|
|
9323
|
+
#
|
|
9324
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
9325
|
+
#
|
|
9199
9326
|
# @option params [required, String] :engine_version
|
|
9200
9327
|
# The custom engine version (CEV) for your DB instance. This option is
|
|
9201
9328
|
# required for RDS Custom, but optional for Amazon RDS. The combination
|
|
@@ -9239,6 +9366,8 @@ module Aws::RDS
|
|
|
9239
9366
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
9240
9367
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
9241
9368
|
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
|
9369
|
+
# * {Types::DBEngineVersion#database_installation_files #database_installation_files} => Array<String>
|
|
9370
|
+
# * {Types::DBEngineVersion#failure_reason #failure_reason} => String
|
|
9242
9371
|
#
|
|
9243
9372
|
# @example Request syntax with placeholder values
|
|
9244
9373
|
#
|
|
@@ -9311,6 +9440,9 @@ module Aws::RDS
|
|
|
9311
9440
|
# resp.supports_integrations #=> Boolean
|
|
9312
9441
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
9313
9442
|
# resp.serverless_v2_features_support.max_capacity #=> Float
|
|
9443
|
+
# resp.database_installation_files #=> Array
|
|
9444
|
+
# resp.database_installation_files[0] #=> String
|
|
9445
|
+
# resp.failure_reason #=> String
|
|
9314
9446
|
#
|
|
9315
9447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
|
9316
9448
|
#
|
|
@@ -9460,6 +9592,7 @@ module Aws::RDS
|
|
|
9460
9592
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
9461
9593
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
9462
9594
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
9595
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
9463
9596
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
9464
9597
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
9465
9598
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -10053,6 +10186,7 @@ module Aws::RDS
|
|
|
10053
10186
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
10054
10187
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
10055
10188
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
10189
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
10056
10190
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
10057
10191
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
10058
10192
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -10080,6 +10214,13 @@ module Aws::RDS
|
|
|
10080
10214
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
10081
10215
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
10082
10216
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
10217
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
10218
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
10219
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10220
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
10221
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10222
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10223
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
10083
10224
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
10084
10225
|
# resp.db_instance.multi_az #=> Boolean
|
|
10085
10226
|
# resp.db_instance.engine_version #=> String
|
|
@@ -10179,6 +10320,15 @@ module Aws::RDS
|
|
|
10179
10320
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
10180
10321
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
10181
10322
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
10323
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
10324
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
10325
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
10326
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10327
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
10328
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10329
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10330
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
10331
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
10182
10332
|
#
|
|
10183
10333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
10184
10334
|
#
|
|
@@ -10287,6 +10437,13 @@ module Aws::RDS
|
|
|
10287
10437
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
10288
10438
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
10289
10439
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
10440
|
+
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
10441
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
10442
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10443
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].iops #=> Integer
|
|
10444
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10445
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10446
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_type #=> String
|
|
10290
10447
|
#
|
|
10291
10448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
|
10292
10449
|
#
|
|
@@ -10654,6 +10811,13 @@ module Aws::RDS
|
|
|
10654
10811
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
10655
10812
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
10656
10813
|
# resp.db_snapshot.snapshot_availability_zone #=> String
|
|
10814
|
+
# resp.db_snapshot.additional_storage_volumes #=> Array
|
|
10815
|
+
# resp.db_snapshot.additional_storage_volumes[0].volume_name #=> String
|
|
10816
|
+
# resp.db_snapshot.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10817
|
+
# resp.db_snapshot.additional_storage_volumes[0].iops #=> Integer
|
|
10818
|
+
# resp.db_snapshot.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10819
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10820
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_type #=> String
|
|
10657
10821
|
#
|
|
10658
10822
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
|
10659
10823
|
#
|
|
@@ -12919,6 +13083,7 @@ module Aws::RDS
|
|
|
12919
13083
|
# resp.db_clusters[0].db_cluster_option_group_memberships[0].status #=> String
|
|
12920
13084
|
# resp.db_clusters[0].preferred_backup_window #=> String
|
|
12921
13085
|
# resp.db_clusters[0].preferred_maintenance_window #=> String
|
|
13086
|
+
# resp.db_clusters[0].upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
12922
13087
|
# resp.db_clusters[0].replication_source_identifier #=> String
|
|
12923
13088
|
# resp.db_clusters[0].read_replica_identifiers #=> Array
|
|
12924
13089
|
# resp.db_clusters[0].read_replica_identifiers[0] #=> String
|
|
@@ -13323,6 +13488,9 @@ module Aws::RDS
|
|
|
13323
13488
|
# resp.db_engine_versions[0].supports_integrations #=> Boolean
|
|
13324
13489
|
# resp.db_engine_versions[0].serverless_v2_features_support.min_capacity #=> Float
|
|
13325
13490
|
# resp.db_engine_versions[0].serverless_v2_features_support.max_capacity #=> Float
|
|
13491
|
+
# resp.db_engine_versions[0].database_installation_files #=> Array
|
|
13492
|
+
# resp.db_engine_versions[0].database_installation_files[0] #=> String
|
|
13493
|
+
# resp.db_engine_versions[0].failure_reason #=> String
|
|
13326
13494
|
#
|
|
13327
13495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
|
13328
13496
|
#
|
|
@@ -13495,6 +13663,13 @@ module Aws::RDS
|
|
|
13495
13663
|
# resp.db_instance_automated_backups[0].multi_tenant #=> Boolean
|
|
13496
13664
|
# resp.db_instance_automated_backups[0].aws_backup_recovery_point_arn #=> String
|
|
13497
13665
|
# resp.db_instance_automated_backups[0].dedicated_log_volume #=> Boolean
|
|
13666
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes #=> Array
|
|
13667
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].volume_name #=> String
|
|
13668
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].allocated_storage #=> Integer
|
|
13669
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].iops #=> Integer
|
|
13670
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
13671
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].storage_throughput #=> Integer
|
|
13672
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].storage_type #=> String
|
|
13498
13673
|
#
|
|
13499
13674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
|
13500
13675
|
#
|
|
@@ -13653,6 +13828,7 @@ module Aws::RDS
|
|
|
13653
13828
|
# resp.db_instances[0].db_subnet_group.supported_network_types #=> Array
|
|
13654
13829
|
# resp.db_instances[0].db_subnet_group.supported_network_types[0] #=> String
|
|
13655
13830
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
|
13831
|
+
# resp.db_instances[0].upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
13656
13832
|
# resp.db_instances[0].pending_modified_values.db_instance_class #=> String
|
|
13657
13833
|
# resp.db_instances[0].pending_modified_values.allocated_storage #=> Integer
|
|
13658
13834
|
# resp.db_instances[0].pending_modified_values.master_user_password #=> String
|
|
@@ -13680,6 +13856,13 @@ module Aws::RDS
|
|
|
13680
13856
|
# resp.db_instances[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
13681
13857
|
# resp.db_instances[0].pending_modified_values.dedicated_log_volume #=> Boolean
|
|
13682
13858
|
# resp.db_instances[0].pending_modified_values.engine #=> String
|
|
13859
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes #=> Array
|
|
13860
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
13861
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
13862
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
13863
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
13864
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
13865
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
13683
13866
|
# resp.db_instances[0].latest_restorable_time #=> Time
|
|
13684
13867
|
# resp.db_instances[0].multi_az #=> Boolean
|
|
13685
13868
|
# resp.db_instances[0].engine_version #=> String
|
|
@@ -13779,6 +13962,15 @@ module Aws::RDS
|
|
|
13779
13962
|
# resp.db_instances[0].dedicated_log_volume #=> Boolean
|
|
13780
13963
|
# resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
|
|
13781
13964
|
# resp.db_instances[0].engine_lifecycle_support #=> String
|
|
13965
|
+
# resp.db_instances[0].additional_storage_volumes #=> Array
|
|
13966
|
+
# resp.db_instances[0].additional_storage_volumes[0].volume_name #=> String
|
|
13967
|
+
# resp.db_instances[0].additional_storage_volumes[0].storage_volume_status #=> String
|
|
13968
|
+
# resp.db_instances[0].additional_storage_volumes[0].allocated_storage #=> Integer
|
|
13969
|
+
# resp.db_instances[0].additional_storage_volumes[0].iops #=> Integer
|
|
13970
|
+
# resp.db_instances[0].additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
13971
|
+
# resp.db_instances[0].additional_storage_volumes[0].storage_throughput #=> Integer
|
|
13972
|
+
# resp.db_instances[0].additional_storage_volumes[0].storage_type #=> String
|
|
13973
|
+
# resp.db_instances[0].storage_volume_status #=> String
|
|
13782
13974
|
#
|
|
13783
13975
|
#
|
|
13784
13976
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -15400,6 +15592,13 @@ module Aws::RDS
|
|
|
15400
15592
|
# resp.db_snapshots[0].multi_tenant #=> Boolean
|
|
15401
15593
|
# resp.db_snapshots[0].dedicated_log_volume #=> Boolean
|
|
15402
15594
|
# resp.db_snapshots[0].snapshot_availability_zone #=> String
|
|
15595
|
+
# resp.db_snapshots[0].additional_storage_volumes #=> Array
|
|
15596
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].volume_name #=> String
|
|
15597
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].allocated_storage #=> Integer
|
|
15598
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].iops #=> Integer
|
|
15599
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
15600
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].storage_throughput #=> Integer
|
|
15601
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].storage_type #=> String
|
|
15403
15602
|
#
|
|
15404
15603
|
#
|
|
15405
15604
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -17213,6 +17412,20 @@ module Aws::RDS
|
|
|
17213
17412
|
# resp.orderable_db_instance_options[0].supports_clusters #=> Boolean
|
|
17214
17413
|
# resp.orderable_db_instance_options[0].supports_dedicated_log_volume #=> Boolean
|
|
17215
17414
|
# resp.orderable_db_instance_options[0].supports_http_endpoint #=> Boolean
|
|
17415
|
+
# resp.orderable_db_instance_options[0].supports_additional_storage_volumes #=> Boolean
|
|
17416
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options #=> Array
|
|
17417
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].supports_storage_autoscaling #=> Boolean
|
|
17418
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].supports_storage_throughput #=> Boolean
|
|
17419
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].supports_iops #=> Boolean
|
|
17420
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].storage_type #=> String
|
|
17421
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].min_storage_size #=> Integer
|
|
17422
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].max_storage_size #=> Integer
|
|
17423
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].min_iops #=> Integer
|
|
17424
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].max_iops #=> Integer
|
|
17425
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].min_iops_per_gib #=> Float
|
|
17426
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].max_iops_per_gib #=> Float
|
|
17427
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].min_storage_throughput #=> Integer
|
|
17428
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].max_storage_throughput #=> Integer
|
|
17216
17429
|
# resp.marker #=> String
|
|
17217
17430
|
#
|
|
17218
17431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
|
@@ -18042,6 +18255,30 @@ module Aws::RDS
|
|
|
18042
18255
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].default_value #=> String
|
|
18043
18256
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].allowed_values #=> String
|
|
18044
18257
|
# resp.valid_db_instance_modifications_message.supports_dedicated_log_volume #=> Boolean
|
|
18258
|
+
# resp.valid_db_instance_modifications_message.additional_storage.supports_additional_storage_volumes #=> Boolean
|
|
18259
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes #=> Array
|
|
18260
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].volume_name #=> String
|
|
18261
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage #=> Array
|
|
18262
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_type #=> String
|
|
18263
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_size #=> Array
|
|
18264
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_size[0].from #=> Integer
|
|
18265
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_size[0].to #=> Integer
|
|
18266
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_size[0].step #=> Integer
|
|
18267
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_iops #=> Array
|
|
18268
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_iops[0].from #=> Integer
|
|
18269
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_iops[0].to #=> Integer
|
|
18270
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_iops[0].step #=> Integer
|
|
18271
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].iops_to_storage_ratio #=> Array
|
|
18272
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].iops_to_storage_ratio[0].from #=> Float
|
|
18273
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].iops_to_storage_ratio[0].to #=> Float
|
|
18274
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_storage_throughput #=> Array
|
|
18275
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_storage_throughput[0].from #=> Integer
|
|
18276
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_storage_throughput[0].to #=> Integer
|
|
18277
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_storage_throughput[0].step #=> Integer
|
|
18278
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_throughput_to_iops_ratio #=> Array
|
|
18279
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_throughput_to_iops_ratio[0].from #=> Float
|
|
18280
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_throughput_to_iops_ratio[0].to #=> Float
|
|
18281
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].supports_storage_autoscaling #=> Boolean
|
|
18045
18282
|
#
|
|
18046
18283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeValidDBInstanceModifications AWS API Documentation
|
|
18047
18284
|
#
|
|
@@ -18362,6 +18599,7 @@ module Aws::RDS
|
|
|
18362
18599
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
18363
18600
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
18364
18601
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
18602
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
18365
18603
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
18366
18604
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
18367
18605
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -19016,8 +19254,9 @@ module Aws::RDS
|
|
|
19016
19254
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.modify
|
|
19017
19255
|
#
|
|
19018
19256
|
# @option params [required, String] :engine
|
|
19019
|
-
# The database engine.
|
|
19020
|
-
#
|
|
19257
|
+
# The database engine.
|
|
19258
|
+
#
|
|
19259
|
+
# RDS Custom for Oracle supports the following values:
|
|
19021
19260
|
#
|
|
19022
19261
|
# * `custom-oracle-ee`
|
|
19023
19262
|
#
|
|
@@ -19027,6 +19266,18 @@ module Aws::RDS
|
|
|
19027
19266
|
#
|
|
19028
19267
|
# * `custom-oracle-se2-cdb`
|
|
19029
19268
|
#
|
|
19269
|
+
# RDS Custom for SQL Server supports the following values:
|
|
19270
|
+
#
|
|
19271
|
+
# * `custom-sqlserver-ee`
|
|
19272
|
+
#
|
|
19273
|
+
# * `custom-sqlserver-se`
|
|
19274
|
+
#
|
|
19275
|
+
# * `ccustom-sqlserver-web`
|
|
19276
|
+
#
|
|
19277
|
+
# * `custom-sqlserver-dev`
|
|
19278
|
+
#
|
|
19279
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
19280
|
+
#
|
|
19030
19281
|
# @option params [required, String] :engine_version
|
|
19031
19282
|
# The custom engine version (CEV) that you want to modify. This option
|
|
19032
19283
|
# is required for RDS Custom for Oracle, but optional for Amazon RDS.
|
|
@@ -19095,6 +19346,8 @@ module Aws::RDS
|
|
|
19095
19346
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
19096
19347
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
19097
19348
|
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
|
19349
|
+
# * {Types::DBEngineVersion#database_installation_files #database_installation_files} => Array<String>
|
|
19350
|
+
# * {Types::DBEngineVersion#failure_reason #failure_reason} => String
|
|
19098
19351
|
#
|
|
19099
19352
|
# @example Request syntax with placeholder values
|
|
19100
19353
|
#
|
|
@@ -19169,6 +19422,9 @@ module Aws::RDS
|
|
|
19169
19422
|
# resp.supports_integrations #=> Boolean
|
|
19170
19423
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
19171
19424
|
# resp.serverless_v2_features_support.max_capacity #=> Float
|
|
19425
|
+
# resp.database_installation_files #=> Array
|
|
19426
|
+
# resp.database_installation_files[0] #=> String
|
|
19427
|
+
# resp.failure_reason #=> String
|
|
19172
19428
|
#
|
|
19173
19429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
|
19174
19430
|
#
|
|
@@ -20108,6 +20364,7 @@ module Aws::RDS
|
|
|
20108
20364
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
20109
20365
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
20110
20366
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
20367
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
20111
20368
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
20112
20369
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
20113
20370
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -21745,6 +22002,12 @@ module Aws::RDS
|
|
|
21745
22002
|
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
|
21746
22003
|
# engines.
|
|
21747
22004
|
#
|
|
22005
|
+
# @option params [Array<Types::ModifyAdditionalStorageVolume>] :additional_storage_volumes
|
|
22006
|
+
# A list of additional storage volumes to modify or delete for the DB
|
|
22007
|
+
# instance. You can create up to 3 additional storage volumes.
|
|
22008
|
+
# Additional storage volumes are supported for RDS for Oracle and RDS
|
|
22009
|
+
# for SQL Server DB instances only.
|
|
22010
|
+
#
|
|
21748
22011
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
21749
22012
|
#
|
|
21750
22013
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -21873,6 +22136,17 @@ module Aws::RDS
|
|
|
21873
22136
|
# dedicated_log_volume: false,
|
|
21874
22137
|
# engine: "String",
|
|
21875
22138
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
22139
|
+
# additional_storage_volumes: [
|
|
22140
|
+
# {
|
|
22141
|
+
# volume_name: "String", # required
|
|
22142
|
+
# allocated_storage: 1,
|
|
22143
|
+
# iops: 1,
|
|
22144
|
+
# max_allocated_storage: 1,
|
|
22145
|
+
# storage_throughput: 1,
|
|
22146
|
+
# storage_type: "String",
|
|
22147
|
+
# set_for_delete: false,
|
|
22148
|
+
# },
|
|
22149
|
+
# ],
|
|
21876
22150
|
# })
|
|
21877
22151
|
#
|
|
21878
22152
|
# @example Response structure
|
|
@@ -21913,6 +22187,7 @@ module Aws::RDS
|
|
|
21913
22187
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
21914
22188
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
21915
22189
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
22190
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
21916
22191
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
21917
22192
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
21918
22193
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -21940,6 +22215,13 @@ module Aws::RDS
|
|
|
21940
22215
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
21941
22216
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
21942
22217
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
22218
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
22219
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
22220
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
22221
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
22222
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
22223
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
22224
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
21943
22225
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
21944
22226
|
# resp.db_instance.multi_az #=> Boolean
|
|
21945
22227
|
# resp.db_instance.engine_version #=> String
|
|
@@ -22039,6 +22321,15 @@ module Aws::RDS
|
|
|
22039
22321
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
22040
22322
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
22041
22323
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
22324
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
22325
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
22326
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
22327
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
22328
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
22329
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
22330
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
22331
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
22332
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
22042
22333
|
#
|
|
22043
22334
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
22044
22335
|
#
|
|
@@ -22768,6 +23059,13 @@ module Aws::RDS
|
|
|
22768
23059
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
22769
23060
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
22770
23061
|
# resp.db_snapshot.snapshot_availability_zone #=> String
|
|
23062
|
+
# resp.db_snapshot.additional_storage_volumes #=> Array
|
|
23063
|
+
# resp.db_snapshot.additional_storage_volumes[0].volume_name #=> String
|
|
23064
|
+
# resp.db_snapshot.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
23065
|
+
# resp.db_snapshot.additional_storage_volumes[0].iops #=> Integer
|
|
23066
|
+
# resp.db_snapshot.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
23067
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
23068
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_type #=> String
|
|
22771
23069
|
#
|
|
22772
23070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
|
22773
23071
|
#
|
|
@@ -23862,6 +24160,7 @@ module Aws::RDS
|
|
|
23862
24160
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
23863
24161
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
23864
24162
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
24163
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
23865
24164
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
23866
24165
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
23867
24166
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -23889,6 +24188,13 @@ module Aws::RDS
|
|
|
23889
24188
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
23890
24189
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
23891
24190
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
24191
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
24192
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
24193
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
24194
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
24195
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
24196
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
24197
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
23892
24198
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
23893
24199
|
# resp.db_instance.multi_az #=> Boolean
|
|
23894
24200
|
# resp.db_instance.engine_version #=> String
|
|
@@ -23988,6 +24294,15 @@ module Aws::RDS
|
|
|
23988
24294
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
23989
24295
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
23990
24296
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
24297
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
24298
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
24299
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
24300
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
24301
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
24302
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
24303
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
24304
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
24305
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
23991
24306
|
#
|
|
23992
24307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
|
23993
24308
|
#
|
|
@@ -24051,6 +24366,7 @@ module Aws::RDS
|
|
|
24051
24366
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
24052
24367
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
24053
24368
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
24369
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24054
24370
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
24055
24371
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
24056
24372
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -24356,6 +24672,7 @@ module Aws::RDS
|
|
|
24356
24672
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
24357
24673
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
24358
24674
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
24675
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24359
24676
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
24360
24677
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
24361
24678
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -24592,6 +24909,7 @@ module Aws::RDS
|
|
|
24592
24909
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
24593
24910
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
24594
24911
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
24912
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24595
24913
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
24596
24914
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
24597
24915
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -24619,6 +24937,13 @@ module Aws::RDS
|
|
|
24619
24937
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
24620
24938
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
24621
24939
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
24940
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
24941
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
24942
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
24943
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
24944
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
24945
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
24946
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
24622
24947
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
24623
24948
|
# resp.db_instance.multi_az #=> Boolean
|
|
24624
24949
|
# resp.db_instance.engine_version #=> String
|
|
@@ -24718,6 +25043,15 @@ module Aws::RDS
|
|
|
24718
25043
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
24719
25044
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
24720
25045
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
25046
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
25047
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
25048
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
25049
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
25050
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
25051
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
25052
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
25053
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
25054
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
24721
25055
|
#
|
|
24722
25056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
|
24723
25057
|
#
|
|
@@ -25960,6 +26294,7 @@ module Aws::RDS
|
|
|
25960
26294
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
25961
26295
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
25962
26296
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
26297
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
25963
26298
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
25964
26299
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
25965
26300
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -26786,6 +27121,7 @@ module Aws::RDS
|
|
|
26786
27121
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
26787
27122
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
26788
27123
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
27124
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
26789
27125
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
26790
27126
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
26791
27127
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -27595,6 +27931,7 @@ module Aws::RDS
|
|
|
27595
27931
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
27596
27932
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
27597
27933
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
27934
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
27598
27935
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
27599
27936
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
27600
27937
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -28389,6 +28726,13 @@ module Aws::RDS
|
|
|
28389
28726
|
# Amazon Web Services account has a different default KMS key for each
|
|
28390
28727
|
# Amazon Web Services Region.
|
|
28391
28728
|
#
|
|
28729
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
28730
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
28731
|
+
# You can create up to three additional storage volumes using the names
|
|
28732
|
+
# `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional storage
|
|
28733
|
+
# volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
28734
|
+
# instances only.
|
|
28735
|
+
#
|
|
28392
28736
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
28393
28737
|
#
|
|
28394
28738
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -28488,6 +28832,16 @@ module Aws::RDS
|
|
|
28488
28832
|
# engine_lifecycle_support: "String",
|
|
28489
28833
|
# manage_master_user_password: false,
|
|
28490
28834
|
# master_user_secret_kms_key_id: "String",
|
|
28835
|
+
# additional_storage_volumes: [
|
|
28836
|
+
# {
|
|
28837
|
+
# volume_name: "String", # required
|
|
28838
|
+
# allocated_storage: 1,
|
|
28839
|
+
# iops: 1,
|
|
28840
|
+
# max_allocated_storage: 1,
|
|
28841
|
+
# storage_throughput: 1,
|
|
28842
|
+
# storage_type: "String",
|
|
28843
|
+
# },
|
|
28844
|
+
# ],
|
|
28491
28845
|
# })
|
|
28492
28846
|
#
|
|
28493
28847
|
# @example Response structure
|
|
@@ -28528,6 +28882,7 @@ module Aws::RDS
|
|
|
28528
28882
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
28529
28883
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
28530
28884
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
28885
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
28531
28886
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
28532
28887
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
28533
28888
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -28555,6 +28910,13 @@ module Aws::RDS
|
|
|
28555
28910
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
28556
28911
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
28557
28912
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
28913
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
28914
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
28915
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
28916
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
28917
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
28918
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
28919
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
28558
28920
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
28559
28921
|
# resp.db_instance.multi_az #=> Boolean
|
|
28560
28922
|
# resp.db_instance.engine_version #=> String
|
|
@@ -28654,6 +29016,15 @@ module Aws::RDS
|
|
|
28654
29016
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
28655
29017
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
28656
29018
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
29019
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
29020
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
29021
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
29022
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
29023
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
29024
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
29025
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
29026
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
29027
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
28657
29028
|
#
|
|
28658
29029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
|
28659
29030
|
#
|
|
@@ -29237,6 +29608,13 @@ module Aws::RDS
|
|
|
29237
29608
|
#
|
|
29238
29609
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
29239
29610
|
#
|
|
29611
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
29612
|
+
# A list of additional storage volumes to modify or delete for the DB
|
|
29613
|
+
# instance. You can modify or delete up to three additional storage
|
|
29614
|
+
# volumes using the names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`.
|
|
29615
|
+
# Additional storage volumes are supported for RDS for Oracle and RDS
|
|
29616
|
+
# for SQL Server DB instances only.
|
|
29617
|
+
#
|
|
29240
29618
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
29241
29619
|
#
|
|
29242
29620
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
|
@@ -29306,6 +29684,16 @@ module Aws::RDS
|
|
|
29306
29684
|
# dedicated_log_volume: false,
|
|
29307
29685
|
# ca_certificate_identifier: "String",
|
|
29308
29686
|
# engine_lifecycle_support: "String",
|
|
29687
|
+
# additional_storage_volumes: [
|
|
29688
|
+
# {
|
|
29689
|
+
# volume_name: "String", # required
|
|
29690
|
+
# allocated_storage: 1,
|
|
29691
|
+
# iops: 1,
|
|
29692
|
+
# max_allocated_storage: 1,
|
|
29693
|
+
# storage_throughput: 1,
|
|
29694
|
+
# storage_type: "String",
|
|
29695
|
+
# },
|
|
29696
|
+
# ],
|
|
29309
29697
|
# })
|
|
29310
29698
|
#
|
|
29311
29699
|
# @example Response structure
|
|
@@ -29346,6 +29734,7 @@ module Aws::RDS
|
|
|
29346
29734
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
29347
29735
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
29348
29736
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
29737
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
29349
29738
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
29350
29739
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
29351
29740
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -29373,6 +29762,13 @@ module Aws::RDS
|
|
|
29373
29762
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
29374
29763
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
29375
29764
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
29765
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
29766
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
29767
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
29768
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
29769
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
29770
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
29771
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
29376
29772
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
29377
29773
|
# resp.db_instance.multi_az #=> Boolean
|
|
29378
29774
|
# resp.db_instance.engine_version #=> String
|
|
@@ -29472,6 +29868,15 @@ module Aws::RDS
|
|
|
29472
29868
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
29473
29869
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
29474
29870
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
29871
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
29872
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
29873
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
29874
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
29875
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
29876
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
29877
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
29878
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
29879
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
29475
29880
|
#
|
|
29476
29881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
|
29477
29882
|
#
|
|
@@ -30155,6 +30560,13 @@ module Aws::RDS
|
|
|
30155
30560
|
# Amazon Web Services account has a different default KMS key for each
|
|
30156
30561
|
# Amazon Web Services Region.
|
|
30157
30562
|
#
|
|
30563
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
30564
|
+
# A list of additional storage volumes to restore to the DB instance.
|
|
30565
|
+
# You can restore up to three additional storage volumes using the names
|
|
30566
|
+
# `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional storage
|
|
30567
|
+
# volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
30568
|
+
# instances only.
|
|
30569
|
+
#
|
|
30158
30570
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
30159
30571
|
#
|
|
30160
30572
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -30317,6 +30729,16 @@ module Aws::RDS
|
|
|
30317
30729
|
# engine_lifecycle_support: "String",
|
|
30318
30730
|
# manage_master_user_password: false,
|
|
30319
30731
|
# master_user_secret_kms_key_id: "String",
|
|
30732
|
+
# additional_storage_volumes: [
|
|
30733
|
+
# {
|
|
30734
|
+
# volume_name: "String", # required
|
|
30735
|
+
# allocated_storage: 1,
|
|
30736
|
+
# iops: 1,
|
|
30737
|
+
# max_allocated_storage: 1,
|
|
30738
|
+
# storage_throughput: 1,
|
|
30739
|
+
# storage_type: "String",
|
|
30740
|
+
# },
|
|
30741
|
+
# ],
|
|
30320
30742
|
# })
|
|
30321
30743
|
#
|
|
30322
30744
|
# @example Response structure
|
|
@@ -30357,6 +30779,7 @@ module Aws::RDS
|
|
|
30357
30779
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
30358
30780
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
30359
30781
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
30782
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
30360
30783
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
30361
30784
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
30362
30785
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -30384,6 +30807,13 @@ module Aws::RDS
|
|
|
30384
30807
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
30385
30808
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
30386
30809
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
30810
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
30811
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
30812
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
30813
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
30814
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
30815
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
30816
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
30387
30817
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
30388
30818
|
# resp.db_instance.multi_az #=> Boolean
|
|
30389
30819
|
# resp.db_instance.engine_version #=> String
|
|
@@ -30483,6 +30913,15 @@ module Aws::RDS
|
|
|
30483
30913
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
30484
30914
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
30485
30915
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
30916
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
30917
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
30918
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
30919
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
30920
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
30921
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
30922
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
30923
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
30924
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
30486
30925
|
#
|
|
30487
30926
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
|
30488
30927
|
#
|
|
@@ -30774,6 +31213,7 @@ module Aws::RDS
|
|
|
30774
31213
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
30775
31214
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
30776
31215
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
31216
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
30777
31217
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
30778
31218
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
30779
31219
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -30982,6 +31422,7 @@ module Aws::RDS
|
|
|
30982
31422
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
30983
31423
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
30984
31424
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
31425
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
30985
31426
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
30986
31427
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
30987
31428
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -31009,6 +31450,13 @@ module Aws::RDS
|
|
|
31009
31450
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
31010
31451
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
31011
31452
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
31453
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
31454
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
31455
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31456
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
31457
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31458
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31459
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
31012
31460
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
31013
31461
|
# resp.db_instance.multi_az #=> Boolean
|
|
31014
31462
|
# resp.db_instance.engine_version #=> String
|
|
@@ -31108,6 +31556,15 @@ module Aws::RDS
|
|
|
31108
31556
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
31109
31557
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
31110
31558
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
31559
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
31560
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
31561
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
31562
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31563
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
31564
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31565
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31566
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
31567
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
31111
31568
|
#
|
|
31112
31569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
|
31113
31570
|
#
|
|
@@ -31266,6 +31723,13 @@ module Aws::RDS
|
|
|
31266
31723
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
31267
31724
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
31268
31725
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
31726
|
+
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
31727
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
31728
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31729
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].iops #=> Integer
|
|
31730
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31731
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31732
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_type #=> String
|
|
31269
31733
|
#
|
|
31270
31734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
31271
31735
|
#
|
|
@@ -31610,6 +32074,7 @@ module Aws::RDS
|
|
|
31610
32074
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
31611
32075
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
31612
32076
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
32077
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
31613
32078
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
31614
32079
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
31615
32080
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -31826,6 +32291,7 @@ module Aws::RDS
|
|
|
31826
32291
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
31827
32292
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
31828
32293
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
32294
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
31829
32295
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
31830
32296
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
31831
32297
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -31853,6 +32319,13 @@ module Aws::RDS
|
|
|
31853
32319
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
31854
32320
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
31855
32321
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
32322
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
32323
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
32324
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32325
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
32326
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32327
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32328
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
31856
32329
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
31857
32330
|
# resp.db_instance.multi_az #=> Boolean
|
|
31858
32331
|
# resp.db_instance.engine_version #=> String
|
|
@@ -31952,6 +32425,15 @@ module Aws::RDS
|
|
|
31952
32425
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
31953
32426
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
31954
32427
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
32428
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
32429
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
32430
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
32431
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32432
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
32433
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32434
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32435
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
32436
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
31955
32437
|
#
|
|
31956
32438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
|
31957
32439
|
#
|
|
@@ -32062,6 +32544,13 @@ module Aws::RDS
|
|
|
32062
32544
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
32063
32545
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
32064
32546
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
32547
|
+
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
32548
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
32549
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32550
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].iops #=> Integer
|
|
32551
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32552
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32553
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_type #=> String
|
|
32065
32554
|
#
|
|
32066
32555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
32067
32556
|
#
|
|
@@ -32433,6 +32922,7 @@ module Aws::RDS
|
|
|
32433
32922
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
32434
32923
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
32435
32924
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
32925
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
32436
32926
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
32437
32927
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
32438
32928
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -32460,6 +32950,13 @@ module Aws::RDS
|
|
|
32460
32950
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
32461
32951
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
32462
32952
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
32953
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
32954
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
32955
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32956
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
32957
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32958
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32959
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
32463
32960
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
32464
32961
|
# resp.db_instance.multi_az #=> Boolean
|
|
32465
32962
|
# resp.db_instance.engine_version #=> String
|
|
@@ -32559,6 +33056,15 @@ module Aws::RDS
|
|
|
32559
33056
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
32560
33057
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
32561
33058
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
33059
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
33060
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
33061
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
33062
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
33063
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
33064
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
33065
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
33066
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
33067
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
32562
33068
|
#
|
|
32563
33069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
|
32564
33070
|
#
|
|
@@ -32587,7 +33093,7 @@ module Aws::RDS
|
|
|
32587
33093
|
tracer: tracer
|
|
32588
33094
|
)
|
|
32589
33095
|
context[:gem_name] = 'aws-sdk-rds'
|
|
32590
|
-
context[:gem_version] = '1.
|
|
33096
|
+
context[:gem_version] = '1.301.0'
|
|
32591
33097
|
Seahorse::Client::Request.new(handlers, context)
|
|
32592
33098
|
end
|
|
32593
33099
|
|