aws-sdk-rds 1.15.0 → 1.16.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2e17814b26a187061bd22d5cec8052c2e8bb43f5
4
- data.tar.gz: 73c70bd433add2c8a6bf452d5c2f72b5b7ce5e84
3
+ metadata.gz: '0882e67812ace1cdc5ac343ead7f21303b28e2c8'
4
+ data.tar.gz: 4b9ed71c86733de7e1a79acb5e08da16409e3520
5
5
  SHA512:
6
- metadata.gz: ee8634154c30415af0ae296c555e56990b30f7a8010ccd6d13f8f8298672b6016c13e765c9365cb6fe538b11da219e8643a6816a30959bf782c7f304a979905e
7
- data.tar.gz: 65ae3b559791ca93642bccdc0eacf5e6c9d63b9fa31b3a03cbce581505859dec402d16069bdaedd97ae0a51fd7ccdd5df849776851c679f96f4b199aa5986c10
6
+ metadata.gz: f897d0bd3a60e8c16c27f12bdd8fb8648d4f8e4fb97afb7b6a57ea55b4ec568edbaf7cbaefaa8799e26cc370cc09971cd658a8f119143e0100868a676ade86d6
7
+ data.tar.gz: 1785cb1e7ecef16bc257295fad6ab8d654f302d843046b01e8a3b67409140506bf0408264479cefc23390a10831158c48e64adfd1dd301beca856f21882b2cd1
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.15.0'
71
+ GEM_VERSION = '1.16.0'
72
72
 
73
73
  end
@@ -8379,6 +8379,15 @@ module Aws::RDS
8379
8379
  #
8380
8380
  # Default: `false`
8381
8381
  #
8382
+ # @option params [String] :engine_version
8383
+ # The version number of the database engine to which you want to
8384
+ # upgrade. Changing this parameter results in an outage. The change is
8385
+ # applied during the next maintenance window unless the ApplyImmediately
8386
+ # parameter is set to true.
8387
+ #
8388
+ # For a list of valid engine versions, see CreateDBInstance, or call
8389
+ # DescribeDBEngineVersions.
8390
+ #
8382
8391
  # @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8383
8392
  #
8384
8393
  # * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
@@ -8418,6 +8427,7 @@ module Aws::RDS
8418
8427
  # preferred_backup_window: "String",
8419
8428
  # preferred_maintenance_window: "String",
8420
8429
  # enable_iam_database_authentication: false,
8430
+ # engine_version: "String",
8421
8431
  # })
8422
8432
  #
8423
8433
  # @example Response structure
@@ -13481,7 +13491,7 @@ module Aws::RDS
13481
13491
  params: params,
13482
13492
  config: config)
13483
13493
  context[:gem_name] = 'aws-sdk-rds'
13484
- context[:gem_version] = '1.15.0'
13494
+ context[:gem_version] = '1.16.0'
13485
13495
  Seahorse::Client::Request.new(handlers, context)
13486
13496
  end
13487
13497
 
@@ -1423,6 +1423,7 @@ module Aws::RDS
1423
1423
  ModifyDBClusterMessage.add_member(:preferred_backup_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredBackupWindow"))
1424
1424
  ModifyDBClusterMessage.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String, location_name: "PreferredMaintenanceWindow"))
1425
1425
  ModifyDBClusterMessage.add_member(:enable_iam_database_authentication, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "EnableIAMDatabaseAuthentication"))
1426
+ ModifyDBClusterMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
1426
1427
  ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
1427
1428
 
1428
1429
  ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
@@ -788,6 +788,7 @@ module Aws::RDS
788
788
  # preferred_backup_window: "String",
789
789
  # preferred_maintenance_window: "String",
790
790
  # enable_iam_database_authentication: false,
791
+ # engine_version: "String",
791
792
  # })
792
793
  # @param [Hash] options ({})
793
794
  # @option options [String] :new_db_cluster_identifier
@@ -904,6 +905,14 @@ module Aws::RDS
904
905
  # accounts to database accounts, and otherwise false.
905
906
  #
906
907
  # Default: `false`
908
+ # @option options [String] :engine_version
909
+ # The version number of the database engine to which you want to
910
+ # upgrade. Changing this parameter results in an outage. The change is
911
+ # applied during the next maintenance window unless the ApplyImmediately
912
+ # parameter is set to true.
913
+ #
914
+ # For a list of valid engine versions, see CreateDBInstance, or call
915
+ # DescribeDBEngineVersions.
907
916
  # @return [DBCluster]
908
917
  def modify(options = {})
909
918
  options = options.merge(db_cluster_identifier: @id)
@@ -8107,6 +8107,7 @@ module Aws::RDS
8107
8107
  # preferred_backup_window: "String",
8108
8108
  # preferred_maintenance_window: "String",
8109
8109
  # enable_iam_database_authentication: false,
8110
+ # engine_version: "String",
8110
8111
  # }
8111
8112
  #
8112
8113
  # @!attribute [rw] db_cluster_identifier
@@ -8258,6 +8259,16 @@ module Aws::RDS
8258
8259
  # Default: `false`
8259
8260
  # @return [Boolean]
8260
8261
  #
8262
+ # @!attribute [rw] engine_version
8263
+ # The version number of the database engine to which you want to
8264
+ # upgrade. Changing this parameter results in an outage. The change is
8265
+ # applied during the next maintenance window unless the
8266
+ # ApplyImmediately parameter is set to true.
8267
+ #
8268
+ # For a list of valid engine versions, see CreateDBInstance, or call
8269
+ # DescribeDBEngineVersions.
8270
+ # @return [String]
8271
+ #
8261
8272
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
8262
8273
  #
8263
8274
  class ModifyDBClusterMessage < Struct.new(
@@ -8272,7 +8283,8 @@ module Aws::RDS
8272
8283
  :option_group_name,
8273
8284
  :preferred_backup_window,
8274
8285
  :preferred_maintenance_window,
8275
- :enable_iam_database_authentication)
8286
+ :enable_iam_database_authentication,
8287
+ :engine_version)
8276
8288
  include Aws::Structure
8277
8289
  end
8278
8290
 
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.15.0
4
+ version: 1.16.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-03-23 00:00:00.000000000 Z
11
+ date: 2018-04-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4