aws-sdk-rds 1.300.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +740 -12
- data/lib/aws-sdk-rds/client_api.rb +108 -0
- data/lib/aws-sdk-rds/db_cluster.rb +38 -0
- 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 +177 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +43 -0
- data/lib/aws-sdk-rds/resource.rb +56 -0
- data/lib/aws-sdk-rds/types.rb +689 -35
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +205 -10
- data/sig/db_cluster.rbs +23 -1
- data/sig/db_cluster_snapshot.rbs +12 -1
- data/sig/db_engine_version.rbs +6 -0
- data/sig/db_instance.rbs +106 -4
- data/sig/db_snapshot.rbs +25 -1
- data/sig/resource.rbs +33 -1
- data/sig/types.rbs +97 -0
- metadata +1 -1
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
|
#
|
|
@@ -3619,6 +3655,15 @@ module Aws::RDS
|
|
|
3619
3655
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
3620
3656
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
3621
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
|
+
#
|
|
3622
3667
|
# @option params [String] :master_user_authentication_type
|
|
3623
3668
|
# Specifies the authentication type for the master user. With IAM master
|
|
3624
3669
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -3850,6 +3895,17 @@ module Aws::RDS
|
|
|
3850
3895
|
# master_user_secret_kms_key_id: "String",
|
|
3851
3896
|
# ca_certificate_identifier: "String",
|
|
3852
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
|
+
# ],
|
|
3853
3909
|
# master_user_authentication_type: "password", # accepts password, iam-db-auth
|
|
3854
3910
|
# source_region: "String",
|
|
3855
3911
|
# })
|
|
@@ -4777,6 +4833,8 @@ module Aws::RDS
|
|
|
4777
4833
|
#
|
|
4778
4834
|
# * `postgres`
|
|
4779
4835
|
#
|
|
4836
|
+
# * `sqlserver-dev-ee`
|
|
4837
|
+
#
|
|
4780
4838
|
# * `sqlserver-ee`
|
|
4781
4839
|
#
|
|
4782
4840
|
# * `sqlserver-se`
|
|
@@ -5759,6 +5817,15 @@ module Aws::RDS
|
|
|
5759
5817
|
#
|
|
5760
5818
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
5761
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
|
+
#
|
|
5762
5829
|
# @option params [String] :master_user_authentication_type
|
|
5763
5830
|
# Specifies the authentication type for the master user. With IAM master
|
|
5764
5831
|
# user authentication, you can configure the master DB user with IAM
|
|
@@ -5773,6 +5840,13 @@ module Aws::RDS
|
|
|
5773
5840
|
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
|
5774
5841
|
# engines.
|
|
5775
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
|
+
#
|
|
5776
5850
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5777
5851
|
#
|
|
5778
5852
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -5964,7 +6038,28 @@ module Aws::RDS
|
|
|
5964
6038
|
# multi_tenant: false,
|
|
5965
6039
|
# dedicated_log_volume: false,
|
|
5966
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
|
+
# ],
|
|
5967
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
|
+
# ],
|
|
5968
6063
|
# })
|
|
5969
6064
|
#
|
|
5970
6065
|
# @example Response structure
|
|
@@ -6033,6 +6128,13 @@ module Aws::RDS
|
|
|
6033
6128
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
6034
6129
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
6035
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
|
|
6036
6138
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
6037
6139
|
# resp.db_instance.multi_az #=> Boolean
|
|
6038
6140
|
# resp.db_instance.engine_version #=> String
|
|
@@ -6132,6 +6234,15 @@ module Aws::RDS
|
|
|
6132
6234
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
6133
6235
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
6134
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
|
|
6135
6246
|
#
|
|
6136
6247
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
|
6137
6248
|
#
|
|
@@ -6887,6 +6998,22 @@ module Aws::RDS
|
|
|
6887
6998
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
6888
6999
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL.html
|
|
6889
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
|
+
#
|
|
6890
7017
|
# @option params [String] :source_region
|
|
6891
7018
|
# The source region of the snapshot. This is only needed when the
|
|
6892
7019
|
# shapshot is encrypted and in a different region.
|
|
@@ -6977,6 +7104,27 @@ module Aws::RDS
|
|
|
6977
7104
|
# dedicated_log_volume: false,
|
|
6978
7105
|
# upgrade_storage_config: false,
|
|
6979
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
|
+
# ],
|
|
6980
7128
|
# source_region: "String",
|
|
6981
7129
|
# })
|
|
6982
7130
|
#
|
|
@@ -7046,6 +7194,13 @@ module Aws::RDS
|
|
|
7046
7194
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
7047
7195
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
7048
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
|
|
7049
7204
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
7050
7205
|
# resp.db_instance.multi_az #=> Boolean
|
|
7051
7206
|
# resp.db_instance.engine_version #=> String
|
|
@@ -7145,6 +7300,15 @@ module Aws::RDS
|
|
|
7145
7300
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
7146
7301
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
7147
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
|
|
7148
7312
|
#
|
|
7149
7313
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
|
7150
7314
|
#
|
|
@@ -7960,6 +8124,13 @@ module Aws::RDS
|
|
|
7960
8124
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
7961
8125
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
7962
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
|
|
7963
8134
|
#
|
|
7964
8135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
|
7965
8136
|
#
|
|
@@ -9188,8 +9359,9 @@ module Aws::RDS
|
|
|
9188
9359
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.delete
|
|
9189
9360
|
#
|
|
9190
9361
|
# @option params [required, String] :engine
|
|
9191
|
-
# The database engine.
|
|
9192
|
-
#
|
|
9362
|
+
# The database engine.
|
|
9363
|
+
#
|
|
9364
|
+
# RDS Custom for Oracle supports the following values:
|
|
9193
9365
|
#
|
|
9194
9366
|
# * `custom-oracle-ee`
|
|
9195
9367
|
#
|
|
@@ -9199,6 +9371,18 @@ module Aws::RDS
|
|
|
9199
9371
|
#
|
|
9200
9372
|
# * `custom-oracle-se2-cdb`
|
|
9201
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
|
+
#
|
|
9202
9386
|
# @option params [required, String] :engine_version
|
|
9203
9387
|
# The custom engine version (CEV) for your DB instance. This option is
|
|
9204
9388
|
# required for RDS Custom, but optional for Amazon RDS. The combination
|
|
@@ -9242,6 +9426,8 @@ module Aws::RDS
|
|
|
9242
9426
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
9243
9427
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
9244
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
|
|
9245
9431
|
#
|
|
9246
9432
|
# @example Request syntax with placeholder values
|
|
9247
9433
|
#
|
|
@@ -9314,6 +9500,9 @@ module Aws::RDS
|
|
|
9314
9500
|
# resp.supports_integrations #=> Boolean
|
|
9315
9501
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
9316
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
|
|
9317
9506
|
#
|
|
9318
9507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
|
9319
9508
|
#
|
|
@@ -9636,6 +9825,9 @@ module Aws::RDS
|
|
|
9636
9825
|
# resp.db_cluster_automated_backup.iops #=> Integer
|
|
9637
9826
|
# resp.db_cluster_automated_backup.storage_throughput #=> Integer
|
|
9638
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
|
|
9639
9831
|
#
|
|
9640
9832
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterAutomatedBackup AWS API Documentation
|
|
9641
9833
|
#
|
|
@@ -10085,6 +10277,13 @@ module Aws::RDS
|
|
|
10085
10277
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
10086
10278
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
10087
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
|
|
10088
10287
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
10089
10288
|
# resp.db_instance.multi_az #=> Boolean
|
|
10090
10289
|
# resp.db_instance.engine_version #=> String
|
|
@@ -10184,6 +10383,15 @@ module Aws::RDS
|
|
|
10184
10383
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
10185
10384
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
10186
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
|
|
10187
10395
|
#
|
|
10188
10396
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
|
10189
10397
|
#
|
|
@@ -10291,7 +10499,17 @@ module Aws::RDS
|
|
|
10291
10499
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
10292
10500
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
10293
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
|
|
10294
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
|
|
10295
10513
|
#
|
|
10296
10514
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstanceAutomatedBackup AWS API Documentation
|
|
10297
10515
|
#
|
|
@@ -10659,6 +10877,13 @@ module Aws::RDS
|
|
|
10659
10877
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
10660
10878
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
10661
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
|
|
10662
10887
|
#
|
|
10663
10888
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
|
10664
10889
|
#
|
|
@@ -11777,6 +12002,9 @@ module Aws::RDS
|
|
|
11777
12002
|
# resp.db_cluster_automated_backups[0].iops #=> Integer
|
|
11778
12003
|
# resp.db_cluster_automated_backups[0].storage_throughput #=> Integer
|
|
11779
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
|
|
11780
12008
|
#
|
|
11781
12009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterAutomatedBackups AWS API Documentation
|
|
11782
12010
|
#
|
|
@@ -13329,6 +13557,9 @@ module Aws::RDS
|
|
|
13329
13557
|
# resp.db_engine_versions[0].supports_integrations #=> Boolean
|
|
13330
13558
|
# resp.db_engine_versions[0].serverless_v2_features_support.min_capacity #=> Float
|
|
13331
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
|
|
13332
13563
|
#
|
|
13333
13564
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
|
13334
13565
|
#
|
|
@@ -13500,7 +13731,17 @@ module Aws::RDS
|
|
|
13500
13731
|
# resp.db_instance_automated_backups[0].backup_target #=> String
|
|
13501
13732
|
# resp.db_instance_automated_backups[0].multi_tenant #=> Boolean
|
|
13502
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
|
|
13503
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
|
|
13504
13745
|
#
|
|
13505
13746
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstanceAutomatedBackups AWS API Documentation
|
|
13506
13747
|
#
|
|
@@ -13687,6 +13928,13 @@ module Aws::RDS
|
|
|
13687
13928
|
# resp.db_instances[0].pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
13688
13929
|
# resp.db_instances[0].pending_modified_values.dedicated_log_volume #=> Boolean
|
|
13689
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
|
|
13690
13938
|
# resp.db_instances[0].latest_restorable_time #=> Time
|
|
13691
13939
|
# resp.db_instances[0].multi_az #=> Boolean
|
|
13692
13940
|
# resp.db_instances[0].engine_version #=> String
|
|
@@ -13786,6 +14034,15 @@ module Aws::RDS
|
|
|
13786
14034
|
# resp.db_instances[0].dedicated_log_volume #=> Boolean
|
|
13787
14035
|
# resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
|
|
13788
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
|
|
13789
14046
|
#
|
|
13790
14047
|
#
|
|
13791
14048
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -15407,6 +15664,13 @@ module Aws::RDS
|
|
|
15407
15664
|
# resp.db_snapshots[0].multi_tenant #=> Boolean
|
|
15408
15665
|
# resp.db_snapshots[0].dedicated_log_volume #=> Boolean
|
|
15409
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
|
|
15410
15674
|
#
|
|
15411
15675
|
#
|
|
15412
15676
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -17220,6 +17484,20 @@ module Aws::RDS
|
|
|
17220
17484
|
# resp.orderable_db_instance_options[0].supports_clusters #=> Boolean
|
|
17221
17485
|
# resp.orderable_db_instance_options[0].supports_dedicated_log_volume #=> Boolean
|
|
17222
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
|
|
17223
17501
|
# resp.marker #=> String
|
|
17224
17502
|
#
|
|
17225
17503
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
|
@@ -18049,6 +18327,30 @@ module Aws::RDS
|
|
|
18049
18327
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].default_value #=> String
|
|
18050
18328
|
# resp.valid_db_instance_modifications_message.valid_processor_features[0].allowed_values #=> String
|
|
18051
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
|
|
18052
18354
|
#
|
|
18053
18355
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeValidDBInstanceModifications AWS API Documentation
|
|
18054
18356
|
#
|
|
@@ -19024,8 +19326,9 @@ module Aws::RDS
|
|
|
19024
19326
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.html#custom-cev.modify
|
|
19025
19327
|
#
|
|
19026
19328
|
# @option params [required, String] :engine
|
|
19027
|
-
# The database engine.
|
|
19028
|
-
#
|
|
19329
|
+
# The database engine.
|
|
19330
|
+
#
|
|
19331
|
+
# RDS Custom for Oracle supports the following values:
|
|
19029
19332
|
#
|
|
19030
19333
|
# * `custom-oracle-ee`
|
|
19031
19334
|
#
|
|
@@ -19035,6 +19338,18 @@ module Aws::RDS
|
|
|
19035
19338
|
#
|
|
19036
19339
|
# * `custom-oracle-se2-cdb`
|
|
19037
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
|
+
#
|
|
19038
19353
|
# @option params [required, String] :engine_version
|
|
19039
19354
|
# The custom engine version (CEV) that you want to modify. This option
|
|
19040
19355
|
# is required for RDS Custom for Oracle, but optional for Amazon RDS.
|
|
@@ -19103,6 +19418,8 @@ module Aws::RDS
|
|
|
19103
19418
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
|
19104
19419
|
# * {Types::DBEngineVersion#supports_integrations #supports_integrations} => Boolean
|
|
19105
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
|
|
19106
19423
|
#
|
|
19107
19424
|
# @example Request syntax with placeholder values
|
|
19108
19425
|
#
|
|
@@ -19177,6 +19494,9 @@ module Aws::RDS
|
|
|
19177
19494
|
# resp.supports_integrations #=> Boolean
|
|
19178
19495
|
# resp.serverless_v2_features_support.min_capacity #=> Float
|
|
19179
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
|
|
19180
19500
|
#
|
|
19181
19501
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
|
19182
19502
|
#
|
|
@@ -21740,6 +22060,15 @@ module Aws::RDS
|
|
|
21740
22060
|
# parameter group with `--db-parameter-group-name` and a new option
|
|
21741
22061
|
# group with `--option-group-name`.
|
|
21742
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
|
+
#
|
|
21743
22072
|
# @option params [String] :master_user_authentication_type
|
|
21744
22073
|
# Specifies the authentication type for the master user. With IAM master
|
|
21745
22074
|
# user authentication, you can change the master DB user to use IAM
|
|
@@ -21754,6 +22083,12 @@ module Aws::RDS
|
|
|
21754
22083
|
# This option is only valid for RDS for PostgreSQL and Aurora PostgreSQL
|
|
21755
22084
|
# engines.
|
|
21756
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
|
+
#
|
|
21757
22092
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
21758
22093
|
#
|
|
21759
22094
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -21881,7 +22216,29 @@ module Aws::RDS
|
|
|
21881
22216
|
# multi_tenant: false,
|
|
21882
22217
|
# dedicated_log_volume: false,
|
|
21883
22218
|
# engine: "String",
|
|
22219
|
+
# tag_specifications: [
|
|
22220
|
+
# {
|
|
22221
|
+
# resource_type: "String",
|
|
22222
|
+
# tags: [
|
|
22223
|
+
# {
|
|
22224
|
+
# key: "String",
|
|
22225
|
+
# value: "String",
|
|
22226
|
+
# },
|
|
22227
|
+
# ],
|
|
22228
|
+
# },
|
|
22229
|
+
# ],
|
|
21884
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
|
+
# ],
|
|
21885
22242
|
# })
|
|
21886
22243
|
#
|
|
21887
22244
|
# @example Response structure
|
|
@@ -21950,6 +22307,13 @@ module Aws::RDS
|
|
|
21950
22307
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
21951
22308
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
21952
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
|
|
21953
22317
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
21954
22318
|
# resp.db_instance.multi_az #=> Boolean
|
|
21955
22319
|
# resp.db_instance.engine_version #=> String
|
|
@@ -22049,6 +22413,15 @@ module Aws::RDS
|
|
|
22049
22413
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
22050
22414
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
22051
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
|
|
22052
22425
|
#
|
|
22053
22426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
|
22054
22427
|
#
|
|
@@ -22778,6 +23151,13 @@ module Aws::RDS
|
|
|
22778
23151
|
# resp.db_snapshot.multi_tenant #=> Boolean
|
|
22779
23152
|
# resp.db_snapshot.dedicated_log_volume #=> Boolean
|
|
22780
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
|
|
22781
23161
|
#
|
|
22782
23162
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
|
22783
23163
|
#
|
|
@@ -23803,6 +24183,15 @@ module Aws::RDS
|
|
|
23803
24183
|
#
|
|
23804
24184
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
|
23805
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
|
+
#
|
|
23806
24195
|
# @return [Types::PromoteReadReplicaResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
23807
24196
|
#
|
|
23808
24197
|
# * {Types::PromoteReadReplicaResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -23832,6 +24221,17 @@ module Aws::RDS
|
|
|
23832
24221
|
# db_instance_identifier: "String", # required
|
|
23833
24222
|
# backup_retention_period: 1,
|
|
23834
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
|
+
# ],
|
|
23835
24235
|
# })
|
|
23836
24236
|
#
|
|
23837
24237
|
# @example Response structure
|
|
@@ -23900,6 +24300,13 @@ module Aws::RDS
|
|
|
23900
24300
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
23901
24301
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
23902
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
|
|
23903
24310
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
23904
24311
|
# resp.db_instance.multi_az #=> Boolean
|
|
23905
24312
|
# resp.db_instance.engine_version #=> String
|
|
@@ -23999,6 +24406,15 @@ module Aws::RDS
|
|
|
23999
24406
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
24000
24407
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
24001
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
|
|
24002
24418
|
#
|
|
24003
24419
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
|
24004
24420
|
#
|
|
@@ -24633,6 +25049,13 @@ module Aws::RDS
|
|
|
24633
25049
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
24634
25050
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
24635
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
|
|
24636
25059
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
24637
25060
|
# resp.db_instance.multi_az #=> Boolean
|
|
24638
25061
|
# resp.db_instance.engine_version #=> String
|
|
@@ -24732,6 +25155,15 @@ module Aws::RDS
|
|
|
24732
25155
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
24733
25156
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
24734
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
|
|
24735
25167
|
#
|
|
24736
25168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
|
24737
25169
|
#
|
|
@@ -25821,6 +26253,15 @@ module Aws::RDS
|
|
|
25821
26253
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
25822
26254
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
25823
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
|
+
#
|
|
25824
26265
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
25825
26266
|
#
|
|
25826
26267
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -25943,6 +26384,17 @@ module Aws::RDS
|
|
|
25943
26384
|
# manage_master_user_password: false,
|
|
25944
26385
|
# master_user_secret_kms_key_id: "String",
|
|
25945
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
|
+
# ],
|
|
25946
26398
|
# })
|
|
25947
26399
|
#
|
|
25948
26400
|
# @example Response structure
|
|
@@ -26642,6 +27094,15 @@ module Aws::RDS
|
|
|
26642
27094
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
26643
27095
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
26644
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
|
+
#
|
|
26645
27106
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
26646
27107
|
#
|
|
26647
27108
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -26770,6 +27231,17 @@ module Aws::RDS
|
|
|
26770
27231
|
# performance_insights_kms_key_id: "String",
|
|
26771
27232
|
# performance_insights_retention_period: 1,
|
|
26772
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
|
+
# ],
|
|
26773
27245
|
# })
|
|
26774
27246
|
#
|
|
26775
27247
|
# @example Response structure
|
|
@@ -27453,6 +27925,15 @@ module Aws::RDS
|
|
|
27453
27925
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/extended-support.html
|
|
27454
27926
|
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
27455
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
|
+
#
|
|
27456
27937
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
27457
27938
|
#
|
|
27458
27939
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -27580,6 +28061,17 @@ module Aws::RDS
|
|
|
27580
28061
|
# performance_insights_kms_key_id: "String",
|
|
27581
28062
|
# performance_insights_retention_period: 1,
|
|
27582
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
|
+
# ],
|
|
27583
28075
|
# })
|
|
27584
28076
|
#
|
|
27585
28077
|
# @example Response structure
|
|
@@ -28366,6 +28858,15 @@ module Aws::RDS
|
|
|
28366
28858
|
#
|
|
28367
28859
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
28368
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
|
+
#
|
|
28369
28870
|
# @option params [Boolean] :manage_master_user_password
|
|
28370
28871
|
# Specifies whether to manage the master user password with Amazon Web
|
|
28371
28872
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -28406,6 +28907,13 @@ module Aws::RDS
|
|
|
28406
28907
|
# Amazon Web Services account has a different default KMS key for each
|
|
28407
28908
|
# Amazon Web Services Region.
|
|
28408
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
|
+
#
|
|
28409
28917
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
28410
28918
|
#
|
|
28411
28919
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -28503,8 +29011,29 @@ module Aws::RDS
|
|
|
28503
29011
|
# dedicated_log_volume: false,
|
|
28504
29012
|
# ca_certificate_identifier: "String",
|
|
28505
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
|
+
# ],
|
|
28506
29025
|
# manage_master_user_password: false,
|
|
28507
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
|
+
# ],
|
|
28508
29037
|
# })
|
|
28509
29038
|
#
|
|
28510
29039
|
# @example Response structure
|
|
@@ -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
|
|
@@ -29392,6 +29974,13 @@ module Aws::RDS
|
|
|
29392
29974
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
29393
29975
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
29394
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
|
|
29395
29984
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
29396
29985
|
# resp.db_instance.multi_az #=> Boolean
|
|
29397
29986
|
# resp.db_instance.engine_version #=> String
|
|
@@ -29491,6 +30080,15 @@ module Aws::RDS
|
|
|
29491
30080
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
29492
30081
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
29493
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
|
|
29494
30092
|
#
|
|
29495
30093
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
|
29496
30094
|
#
|
|
@@ -30134,6 +30732,15 @@ module Aws::RDS
|
|
|
30134
30732
|
#
|
|
30135
30733
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/extended-support.html
|
|
30136
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
|
+
#
|
|
30137
30744
|
# @option params [Boolean] :manage_master_user_password
|
|
30138
30745
|
# Specifies whether to manage the master user password with Amazon Web
|
|
30139
30746
|
# Services Secrets Manager in the restored DB instance.
|
|
@@ -30174,6 +30781,13 @@ module Aws::RDS
|
|
|
30174
30781
|
# Amazon Web Services account has a different default KMS key for each
|
|
30175
30782
|
# Amazon Web Services Region.
|
|
30176
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
|
+
#
|
|
30177
30791
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
30178
30792
|
#
|
|
30179
30793
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
|
@@ -30334,8 +30948,29 @@ module Aws::RDS
|
|
|
30334
30948
|
# dedicated_log_volume: false,
|
|
30335
30949
|
# ca_certificate_identifier: "String",
|
|
30336
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
|
+
# ],
|
|
30337
30962
|
# manage_master_user_password: false,
|
|
30338
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
|
+
# ],
|
|
30339
30974
|
# })
|
|
30340
30975
|
#
|
|
30341
30976
|
# @example Response structure
|
|
@@ -30404,6 +31039,13 @@ module Aws::RDS
|
|
|
30404
31039
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
30405
31040
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
30406
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
|
|
30407
31049
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
30408
31050
|
# resp.db_instance.multi_az #=> Boolean
|
|
30409
31051
|
# resp.db_instance.engine_version #=> String
|
|
@@ -30503,6 +31145,15 @@ module Aws::RDS
|
|
|
30503
31145
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
30504
31146
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
30505
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
|
|
30506
31157
|
#
|
|
30507
31158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
|
30508
31159
|
#
|
|
@@ -31031,6 +31682,13 @@ module Aws::RDS
|
|
|
31031
31682
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
31032
31683
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
31033
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
|
|
31034
31692
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
31035
31693
|
# resp.db_instance.multi_az #=> Boolean
|
|
31036
31694
|
# resp.db_instance.engine_version #=> String
|
|
@@ -31130,6 +31788,15 @@ module Aws::RDS
|
|
|
31130
31788
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
31131
31789
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
31132
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
|
|
31133
31800
|
#
|
|
31134
31801
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
|
31135
31802
|
#
|
|
@@ -31198,6 +31865,9 @@ module Aws::RDS
|
|
|
31198
31865
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
|
31199
31866
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
|
31200
31867
|
#
|
|
31868
|
+
# @option params [Array<Types::Tag>] :tags
|
|
31869
|
+
# A list of tags to associate with the replicated automated backups.
|
|
31870
|
+
#
|
|
31201
31871
|
# @option params [String] :source_region
|
|
31202
31872
|
# The source region of the snapshot. This is only needed when the
|
|
31203
31873
|
# shapshot is encrypted and in a different region.
|
|
@@ -31250,6 +31920,12 @@ module Aws::RDS
|
|
|
31250
31920
|
# backup_retention_period: 1,
|
|
31251
31921
|
# kms_key_id: "String",
|
|
31252
31922
|
# pre_signed_url: "SensitiveString",
|
|
31923
|
+
# tags: [
|
|
31924
|
+
# {
|
|
31925
|
+
# key: "String",
|
|
31926
|
+
# value: "String",
|
|
31927
|
+
# },
|
|
31928
|
+
# ],
|
|
31253
31929
|
# source_region: "String",
|
|
31254
31930
|
# })
|
|
31255
31931
|
#
|
|
@@ -31287,7 +31963,17 @@ module Aws::RDS
|
|
|
31287
31963
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
31288
31964
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
31289
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
|
|
31290
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
|
|
31291
31977
|
#
|
|
31292
31978
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
31293
31979
|
#
|
|
@@ -31877,6 +32563,13 @@ module Aws::RDS
|
|
|
31877
32563
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
31878
32564
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
31879
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
|
|
31880
32573
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
31881
32574
|
# resp.db_instance.multi_az #=> Boolean
|
|
31882
32575
|
# resp.db_instance.engine_version #=> String
|
|
@@ -31976,6 +32669,15 @@ module Aws::RDS
|
|
|
31976
32669
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
31977
32670
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
31978
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
|
|
31979
32681
|
#
|
|
31980
32682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
|
31981
32683
|
#
|
|
@@ -32085,7 +32787,17 @@ module Aws::RDS
|
|
|
32085
32787
|
# resp.db_instance_automated_backup.backup_target #=> String
|
|
32086
32788
|
# resp.db_instance_automated_backup.multi_tenant #=> Boolean
|
|
32087
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
|
|
32088
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
|
|
32089
32801
|
#
|
|
32090
32802
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstanceAutomatedBackupsReplication AWS API Documentation
|
|
32091
32803
|
#
|
|
@@ -32485,6 +33197,13 @@ module Aws::RDS
|
|
|
32485
33197
|
# resp.db_instance.pending_modified_values.iam_database_authentication_enabled #=> Boolean
|
|
32486
33198
|
# resp.db_instance.pending_modified_values.dedicated_log_volume #=> Boolean
|
|
32487
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
|
|
32488
33207
|
# resp.db_instance.latest_restorable_time #=> Time
|
|
32489
33208
|
# resp.db_instance.multi_az #=> Boolean
|
|
32490
33209
|
# resp.db_instance.engine_version #=> String
|
|
@@ -32584,6 +33303,15 @@ module Aws::RDS
|
|
|
32584
33303
|
# resp.db_instance.dedicated_log_volume #=> Boolean
|
|
32585
33304
|
# resp.db_instance.is_storage_config_upgrade_available #=> Boolean
|
|
32586
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
|
|
32587
33315
|
#
|
|
32588
33316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
|
|
32589
33317
|
#
|
|
@@ -32612,7 +33340,7 @@ module Aws::RDS
|
|
|
32612
33340
|
tracer: tracer
|
|
32613
33341
|
)
|
|
32614
33342
|
context[:gem_name] = 'aws-sdk-rds'
|
|
32615
|
-
context[:gem_version] = '1.
|
|
33343
|
+
context[:gem_version] = '1.302.0'
|
|
32616
33344
|
Seahorse::Client::Request.new(handlers, context)
|
|
32617
33345
|
end
|
|
32618
33346
|
|