aws-sdk-rds 1.3.0 → 1.4.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 -6
- data/lib/aws-sdk-rds/types.rb +28 -1
- 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: ff7d15e62be0ba5026b071e394962885a87d6adc
|
|
4
|
+
data.tar.gz: a49e871758e8da5a3f48d4e532820c15a5568999
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 164c50764777640f3b82df4398730249efb1932b9ddba2e15b2979576e7b250e3dbe2d4fbc4197205a91b6523458e7c8264310fd886615999331b487b38bc629
|
|
7
|
+
data.tar.gz: de9687fb9d8327247497650fb81623ead12c8b1ddfd51c57b9cc385f3f2f444b51a8012cfccab3e1bed272ef5f92c06adce92b0611a28353a90f2002dac1ed2b
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -9349,19 +9349,44 @@ module Aws::RDS
|
|
|
9349
9349
|
end
|
|
9350
9350
|
|
|
9351
9351
|
# Updates a manual DB snapshot, which can be encrypted or not encrypted,
|
|
9352
|
-
# with a new engine version.
|
|
9353
|
-
# a new major or minor engine version.
|
|
9352
|
+
# with a new engine version.
|
|
9354
9353
|
#
|
|
9355
|
-
# Amazon RDS supports upgrading
|
|
9356
|
-
# MySQL 5.5.
|
|
9354
|
+
# Amazon RDS supports upgrading DB snapshots for MySQL and Oracle.
|
|
9357
9355
|
#
|
|
9358
9356
|
# @option params [required, String] :db_snapshot_identifier
|
|
9359
9357
|
# The identifier of the DB snapshot to modify.
|
|
9360
9358
|
#
|
|
9361
9359
|
# @option params [String] :engine_version
|
|
9362
|
-
# The engine version to
|
|
9360
|
+
# The engine version to upgrade the DB snapshot to.
|
|
9361
|
+
#
|
|
9362
|
+
# The following are the database engines and engine versions that are
|
|
9363
|
+
# available when you upgrade a DB snapshot.
|
|
9364
|
+
#
|
|
9365
|
+
# **MySQL**
|
|
9366
|
+
#
|
|
9367
|
+
# * `5.5.46` (supported for 5.1 DB snapshots)
|
|
9368
|
+
#
|
|
9369
|
+
# ^
|
|
9370
|
+
#
|
|
9371
|
+
# **Oracle**
|
|
9372
|
+
#
|
|
9373
|
+
# * `12.1.0.2.v8` (supported for 12.1.0.1 DB snapshots)
|
|
9374
|
+
#
|
|
9375
|
+
# * `11.2.0.4.v12` (supported for 11.2.0.2 DB snapshots)
|
|
9376
|
+
#
|
|
9377
|
+
# * `11.2.0.4.v11` (supported for 11.2.0.3 DB snapshots)
|
|
9363
9378
|
#
|
|
9364
9379
|
# @option params [String] :option_group_name
|
|
9380
|
+
# The option group to identify with the upgraded DB snapshot.
|
|
9381
|
+
#
|
|
9382
|
+
# You can specify this parameter when you upgrade an Oracle DB snapshot.
|
|
9383
|
+
# The same option group considerations apply when upgrading a DB
|
|
9384
|
+
# snapshot as when upgrading a DB instance. For more information, see
|
|
9385
|
+
# [Option Group Considerations][1].
|
|
9386
|
+
#
|
|
9387
|
+
#
|
|
9388
|
+
#
|
|
9389
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Oracle.html#USER_UpgradeDBInstance.Oracle.OGPG.OG
|
|
9365
9390
|
#
|
|
9366
9391
|
# @return [Types::ModifyDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
9367
9392
|
#
|
|
@@ -12720,7 +12745,7 @@ module Aws::RDS
|
|
|
12720
12745
|
params: params,
|
|
12721
12746
|
config: config)
|
|
12722
12747
|
context[:gem_name] = 'aws-sdk-rds'
|
|
12723
|
-
context[:gem_version] = '1.
|
|
12748
|
+
context[:gem_version] = '1.4.0'
|
|
12724
12749
|
Seahorse::Client::Request.new(handlers, context)
|
|
12725
12750
|
end
|
|
12726
12751
|
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -9247,10 +9247,37 @@ module Aws::RDS
|
|
|
9247
9247
|
# @return [String]
|
|
9248
9248
|
#
|
|
9249
9249
|
# @!attribute [rw] engine_version
|
|
9250
|
-
# The engine version to
|
|
9250
|
+
# The engine version to upgrade the DB snapshot to.
|
|
9251
|
+
#
|
|
9252
|
+
# The following are the database engines and engine versions that are
|
|
9253
|
+
# available when you upgrade a DB snapshot.
|
|
9254
|
+
#
|
|
9255
|
+
# **MySQL**
|
|
9256
|
+
#
|
|
9257
|
+
# * `5.5.46` (supported for 5.1 DB snapshots)
|
|
9258
|
+
#
|
|
9259
|
+
# ^
|
|
9260
|
+
#
|
|
9261
|
+
# **Oracle**
|
|
9262
|
+
#
|
|
9263
|
+
# * `12.1.0.2.v8` (supported for 12.1.0.1 DB snapshots)
|
|
9264
|
+
#
|
|
9265
|
+
# * `11.2.0.4.v12` (supported for 11.2.0.2 DB snapshots)
|
|
9266
|
+
#
|
|
9267
|
+
# * `11.2.0.4.v11` (supported for 11.2.0.3 DB snapshots)
|
|
9251
9268
|
# @return [String]
|
|
9252
9269
|
#
|
|
9253
9270
|
# @!attribute [rw] option_group_name
|
|
9271
|
+
# The option group to identify with the upgraded DB snapshot.
|
|
9272
|
+
#
|
|
9273
|
+
# You can specify this parameter when you upgrade an Oracle DB
|
|
9274
|
+
# snapshot. The same option group considerations apply when upgrading
|
|
9275
|
+
# a DB snapshot as when upgrading a DB instance. For more information,
|
|
9276
|
+
# see [Option Group Considerations][1].
|
|
9277
|
+
#
|
|
9278
|
+
#
|
|
9279
|
+
#
|
|
9280
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Oracle.html#USER_UpgradeDBInstance.Oracle.OGPG.OG
|
|
9254
9281
|
# @return [String]
|
|
9255
9282
|
#
|
|
9256
9283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshotMessage AWS API Documentation
|
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.4.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: 2017-09-
|
|
11
|
+
date: 2017-09-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|