aws-sdk-rds 1.13.0 → 1.14.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 +13 -10
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +3 -1
- data/lib/aws-sdk-rds/resource.rb +3 -1
- data/lib/aws-sdk-rds/types.rb +4 -2
- 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: e34a0e55c14f4d0b018bf30943a29f8f19d95d9d
|
4
|
+
data.tar.gz: ae5a885db51b48fc5f5247a9493ad48c8e353323
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9896371f56e22ffe42dc5518f85fd783796ae7975e8f90d37fe4938ecc50f8798107aad5c05beeaf4f990114e983c98eb4037ba7540ddc22b67a25c50cd6dfff
|
7
|
+
data.tar.gz: c517b2ccc5f894e71dd594b304ef757fa4ff79c36a60c4a6e0808bcf5990bf8731182475fe735986846eb1b8c74831b0a467c2a15aa4b343f55f1cd3c937ef33
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -970,9 +970,6 @@ module Aws::RDS
|
|
970
970
|
# the AWS Region where you call the `CopyDBSnapshot` action is the
|
971
971
|
# destination AWS Region for the DB snapshot copy.
|
972
972
|
#
|
973
|
-
# You can't copy an encrypted, shared DB snapshot from one AWS Region
|
974
|
-
# to another.
|
975
|
-
#
|
976
973
|
# For more information about copying snapshots, see [Copying a DB
|
977
974
|
# Snapshot][1] in the Amazon RDS User Guide.
|
978
975
|
#
|
@@ -2615,7 +2612,9 @@ module Aws::RDS
|
|
2615
2612
|
#
|
2616
2613
|
# **PostgreSQL**
|
2617
2614
|
#
|
2618
|
-
# * **Version
|
2615
|
+
# * **Version 10.1**
|
2616
|
+
#
|
2617
|
+
# * **Version 9.6.x:** ` 9.6.6 | 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1`
|
2619
2618
|
#
|
2620
2619
|
# * **Version 9.5.x:** ` 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2`
|
2621
2620
|
#
|
@@ -9982,10 +9981,14 @@ module Aws::RDS
|
|
9982
9981
|
|
9983
9982
|
# Promotes a Read Replica DB instance to a standalone DB instance.
|
9984
9983
|
#
|
9985
|
-
# <note markdown="1"> *
|
9986
|
-
#
|
9987
|
-
#
|
9988
|
-
#
|
9984
|
+
# <note markdown="1"> * Backup duration is a function of the amount of changes to the
|
9985
|
+
# database since the previous backup. If you plan to promote a Read
|
9986
|
+
# Replica to a standalone instance, we recommend that you enable
|
9987
|
+
# backups and complete at least one backup prior to promotion. In
|
9988
|
+
# addition, a Read Replica cannot be promoted to a standalone instance
|
9989
|
+
# when it is in the `backing-up` status. If you have enabled backups
|
9990
|
+
# on your Read Replica, configure the automated backup window so that
|
9991
|
+
# daily backups do not interfere with Read Replica promotion.
|
9989
9992
|
#
|
9990
9993
|
# * This command doesn't apply to Aurora MySQL and Aurora PostgreSQL.
|
9991
9994
|
#
|
@@ -11201,7 +11204,7 @@ module Aws::RDS
|
|
11201
11204
|
#
|
11202
11205
|
# Constraints:
|
11203
11206
|
#
|
11204
|
-
# * Must contain from 1 to
|
11207
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens
|
11205
11208
|
#
|
11206
11209
|
# * First character must be a letter
|
11207
11210
|
#
|
@@ -13468,7 +13471,7 @@ module Aws::RDS
|
|
13468
13471
|
params: params,
|
13469
13472
|
config: config)
|
13470
13473
|
context[:gem_name] = 'aws-sdk-rds'
|
13471
|
-
context[:gem_version] = '1.
|
13474
|
+
context[:gem_version] = '1.14.0'
|
13472
13475
|
Seahorse::Client::Request.new(handlers, context)
|
13473
13476
|
end
|
13474
13477
|
|
@@ -1249,7 +1249,9 @@ module Aws::RDS
|
|
1249
1249
|
#
|
1250
1250
|
# **PostgreSQL**
|
1251
1251
|
#
|
1252
|
-
# * **Version
|
1252
|
+
# * **Version 10.1**
|
1253
|
+
#
|
1254
|
+
# * **Version 9.6.x:** ` 9.6.6 | 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1`
|
1253
1255
|
#
|
1254
1256
|
# * **Version 9.5.x:** ` 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2`
|
1255
1257
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1055,7 +1055,9 @@ module Aws::RDS
|
|
1055
1055
|
#
|
1056
1056
|
# **PostgreSQL**
|
1057
1057
|
#
|
1058
|
-
# * **Version
|
1058
|
+
# * **Version 10.1**
|
1059
|
+
#
|
1060
|
+
# * **Version 9.6.x:** ` 9.6.6 | 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1`
|
1059
1061
|
#
|
1060
1062
|
# * **Version 9.5.x:** ` 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2`
|
1061
1063
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -2315,7 +2315,9 @@ module Aws::RDS
|
|
2315
2315
|
#
|
2316
2316
|
# **PostgreSQL**
|
2317
2317
|
#
|
2318
|
-
# * **Version
|
2318
|
+
# * **Version 10.1**
|
2319
|
+
#
|
2320
|
+
# * **Version 9.6.x:** ` 9.6.6 | 9.6.5 | 9.6.3 | 9.6.2 | 9.6.1`
|
2319
2321
|
#
|
2320
2322
|
# * **Version 9.5.x:** ` 9.5.9 | 9.5.7 | 9.5.6 | 9.5.4 | 9.5.2`
|
2321
2323
|
#
|
@@ -11393,7 +11395,7 @@ module Aws::RDS
|
|
11393
11395
|
#
|
11394
11396
|
# Constraints:
|
11395
11397
|
#
|
11396
|
-
# * Must contain from 1 to
|
11398
|
+
# * Must contain from 1 to 63 letters, numbers, or hyphens
|
11397
11399
|
#
|
11398
11400
|
# * First character must be a letter
|
11399
11401
|
#
|
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.14.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-
|
11
|
+
date: 2018-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -103,7 +103,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
103
103
|
version: '0'
|
104
104
|
requirements: []
|
105
105
|
rubyforge_project:
|
106
|
-
rubygems_version: 2.5.
|
106
|
+
rubygems_version: 2.5.2.2
|
107
107
|
signing_key:
|
108
108
|
specification_version: 4
|
109
109
|
summary: AWS SDK for Ruby - Amazon RDS
|