aws-sdk-core 2.2.28 → 2.2.29
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/apis/devicefarm/2015-06-23/api-2.json +271 -2
- data/apis/elasticbeanstalk/2010-12-01/examples-1.json +1104 -0
- data/apis/rds/2014-10-31/api-2.json +8 -4
- data/lib/aws-sdk-core/api/docs/shared_example.rb +1 -0
- data/lib/aws-sdk-core/plugins/s3_request_signer.rb +2 -1
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +3 -3
|
@@ -1728,7 +1728,8 @@
|
|
|
1728
1728
|
"KmsKeyId":{"shape":"String"},
|
|
1729
1729
|
"CopyTagsToSnapshot":{"shape":"BooleanOptional"},
|
|
1730
1730
|
"MonitoringInterval":{"shape":"IntegerOptional"},
|
|
1731
|
-
"MonitoringRoleArn":{"shape":"String"}
|
|
1731
|
+
"MonitoringRoleArn":{"shape":"String"},
|
|
1732
|
+
"PromotionTier":{"shape":"IntegerOptional"}
|
|
1732
1733
|
}
|
|
1733
1734
|
},
|
|
1734
1735
|
"CreateDBInstanceReadReplicaMessage":{
|
|
@@ -1942,7 +1943,8 @@
|
|
|
1942
1943
|
"members":{
|
|
1943
1944
|
"DBInstanceIdentifier":{"shape":"String"},
|
|
1944
1945
|
"IsClusterWriter":{"shape":"Boolean"},
|
|
1945
|
-
"DBClusterParameterGroupStatus":{"shape":"String"}
|
|
1946
|
+
"DBClusterParameterGroupStatus":{"shape":"String"},
|
|
1947
|
+
"PromotionTier":{"shape":"IntegerOptional"}
|
|
1946
1948
|
},
|
|
1947
1949
|
"wrapper":true
|
|
1948
1950
|
},
|
|
@@ -2174,7 +2176,8 @@
|
|
|
2174
2176
|
"CopyTagsToSnapshot":{"shape":"Boolean"},
|
|
2175
2177
|
"MonitoringInterval":{"shape":"IntegerOptional"},
|
|
2176
2178
|
"EnhancedMonitoringResourceArn":{"shape":"String"},
|
|
2177
|
-
"MonitoringRoleArn":{"shape":"String"}
|
|
2179
|
+
"MonitoringRoleArn":{"shape":"String"},
|
|
2180
|
+
"PromotionTier":{"shape":"IntegerOptional"}
|
|
2178
2181
|
},
|
|
2179
2182
|
"wrapper":true
|
|
2180
2183
|
},
|
|
@@ -3505,7 +3508,8 @@
|
|
|
3505
3508
|
"MonitoringInterval":{"shape":"IntegerOptional"},
|
|
3506
3509
|
"DBPortNumber":{"shape":"IntegerOptional"},
|
|
3507
3510
|
"PubliclyAccessible":{"shape":"BooleanOptional"},
|
|
3508
|
-
"MonitoringRoleArn":{"shape":"String"}
|
|
3511
|
+
"MonitoringRoleArn":{"shape":"String"},
|
|
3512
|
+
"PromotionTier":{"shape":"IntegerOptional"}
|
|
3509
3513
|
}
|
|
3510
3514
|
},
|
|
3511
3515
|
"ModifyDBInstanceResult":{
|
|
@@ -12,7 +12,8 @@ module Aws
|
|
|
12
12
|
|
|
13
13
|
def call(context)
|
|
14
14
|
require_credentials(context)
|
|
15
|
-
|
|
15
|
+
version = context.config.signature_version
|
|
16
|
+
case version
|
|
16
17
|
when 'v4' then apply_v4_signature(context)
|
|
17
18
|
when 's3' then apply_s3_legacy_signature(context)
|
|
18
19
|
else
|
data/lib/aws-sdk-core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.2.
|
|
4
|
+
version: 2.2.29
|
|
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: 2016-03-
|
|
11
|
+
date: 2016-03-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|
|
@@ -483,7 +483,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
483
483
|
version: '0'
|
|
484
484
|
requirements: []
|
|
485
485
|
rubyforge_project:
|
|
486
|
-
rubygems_version: 2.
|
|
486
|
+
rubygems_version: 2.5.1
|
|
487
487
|
signing_key:
|
|
488
488
|
specification_version: 4
|
|
489
489
|
summary: AWS SDK for Ruby - Core
|