aws-sdk-core 2.0.38 → 2.0.39

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.
@@ -42,12 +42,6 @@
42
42
  "state": "failure",
43
43
  "argument": "DBInstances[].DBInstanceStatus"
44
44
  },
45
- {
46
- "expected": "incompatible-parameters",
47
- "matcher": "pathAny",
48
- "state": "failure",
49
- "argument": "DBInstances[].DBInstanceStatus"
50
- },
51
45
  {
52
46
  "expected": "incompatible-restore",
53
47
  "matcher": "pathAny",
@@ -67,6 +61,11 @@
67
61
  "state": "success",
68
62
  "argument": "DBInstances[].DBInstanceStatus"
69
63
  },
64
+ {
65
+ "expected": "DBInstanceNotFound",
66
+ "matcher": "error",
67
+ "state": "success"
68
+ },
70
69
  {
71
70
  "expected": "creating",
72
71
  "matcher": "pathAny",
@@ -47,6 +47,7 @@ module Aws
47
47
  Kinesis
48
48
  KMS
49
49
  Lambda
50
+ LambdaPreview
50
51
  MachineLearning
51
52
  OpsWorks
52
53
  RDS
@@ -3,4 +3,5 @@ Aws.add_service(:CloudFormation, {
3
3
  docs: "#{Aws::API_DIR}/cloudformation/2010-05-15/docs-2.json",
4
4
  paginators: "#{Aws::API_DIR}/cloudformation/2010-05-15/paginators-1.json",
5
5
  resources: "#{Aws::API_DIR}/cloudformation/2010-05-15/resources-1.json",
6
+ waiters: "#{Aws::API_DIR}/cloudformation/2010-05-15/waiters-1.json",
6
7
  })
@@ -1,5 +1,5 @@
1
1
  Aws.add_service(:ConfigService, {
2
- api: "#{Aws::API_DIR}/config/2014-10-17/api-2.json",
3
- docs: "#{Aws::API_DIR}/config/2014-10-17/docs-2.json",
4
- paginators: "#{Aws::API_DIR}/config/2014-10-17/paginators-1.json",
2
+ api: "#{Aws::API_DIR}/config/2014-11-12/api-2.json",
3
+ docs: "#{Aws::API_DIR}/config/2014-11-12/docs-2.json",
4
+ paginators: "#{Aws::API_DIR}/config/2014-11-12/paginators-1.json",
5
5
  })
@@ -2,6 +2,7 @@ Aws.add_service(:DynamoDB, {
2
2
  api: "#{Aws::API_DIR}/dynamodb/2012-08-10/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/dynamodb/2012-08-10/docs-2.json",
4
4
  paginators: "#{Aws::API_DIR}/dynamodb/2012-08-10/paginators-1.json",
5
+ resources: "#{Aws::API_DIR}/dynamodb/2012-08-10/resources-1.json",
5
6
  waiters: "#{Aws::API_DIR}/dynamodb/2012-08-10/waiters-2.json",
6
7
  })
7
8
 
@@ -2,4 +2,5 @@ Aws.add_service(:ElastiCache, {
2
2
  api: "#{Aws::API_DIR}/elasticache/2015-02-02/api-2.json",
3
3
  docs: "#{Aws::API_DIR}/elasticache/2015-02-02/docs-2.json",
4
4
  paginators: "#{Aws::API_DIR}/elasticache/2015-02-02/paginators-1.json",
5
+ waiters: "#{Aws::API_DIR}/elasticache/2015-02-02/waiters-1.json",
5
6
  })
@@ -3,4 +3,5 @@ Aws.add_service(:OpsWorks, {
3
3
  docs: "#{Aws::API_DIR}/opsworks/2013-02-18/docs-2.json",
4
4
  paginators: "#{Aws::API_DIR}/opsworks/2013-02-18/paginators-1.json",
5
5
  resources: "#{Aws::API_DIR}/opsworks/2013-02-18/resources-1.json",
6
+ waiters: "#{Aws::API_DIR}/opsworks/2013-02-18/waiters-1.json",
6
7
  })
@@ -63,7 +63,7 @@ module Aws
63
63
  when Struct
64
64
  obj.members.each.with_object({}) do |member, hash|
65
65
  value = obj[member]
66
- hash[member] = to_hash(value) unless value == nil
66
+ hash[member] = to_hash(value) unless value.nil?
67
67
  end
68
68
  when Hash
69
69
  obj.each.with_object({}) do |(key, value), hash|
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.0.38'
2
+ VERSION = '2.0.39'
3
3
  end
@@ -11,7 +11,7 @@ module Aws
11
11
  end
12
12
 
13
13
  def parse(xml)
14
- Ox.sax_parse(@stack, StringIO.new(xml))
14
+ Ox.sax_parse(@stack, StringIO.new(xml), :convert_special => true)
15
15
  end
16
16
 
17
17
  end
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.0.38
4
+ version: 2.0.39
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: 2015-04-09 00:00:00.000000000 Z
11
+ date: 2015-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
@@ -68,6 +68,7 @@ files:
68
68
  - apis/cloudformation/2010-05-15/docs-2.json
69
69
  - apis/cloudformation/2010-05-15/paginators-1.json
70
70
  - apis/cloudformation/2010-05-15/resources-1.json
71
+ - apis/cloudformation/2010-05-15/waiters-1.json
71
72
  - apis/cloudfront/2014-11-06/api-2.json
72
73
  - apis/cloudfront/2014-11-06/docs-2.json
73
74
  - apis/cloudfront/2014-11-06/paginators-1.json
@@ -92,6 +93,9 @@ files:
92
93
  - apis/config/2014-10-17/api-2.json
93
94
  - apis/config/2014-10-17/docs-2.json
94
95
  - apis/config/2014-10-17/paginators-1.json
96
+ - apis/config/2014-11-12/api-2.json
97
+ - apis/config/2014-11-12/docs-2.json
98
+ - apis/config/2014-11-12/paginators-1.json
95
99
  - apis/datapipeline/2012-10-29/api-2.json
96
100
  - apis/datapipeline/2012-10-29/docs-2.json
97
101
  - apis/datapipeline/2012-10-29/paginators-1.json
@@ -101,6 +105,7 @@ files:
101
105
  - apis/dynamodb/2012-08-10/api-2.json
102
106
  - apis/dynamodb/2012-08-10/docs-2.json
103
107
  - apis/dynamodb/2012-08-10/paginators-1.json
108
+ - apis/dynamodb/2012-08-10/resources-1.json
104
109
  - apis/dynamodb/2012-08-10/waiters-2.json
105
110
  - apis/ec2/2014-10-01/api-2.json
106
111
  - apis/ec2/2014-10-01/docs-2.json
@@ -112,6 +117,7 @@ files:
112
117
  - apis/elasticache/2015-02-02/api-2.json
113
118
  - apis/elasticache/2015-02-02/docs-2.json
114
119
  - apis/elasticache/2015-02-02/paginators-1.json
120
+ - apis/elasticache/2015-02-02/waiters-1.json
115
121
  - apis/elasticbeanstalk/2010-12-01/api-2.json
116
122
  - apis/elasticbeanstalk/2010-12-01/docs-2.json
117
123
  - apis/elasticbeanstalk/2010-12-01/paginators-1.json
@@ -169,6 +175,7 @@ files:
169
175
  - apis/opsworks/2013-02-18/docs-2.json
170
176
  - apis/opsworks/2013-02-18/paginators-1.json
171
177
  - apis/opsworks/2013-02-18/resources-1.json
178
+ - apis/opsworks/2013-02-18/waiters-1.json
172
179
  - apis/rds/2014-10-31/api-2.json
173
180
  - apis/rds/2014-10-31/docs-2.json
174
181
  - apis/rds/2014-10-31/paginators-1.json
@@ -272,7 +279,7 @@ files:
272
279
  - lib/aws-sdk-core/kinesis.rb
273
280
  - lib/aws-sdk-core/kms.rb
274
281
  - lib/aws-sdk-core/lambda.rb
275
- - lib/aws-sdk-core/lambda_preview.rb
282
+ - lib/aws-sdk-core/lambdapreview.rb
276
283
  - lib/aws-sdk-core/machinelearning.rb
277
284
  - lib/aws-sdk-core/opsworks.rb
278
285
  - lib/aws-sdk-core/pageable_response.rb
@@ -430,7 +437,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
430
437
  version: '0'
431
438
  requirements: []
432
439
  rubyforge_project:
433
- rubygems_version: 2.4.5
440
+ rubygems_version: 2.4.6
434
441
  signing_key:
435
442
  specification_version: 4
436
443
  summary: AWS SDK for Ruby - Core