aws-sdk-core 2.0.8 → 2.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/ConfigService.paginators.json +10 -0
- data/apis/Lambda.api.json +667 -0
- data/apis/Lambda.paginators.json +16 -0
- data/apis/S3.api.json +62 -5
- data/lib/aws-sdk-core.rb +1 -0
- data/lib/aws-sdk-core/json/parser.rb +1 -0
- data/lib/aws-sdk-core/lambda.rb +4 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c2d60d25cdbeed6a88bb5a1a98b6f3d3d3f80c1
|
4
|
+
data.tar.gz: 3405767abe805072fb29b2d8ce57624c1255b2aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3df2a98a698656f33e1113ae4402bd78d70378cdf2d2705157ca4a60a157bdcc01f0167efe42877d596d56c8ec00ac1242827c25e418dac61f16d44d54b89cba
|
7
|
+
data.tar.gz: fe567f6f95f670ae657a9f52cd81ef2fdcfac1f7c1332e4bd53b6e911113fadcb30673b7e67c38a3031d775fee6f5f9a1bcd950c2c8ab1385846c8afb0b2f468
|
@@ -0,0 +1,667 @@
|
|
1
|
+
{
|
2
|
+
"metadata":{
|
3
|
+
"apiVersion":"2014-11-11",
|
4
|
+
"endpointPrefix":"lambda",
|
5
|
+
"serviceFullName":"Amazon Lambda",
|
6
|
+
"signatureVersion":"v4",
|
7
|
+
"protocol":"rest-json"
|
8
|
+
},
|
9
|
+
"operations":{
|
10
|
+
"AddEventSource":{
|
11
|
+
"name":"AddEventSource",
|
12
|
+
"http":{
|
13
|
+
"method":"POST",
|
14
|
+
"requestUri":"/2014-11-13/event-source-mappings/"
|
15
|
+
},
|
16
|
+
"input":{"shape":"AddEventSourceRequest"},
|
17
|
+
"output":{"shape":"EventSourceConfiguration"},
|
18
|
+
"errors":[
|
19
|
+
{
|
20
|
+
"shape":"ServiceException",
|
21
|
+
"error":{"httpStatusCode":500},
|
22
|
+
"exception":true
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"shape":"InvalidParameterValueException",
|
26
|
+
"error":{"httpStatusCode":400},
|
27
|
+
"exception":true
|
28
|
+
}
|
29
|
+
]
|
30
|
+
},
|
31
|
+
"DeleteFunction":{
|
32
|
+
"name":"DeleteFunction",
|
33
|
+
"http":{
|
34
|
+
"method":"DELETE",
|
35
|
+
"requestUri":"/2014-11-13/functions/{FunctionName}",
|
36
|
+
"responseCode":204
|
37
|
+
},
|
38
|
+
"input":{"shape":"DeleteFunctionRequest"},
|
39
|
+
"errors":[
|
40
|
+
{
|
41
|
+
"shape":"ServiceException",
|
42
|
+
"error":{"httpStatusCode":500},
|
43
|
+
"exception":true
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"shape":"ResourceNotFoundException",
|
47
|
+
"error":{"httpStatusCode":404},
|
48
|
+
"exception":true
|
49
|
+
}
|
50
|
+
]
|
51
|
+
},
|
52
|
+
"GetEventSource":{
|
53
|
+
"name":"GetEventSource",
|
54
|
+
"http":{
|
55
|
+
"method":"GET",
|
56
|
+
"requestUri":"/2014-11-13/event-source-mappings/{UUID}",
|
57
|
+
"responseCode":200
|
58
|
+
},
|
59
|
+
"input":{"shape":"GetEventSourceRequest"},
|
60
|
+
"output":{"shape":"EventSourceConfiguration"},
|
61
|
+
"errors":[
|
62
|
+
{
|
63
|
+
"shape":"ServiceException",
|
64
|
+
"error":{"httpStatusCode":500},
|
65
|
+
"exception":true
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"shape":"ResourceNotFoundException",
|
69
|
+
"error":{"httpStatusCode":404},
|
70
|
+
"exception":true
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"shape":"InvalidParameterValueException",
|
74
|
+
"error":{"httpStatusCode":400},
|
75
|
+
"exception":true
|
76
|
+
}
|
77
|
+
]
|
78
|
+
},
|
79
|
+
"GetFunction":{
|
80
|
+
"name":"GetFunction",
|
81
|
+
"http":{
|
82
|
+
"method":"GET",
|
83
|
+
"requestUri":"/2014-11-13/functions/{FunctionName}",
|
84
|
+
"responseCode":200
|
85
|
+
},
|
86
|
+
"input":{"shape":"GetFunctionRequest"},
|
87
|
+
"output":{"shape":"GetFunctionResponse"},
|
88
|
+
"errors":[
|
89
|
+
{
|
90
|
+
"shape":"ServiceException",
|
91
|
+
"error":{"httpStatusCode":500},
|
92
|
+
"exception":true
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"shape":"ResourceNotFoundException",
|
96
|
+
"error":{"httpStatusCode":404},
|
97
|
+
"exception":true
|
98
|
+
}
|
99
|
+
]
|
100
|
+
},
|
101
|
+
"GetFunctionConfiguration":{
|
102
|
+
"name":"GetFunctionConfiguration",
|
103
|
+
"http":{
|
104
|
+
"method":"GET",
|
105
|
+
"requestUri":"/2014-11-13/functions/{FunctionName}/configuration",
|
106
|
+
"responseCode":200
|
107
|
+
},
|
108
|
+
"input":{"shape":"GetFunctionConfigurationRequest"},
|
109
|
+
"output":{"shape":"FunctionConfiguration"},
|
110
|
+
"errors":[
|
111
|
+
{
|
112
|
+
"shape":"ServiceException",
|
113
|
+
"error":{"httpStatusCode":500},
|
114
|
+
"exception":true
|
115
|
+
},
|
116
|
+
{
|
117
|
+
"shape":"ResourceNotFoundException",
|
118
|
+
"error":{"httpStatusCode":404},
|
119
|
+
"exception":true
|
120
|
+
}
|
121
|
+
]
|
122
|
+
},
|
123
|
+
"InvokeAsync":{
|
124
|
+
"name":"InvokeAsync",
|
125
|
+
"http":{
|
126
|
+
"method":"POST",
|
127
|
+
"requestUri":"/2014-11-13/functions/{FunctionName}/invoke-async/",
|
128
|
+
"responseCode":202
|
129
|
+
},
|
130
|
+
"input":{"shape":"InvokeAsyncRequest"},
|
131
|
+
"output":{"shape":"InvokeAsyncResponse"},
|
132
|
+
"errors":[
|
133
|
+
{
|
134
|
+
"shape":"ServiceException",
|
135
|
+
"error":{"httpStatusCode":500},
|
136
|
+
"exception":true
|
137
|
+
},
|
138
|
+
{
|
139
|
+
"shape":"ResourceNotFoundException",
|
140
|
+
"error":{"httpStatusCode":404},
|
141
|
+
"exception":true
|
142
|
+
},
|
143
|
+
{
|
144
|
+
"shape":"InvalidRequestContentException",
|
145
|
+
"error":{"httpStatusCode":400},
|
146
|
+
"exception":true
|
147
|
+
}
|
148
|
+
]
|
149
|
+
},
|
150
|
+
"ListEventSources":{
|
151
|
+
"name":"ListEventSources",
|
152
|
+
"http":{
|
153
|
+
"method":"GET",
|
154
|
+
"requestUri":"/2014-11-13/event-source-mappings/",
|
155
|
+
"responseCode":200
|
156
|
+
},
|
157
|
+
"input":{"shape":"ListEventSourcesRequest"},
|
158
|
+
"output":{"shape":"ListEventSourcesResponse"},
|
159
|
+
"errors":[
|
160
|
+
{
|
161
|
+
"shape":"ServiceException",
|
162
|
+
"error":{"httpStatusCode":500},
|
163
|
+
"exception":true
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"shape":"ResourceNotFoundException",
|
167
|
+
"error":{"httpStatusCode":404},
|
168
|
+
"exception":true
|
169
|
+
},
|
170
|
+
{
|
171
|
+
"shape":"InvalidParameterValueException",
|
172
|
+
"error":{"httpStatusCode":400},
|
173
|
+
"exception":true
|
174
|
+
}
|
175
|
+
]
|
176
|
+
},
|
177
|
+
"ListFunctions":{
|
178
|
+
"name":"ListFunctions",
|
179
|
+
"http":{
|
180
|
+
"method":"GET",
|
181
|
+
"requestUri":"/2014-11-13/functions/",
|
182
|
+
"responseCode":200
|
183
|
+
},
|
184
|
+
"input":{"shape":"ListFunctionsRequest"},
|
185
|
+
"output":{"shape":"ListFunctionsResponse"},
|
186
|
+
"errors":[
|
187
|
+
{
|
188
|
+
"shape":"ServiceException",
|
189
|
+
"error":{"httpStatusCode":500},
|
190
|
+
"exception":true
|
191
|
+
}
|
192
|
+
]
|
193
|
+
},
|
194
|
+
"RemoveEventSource":{
|
195
|
+
"name":"RemoveEventSource",
|
196
|
+
"http":{
|
197
|
+
"method":"DELETE",
|
198
|
+
"requestUri":"/2014-11-13/event-source-mappings/{UUID}",
|
199
|
+
"responseCode":204
|
200
|
+
},
|
201
|
+
"input":{"shape":"RemoveEventSourceRequest"},
|
202
|
+
"errors":[
|
203
|
+
{
|
204
|
+
"shape":"ServiceException",
|
205
|
+
"error":{"httpStatusCode":500},
|
206
|
+
"exception":true
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"shape":"ResourceNotFoundException",
|
210
|
+
"error":{"httpStatusCode":404},
|
211
|
+
"exception":true
|
212
|
+
},
|
213
|
+
{
|
214
|
+
"shape":"InvalidParameterValueException",
|
215
|
+
"error":{"httpStatusCode":400},
|
216
|
+
"exception":true
|
217
|
+
}
|
218
|
+
]
|
219
|
+
},
|
220
|
+
"UpdateFunctionConfiguration":{
|
221
|
+
"name":"UpdateFunctionConfiguration",
|
222
|
+
"http":{
|
223
|
+
"method":"PUT",
|
224
|
+
"requestUri":"/2014-11-13/functions/{FunctionName}/configuration",
|
225
|
+
"responseCode":200
|
226
|
+
},
|
227
|
+
"input":{"shape":"UpdateFunctionConfigurationRequest"},
|
228
|
+
"output":{"shape":"FunctionConfiguration"},
|
229
|
+
"errors":[
|
230
|
+
{
|
231
|
+
"shape":"ServiceException",
|
232
|
+
"error":{"httpStatusCode":500},
|
233
|
+
"exception":true
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"shape":"ResourceNotFoundException",
|
237
|
+
"error":{"httpStatusCode":404},
|
238
|
+
"exception":true
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"shape":"InvalidParameterValueException",
|
242
|
+
"error":{"httpStatusCode":400},
|
243
|
+
"exception":true
|
244
|
+
}
|
245
|
+
]
|
246
|
+
},
|
247
|
+
"UploadFunction":{
|
248
|
+
"name":"UploadFunction",
|
249
|
+
"http":{
|
250
|
+
"method":"PUT",
|
251
|
+
"requestUri":"/2014-11-13/functions/{FunctionName}",
|
252
|
+
"responseCode":201
|
253
|
+
},
|
254
|
+
"input":{"shape":"UploadFunctionRequest"},
|
255
|
+
"output":{"shape":"FunctionConfiguration"},
|
256
|
+
"errors":[
|
257
|
+
{
|
258
|
+
"shape":"ServiceException",
|
259
|
+
"error":{"httpStatusCode":500},
|
260
|
+
"exception":true
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"shape":"InvalidParameterValueException",
|
264
|
+
"error":{"httpStatusCode":400},
|
265
|
+
"exception":true
|
266
|
+
},
|
267
|
+
{
|
268
|
+
"shape":"ResourceNotFoundException",
|
269
|
+
"error":{"httpStatusCode":404},
|
270
|
+
"exception":true
|
271
|
+
}
|
272
|
+
]
|
273
|
+
}
|
274
|
+
},
|
275
|
+
"shapes":{
|
276
|
+
"AddEventSourceRequest":{
|
277
|
+
"type":"structure",
|
278
|
+
"required":[
|
279
|
+
"EventSource",
|
280
|
+
"FunctionName",
|
281
|
+
"Role"
|
282
|
+
],
|
283
|
+
"members":{
|
284
|
+
"EventSource":{"shape":"String"},
|
285
|
+
"FunctionName":{"shape":"FunctionName"},
|
286
|
+
"Role":{"shape":"RoleArn"},
|
287
|
+
"BatchSize":{"shape":"Integer"},
|
288
|
+
"Parameters":{"shape":"Map"}
|
289
|
+
}
|
290
|
+
},
|
291
|
+
"Blob":{
|
292
|
+
"type":"blob",
|
293
|
+
"streaming":true
|
294
|
+
},
|
295
|
+
"DeleteFunctionRequest":{
|
296
|
+
"type":"structure",
|
297
|
+
"required":["FunctionName"],
|
298
|
+
"members":{
|
299
|
+
"FunctionName":{
|
300
|
+
"shape":"FunctionName",
|
301
|
+
"location":"uri",
|
302
|
+
"locationName":"FunctionName"
|
303
|
+
}
|
304
|
+
}
|
305
|
+
},
|
306
|
+
"Description":{
|
307
|
+
"type":"string",
|
308
|
+
"min":0,
|
309
|
+
"max":256
|
310
|
+
},
|
311
|
+
"EventSourceConfiguration":{
|
312
|
+
"type":"structure",
|
313
|
+
"members":{
|
314
|
+
"UUID":{"shape":"String"},
|
315
|
+
"BatchSize":{"shape":"Integer"},
|
316
|
+
"EventSource":{"shape":"String"},
|
317
|
+
"FunctionName":{"shape":"FunctionName"},
|
318
|
+
"Parameters":{"shape":"Map"},
|
319
|
+
"Role":{"shape":"RoleArn"},
|
320
|
+
"LastModified":{"shape":"Timestamp"},
|
321
|
+
"IsActive":{"shape":"Boolean"},
|
322
|
+
"Status":{"shape":"String"}
|
323
|
+
}
|
324
|
+
},
|
325
|
+
"EventSourceList":{
|
326
|
+
"type":"list",
|
327
|
+
"member":{"shape":"EventSourceConfiguration"}
|
328
|
+
},
|
329
|
+
"FunctionArn":{
|
330
|
+
"type":"string",
|
331
|
+
"pattern":"arn:aws:lambda:[a-z]{2}-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-]+(\\/[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})?"
|
332
|
+
},
|
333
|
+
"FunctionCodeLocation":{
|
334
|
+
"type":"structure",
|
335
|
+
"members":{
|
336
|
+
"RepositoryType":{"shape":"String"},
|
337
|
+
"Location":{"shape":"String"}
|
338
|
+
}
|
339
|
+
},
|
340
|
+
"FunctionConfiguration":{
|
341
|
+
"type":"structure",
|
342
|
+
"members":{
|
343
|
+
"FunctionName":{"shape":"FunctionName"},
|
344
|
+
"FunctionARN":{"shape":"FunctionArn"},
|
345
|
+
"ConfigurationId":{"shape":"String"},
|
346
|
+
"Runtime":{"shape":"Runtime"},
|
347
|
+
"Role":{"shape":"RoleArn"},
|
348
|
+
"Handler":{"shape":"Handler"},
|
349
|
+
"Mode":{"shape":"Mode"},
|
350
|
+
"CodeSize":{"shape":"Long"},
|
351
|
+
"Description":{"shape":"Description"},
|
352
|
+
"Timeout":{"shape":"Timeout"},
|
353
|
+
"MemorySize":{"shape":"MemorySize"},
|
354
|
+
"LastModified":{"shape":"Timestamp"}
|
355
|
+
}
|
356
|
+
},
|
357
|
+
"FunctionList":{
|
358
|
+
"type":"list",
|
359
|
+
"member":{"shape":"FunctionConfiguration"}
|
360
|
+
},
|
361
|
+
"FunctionName":{
|
362
|
+
"type":"string",
|
363
|
+
"min":1,
|
364
|
+
"max":64,
|
365
|
+
"pattern":"[a-zA-Z0-9-]+"
|
366
|
+
},
|
367
|
+
"GetEventSourceRequest":{
|
368
|
+
"type":"structure",
|
369
|
+
"required":["UUID"],
|
370
|
+
"members":{
|
371
|
+
"UUID":{
|
372
|
+
"shape":"String",
|
373
|
+
"location":"uri",
|
374
|
+
"locationName":"UUID"
|
375
|
+
}
|
376
|
+
}
|
377
|
+
},
|
378
|
+
"GetFunctionConfigurationRequest":{
|
379
|
+
"type":"structure",
|
380
|
+
"required":["FunctionName"],
|
381
|
+
"members":{
|
382
|
+
"FunctionName":{
|
383
|
+
"shape":"FunctionName",
|
384
|
+
"location":"uri",
|
385
|
+
"locationName":"FunctionName"
|
386
|
+
}
|
387
|
+
}
|
388
|
+
},
|
389
|
+
"GetFunctionRequest":{
|
390
|
+
"type":"structure",
|
391
|
+
"required":["FunctionName"],
|
392
|
+
"members":{
|
393
|
+
"FunctionName":{
|
394
|
+
"shape":"FunctionName",
|
395
|
+
"location":"uri",
|
396
|
+
"locationName":"FunctionName"
|
397
|
+
}
|
398
|
+
}
|
399
|
+
},
|
400
|
+
"GetFunctionResponse":{
|
401
|
+
"type":"structure",
|
402
|
+
"members":{
|
403
|
+
"Configuration":{"shape":"FunctionConfiguration"},
|
404
|
+
"Code":{"shape":"FunctionCodeLocation"}
|
405
|
+
}
|
406
|
+
},
|
407
|
+
"Handler":{
|
408
|
+
"type":"string",
|
409
|
+
"pattern":"[a-zA-Z0-9./\\-_]+"
|
410
|
+
},
|
411
|
+
"HttpStatus":{"type":"integer"},
|
412
|
+
"Integer":{"type":"integer"},
|
413
|
+
"InvalidParameterValueException":{
|
414
|
+
"type":"structure",
|
415
|
+
"members":{
|
416
|
+
"Type":{"shape":"String"},
|
417
|
+
"message":{"shape":"String"}
|
418
|
+
},
|
419
|
+
"error":{"httpStatusCode":400},
|
420
|
+
"exception":true
|
421
|
+
},
|
422
|
+
"InvalidRequestContentException":{
|
423
|
+
"type":"structure",
|
424
|
+
"members":{
|
425
|
+
"Type":{"shape":"String"},
|
426
|
+
"message":{"shape":"String"}
|
427
|
+
},
|
428
|
+
"error":{"httpStatusCode":400},
|
429
|
+
"exception":true
|
430
|
+
},
|
431
|
+
"InvokeAsyncRequest":{
|
432
|
+
"type":"structure",
|
433
|
+
"required":[
|
434
|
+
"FunctionName",
|
435
|
+
"InvokeArgs"
|
436
|
+
],
|
437
|
+
"members":{
|
438
|
+
"FunctionName":{
|
439
|
+
"shape":"FunctionName",
|
440
|
+
"location":"uri",
|
441
|
+
"locationName":"FunctionName"
|
442
|
+
},
|
443
|
+
"InvokeArgs":{"shape":"Blob"}
|
444
|
+
},
|
445
|
+
"payload":"InvokeArgs"
|
446
|
+
},
|
447
|
+
"InvokeAsyncResponse":{
|
448
|
+
"type":"structure",
|
449
|
+
"members":{
|
450
|
+
"Status":{
|
451
|
+
"shape":"HttpStatus",
|
452
|
+
"location":"statusCode"
|
453
|
+
}
|
454
|
+
}
|
455
|
+
},
|
456
|
+
"ListEventSourcesRequest":{
|
457
|
+
"type":"structure",
|
458
|
+
"members":{
|
459
|
+
"EventSourceArn":{
|
460
|
+
"shape":"String",
|
461
|
+
"location":"querystring",
|
462
|
+
"locationName":"EventSource"
|
463
|
+
},
|
464
|
+
"FunctionName":{
|
465
|
+
"shape":"FunctionName",
|
466
|
+
"location":"querystring",
|
467
|
+
"locationName":"FunctionName"
|
468
|
+
},
|
469
|
+
"Marker":{
|
470
|
+
"shape":"String",
|
471
|
+
"location":"querystring",
|
472
|
+
"locationName":"Marker"
|
473
|
+
},
|
474
|
+
"MaxItems":{
|
475
|
+
"shape":"MaxListItems",
|
476
|
+
"location":"querystring",
|
477
|
+
"locationName":"MaxItems"
|
478
|
+
}
|
479
|
+
}
|
480
|
+
},
|
481
|
+
"ListEventSourcesResponse":{
|
482
|
+
"type":"structure",
|
483
|
+
"members":{
|
484
|
+
"NextMarker":{"shape":"String"},
|
485
|
+
"EventSources":{"shape":"EventSourceList"}
|
486
|
+
}
|
487
|
+
},
|
488
|
+
"ListFunctionsRequest":{
|
489
|
+
"type":"structure",
|
490
|
+
"members":{
|
491
|
+
"Marker":{
|
492
|
+
"shape":"String",
|
493
|
+
"location":"querystring",
|
494
|
+
"locationName":"Marker"
|
495
|
+
},
|
496
|
+
"MaxItems":{
|
497
|
+
"shape":"MaxListItems",
|
498
|
+
"location":"querystring",
|
499
|
+
"locationName":"MaxItems"
|
500
|
+
}
|
501
|
+
}
|
502
|
+
},
|
503
|
+
"ListFunctionsResponse":{
|
504
|
+
"type":"structure",
|
505
|
+
"members":{
|
506
|
+
"NextMarker":{"shape":"String"},
|
507
|
+
"Functions":{"shape":"FunctionList"}
|
508
|
+
}
|
509
|
+
},
|
510
|
+
"Long":{"type":"long"},
|
511
|
+
"Map":{
|
512
|
+
"type":"map",
|
513
|
+
"key":{"shape":"String"},
|
514
|
+
"value":{"shape":"String"}
|
515
|
+
},
|
516
|
+
"MaxListItems":{
|
517
|
+
"type":"integer",
|
518
|
+
"min":1,
|
519
|
+
"max":10000
|
520
|
+
},
|
521
|
+
"MemorySize":{
|
522
|
+
"type":"integer",
|
523
|
+
"min":64,
|
524
|
+
"max":1024
|
525
|
+
},
|
526
|
+
"Mode":{
|
527
|
+
"type":"string",
|
528
|
+
"enum":["event"]
|
529
|
+
},
|
530
|
+
"RemoveEventSourceRequest":{
|
531
|
+
"type":"structure",
|
532
|
+
"required":["UUID"],
|
533
|
+
"members":{
|
534
|
+
"UUID":{
|
535
|
+
"shape":"String",
|
536
|
+
"location":"uri",
|
537
|
+
"locationName":"UUID"
|
538
|
+
}
|
539
|
+
}
|
540
|
+
},
|
541
|
+
"ResourceNotFoundException":{
|
542
|
+
"type":"structure",
|
543
|
+
"members":{
|
544
|
+
"Type":{"shape":"String"},
|
545
|
+
"Message":{"shape":"String"}
|
546
|
+
},
|
547
|
+
"error":{"httpStatusCode":404},
|
548
|
+
"exception":true
|
549
|
+
},
|
550
|
+
"RoleArn":{
|
551
|
+
"type":"string",
|
552
|
+
"pattern":"arn:aws:iam::\\d{12}:role/?[a-zA-Z_0-9+=,.@\\-_]+"
|
553
|
+
},
|
554
|
+
"Runtime":{
|
555
|
+
"type":"string",
|
556
|
+
"enum":["nodejs"]
|
557
|
+
},
|
558
|
+
"ServiceException":{
|
559
|
+
"type":"structure",
|
560
|
+
"members":{
|
561
|
+
"Type":{"shape":"String"},
|
562
|
+
"Message":{"shape":"String"}
|
563
|
+
},
|
564
|
+
"error":{"httpStatusCode":500},
|
565
|
+
"exception":true
|
566
|
+
},
|
567
|
+
"String":{"type":"string"},
|
568
|
+
"Timeout":{
|
569
|
+
"type":"integer",
|
570
|
+
"min":1,
|
571
|
+
"max":60
|
572
|
+
},
|
573
|
+
"Timestamp":{"type":"timestamp"},
|
574
|
+
"UpdateFunctionConfigurationRequest":{
|
575
|
+
"type":"structure",
|
576
|
+
"required":["FunctionName"],
|
577
|
+
"members":{
|
578
|
+
"FunctionName":{
|
579
|
+
"shape":"FunctionName",
|
580
|
+
"location":"uri",
|
581
|
+
"locationName":"FunctionName"
|
582
|
+
},
|
583
|
+
"Role":{
|
584
|
+
"shape":"RoleArn",
|
585
|
+
"location":"querystring",
|
586
|
+
"locationName":"Role"
|
587
|
+
},
|
588
|
+
"Handler":{
|
589
|
+
"shape":"Handler",
|
590
|
+
"location":"querystring",
|
591
|
+
"locationName":"Handler"
|
592
|
+
},
|
593
|
+
"Description":{
|
594
|
+
"shape":"Description",
|
595
|
+
"location":"querystring",
|
596
|
+
"locationName":"Description"
|
597
|
+
},
|
598
|
+
"Timeout":{
|
599
|
+
"shape":"Timeout",
|
600
|
+
"location":"querystring",
|
601
|
+
"locationName":"Timeout"
|
602
|
+
},
|
603
|
+
"MemorySize":{
|
604
|
+
"shape":"MemorySize",
|
605
|
+
"location":"querystring",
|
606
|
+
"locationName":"MemorySize"
|
607
|
+
}
|
608
|
+
}
|
609
|
+
},
|
610
|
+
"UploadFunctionRequest":{
|
611
|
+
"type":"structure",
|
612
|
+
"required":[
|
613
|
+
"FunctionName",
|
614
|
+
"FunctionZip",
|
615
|
+
"Runtime",
|
616
|
+
"Role",
|
617
|
+
"Handler",
|
618
|
+
"Mode"
|
619
|
+
],
|
620
|
+
"members":{
|
621
|
+
"FunctionName":{
|
622
|
+
"shape":"FunctionName",
|
623
|
+
"location":"uri",
|
624
|
+
"locationName":"FunctionName"
|
625
|
+
},
|
626
|
+
"FunctionZip":{"shape":"Blob"},
|
627
|
+
"Runtime":{
|
628
|
+
"shape":"Runtime",
|
629
|
+
"location":"querystring",
|
630
|
+
"locationName":"Runtime"
|
631
|
+
},
|
632
|
+
"Role":{
|
633
|
+
"shape":"RoleArn",
|
634
|
+
"location":"querystring",
|
635
|
+
"locationName":"Role"
|
636
|
+
},
|
637
|
+
"Handler":{
|
638
|
+
"shape":"Handler",
|
639
|
+
"location":"querystring",
|
640
|
+
"locationName":"Handler"
|
641
|
+
},
|
642
|
+
"Mode":{
|
643
|
+
"shape":"Mode",
|
644
|
+
"location":"querystring",
|
645
|
+
"locationName":"Mode"
|
646
|
+
},
|
647
|
+
"Description":{
|
648
|
+
"shape":"Description",
|
649
|
+
"location":"querystring",
|
650
|
+
"locationName":"Description"
|
651
|
+
},
|
652
|
+
"Timeout":{
|
653
|
+
"shape":"Timeout",
|
654
|
+
"location":"querystring",
|
655
|
+
"locationName":"Timeout"
|
656
|
+
},
|
657
|
+
"MemorySize":{
|
658
|
+
"shape":"MemorySize",
|
659
|
+
"location":"querystring",
|
660
|
+
"locationName":"MemorySize"
|
661
|
+
}
|
662
|
+
},
|
663
|
+
"payload":"FunctionZip"
|
664
|
+
},
|
665
|
+
"Boolean":{"type":"boolean"}
|
666
|
+
}
|
667
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
{
|
2
|
+
"pagination": {
|
3
|
+
"ListEventSources": {
|
4
|
+
"input_token": "Marker",
|
5
|
+
"output_token": "NextMarker",
|
6
|
+
"limit_key": "MaxItems",
|
7
|
+
"result_key": "EventSources"
|
8
|
+
},
|
9
|
+
"ListFunctions": {
|
10
|
+
"input_token": "Marker",
|
11
|
+
"output_token": "NextMarker",
|
12
|
+
"limit_key": "MaxItems",
|
13
|
+
"result_key": "Functions"
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
data/apis/S3.api.json
CHANGED
@@ -719,6 +719,24 @@
|
|
719
719
|
"flattened":true
|
720
720
|
},
|
721
721
|
"CacheControl":{"type":"string"},
|
722
|
+
"CloudFunction":{"type":"string"},
|
723
|
+
"CloudFunctionConfiguration":{
|
724
|
+
"type":"structure",
|
725
|
+
"members":{
|
726
|
+
"Id":{"shape":"NotificationId"},
|
727
|
+
"Event":{
|
728
|
+
"shape":"Event",
|
729
|
+
"deprecated":true
|
730
|
+
},
|
731
|
+
"Events":{
|
732
|
+
"shape":"Events",
|
733
|
+
"locationName":"Event"
|
734
|
+
},
|
735
|
+
"CloudFunction":{"shape":"CloudFunction"},
|
736
|
+
"InvocationRole":{"shape":"CloudFunctionInvocationRole"}
|
737
|
+
}
|
738
|
+
},
|
739
|
+
"CloudFunctionInvocationRole":{"type":"string"},
|
722
740
|
"Code":{"type":"string"},
|
723
741
|
"CommonPrefix":{
|
724
742
|
"type":"structure",
|
@@ -1488,7 +1506,18 @@
|
|
1488
1506
|
},
|
1489
1507
|
"Event":{
|
1490
1508
|
"type":"string",
|
1491
|
-
"enum":[
|
1509
|
+
"enum":[
|
1510
|
+
"s3:ReducedRedundancyLostObject",
|
1511
|
+
"s3:ObjectCreated:Put",
|
1512
|
+
"s3:ObjectCreated:Post",
|
1513
|
+
"s3:ObjectCreated:Copy",
|
1514
|
+
"s3:ObjectCreated:CompleteMultipartUpload"
|
1515
|
+
]
|
1516
|
+
},
|
1517
|
+
"Events":{
|
1518
|
+
"type":"list",
|
1519
|
+
"member":{"shape":"Event"},
|
1520
|
+
"flattened":true
|
1492
1521
|
},
|
1493
1522
|
"Expiration":{"type":"timestamp"},
|
1494
1523
|
"ExpirationStatus":{
|
@@ -1603,7 +1632,9 @@
|
|
1603
1632
|
"GetBucketNotificationOutput":{
|
1604
1633
|
"type":"structure",
|
1605
1634
|
"members":{
|
1606
|
-
"TopicConfiguration":{"shape":"TopicConfiguration"}
|
1635
|
+
"TopicConfiguration":{"shape":"TopicConfiguration"},
|
1636
|
+
"QueueConfiguration":{"shape":"QueueConfiguration"},
|
1637
|
+
"CloudFunctionConfiguration":{"shape":"CloudFunctionConfiguration"}
|
1607
1638
|
}
|
1608
1639
|
},
|
1609
1640
|
"GetBucketNotificationRequest":{
|
@@ -2595,11 +2626,13 @@
|
|
2595
2626
|
},
|
2596
2627
|
"NotificationConfiguration":{
|
2597
2628
|
"type":"structure",
|
2598
|
-
"required":["TopicConfiguration"],
|
2599
2629
|
"members":{
|
2600
|
-
"TopicConfiguration":{"shape":"TopicConfiguration"}
|
2630
|
+
"TopicConfiguration":{"shape":"TopicConfiguration"},
|
2631
|
+
"QueueConfiguration":{"shape":"QueueConfiguration"},
|
2632
|
+
"CloudFunctionConfiguration":{"shape":"CloudFunctionConfiguration"}
|
2601
2633
|
}
|
2602
2634
|
},
|
2635
|
+
"NotificationId":{"type":"string"},
|
2603
2636
|
"Object":{
|
2604
2637
|
"type":"structure",
|
2605
2638
|
"members":{
|
@@ -3234,6 +3267,22 @@
|
|
3234
3267
|
},
|
3235
3268
|
"payload":"Body"
|
3236
3269
|
},
|
3270
|
+
"Queue":{"type":"string"},
|
3271
|
+
"QueueConfiguration":{
|
3272
|
+
"type":"structure",
|
3273
|
+
"members":{
|
3274
|
+
"Id":{"shape":"NotificationId"},
|
3275
|
+
"Event":{
|
3276
|
+
"shape":"Event",
|
3277
|
+
"deprecated":true
|
3278
|
+
},
|
3279
|
+
"Events":{
|
3280
|
+
"shape":"Events",
|
3281
|
+
"locationName":"Event"
|
3282
|
+
},
|
3283
|
+
"Queue":{"shape":"Queue"}
|
3284
|
+
}
|
3285
|
+
},
|
3237
3286
|
"Quiet":{"type":"boolean"},
|
3238
3287
|
"Range":{"type":"string"},
|
3239
3288
|
"Redirect":{
|
@@ -3411,7 +3460,15 @@
|
|
3411
3460
|
"TopicConfiguration":{
|
3412
3461
|
"type":"structure",
|
3413
3462
|
"members":{
|
3414
|
-
"
|
3463
|
+
"Id":{"shape":"NotificationId"},
|
3464
|
+
"Events":{
|
3465
|
+
"shape":"Events",
|
3466
|
+
"locationName":"Event"
|
3467
|
+
},
|
3468
|
+
"Event":{
|
3469
|
+
"shape":"Event",
|
3470
|
+
"deprecated":true
|
3471
|
+
},
|
3415
3472
|
"Topic":{"shape":"Topic"}
|
3416
3473
|
}
|
3417
3474
|
},
|
data/lib/aws-sdk-core.rb
CHANGED
@@ -66,6 +66,7 @@ module Aws
|
|
66
66
|
when Seahorse::Model::Shapes::Map then map(shape, value, target)
|
67
67
|
when Seahorse::Model::Shapes::Timestamp then time(value)
|
68
68
|
when Seahorse::Model::Shapes::Blob then Base64.decode64(value)
|
69
|
+
when Seahorse::Model::Shapes::Boolean then value.to_s == 'true'
|
69
70
|
else value
|
70
71
|
end
|
71
72
|
end
|
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.0.
|
4
|
+
version: 2.0.9
|
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-11-
|
11
|
+
date: 2014-11-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -125,6 +125,7 @@ files:
|
|
125
125
|
- lib/aws-sdk-core/json/simple_body_handler.rb
|
126
126
|
- lib/aws-sdk-core/kinesis.rb
|
127
127
|
- lib/aws-sdk-core/kms.rb
|
128
|
+
- lib/aws-sdk-core/lambda.rb
|
128
129
|
- lib/aws-sdk-core/opsworks.rb
|
129
130
|
- lib/aws-sdk-core/pageable_response.rb
|
130
131
|
- lib/aws-sdk-core/paging/null_pager.rb
|
@@ -270,6 +271,7 @@ files:
|
|
270
271
|
- apis/CognitoIdentity.api.json
|
271
272
|
- apis/CognitoSync.api.json
|
272
273
|
- apis/ConfigService.api.json
|
274
|
+
- apis/ConfigService.paginators.json
|
273
275
|
- apis/DataPipeline.api.json
|
274
276
|
- apis/DataPipeline.paginators.json
|
275
277
|
- apis/DirectConnect.api.json
|
@@ -305,6 +307,8 @@ files:
|
|
305
307
|
- apis/Kinesis.paginators.json
|
306
308
|
- apis/KMS.api.json
|
307
309
|
- apis/KMS.paginators.json
|
310
|
+
- apis/Lambda.api.json
|
311
|
+
- apis/Lambda.paginators.json
|
308
312
|
- apis/OpsWorks.api.json
|
309
313
|
- apis/OpsWorks.paginators.json
|
310
314
|
- apis/OpsWorks.resources.json
|