aws-sdk-core 2.9.1 → 2.9.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4f43e59d14841b0fa8333e34b5a5e583b0bf1ab8
4
- data.tar.gz: d90636ed39eba7db2978d8d0e61c85dd44c56700
3
+ metadata.gz: 8fa61173abbacfaa5c27ff73fec9b3d36066d241
4
+ data.tar.gz: 962f85a09bb28d89010fe7bcf0fdc7f596d3b186
5
5
  SHA512:
6
- metadata.gz: 42f096d40dfb0284481a29b1f1dc0cb1723f661d4e68ff9996709fd2c7d37e99a7a0c8ec2c25f0380fb6ea0c445186f431683a38448e84caea2f97fa9bc33ed3
7
- data.tar.gz: 329feca0b51d3e7ed63af8f0059b144721b31461f1e00b23722fc431b6c11b5d7ef4f2c47df84ac356344f5b57079401cc927a03e9d035498ceb4774a89a3381
6
+ metadata.gz: 62ee3e001c17132bbf139fe4add7d06418453bed79396ed671afe6e1bdd1259fa6573eb35ae96c914305fac6c568ca93fb27c26ac9039abaaeb8d1fc5ff2cb9f
7
+ data.tar.gz: 67faa203f0e9580c5d330f39e37a14a633bb4eb04f5508d3b9c16f03e5e8d5c222530ceb10f531ade6b4d60fb287d16949c0da9c88ece45fbb64dfcfc42881d1
@@ -11,6 +11,29 @@
11
11
  "uid":"runtime.lex-2016-11-28"
12
12
  },
13
13
  "operations":{
14
+ "PostContent":{
15
+ "name":"PostContent",
16
+ "http":{
17
+ "method":"POST",
18
+ "requestUri":"/bot/{botName}/alias/{botAlias}/user/{userId}/content"
19
+ },
20
+ "input":{"shape":"PostContentRequest"},
21
+ "output":{"shape":"PostContentResponse"},
22
+ "errors":[
23
+ {"shape":"NotFoundException"},
24
+ {"shape":"BadRequestException"},
25
+ {"shape":"LimitExceededException"},
26
+ {"shape":"InternalFailureException"},
27
+ {"shape":"ConflictException"},
28
+ {"shape":"UnsupportedMediaTypeException"},
29
+ {"shape":"NotAcceptableException"},
30
+ {"shape":"RequestTimeoutException"},
31
+ {"shape":"DependencyFailedException"},
32
+ {"shape":"BadGatewayException"},
33
+ {"shape":"LoopDetectedException"}
34
+ ],
35
+ "authtype":"v4-unsigned-body"
36
+ },
14
37
  "PostText":{
15
38
  "name":"PostText",
16
39
  "http":{
@@ -32,6 +55,7 @@
32
55
  }
33
56
  },
34
57
  "shapes":{
58
+ "Accept":{"type":"string"},
35
59
  "BadGatewayException":{
36
60
  "type":"structure",
37
61
  "members":{
@@ -48,6 +72,10 @@
48
72
  "error":{"httpStatusCode":400},
49
73
  "exception":true
50
74
  },
75
+ "BlobStream":{
76
+ "type":"blob",
77
+ "streaming":true
78
+ },
51
79
  "BotAlias":{"type":"string"},
52
80
  "BotName":{"type":"string"},
53
81
  "Button":{
@@ -113,6 +141,7 @@
113
141
  "buttons":{"shape":"listOfButtons"}
114
142
  }
115
143
  },
144
+ "HttpContentType":{"type":"string"},
116
145
  "IntentName":{"type":"string"},
117
146
  "InternalFailureException":{
118
147
  "type":"structure",
@@ -144,6 +173,14 @@
144
173
  "error":{"httpStatusCode":508},
145
174
  "exception":true
146
175
  },
176
+ "NotAcceptableException":{
177
+ "type":"structure",
178
+ "members":{
179
+ "message":{"shape":"String"}
180
+ },
181
+ "error":{"httpStatusCode":406},
182
+ "exception":true
183
+ },
147
184
  "NotFoundException":{
148
185
  "type":"structure",
149
186
  "members":{
@@ -152,6 +189,100 @@
152
189
  "error":{"httpStatusCode":404},
153
190
  "exception":true
154
191
  },
192
+ "PostContentRequest":{
193
+ "type":"structure",
194
+ "required":[
195
+ "botName",
196
+ "botAlias",
197
+ "userId",
198
+ "contentType",
199
+ "inputStream"
200
+ ],
201
+ "members":{
202
+ "botName":{
203
+ "shape":"BotName",
204
+ "location":"uri",
205
+ "locationName":"botName"
206
+ },
207
+ "botAlias":{
208
+ "shape":"BotAlias",
209
+ "location":"uri",
210
+ "locationName":"botAlias"
211
+ },
212
+ "userId":{
213
+ "shape":"UserId",
214
+ "location":"uri",
215
+ "locationName":"userId"
216
+ },
217
+ "sessionAttributes":{
218
+ "shape":"String",
219
+ "jsonvalue":true,
220
+ "location":"header",
221
+ "locationName":"x-amz-lex-session-attributes"
222
+ },
223
+ "contentType":{
224
+ "shape":"HttpContentType",
225
+ "location":"header",
226
+ "locationName":"Content-Type"
227
+ },
228
+ "accept":{
229
+ "shape":"Accept",
230
+ "location":"header",
231
+ "locationName":"Accept"
232
+ },
233
+ "inputStream":{"shape":"BlobStream"}
234
+ },
235
+ "payload":"inputStream"
236
+ },
237
+ "PostContentResponse":{
238
+ "type":"structure",
239
+ "members":{
240
+ "contentType":{
241
+ "shape":"HttpContentType",
242
+ "location":"header",
243
+ "locationName":"Content-Type"
244
+ },
245
+ "intentName":{
246
+ "shape":"IntentName",
247
+ "location":"header",
248
+ "locationName":"x-amz-lex-intent-name"
249
+ },
250
+ "slots":{
251
+ "shape":"String",
252
+ "jsonvalue":true,
253
+ "location":"header",
254
+ "locationName":"x-amz-lex-slots"
255
+ },
256
+ "sessionAttributes":{
257
+ "shape":"String",
258
+ "jsonvalue":true,
259
+ "location":"header",
260
+ "locationName":"x-amz-lex-session-attributes"
261
+ },
262
+ "message":{
263
+ "shape":"Text",
264
+ "location":"header",
265
+ "locationName":"x-amz-lex-message"
266
+ },
267
+ "dialogState":{
268
+ "shape":"DialogState",
269
+ "location":"header",
270
+ "locationName":"x-amz-lex-dialog-state"
271
+ },
272
+ "slotToElicit":{
273
+ "shape":"String",
274
+ "location":"header",
275
+ "locationName":"x-amz-lex-slot-to-elicit"
276
+ },
277
+ "inputTranscript":{
278
+ "shape":"String",
279
+ "location":"header",
280
+ "locationName":"x-amz-lex-input-transcript"
281
+ },
282
+ "audioStream":{"shape":"BlobStream"}
283
+ },
284
+ "payload":"audioStream"
285
+ },
155
286
  "PostTextRequest":{
156
287
  "type":"structure",
157
288
  "required":[
@@ -192,6 +323,14 @@
192
323
  "responseCard":{"shape":"ResponseCard"}
193
324
  }
194
325
  },
326
+ "RequestTimeoutException":{
327
+ "type":"structure",
328
+ "members":{
329
+ "message":{"shape":"String"}
330
+ },
331
+ "error":{"httpStatusCode":408},
332
+ "exception":true
333
+ },
195
334
  "ResponseCard":{
196
335
  "type":"structure",
197
336
  "members":{
@@ -221,9 +360,17 @@
221
360
  "max":1024,
222
361
  "min":1
223
362
  },
363
+ "UnsupportedMediaTypeException":{
364
+ "type":"structure",
365
+ "members":{
366
+ "message":{"shape":"String"}
367
+ },
368
+ "error":{"httpStatusCode":415},
369
+ "exception":true
370
+ },
224
371
  "UserId":{
225
372
  "type":"string",
226
- "max":50,
373
+ "max":100,
227
374
  "min":2,
228
375
  "pattern":"[0-9a-zA-Z._:-]+"
229
376
  },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.9.1'
2
+ VERSION = '2.9.2'
3
3
  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.9.1
4
+ version: 2.9.2
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: 2017-03-31 00:00:00.000000000 Z
11
+ date: 2017-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath