aws-sdk-rds 1.30.0 → 1.31.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 +5 -1
- data/lib/aws-sdk-rds/client_api.rb +10 -0
- data/lib/aws-sdk-rds/types.rb +32 -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: 06efe166752a1387321c6eaae3b078dff1de27cf
|
4
|
+
data.tar.gz: 89bb2b8398a5275f91b85a05cf98f495f8992d11
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 396d3467b64eeed355606c665652cb8aa7ac9c8d0c3711cebe73da6d0590236d3901dd70cf5240a7bbb63615cfe1ea3d16080a995aff728158e63eb92f9c81af
|
7
|
+
data.tar.gz: f6555542a8e0f0109535c76b92b8060c6e04abb28f74c7b500290774f4793d5254debbc37515bdc7f596a2837448f29d9de0bfc658f917fdc72c45dc263f1681
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -7496,6 +7496,10 @@ module Aws::RDS
|
|
7496
7496
|
# resp.option_group_options[0].option_group_option_settings[0].apply_type #=> String
|
7497
7497
|
# resp.option_group_options[0].option_group_option_settings[0].allowed_values #=> String
|
7498
7498
|
# resp.option_group_options[0].option_group_option_settings[0].is_modifiable #=> Boolean
|
7499
|
+
# resp.option_group_options[0].option_group_option_settings[0].is_required #=> Boolean
|
7500
|
+
# resp.option_group_options[0].option_group_option_settings[0].minimum_engine_version_per_allowed_value #=> Array
|
7501
|
+
# resp.option_group_options[0].option_group_option_settings[0].minimum_engine_version_per_allowed_value[0].allowed_value #=> String
|
7502
|
+
# resp.option_group_options[0].option_group_option_settings[0].minimum_engine_version_per_allowed_value[0].minimum_engine_version #=> String
|
7499
7503
|
# resp.option_group_options[0].option_group_option_versions #=> Array
|
7500
7504
|
# resp.option_group_options[0].option_group_option_versions[0].version #=> String
|
7501
7505
|
# resp.option_group_options[0].option_group_option_versions[0].is_default #=> Boolean
|
@@ -14436,7 +14440,7 @@ module Aws::RDS
|
|
14436
14440
|
params: params,
|
14437
14441
|
config: config)
|
14438
14442
|
context[:gem_name] = 'aws-sdk-rds'
|
14439
|
-
context[:gem_version] = '1.
|
14443
|
+
context[:gem_version] = '1.31.0'
|
14440
14444
|
Seahorse::Client::Request.new(handlers, context)
|
14441
14445
|
end
|
14442
14446
|
|
@@ -270,6 +270,8 @@ module Aws::RDS
|
|
270
270
|
LogTypeList = Shapes::ListShape.new(name: 'LogTypeList')
|
271
271
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
272
272
|
LongOptional = Shapes::IntegerShape.new(name: 'LongOptional')
|
273
|
+
MinimumEngineVersionPerAllowedValue = Shapes::StructureShape.new(name: 'MinimumEngineVersionPerAllowedValue')
|
274
|
+
MinimumEngineVersionPerAllowedValueList = Shapes::ListShape.new(name: 'MinimumEngineVersionPerAllowedValueList')
|
273
275
|
ModifyCurrentDBClusterCapacityMessage = Shapes::StructureShape.new(name: 'ModifyCurrentDBClusterCapacityMessage')
|
274
276
|
ModifyDBClusterMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterMessage')
|
275
277
|
ModifyDBClusterParameterGroupMessage = Shapes::StructureShape.new(name: 'ModifyDBClusterParameterGroupMessage')
|
@@ -1497,6 +1499,12 @@ module Aws::RDS
|
|
1497
1499
|
|
1498
1500
|
LogTypeList.member = Shapes::ShapeRef.new(shape: String)
|
1499
1501
|
|
1502
|
+
MinimumEngineVersionPerAllowedValue.add_member(:allowed_value, Shapes::ShapeRef.new(shape: String, location_name: "AllowedValue"))
|
1503
|
+
MinimumEngineVersionPerAllowedValue.add_member(:minimum_engine_version, Shapes::ShapeRef.new(shape: String, location_name: "MinimumEngineVersion"))
|
1504
|
+
MinimumEngineVersionPerAllowedValue.struct_class = Types::MinimumEngineVersionPerAllowedValue
|
1505
|
+
|
1506
|
+
MinimumEngineVersionPerAllowedValueList.member = Shapes::ShapeRef.new(shape: MinimumEngineVersionPerAllowedValue, location_name: "MinimumEngineVersionPerAllowedValue")
|
1507
|
+
|
1500
1508
|
ModifyCurrentDBClusterCapacityMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterIdentifier"))
|
1501
1509
|
ModifyCurrentDBClusterCapacityMessage.add_member(:capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Capacity"))
|
1502
1510
|
ModifyCurrentDBClusterCapacityMessage.add_member(:seconds_before_timeout, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "SecondsBeforeTimeout"))
|
@@ -1690,6 +1698,8 @@ module Aws::RDS
|
|
1690
1698
|
OptionGroupOptionSetting.add_member(:apply_type, Shapes::ShapeRef.new(shape: String, location_name: "ApplyType"))
|
1691
1699
|
OptionGroupOptionSetting.add_member(:allowed_values, Shapes::ShapeRef.new(shape: String, location_name: "AllowedValues"))
|
1692
1700
|
OptionGroupOptionSetting.add_member(:is_modifiable, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsModifiable"))
|
1701
|
+
OptionGroupOptionSetting.add_member(:is_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsRequired"))
|
1702
|
+
OptionGroupOptionSetting.add_member(:minimum_engine_version_per_allowed_value, Shapes::ShapeRef.new(shape: MinimumEngineVersionPerAllowedValueList, location_name: "MinimumEngineVersionPerAllowedValue"))
|
1693
1703
|
OptionGroupOptionSetting.struct_class = Types::OptionGroupOptionSetting
|
1694
1704
|
|
1695
1705
|
OptionGroupOptionSettingsList.member = Shapes::ShapeRef.new(shape: OptionGroupOptionSetting, location_name: "OptionGroupOptionSetting")
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -8494,6 +8494,25 @@ module Aws::RDS
|
|
8494
8494
|
include Aws::Structure
|
8495
8495
|
end
|
8496
8496
|
|
8497
|
+
# The minimum DB engine version required for each corresponding allowed
|
8498
|
+
# value for an option setting.
|
8499
|
+
#
|
8500
|
+
# @!attribute [rw] allowed_value
|
8501
|
+
# The allowed value for an option setting.
|
8502
|
+
# @return [String]
|
8503
|
+
#
|
8504
|
+
# @!attribute [rw] minimum_engine_version
|
8505
|
+
# The minimum DB engine version required for the allowed value.
|
8506
|
+
# @return [String]
|
8507
|
+
#
|
8508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/MinimumEngineVersionPerAllowedValue AWS API Documentation
|
8509
|
+
#
|
8510
|
+
class MinimumEngineVersionPerAllowedValue < Struct.new(
|
8511
|
+
:allowed_value,
|
8512
|
+
:minimum_engine_version)
|
8513
|
+
include Aws::Structure
|
8514
|
+
end
|
8515
|
+
|
8497
8516
|
# @note When making an API call, you may pass ModifyCurrentDBClusterCapacityMessage
|
8498
8517
|
# data as a hash:
|
8499
8518
|
#
|
@@ -10350,6 +10369,16 @@ module Aws::RDS
|
|
10350
10369
|
# be changed from the default value.
|
10351
10370
|
# @return [Boolean]
|
10352
10371
|
#
|
10372
|
+
# @!attribute [rw] is_required
|
10373
|
+
# Boolean value where true indicates that a value must be specified
|
10374
|
+
# for this option setting of the option group option.
|
10375
|
+
# @return [Boolean]
|
10376
|
+
#
|
10377
|
+
# @!attribute [rw] minimum_engine_version_per_allowed_value
|
10378
|
+
# The minimum DB engine version required for the corresponding allowed
|
10379
|
+
# value for this option setting.
|
10380
|
+
# @return [Array<Types::MinimumEngineVersionPerAllowedValue>]
|
10381
|
+
#
|
10353
10382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OptionGroupOptionSetting AWS API Documentation
|
10354
10383
|
#
|
10355
10384
|
class OptionGroupOptionSetting < Struct.new(
|
@@ -10358,7 +10387,9 @@ module Aws::RDS
|
|
10358
10387
|
:default_value,
|
10359
10388
|
:apply_type,
|
10360
10389
|
:allowed_values,
|
10361
|
-
:is_modifiable
|
10390
|
+
:is_modifiable,
|
10391
|
+
:is_required,
|
10392
|
+
:minimum_engine_version_per_allowed_value)
|
10362
10393
|
include Aws::Structure
|
10363
10394
|
end
|
10364
10395
|
|
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.31.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-09-
|
11
|
+
date: 2018-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|