aws-sdk-rds 1.12.0 → 1.13.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 +2 -6
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +6 -0
- data/lib/aws-sdk-rds/db_instance.rb +0 -5
- data/lib/aws-sdk-rds/types.rb +7 -6
- 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: 2e8a4845e92d89579881ccdd353492cd8d45ce5e
|
|
4
|
+
data.tar.gz: 40315a74db3059e00d0e78cf16a9d0ca307399ee
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d13e8034724caa4091309cad7b6bfbf4bb3d785f0194cb324893af8536306e798874f104d5b33eb9bc90a216274c20042bdd561849a14343a30a8a0d49c66f45
|
|
7
|
+
data.tar.gz: 4f7b90ce4163fea14c1239db8341c47c37ca3a3ce88a9ad6b8757cd72c6f6e16b6ac65aef1c6b8eff533e8027dda0b280976cd3ece3edee25039e4dfcd368368
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -3120,11 +3120,6 @@ module Aws::RDS
|
|
|
3120
3120
|
# instance is independent of whether the source database is a Multi-AZ
|
|
3121
3121
|
# DB instance.
|
|
3122
3122
|
#
|
|
3123
|
-
# <note markdown="1"> Currently, you can't create PostgreSQL Read Replicas as Multi-AZ DB
|
|
3124
|
-
# instances.
|
|
3125
|
-
#
|
|
3126
|
-
# </note>
|
|
3127
|
-
#
|
|
3128
3123
|
# @option params [Boolean] :auto_minor_version_upgrade
|
|
3129
3124
|
# Indicates that minor engine upgrades are applied automatically to the
|
|
3130
3125
|
# Read Replica during the maintenance window.
|
|
@@ -5765,6 +5760,7 @@ module Aws::RDS
|
|
|
5765
5760
|
# resp.db_engine_versions[0].exportable_log_types #=> Array
|
|
5766
5761
|
# resp.db_engine_versions[0].exportable_log_types[0] #=> String
|
|
5767
5762
|
# resp.db_engine_versions[0].supports_log_exports_to_cloudwatch_logs #=> Boolean
|
|
5763
|
+
# resp.db_engine_versions[0].supports_read_replica #=> Boolean
|
|
5768
5764
|
#
|
|
5769
5765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
|
5770
5766
|
#
|
|
@@ -13472,7 +13468,7 @@ module Aws::RDS
|
|
|
13472
13468
|
params: params,
|
|
13473
13469
|
config: config)
|
|
13474
13470
|
context[:gem_name] = 'aws-sdk-rds'
|
|
13475
|
-
context[:gem_version] = '1.
|
|
13471
|
+
context[:gem_version] = '1.13.0'
|
|
13476
13472
|
Seahorse::Client::Request.new(handlers, context)
|
|
13477
13473
|
end
|
|
13478
13474
|
|
|
@@ -838,6 +838,7 @@ module Aws::RDS
|
|
|
838
838
|
DBEngineVersion.add_member(:supported_timezones, Shapes::ShapeRef.new(shape: SupportedTimezonesList, location_name: "SupportedTimezones"))
|
|
839
839
|
DBEngineVersion.add_member(:exportable_log_types, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "ExportableLogTypes"))
|
|
840
840
|
DBEngineVersion.add_member(:supports_log_exports_to_cloudwatch_logs, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsLogExportsToCloudwatchLogs"))
|
|
841
|
+
DBEngineVersion.add_member(:supports_read_replica, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsReadReplica"))
|
|
841
842
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
|
842
843
|
|
|
843
844
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
|
@@ -101,6 +101,12 @@ 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 read replicas.
|
|
105
|
+
# @return [Boolean]
|
|
106
|
+
def supports_read_replica
|
|
107
|
+
data[:supports_read_replica]
|
|
108
|
+
end
|
|
109
|
+
|
|
104
110
|
# @!endgroup
|
|
105
111
|
|
|
106
112
|
# @return [Client]
|
|
@@ -1532,11 +1532,6 @@ module Aws::RDS
|
|
|
1532
1532
|
# support for the replica. Creating your Read Replica as a Multi-AZ DB
|
|
1533
1533
|
# instance is independent of whether the source database is a Multi-AZ
|
|
1534
1534
|
# DB instance.
|
|
1535
|
-
#
|
|
1536
|
-
# <note markdown="1"> Currently, you can't create PostgreSQL Read Replicas as Multi-AZ DB
|
|
1537
|
-
# instances.
|
|
1538
|
-
#
|
|
1539
|
-
# </note>
|
|
1540
1535
|
# @option options [Boolean] :auto_minor_version_upgrade
|
|
1541
1536
|
# Indicates that minor engine upgrades are applied automatically to the
|
|
1542
1537
|
# Read Replica during the maintenance window.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -2730,11 +2730,6 @@ module Aws::RDS
|
|
|
2730
2730
|
# support for the replica. Creating your Read Replica as a Multi-AZ DB
|
|
2731
2731
|
# instance is independent of whether the source database is a Multi-AZ
|
|
2732
2732
|
# DB instance.
|
|
2733
|
-
#
|
|
2734
|
-
# <note markdown="1"> Currently, you can't create PostgreSQL Read Replicas as Multi-AZ DB
|
|
2735
|
-
# instances.
|
|
2736
|
-
#
|
|
2737
|
-
# </note>
|
|
2738
2733
|
# @return [Boolean]
|
|
2739
2734
|
#
|
|
2740
2735
|
# @!attribute [rw] auto_minor_version_upgrade
|
|
@@ -4189,6 +4184,11 @@ module Aws::RDS
|
|
|
4189
4184
|
# the log types specified by ExportableLogTypes to CloudWatch Logs.
|
|
4190
4185
|
# @return [Boolean]
|
|
4191
4186
|
#
|
|
4187
|
+
# @!attribute [rw] supports_read_replica
|
|
4188
|
+
# Indicates whether the database engine version supports read
|
|
4189
|
+
# replicas.
|
|
4190
|
+
# @return [Boolean]
|
|
4191
|
+
#
|
|
4192
4192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
|
4193
4193
|
#
|
|
4194
4194
|
class DBEngineVersion < Struct.new(
|
|
@@ -4202,7 +4202,8 @@ module Aws::RDS
|
|
|
4202
4202
|
:valid_upgrade_target,
|
|
4203
4203
|
:supported_timezones,
|
|
4204
4204
|
:exportable_log_types,
|
|
4205
|
-
:supports_log_exports_to_cloudwatch_logs
|
|
4205
|
+
:supports_log_exports_to_cloudwatch_logs,
|
|
4206
|
+
:supports_read_replica)
|
|
4206
4207
|
include Aws::Structure
|
|
4207
4208
|
end
|
|
4208
4209
|
|
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.13.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: 2018-02-
|
|
11
|
+
date: 2018-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|