aws-sdk-rds 1.296.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 +25 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +560 -72
- data/lib/aws-sdk-rds/client_api.rb +104 -0
- data/lib/aws-sdk-rds/db_cluster.rb +30 -25
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +110 -23
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +47 -47
- data/lib/aws-sdk-rds/types.rb +559 -76
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +75 -7
- data/sig/db_cluster.rbs +5 -2
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +53 -3
- data/sig/db_snapshot.rbs +14 -1
- data/sig/errors.rbs +2 -0
- data/sig/resource.rbs +12 -2
- data/sig/types.rbs +84 -2
- 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
|
#
|
|
@@ -3261,40 +3297,31 @@ module Aws::RDS
|
|
|
3261
3297
|
# @option params [Boolean] :publicly_accessible
|
|
3262
3298
|
# Specifies whether the DB cluster is publicly accessible.
|
|
3263
3299
|
#
|
|
3300
|
+
# Valid for Cluster Type: Multi-AZ DB clusters only
|
|
3301
|
+
#
|
|
3264
3302
|
# When the DB cluster is publicly accessible and you connect from
|
|
3265
|
-
# outside of the DB cluster's virtual private cloud (VPC), its
|
|
3266
|
-
#
|
|
3303
|
+
# outside of the DB cluster's virtual private cloud (VPC), its domain
|
|
3304
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
|
3267
3305
|
# connect from within the same VPC as the DB cluster, the endpoint
|
|
3268
3306
|
# resolves to the private IP address. Access to the DB cluster is
|
|
3269
|
-
#
|
|
3270
|
-
# access isn't permitted if the security group assigned to the DB
|
|
3271
|
-
# cluster doesn't permit it.
|
|
3307
|
+
# controlled by its security group settings.
|
|
3272
3308
|
#
|
|
3273
3309
|
# When the DB cluster isn't publicly accessible, it is an internal DB
|
|
3274
3310
|
# cluster with a DNS name that resolves to a private IP address.
|
|
3275
3311
|
#
|
|
3276
|
-
#
|
|
3277
|
-
#
|
|
3278
|
-
# Default: The default behavior varies depending on whether
|
|
3279
|
-
# `DBSubnetGroupName` is specified.
|
|
3280
|
-
#
|
|
3281
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
|
3282
|
-
# isn't specified, the following applies:
|
|
3283
|
-
#
|
|
3284
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
|
3285
|
-
# gateway attached to it, the DB cluster is private.
|
|
3312
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
3313
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
3286
3314
|
#
|
|
3287
|
-
#
|
|
3288
|
-
#
|
|
3315
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
|
3316
|
+
# `true`.
|
|
3289
3317
|
#
|
|
3290
|
-
# If `
|
|
3291
|
-
#
|
|
3292
|
-
#
|
|
3293
|
-
# * If the subnets are part of a VPC that doesn’t have an internet
|
|
3294
|
-
# gateway attached to it, the DB cluster is private.
|
|
3318
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
3319
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
3320
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
3295
3321
|
#
|
|
3296
|
-
#
|
|
3297
|
-
#
|
|
3322
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
3323
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
3324
|
+
# returns an error.
|
|
3298
3325
|
#
|
|
3299
3326
|
# @option params [Boolean] :auto_minor_version_upgrade
|
|
3300
3327
|
# Specifies whether minor engine upgrades are applied automatically to
|
|
@@ -3852,7 +3879,7 @@ module Aws::RDS
|
|
|
3852
3879
|
# performance_insights_kms_key_id: "String",
|
|
3853
3880
|
# performance_insights_retention_period: 1,
|
|
3854
3881
|
# enable_limitless_database: false,
|
|
3855
|
-
# cluster_scalability_type: "standard", # accepts standard, limitless
|
|
3882
|
+
# cluster_scalability_type: "standard", # accepts standard, limitless
|
|
3856
3883
|
# db_system_id: "String",
|
|
3857
3884
|
# manage_master_user_password: false,
|
|
3858
3885
|
# enable_local_write_forwarding: false,
|
|
@@ -3892,6 +3919,7 @@ module Aws::RDS
|
|
|
3892
3919
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
3893
3920
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
3894
3921
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
3922
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
3895
3923
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
3896
3924
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
3897
3925
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -4003,7 +4031,7 @@ module Aws::RDS
|
|
|
4003
4031
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
4004
4032
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
4005
4033
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
4006
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
4034
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
4007
4035
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
4008
4036
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
4009
4037
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -4785,6 +4813,8 @@ module Aws::RDS
|
|
|
4785
4813
|
#
|
|
4786
4814
|
# * `postgres`
|
|
4787
4815
|
#
|
|
4816
|
+
# * `sqlserver-dev-ee`
|
|
4817
|
+
#
|
|
4788
4818
|
# * `sqlserver-ee`
|
|
4789
4819
|
#
|
|
4790
4820
|
# * `sqlserver-se`
|
|
@@ -5197,37 +5227,28 @@ module Aws::RDS
|
|
|
5197
5227
|
# Specifies whether the DB instance is publicly accessible.
|
|
5198
5228
|
#
|
|
5199
5229
|
# When the DB instance is publicly accessible and you connect from
|
|
5200
|
-
# outside of the DB instance's virtual private cloud (VPC), its
|
|
5201
|
-
#
|
|
5230
|
+
# outside of the DB instance's virtual private cloud (VPC), its domain
|
|
5231
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
|
5202
5232
|
# connect from within the same VPC as the DB instance, the endpoint
|
|
5203
5233
|
# resolves to the private IP address. Access to the DB instance is
|
|
5204
|
-
#
|
|
5205
|
-
# access is not permitted if the security group assigned to the DB
|
|
5206
|
-
# instance doesn't permit it.
|
|
5234
|
+
# controlled by its security group settings.
|
|
5207
5235
|
#
|
|
5208
5236
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
|
5209
5237
|
# instance with a DNS name that resolves to a private IP address.
|
|
5210
5238
|
#
|
|
5211
|
-
#
|
|
5212
|
-
# `
|
|
5213
|
-
#
|
|
5214
|
-
# If `DBSubnetGroupName` isn't specified, and `PubliclyAccessible`
|
|
5215
|
-
# isn't specified, the following applies:
|
|
5216
|
-
#
|
|
5217
|
-
# * If the default VPC in the target Region doesn’t have an internet
|
|
5218
|
-
# gateway attached to it, the DB instance is private.
|
|
5219
|
-
#
|
|
5220
|
-
# * If the default VPC in the target Region has an internet gateway
|
|
5221
|
-
# attached to it, the DB instance is public.
|
|
5239
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
5240
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
5222
5241
|
#
|
|
5223
|
-
# If `
|
|
5224
|
-
#
|
|
5242
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
|
5243
|
+
# `false` for Aurora instances and `true` for non-Aurora instances.
|
|
5225
5244
|
#
|
|
5226
|
-
#
|
|
5227
|
-
#
|
|
5245
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
5246
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
5247
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
5228
5248
|
#
|
|
5229
|
-
#
|
|
5230
|
-
#
|
|
5249
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
5250
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
5251
|
+
# returns an error.
|
|
5231
5252
|
#
|
|
5232
5253
|
# @option params [Array<Types::Tag>] :tags
|
|
5233
5254
|
# Tags to assign to the DB instance.
|
|
@@ -5790,6 +5811,13 @@ module Aws::RDS
|
|
|
5790
5811
|
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
|
5791
5812
|
# engines.
|
|
5792
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
|
+
#
|
|
5793
5821
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5794
5822
|
#
|
|
5795
5823
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -5982,6 +6010,16 @@ module Aws::RDS
|
|
|
5982
6010
|
# dedicated_log_volume: false,
|
|
5983
6011
|
# engine_lifecycle_support: "String",
|
|
5984
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
|
+
# ],
|
|
5985
6023
|
# })
|
|
5986
6024
|
#
|
|
5987
6025
|
# @example Response structure
|
|
@@ -6022,6 +6060,7 @@ module Aws::RDS
|
|
|
6022
6060
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
6023
6061
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
6024
6062
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
6063
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
6025
6064
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
6026
6065
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
6027
6066
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -6049,6 +6088,13 @@ module Aws::RDS
|
|
|
6049
6088
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
6050
6089
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
6051
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
|
|
6052
6098
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
6053
6099
|
# resp.db_instance.multi_az #=> Boolean
|
|
6054
6100
|
# resp.db_instance.engine_version #=> String
|
|
@@ -6148,6 +6194,15 @@ module Aws::RDS
|
|
|
6148
6194
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
6149
6195
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
6150
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
|
|
6151
6206
|
#
|
|
6152
6207
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
|
6153
6208
|
#
|
|
@@ -6903,6 +6958,13 @@ module Aws::RDS
|
|
|
6903
6958
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
6904
6959
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
6905
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
|
+
#
|
|
6906
6968
|
# @option params [String] :source_region
|
|
6907
6969
|
# The source region of the snapshot. This is only needed when the
|
|
6908
6970
|
# shapshot is encrypted and in a different region.
|
|
@@ -6993,6 +7055,16 @@ module Aws::RDS
|
|
|
6993
7055
|
# dedicated_log_volume: false,
|
|
6994
7056
|
# upgrade_storage_config: false,
|
|
6995
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
|
+
# ],
|
|
6996
7068
|
# source_region: "String",
|
|
6997
7069
|
# })
|
|
6998
7070
|
#
|
|
@@ -7034,6 +7106,7 @@ module Aws::RDS
|
|
|
7034
7106
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
7035
7107
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
7036
7108
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
7109
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
7037
7110
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
7038
7111
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
7039
7112
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -7061,6 +7134,13 @@ module Aws::RDS
|
|
|
7061
7134
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7062
7135
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
7063
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
|
|
7064
7144
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
7065
7145
|
# resp.db_instance.multi_az #=> Boolean
|
|
7066
7146
|
# resp.db_instance.engine_version #=> String
|
|
@@ -7160,6 +7240,15 @@ module Aws::RDS
|
|
|
7160
7240
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
7161
7241
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
7162
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
|
|
7163
7252
|
#
|
|
7164
7253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
|
7165
7254
|
#
|
|
@@ -7975,6 +8064,13 @@ module Aws::RDS
|
|
|
7975
8064
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
7976
8065
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
7977
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
|
|
7978
8074
|
#
|
|
7979
8075
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
|
7980
8076
|
#
|
|
@@ -9203,8 +9299,9 @@ module Aws::RDS
|
|
|
9203
9299
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.delete
|
|
9204
9300
|
#
|
|
9205
9301
|
# @option params [required, String] :engine
|
|
9206
|
-
# The database engine.
|
|
9207
|
-
#
|
|
9302
|
+
# The database engine.
|
|
9303
|
+
#
|
|
9304
|
+
# RDS Custom for Oracle supports the following values:
|
|
9208
9305
|
#
|
|
9209
9306
|
# * `custom-oracle-ee`
|
|
9210
9307
|
#
|
|
@@ -9214,6 +9311,18 @@ module Aws::RDS
|
|
|
9214
9311
|
#
|
|
9215
9312
|
# * `custom-oracle-se2-cdb`
|
|
9216
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
|
+
#
|
|
9217
9326
|
# @option params [required, String] :engine_version
|
|
9218
9327
|
# The custom engine version (CEV) for your DB instance. This option is
|
|
9219
9328
|
# required for RDS Custom, but optional for Amazon RDS. The combination
|
|
@@ -9257,6 +9366,8 @@ module Aws::RDS
|
|
|
9257
9366
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
9258
9367
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
9259
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
|
|
9260
9371
|
#
|
|
9261
9372
|
# @example Request syntax with placeholder values
|
|
9262
9373
|
#
|
|
@@ -9329,6 +9440,9 @@ module Aws::RDS
|
|
|
9329
9440
|
# resp.supports_integrations #=> Boolean
|
|
9330
9441
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
9331
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
|
|
9332
9446
|
#
|
|
9333
9447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
|
9334
9448
|
#
|
|
@@ -9478,6 +9592,7 @@ module Aws::RDS
|
|
|
9478
9592
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
9479
9593
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
9480
9594
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
9595
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
9481
9596
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
9482
9597
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
9483
9598
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -9589,7 +9704,7 @@ module Aws::RDS
|
|
|
9589
9704
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
9590
9705
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
9591
9706
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
9592
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
9707
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
9593
9708
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
9594
9709
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
9595
9710
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -10071,6 +10186,7 @@ module Aws::RDS
|
|
|
10071
10186
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
10072
10187
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
10073
10188
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
10189
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
10074
10190
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
10075
10191
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
10076
10192
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -10098,6 +10214,13 @@ module Aws::RDS
|
|
|
10098
10214
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
10099
10215
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
10100
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
|
|
10101
10224
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
10102
10225
|
# resp.db_instance.multi_az #=> Boolean
|
|
10103
10226
|
# resp.db_instance.engine_version #=> String
|
|
@@ -10197,6 +10320,15 @@ module Aws::RDS
|
|
|
10197
10320
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
10198
10321
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
10199
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
|
|
10200
10332
|
#
|
|
10201
10333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
10202
10334
|
#
|
|
@@ -10305,6 +10437,13 @@ module Aws::RDS
|
|
|
10305
10437
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
10306
10438
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
10307
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
|
|
10308
10447
|
#
|
|
10309
10448
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
|
10310
10449
|
#
|
|
@@ -10672,6 +10811,13 @@ module Aws::RDS
|
|
|
10672
10811
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
10673
10812
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
10674
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
|
|
10675
10821
|
#
|
|
10676
10822
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
|
10677
10823
|
#
|
|
@@ -12937,6 +13083,7 @@ module Aws::RDS
|
|
|
12937
13083
|
# resp.db_clusters[0].db_cluster_option_group_memberships[0].status #=> String
|
|
12938
13084
|
# resp.db_clusters[0].preferred_backup_window #=> String
|
|
12939
13085
|
# resp.db_clusters[0].preferred_maintenance_window #=> String
|
|
13086
|
+
# resp.db_clusters[0].upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
12940
13087
|
# resp.db_clusters[0].replication_source_identifier #=> String
|
|
12941
13088
|
# resp.db_clusters[0].read_replica_identifiers #=> Array
|
|
12942
13089
|
# resp.db_clusters[0].read_replica_identifiers[0] #=> String
|
|
@@ -13048,7 +13195,7 @@ module Aws::RDS
|
|
|
13048
13195
|
# resp.db_clusters[0].aws_backup_recovery_point_arn #=> String
|
|
13049
13196
|
# resp.db_clusters[0].limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
13050
13197
|
# resp.db_clusters[0].limitless_database.min_required_acu #=> Float
|
|
13051
|
-
# resp.db_clusters[0].cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
13198
|
+
# resp.db_clusters[0].cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
13052
13199
|
# resp.db_clusters[0].certificate_details.ca_identifier #=> String
|
|
13053
13200
|
# resp.db_clusters[0].certificate_details.valid_till #=> Time
|
|
13054
13201
|
# resp.db_clusters[0].engine_lifecycle_support #=> String
|
|
@@ -13341,6 +13488,9 @@ module Aws::RDS
|
|
|
13341
13488
|
# resp.db_engine_versions[0].supports_integrations #=> Boolean
|
|
13342
13489
|
# resp.db_engine_versions[0].serverless_v2_features_support.min_capacity #=> Float
|
|
13343
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
|
|
13344
13494
|
#
|
|
13345
13495
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
|
13346
13496
|
#
|
|
@@ -13513,6 +13663,13 @@ module Aws::RDS
|
|
|
13513
13663
|
# resp.db_instance_automated_backups[0].multi_tenant #=> Boolean
|
|
13514
13664
|
# resp.db_instance_automated_backups[0].aws_backup_recovery_point_arn #=> String
|
|
13515
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
|
|
13516
13673
|
#
|
|
13517
13674
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
|
13518
13675
|
#
|
|
@@ -13671,6 +13828,7 @@ module Aws::RDS
|
|
|
13671
13828
|
# resp.db_instances[0].db_subnet_group.supported_network_types #=> Array
|
|
13672
13829
|
# resp.db_instances[0].db_subnet_group.supported_network_types[0] #=> String
|
|
13673
13830
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
|
13831
|
+
# resp.db_instances[0].upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
13674
13832
|
# resp.db_instances[0].pending_modified_values.db_instance_class #=> String
|
|
13675
13833
|
# resp.db_instances[0].pending_modified_values.allocated_storage #=> Integer
|
|
13676
13834
|
# resp.db_instances[0].pending_modified_values.master_user_password #=> String
|
|
@@ -13698,6 +13856,13 @@ module Aws::RDS
|
|
|
13698
13856
|
# resp.db_instances[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
13699
13857
|
# resp.db_instances[0].pending_modified_values.dedicated_log_volume #=> Boolean
|
|
13700
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
|
|
13701
13866
|
# resp.db_instances[0].latest_restorable_time #=> Time
|
|
13702
13867
|
# resp.db_instances[0].multi_az #=> Boolean
|
|
13703
13868
|
# resp.db_instances[0].engine_version #=> String
|
|
@@ -13797,6 +13962,15 @@ module Aws::RDS
|
|
|
13797
13962
|
# resp.db_instances[0].dedicated_log_volume #=> Boolean
|
|
13798
13963
|
# resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
|
|
13799
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
|
|
13800
13974
|
#
|
|
13801
13975
|
#
|
|
13802
13976
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -15418,6 +15592,13 @@ module Aws::RDS
|
|
|
15418
15592
|
# resp.db_snapshots[0].multi_tenant #=> Boolean
|
|
15419
15593
|
# resp.db_snapshots[0].dedicated_log_volume #=> Boolean
|
|
15420
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
|
|
15421
15602
|
#
|
|
15422
15603
|
#
|
|
15423
15604
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -17231,6 +17412,20 @@ module Aws::RDS
|
|
|
17231
17412
|
# resp.orderable_db_instance_options[0].supports_clusters #=> Boolean
|
|
17232
17413
|
# resp.orderable_db_instance_options[0].supports_dedicated_log_volume #=> Boolean
|
|
17233
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
|
|
17234
17429
|
# resp.marker #=> String
|
|
17235
17430
|
#
|
|
17236
17431
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
|
@@ -18060,6 +18255,30 @@ module Aws::RDS
|
|
|
18060
18255
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].default_value #=> String
|
|
18061
18256
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].allowed_values #=> String
|
|
18062
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
|
|
18063
18282
|
#
|
|
18064
18283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeValidDBInstanceModifications AWS API Documentation
|
|
18065
18284
|
#
|
|
@@ -18380,6 +18599,7 @@ module Aws::RDS
|
|
|
18380
18599
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
18381
18600
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
18382
18601
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
18602
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
18383
18603
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
18384
18604
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
18385
18605
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -18491,7 +18711,7 @@ module Aws::RDS
|
|
|
18491
18711
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
18492
18712
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
18493
18713
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
18494
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
18714
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
18495
18715
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
18496
18716
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
18497
18717
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -19034,8 +19254,9 @@ module Aws::RDS
|
|
|
19034
19254
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.modify
|
|
19035
19255
|
#
|
|
19036
19256
|
# @option params [required, String] :engine
|
|
19037
|
-
# The database engine.
|
|
19038
|
-
#
|
|
19257
|
+
# The database engine.
|
|
19258
|
+
#
|
|
19259
|
+
# RDS Custom for Oracle supports the following values:
|
|
19039
19260
|
#
|
|
19040
19261
|
# * `custom-oracle-ee`
|
|
19041
19262
|
#
|
|
@@ -19045,6 +19266,18 @@ module Aws::RDS
|
|
|
19045
19266
|
#
|
|
19046
19267
|
# * `custom-oracle-se2-cdb`
|
|
19047
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
|
+
#
|
|
19048
19281
|
# @option params [required, String] :engine_version
|
|
19049
19282
|
# The custom engine version (CEV) that you want to modify. This option
|
|
19050
19283
|
# is required for RDS Custom for Oracle, but optional for Amazon RDS.
|
|
@@ -19113,6 +19346,8 @@ module Aws::RDS
|
|
|
19113
19346
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
19114
19347
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
19115
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
|
|
19116
19351
|
#
|
|
19117
19352
|
# @example Request syntax with placeholder values
|
|
19118
19353
|
#
|
|
@@ -19187,6 +19422,9 @@ module Aws::RDS
|
|
|
19187
19422
|
# resp.supports_integrations #=> Boolean
|
|
19188
19423
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
19189
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
|
|
19190
19428
|
#
|
|
19191
19429
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
|
19192
19430
|
#
|
|
@@ -20126,6 +20364,7 @@ module Aws::RDS
|
|
|
20126
20364
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
20127
20365
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
20128
20366
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
20367
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
20129
20368
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
20130
20369
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
20131
20370
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -20237,7 +20476,7 @@ module Aws::RDS
|
|
|
20237
20476
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
20238
20477
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
20239
20478
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
20240
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
20479
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
20241
20480
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
20242
20481
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
20243
20482
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -21177,7 +21416,7 @@ module Aws::RDS
|
|
|
21177
21416
|
#
|
|
21178
21417
|
# * Must be in the distinguished name format.
|
|
21179
21418
|
#
|
|
21180
|
-
#
|
|
21419
|
+
# ^
|
|
21181
21420
|
#
|
|
21182
21421
|
# Example:
|
|
21183
21422
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
|
@@ -21763,6 +22002,12 @@ module Aws::RDS
|
|
|
21763
22002
|
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
|
21764
22003
|
# engines.
|
|
21765
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
|
+
#
|
|
21766
22011
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
21767
22012
|
#
|
|
21768
22013
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -21891,6 +22136,17 @@ module Aws::RDS
|
|
|
21891
22136
|
# dedicated_log_volume: false,
|
|
21892
22137
|
# engine: "String",
|
|
21893
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
|
+
# ],
|
|
21894
22150
|
# })
|
|
21895
22151
|
#
|
|
21896
22152
|
# @example Response structure
|
|
@@ -21931,6 +22187,7 @@ module Aws::RDS
|
|
|
21931
22187
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
21932
22188
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
21933
22189
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
22190
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
21934
22191
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
21935
22192
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
21936
22193
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -21958,6 +22215,13 @@ module Aws::RDS
|
|
|
21958
22215
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
21959
22216
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
21960
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
|
|
21961
22225
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
21962
22226
|
# resp.db_instance.multi_az #=> Boolean
|
|
21963
22227
|
# resp.db_instance.engine_version #=> String
|
|
@@ -22057,6 +22321,15 @@ module Aws::RDS
|
|
|
22057
22321
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
22058
22322
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
22059
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
|
|
22060
22333
|
#
|
|
22061
22334
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
22062
22335
|
#
|
|
@@ -22786,6 +23059,13 @@ module Aws::RDS
|
|
|
22786
23059
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
22787
23060
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
22788
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
|
|
22789
23069
|
#
|
|
22790
23070
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
|
22791
23071
|
#
|
|
@@ -23880,6 +24160,7 @@ module Aws::RDS
|
|
|
23880
24160
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
23881
24161
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
23882
24162
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
24163
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
23883
24164
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
23884
24165
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
23885
24166
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -23907,6 +24188,13 @@ module Aws::RDS
|
|
|
23907
24188
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
23908
24189
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
23909
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
|
|
23910
24198
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
23911
24199
|
# resp.db_instance.multi_az #=> Boolean
|
|
23912
24200
|
# resp.db_instance.engine_version #=> String
|
|
@@ -24006,6 +24294,15 @@ module Aws::RDS
|
|
|
24006
24294
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
24007
24295
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
24008
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
|
|
24009
24306
|
#
|
|
24010
24307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
|
24011
24308
|
#
|
|
@@ -24069,6 +24366,7 @@ module Aws::RDS
|
|
|
24069
24366
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
24070
24367
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
24071
24368
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
24369
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24072
24370
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
24073
24371
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
24074
24372
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -24180,7 +24478,7 @@ module Aws::RDS
|
|
|
24180
24478
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
24181
24479
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
24182
24480
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
24183
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
24481
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
24184
24482
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
24185
24483
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
24186
24484
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -24374,6 +24672,7 @@ module Aws::RDS
|
|
|
24374
24672
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
24375
24673
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
24376
24674
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
24675
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24377
24676
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
24378
24677
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
24379
24678
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -24485,7 +24784,7 @@ module Aws::RDS
|
|
|
24485
24784
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
24486
24785
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
24487
24786
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
24488
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
24787
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
24489
24788
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
24490
24789
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
24491
24790
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -24610,6 +24909,7 @@ module Aws::RDS
|
|
|
24610
24909
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
24611
24910
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
24612
24911
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
24912
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24613
24913
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
24614
24914
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
24615
24915
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -24637,6 +24937,13 @@ module Aws::RDS
|
|
|
24637
24937
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
24638
24938
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
24639
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
|
|
24640
24947
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
24641
24948
|
# resp.db_instance.multi_az #=> Boolean
|
|
24642
24949
|
# resp.db_instance.engine_version #=> String
|
|
@@ -24736,6 +25043,15 @@ module Aws::RDS
|
|
|
24736
25043
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
24737
25044
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
24738
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
|
|
24739
25055
|
#
|
|
24740
25056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
|
24741
25057
|
#
|
|
@@ -25978,6 +26294,7 @@ module Aws::RDS
|
|
|
25978
26294
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
25979
26295
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
25980
26296
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
26297
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
25981
26298
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
25982
26299
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
25983
26300
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -26089,7 +26406,7 @@ module Aws::RDS
|
|
|
26089
26406
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
26090
26407
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
26091
26408
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
26092
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
26409
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
26093
26410
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
26094
26411
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
26095
26412
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -26804,6 +27121,7 @@ module Aws::RDS
|
|
|
26804
27121
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
26805
27122
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
26806
27123
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
27124
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
26807
27125
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
26808
27126
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
26809
27127
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -26915,7 +27233,7 @@ module Aws::RDS
|
|
|
26915
27233
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
26916
27234
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
26917
27235
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
26918
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
27236
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
26919
27237
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
26920
27238
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
26921
27239
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -27613,6 +27931,7 @@ module Aws::RDS
|
|
|
27613
27931
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
27614
27932
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
27615
27933
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
27934
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
27616
27935
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
27617
27936
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
27618
27937
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -27724,7 +28043,7 @@ module Aws::RDS
|
|
|
27724
28043
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
27725
28044
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
27726
28045
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
27727
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
28046
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
27728
28047
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
27729
28048
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
27730
28049
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -28407,6 +28726,13 @@ module Aws::RDS
|
|
|
28407
28726
|
# Amazon Web Services account has a different default KMS key for each
|
|
28408
28727
|
# Amazon Web Services Region.
|
|
28409
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
|
+
#
|
|
28410
28736
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
28411
28737
|
#
|
|
28412
28738
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -28506,6 +28832,16 @@ module Aws::RDS
|
|
|
28506
28832
|
# engine_lifecycle_support: "String",
|
|
28507
28833
|
# manage_master_user_password: false,
|
|
28508
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
|
+
# ],
|
|
28509
28845
|
# })
|
|
28510
28846
|
#
|
|
28511
28847
|
# @example Response structure
|
|
@@ -28546,6 +28882,7 @@ module Aws::RDS
|
|
|
28546
28882
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
28547
28883
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
28548
28884
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
28885
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
28549
28886
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
28550
28887
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
28551
28888
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -28573,6 +28910,13 @@ module Aws::RDS
|
|
|
28573
28910
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
28574
28911
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
28575
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
|
|
28576
28920
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
28577
28921
|
# resp.db_instance.multi_az #=> Boolean
|
|
28578
28922
|
# resp.db_instance.engine_version #=> String
|
|
@@ -28672,6 +29016,15 @@ module Aws::RDS
|
|
|
28672
29016
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
28673
29017
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
28674
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
|
|
28675
29028
|
#
|
|
28676
29029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
|
28677
29030
|
#
|
|
@@ -29255,6 +29608,13 @@ module Aws::RDS
|
|
|
29255
29608
|
#
|
|
29256
29609
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
29257
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
|
+
#
|
|
29258
29618
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
29259
29619
|
#
|
|
29260
29620
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
|
@@ -29324,6 +29684,16 @@ module Aws::RDS
|
|
|
29324
29684
|
# dedicated_log_volume: false,
|
|
29325
29685
|
# ca_certificate_identifier: "String",
|
|
29326
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
|
+
# ],
|
|
29327
29697
|
# })
|
|
29328
29698
|
#
|
|
29329
29699
|
# @example Response structure
|
|
@@ -29364,6 +29734,7 @@ module Aws::RDS
|
|
|
29364
29734
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
29365
29735
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
29366
29736
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
29737
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
29367
29738
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
29368
29739
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
29369
29740
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -29391,6 +29762,13 @@ module Aws::RDS
|
|
|
29391
29762
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
29392
29763
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
29393
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
|
|
29394
29772
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
29395
29773
|
# resp.db_instance.multi_az #=> Boolean
|
|
29396
29774
|
# resp.db_instance.engine_version #=> String
|
|
@@ -29490,6 +29868,15 @@ module Aws::RDS
|
|
|
29490
29868
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
29491
29869
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
29492
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
|
|
29493
29880
|
#
|
|
29494
29881
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
|
29495
29882
|
#
|
|
@@ -30173,6 +30560,13 @@ module Aws::RDS
|
|
|
30173
30560
|
# Amazon Web Services account has a different default KMS key for each
|
|
30174
30561
|
# Amazon Web Services Region.
|
|
30175
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
|
+
#
|
|
30176
30570
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
30177
30571
|
#
|
|
30178
30572
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -30335,6 +30729,16 @@ module Aws::RDS
|
|
|
30335
30729
|
# engine_lifecycle_support: "String",
|
|
30336
30730
|
# manage_master_user_password: false,
|
|
30337
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
|
+
# ],
|
|
30338
30742
|
# })
|
|
30339
30743
|
#
|
|
30340
30744
|
# @example Response structure
|
|
@@ -30375,6 +30779,7 @@ module Aws::RDS
|
|
|
30375
30779
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
30376
30780
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
30377
30781
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
30782
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
30378
30783
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
30379
30784
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
30380
30785
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -30402,6 +30807,13 @@ module Aws::RDS
|
|
|
30402
30807
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
30403
30808
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
30404
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
|
|
30405
30817
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
30406
30818
|
# resp.db_instance.multi_az #=> Boolean
|
|
30407
30819
|
# resp.db_instance.engine_version #=> String
|
|
@@ -30501,6 +30913,15 @@ module Aws::RDS
|
|
|
30501
30913
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
30502
30914
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
30503
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
|
|
30504
30925
|
#
|
|
30505
30926
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
|
30506
30927
|
#
|
|
@@ -30792,6 +31213,7 @@ module Aws::RDS
|
|
|
30792
31213
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
30793
31214
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
30794
31215
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
31216
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
30795
31217
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
30796
31218
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
30797
31219
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -30903,7 +31325,7 @@ module Aws::RDS
|
|
|
30903
31325
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
30904
31326
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
30905
31327
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
30906
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
31328
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
30907
31329
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
30908
31330
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
30909
31331
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -31000,6 +31422,7 @@ module Aws::RDS
|
|
|
31000
31422
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
31001
31423
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
31002
31424
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
31425
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
31003
31426
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
31004
31427
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
31005
31428
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -31027,6 +31450,13 @@ module Aws::RDS
|
|
|
31027
31450
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
31028
31451
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
31029
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
|
|
31030
31460
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
31031
31461
|
# resp.db_instance.multi_az #=> Boolean
|
|
31032
31462
|
# resp.db_instance.engine_version #=> String
|
|
@@ -31126,6 +31556,15 @@ module Aws::RDS
|
|
|
31126
31556
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
31127
31557
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
31128
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
|
|
31129
31568
|
#
|
|
31130
31569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
|
31131
31570
|
#
|
|
@@ -31284,6 +31723,13 @@ module Aws::RDS
|
|
|
31284
31723
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
31285
31724
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
31286
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
|
|
31287
31733
|
#
|
|
31288
31734
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
31289
31735
|
#
|
|
@@ -31628,6 +32074,7 @@ module Aws::RDS
|
|
|
31628
32074
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
31629
32075
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
31630
32076
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
32077
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
31631
32078
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
31632
32079
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
31633
32080
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -31739,7 +32186,7 @@ module Aws::RDS
|
|
|
31739
32186
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
31740
32187
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
31741
32188
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
31742
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
32189
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
31743
32190
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
31744
32191
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
31745
32192
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -31844,6 +32291,7 @@ module Aws::RDS
|
|
|
31844
32291
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
31845
32292
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
31846
32293
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
32294
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
31847
32295
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
31848
32296
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
31849
32297
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -31871,6 +32319,13 @@ module Aws::RDS
|
|
|
31871
32319
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
31872
32320
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
31873
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
|
|
31874
32329
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
31875
32330
|
# resp.db_instance.multi_az #=> Boolean
|
|
31876
32331
|
# resp.db_instance.engine_version #=> String
|
|
@@ -31970,6 +32425,15 @@ module Aws::RDS
|
|
|
31970
32425
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
31971
32426
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
31972
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
|
|
31973
32437
|
#
|
|
31974
32438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
|
31975
32439
|
#
|
|
@@ -32080,6 +32544,13 @@ module Aws::RDS
|
|
|
32080
32544
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
32081
32545
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
32082
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
|
|
32083
32554
|
#
|
|
32084
32555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
32085
32556
|
#
|
|
@@ -32451,6 +32922,7 @@ module Aws::RDS
|
|
|
32451
32922
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
32452
32923
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
32453
32924
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
32925
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
32454
32926
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
32455
32927
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
32456
32928
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -32478,6 +32950,13 @@ module Aws::RDS
|
|
|
32478
32950
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
32479
32951
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
32480
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
|
|
32481
32960
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
32482
32961
|
# resp.db_instance.multi_az #=> Boolean
|
|
32483
32962
|
# resp.db_instance.engine_version #=> String
|
|
@@ -32577,6 +33056,15 @@ module Aws::RDS
|
|
|
32577
33056
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
32578
33057
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
32579
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
|
|
32580
33068
|
#
|
|
32581
33069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
|
32582
33070
|
#
|
|
@@ -32605,7 +33093,7 @@ module Aws::RDS
|
|
|
32605
33093
|
tracer: tracer
|
|
32606
33094
|
)
|
|
32607
33095
|
context[:gem_name] = 'aws-sdk-rds'
|
|
32608
|
-
context[:gem_version] = '1.
|
|
33096
|
+
context[:gem_version] = '1.301.0'
|
|
32609
33097
|
Seahorse::Client::Request.new(handlers, context)
|
|
32610
33098
|
end
|
|
32611
33099
|
|