aws-sdk-core 2.0.16 → 2.0.17

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,15 +21,6 @@
21
21
  }
22
22
  },
23
23
  "hasMany": {
24
- "DeadLetterSourceQueues": {
25
- "request": { "operation": "ListDeadLetterSourceQueues" },
26
- "resource": {
27
- "type": "Queue",
28
- "identifiers": [
29
- { "target": "Url", "sourceType": "responsePath", "source": "QueueUrls[]" }
30
- ]
31
- }
32
- },
33
24
  "Queues": {
34
25
  "request": { "operation": "ListQueues" },
35
26
  "resource": {
@@ -45,7 +36,10 @@
45
36
  "Message": {
46
37
  "identifiers": [
47
38
  { "name": "QueueUrl" },
48
- { "name": "ReceiptHandle" }
39
+ {
40
+ "name": "ReceiptHandle",
41
+ "memberName": "ReceiptHandle"
42
+ }
49
43
  ],
50
44
  "shape": "Message",
51
45
  "actions": {
@@ -129,6 +123,14 @@
129
123
  ]
130
124
  }
131
125
  },
126
+ "Purge": {
127
+ "request": {
128
+ "operation": "PurgeQueue",
129
+ "params": [
130
+ { "target": "QueueUrl", "sourceType": "identifier", "source": "Url" }
131
+ ]
132
+ }
133
+ },
132
134
  "ReceiveMessages": {
133
135
  "request": {
134
136
  "operation": "ReceiveMessage",
@@ -178,6 +180,22 @@
178
180
  }
179
181
  }
180
182
  },
183
+ "hasMany": {
184
+ "DeadLetterSourceQueues": {
185
+ "request": {
186
+ "operation": "ListDeadLetterSourceQueues",
187
+ "params": [
188
+ { "target": "QueueUrl", "sourceType": "identifier", "source": "Url" }
189
+ ]
190
+ },
191
+ "resource": {
192
+ "type": "Queue",
193
+ "identifiers": [
194
+ { "target": "Url", "sourceType": "responsePath", "source": "QueueUrls[]" }
195
+ ]
196
+ }
197
+ }
198
+ },
181
199
  "subResources": {
182
200
  "resources": [ "Message" ],
183
201
  "identifiers": { "Url": "QueueUrl" }
@@ -51,7 +51,7 @@ module Aws
51
51
  when 'list' then list(shape, value)
52
52
  when 'map' then map(shape, value)
53
53
  when 'timestamp' then shape.format_time(value, 'unixTimestamp')
54
- when 'blob' then Base64.strict_encode64(value)
54
+ when 'blob' then Base64.strict_encode64(value.read)
55
55
  else value
56
56
  end
57
57
  end
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.0.16'
2
+ VERSION = '2.0.17'
3
3
  end
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.16
4
+ version: 2.0.17
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: 2014-12-18 00:00:00.000000000 Z
11
+ date: 2014-12-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: multi_json
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: '1.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '1.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: multi_xml
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - "~>"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '0.5'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - "~>"
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0.5'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: builder
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - ~>
45
+ - - "~>"
46
46
  - !ruby/object:Gem::Version
47
47
  version: '3.0'
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - ~>
52
+ - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '3.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: jmespath
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - ~>
59
+ - - "~>"
60
60
  - !ruby/object:Gem::Version
61
61
  version: '1.0'
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - ~>
66
+ - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '1.0'
69
69
  description: Provides API clients for AWS.
@@ -73,7 +73,113 @@ executables:
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
75
  files:
76
+ - apis/AutoScaling.api.json
77
+ - apis/AutoScaling.paginators.json
78
+ - apis/CloudFormation.api.json
79
+ - apis/CloudFormation.paginators.json
80
+ - apis/CloudFormation.resources.json
81
+ - apis/CloudFront.api.json
82
+ - apis/CloudFront.paginators.json
83
+ - apis/CloudFront.waiters.json
84
+ - apis/CloudFront.waiters2.json
85
+ - apis/CloudSearch.api.json
86
+ - apis/CloudSearch.paginators.json
87
+ - apis/CloudSearchDomain.api.json
88
+ - apis/CloudTrail.api.json
89
+ - apis/CloudTrail.paginators.json
90
+ - apis/CloudWatch.api.json
91
+ - apis/CloudWatch.paginators.json
92
+ - apis/CloudWatchLogs.api.json
93
+ - apis/CloudWatchLogs.paginators.json
94
+ - apis/CodeDeploy.api.json
95
+ - apis/CodeDeploy.paginators.json
96
+ - apis/CognitoIdentity.api.json
97
+ - apis/CognitoSync.api.json
98
+ - apis/ConfigService.api.json
99
+ - apis/ConfigService.paginators.json
100
+ - apis/DataPipeline.api.json
101
+ - apis/DataPipeline.paginators.json
102
+ - apis/DirectConnect.api.json
103
+ - apis/DirectConnect.paginators.json
104
+ - apis/DynamoDB.api.json
105
+ - apis/DynamoDB.paginators.json
106
+ - apis/DynamoDB.waiters.json
107
+ - apis/DynamoDB.waiters2.json
108
+ - apis/EC2.api.json
109
+ - apis/EC2.paginators.json
110
+ - apis/EC2.resources.json
111
+ - apis/EC2.waiters.json
112
+ - apis/EC2.waiters2.json
113
+ - apis/EMR.api.json
114
+ - apis/EMR.paginators.json
115
+ - apis/EMR.waiters2.json
116
+ - apis/ElastiCache.api.json
117
+ - apis/ElastiCache.paginators.json
118
+ - apis/ElasticBeanstalk.api.json
119
+ - apis/ElasticBeanstalk.paginators.json
120
+ - apis/ElasticLoadBalancing.api.json
121
+ - apis/ElasticLoadBalancing.paginators.json
122
+ - apis/ElasticTranscoder.api.json
123
+ - apis/ElasticTranscoder.paginators.json
124
+ - apis/ElasticTranscoder.waiters.json
125
+ - apis/ElasticTranscoder.waiters2.json
126
+ - apis/Glacier.api.json
127
+ - apis/Glacier.paginators.json
128
+ - apis/Glacier.resources.json
129
+ - apis/Glacier.waiters.json
130
+ - apis/IAM.api.json
131
+ - apis/IAM.paginators.json
132
+ - apis/IAM.resources.json
133
+ - apis/ImportExport.api.json
134
+ - apis/ImportExport.paginators.json
135
+ - apis/KMS.api.json
136
+ - apis/KMS.paginators.json
137
+ - apis/Kinesis.api.json
138
+ - apis/Kinesis.paginators.json
139
+ - apis/Kinesis.waiters2.json
140
+ - apis/Lambda.api.json
141
+ - apis/Lambda.paginators.json
142
+ - apis/OpsWorks.api.json
143
+ - apis/OpsWorks.paginators.json
144
+ - apis/OpsWorks.resources.json
145
+ - apis/RDS.api.json
146
+ - apis/RDS.paginators.json
147
+ - apis/RDS.waiters.json
148
+ - apis/RDS.waiters2.json
149
+ - apis/Redshift.api.json
150
+ - apis/Redshift.paginators.json
151
+ - apis/Redshift.waiters.json
152
+ - apis/Redshift.waiters2.json
153
+ - apis/Route53.api.json
154
+ - apis/Route53.paginators.json
155
+ - apis/Route53Domains.api.json
156
+ - apis/S3.api.json
157
+ - apis/S3.paginators.json
158
+ - apis/S3.resources.json
159
+ - apis/S3.waiters.json
160
+ - apis/S3.waiters2.json
161
+ - apis/SES.api.json
162
+ - apis/SES.paginators.json
163
+ - apis/SES.waiters.json
164
+ - apis/SES.waiters2.json
165
+ - apis/SNS.api.json
166
+ - apis/SNS.paginators.json
167
+ - apis/SNS.resources.json
168
+ - apis/SQS.api.json
169
+ - apis/SQS.paginators.json
170
+ - apis/SQS.resources.json
171
+ - apis/STS.api.json
172
+ - apis/SWF.api.json
173
+ - apis/SWF.paginators.json
174
+ - apis/SimpleDB.api.json
175
+ - apis/SimpleDB.paginators.json
176
+ - apis/StorageGateway.api.json
177
+ - apis/StorageGateway.paginators.json
178
+ - apis/Support.api.json
179
+ - apis/Support.paginators.json
180
+ - bin/aws.rb
76
181
  - endpoints.json
182
+ - lib/aws-sdk-core.rb
77
183
  - lib/aws-sdk-core/api/customizer.rb
78
184
  - lib/aws-sdk-core/api/docstrings.rb
79
185
  - lib/aws-sdk-core/api/documenter.rb
@@ -101,8 +207,8 @@ files:
101
207
  - lib/aws-sdk-core/credentials.rb
102
208
  - lib/aws-sdk-core/datapipeline.rb
103
209
  - lib/aws-sdk-core/directconnect.rb
104
- - lib/aws-sdk-core/dynamodb/attribute_value.rb
105
210
  - lib/aws-sdk-core/dynamodb.rb
211
+ - lib/aws-sdk-core/dynamodb/attribute_value.rb
106
212
  - lib/aws-sdk-core/ec2.rb
107
213
  - lib/aws-sdk-core/elasticache.rb
108
214
  - lib/aws-sdk-core/elasticbeanstalk.rb
@@ -176,9 +282,9 @@ files:
176
282
  - lib/aws-sdk-core/rest_body_handler.rb
177
283
  - lib/aws-sdk-core/route53.rb
178
284
  - lib/aws-sdk-core/route53domains.rb
285
+ - lib/aws-sdk-core/s3.rb
179
286
  - lib/aws-sdk-core/s3/bucket_region_cache.rb
180
287
  - lib/aws-sdk-core/s3/presigner.rb
181
- - lib/aws-sdk-core/s3.rb
182
288
  - lib/aws-sdk-core/service.rb
183
289
  - lib/aws-sdk-core/ses.rb
184
290
  - lib/aws-sdk-core/shared_credentials.rb
@@ -207,7 +313,7 @@ files:
207
313
  - lib/aws-sdk-core/xml/error_handler.rb
208
314
  - lib/aws-sdk-core/xml/parser.rb
209
315
  - lib/aws-sdk-core/xml/rest_handler.rb
210
- - lib/aws-sdk-core.rb
316
+ - lib/seahorse.rb
211
317
  - lib/seahorse/client/base.rb
212
318
  - lib/seahorse/client/block_io.rb
213
319
  - lib/seahorse/client/configuration.rb
@@ -250,103 +356,6 @@ files:
250
356
  - lib/seahorse/model/shapes.rb
251
357
  - lib/seahorse/util.rb
252
358
  - lib/seahorse/version.rb
253
- - lib/seahorse.rb
254
- - apis/AutoScaling.api.json
255
- - apis/AutoScaling.paginators.json
256
- - apis/CloudFormation.api.json
257
- - apis/CloudFormation.paginators.json
258
- - apis/CloudFormation.resources.json
259
- - apis/CloudFront.api.json
260
- - apis/CloudFront.paginators.json
261
- - apis/CloudFront.waiters.json
262
- - apis/CloudSearch.api.json
263
- - apis/CloudSearch.paginators.json
264
- - apis/CloudSearchDomain.api.json
265
- - apis/CloudTrail.api.json
266
- - apis/CloudTrail.paginators.json
267
- - apis/CloudWatch.api.json
268
- - apis/CloudWatch.paginators.json
269
- - apis/CloudWatchLogs.api.json
270
- - apis/CloudWatchLogs.paginators.json
271
- - apis/CodeDeploy.api.json
272
- - apis/CodeDeploy.paginators.json
273
- - apis/CognitoIdentity.api.json
274
- - apis/CognitoSync.api.json
275
- - apis/ConfigService.api.json
276
- - apis/ConfigService.paginators.json
277
- - apis/DataPipeline.api.json
278
- - apis/DataPipeline.paginators.json
279
- - apis/DirectConnect.api.json
280
- - apis/DirectConnect.paginators.json
281
- - apis/DynamoDB.api.json
282
- - apis/DynamoDB.paginators.json
283
- - apis/DynamoDB.waiters.json
284
- - apis/EC2.api.json
285
- - apis/EC2.paginators.json
286
- - apis/EC2.resources.json
287
- - apis/EC2.waiters.json
288
- - apis/ElastiCache.api.json
289
- - apis/ElastiCache.paginators.json
290
- - apis/ElasticBeanstalk.api.json
291
- - apis/ElasticBeanstalk.paginators.json
292
- - apis/ElasticLoadBalancing.api.json
293
- - apis/ElasticLoadBalancing.paginators.json
294
- - apis/ElasticTranscoder.api.json
295
- - apis/ElasticTranscoder.paginators.json
296
- - apis/ElasticTranscoder.waiters.json
297
- - apis/EMR.api.json
298
- - apis/EMR.paginators.json
299
- - apis/EMR.waiters2.json
300
- - apis/Glacier.api.json
301
- - apis/Glacier.paginators.json
302
- - apis/Glacier.resources.json
303
- - apis/Glacier.waiters.json
304
- - apis/IAM.api.json
305
- - apis/IAM.paginators.json
306
- - apis/IAM.resources.json
307
- - apis/ImportExport.api.json
308
- - apis/ImportExport.paginators.json
309
- - apis/Kinesis.api.json
310
- - apis/Kinesis.paginators.json
311
- - apis/KMS.api.json
312
- - apis/KMS.paginators.json
313
- - apis/Lambda.api.json
314
- - apis/Lambda.paginators.json
315
- - apis/OpsWorks.api.json
316
- - apis/OpsWorks.paginators.json
317
- - apis/OpsWorks.resources.json
318
- - apis/RDS.api.json
319
- - apis/RDS.paginators.json
320
- - apis/RDS.waiters.json
321
- - apis/Redshift.api.json
322
- - apis/Redshift.paginators.json
323
- - apis/Redshift.waiters.json
324
- - apis/Route53.api.json
325
- - apis/Route53.paginators.json
326
- - apis/Route53Domains.api.json
327
- - apis/S3.api.json
328
- - apis/S3.paginators.json
329
- - apis/S3.resources.json
330
- - apis/S3.waiters.json
331
- - apis/SES.api.json
332
- - apis/SES.paginators.json
333
- - apis/SES.waiters.json
334
- - apis/SimpleDB.api.json
335
- - apis/SimpleDB.paginators.json
336
- - apis/SNS.api.json
337
- - apis/SNS.paginators.json
338
- - apis/SNS.resources.json
339
- - apis/SQS.api.json
340
- - apis/SQS.paginators.json
341
- - apis/SQS.resources.json
342
- - apis/StorageGateway.api.json
343
- - apis/StorageGateway.paginators.json
344
- - apis/STS.api.json
345
- - apis/Support.api.json
346
- - apis/Support.paginators.json
347
- - apis/SWF.api.json
348
- - apis/SWF.paginators.json
349
- - bin/aws.rb
350
359
  homepage: http://github.com/aws/aws-sdk-core-ruby
351
360
  licenses:
352
361
  - Apache 2.0
@@ -357,17 +366,17 @@ require_paths:
357
366
  - lib
358
367
  required_ruby_version: !ruby/object:Gem::Requirement
359
368
  requirements:
360
- - - '>='
369
+ - - ">="
361
370
  - !ruby/object:Gem::Version
362
371
  version: '0'
363
372
  required_rubygems_version: !ruby/object:Gem::Requirement
364
373
  requirements:
365
- - - '>='
374
+ - - ">="
366
375
  - !ruby/object:Gem::Version
367
376
  version: '0'
368
377
  requirements: []
369
378
  rubyforge_project:
370
- rubygems_version: 2.1.11
379
+ rubygems_version: 2.2.2
371
380
  signing_key:
372
381
  specification_version: 4
373
382
  summary: AWS SDK for Ruby - Core