aws-sdk-rds 1.48.0 → 1.49.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 +74 -11
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +3 -5
- data/lib/aws-sdk-rds/resource.rb +1 -0
- data/lib/aws-sdk-rds/types.rb +55 -18
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a29cf5a99ffa3c5f7b2b1f6962de0b06e9172655
|
4
|
+
data.tar.gz: 9d89ca19e34aa18184442c37a2f026a859fdb6df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2d5851f8cd293ae0c0bd8c7ef3e47bcd47d47760e2539016d01fad06957dfd760f630ea399c460a657660f998c08d8c18e957041a5c419d8a29ba7d7fa0f0441
|
7
|
+
data.tar.gz: 1b62b82b210f3282d868ca1743518fe4bdfcab9c9b11bc4a585ebf104655f25c642aee725f26bdde4787ad42345d6d69ccd590b452e50fb865b2fbce1b8ef90d
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -201,6 +201,49 @@ module Aws::RDS
|
|
201
201
|
# When `true`, request parameters are validated before
|
202
202
|
# sending the request.
|
203
203
|
#
|
204
|
+
# @option options [URI::HTTP,String] :http_proxy A proxy to send
|
205
|
+
# requests through. Formatted like 'http://proxy.com:123'.
|
206
|
+
#
|
207
|
+
# @option options [Float] :http_open_timeout (15) The number of
|
208
|
+
# seconds to wait when opening a HTTP session before rasing a
|
209
|
+
# `Timeout::Error`.
|
210
|
+
#
|
211
|
+
# @option options [Integer] :http_read_timeout (60) The default
|
212
|
+
# number of seconds to wait for response data. This value can
|
213
|
+
# safely be set
|
214
|
+
# per-request on the session yeidled by {#session_for}.
|
215
|
+
#
|
216
|
+
# @option options [Float] :http_idle_timeout (5) The number of
|
217
|
+
# seconds a connection is allowed to sit idble before it is
|
218
|
+
# considered stale. Stale connections are closed and removed
|
219
|
+
# from the pool before making a request.
|
220
|
+
#
|
221
|
+
# @option options [Float] :http_continue_timeout (1) The number of
|
222
|
+
# seconds to wait for a 100-continue response before sending the
|
223
|
+
# request body. This option has no effect unless the request has
|
224
|
+
# "Expect" header set to "100-continue". Defaults to `nil` which
|
225
|
+
# disables this behaviour. This value can safely be set per
|
226
|
+
# request on the session yeidled by {#session_for}.
|
227
|
+
#
|
228
|
+
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
229
|
+
# HTTP debug output will be sent to the `:logger`.
|
230
|
+
#
|
231
|
+
# @option options [Boolean] :ssl_verify_peer (true) When `true`,
|
232
|
+
# SSL peer certificates are verified when establishing a
|
233
|
+
# connection.
|
234
|
+
#
|
235
|
+
# @option options [String] :ssl_ca_bundle Full path to the SSL
|
236
|
+
# certificate authority bundle file that should be used when
|
237
|
+
# verifying peer certificates. If you do not pass
|
238
|
+
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
239
|
+
# will be used if available.
|
240
|
+
#
|
241
|
+
# @option options [String] :ssl_ca_directory Full path of the
|
242
|
+
# directory that contains the unbundled SSL certificate
|
243
|
+
# authority files for verifying peer certificates. If you do
|
244
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
245
|
+
# system default will be used if available.
|
246
|
+
#
|
204
247
|
def initialize(*args)
|
205
248
|
super
|
206
249
|
end
|
@@ -432,7 +475,7 @@ module Aws::RDS
|
|
432
475
|
# @option params [required, String] :apply_action
|
433
476
|
# The pending maintenance action to apply to this resource.
|
434
477
|
#
|
435
|
-
# Valid values: `system-update`, `db-upgrade`
|
478
|
+
# Valid values: `system-update`, `db-upgrade`, `hardware-maintenance`
|
436
479
|
#
|
437
480
|
# @option params [required, String] :opt_in_type
|
438
481
|
# A value that specifies the type of opt-in request, or undoes an opt-in
|
@@ -1918,6 +1961,7 @@ module Aws::RDS
|
|
1918
1961
|
# max_capacity: 1,
|
1919
1962
|
# auto_pause: false,
|
1920
1963
|
# seconds_until_auto_pause: 1,
|
1964
|
+
# timeout_action: "String",
|
1921
1965
|
# },
|
1922
1966
|
# deletion_protection: false,
|
1923
1967
|
# global_cluster_identifier: "String",
|
@@ -1988,6 +2032,7 @@ module Aws::RDS
|
|
1988
2032
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
1989
2033
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
1990
2034
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
2035
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
1991
2036
|
# resp.db_cluster.deletion_protection #=> Boolean
|
1992
2037
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
1993
2038
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -3327,9 +3372,8 @@ module Aws::RDS
|
|
3327
3372
|
|
3328
3373
|
# Creates a new DB instance that acts as a Read Replica for an existing
|
3329
3374
|
# source DB instance. You can create a Read Replica for a DB instance
|
3330
|
-
# running MySQL, MariaDB, or PostgreSQL. For more information,
|
3331
|
-
# [Working with
|
3332
|
-
# *Amazon RDS User Guide*.
|
3375
|
+
# running MySQL, MariaDB, Oracle, or PostgreSQL. For more information,
|
3376
|
+
# see [Working with Read Replicas][1] in the *Amazon RDS User Guide*.
|
3333
3377
|
#
|
3334
3378
|
# Amazon Aurora doesn't support this action. You must call the
|
3335
3379
|
# `CreateDBInstance` action to create a DB instance for an Aurora DB
|
@@ -3357,12 +3401,15 @@ module Aws::RDS
|
|
3357
3401
|
#
|
3358
3402
|
# Constraints:
|
3359
3403
|
#
|
3360
|
-
# * Must be the identifier of an existing MySQL, MariaDB, or
|
3361
|
-
# DB instance.
|
3404
|
+
# * Must be the identifier of an existing MySQL, MariaDB, Oracle, or
|
3405
|
+
# PostgreSQL DB instance.
|
3362
3406
|
#
|
3363
3407
|
# * Can specify a DB instance that is a MySQL Read Replica only if the
|
3364
3408
|
# source is running MySQL 5.6 or later.
|
3365
3409
|
#
|
3410
|
+
# * For the limitations of Oracle Read Replicas, see [Read Replica
|
3411
|
+
# Limitations with Oracle][1] in the *Amazon RDS User Guide*.
|
3412
|
+
#
|
3366
3413
|
# * Can specify a DB instance that is a PostgreSQL DB instance only if
|
3367
3414
|
# the source is running PostgreSQL 9.3.5 or later (9.4.7 and higher
|
3368
3415
|
# for cross-region replication).
|
@@ -3375,12 +3422,13 @@ module Aws::RDS
|
|
3375
3422
|
#
|
3376
3423
|
# * If the source DB instance is in a different AWS Region than the Read
|
3377
3424
|
# Replica, specify a valid DB instance ARN. For more information, go
|
3378
|
-
# to [ Constructing an ARN for Amazon RDS][
|
3425
|
+
# to [ Constructing an ARN for Amazon RDS][2] in the *Amazon RDS User
|
3379
3426
|
# Guide*.
|
3380
3427
|
#
|
3381
3428
|
#
|
3382
3429
|
#
|
3383
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
3430
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
3431
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
3384
3432
|
#
|
3385
3433
|
# @option params [String] :db_instance_class
|
3386
3434
|
# The compute and memory capacity of the Read Replica, for example,
|
@@ -3431,7 +3479,7 @@ module Aws::RDS
|
|
3431
3479
|
#
|
3432
3480
|
# @option params [String] :option_group_name
|
3433
3481
|
# The option group the DB instance is associated with. If omitted, the
|
3434
|
-
#
|
3482
|
+
# option group associated with the source instance is used.
|
3435
3483
|
#
|
3436
3484
|
# @option params [Boolean] :publicly_accessible
|
3437
3485
|
# Specifies the accessibility options for the DB instance. A value of
|
@@ -3607,7 +3655,7 @@ module Aws::RDS
|
|
3607
3655
|
# Default: `false`
|
3608
3656
|
#
|
3609
3657
|
# @option params [Boolean] :enable_performance_insights
|
3610
|
-
# True to enable Performance Insights for the
|
3658
|
+
# True to enable Performance Insights for the Read Replica, and
|
3611
3659
|
# otherwise false.
|
3612
3660
|
#
|
3613
3661
|
# For more information, see [Using Amazon Performance Insights][1] in
|
@@ -4766,6 +4814,7 @@ module Aws::RDS
|
|
4766
4814
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
4767
4815
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
4768
4816
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
4817
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
4769
4818
|
# resp.db_cluster.deletion_protection #=> Boolean
|
4770
4819
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
4771
4820
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -6540,6 +6589,7 @@ module Aws::RDS
|
|
6540
6589
|
# resp.db_clusters[0].scaling_configuration_info.max_capacity #=> Integer
|
6541
6590
|
# resp.db_clusters[0].scaling_configuration_info.auto_pause #=> Boolean
|
6542
6591
|
# resp.db_clusters[0].scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
6592
|
+
# resp.db_clusters[0].scaling_configuration_info.timeout_action #=> String
|
6543
6593
|
# resp.db_clusters[0].deletion_protection #=> Boolean
|
6544
6594
|
# resp.db_clusters[0].http_endpoint_enabled #=> Boolean
|
6545
6595
|
# resp.db_clusters[0].copy_tags_to_snapshot #=> Boolean
|
@@ -9357,6 +9407,7 @@ module Aws::RDS
|
|
9357
9407
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
9358
9408
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
9359
9409
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
9410
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
9360
9411
|
# resp.db_cluster.deletion_protection #=> Boolean
|
9361
9412
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
9362
9413
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -9480,6 +9531,9 @@ module Aws::RDS
|
|
9480
9531
|
# @option params [Integer] :capacity
|
9481
9532
|
# The DB cluster capacity.
|
9482
9533
|
#
|
9534
|
+
# When you change the capacity of a paused Aurora Serverless DB cluster,
|
9535
|
+
# it automatically resumes.
|
9536
|
+
#
|
9483
9537
|
# Constraints:
|
9484
9538
|
#
|
9485
9539
|
# * Value must be `2`, `4`, `8`, `16`, `32`, `64`, `128`, or `256`.
|
@@ -9799,6 +9853,7 @@ module Aws::RDS
|
|
9799
9853
|
# max_capacity: 1,
|
9800
9854
|
# auto_pause: false,
|
9801
9855
|
# seconds_until_auto_pause: 1,
|
9856
|
+
# timeout_action: "String",
|
9802
9857
|
# },
|
9803
9858
|
# deletion_protection: false,
|
9804
9859
|
# enable_http_endpoint: false,
|
@@ -9868,6 +9923,7 @@ module Aws::RDS
|
|
9868
9923
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
9869
9924
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
9870
9925
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
9926
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
9871
9927
|
# resp.db_cluster.deletion_protection #=> Boolean
|
9872
9928
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
9873
9929
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -11926,6 +11982,7 @@ module Aws::RDS
|
|
11926
11982
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
11927
11983
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
11928
11984
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
11985
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
11929
11986
|
# resp.db_cluster.deletion_protection #=> Boolean
|
11930
11987
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
11931
11988
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -13011,6 +13068,7 @@ module Aws::RDS
|
|
13011
13068
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
13012
13069
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
13013
13070
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
13071
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
13014
13072
|
# resp.db_cluster.deletion_protection #=> Boolean
|
13015
13073
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
13016
13074
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -13247,6 +13305,7 @@ module Aws::RDS
|
|
13247
13305
|
# max_capacity: 1,
|
13248
13306
|
# auto_pause: false,
|
13249
13307
|
# seconds_until_auto_pause: 1,
|
13308
|
+
# timeout_action: "String",
|
13250
13309
|
# },
|
13251
13310
|
# db_cluster_parameter_group_name: "String",
|
13252
13311
|
# deletion_protection: false,
|
@@ -13316,6 +13375,7 @@ module Aws::RDS
|
|
13316
13375
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
13317
13376
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
13318
13377
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
13378
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
13319
13379
|
# resp.db_cluster.deletion_protection #=> Boolean
|
13320
13380
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
13321
13381
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -13642,6 +13702,7 @@ module Aws::RDS
|
|
13642
13702
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
13643
13703
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
13644
13704
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
13705
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
13645
13706
|
# resp.db_cluster.deletion_protection #=> Boolean
|
13646
13707
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
13647
13708
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -15472,6 +15533,7 @@ module Aws::RDS
|
|
15472
15533
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
15473
15534
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
15474
15535
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
15536
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
15475
15537
|
# resp.db_cluster.deletion_protection #=> Boolean
|
15476
15538
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
15477
15539
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -15731,6 +15793,7 @@ module Aws::RDS
|
|
15731
15793
|
# resp.db_cluster.scaling_configuration_info.max_capacity #=> Integer
|
15732
15794
|
# resp.db_cluster.scaling_configuration_info.auto_pause #=> Boolean
|
15733
15795
|
# resp.db_cluster.scaling_configuration_info.seconds_until_auto_pause #=> Integer
|
15796
|
+
# resp.db_cluster.scaling_configuration_info.timeout_action #=> String
|
15734
15797
|
# resp.db_cluster.deletion_protection #=> Boolean
|
15735
15798
|
# resp.db_cluster.http_endpoint_enabled #=> Boolean
|
15736
15799
|
# resp.db_cluster.copy_tags_to_snapshot #=> Boolean
|
@@ -15917,7 +15980,7 @@ module Aws::RDS
|
|
15917
15980
|
params: params,
|
15918
15981
|
config: config)
|
15919
15982
|
context[:gem_name] = 'aws-sdk-rds'
|
15920
|
-
context[:gem_version] = '1.
|
15983
|
+
context[:gem_version] = '1.49.0'
|
15921
15984
|
Seahorse::Client::Request.new(handlers, context)
|
15922
15985
|
end
|
15923
15986
|
|
@@ -2408,12 +2408,14 @@ module Aws::RDS
|
|
2408
2408
|
ScalingConfiguration.add_member(:max_capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxCapacity"))
|
2409
2409
|
ScalingConfiguration.add_member(:auto_pause, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoPause"))
|
2410
2410
|
ScalingConfiguration.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
|
2411
|
+
ScalingConfiguration.add_member(:timeout_action, Shapes::ShapeRef.new(shape: String, location_name: "TimeoutAction"))
|
2411
2412
|
ScalingConfiguration.struct_class = Types::ScalingConfiguration
|
2412
2413
|
|
2413
2414
|
ScalingConfigurationInfo.add_member(:min_capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MinCapacity"))
|
2414
2415
|
ScalingConfigurationInfo.add_member(:max_capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxCapacity"))
|
2415
2416
|
ScalingConfigurationInfo.add_member(:auto_pause, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoPause"))
|
2416
2417
|
ScalingConfigurationInfo.add_member(:seconds_until_auto_pause, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsUntilAutoPause"))
|
2418
|
+
ScalingConfigurationInfo.add_member(:timeout_action, Shapes::ShapeRef.new(shape: String, location_name: "TimeoutAction"))
|
2417
2419
|
ScalingConfigurationInfo.struct_class = Types::ScalingConfigurationInfo
|
2418
2420
|
|
2419
2421
|
SourceIdsList.member = Shapes::ShapeRef.new(shape: String, location_name: "SourceId")
|
@@ -558,6 +558,7 @@ module Aws::RDS
|
|
558
558
|
# max_capacity: 1,
|
559
559
|
# auto_pause: false,
|
560
560
|
# seconds_until_auto_pause: 1,
|
561
|
+
# timeout_action: "String",
|
561
562
|
# },
|
562
563
|
# deletion_protection: false,
|
563
564
|
# global_cluster_identifier: "String",
|
@@ -963,6 +964,7 @@ module Aws::RDS
|
|
963
964
|
# max_capacity: 1,
|
964
965
|
# auto_pause: false,
|
965
966
|
# seconds_until_auto_pause: 1,
|
967
|
+
# timeout_action: "String",
|
966
968
|
# },
|
967
969
|
# deletion_protection: false,
|
968
970
|
# enable_http_endpoint: false,
|
@@ -101,7 +101,7 @@ module Aws::RDS
|
|
101
101
|
data[:supports_log_exports_to_cloudwatch_logs]
|
102
102
|
end
|
103
103
|
|
104
|
-
# Indicates whether the database engine version supports
|
104
|
+
# Indicates whether the database engine version supports Read Replicas.
|
105
105
|
# @return [Boolean]
|
106
106
|
def supports_read_replica
|
107
107
|
data[:supports_read_replica]
|
@@ -58,9 +58,7 @@ module Aws::RDS
|
|
58
58
|
end
|
59
59
|
|
60
60
|
# The meaning of this parameter differs according to the database engine
|
61
|
-
# you use.
|
62
|
-
# information when returning values from CreateDBInstanceReadReplica
|
63
|
-
# since Read Replicas are only supported for these engines.
|
61
|
+
# you use.
|
64
62
|
#
|
65
63
|
# **MySQL, MariaDB, SQL Server, PostgreSQL**
|
66
64
|
#
|
@@ -1511,7 +1509,7 @@ module Aws::RDS
|
|
1511
1509
|
# be initially allocated for the DB instance.
|
1512
1510
|
# @option options [String] :option_group_name
|
1513
1511
|
# The option group the DB instance is associated with. If omitted, the
|
1514
|
-
#
|
1512
|
+
# option group associated with the source instance is used.
|
1515
1513
|
# @option options [Boolean] :publicly_accessible
|
1516
1514
|
# Specifies the accessibility options for the DB instance. A value of
|
1517
1515
|
# true specifies an Internet-facing instance with a publicly resolvable
|
@@ -1675,7 +1673,7 @@ module Aws::RDS
|
|
1675
1673
|
#
|
1676
1674
|
# Default: `false`
|
1677
1675
|
# @option options [Boolean] :enable_performance_insights
|
1678
|
-
# True to enable Performance Insights for the
|
1676
|
+
# True to enable Performance Insights for the Read Replica, and
|
1679
1677
|
# otherwise false.
|
1680
1678
|
#
|
1681
1679
|
# For more information, see [Using Amazon Performance Insights][1] in
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -215,7 +215,7 @@ module Aws::RDS
|
|
215
215
|
# @!attribute [rw] apply_action
|
216
216
|
# The pending maintenance action to apply to this resource.
|
217
217
|
#
|
218
|
-
# Valid values: `system-update`, `db-upgrade`
|
218
|
+
# Valid values: `system-update`, `db-upgrade`, `hardware-maintenance`
|
219
219
|
# @return [String]
|
220
220
|
#
|
221
221
|
# @!attribute [rw] opt_in_type
|
@@ -1295,6 +1295,7 @@ module Aws::RDS
|
|
1295
1295
|
# max_capacity: 1,
|
1296
1296
|
# auto_pause: false,
|
1297
1297
|
# seconds_until_auto_pause: 1,
|
1298
|
+
# timeout_action: "String",
|
1298
1299
|
# },
|
1299
1300
|
# deletion_protection: false,
|
1300
1301
|
# global_cluster_identifier: "String",
|
@@ -2860,12 +2861,15 @@ module Aws::RDS
|
|
2860
2861
|
#
|
2861
2862
|
# Constraints:
|
2862
2863
|
#
|
2863
|
-
# * Must be the identifier of an existing MySQL, MariaDB, or
|
2864
|
+
# * Must be the identifier of an existing MySQL, MariaDB, Oracle, or
|
2864
2865
|
# PostgreSQL DB instance.
|
2865
2866
|
#
|
2866
2867
|
# * Can specify a DB instance that is a MySQL Read Replica only if the
|
2867
2868
|
# source is running MySQL 5.6 or later.
|
2868
2869
|
#
|
2870
|
+
# * For the limitations of Oracle Read Replicas, see [Read Replica
|
2871
|
+
# Limitations with Oracle][1] in the *Amazon RDS User Guide*.
|
2872
|
+
#
|
2869
2873
|
# * Can specify a DB instance that is a PostgreSQL DB instance only if
|
2870
2874
|
# the source is running PostgreSQL 9.3.5 or later (9.4.7 and higher
|
2871
2875
|
# for cross-region replication).
|
@@ -2878,12 +2882,13 @@ module Aws::RDS
|
|
2878
2882
|
#
|
2879
2883
|
# * If the source DB instance is in a different AWS Region than the
|
2880
2884
|
# Read Replica, specify a valid DB instance ARN. For more
|
2881
|
-
# information, go to [ Constructing an ARN for Amazon RDS][
|
2885
|
+
# information, go to [ Constructing an ARN for Amazon RDS][2] in the
|
2882
2886
|
# *Amazon RDS User Guide*.
|
2883
2887
|
#
|
2884
2888
|
#
|
2885
2889
|
#
|
2886
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
2890
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
2891
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.ARN.html#USER_Tagging.ARN.Constructing
|
2887
2892
|
# @return [String]
|
2888
2893
|
#
|
2889
2894
|
# @!attribute [rw] db_instance_class
|
@@ -2942,7 +2947,7 @@ module Aws::RDS
|
|
2942
2947
|
#
|
2943
2948
|
# @!attribute [rw] option_group_name
|
2944
2949
|
# The option group the DB instance is associated with. If omitted, the
|
2945
|
-
#
|
2950
|
+
# option group associated with the source instance is used.
|
2946
2951
|
# @return [String]
|
2947
2952
|
#
|
2948
2953
|
# @!attribute [rw] publicly_accessible
|
@@ -3133,7 +3138,7 @@ module Aws::RDS
|
|
3133
3138
|
# @return [Boolean]
|
3134
3139
|
#
|
3135
3140
|
# @!attribute [rw] enable_performance_insights
|
3136
|
-
# True to enable Performance Insights for the
|
3141
|
+
# True to enable Performance Insights for the Read Replica, and
|
3137
3142
|
# otherwise false.
|
3138
3143
|
#
|
3139
3144
|
# For more information, see [Using Amazon Performance Insights][1] in
|
@@ -4814,8 +4819,8 @@ module Aws::RDS
|
|
4814
4819
|
# @return [Boolean]
|
4815
4820
|
#
|
4816
4821
|
# @!attribute [rw] supports_read_replica
|
4817
|
-
# Indicates whether the database engine version supports
|
4818
|
-
#
|
4822
|
+
# Indicates whether the database engine version supports Read
|
4823
|
+
# Replicas.
|
4819
4824
|
# @return [Boolean]
|
4820
4825
|
#
|
4821
4826
|
# @!attribute [rw] supported_engine_modes
|
@@ -4902,10 +4907,7 @@ module Aws::RDS
|
|
4902
4907
|
#
|
4903
4908
|
# @!attribute [rw] db_name
|
4904
4909
|
# The meaning of this parameter differs according to the database
|
4905
|
-
# engine you use.
|
4906
|
-
# PostgreSQL information when returning values from
|
4907
|
-
# CreateDBInstanceReadReplica since Read Replicas are only supported
|
4908
|
-
# for these engines.
|
4910
|
+
# engine you use.
|
4909
4911
|
#
|
4910
4912
|
# **MySQL, MariaDB, SQL Server, PostgreSQL**
|
4911
4913
|
#
|
@@ -5525,7 +5527,7 @@ module Aws::RDS
|
|
5525
5527
|
# @return [Boolean]
|
5526
5528
|
#
|
5527
5529
|
# @!attribute [rw] status
|
5528
|
-
# Status of the DB instance. For a StatusType of
|
5530
|
+
# Status of the DB instance. For a StatusType of Read Replica, the
|
5529
5531
|
# values can be replicating, replication stop point set, replication
|
5530
5532
|
# stop point reached, error, stopped, or terminated.
|
5531
5533
|
# @return [String]
|
@@ -9603,6 +9605,9 @@ module Aws::RDS
|
|
9603
9605
|
# @!attribute [rw] capacity
|
9604
9606
|
# The DB cluster capacity.
|
9605
9607
|
#
|
9608
|
+
# When you change the capacity of a paused Aurora Serverless DB
|
9609
|
+
# cluster, it automatically resumes.
|
9610
|
+
#
|
9606
9611
|
# Constraints:
|
9607
9612
|
#
|
9608
9613
|
# * Value must be `2`, `4`, `8`, `16`, `32`, `64`, `128`, or `256`.
|
@@ -9709,6 +9714,7 @@ module Aws::RDS
|
|
9709
9714
|
# max_capacity: 1,
|
9710
9715
|
# auto_pause: false,
|
9711
9716
|
# seconds_until_auto_pause: 1,
|
9717
|
+
# timeout_action: "String",
|
9712
9718
|
# },
|
9713
9719
|
# deletion_protection: false,
|
9714
9720
|
# enable_http_endpoint: false,
|
@@ -11368,12 +11374,12 @@ module Aws::RDS
|
|
11368
11374
|
# @return [String]
|
11369
11375
|
#
|
11370
11376
|
# @!attribute [rw] db_security_group_memberships
|
11371
|
-
# A list of
|
11377
|
+
# A list of DBSecurityGroupMembership name strings used for this
|
11372
11378
|
# option.
|
11373
11379
|
# @return [Array<String>]
|
11374
11380
|
#
|
11375
11381
|
# @!attribute [rw] vpc_security_group_memberships
|
11376
|
-
# A list of
|
11382
|
+
# A list of VpcSecurityGroupMembership name strings used for this
|
11377
11383
|
# option.
|
11378
11384
|
# @return [Array<String>]
|
11379
11385
|
#
|
@@ -12017,7 +12023,8 @@ module Aws::RDS
|
|
12017
12023
|
#
|
12018
12024
|
# @!attribute [rw] action
|
12019
12025
|
# The type of pending maintenance action that is available for the
|
12020
|
-
# resource. Valid actions are `system-update
|
12026
|
+
# resource. Valid actions are `system-update`, `db-upgrade`, and
|
12027
|
+
# `hardware-maintenance`.
|
12021
12028
|
# @return [String]
|
12022
12029
|
#
|
12023
12030
|
# @!attribute [rw] auto_applied_after_date
|
@@ -13421,6 +13428,7 @@ module Aws::RDS
|
|
13421
13428
|
# max_capacity: 1,
|
13422
13429
|
# auto_pause: false,
|
13423
13430
|
# seconds_until_auto_pause: 1,
|
13431
|
+
# timeout_action: "String",
|
13424
13432
|
# },
|
13425
13433
|
# db_cluster_parameter_group_name: "String",
|
13426
13434
|
# deletion_protection: false,
|
@@ -15284,6 +15292,7 @@ module Aws::RDS
|
|
15284
15292
|
# max_capacity: 1,
|
15285
15293
|
# auto_pause: false,
|
15286
15294
|
# seconds_until_auto_pause: 1,
|
15295
|
+
# timeout_action: "String",
|
15287
15296
|
# }
|
15288
15297
|
#
|
15289
15298
|
# @!attribute [rw] min_capacity
|
@@ -15325,13 +15334,32 @@ module Aws::RDS
|
|
15325
15334
|
# mode is paused.
|
15326
15335
|
# @return [Integer]
|
15327
15336
|
#
|
15337
|
+
# @!attribute [rw] timeout_action
|
15338
|
+
# The action to take when the timeout is reached, either
|
15339
|
+
# `ForceApplyCapacityChange` or `RollbackCapacityChange`.
|
15340
|
+
#
|
15341
|
+
# `ForceApplyCapacityChange`, the default, sets the capacity to the
|
15342
|
+
# specified value as soon as possible.
|
15343
|
+
#
|
15344
|
+
# `RollbackCapacityChange` ignores the capacity change if a scaling
|
15345
|
+
# point is not found in the timeout period.
|
15346
|
+
#
|
15347
|
+
# For more information, see [ Autoscaling for Aurora Serverless][1] in
|
15348
|
+
# the *Amazon Aurora User Guide*.
|
15349
|
+
#
|
15350
|
+
#
|
15351
|
+
#
|
15352
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless.how-it-works.html#aurora-serverless.how-it-works.auto-scaling
|
15353
|
+
# @return [String]
|
15354
|
+
#
|
15328
15355
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ScalingConfiguration AWS API Documentation
|
15329
15356
|
#
|
15330
15357
|
class ScalingConfiguration < Struct.new(
|
15331
15358
|
:min_capacity,
|
15332
15359
|
:max_capacity,
|
15333
15360
|
:auto_pause,
|
15334
|
-
:seconds_until_auto_pause
|
15361
|
+
:seconds_until_auto_pause,
|
15362
|
+
:timeout_action)
|
15335
15363
|
include Aws::Structure
|
15336
15364
|
end
|
15337
15365
|
|
@@ -15358,6 +15386,9 @@ module Aws::RDS
|
|
15358
15386
|
# @!attribute [rw] auto_pause
|
15359
15387
|
# A value that indicates whether automatic pause is allowed for the
|
15360
15388
|
# Aurora DB cluster in `serverless` DB engine mode.
|
15389
|
+
#
|
15390
|
+
# When the value is set to false for an Aurora Serverless DB cluster,
|
15391
|
+
# the DB cluster automatically resumes.
|
15361
15392
|
# @return [Boolean]
|
15362
15393
|
#
|
15363
15394
|
# @!attribute [rw] seconds_until_auto_pause
|
@@ -15366,13 +15397,19 @@ module Aws::RDS
|
|
15366
15397
|
# only when it's idle (it has no connections).
|
15367
15398
|
# @return [Integer]
|
15368
15399
|
#
|
15400
|
+
# @!attribute [rw] timeout_action
|
15401
|
+
# The timeout action of a call to `ModifyCurrentDBClusterCapacity`,
|
15402
|
+
# either `ForceApplyCapacityChange` or `RollbackCapacityChange`.
|
15403
|
+
# @return [String]
|
15404
|
+
#
|
15369
15405
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ScalingConfigurationInfo AWS API Documentation
|
15370
15406
|
#
|
15371
15407
|
class ScalingConfigurationInfo < Struct.new(
|
15372
15408
|
:min_capacity,
|
15373
15409
|
:max_capacity,
|
15374
15410
|
:auto_pause,
|
15375
|
-
:seconds_until_auto_pause
|
15411
|
+
:seconds_until_auto_pause,
|
15412
|
+
:timeout_action)
|
15376
15413
|
include Aws::Structure
|
15377
15414
|
end
|
15378
15415
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.49.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-04-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -87,7 +87,7 @@ files:
|
|
87
87
|
- lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb
|
88
88
|
- lib/aws-sdk-rds/types.rb
|
89
89
|
- lib/aws-sdk-rds/waiters.rb
|
90
|
-
homepage:
|
90
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
91
91
|
licenses:
|
92
92
|
- Apache-2.0
|
93
93
|
metadata:
|