aws-sdk-rds 1.73.0 → 1.74.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 +31 -2
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_instance.rb +28 -0
- data/lib/aws-sdk-rds/types.rb +34 -2
- 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: aa1f488262bc95c43f063647e677064e5443571c
|
4
|
+
data.tar.gz: bd59d093f573b107aeb8286d46110a18664614d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7257c0e060593b25b40f5d3e271f81b0dc6e68671ae424dd8f462d0fda5bfd77cdfe7eff459d0edfae493443e04c6f0b4be3c852d3af6d3791a27fbfb56cee8
|
7
|
+
data.tar.gz: 1c3964c1503f9d4a61e74ef5f2fd06acadde1ab64cfc980532354c0077d818cfe90a47cb9fc8a7808e9b73788e9877977c97531d045df317fc647e280bbd3c78
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1260,7 +1260,7 @@ module Aws::RDS
|
|
1260
1260
|
#
|
1261
1261
|
#
|
1262
1262
|
#
|
1263
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
1263
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopyDBSnapshot
|
1264
1264
|
#
|
1265
1265
|
# @option params [required, String] :source_db_snapshot_identifier
|
1266
1266
|
# The identifier for the source DB snapshot.
|
@@ -11994,6 +11994,34 @@ module Aws::RDS
|
|
11994
11994
|
# The upper limit to which Amazon RDS can automatically scale the
|
11995
11995
|
# storage of the DB instance.
|
11996
11996
|
#
|
11997
|
+
# @option params [Boolean] :certificate_rotation_restart
|
11998
|
+
# A value that indicates whether the DB instance is restarted when you
|
11999
|
+
# rotate your SSL/TLS certificate.
|
12000
|
+
#
|
12001
|
+
# By default, the DB instance is restarted when you rotate your SSL/TLS
|
12002
|
+
# certificate. The certificate is not updated until the DB instance is
|
12003
|
+
# restarted.
|
12004
|
+
#
|
12005
|
+
# Set this parameter only if you are *not* using SSL/TLS to connect to
|
12006
|
+
# the DB instance.
|
12007
|
+
#
|
12008
|
+
# If you are using SSL/TLS to connect to the DB instance, follow the
|
12009
|
+
# appropriate instructions for your DB engine to rotate your SSL/TLS
|
12010
|
+
# certificate:
|
12011
|
+
#
|
12012
|
+
# * For more information about rotating your SSL/TLS certificate for RDS
|
12013
|
+
# DB engines, see [ Rotating Your SSL/TLS Certificate.][1] in the
|
12014
|
+
# *Amazon RDS User Guide.*
|
12015
|
+
#
|
12016
|
+
# * For more information about rotating your SSL/TLS certificate for
|
12017
|
+
# Aurora DB engines, see [ Rotating Your SSL/TLS Certificate][2] in
|
12018
|
+
# the *Amazon Aurora User Guide.*
|
12019
|
+
#
|
12020
|
+
#
|
12021
|
+
#
|
12022
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12023
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12024
|
+
#
|
11997
12025
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11998
12026
|
#
|
11999
12027
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -12072,6 +12100,7 @@ module Aws::RDS
|
|
12072
12100
|
# use_default_processor_features: false,
|
12073
12101
|
# deletion_protection: false,
|
12074
12102
|
# max_allocated_storage: 1,
|
12103
|
+
# certificate_rotation_restart: false,
|
12075
12104
|
# })
|
12076
12105
|
#
|
12077
12106
|
# @example Response structure
|
@@ -17707,7 +17736,7 @@ module Aws::RDS
|
|
17707
17736
|
params: params,
|
17708
17737
|
config: config)
|
17709
17738
|
context[:gem_name] = 'aws-sdk-rds'
|
17710
|
-
context[:gem_version] = '1.
|
17739
|
+
context[:gem_version] = '1.74.0'
|
17711
17740
|
Seahorse::Client::Request.new(handlers, context)
|
17712
17741
|
end
|
17713
17742
|
|
@@ -2072,6 +2072,7 @@ module Aws::RDS
|
|
2072
2072
|
ModifyDBInstanceMessage.add_member(:use_default_processor_features, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseDefaultProcessorFeatures"))
|
2073
2073
|
ModifyDBInstanceMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
2074
2074
|
ModifyDBInstanceMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
2075
|
+
ModifyDBInstanceMessage.add_member(:certificate_rotation_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CertificateRotationRestart"))
|
2075
2076
|
ModifyDBInstanceMessage.struct_class = Types::ModifyDBInstanceMessage
|
2076
2077
|
|
2077
2078
|
ModifyDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
@@ -1991,6 +1991,7 @@ module Aws::RDS
|
|
1991
1991
|
# use_default_processor_features: false,
|
1992
1992
|
# deletion_protection: false,
|
1993
1993
|
# max_allocated_storage: 1,
|
1994
|
+
# certificate_rotation_restart: false,
|
1994
1995
|
# })
|
1995
1996
|
# @param [Hash] options ({})
|
1996
1997
|
# @option options [Integer] :allocated_storage
|
@@ -2532,6 +2533,33 @@ module Aws::RDS
|
|
2532
2533
|
# @option options [Integer] :max_allocated_storage
|
2533
2534
|
# The upper limit to which Amazon RDS can automatically scale the
|
2534
2535
|
# storage of the DB instance.
|
2536
|
+
# @option options [Boolean] :certificate_rotation_restart
|
2537
|
+
# A value that indicates whether the DB instance is restarted when you
|
2538
|
+
# rotate your SSL/TLS certificate.
|
2539
|
+
#
|
2540
|
+
# By default, the DB instance is restarted when you rotate your SSL/TLS
|
2541
|
+
# certificate. The certificate is not updated until the DB instance is
|
2542
|
+
# restarted.
|
2543
|
+
#
|
2544
|
+
# Set this parameter only if you are *not* using SSL/TLS to connect to
|
2545
|
+
# the DB instance.
|
2546
|
+
#
|
2547
|
+
# If you are using SSL/TLS to connect to the DB instance, follow the
|
2548
|
+
# appropriate instructions for your DB engine to rotate your SSL/TLS
|
2549
|
+
# certificate:
|
2550
|
+
#
|
2551
|
+
# * For more information about rotating your SSL/TLS certificate for RDS
|
2552
|
+
# DB engines, see [ Rotating Your SSL/TLS Certificate.][1] in the
|
2553
|
+
# *Amazon RDS User Guide.*
|
2554
|
+
#
|
2555
|
+
# * For more information about rotating your SSL/TLS certificate for
|
2556
|
+
# Aurora DB engines, see [ Rotating Your SSL/TLS Certificate][2] in
|
2557
|
+
# the *Amazon Aurora User Guide.*
|
2558
|
+
#
|
2559
|
+
#
|
2560
|
+
#
|
2561
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
2562
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
2535
2563
|
# @return [DBInstance]
|
2536
2564
|
def modify(options = {})
|
2537
2565
|
options = options.merge(db_instance_identifier: @id)
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -6482,7 +6482,8 @@ module Aws::RDS
|
|
6482
6482
|
#
|
6483
6483
|
# @!attribute [rw] tracked_cluster_id
|
6484
6484
|
# The DB cluster identifier when the target represents an Aurora DB
|
6485
|
-
# cluster. This field is blank when the target represents an
|
6485
|
+
# cluster. This field is blank when the target represents an RDS DB
|
6486
|
+
# instance.
|
6486
6487
|
# @return [String]
|
6487
6488
|
#
|
6488
6489
|
# @!attribute [rw] rds_resource_id
|
@@ -11796,6 +11797,7 @@ module Aws::RDS
|
|
11796
11797
|
# use_default_processor_features: false,
|
11797
11798
|
# deletion_protection: false,
|
11798
11799
|
# max_allocated_storage: 1,
|
11800
|
+
# certificate_rotation_restart: false,
|
11799
11801
|
# }
|
11800
11802
|
#
|
11801
11803
|
# @!attribute [rw] db_instance_identifier
|
@@ -12435,6 +12437,35 @@ module Aws::RDS
|
|
12435
12437
|
# storage of the DB instance.
|
12436
12438
|
# @return [Integer]
|
12437
12439
|
#
|
12440
|
+
# @!attribute [rw] certificate_rotation_restart
|
12441
|
+
# A value that indicates whether the DB instance is restarted when you
|
12442
|
+
# rotate your SSL/TLS certificate.
|
12443
|
+
#
|
12444
|
+
# By default, the DB instance is restarted when you rotate your
|
12445
|
+
# SSL/TLS certificate. The certificate is not updated until the DB
|
12446
|
+
# instance is restarted.
|
12447
|
+
#
|
12448
|
+
# Set this parameter only if you are *not* using SSL/TLS to connect to
|
12449
|
+
# the DB instance.
|
12450
|
+
#
|
12451
|
+
# If you are using SSL/TLS to connect to the DB instance, follow the
|
12452
|
+
# appropriate instructions for your DB engine to rotate your SSL/TLS
|
12453
|
+
# certificate:
|
12454
|
+
#
|
12455
|
+
# * For more information about rotating your SSL/TLS certificate for
|
12456
|
+
# RDS DB engines, see [ Rotating Your SSL/TLS Certificate.][1] in
|
12457
|
+
# the *Amazon RDS User Guide.*
|
12458
|
+
#
|
12459
|
+
# * For more information about rotating your SSL/TLS certificate for
|
12460
|
+
# Aurora DB engines, see [ Rotating Your SSL/TLS Certificate][2] in
|
12461
|
+
# the *Amazon Aurora User Guide.*
|
12462
|
+
#
|
12463
|
+
#
|
12464
|
+
#
|
12465
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12466
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/UsingWithRDS.SSL-certificate-rotation.html
|
12467
|
+
# @return [Boolean]
|
12468
|
+
#
|
12438
12469
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstanceMessage AWS API Documentation
|
12439
12470
|
#
|
12440
12471
|
class ModifyDBInstanceMessage < Struct.new(
|
@@ -12478,7 +12509,8 @@ module Aws::RDS
|
|
12478
12509
|
:processor_features,
|
12479
12510
|
:use_default_processor_features,
|
12480
12511
|
:deletion_protection,
|
12481
|
-
:max_allocated_storage
|
12512
|
+
:max_allocated_storage,
|
12513
|
+
:certificate_rotation_restart)
|
12482
12514
|
include Aws::Structure
|
12483
12515
|
end
|
12484
12516
|
|
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.74.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-12-
|
11
|
+
date: 2019-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|