aws-sdk-rds 1.6.0 → 1.7.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +181 -156
- data/lib/aws-sdk-rds/client_api.rb +7 -0
- data/lib/aws-sdk-rds/db_cluster.rb +7 -9
- data/lib/aws-sdk-rds/db_instance.rb +124 -102
- data/lib/aws-sdk-rds/db_log_file.rb +2 -2
- data/lib/aws-sdk-rds/db_snapshot.rb +27 -24
- data/lib/aws-sdk-rds/event_subscription.rb +9 -9
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +10 -10
- data/lib/aws-sdk-rds/resource.rb +47 -33
- data/lib/aws-sdk-rds/types.rb +240 -190
- 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: 52258ea0a7cb98b6474dac3f93e98d10b0734055
|
4
|
+
data.tar.gz: fd7ae83e2fb278cc9e9211448bbb7d6ee5b1fde9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed11c71eadb7f78b5b255085c900488e96e3d49d46abf05f761b1284ddd4375f0532f48520677a683d5ef0c039a9a10a02c13dea8dfe94e0b8010c7150d13ad8
|
7
|
+
data.tar.gz: 99ae933dc13f4a79a921b8a5627afb842a73d4820a7b66c8cd61a20e71ea4e65d54abacc59a3e0a048090b5a694320ce817ddfa395628ec29e4878b98a584595
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -269,7 +269,7 @@ module Aws::RDS
|
|
269
269
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html
|
270
270
|
#
|
271
271
|
# @option params [required, String] :resource_name
|
272
|
-
# The Amazon RDS resource the tags
|
272
|
+
# The Amazon RDS resource that the tags are added to. This value is an
|
273
273
|
# Amazon Resource Name (ARN). For information about creating an ARN, see
|
274
274
|
# [ Constructing an RDS Amazon Resource Name (ARN)][1].
|
275
275
|
#
|
@@ -615,8 +615,8 @@ module Aws::RDS
|
|
615
615
|
#
|
616
616
|
# * `PreSignedUrl` - A URL that contains a Signature Version 4 signed
|
617
617
|
# request for the `CopyDBClusterSnapshot` action to be called in the
|
618
|
-
# source AWS Region where the DB cluster snapshot
|
619
|
-
#
|
618
|
+
# source AWS Region where the DB cluster snapshot is copied from. The
|
619
|
+
# pre-signed URL must be a valid request for the
|
620
620
|
# `CopyDBClusterSnapshot` API action that can be executed in the
|
621
621
|
# source AWS Region that contains the encrypted DB cluster snapshot to
|
622
622
|
# be copied.
|
@@ -1054,7 +1054,7 @@ module Aws::RDS
|
|
1054
1054
|
# contain the following parameter values:
|
1055
1055
|
#
|
1056
1056
|
# * `DestinationRegion` - The AWS Region that the encrypted DB snapshot
|
1057
|
-
#
|
1057
|
+
# is copied to. This AWS Region is the same one where the
|
1058
1058
|
# `CopyDBSnapshot` action is called that contains this presigned URL.
|
1059
1059
|
#
|
1060
1060
|
# For example, if you copy an encrypted DB snapshot from the us-west-2
|
@@ -1363,8 +1363,7 @@ module Aws::RDS
|
|
1363
1363
|
#
|
1364
1364
|
# @option params [String] :db_cluster_parameter_group_name
|
1365
1365
|
# The name of the DB cluster parameter group to associate with this DB
|
1366
|
-
# cluster. If this argument is omitted, `default.aurora5.6`
|
1367
|
-
# used.
|
1366
|
+
# cluster. If this argument is omitted, `default.aurora5.6` is used.
|
1368
1367
|
#
|
1369
1368
|
# Constraints:
|
1370
1369
|
#
|
@@ -1510,7 +1509,7 @@ module Aws::RDS
|
|
1510
1509
|
# @option params [String] :pre_signed_url
|
1511
1510
|
# A URL that contains a Signature Version 4 signed request for the
|
1512
1511
|
# `CreateDBCluster` action to be called in the source AWS Region where
|
1513
|
-
# the DB cluster
|
1512
|
+
# the DB cluster is replicated from. You only need to specify
|
1514
1513
|
# `PreSignedUrl` when you are performing cross-region replication from
|
1515
1514
|
# an encrypted DB cluster.
|
1516
1515
|
#
|
@@ -2074,16 +2073,15 @@ module Aws::RDS
|
|
2074
2073
|
# * Web and Express editions: Must be an integer from 20 to 1024.
|
2075
2074
|
#
|
2076
2075
|
# @option params [required, String] :db_instance_class
|
2077
|
-
# The compute and memory capacity of the DB instance
|
2078
|
-
# instance classes are available in all
|
2076
|
+
# The compute and memory capacity of the DB instance, for example,
|
2077
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
2078
|
+
# regions, or for all database engines. For the full list of DB instance
|
2079
|
+
# classes, and availability for your engine, see [DB Instance Class][1]
|
2080
|
+
# in the Amazon RDS User Guide.
|
2081
|
+
#
|
2082
|
+
#
|
2079
2083
|
#
|
2080
|
-
#
|
2081
|
-
# | db.m1.xlarge | db.m2.xlarge |db.m2.2xlarge | db.m2.4xlarge |
|
2082
|
-
# db.m3.medium | db.m3.large | db.m3.xlarge | db.m3.2xlarge |
|
2083
|
-
# db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge |
|
2084
|
-
# db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge |
|
2085
|
-
# db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small |
|
2086
|
-
# db.t2.medium | db.t2.large`
|
2084
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
2087
2085
|
#
|
2088
2086
|
# @option params [required, String] :engine
|
2089
2087
|
# The name of the database engine to be used for this instance.
|
@@ -2228,9 +2226,9 @@ module Aws::RDS
|
|
2228
2226
|
# VPC.
|
2229
2227
|
#
|
2230
2228
|
# @option params [String] :availability_zone
|
2231
|
-
# The EC2 Availability Zone that the database instance
|
2232
|
-
#
|
2233
|
-
#
|
2229
|
+
# The EC2 Availability Zone that the database instance is created in.
|
2230
|
+
# For information on regions and Availability Zones, see [Regions and
|
2231
|
+
# Availability Zones][1].
|
2234
2232
|
#
|
2235
2233
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
2236
2234
|
# AWS Region.
|
@@ -2274,7 +2272,7 @@ module Aws::RDS
|
|
2274
2272
|
# @option params [String] :db_parameter_group_name
|
2275
2273
|
# The name of the DB parameter group to associate with this DB instance.
|
2276
2274
|
# If this argument is omitted, the default DBParameterGroup for the
|
2277
|
-
# specified engine
|
2275
|
+
# specified engine is used.
|
2278
2276
|
#
|
2279
2277
|
# Constraints:
|
2280
2278
|
#
|
@@ -2456,6 +2454,8 @@ module Aws::RDS
|
|
2456
2454
|
#
|
2457
2455
|
# **MySQL**
|
2458
2456
|
#
|
2457
|
+
# * `5.7.19` (supported in all AWS regions)
|
2458
|
+
#
|
2459
2459
|
# * `5.7.17` (supported in all AWS regions)
|
2460
2460
|
#
|
2461
2461
|
# * `5.7.16` (supported in all AWS regions)
|
@@ -2464,6 +2464,8 @@ module Aws::RDS
|
|
2464
2464
|
#
|
2465
2465
|
#
|
2466
2466
|
#
|
2467
|
+
# * `5.6.37` (supported in all AWS regions)
|
2468
|
+
#
|
2467
2469
|
# * `5.6.35` (supported in all AWS regions)
|
2468
2470
|
#
|
2469
2471
|
# * `5.6.34` (supported in all AWS regions)
|
@@ -2475,6 +2477,8 @@ module Aws::RDS
|
|
2475
2477
|
#
|
2476
2478
|
#
|
2477
2479
|
#
|
2480
|
+
# * `5.5.57` (supported in all AWS regions)
|
2481
|
+
#
|
2478
2482
|
# * `5.5.54` (supported in all AWS regions)
|
2479
2483
|
#
|
2480
2484
|
# * `5.5.53` (supported in all AWS regions)
|
@@ -2483,6 +2487,9 @@ module Aws::RDS
|
|
2483
2487
|
#
|
2484
2488
|
# **Oracle 12c**
|
2485
2489
|
#
|
2490
|
+
# * `12.1.0.2.v9` (supported for EE in all AWS regions, and SE2 in all
|
2491
|
+
# AWS regions except us-gov-west-1)
|
2492
|
+
#
|
2486
2493
|
# * `12.1.0.2.v8` (supported for EE in all AWS regions, and SE2 in all
|
2487
2494
|
# AWS regions except us-gov-west-1)
|
2488
2495
|
#
|
@@ -2509,6 +2516,8 @@ module Aws::RDS
|
|
2509
2516
|
#
|
2510
2517
|
# **Oracle 11g**
|
2511
2518
|
#
|
2519
|
+
# * `11.2.0.4.v13` (supported for EE, SE1, and SE, in all AWS regions)
|
2520
|
+
#
|
2512
2521
|
# * `11.2.0.4.v12` (supported for EE, SE1, and SE, in all AWS regions)
|
2513
2522
|
#
|
2514
2523
|
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -2533,17 +2542,17 @@ module Aws::RDS
|
|
2533
2542
|
#
|
2534
2543
|
# **PostgreSQL**
|
2535
2544
|
#
|
2536
|
-
# * **Version 9.6.x:** ` 9.6.
|
2545
|
+
# * **Version 9.6.x:** ` 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1`
|
2537
2546
|
#
|
2538
|
-
# * **Version 9.5.x:** `9.5.6 | 9.5.4 | 9.5.2`
|
2547
|
+
# * **Version 9.5.x:** ` 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2`
|
2539
2548
|
#
|
2540
|
-
# * **Version 9.4.x:** `9.4.11 | 9.4.9 | 9.4.7`
|
2549
|
+
# * **Version 9.4.x:** ` 9.4.14 | 9.4.12 | 9.4.11 | 9.4.9 | 9.4.7`
|
2541
2550
|
#
|
2542
|
-
# * **Version 9.3.x:** `9.3.16 | 9.3.14 | 9.3.12`
|
2551
|
+
# * **Version 9.3.x:** ` 9.3.19 | 9.3.17 | 9.3.16 | 9.3.14 | 9.3.12`
|
2543
2552
|
#
|
2544
2553
|
# @option params [Boolean] :auto_minor_version_upgrade
|
2545
|
-
# Indicates that minor engine upgrades
|
2546
|
-
#
|
2554
|
+
# Indicates that minor engine upgrades are applied automatically to the
|
2555
|
+
# DB instance during the maintenance window.
|
2547
2556
|
#
|
2548
2557
|
# Default: `true`
|
2549
2558
|
#
|
@@ -2596,10 +2605,10 @@ module Aws::RDS
|
|
2596
2605
|
# * **VPC:** false
|
2597
2606
|
#
|
2598
2607
|
# If no DB subnet group has been specified as part of the request and
|
2599
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
2608
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
2600
2609
|
# publicly accessible. If a specific DB subnet group has been specified
|
2601
2610
|
# as part of the request and the PubliclyAccessible value has not been
|
2602
|
-
# set, the DB instance
|
2611
|
+
# set, the DB instance is private.
|
2603
2612
|
#
|
2604
2613
|
# @option params [Array<Types::Tag>] :tags
|
2605
2614
|
# A list of tags.
|
@@ -2738,8 +2747,13 @@ module Aws::RDS
|
|
2738
2747
|
# Default: `false`
|
2739
2748
|
#
|
2740
2749
|
# @option params [Boolean] :enable_performance_insights
|
2750
|
+
# True to enable Performance Insights for the DB instance; otherwise
|
2751
|
+
# false.
|
2741
2752
|
#
|
2742
2753
|
# @option params [String] :performance_insights_kms_key_id
|
2754
|
+
# The KMS key identifier for encryption of Performance Insights data.
|
2755
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier,
|
2756
|
+
# or the KMS key alias for the KMS encryption key.
|
2743
2757
|
#
|
2744
2758
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2745
2759
|
#
|
@@ -2979,22 +2993,20 @@ module Aws::RDS
|
|
2979
2993
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
2980
2994
|
#
|
2981
2995
|
# @option params [String] :db_instance_class
|
2982
|
-
# The compute and memory capacity of the Read Replica
|
2983
|
-
# instance classes are available in all
|
2984
|
-
#
|
2985
|
-
#
|
2986
|
-
#
|
2987
|
-
# db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large |
|
2988
|
-
# db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge |
|
2989
|
-
# db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge |
|
2990
|
-
# db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium |
|
2991
|
-
# db.t2.large`
|
2996
|
+
# The compute and memory capacity of the Read Replica, for example,
|
2997
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
2998
|
+
# regions, or for all database engines. For the full list of DB instance
|
2999
|
+
# classes, and availability for your engine, see [DB Instance Class][1]
|
3000
|
+
# in the Amazon RDS User Guide.
|
2992
3001
|
#
|
2993
3002
|
# Default: Inherits from the source DB instance.
|
2994
3003
|
#
|
3004
|
+
#
|
3005
|
+
#
|
3006
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
3007
|
+
#
|
2995
3008
|
# @option params [String] :availability_zone
|
2996
|
-
# The Amazon EC2 Availability Zone that the Read Replica
|
2997
|
-
# in.
|
3009
|
+
# The Amazon EC2 Availability Zone that the Read Replica is created in.
|
2998
3010
|
#
|
2999
3011
|
# Default: A random, system-chosen Availability Zone in the endpoint's
|
3000
3012
|
# AWS Region.
|
@@ -3009,8 +3021,8 @@ module Aws::RDS
|
|
3009
3021
|
# Valid Values: `1150-65535`
|
3010
3022
|
#
|
3011
3023
|
# @option params [Boolean] :auto_minor_version_upgrade
|
3012
|
-
# Indicates that minor engine upgrades
|
3013
|
-
#
|
3024
|
+
# Indicates that minor engine upgrades are applied automatically to the
|
3025
|
+
# Read Replica during the maintenance window.
|
3014
3026
|
#
|
3015
3027
|
# Default: Inherits from the source DB instance
|
3016
3028
|
#
|
@@ -3019,8 +3031,8 @@ module Aws::RDS
|
|
3019
3031
|
# be initially allocated for the DB instance.
|
3020
3032
|
#
|
3021
3033
|
# @option params [String] :option_group_name
|
3022
|
-
# The option group the DB instance
|
3023
|
-
#
|
3034
|
+
# The option group the DB instance is associated with. If omitted, the
|
3035
|
+
# default option group for the engine specified is used.
|
3024
3036
|
#
|
3025
3037
|
# @option params [Boolean] :publicly_accessible
|
3026
3038
|
# Specifies the accessibility options for the DB instance. A value of
|
@@ -3038,19 +3050,19 @@ module Aws::RDS
|
|
3038
3050
|
# * **VPC:**false
|
3039
3051
|
#
|
3040
3052
|
# If no DB subnet group has been specified as part of the request and
|
3041
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
3053
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
3042
3054
|
# publicly accessible. If a specific DB subnet group has been specified
|
3043
3055
|
# as part of the request and the PubliclyAccessible value has not been
|
3044
|
-
# set, the DB instance
|
3056
|
+
# set, the DB instance is private.
|
3045
3057
|
#
|
3046
3058
|
# @option params [Array<Types::Tag>] :tags
|
3047
3059
|
# A list of tags.
|
3048
3060
|
#
|
3049
3061
|
# @option params [String] :db_subnet_group_name
|
3050
3062
|
# Specifies a DB subnet group for the DB instance. The new DB instance
|
3051
|
-
#
|
3052
|
-
#
|
3053
|
-
#
|
3063
|
+
# is created in the VPC associated with the DB subnet group. If no DB
|
3064
|
+
# subnet group is specified, then the new DB instance is not created in
|
3065
|
+
# a VPC.
|
3054
3066
|
#
|
3055
3067
|
# Constraints:
|
3056
3068
|
#
|
@@ -3066,10 +3078,10 @@ module Aws::RDS
|
|
3066
3078
|
# source DB instance must either:>
|
3067
3079
|
#
|
3068
3080
|
# * Specify DB subnet groups from the same VPC. All these Read
|
3069
|
-
# Replicas
|
3081
|
+
# Replicas are created in the same VPC.
|
3070
3082
|
#
|
3071
|
-
# * Not specify a DB subnet group. All these Read Replicas
|
3072
|
-
#
|
3083
|
+
# * Not specify a DB subnet group. All these Read Replicas are created
|
3084
|
+
# outside of any VPC.
|
3073
3085
|
#
|
3074
3086
|
# Example: `mySubnetgroup`
|
3075
3087
|
#
|
@@ -3148,7 +3160,7 @@ module Aws::RDS
|
|
3148
3160
|
# presigned URL request must contain the following parameter values:
|
3149
3161
|
#
|
3150
3162
|
# * `DestinationRegion` - The AWS Region that the encrypted Read Replica
|
3151
|
-
#
|
3163
|
+
# is created in. This AWS Region is the same one where the
|
3152
3164
|
# `CreateDBInstanceReadReplica` action is called that contains this
|
3153
3165
|
# presigned URL.
|
3154
3166
|
#
|
@@ -3199,8 +3211,13 @@ module Aws::RDS
|
|
3199
3211
|
# Default: `false`
|
3200
3212
|
#
|
3201
3213
|
# @option params [Boolean] :enable_performance_insights
|
3214
|
+
# True to enable Performance Insights for the read replica; otherwise
|
3215
|
+
# false.
|
3202
3216
|
#
|
3203
3217
|
# @option params [String] :performance_insights_kms_key_id
|
3218
|
+
# The KMS key identifier for encryption of Performance Insights data.
|
3219
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier,
|
3220
|
+
# or the KMS key alias for the KMS encryption key.
|
3204
3221
|
#
|
3205
3222
|
# @option params [String] :source_region
|
3206
3223
|
# The source region of the snapshot. This is only needed when the
|
@@ -3756,13 +3773,13 @@ module Aws::RDS
|
|
3756
3773
|
# EventCategories = Availability, Backup.
|
3757
3774
|
#
|
3758
3775
|
# If you specify both the SourceType and SourceIds, such as SourceType =
|
3759
|
-
# db-instance and SourceIdentifier = myDBInstance1, you
|
3760
|
-
#
|
3761
|
-
#
|
3762
|
-
#
|
3763
|
-
#
|
3764
|
-
#
|
3765
|
-
#
|
3776
|
+
# db-instance and SourceIdentifier = myDBInstance1, you are notified of
|
3777
|
+
# all the db-instance events for the specified source. If you specify a
|
3778
|
+
# SourceType but do not specify a SourceIdentifier, you receive notice
|
3779
|
+
# of the events for that source type for all your RDS sources. If you do
|
3780
|
+
# not specify either the SourceType nor the SourceIdentifier, you are
|
3781
|
+
# notified of events generated from all RDS sources belonging to your
|
3782
|
+
# customer account.
|
3766
3783
|
#
|
3767
3784
|
# @option params [required, String] :subscription_name
|
3768
3785
|
# The name of the subscription.
|
@@ -3775,10 +3792,10 @@ module Aws::RDS
|
|
3775
3792
|
# and subscribe to it.
|
3776
3793
|
#
|
3777
3794
|
# @option params [String] :source_type
|
3778
|
-
# The type of source that
|
3779
|
-
#
|
3780
|
-
#
|
3781
|
-
#
|
3795
|
+
# The type of source that is generating the events. For example, if you
|
3796
|
+
# want to be notified of events generated by a DB instance, you would
|
3797
|
+
# set this parameter to db-instance. if this value is not specified, all
|
3798
|
+
# events are returned.
|
3782
3799
|
#
|
3783
3800
|
# Valid values: `db-instance` \| `db-cluster` \| `db-parameter-group` \|
|
3784
3801
|
# `db-security-group` \| `db-snapshot` \| `db-cluster-snapshot`
|
@@ -3794,7 +3811,7 @@ module Aws::RDS
|
|
3794
3811
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
3795
3812
|
#
|
3796
3813
|
# @option params [Array<String>] :source_ids
|
3797
|
-
# The list of identifiers of the event sources for which events
|
3814
|
+
# The list of identifiers of the event sources for which events are
|
3798
3815
|
# returned. If not specified, then all sources are included in the
|
3799
3816
|
# response. An identifier must begin with a letter and must contain only
|
3800
3817
|
# ASCII letters, digits, and hyphens; it cannot end with a hyphen or
|
@@ -6639,7 +6656,7 @@ module Aws::RDS
|
|
6639
6656
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
6640
6657
|
#
|
6641
6658
|
# @option params [String] :source_type
|
6642
|
-
# The type of source that
|
6659
|
+
# The type of source that is generating the events.
|
6643
6660
|
#
|
6644
6661
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
6645
6662
|
# \| db-snapshot
|
@@ -6787,8 +6804,8 @@ module Aws::RDS
|
|
6787
6804
|
# as a parameter. By default, the past hour of events are returned.
|
6788
6805
|
#
|
6789
6806
|
# @option params [String] :source_identifier
|
6790
|
-
# The identifier of the event source for which events
|
6791
|
-
#
|
6807
|
+
# The identifier of the event source for which events are returned. If
|
6808
|
+
# not specified, then all sources are included in the response.
|
6792
6809
|
#
|
6793
6810
|
# Constraints:
|
6794
6811
|
#
|
@@ -6928,8 +6945,8 @@ module Aws::RDS
|
|
6928
6945
|
# Describes all available options.
|
6929
6946
|
#
|
6930
6947
|
# @option params [required, String] :engine_name
|
6931
|
-
# A required parameter. Options available for the given engine name
|
6932
|
-
#
|
6948
|
+
# A required parameter. Options available for the given engine name are
|
6949
|
+
# described.
|
6933
6950
|
#
|
6934
6951
|
# @option params [String] :major_engine_version
|
6935
6952
|
# If specified, filters the results to include only options for the
|
@@ -7240,6 +7257,12 @@ module Aws::RDS
|
|
7240
7257
|
# resp.orderable_db_instance_options[0].supports_enhanced_monitoring #=> Boolean
|
7241
7258
|
# resp.orderable_db_instance_options[0].supports_iam_database_authentication #=> Boolean
|
7242
7259
|
# resp.orderable_db_instance_options[0].supports_performance_insights #=> Boolean
|
7260
|
+
# resp.orderable_db_instance_options[0].min_storage_size #=> Integer
|
7261
|
+
# resp.orderable_db_instance_options[0].max_storage_size #=> Integer
|
7262
|
+
# resp.orderable_db_instance_options[0].min_iops_per_db_instance #=> Integer
|
7263
|
+
# resp.orderable_db_instance_options[0].max_iops_per_db_instance #=> Integer
|
7264
|
+
# resp.orderable_db_instance_options[0].min_iops_per_gib #=> Float
|
7265
|
+
# resp.orderable_db_instance_options[0].max_iops_per_gib #=> Float
|
7243
7266
|
# resp.marker #=> String
|
7244
7267
|
#
|
7245
7268
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -7787,8 +7810,8 @@ module Aws::RDS
|
|
7787
7810
|
#
|
7788
7811
|
# @option params [Integer] :number_of_lines
|
7789
7812
|
# The number of lines to download. If the number of lines specified
|
7790
|
-
# results in a file over 1 MB in size, the file
|
7791
|
-
#
|
7813
|
+
# results in a file over 1 MB in size, the file is truncated at 1 MB in
|
7814
|
+
# size.
|
7792
7815
|
#
|
7793
7816
|
# If the NumberOfLines parameter is specified, then the block of lines
|
7794
7817
|
# returned can be from the beginning or the end of the log file,
|
@@ -8571,33 +8594,29 @@ module Aws::RDS
|
|
8571
8594
|
# provisioned (if any), and the number of prior scale storage
|
8572
8595
|
# operations. Typical migration times are under 24 hours, but the
|
8573
8596
|
# process can take up to several days in some cases. During the
|
8574
|
-
# migration, the DB instance
|
8575
|
-
#
|
8576
|
-
#
|
8577
|
-
#
|
8578
|
-
#
|
8579
|
-
#
|
8580
|
-
# instance.
|
8597
|
+
# migration, the DB instance is available for use, but might experience
|
8598
|
+
# performance degradation. While the migration takes place, nightly
|
8599
|
+
# backups for the instance are suspended. No other Amazon RDS operations
|
8600
|
+
# can take place for the instance, including modifying the instance,
|
8601
|
+
# rebooting the instance, deleting the instance, creating a Read Replica
|
8602
|
+
# for the instance, and creating a DB snapshot of the instance.
|
8581
8603
|
#
|
8582
8604
|
# @option params [String] :db_instance_class
|
8583
|
-
# The new compute and memory capacity of the DB instance
|
8584
|
-
#
|
8585
|
-
#
|
8586
|
-
#
|
8605
|
+
# The new compute and memory capacity of the DB instance, for example,
|
8606
|
+
# `db.m4.large`. Not all DB instance classes are available in all
|
8607
|
+
# regions, or for all database engines. For the full list of DB instance
|
8608
|
+
# classes, and availability for your engine, see [DB Instance Class][1]
|
8609
|
+
# in the Amazon RDS User Guide.
|
8587
8610
|
#
|
8588
|
-
#
|
8589
|
-
#
|
8590
|
-
# `ApplyImmediately` is specified as `true` for this request.
|
8611
|
+
# If you modify the DB instance class, an outage occurs during the
|
8612
|
+
# change. The change is applied during the next maintenance window,
|
8613
|
+
# unless `ApplyImmediately` is specified as `true` for this request.
|
8591
8614
|
#
|
8592
8615
|
# Default: Uses existing setting
|
8593
8616
|
#
|
8594
|
-
#
|
8595
|
-
#
|
8596
|
-
#
|
8597
|
-
# db.m4.large | db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge |
|
8598
|
-
# db.m4.10xlarge | db.r3.large | db.r3.xlarge | db.r3.2xlarge |
|
8599
|
-
# db.r3.4xlarge | db.r3.8xlarge | db.t2.micro | db.t2.small |
|
8600
|
-
# db.t2.medium | db.t2.large`
|
8617
|
+
#
|
8618
|
+
#
|
8619
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
8601
8620
|
#
|
8602
8621
|
# @option params [String] :db_subnet_group_name
|
8603
8622
|
# The new DB subnet group for the DB instance. You can use this
|
@@ -8653,12 +8672,12 @@ module Aws::RDS
|
|
8653
8672
|
#
|
8654
8673
|
# If this parameter is set to `false`, changes to the DB instance are
|
8655
8674
|
# applied during the next maintenance window. Some parameter changes can
|
8656
|
-
# cause an outage and
|
8657
|
-
#
|
8658
|
-
#
|
8659
|
-
#
|
8660
|
-
#
|
8661
|
-
#
|
8675
|
+
# cause an outage and are applied on the next call to RebootDBInstance,
|
8676
|
+
# or the next failure reboot. Review the table of parameters in
|
8677
|
+
# [Modifying a DB Instance and Using the Apply Immediately Parameter][1]
|
8678
|
+
# to see the impact that setting `ApplyImmediately` to `true` or `false`
|
8679
|
+
# has for each modified parameter and to determine when the changes are
|
8680
|
+
# applied.
|
8662
8681
|
#
|
8663
8682
|
# Default: `false`
|
8664
8683
|
#
|
@@ -8827,8 +8846,8 @@ module Aws::RDS
|
|
8827
8846
|
# version than the DB instance's current version.
|
8828
8847
|
#
|
8829
8848
|
# @option params [Boolean] :auto_minor_version_upgrade
|
8830
|
-
# Indicates that minor version upgrades
|
8831
|
-
#
|
8849
|
+
# Indicates that minor version upgrades are applied automatically to the
|
8850
|
+
# DB instance during the maintenance window. Changing this parameter
|
8832
8851
|
# does not result in an outage except in the following case and the
|
8833
8852
|
# change is asynchronously applied as soon as possible. An outage will
|
8834
8853
|
# result if this parameter is set to `true` during the maintenance
|
@@ -8871,13 +8890,12 @@ module Aws::RDS
|
|
8871
8890
|
# provisioned (if any), and the number of prior scale storage
|
8872
8891
|
# operations. Typical migration times are under 24 hours, but the
|
8873
8892
|
# process can take up to several days in some cases. During the
|
8874
|
-
# migration, the DB instance
|
8875
|
-
#
|
8876
|
-
#
|
8877
|
-
#
|
8878
|
-
#
|
8879
|
-
#
|
8880
|
-
# instance.
|
8893
|
+
# migration, the DB instance is available for use, but might experience
|
8894
|
+
# performance degradation. While the migration takes place, nightly
|
8895
|
+
# backups for the instance are suspended. No other Amazon RDS operations
|
8896
|
+
# can take place for the instance, including modifying the instance,
|
8897
|
+
# rebooting the instance, deleting the instance, creating a Read Replica
|
8898
|
+
# for the instance, and creating a DB snapshot of the instance.
|
8881
8899
|
#
|
8882
8900
|
# @option params [String] :option_group_name
|
8883
8901
|
# Indicates that the DB instance should be associated with the specified
|
@@ -9072,8 +9090,13 @@ module Aws::RDS
|
|
9072
9090
|
# Default: `false`
|
9073
9091
|
#
|
9074
9092
|
# @option params [Boolean] :enable_performance_insights
|
9093
|
+
# True to enable Performance Insights for the DB instance; otherwise
|
9094
|
+
# false.
|
9075
9095
|
#
|
9076
9096
|
# @option params [String] :performance_insights_kms_key_id
|
9097
|
+
# The KMS key identifier for encryption of Performance Insights data.
|
9098
|
+
# The KMS key ID is the Amazon Resource Name (ARN), KMS key identifier,
|
9099
|
+
# or the KMS key alias for the KMS encryption key.
|
9077
9100
|
#
|
9078
9101
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9079
9102
|
#
|
@@ -9634,10 +9657,10 @@ module Aws::RDS
|
|
9634
9657
|
# and subscribe to it.
|
9635
9658
|
#
|
9636
9659
|
# @option params [String] :source_type
|
9637
|
-
# The type of source that
|
9638
|
-
#
|
9639
|
-
#
|
9640
|
-
#
|
9660
|
+
# The type of source that is generating the events. For example, if you
|
9661
|
+
# want to be notified of events generated by a DB instance, you would
|
9662
|
+
# set this parameter to db-instance. if this value is not specified, all
|
9663
|
+
# events are returned.
|
9641
9664
|
#
|
9642
9665
|
# Valid values: db-instance \| db-parameter-group \| db-security-group
|
9643
9666
|
# \| db-snapshot
|
@@ -10197,7 +10220,7 @@ module Aws::RDS
|
|
10197
10220
|
# parameter group that were pending. Rebooting a DB instance results in
|
10198
10221
|
# a momentary outage of the instance, during which the DB instance
|
10199
10222
|
# status is set to rebooting. If the RDS instance is configured for
|
10200
|
-
# MultiAZ, it is possible that the reboot
|
10223
|
+
# MultiAZ, it is possible that the reboot is conducted through a
|
10201
10224
|
# failover. An Amazon RDS event is created when the reboot is completed.
|
10202
10225
|
#
|
10203
10226
|
# If your DB instance is deployed in multiple Availability Zones, you
|
@@ -10223,7 +10246,7 @@ module Aws::RDS
|
|
10223
10246
|
# ^
|
10224
10247
|
#
|
10225
10248
|
# @option params [Boolean] :force_failover
|
10226
|
-
# When `true`, the reboot
|
10249
|
+
# When `true`, the reboot is conducted through a MultiAZ failover.
|
10227
10250
|
#
|
10228
10251
|
# Constraint: You cannot specify `true` if the instance is not
|
10229
10252
|
# configured for MultiAZ.
|
@@ -10465,7 +10488,7 @@ module Aws::RDS
|
|
10465
10488
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html
|
10466
10489
|
#
|
10467
10490
|
# @option params [required, String] :resource_name
|
10468
|
-
# The Amazon RDS resource the tags
|
10491
|
+
# The Amazon RDS resource that the tags are removed from. This value is
|
10469
10492
|
# an Amazon Resource Name (ARN). For information about creating an ARN,
|
10470
10493
|
# see [ Constructing an RDS Amazon Resource Name (ARN)][1].
|
10471
10494
|
#
|
@@ -10744,7 +10767,7 @@ module Aws::RDS
|
|
10744
10767
|
# @option params [String] :db_cluster_parameter_group_name
|
10745
10768
|
# The name of the DB cluster parameter group to associate with the
|
10746
10769
|
# restored DB cluster. If this argument is omitted, `default.aurora5.6`
|
10747
|
-
#
|
10770
|
+
# is used.
|
10748
10771
|
#
|
10749
10772
|
# Constraints:
|
10750
10773
|
#
|
@@ -11345,8 +11368,8 @@ module Aws::RDS
|
|
11345
11368
|
#
|
11346
11369
|
# You can restore to a new DB cluster and encrypt the new DB cluster
|
11347
11370
|
# with a KMS key that is different than the KMS key used to encrypt the
|
11348
|
-
# source DB cluster. The new DB cluster
|
11349
|
-
#
|
11371
|
+
# source DB cluster. The new DB cluster is encrypted with the KMS key
|
11372
|
+
# identified by the `KmsKeyId` parameter.
|
11350
11373
|
#
|
11351
11374
|
# If you do not specify a value for the `KmsKeyId` parameter, then the
|
11352
11375
|
# following will occur:
|
@@ -11517,15 +11540,17 @@ module Aws::RDS
|
|
11517
11540
|
# `DBSnapshotIdentifier` must be the ARN of the shared DB snapshot.
|
11518
11541
|
#
|
11519
11542
|
# @option params [String] :db_instance_class
|
11520
|
-
# The compute and memory capacity of the Amazon RDS DB instance
|
11543
|
+
# The compute and memory capacity of the Amazon RDS DB instance, for
|
11544
|
+
# example, `db.m4.large`. Not all DB instance classes are available in
|
11545
|
+
# all regions, or for all database engines. For the full list of DB
|
11546
|
+
# instance classes, and availability for your engine, see [DB Instance
|
11547
|
+
# Class][1] in the Amazon RDS User Guide.
|
11548
|
+
#
|
11549
|
+
# Default: The same DBInstanceClass as the original DB instance.
|
11550
|
+
#
|
11551
|
+
#
|
11521
11552
|
#
|
11522
|
-
#
|
11523
|
-
# | db.m1.xlarge | db.m2.2xlarge | db.m2.4xlarge | db.m3.medium |
|
11524
|
-
# db.m3.large | db.m3.xlarge | db.m3.2xlarge | db.m4.large |
|
11525
|
-
# db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge |
|
11526
|
-
# db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge |
|
11527
|
-
# db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium |
|
11528
|
-
# db.t2.large`
|
11553
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
11529
11554
|
#
|
11530
11555
|
# @option params [Integer] :port
|
11531
11556
|
# The port number on which the database accepts connections.
|
@@ -11535,8 +11560,7 @@ module Aws::RDS
|
|
11535
11560
|
# Constraints: Value must be `1150-65535`
|
11536
11561
|
#
|
11537
11562
|
# @option params [String] :availability_zone
|
11538
|
-
# The EC2 Availability Zone that the database instance
|
11539
|
-
# in.
|
11563
|
+
# The EC2 Availability Zone that the database instance is created in.
|
11540
11564
|
#
|
11541
11565
|
# Default: A random, system-chosen Availability Zone.
|
11542
11566
|
#
|
@@ -11575,14 +11599,14 @@ module Aws::RDS
|
|
11575
11599
|
# * **VPC:** false
|
11576
11600
|
#
|
11577
11601
|
# If no DB subnet group has been specified as part of the request and
|
11578
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
11602
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
11579
11603
|
# publicly accessible. If a specific DB subnet group has been specified
|
11580
11604
|
# as part of the request and the PubliclyAccessible value has not been
|
11581
|
-
# set, the DB instance
|
11605
|
+
# set, the DB instance is private.
|
11582
11606
|
#
|
11583
11607
|
# @option params [Boolean] :auto_minor_version_upgrade
|
11584
|
-
# Indicates that minor version upgrades
|
11585
|
-
#
|
11608
|
+
# Indicates that minor version upgrades are applied automatically to the
|
11609
|
+
# DB instance during the maintenance window.
|
11586
11610
|
#
|
11587
11611
|
# @option params [String] :license_model
|
11588
11612
|
# License model information for the restored DB instance.
|
@@ -11637,18 +11661,20 @@ module Aws::RDS
|
|
11637
11661
|
# @option params [Integer] :iops
|
11638
11662
|
# Specifies the amount of provisioned IOPS for the DB instance,
|
11639
11663
|
# expressed in I/O operations per second. If this parameter is not
|
11640
|
-
# specified, the IOPS value
|
11641
|
-
#
|
11642
|
-
#
|
11643
|
-
#
|
11644
|
-
#
|
11664
|
+
# specified, the IOPS value is taken from the backup. If this parameter
|
11665
|
+
# is set to 0, the new instance is converted to a non-PIOPS instance.
|
11666
|
+
# The conversion takes additional time, though your DB instance is
|
11667
|
+
# available for connections before the conversion starts.
|
11668
|
+
#
|
11669
|
+
# The provisioned IOPS value must follow the requirements for your
|
11670
|
+
# database engine. For more information, see [Amazon RDS Provisioned
|
11671
|
+
# IOPS Storage to Improve Performance][1].
|
11645
11672
|
#
|
11646
11673
|
# Constraints: Must be an integer greater than 1000.
|
11647
11674
|
#
|
11648
|
-
# **SQL Server**
|
11649
11675
|
#
|
11650
|
-
#
|
11651
|
-
#
|
11676
|
+
#
|
11677
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_Storage.html#USER_PIOPS
|
11652
11678
|
#
|
11653
11679
|
# @option params [String] :option_group_name
|
11654
11680
|
# The name of the option group to be used for the restored DB instance.
|
@@ -11997,18 +12023,18 @@ module Aws::RDS
|
|
11997
12023
|
# Constraints: Cannot be specified if RestoreTime parameter is provided.
|
11998
12024
|
#
|
11999
12025
|
# @option params [String] :db_instance_class
|
12000
|
-
# The compute and memory capacity of the Amazon RDS DB instance
|
12001
|
-
#
|
12002
|
-
#
|
12003
|
-
#
|
12004
|
-
#
|
12005
|
-
# db.m4.xlarge | db.m4.2xlarge | db.m4.4xlarge | db.m4.10xlarge |
|
12006
|
-
# db.r3.large | db.r3.xlarge | db.r3.2xlarge | db.r3.4xlarge |
|
12007
|
-
# db.r3.8xlarge | db.t2.micro | db.t2.small | db.t2.medium |
|
12008
|
-
# db.t2.large`
|
12026
|
+
# The compute and memory capacity of the Amazon RDS DB instance, for
|
12027
|
+
# example, `db.m4.large`. Not all DB instance classes are available in
|
12028
|
+
# all regions, or for all database engines. For the full list of DB
|
12029
|
+
# instance classes, and availability for your engine, see [DB Instance
|
12030
|
+
# Class][1] in the Amazon RDS User Guide.
|
12009
12031
|
#
|
12010
12032
|
# Default: The same DBInstanceClass as the original DB instance.
|
12011
12033
|
#
|
12034
|
+
#
|
12035
|
+
#
|
12036
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
12037
|
+
#
|
12012
12038
|
# @option params [Integer] :port
|
12013
12039
|
# The port number on which the database accepts connections.
|
12014
12040
|
#
|
@@ -12017,8 +12043,7 @@ module Aws::RDS
|
|
12017
12043
|
# Default: The same port as the original DB instance.
|
12018
12044
|
#
|
12019
12045
|
# @option params [String] :availability_zone
|
12020
|
-
# The EC2 Availability Zone that the database instance
|
12021
|
-
# in.
|
12046
|
+
# The EC2 Availability Zone that the database instance is created in.
|
12022
12047
|
#
|
12023
12048
|
# Default: A random, system-chosen Availability Zone.
|
12024
12049
|
#
|
@@ -12057,14 +12082,14 @@ module Aws::RDS
|
|
12057
12082
|
# * **VPC:**false
|
12058
12083
|
#
|
12059
12084
|
# If no DB subnet group has been specified as part of the request and
|
12060
|
-
# the PubliclyAccessible value has not been set, the DB instance
|
12085
|
+
# the PubliclyAccessible value has not been set, the DB instance is
|
12061
12086
|
# publicly accessible. If a specific DB subnet group has been specified
|
12062
12087
|
# as part of the request and the PubliclyAccessible value has not been
|
12063
|
-
# set, the DB instance
|
12088
|
+
# set, the DB instance is private.
|
12064
12089
|
#
|
12065
12090
|
# @option params [Boolean] :auto_minor_version_upgrade
|
12066
|
-
# Indicates that minor version upgrades
|
12067
|
-
#
|
12091
|
+
# Indicates that minor version upgrades are applied automatically to the
|
12092
|
+
# DB instance during the maintenance window.
|
12068
12093
|
#
|
12069
12094
|
# @option params [String] :license_model
|
12070
12095
|
# License model information for the restored DB instance.
|
@@ -12769,7 +12794,7 @@ module Aws::RDS
|
|
12769
12794
|
params: params,
|
12770
12795
|
config: config)
|
12771
12796
|
context[:gem_name] = 'aws-sdk-rds'
|
12772
|
-
context[:gem_version] = '1.
|
12797
|
+
context[:gem_version] = '1.7.0'
|
12773
12798
|
Seahorse::Client::Request.new(handlers, context)
|
12774
12799
|
end
|
12775
12800
|
|