aws-sdk-core 2.1.28 → 2.1.29

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8d395aeaa27dae22f8ac7cd101b609f81bf42eae
4
- data.tar.gz: cc43658e6b582367a41390f4db8191acef71d3bf
3
+ metadata.gz: 7b3285759b9f60f4efe41f991e0dc9b767e6adfe
4
+ data.tar.gz: 8d6ff92b34178e9f07eacb4440f9af1cbbfd9c9d
5
5
  SHA512:
6
- metadata.gz: f28220b15f752e7801cc6866f8eef32de159c9ee83dc9e55f07d265f20d384d33ae115f742bb3ef27b7959be770a4de4f25c94232aa882fe7c6663491652d883
7
- data.tar.gz: d91b2ec5dec7403b24ab93032a36fa68a8cdbdc4af257c4efa5c573411b2a822fece796cddf54ef8c5223d9db79c1c2271e2f2558fc20d3bb3ab2f96a1f3de63
6
+ metadata.gz: 45e6cd0c163ae9e625bfd4a570a0695b700884959fa9514eb41e4a897fdb11aa04ff1186d016648817b546e69ffa4cb64f38c2dd07ea35f195ec238b8d5dd0c8
7
+ data.tar.gz: 8412e519150c3dc795f618c81429f01e05ae3d7cd20c67ed2a26dbf1123f478af3778263427eaceb0edb54403b3a944feb27dbfd26740f202d1652d26adf0aad
@@ -488,6 +488,10 @@
488
488
  {
489
489
  "shape":"ClusterNotFoundException",
490
490
  "exception":true
491
+ },
492
+ {
493
+ "shape":"ServiceNotFoundException",
494
+ "exception":true
491
495
  }
492
496
  ]
493
497
  },
@@ -748,6 +752,18 @@
748
752
  "FAILED"
749
753
  ]
750
754
  },
755
+ "Attribute":{
756
+ "type":"structure",
757
+ "required":["name"],
758
+ "members":{
759
+ "name":{"shape":"String"},
760
+ "value":{"shape":"String"}
761
+ }
762
+ },
763
+ "Attributes":{
764
+ "type":"list",
765
+ "member":{"shape":"Attribute"}
766
+ },
751
767
  "Boolean":{"type":"boolean"},
752
768
  "BoxedBoolean":{
753
769
  "type":"boolean",
@@ -824,7 +840,20 @@
824
840
  "command":{"shape":"StringList"},
825
841
  "environment":{"shape":"EnvironmentVariables"},
826
842
  "mountPoints":{"shape":"MountPointList"},
827
- "volumesFrom":{"shape":"VolumeFromList"}
843
+ "volumesFrom":{"shape":"VolumeFromList"},
844
+ "hostname":{"shape":"String"},
845
+ "user":{"shape":"String"},
846
+ "workingDirectory":{"shape":"String"},
847
+ "disableNetworking":{"shape":"BoxedBoolean"},
848
+ "privileged":{"shape":"BoxedBoolean"},
849
+ "readonlyRootFilesystem":{"shape":"BoxedBoolean"},
850
+ "dnsServers":{"shape":"StringList"},
851
+ "dnsSearchDomains":{"shape":"StringList"},
852
+ "extraHosts":{"shape":"HostEntryList"},
853
+ "dockerSecurityOptions":{"shape":"StringList"},
854
+ "dockerLabels":{"shape":"DockerLabelsMap"},
855
+ "ulimits":{"shape":"UlimitList"},
856
+ "logConfiguration":{"shape":"LogConfiguration"}
828
857
  }
829
858
  },
830
859
  "ContainerDefinitions":{
@@ -843,7 +872,8 @@
843
872
  "agentConnected":{"shape":"Boolean"},
844
873
  "runningTasksCount":{"shape":"Integer"},
845
874
  "pendingTasksCount":{"shape":"Integer"},
846
- "agentUpdateStatus":{"shape":"AgentUpdateStatus"}
875
+ "agentUpdateStatus":{"shape":"AgentUpdateStatus"},
876
+ "attributes":{"shape":"Attributes"}
847
877
  }
848
878
  },
849
879
  "ContainerInstances":{
@@ -1066,6 +1096,14 @@
1066
1096
  "telemetryEndpoint":{"shape":"String"}
1067
1097
  }
1068
1098
  },
1099
+ "DockerLabelsMap":{
1100
+ "type":"map",
1101
+ "key":{
1102
+ "shape":"String",
1103
+ "required":true
1104
+ },
1105
+ "value":{"shape":"String"}
1106
+ },
1069
1107
  "Double":{"type":"double"},
1070
1108
  "EnvironmentVariables":{
1071
1109
  "type":"list",
@@ -1082,6 +1120,21 @@
1082
1120
  "type":"list",
1083
1121
  "member":{"shape":"Failure"}
1084
1122
  },
1123
+ "HostEntry":{
1124
+ "type":"structure",
1125
+ "required":[
1126
+ "hostname",
1127
+ "ipAddress"
1128
+ ],
1129
+ "members":{
1130
+ "hostname":{"shape":"String"},
1131
+ "ipAddress":{"shape":"String"}
1132
+ }
1133
+ },
1134
+ "HostEntryList":{
1135
+ "type":"list",
1136
+ "member":{"shape":"HostEntry"}
1137
+ },
1085
1138
  "HostVolumeProperties":{
1086
1139
  "type":"structure",
1087
1140
  "members":{
@@ -1210,6 +1263,32 @@
1210
1263
  "type":"list",
1211
1264
  "member":{"shape":"LoadBalancer"}
1212
1265
  },
1266
+ "LogConfiguration":{
1267
+ "type":"structure",
1268
+ "required":["logDriver"],
1269
+ "members":{
1270
+ "logDriver":{"shape":"LogDriver"},
1271
+ "options":{"shape":"LogConfigurationOptionsMap"}
1272
+ }
1273
+ },
1274
+ "LogConfigurationOptionsMap":{
1275
+ "type":"map",
1276
+ "key":{
1277
+ "shape":"String",
1278
+ "required":true
1279
+ },
1280
+ "value":{"shape":"String"}
1281
+ },
1282
+ "LogDriver":{
1283
+ "type":"string",
1284
+ "enum":[
1285
+ "json-file",
1286
+ "syslog",
1287
+ "journald",
1288
+ "gelf",
1289
+ "fluentd"
1290
+ ]
1291
+ },
1213
1292
  "Long":{"type":"long"},
1214
1293
  "MissingVersionException":{
1215
1294
  "type":"structure",
@@ -1268,7 +1347,8 @@
1268
1347
  "instanceIdentityDocumentSignature":{"shape":"String"},
1269
1348
  "totalResources":{"shape":"Resources"},
1270
1349
  "versionInfo":{"shape":"VersionInfo"},
1271
- "containerInstanceArn":{"shape":"String"}
1350
+ "containerInstanceArn":{"shape":"String"},
1351
+ "attributes":{"shape":"Attributes"}
1272
1352
  }
1273
1353
  },
1274
1354
  "RegisterContainerInstanceResponse":{
@@ -1295,6 +1375,10 @@
1295
1375
  "taskDefinition":{"shape":"TaskDefinition"}
1296
1376
  }
1297
1377
  },
1378
+ "RequiresAttributes":{
1379
+ "type":"list",
1380
+ "member":{"shape":"Attribute"}
1381
+ },
1298
1382
  "Resource":{
1299
1383
  "type":"structure",
1300
1384
  "members":{
@@ -1483,7 +1567,8 @@
1483
1567
  "family":{"shape":"String"},
1484
1568
  "revision":{"shape":"Integer"},
1485
1569
  "volumes":{"shape":"VolumeList"},
1486
- "status":{"shape":"TaskDefinitionStatus"}
1570
+ "status":{"shape":"TaskDefinitionStatus"},
1571
+ "requiresAttributes":{"shape":"RequiresAttributes"}
1487
1572
  }
1488
1573
  },
1489
1574
  "TaskDefinitionStatus":{
@@ -1511,6 +1596,43 @@
1511
1596
  "udp"
1512
1597
  ]
1513
1598
  },
1599
+ "Ulimit":{
1600
+ "type":"structure",
1601
+ "required":[
1602
+ "name",
1603
+ "softLimit",
1604
+ "hardLimit"
1605
+ ],
1606
+ "members":{
1607
+ "name":{"shape":"UlimitName"},
1608
+ "softLimit":{"shape":"Integer"},
1609
+ "hardLimit":{"shape":"Integer"}
1610
+ }
1611
+ },
1612
+ "UlimitList":{
1613
+ "type":"list",
1614
+ "member":{"shape":"Ulimit"}
1615
+ },
1616
+ "UlimitName":{
1617
+ "type":"string",
1618
+ "enum":[
1619
+ "core",
1620
+ "cpu",
1621
+ "data",
1622
+ "fsize",
1623
+ "locks",
1624
+ "memlock",
1625
+ "msgqueue",
1626
+ "nice",
1627
+ "nofile",
1628
+ "nproc",
1629
+ "rss",
1630
+ "rtprio",
1631
+ "rttime",
1632
+ "sigpending",
1633
+ "stack"
1634
+ ]
1635
+ },
1514
1636
  "UpdateContainerAgentRequest":{
1515
1637
  "type":"structure",
1516
1638
  "required":["containerInstance"],
@@ -0,0 +1,386 @@
1
+ {
2
+ "version":"2.0",
3
+ "metadata":{
4
+ "apiVersion":"2015-05-28",
5
+ "endpointPrefix":"data.iot",
6
+ "serviceFullName":"AWS IoT Data Plane",
7
+ "signatureVersion":"v4",
8
+ "signingName":"iotdata",
9
+ "protocol":"rest-json"
10
+ },
11
+ "operations":{
12
+ "DeleteThingShadow":{
13
+ "name":"DeleteThingShadow",
14
+ "http":{
15
+ "method":"DELETE",
16
+ "requestUri":"/things/{thingName}/shadow"
17
+ },
18
+ "input":{"shape":"DeleteThingShadowRequest"},
19
+ "output":{"shape":"DeleteThingShadowResponse"},
20
+ "errors":[
21
+ {
22
+ "shape":"ResourceNotFoundException",
23
+ "error":{"httpStatusCode":404},
24
+ "exception":true
25
+ },
26
+ {
27
+ "shape":"InvalidRequestException",
28
+ "error":{"httpStatusCode":400},
29
+ "exception":true
30
+ },
31
+ {
32
+ "shape":"ThrottlingException",
33
+ "error":{"httpStatusCode":429},
34
+ "exception":true
35
+ },
36
+ {
37
+ "shape":"UnauthorizedException",
38
+ "error":{"httpStatusCode":401},
39
+ "exception":true
40
+ },
41
+ {
42
+ "shape":"ServiceUnavailableException",
43
+ "error":{"httpStatusCode":503},
44
+ "exception":true,
45
+ "fault":true
46
+ },
47
+ {
48
+ "shape":"InternalFailureException",
49
+ "error":{"httpStatusCode":500},
50
+ "exception":true,
51
+ "fault":true
52
+ },
53
+ {
54
+ "shape":"MethodNotAllowedException",
55
+ "error":{"httpStatusCode":405},
56
+ "exception":true
57
+ },
58
+ {
59
+ "shape":"UnsupportedDocumentEncodingException",
60
+ "error":{"httpStatusCode":415},
61
+ "exception":true
62
+ }
63
+ ]
64
+ },
65
+ "GetThingShadow":{
66
+ "name":"GetThingShadow",
67
+ "http":{
68
+ "method":"GET",
69
+ "requestUri":"/things/{thingName}/shadow"
70
+ },
71
+ "input":{"shape":"GetThingShadowRequest"},
72
+ "output":{"shape":"GetThingShadowResponse"},
73
+ "errors":[
74
+ {
75
+ "shape":"InvalidRequestException",
76
+ "error":{"httpStatusCode":400},
77
+ "exception":true
78
+ },
79
+ {
80
+ "shape":"ResourceNotFoundException",
81
+ "error":{"httpStatusCode":404},
82
+ "exception":true
83
+ },
84
+ {
85
+ "shape":"ThrottlingException",
86
+ "error":{"httpStatusCode":429},
87
+ "exception":true
88
+ },
89
+ {
90
+ "shape":"UnauthorizedException",
91
+ "error":{"httpStatusCode":401},
92
+ "exception":true
93
+ },
94
+ {
95
+ "shape":"ServiceUnavailableException",
96
+ "error":{"httpStatusCode":503},
97
+ "exception":true,
98
+ "fault":true
99
+ },
100
+ {
101
+ "shape":"InternalFailureException",
102
+ "error":{"httpStatusCode":500},
103
+ "exception":true,
104
+ "fault":true
105
+ },
106
+ {
107
+ "shape":"MethodNotAllowedException",
108
+ "error":{"httpStatusCode":405},
109
+ "exception":true
110
+ },
111
+ {
112
+ "shape":"UnsupportedDocumentEncodingException",
113
+ "error":{"httpStatusCode":415},
114
+ "exception":true
115
+ }
116
+ ]
117
+ },
118
+ "Publish":{
119
+ "name":"Publish",
120
+ "http":{
121
+ "method":"POST",
122
+ "requestUri":"/topics/{topic}"
123
+ },
124
+ "input":{"shape":"PublishRequest"},
125
+ "errors":[
126
+ {
127
+ "shape":"InternalFailureException",
128
+ "error":{"httpStatusCode":500},
129
+ "exception":true,
130
+ "fault":true
131
+ },
132
+ {
133
+ "shape":"InvalidRequestException",
134
+ "error":{"httpStatusCode":400},
135
+ "exception":true
136
+ },
137
+ {
138
+ "shape":"UnauthorizedException",
139
+ "error":{"httpStatusCode":401},
140
+ "exception":true
141
+ },
142
+ {
143
+ "shape":"MethodNotAllowedException",
144
+ "error":{"httpStatusCode":405},
145
+ "exception":true
146
+ }
147
+ ]
148
+ },
149
+ "UpdateThingShadow":{
150
+ "name":"UpdateThingShadow",
151
+ "http":{
152
+ "method":"POST",
153
+ "requestUri":"/things/{thingName}/shadow"
154
+ },
155
+ "input":{"shape":"UpdateThingShadowRequest"},
156
+ "output":{"shape":"UpdateThingShadowResponse"},
157
+ "errors":[
158
+ {
159
+ "shape":"ConflictException",
160
+ "error":{"httpStatusCode":409},
161
+ "exception":true
162
+ },
163
+ {
164
+ "shape":"RequestEntityTooLargeException",
165
+ "error":{"httpStatusCode":413},
166
+ "exception":true
167
+ },
168
+ {
169
+ "shape":"InvalidRequestException",
170
+ "error":{"httpStatusCode":400},
171
+ "exception":true
172
+ },
173
+ {
174
+ "shape":"ThrottlingException",
175
+ "error":{"httpStatusCode":429},
176
+ "exception":true
177
+ },
178
+ {
179
+ "shape":"UnauthorizedException",
180
+ "error":{"httpStatusCode":401},
181
+ "exception":true
182
+ },
183
+ {
184
+ "shape":"ServiceUnavailableException",
185
+ "error":{"httpStatusCode":503},
186
+ "exception":true,
187
+ "fault":true
188
+ },
189
+ {
190
+ "shape":"InternalFailureException",
191
+ "error":{"httpStatusCode":500},
192
+ "exception":true,
193
+ "fault":true
194
+ },
195
+ {
196
+ "shape":"MethodNotAllowedException",
197
+ "error":{"httpStatusCode":405},
198
+ "exception":true
199
+ },
200
+ {
201
+ "shape":"UnsupportedDocumentEncodingException",
202
+ "error":{"httpStatusCode":415},
203
+ "exception":true
204
+ }
205
+ ]
206
+ }
207
+ },
208
+ "shapes":{
209
+ "ConflictException":{
210
+ "type":"structure",
211
+ "members":{
212
+ "message":{"shape":"ErrorMessage"}
213
+ },
214
+ "error":{"httpStatusCode":409},
215
+ "exception":true
216
+ },
217
+ "DeleteThingShadowRequest":{
218
+ "type":"structure",
219
+ "required":["thingName"],
220
+ "members":{
221
+ "thingName":{
222
+ "shape":"ThingName",
223
+ "location":"uri",
224
+ "locationName":"thingName"
225
+ }
226
+ }
227
+ },
228
+ "DeleteThingShadowResponse":{
229
+ "type":"structure",
230
+ "required":["payload"],
231
+ "members":{
232
+ "payload":{"shape":"JsonDocument"}
233
+ },
234
+ "payload":"payload"
235
+ },
236
+ "ErrorMessage":{"type":"string"},
237
+ "GetThingShadowRequest":{
238
+ "type":"structure",
239
+ "required":["thingName"],
240
+ "members":{
241
+ "thingName":{
242
+ "shape":"ThingName",
243
+ "location":"uri",
244
+ "locationName":"thingName"
245
+ }
246
+ }
247
+ },
248
+ "GetThingShadowResponse":{
249
+ "type":"structure",
250
+ "members":{
251
+ "payload":{"shape":"JsonDocument"}
252
+ },
253
+ "payload":"payload"
254
+ },
255
+ "InternalFailureException":{
256
+ "type":"structure",
257
+ "members":{
258
+ "message":{"shape":"errorMessage"}
259
+ },
260
+ "error":{"httpStatusCode":500},
261
+ "exception":true,
262
+ "fault":true
263
+ },
264
+ "InvalidRequestException":{
265
+ "type":"structure",
266
+ "members":{
267
+ "message":{"shape":"errorMessage"}
268
+ },
269
+ "error":{"httpStatusCode":400},
270
+ "exception":true
271
+ },
272
+ "JsonDocument":{"type":"blob"},
273
+ "MethodNotAllowedException":{
274
+ "type":"structure",
275
+ "members":{
276
+ "message":{"shape":"ErrorMessage"}
277
+ },
278
+ "error":{"httpStatusCode":405},
279
+ "exception":true
280
+ },
281
+ "Payload":{"type":"blob"},
282
+ "PublishRequest":{
283
+ "type":"structure",
284
+ "members":{
285
+ "topic":{
286
+ "shape":"Topic",
287
+ "location":"uri",
288
+ "locationName":"topic"
289
+ },
290
+ "qos":{
291
+ "shape":"Qos",
292
+ "location":"querystring",
293
+ "locationName":"qos"
294
+ },
295
+ "payload":{"shape":"Payload"}
296
+ },
297
+ "required":["topic"],
298
+ "payload":"payload"
299
+ },
300
+ "Qos":{
301
+ "type":"integer",
302
+ "min":0,
303
+ "max":1
304
+ },
305
+ "RequestEntityTooLargeException":{
306
+ "type":"structure",
307
+ "members":{
308
+ "message":{"shape":"ErrorMessage"}
309
+ },
310
+ "error":{"httpStatusCode":413},
311
+ "exception":true
312
+ },
313
+ "ResourceNotFoundException":{
314
+ "type":"structure",
315
+ "members":{
316
+ "message":{"shape":"errorMessage"}
317
+ },
318
+ "error":{"httpStatusCode":404},
319
+ "exception":true
320
+ },
321
+ "ServiceUnavailableException":{
322
+ "type":"structure",
323
+ "members":{
324
+ "message":{"shape":"errorMessage"}
325
+ },
326
+ "error":{"httpStatusCode":503},
327
+ "exception":true,
328
+ "fault":true
329
+ },
330
+ "ThingName":{
331
+ "type":"string",
332
+ "min":1,
333
+ "max":128,
334
+ "pattern":"[a-zA-Z0-9_-]+"
335
+ },
336
+ "ThrottlingException":{
337
+ "type":"structure",
338
+ "members":{
339
+ "message":{"shape":"errorMessage"}
340
+ },
341
+ "error":{"httpStatusCode":429},
342
+ "exception":true
343
+ },
344
+ "Topic":{"type":"string"},
345
+ "UnauthorizedException":{
346
+ "type":"structure",
347
+ "members":{
348
+ "message":{"shape":"errorMessage"}
349
+ },
350
+ "error":{"httpStatusCode":401},
351
+ "exception":true
352
+ },
353
+ "UnsupportedDocumentEncodingException":{
354
+ "type":"structure",
355
+ "members":{
356
+ "message":{"shape":"errorMessage"}
357
+ },
358
+ "error":{"httpStatusCode":415},
359
+ "exception":true
360
+ },
361
+ "UpdateThingShadowRequest":{
362
+ "type":"structure",
363
+ "required":[
364
+ "thingName",
365
+ "payload"
366
+ ],
367
+ "members":{
368
+ "thingName":{
369
+ "shape":"ThingName",
370
+ "location":"uri",
371
+ "locationName":"thingName"
372
+ },
373
+ "payload":{"shape":"JsonDocument"}
374
+ },
375
+ "payload":"payload"
376
+ },
377
+ "UpdateThingShadowResponse":{
378
+ "type":"structure",
379
+ "members":{
380
+ "payload":{"shape":"JsonDocument"}
381
+ },
382
+ "payload":"payload"
383
+ },
384
+ "errorMessage":{"type":"string"}
385
+ }
386
+ }