aws-sdk-rds 1.296.0 → 1.302.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +807 -72
- data/lib/aws-sdk-rds/client_api.rb +126 -0
- data/lib/aws-sdk-rds/db_cluster.rb +68 -25
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +19 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +16 -0
- data/lib/aws-sdk-rds/db_instance.rb +205 -23
- data/lib/aws-sdk-rds/db_snapshot.rb +43 -0
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/resource.rb +85 -47
- data/lib/aws-sdk-rds/types.rb +754 -81
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +206 -11
- data/sig/db_cluster.rbs +28 -3
- data/sig/db_cluster_snapshot.rbs +12 -1
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +109 -4
- data/sig/db_snapshot.rbs +25 -1
- data/sig/errors.rbs +2 -0
- data/sig/resource.rbs +34 -2
- data/sig/types.rbs +104 -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:
|
|
3312
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
3313
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
3283
3314
|
#
|
|
3284
|
-
#
|
|
3285
|
-
#
|
|
3315
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
|
3316
|
+
# `true`.
|
|
3286
3317
|
#
|
|
3287
|
-
#
|
|
3288
|
-
#
|
|
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`.
|
|
3289
3321
|
#
|
|
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.
|
|
3295
|
-
#
|
|
3296
|
-
# * If the subnets are part of a VPC that has an internet gateway
|
|
3297
|
-
# attached to it, the DB cluster is public.
|
|
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
|
|
@@ -3628,6 +3655,15 @@ module Aws::RDS
|
|
|
3628
3655
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
3629
3656
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3630
3657
|
#
|
|
3658
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
3659
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
3660
|
+
#
|
|
3661
|
+
# Valid Values:
|
|
3662
|
+
#
|
|
3663
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
3664
|
+
#
|
|
3665
|
+
# ^
|
|
3666
|
+
#
|
|
3631
3667
|
# @option params [String] :master_user_authentication_type
|
|
3632
3668
|
# Specifies the authentication type for the master user. With IAM master
|
|
3633
3669
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -3852,13 +3888,24 @@ module Aws::RDS
|
|
|
3852
3888
|
# performance_insights_kms_key_id: "String",
|
|
3853
3889
|
# performance_insights_retention_period: 1,
|
|
3854
3890
|
# enable_limitless_database: false,
|
|
3855
|
-
# cluster_scalability_type: "standard", # accepts standard, limitless
|
|
3891
|
+
# cluster_scalability_type: "standard", # accepts standard, limitless
|
|
3856
3892
|
# db_system_id: "String",
|
|
3857
3893
|
# manage_master_user_password: false,
|
|
3858
3894
|
# enable_local_write_forwarding: false,
|
|
3859
3895
|
# master_user_secret_kms_key_id: "String",
|
|
3860
3896
|
# ca_certificate_identifier: "String",
|
|
3861
3897
|
# engine_lifecycle_support: "String",
|
|
3898
|
+
# tag_specifications: [
|
|
3899
|
+
# {
|
|
3900
|
+
# resource_type: "String",
|
|
3901
|
+
# tags: [
|
|
3902
|
+
# {
|
|
3903
|
+
# key: "String",
|
|
3904
|
+
# value: "String",
|
|
3905
|
+
# },
|
|
3906
|
+
# ],
|
|
3907
|
+
# },
|
|
3908
|
+
# ],
|
|
3862
3909
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
3863
3910
|
# source_region: "String",
|
|
3864
3911
|
# })
|
|
@@ -3892,6 +3939,7 @@ module Aws::RDS
|
|
|
3892
3939
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
3893
3940
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
3894
3941
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
3942
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
3895
3943
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
3896
3944
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
3897
3945
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -4003,7 +4051,7 @@ module Aws::RDS
|
|
|
4003
4051
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
4004
4052
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
4005
4053
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
4006
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
4054
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
4007
4055
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
4008
4056
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
4009
4057
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -4785,6 +4833,8 @@ module Aws::RDS
|
|
|
4785
4833
|
#
|
|
4786
4834
|
# * `postgres`
|
|
4787
4835
|
#
|
|
4836
|
+
# * `sqlserver-dev-ee`
|
|
4837
|
+
#
|
|
4788
4838
|
# * `sqlserver-ee`
|
|
4789
4839
|
#
|
|
4790
4840
|
# * `sqlserver-se`
|
|
@@ -5197,37 +5247,28 @@ module Aws::RDS
|
|
|
5197
5247
|
# Specifies whether the DB instance is publicly accessible.
|
|
5198
5248
|
#
|
|
5199
5249
|
# When the DB instance is publicly accessible and you connect from
|
|
5200
|
-
# outside of the DB instance's virtual private cloud (VPC), its
|
|
5201
|
-
#
|
|
5250
|
+
# outside of the DB instance's virtual private cloud (VPC), its domain
|
|
5251
|
+
# name system (DNS) endpoint resolves to the public IP address. When you
|
|
5202
5252
|
# connect from within the same VPC as the DB instance, the endpoint
|
|
5203
5253
|
# 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.
|
|
5254
|
+
# controlled by its security group settings.
|
|
5207
5255
|
#
|
|
5208
5256
|
# When the DB instance isn't publicly accessible, it is an internal DB
|
|
5209
5257
|
# instance with a DNS name that resolves to a private IP address.
|
|
5210
5258
|
#
|
|
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.
|
|
5259
|
+
# The default behavior when `PubliclyAccessible` is not specified
|
|
5260
|
+
# depends on whether a `DBSubnetGroup` is specified.
|
|
5222
5261
|
#
|
|
5223
|
-
# If `
|
|
5224
|
-
#
|
|
5262
|
+
# If `DBSubnetGroup` isn't specified, `PubliclyAccessible` defaults to
|
|
5263
|
+
# `false` for Aurora instances and `true` for non-Aurora instances.
|
|
5225
5264
|
#
|
|
5226
|
-
#
|
|
5227
|
-
#
|
|
5265
|
+
# If `DBSubnetGroup` is specified, `PubliclyAccessible` defaults to
|
|
5266
|
+
# `false` unless the value of `DBSubnetGroup` is `default`, in which
|
|
5267
|
+
# case `PubliclyAccessible` defaults to `true`.
|
|
5228
5268
|
#
|
|
5229
|
-
#
|
|
5230
|
-
#
|
|
5269
|
+
# If `PubliclyAccessible` is true and the VPC that the `DBSubnetGroup`
|
|
5270
|
+
# is in doesn't have an internet gateway attached to it, Amazon RDS
|
|
5271
|
+
# returns an error.
|
|
5231
5272
|
#
|
|
5232
5273
|
# @option params [Array<Types::Tag>] :tags
|
|
5233
5274
|
# Tags to assign to the DB instance.
|
|
@@ -5776,6 +5817,15 @@ module Aws::RDS
|
|
|
5776
5817
|
#
|
|
5777
5818
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
5778
5819
|
#
|
|
5820
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
5821
|
+
# Tags to assign to resources associated with the DB instance.
|
|
5822
|
+
#
|
|
5823
|
+
# Valid Values:
|
|
5824
|
+
#
|
|
5825
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
5826
|
+
#
|
|
5827
|
+
# ^
|
|
5828
|
+
#
|
|
5779
5829
|
# @option params [String] :master_user_authentication_type
|
|
5780
5830
|
# Specifies the authentication type for the master user. With IAM master
|
|
5781
5831
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -5790,6 +5840,13 @@ module Aws::RDS
|
|
|
5790
5840
|
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
|
5791
5841
|
# engines.
|
|
5792
5842
|
#
|
|
5843
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
5844
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
5845
|
+
# You can create up to three additional storage volumes using the names
|
|
5846
|
+
# `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional storage
|
|
5847
|
+
# volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
5848
|
+
# instances only.
|
|
5849
|
+
#
|
|
5793
5850
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5794
5851
|
#
|
|
5795
5852
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -5981,7 +6038,28 @@ module Aws::RDS
|
|
|
5981
6038
|
# multi_tenant: false,
|
|
5982
6039
|
# dedicated_log_volume: false,
|
|
5983
6040
|
# engine_lifecycle_support: "String",
|
|
6041
|
+
# tag_specifications: [
|
|
6042
|
+
# {
|
|
6043
|
+
# resource_type: "String",
|
|
6044
|
+
# tags: [
|
|
6045
|
+
# {
|
|
6046
|
+
# key: "String",
|
|
6047
|
+
# value: "String",
|
|
6048
|
+
# },
|
|
6049
|
+
# ],
|
|
6050
|
+
# },
|
|
6051
|
+
# ],
|
|
5984
6052
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
6053
|
+
# additional_storage_volumes: [
|
|
6054
|
+
# {
|
|
6055
|
+
# volume_name: "String", # required
|
|
6056
|
+
# allocated_storage: 1,
|
|
6057
|
+
# iops: 1,
|
|
6058
|
+
# max_allocated_storage: 1,
|
|
6059
|
+
# storage_throughput: 1,
|
|
6060
|
+
# storage_type: "String",
|
|
6061
|
+
# },
|
|
6062
|
+
# ],
|
|
5985
6063
|
# })
|
|
5986
6064
|
#
|
|
5987
6065
|
# @example Response structure
|
|
@@ -6022,6 +6100,7 @@ module Aws::RDS
|
|
|
6022
6100
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
6023
6101
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
6024
6102
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
6103
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
6025
6104
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
6026
6105
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
6027
6106
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -6049,6 +6128,13 @@ module Aws::RDS
|
|
|
6049
6128
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
6050
6129
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
6051
6130
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
6131
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
6132
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
6133
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
6134
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
6135
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
6136
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
6137
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
6052
6138
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
6053
6139
|
# resp.db_instance.multi_az #=> Boolean
|
|
6054
6140
|
# resp.db_instance.engine_version #=> String
|
|
@@ -6148,6 +6234,15 @@ module Aws::RDS
|
|
|
6148
6234
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
6149
6235
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
6150
6236
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
6237
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
6238
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
6239
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
6240
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
6241
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
6242
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
6243
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
6244
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
6245
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
6151
6246
|
#
|
|
6152
6247
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
|
6153
6248
|
#
|
|
@@ -6903,6 +6998,22 @@ module Aws::RDS
|
|
|
6903
6998
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
6904
6999
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
6905
7000
|
#
|
|
7001
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
7002
|
+
# Tags to assign to resources associated with the DB instance.
|
|
7003
|
+
#
|
|
7004
|
+
# Valid Values:
|
|
7005
|
+
#
|
|
7006
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
7007
|
+
#
|
|
7008
|
+
# ^
|
|
7009
|
+
#
|
|
7010
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
7011
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
7012
|
+
# You can create up to three additional storage volumes using the names
|
|
7013
|
+
# `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional storage
|
|
7014
|
+
# volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
7015
|
+
# instances only.
|
|
7016
|
+
#
|
|
6906
7017
|
# @option params [String] :source_region
|
|
6907
7018
|
# The source region of the snapshot. This is only needed when the
|
|
6908
7019
|
# shapshot is encrypted and in a different region.
|
|
@@ -6993,6 +7104,27 @@ module Aws::RDS
|
|
|
6993
7104
|
# dedicated_log_volume: false,
|
|
6994
7105
|
# upgrade_storage_config: false,
|
|
6995
7106
|
# ca_certificate_identifier: "String",
|
|
7107
|
+
# tag_specifications: [
|
|
7108
|
+
# {
|
|
7109
|
+
# resource_type: "String",
|
|
7110
|
+
# tags: [
|
|
7111
|
+
# {
|
|
7112
|
+
# key: "String",
|
|
7113
|
+
# value: "String",
|
|
7114
|
+
# },
|
|
7115
|
+
# ],
|
|
7116
|
+
# },
|
|
7117
|
+
# ],
|
|
7118
|
+
# additional_storage_volumes: [
|
|
7119
|
+
# {
|
|
7120
|
+
# volume_name: "String", # required
|
|
7121
|
+
# allocated_storage: 1,
|
|
7122
|
+
# iops: 1,
|
|
7123
|
+
# max_allocated_storage: 1,
|
|
7124
|
+
# storage_throughput: 1,
|
|
7125
|
+
# storage_type: "String",
|
|
7126
|
+
# },
|
|
7127
|
+
# ],
|
|
6996
7128
|
# source_region: "String",
|
|
6997
7129
|
# })
|
|
6998
7130
|
#
|
|
@@ -7034,6 +7166,7 @@ module Aws::RDS
|
|
|
7034
7166
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
7035
7167
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
7036
7168
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
7169
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
7037
7170
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
7038
7171
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
7039
7172
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -7061,6 +7194,13 @@ module Aws::RDS
|
|
|
7061
7194
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7062
7195
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
7063
7196
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
7197
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
7198
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
7199
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
7200
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
7201
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
7202
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
7203
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
7064
7204
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
7065
7205
|
# resp.db_instance.multi_az #=> Boolean
|
|
7066
7206
|
# resp.db_instance.engine_version #=> String
|
|
@@ -7160,6 +7300,15 @@ module Aws::RDS
|
|
|
7160
7300
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
7161
7301
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
7162
7302
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
7303
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
7304
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
7305
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
7306
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
7307
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
7308
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
7309
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
7310
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
7311
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
7163
7312
|
#
|
|
7164
7313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
|
7165
7314
|
#
|
|
@@ -7975,6 +8124,13 @@ module Aws::RDS
|
|
|
7975
8124
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
7976
8125
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
7977
8126
|
# resp.db_snapshot.snapshot_availability_zone #=> String
|
|
8127
|
+
# resp.db_snapshot.additional_storage_volumes #=> Array
|
|
8128
|
+
# resp.db_snapshot.additional_storage_volumes[0].volume_name #=> String
|
|
8129
|
+
# resp.db_snapshot.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
8130
|
+
# resp.db_snapshot.additional_storage_volumes[0].iops #=> Integer
|
|
8131
|
+
# resp.db_snapshot.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
8132
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
8133
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_type #=> String
|
|
7978
8134
|
#
|
|
7979
8135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
|
7980
8136
|
#
|
|
@@ -9203,8 +9359,9 @@ module Aws::RDS
|
|
|
9203
9359
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.delete
|
|
9204
9360
|
#
|
|
9205
9361
|
# @option params [required, String] :engine
|
|
9206
|
-
# The database engine.
|
|
9207
|
-
#
|
|
9362
|
+
# The database engine.
|
|
9363
|
+
#
|
|
9364
|
+
# RDS Custom for Oracle supports the following values:
|
|
9208
9365
|
#
|
|
9209
9366
|
# * `custom-oracle-ee`
|
|
9210
9367
|
#
|
|
@@ -9214,6 +9371,18 @@ module Aws::RDS
|
|
|
9214
9371
|
#
|
|
9215
9372
|
# * `custom-oracle-se2-cdb`
|
|
9216
9373
|
#
|
|
9374
|
+
# RDS Custom for SQL Server supports the following values:
|
|
9375
|
+
#
|
|
9376
|
+
# * `custom-sqlserver-ee`
|
|
9377
|
+
#
|
|
9378
|
+
# * `custom-sqlserver-se`
|
|
9379
|
+
#
|
|
9380
|
+
# * `ccustom-sqlserver-web`
|
|
9381
|
+
#
|
|
9382
|
+
# * `custom-sqlserver-dev`
|
|
9383
|
+
#
|
|
9384
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
9385
|
+
#
|
|
9217
9386
|
# @option params [required, String] :engine_version
|
|
9218
9387
|
# The custom engine version (CEV) for your DB instance. This option is
|
|
9219
9388
|
# required for RDS Custom, but optional for Amazon RDS. The combination
|
|
@@ -9257,6 +9426,8 @@ module Aws::RDS
|
|
|
9257
9426
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
9258
9427
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
9259
9428
|
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
|
9429
|
+
# * {Types::DBEngineVersion#database_installation_files #database_installation_files} => Array<String>
|
|
9430
|
+
# * {Types::DBEngineVersion#failure_reason #failure_reason} => String
|
|
9260
9431
|
#
|
|
9261
9432
|
# @example Request syntax with placeholder values
|
|
9262
9433
|
#
|
|
@@ -9329,6 +9500,9 @@ module Aws::RDS
|
|
|
9329
9500
|
# resp.supports_integrations #=> Boolean
|
|
9330
9501
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
9331
9502
|
# resp.serverless_v2_features_support.max_capacity #=> Float
|
|
9503
|
+
# resp.database_installation_files #=> Array
|
|
9504
|
+
# resp.database_installation_files[0] #=> String
|
|
9505
|
+
# resp.failure_reason #=> String
|
|
9332
9506
|
#
|
|
9333
9507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
|
9334
9508
|
#
|
|
@@ -9478,6 +9652,7 @@ module Aws::RDS
|
|
|
9478
9652
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
9479
9653
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
9480
9654
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
9655
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
9481
9656
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
9482
9657
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
9483
9658
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -9589,7 +9764,7 @@ module Aws::RDS
|
|
|
9589
9764
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
9590
9765
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
9591
9766
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
9592
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
9767
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
9593
9768
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
9594
9769
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
9595
9770
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -9650,6 +9825,9 @@ module Aws::RDS
|
|
|
9650
9825
|
# resp.db_cluster_automated_backup.iops #=> Integer
|
|
9651
9826
|
# resp.db_cluster_automated_backup.storage_throughput #=> Integer
|
|
9652
9827
|
# resp.db_cluster_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
9828
|
+
# resp.db_cluster_automated_backup.tag_list #=> Array
|
|
9829
|
+
# resp.db_cluster_automated_backup.tag_list[0].key #=> String
|
|
9830
|
+
# resp.db_cluster_automated_backup.tag_list[0].value #=> String
|
|
9653
9831
|
#
|
|
9654
9832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackup AWS API Documentation
|
|
9655
9833
|
#
|
|
@@ -10071,6 +10249,7 @@ module Aws::RDS
|
|
|
10071
10249
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
10072
10250
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
10073
10251
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
10252
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
10074
10253
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
10075
10254
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
10076
10255
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -10098,6 +10277,13 @@ module Aws::RDS
|
|
|
10098
10277
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
10099
10278
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
10100
10279
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
10280
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
10281
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
10282
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10283
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
10284
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10285
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10286
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
10101
10287
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
10102
10288
|
# resp.db_instance.multi_az #=> Boolean
|
|
10103
10289
|
# resp.db_instance.engine_version #=> String
|
|
@@ -10197,6 +10383,15 @@ module Aws::RDS
|
|
|
10197
10383
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
10198
10384
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
10199
10385
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
10386
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
10387
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
10388
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
10389
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10390
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
10391
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10392
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10393
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
10394
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
10200
10395
|
#
|
|
10201
10396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
10202
10397
|
#
|
|
@@ -10304,7 +10499,17 @@ module Aws::RDS
|
|
|
10304
10499
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
10305
10500
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
10306
10501
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
10502
|
+
# resp.db_instance_automated_backup.tag_list #=> Array
|
|
10503
|
+
# resp.db_instance_automated_backup.tag_list[0].key #=> String
|
|
10504
|
+
# resp.db_instance_automated_backup.tag_list[0].value #=> String
|
|
10307
10505
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
10506
|
+
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
10507
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
10508
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10509
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].iops #=> Integer
|
|
10510
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10511
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10512
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_type #=> String
|
|
10308
10513
|
#
|
|
10309
10514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
|
10310
10515
|
#
|
|
@@ -10672,6 +10877,13 @@ module Aws::RDS
|
|
|
10672
10877
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
10673
10878
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
10674
10879
|
# resp.db_snapshot.snapshot_availability_zone #=> String
|
|
10880
|
+
# resp.db_snapshot.additional_storage_volumes #=> Array
|
|
10881
|
+
# resp.db_snapshot.additional_storage_volumes[0].volume_name #=> String
|
|
10882
|
+
# resp.db_snapshot.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
10883
|
+
# resp.db_snapshot.additional_storage_volumes[0].iops #=> Integer
|
|
10884
|
+
# resp.db_snapshot.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
10885
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
10886
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_type #=> String
|
|
10675
10887
|
#
|
|
10676
10888
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
|
10677
10889
|
#
|
|
@@ -11790,6 +12002,9 @@ module Aws::RDS
|
|
|
11790
12002
|
# resp.db_cluster_automated_backups[0].iops #=> Integer
|
|
11791
12003
|
# resp.db_cluster_automated_backups[0].storage_throughput #=> Integer
|
|
11792
12004
|
# resp.db_cluster_automated_backups[0].aws_backup_recovery_point_arn #=> String
|
|
12005
|
+
# resp.db_cluster_automated_backups[0].tag_list #=> Array
|
|
12006
|
+
# resp.db_cluster_automated_backups[0].tag_list[0].key #=> String
|
|
12007
|
+
# resp.db_cluster_automated_backups[0].tag_list[0].value #=> String
|
|
11793
12008
|
#
|
|
11794
12009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterAutomatedBackups AWS API Documentation
|
|
11795
12010
|
#
|
|
@@ -12937,6 +13152,7 @@ module Aws::RDS
|
|
|
12937
13152
|
# resp.db_clusters[0].db_cluster_option_group_memberships[0].status #=> String
|
|
12938
13153
|
# resp.db_clusters[0].preferred_backup_window #=> String
|
|
12939
13154
|
# resp.db_clusters[0].preferred_maintenance_window #=> String
|
|
13155
|
+
# resp.db_clusters[0].upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
12940
13156
|
# resp.db_clusters[0].replication_source_identifier #=> String
|
|
12941
13157
|
# resp.db_clusters[0].read_replica_identifiers #=> Array
|
|
12942
13158
|
# resp.db_clusters[0].read_replica_identifiers[0] #=> String
|
|
@@ -13048,7 +13264,7 @@ module Aws::RDS
|
|
|
13048
13264
|
# resp.db_clusters[0].aws_backup_recovery_point_arn #=> String
|
|
13049
13265
|
# resp.db_clusters[0].limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
13050
13266
|
# resp.db_clusters[0].limitless_database.min_required_acu #=> Float
|
|
13051
|
-
# resp.db_clusters[0].cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
13267
|
+
# resp.db_clusters[0].cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
13052
13268
|
# resp.db_clusters[0].certificate_details.ca_identifier #=> String
|
|
13053
13269
|
# resp.db_clusters[0].certificate_details.valid_till #=> Time
|
|
13054
13270
|
# resp.db_clusters[0].engine_lifecycle_support #=> String
|
|
@@ -13341,6 +13557,9 @@ module Aws::RDS
|
|
|
13341
13557
|
# resp.db_engine_versions[0].supports_integrations #=> Boolean
|
|
13342
13558
|
# resp.db_engine_versions[0].serverless_v2_features_support.min_capacity #=> Float
|
|
13343
13559
|
# resp.db_engine_versions[0].serverless_v2_features_support.max_capacity #=> Float
|
|
13560
|
+
# resp.db_engine_versions[0].database_installation_files #=> Array
|
|
13561
|
+
# resp.db_engine_versions[0].database_installation_files[0] #=> String
|
|
13562
|
+
# resp.db_engine_versions[0].failure_reason #=> String
|
|
13344
13563
|
#
|
|
13345
13564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
|
13346
13565
|
#
|
|
@@ -13512,7 +13731,17 @@ module Aws::RDS
|
|
|
13512
13731
|
# resp.db_instance_automated_backups[0].backup_target #=> String
|
|
13513
13732
|
# resp.db_instance_automated_backups[0].multi_tenant #=> Boolean
|
|
13514
13733
|
# resp.db_instance_automated_backups[0].aws_backup_recovery_point_arn #=> String
|
|
13734
|
+
# resp.db_instance_automated_backups[0].tag_list #=> Array
|
|
13735
|
+
# resp.db_instance_automated_backups[0].tag_list[0].key #=> String
|
|
13736
|
+
# resp.db_instance_automated_backups[0].tag_list[0].value #=> String
|
|
13515
13737
|
# resp.db_instance_automated_backups[0].dedicated_log_volume #=> Boolean
|
|
13738
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes #=> Array
|
|
13739
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].volume_name #=> String
|
|
13740
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].allocated_storage #=> Integer
|
|
13741
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].iops #=> Integer
|
|
13742
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
13743
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].storage_throughput #=> Integer
|
|
13744
|
+
# resp.db_instance_automated_backups[0].additional_storage_volumes[0].storage_type #=> String
|
|
13516
13745
|
#
|
|
13517
13746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
|
13518
13747
|
#
|
|
@@ -13671,6 +13900,7 @@ module Aws::RDS
|
|
|
13671
13900
|
# resp.db_instances[0].db_subnet_group.supported_network_types #=> Array
|
|
13672
13901
|
# resp.db_instances[0].db_subnet_group.supported_network_types[0] #=> String
|
|
13673
13902
|
# resp.db_instances[0].preferred_maintenance_window #=> String
|
|
13903
|
+
# resp.db_instances[0].upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
13674
13904
|
# resp.db_instances[0].pending_modified_values.db_instance_class #=> String
|
|
13675
13905
|
# resp.db_instances[0].pending_modified_values.allocated_storage #=> Integer
|
|
13676
13906
|
# resp.db_instances[0].pending_modified_values.master_user_password #=> String
|
|
@@ -13698,6 +13928,13 @@ module Aws::RDS
|
|
|
13698
13928
|
# resp.db_instances[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
13699
13929
|
# resp.db_instances[0].pending_modified_values.dedicated_log_volume #=> Boolean
|
|
13700
13930
|
# resp.db_instances[0].pending_modified_values.engine #=> String
|
|
13931
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes #=> Array
|
|
13932
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
13933
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
13934
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
13935
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
13936
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
13937
|
+
# resp.db_instances[0].pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
13701
13938
|
# resp.db_instances[0].latest_restorable_time #=> Time
|
|
13702
13939
|
# resp.db_instances[0].multi_az #=> Boolean
|
|
13703
13940
|
# resp.db_instances[0].engine_version #=> String
|
|
@@ -13797,6 +14034,15 @@ module Aws::RDS
|
|
|
13797
14034
|
# resp.db_instances[0].dedicated_log_volume #=> Boolean
|
|
13798
14035
|
# resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
|
|
13799
14036
|
# resp.db_instances[0].engine_lifecycle_support #=> String
|
|
14037
|
+
# resp.db_instances[0].additional_storage_volumes #=> Array
|
|
14038
|
+
# resp.db_instances[0].additional_storage_volumes[0].volume_name #=> String
|
|
14039
|
+
# resp.db_instances[0].additional_storage_volumes[0].storage_volume_status #=> String
|
|
14040
|
+
# resp.db_instances[0].additional_storage_volumes[0].allocated_storage #=> Integer
|
|
14041
|
+
# resp.db_instances[0].additional_storage_volumes[0].iops #=> Integer
|
|
14042
|
+
# resp.db_instances[0].additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
14043
|
+
# resp.db_instances[0].additional_storage_volumes[0].storage_throughput #=> Integer
|
|
14044
|
+
# resp.db_instances[0].additional_storage_volumes[0].storage_type #=> String
|
|
14045
|
+
# resp.db_instances[0].storage_volume_status #=> String
|
|
13800
14046
|
#
|
|
13801
14047
|
#
|
|
13802
14048
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -15418,6 +15664,13 @@ module Aws::RDS
|
|
|
15418
15664
|
# resp.db_snapshots[0].multi_tenant #=> Boolean
|
|
15419
15665
|
# resp.db_snapshots[0].dedicated_log_volume #=> Boolean
|
|
15420
15666
|
# resp.db_snapshots[0].snapshot_availability_zone #=> String
|
|
15667
|
+
# resp.db_snapshots[0].additional_storage_volumes #=> Array
|
|
15668
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].volume_name #=> String
|
|
15669
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].allocated_storage #=> Integer
|
|
15670
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].iops #=> Integer
|
|
15671
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
15672
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].storage_throughput #=> Integer
|
|
15673
|
+
# resp.db_snapshots[0].additional_storage_volumes[0].storage_type #=> String
|
|
15421
15674
|
#
|
|
15422
15675
|
#
|
|
15423
15676
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -17231,6 +17484,20 @@ module Aws::RDS
|
|
|
17231
17484
|
# resp.orderable_db_instance_options[0].supports_clusters #=> Boolean
|
|
17232
17485
|
# resp.orderable_db_instance_options[0].supports_dedicated_log_volume #=> Boolean
|
|
17233
17486
|
# resp.orderable_db_instance_options[0].supports_http_endpoint #=> Boolean
|
|
17487
|
+
# resp.orderable_db_instance_options[0].supports_additional_storage_volumes #=> Boolean
|
|
17488
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options #=> Array
|
|
17489
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].supports_storage_autoscaling #=> Boolean
|
|
17490
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].supports_storage_throughput #=> Boolean
|
|
17491
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].supports_iops #=> Boolean
|
|
17492
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].storage_type #=> String
|
|
17493
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].min_storage_size #=> Integer
|
|
17494
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].max_storage_size #=> Integer
|
|
17495
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].min_iops #=> Integer
|
|
17496
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].max_iops #=> Integer
|
|
17497
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].min_iops_per_gib #=> Float
|
|
17498
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].max_iops_per_gib #=> Float
|
|
17499
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].min_storage_throughput #=> Integer
|
|
17500
|
+
# resp.orderable_db_instance_options[0].available_additional_storage_volumes_options[0].max_storage_throughput #=> Integer
|
|
17234
17501
|
# resp.marker #=> String
|
|
17235
17502
|
#
|
|
17236
17503
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
|
@@ -18060,6 +18327,30 @@ module Aws::RDS
|
|
|
18060
18327
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].default_value #=> String
|
|
18061
18328
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].allowed_values #=> String
|
|
18062
18329
|
# resp.valid_db_instance_modifications_message.supports_dedicated_log_volume #=> Boolean
|
|
18330
|
+
# resp.valid_db_instance_modifications_message.additional_storage.supports_additional_storage_volumes #=> Boolean
|
|
18331
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes #=> Array
|
|
18332
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].volume_name #=> String
|
|
18333
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage #=> Array
|
|
18334
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_type #=> String
|
|
18335
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_size #=> Array
|
|
18336
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_size[0].from #=> Integer
|
|
18337
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_size[0].to #=> Integer
|
|
18338
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_size[0].step #=> Integer
|
|
18339
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_iops #=> Array
|
|
18340
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_iops[0].from #=> Integer
|
|
18341
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_iops[0].to #=> Integer
|
|
18342
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_iops[0].step #=> Integer
|
|
18343
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].iops_to_storage_ratio #=> Array
|
|
18344
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].iops_to_storage_ratio[0].from #=> Float
|
|
18345
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].iops_to_storage_ratio[0].to #=> Float
|
|
18346
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_storage_throughput #=> Array
|
|
18347
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_storage_throughput[0].from #=> Integer
|
|
18348
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_storage_throughput[0].to #=> Integer
|
|
18349
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].provisioned_storage_throughput[0].step #=> Integer
|
|
18350
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_throughput_to_iops_ratio #=> Array
|
|
18351
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_throughput_to_iops_ratio[0].from #=> Float
|
|
18352
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].storage_throughput_to_iops_ratio[0].to #=> Float
|
|
18353
|
+
# resp.valid_db_instance_modifications_message.additional_storage.volumes[0].storage[0].supports_storage_autoscaling #=> Boolean
|
|
18063
18354
|
#
|
|
18064
18355
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeValidDBInstanceModifications AWS API Documentation
|
|
18065
18356
|
#
|
|
@@ -18380,6 +18671,7 @@ module Aws::RDS
|
|
|
18380
18671
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
18381
18672
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
18382
18673
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
18674
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
18383
18675
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
18384
18676
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
18385
18677
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -18491,7 +18783,7 @@ module Aws::RDS
|
|
|
18491
18783
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
18492
18784
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
18493
18785
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
18494
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
18786
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
18495
18787
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
18496
18788
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
18497
18789
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -19034,8 +19326,9 @@ module Aws::RDS
|
|
|
19034
19326
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.modify
|
|
19035
19327
|
#
|
|
19036
19328
|
# @option params [required, String] :engine
|
|
19037
|
-
# The database engine.
|
|
19038
|
-
#
|
|
19329
|
+
# The database engine.
|
|
19330
|
+
#
|
|
19331
|
+
# RDS Custom for Oracle supports the following values:
|
|
19039
19332
|
#
|
|
19040
19333
|
# * `custom-oracle-ee`
|
|
19041
19334
|
#
|
|
@@ -19045,6 +19338,18 @@ module Aws::RDS
|
|
|
19045
19338
|
#
|
|
19046
19339
|
# * `custom-oracle-se2-cdb`
|
|
19047
19340
|
#
|
|
19341
|
+
# RDS Custom for SQL Server supports the following values:
|
|
19342
|
+
#
|
|
19343
|
+
# * `custom-sqlserver-ee`
|
|
19344
|
+
#
|
|
19345
|
+
# * `custom-sqlserver-se`
|
|
19346
|
+
#
|
|
19347
|
+
# * `ccustom-sqlserver-web`
|
|
19348
|
+
#
|
|
19349
|
+
# * `custom-sqlserver-dev`
|
|
19350
|
+
#
|
|
19351
|
+
# RDS for SQL Server supports only `sqlserver-dev-ee`.
|
|
19352
|
+
#
|
|
19048
19353
|
# @option params [required, String] :engine_version
|
|
19049
19354
|
# The custom engine version (CEV) that you want to modify. This option
|
|
19050
19355
|
# is required for RDS Custom for Oracle, but optional for Amazon RDS.
|
|
@@ -19113,6 +19418,8 @@ module Aws::RDS
|
|
|
19113
19418
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
19114
19419
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
19115
19420
|
# * {Types::DBEngineVersion#serverless_v2_features_support #serverless_v2_features_support} => Types::ServerlessV2FeaturesSupport
|
|
19421
|
+
# * {Types::DBEngineVersion#database_installation_files #database_installation_files} => Array<String>
|
|
19422
|
+
# * {Types::DBEngineVersion#failure_reason #failure_reason} => String
|
|
19116
19423
|
#
|
|
19117
19424
|
# @example Request syntax with placeholder values
|
|
19118
19425
|
#
|
|
@@ -19187,6 +19494,9 @@ module Aws::RDS
|
|
|
19187
19494
|
# resp.supports_integrations #=> Boolean
|
|
19188
19495
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
19189
19496
|
# resp.serverless_v2_features_support.max_capacity #=> Float
|
|
19497
|
+
# resp.database_installation_files #=> Array
|
|
19498
|
+
# resp.database_installation_files[0] #=> String
|
|
19499
|
+
# resp.failure_reason #=> String
|
|
19190
19500
|
#
|
|
19191
19501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
|
19192
19502
|
#
|
|
@@ -20126,6 +20436,7 @@ module Aws::RDS
|
|
|
20126
20436
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
20127
20437
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
20128
20438
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
20439
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
20129
20440
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
20130
20441
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
20131
20442
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -20237,7 +20548,7 @@ module Aws::RDS
|
|
|
20237
20548
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
20238
20549
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
20239
20550
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
20240
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
20551
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
20241
20552
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
20242
20553
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
20243
20554
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -21177,7 +21488,7 @@ module Aws::RDS
|
|
|
21177
21488
|
#
|
|
21178
21489
|
# * Must be in the distinguished name format.
|
|
21179
21490
|
#
|
|
21180
|
-
#
|
|
21491
|
+
# ^
|
|
21181
21492
|
#
|
|
21182
21493
|
# Example:
|
|
21183
21494
|
# `OU=mymanagedADtestOU,DC=mymanagedADtest,DC=mymanagedAD,DC=mydomain`
|
|
@@ -21749,6 +22060,15 @@ module Aws::RDS
|
|
|
21749
22060
|
# parameter group with `--db-parameter-group-name` and a new option
|
|
21750
22061
|
# group with `--option-group-name`.
|
|
21751
22062
|
#
|
|
22063
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
22064
|
+
# Tags to assign to resources associated with the DB instance.
|
|
22065
|
+
#
|
|
22066
|
+
# Valid Values:
|
|
22067
|
+
#
|
|
22068
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
22069
|
+
#
|
|
22070
|
+
# ^
|
|
22071
|
+
#
|
|
21752
22072
|
# @option params [String] :master_user_authentication_type
|
|
21753
22073
|
# Specifies the authentication type for the master user. With IAM master
|
|
21754
22074
|
# user authentication, you can change the master DB user to use IAM
|
|
@@ -21763,6 +22083,12 @@ module Aws::RDS
|
|
|
21763
22083
|
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
|
21764
22084
|
# engines.
|
|
21765
22085
|
#
|
|
22086
|
+
# @option params [Array<Types::ModifyAdditionalStorageVolume>] :additional_storage_volumes
|
|
22087
|
+
# A list of additional storage volumes to modify or delete for the DB
|
|
22088
|
+
# instance. You can create up to 3 additional storage volumes.
|
|
22089
|
+
# Additional storage volumes are supported for RDS for Oracle and RDS
|
|
22090
|
+
# for SQL Server DB instances only.
|
|
22091
|
+
#
|
|
21766
22092
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
21767
22093
|
#
|
|
21768
22094
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -21890,7 +22216,29 @@ module Aws::RDS
|
|
|
21890
22216
|
# multi_tenant: false,
|
|
21891
22217
|
# dedicated_log_volume: false,
|
|
21892
22218
|
# engine: "String",
|
|
22219
|
+
# tag_specifications: [
|
|
22220
|
+
# {
|
|
22221
|
+
# resource_type: "String",
|
|
22222
|
+
# tags: [
|
|
22223
|
+
# {
|
|
22224
|
+
# key: "String",
|
|
22225
|
+
# value: "String",
|
|
22226
|
+
# },
|
|
22227
|
+
# ],
|
|
22228
|
+
# },
|
|
22229
|
+
# ],
|
|
21893
22230
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
22231
|
+
# additional_storage_volumes: [
|
|
22232
|
+
# {
|
|
22233
|
+
# volume_name: "String", # required
|
|
22234
|
+
# allocated_storage: 1,
|
|
22235
|
+
# iops: 1,
|
|
22236
|
+
# max_allocated_storage: 1,
|
|
22237
|
+
# storage_throughput: 1,
|
|
22238
|
+
# storage_type: "String",
|
|
22239
|
+
# set_for_delete: false,
|
|
22240
|
+
# },
|
|
22241
|
+
# ],
|
|
21894
22242
|
# })
|
|
21895
22243
|
#
|
|
21896
22244
|
# @example Response structure
|
|
@@ -21931,6 +22279,7 @@ module Aws::RDS
|
|
|
21931
22279
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
21932
22280
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
21933
22281
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
22282
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
21934
22283
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
21935
22284
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
21936
22285
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -21958,6 +22307,13 @@ module Aws::RDS
|
|
|
21958
22307
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
21959
22308
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
21960
22309
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
22310
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
22311
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
22312
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
22313
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
22314
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
22315
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
22316
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
21961
22317
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
21962
22318
|
# resp.db_instance.multi_az #=> Boolean
|
|
21963
22319
|
# resp.db_instance.engine_version #=> String
|
|
@@ -22057,6 +22413,15 @@ module Aws::RDS
|
|
|
22057
22413
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
22058
22414
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
22059
22415
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
22416
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
22417
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
22418
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
22419
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
22420
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
22421
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
22422
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
22423
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
22424
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
22060
22425
|
#
|
|
22061
22426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
22062
22427
|
#
|
|
@@ -22786,6 +23151,13 @@ module Aws::RDS
|
|
|
22786
23151
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
22787
23152
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
22788
23153
|
# resp.db_snapshot.snapshot_availability_zone #=> String
|
|
23154
|
+
# resp.db_snapshot.additional_storage_volumes #=> Array
|
|
23155
|
+
# resp.db_snapshot.additional_storage_volumes[0].volume_name #=> String
|
|
23156
|
+
# resp.db_snapshot.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
23157
|
+
# resp.db_snapshot.additional_storage_volumes[0].iops #=> Integer
|
|
23158
|
+
# resp.db_snapshot.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
23159
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
23160
|
+
# resp.db_snapshot.additional_storage_volumes[0].storage_type #=> String
|
|
22789
23161
|
#
|
|
22790
23162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
|
22791
23163
|
#
|
|
@@ -23811,6 +24183,15 @@ module Aws::RDS
|
|
|
23811
24183
|
#
|
|
23812
24184
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
|
23813
24185
|
#
|
|
24186
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
24187
|
+
# Tags to assign to resources associated with the DB instance.
|
|
24188
|
+
#
|
|
24189
|
+
# Valid Values:
|
|
24190
|
+
#
|
|
24191
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
24192
|
+
#
|
|
24193
|
+
# ^
|
|
24194
|
+
#
|
|
23814
24195
|
# @return [Types::PromoteReadReplicaResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
23815
24196
|
#
|
|
23816
24197
|
# * {Types::PromoteReadReplicaResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -23840,6 +24221,17 @@ module Aws::RDS
|
|
|
23840
24221
|
# db_instance_identifier: "String", # required
|
|
23841
24222
|
# backup_retention_period: 1,
|
|
23842
24223
|
# preferred_backup_window: "String",
|
|
24224
|
+
# tag_specifications: [
|
|
24225
|
+
# {
|
|
24226
|
+
# resource_type: "String",
|
|
24227
|
+
# tags: [
|
|
24228
|
+
# {
|
|
24229
|
+
# key: "String",
|
|
24230
|
+
# value: "String",
|
|
24231
|
+
# },
|
|
24232
|
+
# ],
|
|
24233
|
+
# },
|
|
24234
|
+
# ],
|
|
23843
24235
|
# })
|
|
23844
24236
|
#
|
|
23845
24237
|
# @example Response structure
|
|
@@ -23880,6 +24272,7 @@ module Aws::RDS
|
|
|
23880
24272
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
23881
24273
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
23882
24274
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
24275
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
23883
24276
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
23884
24277
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
23885
24278
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -23907,6 +24300,13 @@ module Aws::RDS
|
|
|
23907
24300
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
23908
24301
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
23909
24302
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
24303
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
24304
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
24305
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
24306
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
24307
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
24308
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
24309
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
23910
24310
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
23911
24311
|
# resp.db_instance.multi_az #=> Boolean
|
|
23912
24312
|
# resp.db_instance.engine_version #=> String
|
|
@@ -24006,6 +24406,15 @@ module Aws::RDS
|
|
|
24006
24406
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
24007
24407
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
24008
24408
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
24409
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
24410
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
24411
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
24412
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
24413
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
24414
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
24415
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
24416
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
24417
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
24009
24418
|
#
|
|
24010
24419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
|
24011
24420
|
#
|
|
@@ -24069,6 +24478,7 @@ module Aws::RDS
|
|
|
24069
24478
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
24070
24479
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
24071
24480
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
24481
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24072
24482
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
24073
24483
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
24074
24484
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -24180,7 +24590,7 @@ module Aws::RDS
|
|
|
24180
24590
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
24181
24591
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
24182
24592
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
24183
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
24593
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
24184
24594
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
24185
24595
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
24186
24596
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -24374,6 +24784,7 @@ module Aws::RDS
|
|
|
24374
24784
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
24375
24785
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
24376
24786
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
24787
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24377
24788
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
24378
24789
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
24379
24790
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -24485,7 +24896,7 @@ module Aws::RDS
|
|
|
24485
24896
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
24486
24897
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
24487
24898
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
24488
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
24899
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
24489
24900
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
24490
24901
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
24491
24902
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -24610,6 +25021,7 @@ module Aws::RDS
|
|
|
24610
25021
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
24611
25022
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
24612
25023
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
25024
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
24613
25025
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
24614
25026
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
24615
25027
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -24637,6 +25049,13 @@ module Aws::RDS
|
|
|
24637
25049
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
24638
25050
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
24639
25051
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
25052
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
25053
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
25054
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
25055
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
25056
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
25057
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
25058
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
24640
25059
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
24641
25060
|
# resp.db_instance.multi_az #=> Boolean
|
|
24642
25061
|
# resp.db_instance.engine_version #=> String
|
|
@@ -24736,6 +25155,15 @@ module Aws::RDS
|
|
|
24736
25155
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
24737
25156
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
24738
25157
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
25158
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
25159
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
25160
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
25161
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
25162
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
25163
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
25164
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
25165
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
25166
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
24739
25167
|
#
|
|
24740
25168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
|
24741
25169
|
#
|
|
@@ -25825,6 +26253,15 @@ module Aws::RDS
|
|
|
25825
26253
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
25826
26254
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
25827
26255
|
#
|
|
26256
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
26257
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
26258
|
+
#
|
|
26259
|
+
# Valid Values:
|
|
26260
|
+
#
|
|
26261
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
26262
|
+
#
|
|
26263
|
+
# ^
|
|
26264
|
+
#
|
|
25828
26265
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
25829
26266
|
#
|
|
25830
26267
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -25947,6 +26384,17 @@ module Aws::RDS
|
|
|
25947
26384
|
# manage_master_user_password: false,
|
|
25948
26385
|
# master_user_secret_kms_key_id: "String",
|
|
25949
26386
|
# engine_lifecycle_support: "String",
|
|
26387
|
+
# tag_specifications: [
|
|
26388
|
+
# {
|
|
26389
|
+
# resource_type: "String",
|
|
26390
|
+
# tags: [
|
|
26391
|
+
# {
|
|
26392
|
+
# key: "String",
|
|
26393
|
+
# value: "String",
|
|
26394
|
+
# },
|
|
26395
|
+
# ],
|
|
26396
|
+
# },
|
|
26397
|
+
# ],
|
|
25950
26398
|
# })
|
|
25951
26399
|
#
|
|
25952
26400
|
# @example Response structure
|
|
@@ -25978,6 +26426,7 @@ module Aws::RDS
|
|
|
25978
26426
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
25979
26427
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
25980
26428
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
26429
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
25981
26430
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
25982
26431
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
25983
26432
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -26089,7 +26538,7 @@ module Aws::RDS
|
|
|
26089
26538
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
26090
26539
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
26091
26540
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
26092
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
26541
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
26093
26542
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
26094
26543
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
26095
26544
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -26645,6 +27094,15 @@ module Aws::RDS
|
|
|
26645
27094
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
26646
27095
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
26647
27096
|
#
|
|
27097
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
27098
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
27099
|
+
#
|
|
27100
|
+
# Valid Values:
|
|
27101
|
+
#
|
|
27102
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
27103
|
+
#
|
|
27104
|
+
# ^
|
|
27105
|
+
#
|
|
26648
27106
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
26649
27107
|
#
|
|
26650
27108
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -26773,6 +27231,17 @@ module Aws::RDS
|
|
|
26773
27231
|
# performance_insights_kms_key_id: "String",
|
|
26774
27232
|
# performance_insights_retention_period: 1,
|
|
26775
27233
|
# engine_lifecycle_support: "String",
|
|
27234
|
+
# tag_specifications: [
|
|
27235
|
+
# {
|
|
27236
|
+
# resource_type: "String",
|
|
27237
|
+
# tags: [
|
|
27238
|
+
# {
|
|
27239
|
+
# key: "String",
|
|
27240
|
+
# value: "String",
|
|
27241
|
+
# },
|
|
27242
|
+
# ],
|
|
27243
|
+
# },
|
|
27244
|
+
# ],
|
|
26776
27245
|
# })
|
|
26777
27246
|
#
|
|
26778
27247
|
# @example Response structure
|
|
@@ -26804,6 +27273,7 @@ module Aws::RDS
|
|
|
26804
27273
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
26805
27274
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
26806
27275
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
27276
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
26807
27277
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
26808
27278
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
26809
27279
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -26915,7 +27385,7 @@ module Aws::RDS
|
|
|
26915
27385
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
26916
27386
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
26917
27387
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
26918
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
27388
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
26919
27389
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
26920
27390
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
26921
27391
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -27455,6 +27925,15 @@ module Aws::RDS
|
|
|
27455
27925
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
27456
27926
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
27457
27927
|
#
|
|
27928
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
27929
|
+
# Tags to assign to resources associated with the DB cluster.
|
|
27930
|
+
#
|
|
27931
|
+
# Valid Values:
|
|
27932
|
+
#
|
|
27933
|
+
# * `cluster-auto-backup` - The DB cluster's automated backup.
|
|
27934
|
+
#
|
|
27935
|
+
# ^
|
|
27936
|
+
#
|
|
27458
27937
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
27459
27938
|
#
|
|
27460
27939
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -27582,6 +28061,17 @@ module Aws::RDS
|
|
|
27582
28061
|
# performance_insights_kms_key_id: "String",
|
|
27583
28062
|
# performance_insights_retention_period: 1,
|
|
27584
28063
|
# engine_lifecycle_support: "String",
|
|
28064
|
+
# tag_specifications: [
|
|
28065
|
+
# {
|
|
28066
|
+
# resource_type: "String",
|
|
28067
|
+
# tags: [
|
|
28068
|
+
# {
|
|
28069
|
+
# key: "String",
|
|
28070
|
+
# value: "String",
|
|
28071
|
+
# },
|
|
28072
|
+
# ],
|
|
28073
|
+
# },
|
|
28074
|
+
# ],
|
|
27585
28075
|
# })
|
|
27586
28076
|
#
|
|
27587
28077
|
# @example Response structure
|
|
@@ -27613,6 +28103,7 @@ module Aws::RDS
|
|
|
27613
28103
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
27614
28104
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
27615
28105
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
28106
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
27616
28107
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
27617
28108
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
27618
28109
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -27724,7 +28215,7 @@ module Aws::RDS
|
|
|
27724
28215
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
27725
28216
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
27726
28217
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
27727
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
28218
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
27728
28219
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
27729
28220
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
27730
28221
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -28367,6 +28858,15 @@ module Aws::RDS
|
|
|
28367
28858
|
#
|
|
28368
28859
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
28369
28860
|
#
|
|
28861
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
28862
|
+
# Tags to assign to resources associated with the DB instance.
|
|
28863
|
+
#
|
|
28864
|
+
# Valid Values:
|
|
28865
|
+
#
|
|
28866
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
28867
|
+
#
|
|
28868
|
+
# ^
|
|
28869
|
+
#
|
|
28370
28870
|
# @option params [Boolean] :manage_master_user_password
|
|
28371
28871
|
# Specifies whether to manage the master user password with Amazon Web
|
|
28372
28872
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -28407,6 +28907,13 @@ module Aws::RDS
|
|
|
28407
28907
|
# Amazon Web Services account has a different default KMS key for each
|
|
28408
28908
|
# Amazon Web Services Region.
|
|
28409
28909
|
#
|
|
28910
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
28911
|
+
# A list of additional storage volumes to create for the DB instance.
|
|
28912
|
+
# You can create up to three additional storage volumes using the names
|
|
28913
|
+
# `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional storage
|
|
28914
|
+
# volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
28915
|
+
# instances only.
|
|
28916
|
+
#
|
|
28410
28917
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
28411
28918
|
#
|
|
28412
28919
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -28504,8 +29011,29 @@ module Aws::RDS
|
|
|
28504
29011
|
# dedicated_log_volume: false,
|
|
28505
29012
|
# ca_certificate_identifier: "String",
|
|
28506
29013
|
# engine_lifecycle_support: "String",
|
|
29014
|
+
# tag_specifications: [
|
|
29015
|
+
# {
|
|
29016
|
+
# resource_type: "String",
|
|
29017
|
+
# tags: [
|
|
29018
|
+
# {
|
|
29019
|
+
# key: "String",
|
|
29020
|
+
# value: "String",
|
|
29021
|
+
# },
|
|
29022
|
+
# ],
|
|
29023
|
+
# },
|
|
29024
|
+
# ],
|
|
28507
29025
|
# manage_master_user_password: false,
|
|
28508
29026
|
# master_user_secret_kms_key_id: "String",
|
|
29027
|
+
# additional_storage_volumes: [
|
|
29028
|
+
# {
|
|
29029
|
+
# volume_name: "String", # required
|
|
29030
|
+
# allocated_storage: 1,
|
|
29031
|
+
# iops: 1,
|
|
29032
|
+
# max_allocated_storage: 1,
|
|
29033
|
+
# storage_throughput: 1,
|
|
29034
|
+
# storage_type: "String",
|
|
29035
|
+
# },
|
|
29036
|
+
# ],
|
|
28509
29037
|
# })
|
|
28510
29038
|
#
|
|
28511
29039
|
# @example Response structure
|
|
@@ -28546,6 +29074,7 @@ module Aws::RDS
|
|
|
28546
29074
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
28547
29075
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
28548
29076
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
29077
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
28549
29078
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
28550
29079
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
28551
29080
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -28573,6 +29102,13 @@ module Aws::RDS
|
|
|
28573
29102
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
28574
29103
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
28575
29104
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
29105
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
29106
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
29107
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
29108
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
29109
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
29110
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
29111
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
28576
29112
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
28577
29113
|
# resp.db_instance.multi_az #=> Boolean
|
|
28578
29114
|
# resp.db_instance.engine_version #=> String
|
|
@@ -28672,6 +29208,15 @@ module Aws::RDS
|
|
|
28672
29208
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
28673
29209
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
28674
29210
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
29211
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
29212
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
29213
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
29214
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
29215
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
29216
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
29217
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
29218
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
29219
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
28675
29220
|
#
|
|
28676
29221
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
|
28677
29222
|
#
|
|
@@ -29255,6 +29800,22 @@ module Aws::RDS
|
|
|
29255
29800
|
#
|
|
29256
29801
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
29257
29802
|
#
|
|
29803
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
29804
|
+
# Tags to assign to resources associated with the DB instance.
|
|
29805
|
+
#
|
|
29806
|
+
# Valid Values:
|
|
29807
|
+
#
|
|
29808
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
29809
|
+
#
|
|
29810
|
+
# ^
|
|
29811
|
+
#
|
|
29812
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
29813
|
+
# A list of additional storage volumes to modify or delete for the DB
|
|
29814
|
+
# instance. You can modify or delete up to three additional storage
|
|
29815
|
+
# volumes using the names `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`.
|
|
29816
|
+
# Additional storage volumes are supported for RDS for Oracle and RDS
|
|
29817
|
+
# for SQL Server DB instances only.
|
|
29818
|
+
#
|
|
29258
29819
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
29259
29820
|
#
|
|
29260
29821
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
|
@@ -29324,6 +29885,27 @@ module Aws::RDS
|
|
|
29324
29885
|
# dedicated_log_volume: false,
|
|
29325
29886
|
# ca_certificate_identifier: "String",
|
|
29326
29887
|
# engine_lifecycle_support: "String",
|
|
29888
|
+
# tag_specifications: [
|
|
29889
|
+
# {
|
|
29890
|
+
# resource_type: "String",
|
|
29891
|
+
# tags: [
|
|
29892
|
+
# {
|
|
29893
|
+
# key: "String",
|
|
29894
|
+
# value: "String",
|
|
29895
|
+
# },
|
|
29896
|
+
# ],
|
|
29897
|
+
# },
|
|
29898
|
+
# ],
|
|
29899
|
+
# additional_storage_volumes: [
|
|
29900
|
+
# {
|
|
29901
|
+
# volume_name: "String", # required
|
|
29902
|
+
# allocated_storage: 1,
|
|
29903
|
+
# iops: 1,
|
|
29904
|
+
# max_allocated_storage: 1,
|
|
29905
|
+
# storage_throughput: 1,
|
|
29906
|
+
# storage_type: "String",
|
|
29907
|
+
# },
|
|
29908
|
+
# ],
|
|
29327
29909
|
# })
|
|
29328
29910
|
#
|
|
29329
29911
|
# @example Response structure
|
|
@@ -29364,6 +29946,7 @@ module Aws::RDS
|
|
|
29364
29946
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
29365
29947
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
29366
29948
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
29949
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
29367
29950
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
29368
29951
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
29369
29952
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -29391,6 +29974,13 @@ module Aws::RDS
|
|
|
29391
29974
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
29392
29975
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
29393
29976
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
29977
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
29978
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
29979
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
29980
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
29981
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
29982
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
29983
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
29394
29984
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
29395
29985
|
# resp.db_instance.multi_az #=> Boolean
|
|
29396
29986
|
# resp.db_instance.engine_version #=> String
|
|
@@ -29490,6 +30080,15 @@ module Aws::RDS
|
|
|
29490
30080
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
29491
30081
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
29492
30082
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
30083
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
30084
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
30085
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
30086
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
30087
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
30088
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
30089
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
30090
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
30091
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
29493
30092
|
#
|
|
29494
30093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
|
29495
30094
|
#
|
|
@@ -30133,6 +30732,15 @@ module Aws::RDS
|
|
|
30133
30732
|
#
|
|
30134
30733
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
30135
30734
|
#
|
|
30735
|
+
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
|
30736
|
+
# Tags to assign to resources associated with the DB instance.
|
|
30737
|
+
#
|
|
30738
|
+
# Valid Values:
|
|
30739
|
+
#
|
|
30740
|
+
# * `auto-backup` - The DB instance's automated backup.
|
|
30741
|
+
#
|
|
30742
|
+
# ^
|
|
30743
|
+
#
|
|
30136
30744
|
# @option params [Boolean] :manage_master_user_password
|
|
30137
30745
|
# Specifies whether to manage the master user password with Amazon Web
|
|
30138
30746
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -30173,6 +30781,13 @@ module Aws::RDS
|
|
|
30173
30781
|
# Amazon Web Services account has a different default KMS key for each
|
|
30174
30782
|
# Amazon Web Services Region.
|
|
30175
30783
|
#
|
|
30784
|
+
# @option params [Array<Types::AdditionalStorageVolume>] :additional_storage_volumes
|
|
30785
|
+
# A list of additional storage volumes to restore to the DB instance.
|
|
30786
|
+
# You can restore up to three additional storage volumes using the names
|
|
30787
|
+
# `rdsdbdata2`, `rdsdbdata3`, and `rdsdbdata4`. Additional storage
|
|
30788
|
+
# volumes are supported for RDS for Oracle and RDS for SQL Server DB
|
|
30789
|
+
# instances only.
|
|
30790
|
+
#
|
|
30176
30791
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
30177
30792
|
#
|
|
30178
30793
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -30333,8 +30948,29 @@ module Aws::RDS
|
|
|
30333
30948
|
# dedicated_log_volume: false,
|
|
30334
30949
|
# ca_certificate_identifier: "String",
|
|
30335
30950
|
# engine_lifecycle_support: "String",
|
|
30951
|
+
# tag_specifications: [
|
|
30952
|
+
# {
|
|
30953
|
+
# resource_type: "String",
|
|
30954
|
+
# tags: [
|
|
30955
|
+
# {
|
|
30956
|
+
# key: "String",
|
|
30957
|
+
# value: "String",
|
|
30958
|
+
# },
|
|
30959
|
+
# ],
|
|
30960
|
+
# },
|
|
30961
|
+
# ],
|
|
30336
30962
|
# manage_master_user_password: false,
|
|
30337
30963
|
# master_user_secret_kms_key_id: "String",
|
|
30964
|
+
# additional_storage_volumes: [
|
|
30965
|
+
# {
|
|
30966
|
+
# volume_name: "String", # required
|
|
30967
|
+
# allocated_storage: 1,
|
|
30968
|
+
# iops: 1,
|
|
30969
|
+
# max_allocated_storage: 1,
|
|
30970
|
+
# storage_throughput: 1,
|
|
30971
|
+
# storage_type: "String",
|
|
30972
|
+
# },
|
|
30973
|
+
# ],
|
|
30338
30974
|
# })
|
|
30339
30975
|
#
|
|
30340
30976
|
# @example Response structure
|
|
@@ -30375,6 +31011,7 @@ module Aws::RDS
|
|
|
30375
31011
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
30376
31012
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
30377
31013
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
31014
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
30378
31015
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
30379
31016
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
30380
31017
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -30402,6 +31039,13 @@ module Aws::RDS
|
|
|
30402
31039
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
30403
31040
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
30404
31041
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
31042
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
31043
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
31044
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31045
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
31046
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31047
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31048
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
30405
31049
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
30406
31050
|
# resp.db_instance.multi_az #=> Boolean
|
|
30407
31051
|
# resp.db_instance.engine_version #=> String
|
|
@@ -30501,6 +31145,15 @@ module Aws::RDS
|
|
|
30501
31145
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
30502
31146
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
30503
31147
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
31148
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
31149
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
31150
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
31151
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31152
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
31153
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31154
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31155
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
31156
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
30504
31157
|
#
|
|
30505
31158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
|
30506
31159
|
#
|
|
@@ -30792,6 +31445,7 @@ module Aws::RDS
|
|
|
30792
31445
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
30793
31446
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
30794
31447
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
31448
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
30795
31449
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
30796
31450
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
30797
31451
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -30903,7 +31557,7 @@ module Aws::RDS
|
|
|
30903
31557
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
30904
31558
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
30905
31559
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
30906
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
31560
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
30907
31561
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
30908
31562
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
30909
31563
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -31000,6 +31654,7 @@ module Aws::RDS
|
|
|
31000
31654
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
31001
31655
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
31002
31656
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
31657
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
31003
31658
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
31004
31659
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
31005
31660
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -31027,6 +31682,13 @@ module Aws::RDS
|
|
|
31027
31682
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
31028
31683
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
31029
31684
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
31685
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
31686
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
31687
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31688
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
31689
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31690
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31691
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
31030
31692
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
31031
31693
|
# resp.db_instance.multi_az #=> Boolean
|
|
31032
31694
|
# resp.db_instance.engine_version #=> String
|
|
@@ -31126,6 +31788,15 @@ module Aws::RDS
|
|
|
31126
31788
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
31127
31789
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
31128
31790
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
31791
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
31792
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
31793
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
31794
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31795
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
31796
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31797
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31798
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
31799
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
31129
31800
|
#
|
|
31130
31801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
|
31131
31802
|
#
|
|
@@ -31194,6 +31865,9 @@ module Aws::RDS
|
|
|
31194
31865
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
|
31195
31866
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
|
31196
31867
|
#
|
|
31868
|
+
# @option params [Array<Types::Tag>] :tags
|
|
31869
|
+
# A list of tags to associate with the replicated automated backups.
|
|
31870
|
+
#
|
|
31197
31871
|
# @option params [String] :source_region
|
|
31198
31872
|
# The source region of the snapshot. This is only needed when the
|
|
31199
31873
|
# shapshot is encrypted and in a different region.
|
|
@@ -31246,6 +31920,12 @@ module Aws::RDS
|
|
|
31246
31920
|
# backup_retention_period: 1,
|
|
31247
31921
|
# kms_key_id: "String",
|
|
31248
31922
|
# pre_signed_url: "SensitiveString",
|
|
31923
|
+
# tags: [
|
|
31924
|
+
# {
|
|
31925
|
+
# key: "String",
|
|
31926
|
+
# value: "String",
|
|
31927
|
+
# },
|
|
31928
|
+
# ],
|
|
31249
31929
|
# source_region: "String",
|
|
31250
31930
|
# })
|
|
31251
31931
|
#
|
|
@@ -31283,7 +31963,17 @@ module Aws::RDS
|
|
|
31283
31963
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
31284
31964
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
31285
31965
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
31966
|
+
# resp.db_instance_automated_backup.tag_list #=> Array
|
|
31967
|
+
# resp.db_instance_automated_backup.tag_list[0].key #=> String
|
|
31968
|
+
# resp.db_instance_automated_backup.tag_list[0].value #=> String
|
|
31286
31969
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
31970
|
+
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
31971
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
31972
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
31973
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].iops #=> Integer
|
|
31974
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
31975
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
31976
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_type #=> String
|
|
31287
31977
|
#
|
|
31288
31978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
31289
31979
|
#
|
|
@@ -31628,6 +32318,7 @@ module Aws::RDS
|
|
|
31628
32318
|
# resp.db_cluster.db_cluster_option_group_memberships[0].status #=> String
|
|
31629
32319
|
# resp.db_cluster.preferred_backup_window #=> String
|
|
31630
32320
|
# resp.db_cluster.preferred_maintenance_window #=> String
|
|
32321
|
+
# resp.db_cluster.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
31631
32322
|
# resp.db_cluster.replication_source_identifier #=> String
|
|
31632
32323
|
# resp.db_cluster.read_replica_identifiers #=> Array
|
|
31633
32324
|
# resp.db_cluster.read_replica_identifiers[0] #=> String
|
|
@@ -31739,7 +32430,7 @@ module Aws::RDS
|
|
|
31739
32430
|
# resp.db_cluster.aws_backup_recovery_point_arn #=> String
|
|
31740
32431
|
# resp.db_cluster.limitless_database.status #=> String, one of "active", "not-in-use", "enabled", "disabled", "enabling", "disabling", "modifying-max-capacity", "error"
|
|
31741
32432
|
# resp.db_cluster.limitless_database.min_required_acu #=> Float
|
|
31742
|
-
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
32433
|
+
# resp.db_cluster.cluster_scalability_type #=> String, one of "standard", "limitless"
|
|
31743
32434
|
# resp.db_cluster.certificate_details.ca_identifier #=> String
|
|
31744
32435
|
# resp.db_cluster.certificate_details.valid_till #=> Time
|
|
31745
32436
|
# resp.db_cluster.engine_lifecycle_support #=> String
|
|
@@ -31844,6 +32535,7 @@ module Aws::RDS
|
|
|
31844
32535
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
31845
32536
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
31846
32537
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
32538
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
31847
32539
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
31848
32540
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
31849
32541
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -31871,6 +32563,13 @@ module Aws::RDS
|
|
|
31871
32563
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
31872
32564
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
31873
32565
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
32566
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
32567
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
32568
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32569
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
32570
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32571
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32572
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
31874
32573
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
31875
32574
|
# resp.db_instance.multi_az #=> Boolean
|
|
31876
32575
|
# resp.db_instance.engine_version #=> String
|
|
@@ -31970,6 +32669,15 @@ module Aws::RDS
|
|
|
31970
32669
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
31971
32670
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
31972
32671
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
32672
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
32673
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
32674
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
32675
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32676
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
32677
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32678
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32679
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
32680
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
31973
32681
|
#
|
|
31974
32682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
|
31975
32683
|
#
|
|
@@ -32079,7 +32787,17 @@ module Aws::RDS
|
|
|
32079
32787
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
32080
32788
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
32081
32789
|
# resp.db_instance_automated_backup.aws_backup_recovery_point_arn #=> String
|
|
32790
|
+
# resp.db_instance_automated_backup.tag_list #=> Array
|
|
32791
|
+
# resp.db_instance_automated_backup.tag_list[0].key #=> String
|
|
32792
|
+
# resp.db_instance_automated_backup.tag_list[0].value #=> String
|
|
32082
32793
|
# resp.db_instance_automated_backup.dedicated_log_volume #=> Boolean
|
|
32794
|
+
# resp.db_instance_automated_backup.additional_storage_volumes #=> Array
|
|
32795
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].volume_name #=> String
|
|
32796
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
32797
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].iops #=> Integer
|
|
32798
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
32799
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
32800
|
+
# resp.db_instance_automated_backup.additional_storage_volumes[0].storage_type #=> String
|
|
32083
32801
|
#
|
|
32084
32802
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
32085
32803
|
#
|
|
@@ -32451,6 +33169,7 @@ module Aws::RDS
|
|
|
32451
33169
|
# resp.db_instance.db_subnet_group.supported_network_types #=> Array
|
|
32452
33170
|
# resp.db_instance.db_subnet_group.supported_network_types[0] #=> String
|
|
32453
33171
|
# resp.db_instance.preferred_maintenance_window #=> String
|
|
33172
|
+
# resp.db_instance.upgrade_rollout_order #=> String, one of "first", "second", "last"
|
|
32454
33173
|
# resp.db_instance.pending_modified_values.db_instance_class #=> String
|
|
32455
33174
|
# resp.db_instance.pending_modified_values.allocated_storage #=> Integer
|
|
32456
33175
|
# resp.db_instance.pending_modified_values.master_user_password #=> String
|
|
@@ -32478,6 +33197,13 @@ module Aws::RDS
|
|
|
32478
33197
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
32479
33198
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
32480
33199
|
# resp.db_instance.pending_modified_values.engine #=> String
|
|
33200
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes #=> Array
|
|
33201
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].volume_name #=> String
|
|
33202
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
33203
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].iops #=> Integer
|
|
33204
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
33205
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
33206
|
+
# resp.db_instance.pending_modified_values.additional_storage_volumes[0].storage_type #=> String
|
|
32481
33207
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
32482
33208
|
# resp.db_instance.multi_az #=> Boolean
|
|
32483
33209
|
# resp.db_instance.engine_version #=> String
|
|
@@ -32577,6 +33303,15 @@ module Aws::RDS
|
|
|
32577
33303
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
32578
33304
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
32579
33305
|
# resp.db_instance.engine_lifecycle_support #=> String
|
|
33306
|
+
# resp.db_instance.additional_storage_volumes #=> Array
|
|
33307
|
+
# resp.db_instance.additional_storage_volumes[0].volume_name #=> String
|
|
33308
|
+
# resp.db_instance.additional_storage_volumes[0].storage_volume_status #=> String
|
|
33309
|
+
# resp.db_instance.additional_storage_volumes[0].allocated_storage #=> Integer
|
|
33310
|
+
# resp.db_instance.additional_storage_volumes[0].iops #=> Integer
|
|
33311
|
+
# resp.db_instance.additional_storage_volumes[0].max_allocated_storage #=> Integer
|
|
33312
|
+
# resp.db_instance.additional_storage_volumes[0].storage_throughput #=> Integer
|
|
33313
|
+
# resp.db_instance.additional_storage_volumes[0].storage_type #=> String
|
|
33314
|
+
# resp.db_instance.storage_volume_status #=> String
|
|
32580
33315
|
#
|
|
32581
33316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
|
32582
33317
|
#
|
|
@@ -32605,7 +33340,7 @@ module Aws::RDS
|
|
|
32605
33340
|
tracer: tracer
|
|
32606
33341
|
)
|
|
32607
33342
|
context[:gem_name] = 'aws-sdk-rds'
|
|
32608
|
-
context[:gem_version] = '1.
|
|
33343
|
+
context[:gem_version] = '1.302.0'
|
|
32609
33344
|
Seahorse::Client::Request.new(handlers, context)
|
|
32610
33345
|
end
|
|
32611
33346
|
|