aws-sdk-core 2.6.29 → 2.6.30

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "pagination": {
3
+ "ListCollections" : {
4
+ "input_token" : "NextToken",
5
+ "output_token" : "NextToken",
6
+ "limit_key" : "MaxResults",
7
+ "result_key" : "CollectionIds"
8
+ },
9
+ "ListFaces": {
10
+ "input_token" : "NextToken",
11
+ "output_token" : "NextToken",
12
+ "limit_key" : "MaxResults",
13
+ "result_key" : "Faces"
14
+ }
15
+ }
16
+ }
@@ -8,9 +8,24 @@
8
8
  "serviceAbbreviation":"Amazon Snowball",
9
9
  "serviceFullName":"Amazon Import/Export Snowball",
10
10
  "signatureVersion":"v4",
11
- "targetPrefix":"AWSIESnowballJobManagementService"
11
+ "targetPrefix":"AWSIESnowballJobManagementService",
12
+ "uid":"snowball-2016-06-30"
12
13
  },
13
14
  "operations":{
15
+ "CancelCluster":{
16
+ "name":"CancelCluster",
17
+ "http":{
18
+ "method":"POST",
19
+ "requestUri":"/"
20
+ },
21
+ "input":{"shape":"CancelClusterRequest"},
22
+ "output":{"shape":"CancelClusterResult"},
23
+ "errors":[
24
+ {"shape":"KMSRequestFailedException"},
25
+ {"shape":"InvalidJobStateException"},
26
+ {"shape":"InvalidResourceException"}
27
+ ]
28
+ },
14
29
  "CancelJob":{
15
30
  "name":"CancelJob",
16
31
  "http":{
@@ -38,6 +53,20 @@
38
53
  {"shape":"UnsupportedAddressException"}
39
54
  ]
40
55
  },
56
+ "CreateCluster":{
57
+ "name":"CreateCluster",
58
+ "http":{
59
+ "method":"POST",
60
+ "requestUri":"/"
61
+ },
62
+ "input":{"shape":"CreateClusterRequest"},
63
+ "output":{"shape":"CreateClusterResult"},
64
+ "errors":[
65
+ {"shape":"InvalidResourceException"},
66
+ {"shape":"KMSRequestFailedException"},
67
+ {"shape":"InvalidInputCombinationException"}
68
+ ]
69
+ },
41
70
  "CreateJob":{
42
71
  "name":"CreateJob",
43
72
  "http":{
@@ -48,7 +77,9 @@
48
77
  "output":{"shape":"CreateJobResult"},
49
78
  "errors":[
50
79
  {"shape":"InvalidResourceException"},
51
- {"shape":"KMSRequestFailedException"}
80
+ {"shape":"KMSRequestFailedException"},
81
+ {"shape":"InvalidInputCombinationException"},
82
+ {"shape":"ClusterLimitExceededException"}
52
83
  ]
53
84
  },
54
85
  "DescribeAddress":{
@@ -75,6 +106,18 @@
75
106
  {"shape":"InvalidResourceException"}
76
107
  ]
77
108
  },
109
+ "DescribeCluster":{
110
+ "name":"DescribeCluster",
111
+ "http":{
112
+ "method":"POST",
113
+ "requestUri":"/"
114
+ },
115
+ "input":{"shape":"DescribeClusterRequest"},
116
+ "output":{"shape":"DescribeClusterResult"},
117
+ "errors":[
118
+ {"shape":"InvalidResourceException"}
119
+ ]
120
+ },
78
121
  "DescribeJob":{
79
122
  "name":"DescribeJob",
80
123
  "http":{
@@ -122,6 +165,27 @@
122
165
  "input":{"shape":"GetSnowballUsageRequest"},
123
166
  "output":{"shape":"GetSnowballUsageResult"}
124
167
  },
168
+ "ListClusterJobs":{
169
+ "name":"ListClusterJobs",
170
+ "http":{
171
+ "method":"POST",
172
+ "requestUri":"/"
173
+ },
174
+ "input":{"shape":"ListClusterJobsRequest"},
175
+ "output":{"shape":"ListClusterJobsResult"},
176
+ "errors":[
177
+ {"shape":"InvalidResourceException"}
178
+ ]
179
+ },
180
+ "ListClusters":{
181
+ "name":"ListClusters",
182
+ "http":{
183
+ "method":"POST",
184
+ "requestUri":"/"
185
+ },
186
+ "input":{"shape":"ListClustersRequest"},
187
+ "output":{"shape":"ListClustersResult"}
188
+ },
125
189
  "ListJobs":{
126
190
  "name":"ListJobs",
127
191
  "http":{
@@ -131,6 +195,21 @@
131
195
  "input":{"shape":"ListJobsRequest"},
132
196
  "output":{"shape":"ListJobsResult"}
133
197
  },
198
+ "UpdateCluster":{
199
+ "name":"UpdateCluster",
200
+ "http":{
201
+ "method":"POST",
202
+ "requestUri":"/"
203
+ },
204
+ "input":{"shape":"UpdateClusterRequest"},
205
+ "output":{"shape":"UpdateClusterResult"},
206
+ "errors":[
207
+ {"shape":"InvalidResourceException"},
208
+ {"shape":"InvalidJobStateException"},
209
+ {"shape":"KMSRequestFailedException"},
210
+ {"shape":"InvalidInputCombinationException"}
211
+ ]
212
+ },
134
213
  "UpdateJob":{
135
214
  "name":"UpdateJob",
136
215
  "http":{
@@ -142,7 +221,9 @@
142
221
  "errors":[
143
222
  {"shape":"InvalidResourceException"},
144
223
  {"shape":"InvalidJobStateException"},
145
- {"shape":"KMSRequestFailedException"}
224
+ {"shape":"KMSRequestFailedException"},
225
+ {"shape":"InvalidInputCombinationException"},
226
+ {"shape":"ClusterLimitExceededException"}
146
227
  ]
147
228
  }
148
229
  },
@@ -176,6 +257,18 @@
176
257
  "member":{"shape":"Address"}
177
258
  },
178
259
  "Boolean":{"type":"boolean"},
260
+ "CancelClusterRequest":{
261
+ "type":"structure",
262
+ "required":["ClusterId"],
263
+ "members":{
264
+ "ClusterId":{"shape":"ClusterId"}
265
+ }
266
+ },
267
+ "CancelClusterResult":{
268
+ "type":"structure",
269
+ "members":{
270
+ }
271
+ },
179
272
  "CancelJobRequest":{
180
273
  "type":"structure",
181
274
  "required":["JobId"],
@@ -188,6 +281,59 @@
188
281
  "members":{
189
282
  }
190
283
  },
284
+ "ClusterId":{
285
+ "type":"string",
286
+ "max":39,
287
+ "min":39,
288
+ "pattern":"CID[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}"
289
+ },
290
+ "ClusterLimitExceededException":{
291
+ "type":"structure",
292
+ "members":{
293
+ "Message":{"shape":"String"}
294
+ },
295
+ "exception":true
296
+ },
297
+ "ClusterListEntry":{
298
+ "type":"structure",
299
+ "members":{
300
+ "ClusterId":{"shape":"String"},
301
+ "ClusterState":{"shape":"ClusterState"},
302
+ "CreationDate":{"shape":"Timestamp"},
303
+ "Description":{"shape":"String"}
304
+ }
305
+ },
306
+ "ClusterListEntryList":{
307
+ "type":"list",
308
+ "member":{"shape":"ClusterListEntry"}
309
+ },
310
+ "ClusterMetadata":{
311
+ "type":"structure",
312
+ "members":{
313
+ "ClusterId":{"shape":"String"},
314
+ "Description":{"shape":"String"},
315
+ "KmsKeyARN":{"shape":"KmsKeyARN"},
316
+ "RoleARN":{"shape":"RoleARN"},
317
+ "ClusterState":{"shape":"ClusterState"},
318
+ "JobType":{"shape":"JobType"},
319
+ "SnowballType":{"shape":"SnowballType"},
320
+ "CreationDate":{"shape":"Timestamp"},
321
+ "Resources":{"shape":"JobResource"},
322
+ "AddressId":{"shape":"AddressId"},
323
+ "ShippingOption":{"shape":"ShippingOption"},
324
+ "Notification":{"shape":"Notification"}
325
+ }
326
+ },
327
+ "ClusterState":{
328
+ "type":"string",
329
+ "enum":[
330
+ "AwaitingQuorum",
331
+ "Pending",
332
+ "InUse",
333
+ "Complete",
334
+ "Cancelled"
335
+ ]
336
+ },
191
337
  "CreateAddressRequest":{
192
338
  "type":"structure",
193
339
  "required":["Address"],
@@ -201,7 +347,7 @@
201
347
  "AddressId":{"shape":"String"}
202
348
  }
203
349
  },
204
- "CreateJobRequest":{
350
+ "CreateClusterRequest":{
205
351
  "type":"structure",
206
352
  "required":[
207
353
  "JobType",
@@ -217,11 +363,33 @@
217
363
  "AddressId":{"shape":"AddressId"},
218
364
  "KmsKeyARN":{"shape":"KmsKeyARN"},
219
365
  "RoleARN":{"shape":"RoleARN"},
220
- "SnowballCapacityPreference":{"shape":"SnowballCapacity"},
366
+ "SnowballType":{"shape":"SnowballType"},
221
367
  "ShippingOption":{"shape":"ShippingOption"},
222
368
  "Notification":{"shape":"Notification"}
223
369
  }
224
370
  },
371
+ "CreateClusterResult":{
372
+ "type":"structure",
373
+ "members":{
374
+ "ClusterId":{"shape":"ClusterId"}
375
+ }
376
+ },
377
+ "CreateJobRequest":{
378
+ "type":"structure",
379
+ "members":{
380
+ "JobType":{"shape":"JobType"},
381
+ "Resources":{"shape":"JobResource"},
382
+ "Description":{"shape":"String"},
383
+ "AddressId":{"shape":"AddressId"},
384
+ "KmsKeyARN":{"shape":"KmsKeyARN"},
385
+ "RoleARN":{"shape":"RoleARN"},
386
+ "SnowballCapacityPreference":{"shape":"SnowballCapacity"},
387
+ "ShippingOption":{"shape":"ShippingOption"},
388
+ "Notification":{"shape":"Notification"},
389
+ "ClusterId":{"shape":"ClusterId"},
390
+ "SnowballType":{"shape":"SnowballType"}
391
+ }
392
+ },
225
393
  "CreateJobResult":{
226
394
  "type":"structure",
227
395
  "members":{
@@ -264,6 +432,19 @@
264
432
  "NextToken":{"shape":"String"}
265
433
  }
266
434
  },
435
+ "DescribeClusterRequest":{
436
+ "type":"structure",
437
+ "required":["ClusterId"],
438
+ "members":{
439
+ "ClusterId":{"shape":"ClusterId"}
440
+ }
441
+ },
442
+ "DescribeClusterResult":{
443
+ "type":"structure",
444
+ "members":{
445
+ "ClusterMetadata":{"shape":"ClusterMetadata"}
446
+ }
447
+ },
267
448
  "DescribeJobRequest":{
268
449
  "type":"structure",
269
450
  "required":["JobId"],
@@ -278,6 +459,16 @@
278
459
  "SubJobMetadata":{"shape":"JobMetadataList"}
279
460
  }
280
461
  },
462
+ "EventTriggerDefinition":{
463
+ "type":"structure",
464
+ "members":{
465
+ "EventResourceARN":{"shape":"ResourceARN"}
466
+ }
467
+ },
468
+ "EventTriggerDefinitionList":{
469
+ "type":"list",
470
+ "member":{"shape":"EventTriggerDefinition"}
471
+ },
281
472
  "GetJobManifestRequest":{
282
473
  "type":"structure",
283
474
  "required":["JobId"],
@@ -324,6 +515,13 @@
324
515
  },
325
516
  "exception":true
326
517
  },
518
+ "InvalidInputCombinationException":{
519
+ "type":"structure",
520
+ "members":{
521
+ "Message":{"shape":"String"}
522
+ },
523
+ "exception":true
524
+ },
327
525
  "InvalidJobStateException":{
328
526
  "type":"structure",
329
527
  "members":{
@@ -349,7 +547,11 @@
349
547
  "members":{
350
548
  "JobId":{"shape":"String"},
351
549
  "JobState":{"shape":"JobState"},
352
- "IsMaster":{"shape":"Boolean"}
550
+ "IsMaster":{"shape":"Boolean"},
551
+ "JobType":{"shape":"JobType"},
552
+ "SnowballType":{"shape":"SnowballType"},
553
+ "CreationDate":{"shape":"Timestamp"},
554
+ "Description":{"shape":"String"}
353
555
  }
354
556
  },
355
557
  "JobListEntryList":{
@@ -370,6 +572,7 @@
370
572
  "JobId":{"shape":"String"},
371
573
  "JobState":{"shape":"JobState"},
372
574
  "JobType":{"shape":"JobType"},
575
+ "SnowballType":{"shape":"SnowballType"},
373
576
  "CreationDate":{"shape":"Timestamp"},
374
577
  "Resources":{"shape":"JobResource"},
375
578
  "Description":{"shape":"String"},
@@ -380,7 +583,8 @@
380
583
  "SnowballCapacityPreference":{"shape":"SnowballCapacity"},
381
584
  "Notification":{"shape":"Notification"},
382
585
  "DataTransferProgress":{"shape":"DataTransfer"},
383
- "JobLogInfo":{"shape":"JobLogs"}
586
+ "JobLogInfo":{"shape":"JobLogs"},
587
+ "ClusterId":{"shape":"String"}
384
588
  }
385
589
  },
386
590
  "JobMetadataList":{
@@ -390,7 +594,8 @@
390
594
  "JobResource":{
391
595
  "type":"structure",
392
596
  "members":{
393
- "S3Resources":{"shape":"S3ResourceList"}
597
+ "S3Resources":{"shape":"S3ResourceList"},
598
+ "LambdaResources":{"shape":"LambdaResourceList"}
394
599
  }
395
600
  },
396
601
  "JobState":{
@@ -418,7 +623,8 @@
418
623
  "type":"string",
419
624
  "enum":[
420
625
  "IMPORT",
421
- "EXPORT"
626
+ "EXPORT",
627
+ "LOCAL_USE"
422
628
  ]
423
629
  },
424
630
  "KMSRequestFailedException":{
@@ -440,6 +646,47 @@
440
646
  "max":255,
441
647
  "pattern":"arn:(aws|aws-us-gov):kms:.*:[0-9]{12}:key/.*"
442
648
  },
649
+ "LambdaResource":{
650
+ "type":"structure",
651
+ "members":{
652
+ "LambdaArn":{"shape":"ResourceARN"},
653
+ "EventTriggers":{"shape":"EventTriggerDefinitionList"}
654
+ }
655
+ },
656
+ "LambdaResourceList":{
657
+ "type":"list",
658
+ "member":{"shape":"LambdaResource"}
659
+ },
660
+ "ListClusterJobsRequest":{
661
+ "type":"structure",
662
+ "required":["ClusterId"],
663
+ "members":{
664
+ "ClusterId":{"shape":"ClusterId"},
665
+ "MaxResults":{"shape":"ListLimit"},
666
+ "NextToken":{"shape":"String"}
667
+ }
668
+ },
669
+ "ListClusterJobsResult":{
670
+ "type":"structure",
671
+ "members":{
672
+ "JobListEntries":{"shape":"JobListEntryList"},
673
+ "NextToken":{"shape":"String"}
674
+ }
675
+ },
676
+ "ListClustersRequest":{
677
+ "type":"structure",
678
+ "members":{
679
+ "MaxResults":{"shape":"ListLimit"},
680
+ "NextToken":{"shape":"String"}
681
+ }
682
+ },
683
+ "ListClustersResult":{
684
+ "type":"structure",
685
+ "members":{
686
+ "ClusterListEntries":{"shape":"ClusterListEntryList"},
687
+ "NextToken":{"shape":"String"}
688
+ }
689
+ },
443
690
  "ListJobsRequest":{
444
691
  "type":"structure",
445
692
  "members":{
@@ -470,8 +717,7 @@
470
717
  },
471
718
  "ResourceARN":{
472
719
  "type":"string",
473
- "max":255,
474
- "pattern":"arn:(aws|aws-us-gov):s3:::.*"
720
+ "max":255
475
721
  },
476
722
  "RoleARN":{
477
723
  "type":"string",
@@ -518,9 +764,17 @@
518
764
  "enum":[
519
765
  "T50",
520
766
  "T80",
767
+ "T100",
521
768
  "NoPreference"
522
769
  ]
523
770
  },
771
+ "SnowballType":{
772
+ "type":"string",
773
+ "enum":[
774
+ "STANDARD",
775
+ "EDGE"
776
+ ]
777
+ },
524
778
  "SnsTopicARN":{
525
779
  "type":"string",
526
780
  "max":255,
@@ -539,6 +793,24 @@
539
793
  },
540
794
  "exception":true
541
795
  },
796
+ "UpdateClusterRequest":{
797
+ "type":"structure",
798
+ "required":["ClusterId"],
799
+ "members":{
800
+ "ClusterId":{"shape":"ClusterId"},
801
+ "RoleARN":{"shape":"RoleARN"},
802
+ "Description":{"shape":"String"},
803
+ "Resources":{"shape":"JobResource"},
804
+ "AddressId":{"shape":"AddressId"},
805
+ "ShippingOption":{"shape":"ShippingOption"},
806
+ "Notification":{"shape":"Notification"}
807
+ }
808
+ },
809
+ "UpdateClusterResult":{
810
+ "type":"structure",
811
+ "members":{
812
+ }
813
+ },
542
814
  "UpdateJobRequest":{
543
815
  "type":"structure",
544
816
  "required":["JobId"],