aws-sdk-core 2.10.89 → 2.10.90

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,16 @@
1
+ {
2
+ "pagination": {
3
+ "ListChannels": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults",
7
+ "result_key": "Channels"
8
+ },
9
+ "ListOriginEndpoints": {
10
+ "input_token": "NextToken",
11
+ "output_token": "NextToken",
12
+ "limit_key": "MaxResults",
13
+ "result_key": "OriginEndpoints"
14
+ }
15
+ }
16
+ }
@@ -0,0 +1,392 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2017-09-01",
5
+ "endpointPrefix":"data.mediastore",
6
+ "protocol":"rest-json",
7
+ "serviceAbbreviation":"MediaStore Data",
8
+ "serviceFullName":"AWS Elemental MediaStore Data Plane",
9
+ "serviceId":"MediaStore Data",
10
+ "signatureVersion":"v4",
11
+ "signingName":"mediastore",
12
+ "uid":"mediastore-data-2017-09-01"
13
+ },
14
+ "operations":{
15
+ "DeleteObject":{
16
+ "name":"DeleteObject",
17
+ "http":{
18
+ "method":"DELETE",
19
+ "requestUri":"/{Path+}"
20
+ },
21
+ "input":{"shape":"DeleteObjectRequest"},
22
+ "output":{"shape":"DeleteObjectResponse"},
23
+ "errors":[
24
+ {"shape":"ContainerNotFoundException"},
25
+ {"shape":"ObjectNotFoundException"},
26
+ {"shape":"InternalServerError"}
27
+ ]
28
+ },
29
+ "DescribeObject":{
30
+ "name":"DescribeObject",
31
+ "http":{
32
+ "method":"HEAD",
33
+ "requestUri":"/{Path+}"
34
+ },
35
+ "input":{"shape":"DescribeObjectRequest"},
36
+ "output":{"shape":"DescribeObjectResponse"},
37
+ "errors":[
38
+ {"shape":"ContainerNotFoundException"},
39
+ {"shape":"ObjectNotFoundException"},
40
+ {"shape":"InternalServerError"}
41
+ ]
42
+ },
43
+ "GetObject":{
44
+ "name":"GetObject",
45
+ "http":{
46
+ "method":"GET",
47
+ "requestUri":"/{Path+}"
48
+ },
49
+ "input":{"shape":"GetObjectRequest"},
50
+ "output":{"shape":"GetObjectResponse"},
51
+ "errors":[
52
+ {"shape":"ContainerNotFoundException"},
53
+ {"shape":"ObjectNotFoundException"},
54
+ {"shape":"RequestedRangeNotSatisfiableException"},
55
+ {"shape":"InternalServerError"}
56
+ ]
57
+ },
58
+ "ListItems":{
59
+ "name":"ListItems",
60
+ "http":{
61
+ "method":"GET",
62
+ "requestUri":"/"
63
+ },
64
+ "input":{"shape":"ListItemsRequest"},
65
+ "output":{"shape":"ListItemsResponse"},
66
+ "errors":[
67
+ {"shape":"ContainerNotFoundException"},
68
+ {"shape":"InternalServerError"}
69
+ ]
70
+ },
71
+ "PutObject":{
72
+ "name":"PutObject",
73
+ "http":{
74
+ "method":"PUT",
75
+ "requestUri":"/{Path+}"
76
+ },
77
+ "input":{"shape":"PutObjectRequest"},
78
+ "output":{"shape":"PutObjectResponse"},
79
+ "errors":[
80
+ {"shape":"ContainerNotFoundException"},
81
+ {"shape":"InternalServerError"}
82
+ ],
83
+ "authtype":"v4-unsigned-body"
84
+ }
85
+ },
86
+ "shapes":{
87
+ "ContainerNotFoundException":{
88
+ "type":"structure",
89
+ "members":{
90
+ "Message":{"shape":"ErrorMessage"}
91
+ },
92
+ "error":{"httpStatusCode":404},
93
+ "exception":true
94
+ },
95
+ "ContentRangePattern":{
96
+ "type":"string",
97
+ "pattern":"^bytes=\\d+\\-\\d+/\\d+$"
98
+ },
99
+ "ContentType":{
100
+ "type":"string",
101
+ "pattern":"^[\\w\\-\\/\\.]{1,255}$"
102
+ },
103
+ "DeleteObjectRequest":{
104
+ "type":"structure",
105
+ "required":["Path"],
106
+ "members":{
107
+ "Path":{
108
+ "shape":"PathNaming",
109
+ "location":"uri",
110
+ "locationName":"Path"
111
+ }
112
+ }
113
+ },
114
+ "DeleteObjectResponse":{
115
+ "type":"structure",
116
+ "members":{
117
+ }
118
+ },
119
+ "DescribeObjectRequest":{
120
+ "type":"structure",
121
+ "required":["Path"],
122
+ "members":{
123
+ "Path":{
124
+ "shape":"PathNaming",
125
+ "location":"uri",
126
+ "locationName":"Path"
127
+ }
128
+ }
129
+ },
130
+ "DescribeObjectResponse":{
131
+ "type":"structure",
132
+ "members":{
133
+ "ETag":{
134
+ "shape":"ETag",
135
+ "location":"header",
136
+ "locationName":"ETag"
137
+ },
138
+ "ContentType":{
139
+ "shape":"ContentType",
140
+ "location":"header",
141
+ "locationName":"Content-Type"
142
+ },
143
+ "ContentLength":{
144
+ "shape":"NonNegativeLong",
145
+ "location":"header",
146
+ "locationName":"Content-Length"
147
+ },
148
+ "CacheControl":{
149
+ "shape":"StringPrimitive",
150
+ "location":"header",
151
+ "locationName":"Cache-Control"
152
+ },
153
+ "LastModified":{
154
+ "shape":"TimeStamp",
155
+ "location":"header",
156
+ "locationName":"Last-Modified"
157
+ }
158
+ }
159
+ },
160
+ "ETag":{
161
+ "type":"string",
162
+ "max":64,
163
+ "min":1,
164
+ "pattern":"[0-9A-Fa-f]+"
165
+ },
166
+ "ErrorMessage":{
167
+ "type":"string",
168
+ "max":255,
169
+ "min":1,
170
+ "pattern":"[ \\w:\\.\\?-]+"
171
+ },
172
+ "GetObjectRequest":{
173
+ "type":"structure",
174
+ "required":["Path"],
175
+ "members":{
176
+ "Path":{
177
+ "shape":"PathNaming",
178
+ "location":"uri",
179
+ "locationName":"Path"
180
+ },
181
+ "Range":{
182
+ "shape":"RangePattern",
183
+ "location":"header",
184
+ "locationName":"Range"
185
+ }
186
+ }
187
+ },
188
+ "GetObjectResponse":{
189
+ "type":"structure",
190
+ "required":["StatusCode"],
191
+ "members":{
192
+ "Body":{"shape":"PayloadBlob"},
193
+ "CacheControl":{
194
+ "shape":"StringPrimitive",
195
+ "location":"header",
196
+ "locationName":"Cache-Control"
197
+ },
198
+ "ContentRange":{
199
+ "shape":"ContentRangePattern",
200
+ "location":"header",
201
+ "locationName":"Content-Range"
202
+ },
203
+ "ContentLength":{
204
+ "shape":"NonNegativeLong",
205
+ "location":"header",
206
+ "locationName":"Content-Length"
207
+ },
208
+ "ContentType":{
209
+ "shape":"ContentType",
210
+ "location":"header",
211
+ "locationName":"Content-Type"
212
+ },
213
+ "ETag":{
214
+ "shape":"ETag",
215
+ "location":"header",
216
+ "locationName":"ETag"
217
+ },
218
+ "LastModified":{
219
+ "shape":"TimeStamp",
220
+ "location":"header",
221
+ "locationName":"Last-Modified"
222
+ },
223
+ "StatusCode":{
224
+ "shape":"statusCode",
225
+ "location":"statusCode"
226
+ }
227
+ },
228
+ "payload":"Body"
229
+ },
230
+ "InternalServerError":{
231
+ "type":"structure",
232
+ "members":{
233
+ "Message":{"shape":"ErrorMessage"}
234
+ },
235
+ "exception":true,
236
+ "fault":true
237
+ },
238
+ "Item":{
239
+ "type":"structure",
240
+ "members":{
241
+ "Name":{"shape":"ItemName"},
242
+ "Type":{"shape":"ItemType"},
243
+ "ETag":{"shape":"ETag"},
244
+ "LastModified":{"shape":"TimeStamp"},
245
+ "ContentType":{"shape":"ContentType"},
246
+ "ContentLength":{"shape":"NonNegativeLong"}
247
+ }
248
+ },
249
+ "ItemList":{
250
+ "type":"list",
251
+ "member":{"shape":"Item"}
252
+ },
253
+ "ItemName":{
254
+ "type":"string",
255
+ "pattern":"[A-Za-z0-9_\\.\\-\\~]+"
256
+ },
257
+ "ItemType":{
258
+ "type":"string",
259
+ "enum":[
260
+ "OBJECT",
261
+ "FOLDER"
262
+ ]
263
+ },
264
+ "ListItemsRequest":{
265
+ "type":"structure",
266
+ "members":{
267
+ "Path":{
268
+ "shape":"ListPathNaming",
269
+ "location":"querystring",
270
+ "locationName":"Path"
271
+ },
272
+ "MaxResults":{
273
+ "shape":"ListLimit",
274
+ "location":"querystring",
275
+ "locationName":"MaxResults"
276
+ },
277
+ "NextToken":{
278
+ "shape":"PaginationToken",
279
+ "location":"querystring",
280
+ "locationName":"NextToken"
281
+ }
282
+ }
283
+ },
284
+ "ListItemsResponse":{
285
+ "type":"structure",
286
+ "members":{
287
+ "Items":{"shape":"ItemList"},
288
+ "NextToken":{"shape":"PaginationToken"}
289
+ }
290
+ },
291
+ "ListLimit":{
292
+ "type":"integer",
293
+ "max":1000,
294
+ "min":1
295
+ },
296
+ "ListPathNaming":{
297
+ "type":"string",
298
+ "max":900,
299
+ "min":0,
300
+ "pattern":"/?(?:[A-Za-z0-9_\\.\\-\\~]+/){0,10}(?:[A-Za-z0-9_\\.\\-\\~]+)?/?"
301
+ },
302
+ "NonNegativeLong":{
303
+ "type":"long",
304
+ "min":0
305
+ },
306
+ "ObjectNotFoundException":{
307
+ "type":"structure",
308
+ "members":{
309
+ "Message":{"shape":"ErrorMessage"}
310
+ },
311
+ "error":{"httpStatusCode":404},
312
+ "exception":true
313
+ },
314
+ "PaginationToken":{"type":"string"},
315
+ "PathNaming":{
316
+ "type":"string",
317
+ "max":900,
318
+ "min":1,
319
+ "pattern":"(?:[A-Za-z0-9_\\.\\-\\~]+/){0,10}[A-Za-z0-9_\\.\\-\\~]+"
320
+ },
321
+ "PayloadBlob":{
322
+ "type":"blob",
323
+ "streaming":true
324
+ },
325
+ "PutObjectRequest":{
326
+ "type":"structure",
327
+ "required":[
328
+ "Body",
329
+ "Path"
330
+ ],
331
+ "members":{
332
+ "Body":{"shape":"PayloadBlob"},
333
+ "Path":{
334
+ "shape":"PathNaming",
335
+ "location":"uri",
336
+ "locationName":"Path"
337
+ },
338
+ "ContentType":{
339
+ "shape":"ContentType",
340
+ "location":"header",
341
+ "locationName":"Content-Type"
342
+ },
343
+ "CacheControl":{
344
+ "shape":"StringPrimitive",
345
+ "location":"header",
346
+ "locationName":"Cache-Control"
347
+ },
348
+ "StorageClass":{
349
+ "shape":"StorageClass",
350
+ "location":"header",
351
+ "locationName":"x-amz-storage-class"
352
+ }
353
+ },
354
+ "payload":"Body"
355
+ },
356
+ "PutObjectResponse":{
357
+ "type":"structure",
358
+ "members":{
359
+ "ContentSHA256":{"shape":"SHA256Hash"},
360
+ "ETag":{"shape":"ETag"},
361
+ "StorageClass":{"shape":"StorageClass"}
362
+ }
363
+ },
364
+ "RangePattern":{
365
+ "type":"string",
366
+ "pattern":"^bytes=(?:\\d+\\-\\d*|\\d*\\-\\d+)$"
367
+ },
368
+ "RequestedRangeNotSatisfiableException":{
369
+ "type":"structure",
370
+ "members":{
371
+ "Message":{"shape":"ErrorMessage"}
372
+ },
373
+ "error":{"httpStatusCode":416},
374
+ "exception":true
375
+ },
376
+ "SHA256Hash":{
377
+ "type":"string",
378
+ "max":64,
379
+ "min":64,
380
+ "pattern":"[0-9A-Fa-f]{64}"
381
+ },
382
+ "StorageClass":{
383
+ "type":"string",
384
+ "enum":["TEMPORAL"],
385
+ "max":16,
386
+ "min":1
387
+ },
388
+ "StringPrimitive":{"type":"string"},
389
+ "TimeStamp":{"type":"timestamp"},
390
+ "statusCode":{"type":"integer"}
391
+ }
392
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -0,0 +1,313 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2017-09-01",
5
+ "endpointPrefix":"mediastore",
6
+ "jsonVersion":"1.1",
7
+ "protocol":"json",
8
+ "serviceAbbreviation":"MediaStore",
9
+ "serviceFullName":"AWS Elemental MediaStore",
10
+ "serviceId":"MediaStore",
11
+ "signatureVersion":"v4",
12
+ "signingName":"mediastore",
13
+ "targetPrefix":"MediaStore_20170901",
14
+ "uid":"mediastore-2017-09-01"
15
+ },
16
+ "operations":{
17
+ "CreateContainer":{
18
+ "name":"CreateContainer",
19
+ "http":{
20
+ "method":"POST",
21
+ "requestUri":"/"
22
+ },
23
+ "input":{"shape":"CreateContainerInput"},
24
+ "output":{"shape":"CreateContainerOutput"},
25
+ "errors":[
26
+ {"shape":"ContainerInUseException"},
27
+ {"shape":"LimitExceededException"},
28
+ {"shape":"InternalServerError"}
29
+ ]
30
+ },
31
+ "DeleteContainer":{
32
+ "name":"DeleteContainer",
33
+ "http":{
34
+ "method":"POST",
35
+ "requestUri":"/"
36
+ },
37
+ "input":{"shape":"DeleteContainerInput"},
38
+ "output":{"shape":"DeleteContainerOutput"},
39
+ "errors":[
40
+ {"shape":"ContainerInUseException"},
41
+ {"shape":"ContainerNotFoundException"},
42
+ {"shape":"InternalServerError"}
43
+ ]
44
+ },
45
+ "DeleteContainerPolicy":{
46
+ "name":"DeleteContainerPolicy",
47
+ "http":{
48
+ "method":"POST",
49
+ "requestUri":"/"
50
+ },
51
+ "input":{"shape":"DeleteContainerPolicyInput"},
52
+ "output":{"shape":"DeleteContainerPolicyOutput"},
53
+ "errors":[
54
+ {"shape":"ContainerInUseException"},
55
+ {"shape":"ContainerNotFoundException"},
56
+ {"shape":"PolicyNotFoundException"},
57
+ {"shape":"InternalServerError"}
58
+ ]
59
+ },
60
+ "DescribeContainer":{
61
+ "name":"DescribeContainer",
62
+ "http":{
63
+ "method":"POST",
64
+ "requestUri":"/"
65
+ },
66
+ "input":{"shape":"DescribeContainerInput"},
67
+ "output":{"shape":"DescribeContainerOutput"},
68
+ "errors":[
69
+ {"shape":"ContainerNotFoundException"},
70
+ {"shape":"InternalServerError"}
71
+ ]
72
+ },
73
+ "GetContainerPolicy":{
74
+ "name":"GetContainerPolicy",
75
+ "http":{
76
+ "method":"POST",
77
+ "requestUri":"/"
78
+ },
79
+ "input":{"shape":"GetContainerPolicyInput"},
80
+ "output":{"shape":"GetContainerPolicyOutput"},
81
+ "errors":[
82
+ {"shape":"ContainerInUseException"},
83
+ {"shape":"ContainerNotFoundException"},
84
+ {"shape":"PolicyNotFoundException"},
85
+ {"shape":"InternalServerError"}
86
+ ]
87
+ },
88
+ "ListContainers":{
89
+ "name":"ListContainers",
90
+ "http":{
91
+ "method":"POST",
92
+ "requestUri":"/"
93
+ },
94
+ "input":{"shape":"ListContainersInput"},
95
+ "output":{"shape":"ListContainersOutput"},
96
+ "errors":[
97
+ {"shape":"InternalServerError"}
98
+ ]
99
+ },
100
+ "PutContainerPolicy":{
101
+ "name":"PutContainerPolicy",
102
+ "http":{
103
+ "method":"POST",
104
+ "requestUri":"/"
105
+ },
106
+ "input":{"shape":"PutContainerPolicyInput"},
107
+ "output":{"shape":"PutContainerPolicyOutput"},
108
+ "errors":[
109
+ {"shape":"ContainerNotFoundException"},
110
+ {"shape":"ContainerInUseException"},
111
+ {"shape":"InternalServerError"}
112
+ ]
113
+ }
114
+ },
115
+ "shapes":{
116
+ "Container":{
117
+ "type":"structure",
118
+ "members":{
119
+ "Endpoint":{"shape":"Endpoint"},
120
+ "CreationTime":{"shape":"TimeStamp"},
121
+ "ARN":{"shape":"ContainerARN"},
122
+ "Name":{"shape":"ContainerName"},
123
+ "Status":{"shape":"ContainerStatus"}
124
+ }
125
+ },
126
+ "ContainerARN":{
127
+ "type":"string",
128
+ "max":1024,
129
+ "min":1,
130
+ "pattern":"arn:aws:mediastore:[a-z]+-[a-z]+-\\d:\\d{12}:container/\\w{1,255}"
131
+ },
132
+ "ContainerInUseException":{
133
+ "type":"structure",
134
+ "members":{
135
+ "Message":{"shape":"ErrorMessage"}
136
+ },
137
+ "exception":true
138
+ },
139
+ "ContainerList":{
140
+ "type":"list",
141
+ "member":{"shape":"Container"}
142
+ },
143
+ "ContainerListLimit":{
144
+ "type":"integer",
145
+ "max":100,
146
+ "min":1
147
+ },
148
+ "ContainerName":{
149
+ "type":"string",
150
+ "max":255,
151
+ "min":1,
152
+ "pattern":"\\w+"
153
+ },
154
+ "ContainerNotFoundException":{
155
+ "type":"structure",
156
+ "members":{
157
+ "Message":{"shape":"ErrorMessage"}
158
+ },
159
+ "exception":true
160
+ },
161
+ "ContainerPolicy":{
162
+ "type":"string",
163
+ "max":8192,
164
+ "min":1,
165
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u00FF]+"
166
+ },
167
+ "ContainerStatus":{
168
+ "type":"string",
169
+ "enum":[
170
+ "ACTIVE",
171
+ "CREATING",
172
+ "DELETING"
173
+ ],
174
+ "max":16,
175
+ "min":1
176
+ },
177
+ "CreateContainerInput":{
178
+ "type":"structure",
179
+ "required":["ContainerName"],
180
+ "members":{
181
+ "ContainerName":{"shape":"ContainerName"}
182
+ }
183
+ },
184
+ "CreateContainerOutput":{
185
+ "type":"structure",
186
+ "required":["Container"],
187
+ "members":{
188
+ "Container":{"shape":"Container"}
189
+ }
190
+ },
191
+ "DeleteContainerInput":{
192
+ "type":"structure",
193
+ "required":["ContainerName"],
194
+ "members":{
195
+ "ContainerName":{"shape":"ContainerName"}
196
+ }
197
+ },
198
+ "DeleteContainerOutput":{
199
+ "type":"structure",
200
+ "members":{
201
+ }
202
+ },
203
+ "DeleteContainerPolicyInput":{
204
+ "type":"structure",
205
+ "required":["ContainerName"],
206
+ "members":{
207
+ "ContainerName":{"shape":"ContainerName"}
208
+ }
209
+ },
210
+ "DeleteContainerPolicyOutput":{
211
+ "type":"structure",
212
+ "members":{
213
+ }
214
+ },
215
+ "DescribeContainerInput":{
216
+ "type":"structure",
217
+ "members":{
218
+ "ContainerName":{"shape":"ContainerName"}
219
+ }
220
+ },
221
+ "DescribeContainerOutput":{
222
+ "type":"structure",
223
+ "members":{
224
+ "Container":{"shape":"Container"}
225
+ }
226
+ },
227
+ "Endpoint":{
228
+ "type":"string",
229
+ "max":255,
230
+ "min":1
231
+ },
232
+ "ErrorMessage":{
233
+ "type":"string",
234
+ "max":255,
235
+ "min":1,
236
+ "pattern":"[ \\w:\\.\\?-]+"
237
+ },
238
+ "GetContainerPolicyInput":{
239
+ "type":"structure",
240
+ "required":["ContainerName"],
241
+ "members":{
242
+ "ContainerName":{"shape":"ContainerName"}
243
+ }
244
+ },
245
+ "GetContainerPolicyOutput":{
246
+ "type":"structure",
247
+ "required":["Policy"],
248
+ "members":{
249
+ "Policy":{"shape":"ContainerPolicy"}
250
+ }
251
+ },
252
+ "InternalServerError":{
253
+ "type":"structure",
254
+ "members":{
255
+ "Message":{"shape":"ErrorMessage"}
256
+ },
257
+ "exception":true,
258
+ "fault":true
259
+ },
260
+ "LimitExceededException":{
261
+ "type":"structure",
262
+ "members":{
263
+ "Message":{"shape":"ErrorMessage"}
264
+ },
265
+ "exception":true
266
+ },
267
+ "ListContainersInput":{
268
+ "type":"structure",
269
+ "members":{
270
+ "NextToken":{"shape":"PaginationToken"},
271
+ "MaxResults":{"shape":"ContainerListLimit"}
272
+ }
273
+ },
274
+ "ListContainersOutput":{
275
+ "type":"structure",
276
+ "required":["Containers"],
277
+ "members":{
278
+ "Containers":{"shape":"ContainerList"},
279
+ "NextToken":{"shape":"PaginationToken"}
280
+ }
281
+ },
282
+ "PaginationToken":{
283
+ "type":"string",
284
+ "max":255,
285
+ "min":1,
286
+ "pattern":"[0-9A-Za-z=/+]+"
287
+ },
288
+ "PolicyNotFoundException":{
289
+ "type":"structure",
290
+ "members":{
291
+ "Message":{"shape":"ErrorMessage"}
292
+ },
293
+ "exception":true
294
+ },
295
+ "PutContainerPolicyInput":{
296
+ "type":"structure",
297
+ "required":[
298
+ "ContainerName",
299
+ "Policy"
300
+ ],
301
+ "members":{
302
+ "ContainerName":{"shape":"ContainerName"},
303
+ "Policy":{"shape":"ContainerPolicy"}
304
+ }
305
+ },
306
+ "PutContainerPolicyOutput":{
307
+ "type":"structure",
308
+ "members":{
309
+ }
310
+ },
311
+ "TimeStamp":{"type":"timestamp"}
312
+ }
313
+ }