aws-sdk-rds 1.19.0 → 1.20.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +190 -5
- data/lib/aws-sdk-rds/client_api.rb +33 -0
- data/lib/aws-sdk-rds/db_cluster.rb +2 -2
- data/lib/aws-sdk-rds/db_instance.rb +55 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +20 -0
- data/lib/aws-sdk-rds/resource.rb +15 -1
- data/lib/aws-sdk-rds/types.rb +253 -14
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07d185e5e2aa0c05d26128dafab4a95ea650875e
|
4
|
+
data.tar.gz: 6f83fbf2f4bf116ce76d8ab8c896574a09982074
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c28a0421569b636210874fa0d02f23a1909f3fbd6adcc9eada983cb900c5350a2e656d0d64003136bedeb8cff768da049a61bd52ebc11b6c9619f14ebe70398e
|
7
|
+
data.tar.gz: 0aa3ac84f09b109fc7cbf86572618fa68596b8ba17ae2cabd31ac46c181d23e594589f136da3e1eb778a9906e1400115de6ef3ca19da20a47ba462095a0c8374
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1281,6 +1281,9 @@ module Aws::RDS
|
|
1281
1281
|
# resp.db_snapshot.db_snapshot_arn #=> String
|
1282
1282
|
# resp.db_snapshot.timezone #=> String
|
1283
1283
|
# resp.db_snapshot.iam_database_authentication_enabled #=> Boolean
|
1284
|
+
# resp.db_snapshot.processor_features #=> Array
|
1285
|
+
# resp.db_snapshot.processor_features[0].name #=> String
|
1286
|
+
# resp.db_snapshot.processor_features[0].value #=> String
|
1284
1287
|
#
|
1285
1288
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1286
1289
|
#
|
@@ -2975,6 +2978,10 @@ module Aws::RDS
|
|
2975
2978
|
# The list of log types that need to be enabled for exporting to
|
2976
2979
|
# CloudWatch Logs.
|
2977
2980
|
#
|
2981
|
+
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
2982
|
+
# The number of CPU cores and the number of threads per core for the DB
|
2983
|
+
# instance class of the DB instance.
|
2984
|
+
#
|
2978
2985
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2979
2986
|
#
|
2980
2987
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -3049,6 +3056,12 @@ module Aws::RDS
|
|
3049
3056
|
# enable_performance_insights: false,
|
3050
3057
|
# performance_insights_kms_key_id: "String",
|
3051
3058
|
# enable_cloudwatch_logs_exports: ["String"],
|
3059
|
+
# processor_features: [
|
3060
|
+
# {
|
3061
|
+
# name: "String",
|
3062
|
+
# value: "String",
|
3063
|
+
# },
|
3064
|
+
# ],
|
3052
3065
|
# })
|
3053
3066
|
#
|
3054
3067
|
# @example Response structure
|
@@ -3103,6 +3116,9 @@ module Aws::RDS
|
|
3103
3116
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
3104
3117
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
3105
3118
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
3119
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
3120
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
3121
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
3106
3122
|
# resp.db_instance.latest_restorable_time #=> Time
|
3107
3123
|
# resp.db_instance.multi_az #=> Boolean
|
3108
3124
|
# resp.db_instance.engine_version #=> String
|
@@ -3150,6 +3166,9 @@ module Aws::RDS
|
|
3150
3166
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
3151
3167
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
3152
3168
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
3169
|
+
# resp.db_instance.processor_features #=> Array
|
3170
|
+
# resp.db_instance.processor_features[0].name #=> String
|
3171
|
+
# resp.db_instance.processor_features[0].value #=> String
|
3153
3172
|
#
|
3154
3173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3155
3174
|
#
|
@@ -3467,6 +3486,14 @@ module Aws::RDS
|
|
3467
3486
|
# The list of logs that the new DB instance is to export to CloudWatch
|
3468
3487
|
# Logs.
|
3469
3488
|
#
|
3489
|
+
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
3490
|
+
# The number of CPU cores and the number of threads per core for the DB
|
3491
|
+
# instance class of the DB instance.
|
3492
|
+
#
|
3493
|
+
# @option params [Boolean] :use_default_processor_features
|
3494
|
+
# A value that specifies that the DB instance class of the DB instance
|
3495
|
+
# uses its default processor features.
|
3496
|
+
#
|
3470
3497
|
# @option params [String] :source_region
|
3471
3498
|
# The source region of the snapshot. This is only needed when the
|
3472
3499
|
# shapshot is encrypted and in a different region.
|
@@ -3532,6 +3559,13 @@ module Aws::RDS
|
|
3532
3559
|
# enable_performance_insights: false,
|
3533
3560
|
# performance_insights_kms_key_id: "String",
|
3534
3561
|
# enable_cloudwatch_logs_exports: ["String"],
|
3562
|
+
# processor_features: [
|
3563
|
+
# {
|
3564
|
+
# name: "String",
|
3565
|
+
# value: "String",
|
3566
|
+
# },
|
3567
|
+
# ],
|
3568
|
+
# use_default_processor_features: false,
|
3535
3569
|
# source_region: "String",
|
3536
3570
|
# })
|
3537
3571
|
#
|
@@ -3587,6 +3621,9 @@ module Aws::RDS
|
|
3587
3621
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
3588
3622
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
3589
3623
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
3624
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
3625
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
3626
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
3590
3627
|
# resp.db_instance.latest_restorable_time #=> Time
|
3591
3628
|
# resp.db_instance.multi_az #=> Boolean
|
3592
3629
|
# resp.db_instance.engine_version #=> String
|
@@ -3634,6 +3671,9 @@ module Aws::RDS
|
|
3634
3671
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
3635
3672
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
3636
3673
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
3674
|
+
# resp.db_instance.processor_features #=> Array
|
3675
|
+
# resp.db_instance.processor_features[0].name #=> String
|
3676
|
+
# resp.db_instance.processor_features[0].value #=> String
|
3637
3677
|
#
|
3638
3678
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
3639
3679
|
#
|
@@ -3945,6 +3985,9 @@ module Aws::RDS
|
|
3945
3985
|
# resp.db_snapshot.db_snapshot_arn #=> String
|
3946
3986
|
# resp.db_snapshot.timezone #=> String
|
3947
3987
|
# resp.db_snapshot.iam_database_authentication_enabled #=> Boolean
|
3988
|
+
# resp.db_snapshot.processor_features #=> Array
|
3989
|
+
# resp.db_snapshot.processor_features[0].name #=> String
|
3990
|
+
# resp.db_snapshot.processor_features[0].value #=> String
|
3948
3991
|
#
|
3949
3992
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
3950
3993
|
#
|
@@ -4741,6 +4784,9 @@ module Aws::RDS
|
|
4741
4784
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
4742
4785
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
4743
4786
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
4787
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
4788
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
4789
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
4744
4790
|
# resp.db_instance.latest_restorable_time #=> Time
|
4745
4791
|
# resp.db_instance.multi_az #=> Boolean
|
4746
4792
|
# resp.db_instance.engine_version #=> String
|
@@ -4788,6 +4834,9 @@ module Aws::RDS
|
|
4788
4834
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
4789
4835
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
4790
4836
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
4837
|
+
# resp.db_instance.processor_features #=> Array
|
4838
|
+
# resp.db_instance.processor_features[0].name #=> String
|
4839
|
+
# resp.db_instance.processor_features[0].value #=> String
|
4791
4840
|
#
|
4792
4841
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
4793
4842
|
#
|
@@ -4954,6 +5003,9 @@ module Aws::RDS
|
|
4954
5003
|
# resp.db_snapshot.db_snapshot_arn #=> String
|
4955
5004
|
# resp.db_snapshot.timezone #=> String
|
4956
5005
|
# resp.db_snapshot.iam_database_authentication_enabled #=> Boolean
|
5006
|
+
# resp.db_snapshot.processor_features #=> Array
|
5007
|
+
# resp.db_snapshot.processor_features[0].name #=> String
|
5008
|
+
# resp.db_snapshot.processor_features[0].value #=> String
|
4957
5009
|
#
|
4958
5010
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
4959
5011
|
#
|
@@ -6175,6 +6227,9 @@ module Aws::RDS
|
|
6175
6227
|
# resp.db_instances[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
6176
6228
|
# resp.db_instances[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
6177
6229
|
# resp.db_instances[0].pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
6230
|
+
# resp.db_instances[0].pending_modified_values.processor_features #=> Array
|
6231
|
+
# resp.db_instances[0].pending_modified_values.processor_features[0].name #=> String
|
6232
|
+
# resp.db_instances[0].pending_modified_values.processor_features[0].value #=> String
|
6178
6233
|
# resp.db_instances[0].latest_restorable_time #=> Time
|
6179
6234
|
# resp.db_instances[0].multi_az #=> Boolean
|
6180
6235
|
# resp.db_instances[0].engine_version #=> String
|
@@ -6222,6 +6277,9 @@ module Aws::RDS
|
|
6222
6277
|
# resp.db_instances[0].performance_insights_kms_key_id #=> String
|
6223
6278
|
# resp.db_instances[0].enabled_cloudwatch_logs_exports #=> Array
|
6224
6279
|
# resp.db_instances[0].enabled_cloudwatch_logs_exports[0] #=> String
|
6280
|
+
# resp.db_instances[0].processor_features #=> Array
|
6281
|
+
# resp.db_instances[0].processor_features[0].name #=> String
|
6282
|
+
# resp.db_instances[0].processor_features[0].value #=> String
|
6225
6283
|
#
|
6226
6284
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstances AWS API Documentation
|
6227
6285
|
#
|
@@ -6809,6 +6867,9 @@ module Aws::RDS
|
|
6809
6867
|
# resp.db_snapshots[0].db_snapshot_arn #=> String
|
6810
6868
|
# resp.db_snapshots[0].timezone #=> String
|
6811
6869
|
# resp.db_snapshots[0].iam_database_authentication_enabled #=> Boolean
|
6870
|
+
# resp.db_snapshots[0].processor_features #=> Array
|
6871
|
+
# resp.db_snapshots[0].processor_features[0].name #=> String
|
6872
|
+
# resp.db_snapshots[0].processor_features[0].value #=> String
|
6812
6873
|
#
|
6813
6874
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshots AWS API Documentation
|
6814
6875
|
#
|
@@ -7697,6 +7758,10 @@ module Aws::RDS
|
|
7697
7758
|
# resp.orderable_db_instance_options[0].max_iops_per_db_instance #=> Integer
|
7698
7759
|
# resp.orderable_db_instance_options[0].min_iops_per_gib #=> Float
|
7699
7760
|
# resp.orderable_db_instance_options[0].max_iops_per_gib #=> Float
|
7761
|
+
# resp.orderable_db_instance_options[0].available_processor_features #=> Array
|
7762
|
+
# resp.orderable_db_instance_options[0].available_processor_features[0].name #=> String
|
7763
|
+
# resp.orderable_db_instance_options[0].available_processor_features[0].default_value #=> String
|
7764
|
+
# resp.orderable_db_instance_options[0].available_processor_features[0].allowed_values #=> String
|
7700
7765
|
# resp.marker #=> String
|
7701
7766
|
#
|
7702
7767
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -7949,7 +8014,12 @@ module Aws::RDS
|
|
7949
8014
|
#
|
7950
8015
|
# @option params [String] :product_description
|
7951
8016
|
# Product description filter value. Specify this parameter to show only
|
7952
|
-
# the available offerings
|
8017
|
+
# the available offerings that contain the specified product
|
8018
|
+
# description.
|
8019
|
+
#
|
8020
|
+
# <note markdown="1"> The results show offerings that partially match the filter value.
|
8021
|
+
#
|
8022
|
+
# </note>
|
7953
8023
|
#
|
7954
8024
|
# @option params [String] :offering_type
|
7955
8025
|
# The offering type filter value. Specify this parameter to show only
|
@@ -8211,6 +8281,10 @@ module Aws::RDS
|
|
8211
8281
|
# resp.valid_db_instance_modifications_message.storage[0].iops_to_storage_ratio #=> Array
|
8212
8282
|
# resp.valid_db_instance_modifications_message.storage[0].iops_to_storage_ratio[0].from #=> Float
|
8213
8283
|
# resp.valid_db_instance_modifications_message.storage[0].iops_to_storage_ratio[0].to #=> Float
|
8284
|
+
# resp.valid_db_instance_modifications_message.valid_processor_features #=> Array
|
8285
|
+
# resp.valid_db_instance_modifications_message.valid_processor_features[0].name #=> String
|
8286
|
+
# resp.valid_db_instance_modifications_message.valid_processor_features[0].default_value #=> String
|
8287
|
+
# resp.valid_db_instance_modifications_message.valid_processor_features[0].allowed_values #=> String
|
8214
8288
|
#
|
8215
8289
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeValidDBInstanceModifications AWS API Documentation
|
8216
8290
|
#
|
@@ -9531,6 +9605,14 @@ module Aws::RDS
|
|
9531
9605
|
# The configuration setting for the log types to be enabled for export
|
9532
9606
|
# to CloudWatch Logs for a specific DB instance.
|
9533
9607
|
#
|
9608
|
+
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
9609
|
+
# The number of CPU cores and the number of threads per core for the DB
|
9610
|
+
# instance class of the DB instance.
|
9611
|
+
#
|
9612
|
+
# @option params [Boolean] :use_default_processor_features
|
9613
|
+
# A value that specifies that the DB instance class of the DB instance
|
9614
|
+
# uses its default processor features.
|
9615
|
+
#
|
9534
9616
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9535
9617
|
#
|
9536
9618
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -9599,6 +9681,13 @@ module Aws::RDS
|
|
9599
9681
|
# enable_log_types: ["String"],
|
9600
9682
|
# disable_log_types: ["String"],
|
9601
9683
|
# },
|
9684
|
+
# processor_features: [
|
9685
|
+
# {
|
9686
|
+
# name: "String",
|
9687
|
+
# value: "String",
|
9688
|
+
# },
|
9689
|
+
# ],
|
9690
|
+
# use_default_processor_features: false,
|
9602
9691
|
# })
|
9603
9692
|
#
|
9604
9693
|
# @example Response structure
|
@@ -9653,6 +9742,9 @@ module Aws::RDS
|
|
9653
9742
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
9654
9743
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
9655
9744
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
9745
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
9746
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
9747
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
9656
9748
|
# resp.db_instance.latest_restorable_time #=> Time
|
9657
9749
|
# resp.db_instance.multi_az #=> Boolean
|
9658
9750
|
# resp.db_instance.engine_version #=> String
|
@@ -9700,6 +9792,9 @@ module Aws::RDS
|
|
9700
9792
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
9701
9793
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
9702
9794
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
9795
|
+
# resp.db_instance.processor_features #=> Array
|
9796
|
+
# resp.db_instance.processor_features[0].name #=> String
|
9797
|
+
# resp.db_instance.processor_features[0].value #=> String
|
9703
9798
|
#
|
9704
9799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
9705
9800
|
#
|
@@ -9899,6 +9994,9 @@ module Aws::RDS
|
|
9899
9994
|
# resp.db_snapshot.db_snapshot_arn #=> String
|
9900
9995
|
# resp.db_snapshot.timezone #=> String
|
9901
9996
|
# resp.db_snapshot.iam_database_authentication_enabled #=> Boolean
|
9997
|
+
# resp.db_snapshot.processor_features #=> Array
|
9998
|
+
# resp.db_snapshot.processor_features[0].name #=> String
|
9999
|
+
# resp.db_snapshot.processor_features[0].value #=> String
|
9902
10000
|
#
|
9903
10001
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
9904
10002
|
#
|
@@ -10448,6 +10546,9 @@ module Aws::RDS
|
|
10448
10546
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
10449
10547
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
10450
10548
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
10549
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
10550
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
10551
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
10451
10552
|
# resp.db_instance.latest_restorable_time #=> Time
|
10452
10553
|
# resp.db_instance.multi_az #=> Boolean
|
10453
10554
|
# resp.db_instance.engine_version #=> String
|
@@ -10495,6 +10596,9 @@ module Aws::RDS
|
|
10495
10596
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
10496
10597
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
10497
10598
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
10599
|
+
# resp.db_instance.processor_features #=> Array
|
10600
|
+
# resp.db_instance.processor_features[0].name #=> String
|
10601
|
+
# resp.db_instance.processor_features[0].value #=> String
|
10498
10602
|
#
|
10499
10603
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
10500
10604
|
#
|
@@ -10792,6 +10896,9 @@ module Aws::RDS
|
|
10792
10896
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
10793
10897
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
10794
10898
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
10899
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
10900
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
10901
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
10795
10902
|
# resp.db_instance.latest_restorable_time #=> Time
|
10796
10903
|
# resp.db_instance.multi_az #=> Boolean
|
10797
10904
|
# resp.db_instance.engine_version #=> String
|
@@ -10839,6 +10946,9 @@ module Aws::RDS
|
|
10839
10946
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
10840
10947
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
10841
10948
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
10949
|
+
# resp.db_instance.processor_features #=> Array
|
10950
|
+
# resp.db_instance.processor_features[0].name #=> String
|
10951
|
+
# resp.db_instance.processor_features[0].value #=> String
|
10842
10952
|
#
|
10843
10953
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
10844
10954
|
#
|
@@ -11859,9 +11969,9 @@ module Aws::RDS
|
|
11859
11969
|
# @option params [Integer] :port
|
11860
11970
|
# The port number on which the new DB cluster accepts connections.
|
11861
11971
|
#
|
11862
|
-
# Constraints:
|
11972
|
+
# Constraints: A value from `1150-65535`.
|
11863
11973
|
#
|
11864
|
-
# Default: The
|
11974
|
+
# Default: The default port for the engine.
|
11865
11975
|
#
|
11866
11976
|
# @option params [String] :db_subnet_group_name
|
11867
11977
|
# The DB subnet group name to use for the new DB cluster.
|
@@ -12295,6 +12405,14 @@ module Aws::RDS
|
|
12295
12405
|
# The list of logs that the restored DB instance is to export to
|
12296
12406
|
# CloudWatch Logs.
|
12297
12407
|
#
|
12408
|
+
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
12409
|
+
# The number of CPU cores and the number of threads per core for the DB
|
12410
|
+
# instance class of the DB instance.
|
12411
|
+
#
|
12412
|
+
# @option params [Boolean] :use_default_processor_features
|
12413
|
+
# A value that specifies that the DB instance class of the DB instance
|
12414
|
+
# uses its default processor features.
|
12415
|
+
#
|
12298
12416
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12299
12417
|
#
|
12300
12418
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -12425,6 +12543,13 @@ module Aws::RDS
|
|
12425
12543
|
# domain_iam_role_name: "String",
|
12426
12544
|
# enable_iam_database_authentication: false,
|
12427
12545
|
# enable_cloudwatch_logs_exports: ["String"],
|
12546
|
+
# processor_features: [
|
12547
|
+
# {
|
12548
|
+
# name: "String",
|
12549
|
+
# value: "String",
|
12550
|
+
# },
|
12551
|
+
# ],
|
12552
|
+
# use_default_processor_features: false,
|
12428
12553
|
# })
|
12429
12554
|
#
|
12430
12555
|
# @example Response structure
|
@@ -12479,6 +12604,9 @@ module Aws::RDS
|
|
12479
12604
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
12480
12605
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
12481
12606
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
12607
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
12608
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
12609
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
12482
12610
|
# resp.db_instance.latest_restorable_time #=> Time
|
12483
12611
|
# resp.db_instance.multi_az #=> Boolean
|
12484
12612
|
# resp.db_instance.engine_version #=> String
|
@@ -12526,6 +12654,9 @@ module Aws::RDS
|
|
12526
12654
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
12527
12655
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
12528
12656
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
12657
|
+
# resp.db_instance.processor_features #=> Array
|
12658
|
+
# resp.db_instance.processor_features[0].name #=> String
|
12659
|
+
# resp.db_instance.processor_features[0].value #=> String
|
12529
12660
|
#
|
12530
12661
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
12531
12662
|
#
|
@@ -12852,6 +12983,14 @@ module Aws::RDS
|
|
12852
12983
|
# The list of logs that the restored DB instance is to export to
|
12853
12984
|
# CloudWatch Logs.
|
12854
12985
|
#
|
12986
|
+
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
12987
|
+
# The number of CPU cores and the number of threads per core for the DB
|
12988
|
+
# instance class of the DB instance.
|
12989
|
+
#
|
12990
|
+
# @option params [Boolean] :use_default_processor_features
|
12991
|
+
# A value that specifies that the DB instance class of the DB instance
|
12992
|
+
# uses its default processor features.
|
12993
|
+
#
|
12855
12994
|
# @return [Types::RestoreDBInstanceFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
12856
12995
|
#
|
12857
12996
|
# * {Types::RestoreDBInstanceFromS3Result#db_instance #db_instance} => Types::DBInstance
|
@@ -12903,6 +13042,13 @@ module Aws::RDS
|
|
12903
13042
|
# enable_performance_insights: false,
|
12904
13043
|
# performance_insights_kms_key_id: "String",
|
12905
13044
|
# enable_cloudwatch_logs_exports: ["String"],
|
13045
|
+
# processor_features: [
|
13046
|
+
# {
|
13047
|
+
# name: "String",
|
13048
|
+
# value: "String",
|
13049
|
+
# },
|
13050
|
+
# ],
|
13051
|
+
# use_default_processor_features: false,
|
12906
13052
|
# })
|
12907
13053
|
#
|
12908
13054
|
# @example Response structure
|
@@ -12957,6 +13103,9 @@ module Aws::RDS
|
|
12957
13103
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
12958
13104
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
12959
13105
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
13106
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
13107
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
13108
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
12960
13109
|
# resp.db_instance.latest_restorable_time #=> Time
|
12961
13110
|
# resp.db_instance.multi_az #=> Boolean
|
12962
13111
|
# resp.db_instance.engine_version #=> String
|
@@ -13004,6 +13153,9 @@ module Aws::RDS
|
|
13004
13153
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
13005
13154
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
13006
13155
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
13156
|
+
# resp.db_instance.processor_features #=> Array
|
13157
|
+
# resp.db_instance.processor_features[0].name #=> String
|
13158
|
+
# resp.db_instance.processor_features[0].value #=> String
|
13007
13159
|
#
|
13008
13160
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
13009
13161
|
#
|
@@ -13020,7 +13172,7 @@ module Aws::RDS
|
|
13020
13172
|
# number of days specified by the BackupRetentionPeriod property.
|
13021
13173
|
#
|
13022
13174
|
# The target database is created with most of the original
|
13023
|
-
# configuration, but in a system-selected
|
13175
|
+
# configuration, but in a system-selected Availability Zone, with the
|
13024
13176
|
# default security group, the default subnet group, and the default DB
|
13025
13177
|
# parameter group. By default, the new DB instance is created as a
|
13026
13178
|
# single-AZ deployment except when the instance is a SQL Server instance
|
@@ -13264,6 +13416,14 @@ module Aws::RDS
|
|
13264
13416
|
# The list of logs that the restored DB instance is to export to
|
13265
13417
|
# CloudWatch Logs.
|
13266
13418
|
#
|
13419
|
+
# @option params [Array<Types::ProcessorFeature>] :processor_features
|
13420
|
+
# The number of CPU cores and the number of threads per core for the DB
|
13421
|
+
# instance class of the DB instance.
|
13422
|
+
#
|
13423
|
+
# @option params [Boolean] :use_default_processor_features
|
13424
|
+
# A value that specifies that the DB instance class of the DB instance
|
13425
|
+
# uses its default processor features.
|
13426
|
+
#
|
13267
13427
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13268
13428
|
#
|
13269
13429
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -13397,6 +13557,13 @@ module Aws::RDS
|
|
13397
13557
|
# domain_iam_role_name: "String",
|
13398
13558
|
# enable_iam_database_authentication: false,
|
13399
13559
|
# enable_cloudwatch_logs_exports: ["String"],
|
13560
|
+
# processor_features: [
|
13561
|
+
# {
|
13562
|
+
# name: "String",
|
13563
|
+
# value: "String",
|
13564
|
+
# },
|
13565
|
+
# ],
|
13566
|
+
# use_default_processor_features: false,
|
13400
13567
|
# })
|
13401
13568
|
#
|
13402
13569
|
# @example Response structure
|
@@ -13451,6 +13618,9 @@ module Aws::RDS
|
|
13451
13618
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
13452
13619
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
13453
13620
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
13621
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
13622
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
13623
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
13454
13624
|
# resp.db_instance.latest_restorable_time #=> Time
|
13455
13625
|
# resp.db_instance.multi_az #=> Boolean
|
13456
13626
|
# resp.db_instance.engine_version #=> String
|
@@ -13498,6 +13668,9 @@ module Aws::RDS
|
|
13498
13668
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
13499
13669
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
13500
13670
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
13671
|
+
# resp.db_instance.processor_features #=> Array
|
13672
|
+
# resp.db_instance.processor_features[0].name #=> String
|
13673
|
+
# resp.db_instance.processor_features[0].value #=> String
|
13501
13674
|
#
|
13502
13675
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
13503
13676
|
#
|
@@ -13671,6 +13844,9 @@ module Aws::RDS
|
|
13671
13844
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
13672
13845
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
13673
13846
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
13847
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
13848
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
13849
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
13674
13850
|
# resp.db_instance.latest_restorable_time #=> Time
|
13675
13851
|
# resp.db_instance.multi_az #=> Boolean
|
13676
13852
|
# resp.db_instance.engine_version #=> String
|
@@ -13718,6 +13894,9 @@ module Aws::RDS
|
|
13718
13894
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
13719
13895
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
13720
13896
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
13897
|
+
# resp.db_instance.processor_features #=> Array
|
13898
|
+
# resp.db_instance.processor_features[0].name #=> String
|
13899
|
+
# resp.db_instance.processor_features[0].value #=> String
|
13721
13900
|
#
|
13722
13901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
13723
13902
|
#
|
@@ -13809,6 +13988,9 @@ module Aws::RDS
|
|
13809
13988
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_enable[0] #=> String
|
13810
13989
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable #=> Array
|
13811
13990
|
# resp.db_instance.pending_modified_values.pending_cloudwatch_logs_exports.log_types_to_disable[0] #=> String
|
13991
|
+
# resp.db_instance.pending_modified_values.processor_features #=> Array
|
13992
|
+
# resp.db_instance.pending_modified_values.processor_features[0].name #=> String
|
13993
|
+
# resp.db_instance.pending_modified_values.processor_features[0].value #=> String
|
13812
13994
|
# resp.db_instance.latest_restorable_time #=> Time
|
13813
13995
|
# resp.db_instance.multi_az #=> Boolean
|
13814
13996
|
# resp.db_instance.engine_version #=> String
|
@@ -13856,6 +14038,9 @@ module Aws::RDS
|
|
13856
14038
|
# resp.db_instance.performance_insights_kms_key_id #=> String
|
13857
14039
|
# resp.db_instance.enabled_cloudwatch_logs_exports #=> Array
|
13858
14040
|
# resp.db_instance.enabled_cloudwatch_logs_exports[0] #=> String
|
14041
|
+
# resp.db_instance.processor_features #=> Array
|
14042
|
+
# resp.db_instance.processor_features[0].name #=> String
|
14043
|
+
# resp.db_instance.processor_features[0].value #=> String
|
13859
14044
|
#
|
13860
14045
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
13861
14046
|
#
|
@@ -13879,7 +14064,7 @@ module Aws::RDS
|
|
13879
14064
|
params: params,
|
13880
14065
|
config: config)
|
13881
14066
|
context[:gem_name] = 'aws-sdk-rds'
|
13882
|
-
context[:gem_version] = '1.
|
14067
|
+
context[:gem_version] = '1.20.0'
|
13883
14068
|
Seahorse::Client::Request.new(handlers, context)
|
13884
14069
|
end
|
13885
14070
|
|