@aws-sdk/client-mturk 3.927.0 → 3.929.0
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.
- package/dist-cjs/index.js +1084 -1367
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/MTurkClient.js +2 -0
- package/dist-es/commands/AcceptQualificationRequestCommand.js +3 -9
- package/dist-es/commands/ApproveAssignmentCommand.js +3 -9
- package/dist-es/commands/AssociateQualificationWithWorkerCommand.js +3 -9
- package/dist-es/commands/CreateAdditionalAssignmentsForHITCommand.js +3 -9
- package/dist-es/commands/CreateHITCommand.js +3 -9
- package/dist-es/commands/CreateHITTypeCommand.js +3 -9
- package/dist-es/commands/CreateHITWithHITTypeCommand.js +3 -9
- package/dist-es/commands/CreateQualificationTypeCommand.js +3 -9
- package/dist-es/commands/CreateWorkerBlockCommand.js +3 -9
- package/dist-es/commands/DeleteHITCommand.js +3 -9
- package/dist-es/commands/DeleteQualificationTypeCommand.js +3 -9
- package/dist-es/commands/DeleteWorkerBlockCommand.js +3 -9
- package/dist-es/commands/DisassociateQualificationFromWorkerCommand.js +3 -9
- package/dist-es/commands/GetAccountBalanceCommand.js +3 -9
- package/dist-es/commands/GetAssignmentCommand.js +3 -9
- package/dist-es/commands/GetFileUploadURLCommand.js +3 -9
- package/dist-es/commands/GetHITCommand.js +3 -9
- package/dist-es/commands/GetQualificationScoreCommand.js +3 -9
- package/dist-es/commands/GetQualificationTypeCommand.js +3 -9
- package/dist-es/commands/ListAssignmentsForHITCommand.js +3 -9
- package/dist-es/commands/ListBonusPaymentsCommand.js +3 -9
- package/dist-es/commands/ListHITsCommand.js +3 -9
- package/dist-es/commands/ListHITsForQualificationTypeCommand.js +3 -9
- package/dist-es/commands/ListQualificationRequestsCommand.js +3 -9
- package/dist-es/commands/ListQualificationTypesCommand.js +3 -9
- package/dist-es/commands/ListReviewPolicyResultsForHITCommand.js +3 -9
- package/dist-es/commands/ListReviewableHITsCommand.js +3 -9
- package/dist-es/commands/ListWorkerBlocksCommand.js +3 -9
- package/dist-es/commands/ListWorkersWithQualificationTypeCommand.js +3 -9
- package/dist-es/commands/NotifyWorkersCommand.js +3 -9
- package/dist-es/commands/RejectAssignmentCommand.js +3 -9
- package/dist-es/commands/RejectQualificationRequestCommand.js +3 -9
- package/dist-es/commands/SendBonusCommand.js +3 -9
- package/dist-es/commands/SendTestEventNotificationCommand.js +3 -9
- package/dist-es/commands/UpdateExpirationForHITCommand.js +3 -9
- package/dist-es/commands/UpdateHITReviewStatusCommand.js +3 -9
- package/dist-es/commands/UpdateHITTypeOfHITCommand.js +3 -9
- package/dist-es/commands/UpdateNotificationSettingsCommand.js +3 -9
- package/dist-es/commands/UpdateQualificationTypeCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +1005 -0
- package/dist-types/MTurkClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +161 -0
- package/dist-types/ts3.4/MTurkClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +166 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_1.js +0 -1092
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -353
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -473
package/dist-cjs/index.js
CHANGED
|
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
|
|
|
6
6
|
var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
|
|
7
7
|
var configResolver = require('@smithy/config-resolver');
|
|
8
8
|
var core = require('@smithy/core');
|
|
9
|
+
var schema = require('@smithy/core/schema');
|
|
9
10
|
var middlewareContentLength = require('@smithy/middleware-content-length');
|
|
10
11
|
var middlewareEndpoint = require('@smithy/middleware-endpoint');
|
|
11
12
|
var middlewareRetry = require('@smithy/middleware-retry');
|
|
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
14
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
15
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
16
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
17
|
-
var middlewareSerde = require('@smithy/middleware-serde');
|
|
18
|
-
var core$1 = require('@aws-sdk/core');
|
|
19
18
|
|
|
20
19
|
const resolveClientEndpointParameters = (options) => {
|
|
21
20
|
return Object.assign(options, {
|
|
@@ -91,6 +90,7 @@ class MTurkClient extends smithyClient.Client {
|
|
|
91
90
|
const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
|
|
92
91
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
93
92
|
this.config = _config_8;
|
|
93
|
+
this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
|
|
94
94
|
this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
|
|
95
95
|
this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
|
|
96
96
|
this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
|
|
@@ -110,14 +110,14 @@ class MTurkClient extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
class MTurkServiceException extends smithyClient.ServiceException {
|
|
113
|
+
let MTurkServiceException$1 = class MTurkServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, MTurkServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
};
|
|
119
119
|
|
|
120
|
-
class RequestError extends MTurkServiceException {
|
|
120
|
+
let RequestError$1 = class RequestError extends MTurkServiceException$1 {
|
|
121
121
|
name = "RequestError";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
Message;
|
|
@@ -132,8 +132,8 @@ class RequestError extends MTurkServiceException {
|
|
|
132
132
|
this.Message = opts.Message;
|
|
133
133
|
this.TurkErrorCode = opts.TurkErrorCode;
|
|
134
134
|
}
|
|
135
|
-
}
|
|
136
|
-
class ServiceFault extends MTurkServiceException {
|
|
135
|
+
};
|
|
136
|
+
let ServiceFault$1 = class ServiceFault extends MTurkServiceException$1 {
|
|
137
137
|
name = "ServiceFault";
|
|
138
138
|
$fault = "server";
|
|
139
139
|
Message;
|
|
@@ -148,7 +148,7 @@ class ServiceFault extends MTurkServiceException {
|
|
|
148
148
|
this.Message = opts.Message;
|
|
149
149
|
this.TurkErrorCode = opts.TurkErrorCode;
|
|
150
150
|
}
|
|
151
|
-
}
|
|
151
|
+
};
|
|
152
152
|
const AssignmentStatus = {
|
|
153
153
|
Approved: "Approved",
|
|
154
154
|
Rejected: "Rejected",
|
|
@@ -230,1104 +230,1011 @@ const NotificationTransport = {
|
|
|
230
230
|
SQS: "SQS",
|
|
231
231
|
};
|
|
232
232
|
|
|
233
|
-
const
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
const
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
const
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
const
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
const
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
const
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
const
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
const
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
const
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
const
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
const
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
const
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
const
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
const
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
const
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
const
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
const
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
const
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
const
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
const
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
const
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
const
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
const
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
const
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
const
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
const
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
const
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
const
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
const
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
const
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
const
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
const
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
const
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
const
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
const
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
const
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
const
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
const
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
const
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
const
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
const
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
const
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
const
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
return de_QualificationRequest(entry);
|
|
1229
|
-
});
|
|
1230
|
-
return retVal;
|
|
1231
|
-
};
|
|
1232
|
-
const de_QualificationType = (output, context) => {
|
|
1233
|
-
return smithyClient.take(output, {
|
|
1234
|
-
AnswerKey: smithyClient.expectString,
|
|
1235
|
-
AutoGranted: smithyClient.expectBoolean,
|
|
1236
|
-
AutoGrantedValue: smithyClient.expectInt32,
|
|
1237
|
-
CreationTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1238
|
-
Description: smithyClient.expectString,
|
|
1239
|
-
IsRequestable: smithyClient.expectBoolean,
|
|
1240
|
-
Keywords: smithyClient.expectString,
|
|
1241
|
-
Name: smithyClient.expectString,
|
|
1242
|
-
QualificationTypeId: smithyClient.expectString,
|
|
1243
|
-
QualificationTypeStatus: smithyClient.expectString,
|
|
1244
|
-
RetryDelayInSeconds: smithyClient.expectLong,
|
|
1245
|
-
Test: smithyClient.expectString,
|
|
1246
|
-
TestDurationInSeconds: smithyClient.expectLong,
|
|
1247
|
-
});
|
|
1248
|
-
};
|
|
1249
|
-
const de_QualificationTypeList = (output, context) => {
|
|
1250
|
-
const retVal = (output || [])
|
|
1251
|
-
.filter((e) => e != null)
|
|
1252
|
-
.map((entry) => {
|
|
1253
|
-
return de_QualificationType(entry);
|
|
1254
|
-
});
|
|
1255
|
-
return retVal;
|
|
1256
|
-
};
|
|
1257
|
-
const de_ReviewActionDetail = (output, context) => {
|
|
1258
|
-
return smithyClient.take(output, {
|
|
1259
|
-
ActionId: smithyClient.expectString,
|
|
1260
|
-
ActionName: smithyClient.expectString,
|
|
1261
|
-
CompleteTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
|
|
1262
|
-
ErrorCode: smithyClient.expectString,
|
|
1263
|
-
Result: smithyClient.expectString,
|
|
1264
|
-
Status: smithyClient.expectString,
|
|
1265
|
-
TargetId: smithyClient.expectString,
|
|
1266
|
-
TargetType: smithyClient.expectString,
|
|
1267
|
-
});
|
|
1268
|
-
};
|
|
1269
|
-
const de_ReviewActionDetailList = (output, context) => {
|
|
1270
|
-
const retVal = (output || [])
|
|
1271
|
-
.filter((e) => e != null)
|
|
1272
|
-
.map((entry) => {
|
|
1273
|
-
return de_ReviewActionDetail(entry);
|
|
1274
|
-
});
|
|
1275
|
-
return retVal;
|
|
1276
|
-
};
|
|
1277
|
-
const de_ReviewReport = (output, context) => {
|
|
1278
|
-
return smithyClient.take(output, {
|
|
1279
|
-
ReviewActions: (_) => de_ReviewActionDetailList(_),
|
|
1280
|
-
ReviewResults: smithyClient._json,
|
|
1281
|
-
});
|
|
1282
|
-
};
|
|
1283
|
-
const de_UpdateQualificationTypeResponse = (output, context) => {
|
|
1284
|
-
return smithyClient.take(output, {
|
|
1285
|
-
QualificationType: (_) => de_QualificationType(_),
|
|
1286
|
-
});
|
|
1287
|
-
};
|
|
1288
|
-
const deserializeMetadata = (output) => ({
|
|
1289
|
-
httpStatusCode: output.statusCode,
|
|
1290
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1291
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1292
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1293
|
-
});
|
|
1294
|
-
const throwDefaultError = smithyClient.withBaseException(MTurkServiceException);
|
|
1295
|
-
const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
|
|
1296
|
-
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
1297
|
-
const contents = {
|
|
1298
|
-
protocol,
|
|
1299
|
-
hostname,
|
|
1300
|
-
port,
|
|
1301
|
-
method: "POST",
|
|
1302
|
-
path: basePath.endsWith("/") ? basePath.slice(0, -1) + path : basePath + path,
|
|
1303
|
-
headers,
|
|
1304
|
-
};
|
|
1305
|
-
if (body !== undefined) {
|
|
1306
|
-
contents.body = body;
|
|
1307
|
-
}
|
|
1308
|
-
return new protocolHttp.HttpRequest(contents);
|
|
1309
|
-
};
|
|
1310
|
-
function sharedHeaders(operation) {
|
|
1311
|
-
return {
|
|
1312
|
-
"content-type": "application/x-amz-json-1.1",
|
|
1313
|
-
"x-amz-target": `MTurkRequesterServiceV20170117.${operation}`,
|
|
1314
|
-
};
|
|
1315
|
-
}
|
|
233
|
+
const _A = "Assignment";
|
|
234
|
+
const _AA = "ApproveAssignment";
|
|
235
|
+
const _AADIS = "AutoApprovalDelayInSeconds";
|
|
236
|
+
const _AAR = "ApproveAssignmentRequest";
|
|
237
|
+
const _AARp = "ApproveAssignmentResponse";
|
|
238
|
+
const _AAT = "AutoApprovalTime";
|
|
239
|
+
const _AB = "AvailableBalance";
|
|
240
|
+
const _ADIS = "AssignmentDurationInSeconds";
|
|
241
|
+
const _AG = "AutoGranted";
|
|
242
|
+
const _AGV = "AutoGrantedValue";
|
|
243
|
+
const _AGc = "ActionsGuarded";
|
|
244
|
+
const _AI = "AssignmentId";
|
|
245
|
+
const _AIc = "ActionId";
|
|
246
|
+
const _AK = "AnswerKey";
|
|
247
|
+
const _AL = "AssignmentList";
|
|
248
|
+
const _AN = "ActionName";
|
|
249
|
+
const _AQR = "AcceptQualificationRequest";
|
|
250
|
+
const _AQRR = "AcceptQualificationRequestRequest";
|
|
251
|
+
const _AQRRc = "AcceptQualificationRequestResponse";
|
|
252
|
+
const _AQWW = "AssociateQualificationWithWorker";
|
|
253
|
+
const _AQWWR = "AssociateQualificationWithWorkerRequest";
|
|
254
|
+
const _AQWWRs = "AssociateQualificationWithWorkerResponse";
|
|
255
|
+
const _ARP = "AssignmentReviewPolicy";
|
|
256
|
+
const _ARR = "AssignmentReviewReport";
|
|
257
|
+
const _AS = "AssignmentStatus";
|
|
258
|
+
const _ASs = "AssignmentStatuses";
|
|
259
|
+
const _AT = "AcceptTime";
|
|
260
|
+
const _ATp = "ApprovalTime";
|
|
261
|
+
const _Ac = "Active";
|
|
262
|
+
const _An = "Answer";
|
|
263
|
+
const _As = "Assignments";
|
|
264
|
+
const _BA = "BonusAmount";
|
|
265
|
+
const _BP = "BonusPayment";
|
|
266
|
+
const _BPL = "BonusPaymentList";
|
|
267
|
+
const _BPo = "BonusPayments";
|
|
268
|
+
const _C = "Country";
|
|
269
|
+
const _CAAFHIT = "CreateAdditionalAssignmentsForHIT";
|
|
270
|
+
const _CAAFHITR = "CreateAdditionalAssignmentsForHITRequest";
|
|
271
|
+
const _CAAFHITRr = "CreateAdditionalAssignmentsForHITResponse";
|
|
272
|
+
const _CHIT = "CreateHIT";
|
|
273
|
+
const _CHITR = "CreateHITRequest";
|
|
274
|
+
const _CHITRr = "CreateHITResponse";
|
|
275
|
+
const _CHITT = "CreateHITType";
|
|
276
|
+
const _CHITTR = "CreateHITTypeRequest";
|
|
277
|
+
const _CHITTRr = "CreateHITTypeResponse";
|
|
278
|
+
const _CHITWHITT = "CreateHITWithHITType";
|
|
279
|
+
const _CHITWHITTR = "CreateHITWithHITTypeRequest";
|
|
280
|
+
const _CHITWHITTRr = "CreateHITWithHITTypeResponse";
|
|
281
|
+
const _CQT = "CreateQualificationType";
|
|
282
|
+
const _CQTR = "CreateQualificationTypeRequest";
|
|
283
|
+
const _CQTRr = "CreateQualificationTypeResponse";
|
|
284
|
+
const _CT = "CreationTime";
|
|
285
|
+
const _CTo = "CompleteTime";
|
|
286
|
+
const _CWB = "CreateWorkerBlock";
|
|
287
|
+
const _CWBR = "CreateWorkerBlockRequest";
|
|
288
|
+
const _CWBRr = "CreateWorkerBlockResponse";
|
|
289
|
+
const _Co = "Comparator";
|
|
290
|
+
const _D = "Deadline";
|
|
291
|
+
const _DHIT = "DeleteHIT";
|
|
292
|
+
const _DHITR = "DeleteHITRequest";
|
|
293
|
+
const _DHITRe = "DeleteHITResponse";
|
|
294
|
+
const _DQFW = "DisassociateQualificationFromWorker";
|
|
295
|
+
const _DQFWR = "DisassociateQualificationFromWorkerRequest";
|
|
296
|
+
const _DQFWRi = "DisassociateQualificationFromWorkerResponse";
|
|
297
|
+
const _DQT = "DeleteQualificationType";
|
|
298
|
+
const _DQTR = "DeleteQualificationTypeRequest";
|
|
299
|
+
const _DQTRe = "DeleteQualificationTypeResponse";
|
|
300
|
+
const _DWB = "DeleteWorkerBlock";
|
|
301
|
+
const _DWBR = "DeleteWorkerBlockRequest";
|
|
302
|
+
const _DWBRe = "DeleteWorkerBlockResponse";
|
|
303
|
+
const _De = "Description";
|
|
304
|
+
const _Des = "Destination";
|
|
305
|
+
const _E = "Expiration";
|
|
306
|
+
const _EA = "ExpireAt";
|
|
307
|
+
const _EC = "ErrorCode";
|
|
308
|
+
const _ET = "EventTypes";
|
|
309
|
+
const _FUURL = "FileUploadURL";
|
|
310
|
+
const _GA = "GetAssignment";
|
|
311
|
+
const _GAB = "GetAccountBalance";
|
|
312
|
+
const _GABR = "GetAccountBalanceRequest";
|
|
313
|
+
const _GABRe = "GetAccountBalanceResponse";
|
|
314
|
+
const _GAR = "GetAssignmentRequest";
|
|
315
|
+
const _GARe = "GetAssignmentResponse";
|
|
316
|
+
const _GFUURL = "GetFileUploadURL";
|
|
317
|
+
const _GFUURLR = "GetFileUploadURLRequest";
|
|
318
|
+
const _GFUURLRe = "GetFileUploadURLResponse";
|
|
319
|
+
const _GHIT = "GetHIT";
|
|
320
|
+
const _GHITR = "GetHITRequest";
|
|
321
|
+
const _GHITRe = "GetHITResponse";
|
|
322
|
+
const _GQS = "GetQualificationScore";
|
|
323
|
+
const _GQSR = "GetQualificationScoreRequest";
|
|
324
|
+
const _GQSRe = "GetQualificationScoreResponse";
|
|
325
|
+
const _GQT = "GetQualificationType";
|
|
326
|
+
const _GQTR = "GetQualificationTypeRequest";
|
|
327
|
+
const _GQTRe = "GetQualificationTypeResponse";
|
|
328
|
+
const _GT = "GrantTime";
|
|
329
|
+
const _HIT = "HIT";
|
|
330
|
+
const _HITGI = "HITGroupId";
|
|
331
|
+
const _HITI = "HITId";
|
|
332
|
+
const _HITL = "HITList";
|
|
333
|
+
const _HITLI = "HITLayoutId";
|
|
334
|
+
const _HITLP = "HITLayoutParameters";
|
|
335
|
+
const _HITLPL = "HITLayoutParameterList";
|
|
336
|
+
const _HITLPa = "HITLayoutParameter";
|
|
337
|
+
const _HITRP = "HITReviewPolicy";
|
|
338
|
+
const _HITRR = "HITReviewReport";
|
|
339
|
+
const _HITRS = "HITReviewStatus";
|
|
340
|
+
const _HITS = "HITStatus";
|
|
341
|
+
const _HITTI = "HITTypeId";
|
|
342
|
+
const _HITs = "HITs";
|
|
343
|
+
const _IR = "IsRequestable";
|
|
344
|
+
const _IV = "IntegerValue";
|
|
345
|
+
const _IVn = "IntegerValues";
|
|
346
|
+
const _K = "Keywords";
|
|
347
|
+
const _Ke = "Key";
|
|
348
|
+
const _L = "Locale";
|
|
349
|
+
const _LAFHIT = "ListAssignmentsForHIT";
|
|
350
|
+
const _LAFHITR = "ListAssignmentsForHITRequest";
|
|
351
|
+
const _LAFHITRi = "ListAssignmentsForHITResponse";
|
|
352
|
+
const _LBP = "ListBonusPayments";
|
|
353
|
+
const _LBPR = "ListBonusPaymentsRequest";
|
|
354
|
+
const _LBPRi = "ListBonusPaymentsResponse";
|
|
355
|
+
const _LHIT = "ListHITs";
|
|
356
|
+
const _LHITFQT = "ListHITsForQualificationType";
|
|
357
|
+
const _LHITFQTR = "ListHITsForQualificationTypeRequest";
|
|
358
|
+
const _LHITFQTRi = "ListHITsForQualificationTypeResponse";
|
|
359
|
+
const _LHITR = "ListHITsRequest";
|
|
360
|
+
const _LHITRi = "ListHITsResponse";
|
|
361
|
+
const _LIS = "LifetimeInSeconds";
|
|
362
|
+
const _LL = "LocaleList";
|
|
363
|
+
const _LQR = "ListQualificationRequests";
|
|
364
|
+
const _LQRR = "ListQualificationRequestsRequest";
|
|
365
|
+
const _LQRRi = "ListQualificationRequestsResponse";
|
|
366
|
+
const _LQT = "ListQualificationTypes";
|
|
367
|
+
const _LQTR = "ListQualificationTypesRequest";
|
|
368
|
+
const _LQTRi = "ListQualificationTypesResponse";
|
|
369
|
+
const _LRHIT = "ListReviewableHITs";
|
|
370
|
+
const _LRHITR = "ListReviewableHITsRequest";
|
|
371
|
+
const _LRHITRi = "ListReviewableHITsResponse";
|
|
372
|
+
const _LRPRFHIT = "ListReviewPolicyResultsForHIT";
|
|
373
|
+
const _LRPRFHITR = "ListReviewPolicyResultsForHITRequest";
|
|
374
|
+
const _LRPRFHITRi = "ListReviewPolicyResultsForHITResponse";
|
|
375
|
+
const _LV = "LocaleValue";
|
|
376
|
+
const _LVo = "LocaleValues";
|
|
377
|
+
const _LWB = "ListWorkerBlocks";
|
|
378
|
+
const _LWBR = "ListWorkerBlocksRequest";
|
|
379
|
+
const _LWBRi = "ListWorkerBlocksResponse";
|
|
380
|
+
const _LWWQT = "ListWorkersWithQualificationType";
|
|
381
|
+
const _LWWQTR = "ListWorkersWithQualificationTypeRequest";
|
|
382
|
+
const _LWWQTRi = "ListWorkersWithQualificationTypeResponse";
|
|
383
|
+
const _M = "Message";
|
|
384
|
+
const _MA = "MaxAssignments";
|
|
385
|
+
const _MBOBC = "MustBeOwnedByCaller";
|
|
386
|
+
const _MBR = "MustBeRequestable";
|
|
387
|
+
const _ME = "MapEntries";
|
|
388
|
+
const _MR = "MaxResults";
|
|
389
|
+
const _MT = "MessageText";
|
|
390
|
+
const _N = "Name";
|
|
391
|
+
const _NOAA = "NumberOfAdditionalAssignments";
|
|
392
|
+
const _NOAAu = "NumberOfAssignmentsAvailable";
|
|
393
|
+
const _NOAC = "NumberOfAssignmentsCompleted";
|
|
394
|
+
const _NOAP = "NumberOfAssignmentsPending";
|
|
395
|
+
const _NR = "NumResults";
|
|
396
|
+
const _NS = "NotificationSpecification";
|
|
397
|
+
const _NT = "NextToken";
|
|
398
|
+
const _NW = "NotifyWorkers";
|
|
399
|
+
const _NWFC = "NotifyWorkersFailureCode";
|
|
400
|
+
const _NWFM = "NotifyWorkersFailureMessage";
|
|
401
|
+
const _NWFS = "NotifyWorkersFailureStatus";
|
|
402
|
+
const _NWFSL = "NotifyWorkersFailureStatusList";
|
|
403
|
+
const _NWFSo = "NotifyWorkersFailureStatuses";
|
|
404
|
+
const _NWR = "NotifyWorkersRequest";
|
|
405
|
+
const _NWRo = "NotifyWorkersResponse";
|
|
406
|
+
const _No = "Notification";
|
|
407
|
+
const _OHB = "OnHoldBalance";
|
|
408
|
+
const _OR = "OverrideRejection";
|
|
409
|
+
const _P = "Parameters";
|
|
410
|
+
const _PL = "PolicyLevels";
|
|
411
|
+
const _PME = "ParameterMapEntry";
|
|
412
|
+
const _PMEL = "ParameterMapEntryList";
|
|
413
|
+
const _PN = "PolicyName";
|
|
414
|
+
const _PP = "PolicyParameter";
|
|
415
|
+
const _PPL = "PolicyParameterList";
|
|
416
|
+
const _Q = "Question";
|
|
417
|
+
const _QI = "QuestionIdentifier";
|
|
418
|
+
const _QIu = "QuestionId";
|
|
419
|
+
const _QL = "QualificationList";
|
|
420
|
+
const _QR = "QualificationRequirements";
|
|
421
|
+
const _QRI = "QualificationRequestId";
|
|
422
|
+
const _QRL = "QualificationRequestList";
|
|
423
|
+
const _QRLu = "QualificationRequirementList";
|
|
424
|
+
const _QRu = "QualificationRequests";
|
|
425
|
+
const _QRua = "QualificationRequest";
|
|
426
|
+
const _QRual = "QualificationRequirement";
|
|
427
|
+
const _QT = "QualificationType";
|
|
428
|
+
const _QTI = "QualificationTypeId";
|
|
429
|
+
const _QTL = "QualificationTypeList";
|
|
430
|
+
const _QTS = "QualificationTypeStatus";
|
|
431
|
+
const _QTu = "QualificationTypes";
|
|
432
|
+
const _Qu = "Qualification";
|
|
433
|
+
const _Qua = "Qualifications";
|
|
434
|
+
const _Que = "Query";
|
|
435
|
+
const _R = "Reason";
|
|
436
|
+
const _RA = "RequesterAnnotation";
|
|
437
|
+
const _RAD = "ReviewActionDetail";
|
|
438
|
+
const _RADL = "ReviewActionDetailList";
|
|
439
|
+
const _RAR = "RejectAssignmentRequest";
|
|
440
|
+
const _RARe = "RejectAssignmentResponse";
|
|
441
|
+
const _RAe = "RetrieveActions";
|
|
442
|
+
const _RAej = "RejectAssignment";
|
|
443
|
+
const _RAev = "ReviewActions";
|
|
444
|
+
const _RDIS = "RetryDelayInSeconds";
|
|
445
|
+
const _RE = "RequestError";
|
|
446
|
+
const _RF = "RequesterFeedback";
|
|
447
|
+
const _RP = "ReviewPolicy";
|
|
448
|
+
const _RQR = "RejectQualificationRequest";
|
|
449
|
+
const _RQRR = "RejectQualificationRequestRequest";
|
|
450
|
+
const _RQRRe = "RejectQualificationRequestResponse";
|
|
451
|
+
const _RR = "RetrieveResults";
|
|
452
|
+
const _RRD = "ReviewResultDetail";
|
|
453
|
+
const _RRDL = "ReviewResultDetailList";
|
|
454
|
+
const _RRe = "ReviewReport";
|
|
455
|
+
const _RRev = "ReviewResults";
|
|
456
|
+
const _RT = "RejectionTime";
|
|
457
|
+
const _RTP = "RequiredToPreview";
|
|
458
|
+
const _Re = "Reward";
|
|
459
|
+
const _Res = "Result";
|
|
460
|
+
const _Rev = "Revert";
|
|
461
|
+
const _S = "Status";
|
|
462
|
+
const _SB = "SendBonus";
|
|
463
|
+
const _SBR = "SendBonusRequest";
|
|
464
|
+
const _SBRe = "SendBonusResponse";
|
|
465
|
+
const _SF = "ServiceFault";
|
|
466
|
+
const _SI = "SubjectId";
|
|
467
|
+
const _SN = "SendNotification";
|
|
468
|
+
const _ST = "SubmitTime";
|
|
469
|
+
const _STEN = "SendTestEventNotification";
|
|
470
|
+
const _STENR = "SendTestEventNotificationRequest";
|
|
471
|
+
const _STENRe = "SendTestEventNotificationResponse";
|
|
472
|
+
const _STu = "SubjectType";
|
|
473
|
+
const _Su = "Subdivision";
|
|
474
|
+
const _Sub = "Subject";
|
|
475
|
+
const _T = "Title";
|
|
476
|
+
const _TDIS = "TestDurationInSeconds";
|
|
477
|
+
const _TEC = "TurkErrorCode";
|
|
478
|
+
const _TET = "TestEventType";
|
|
479
|
+
const _TI = "TargetId";
|
|
480
|
+
const _TT = "TargetType";
|
|
481
|
+
const _Te = "Test";
|
|
482
|
+
const _Tr = "Transport";
|
|
483
|
+
const _UEFHIT = "UpdateExpirationForHIT";
|
|
484
|
+
const _UEFHITR = "UpdateExpirationForHITRequest";
|
|
485
|
+
const _UEFHITRp = "UpdateExpirationForHITResponse";
|
|
486
|
+
const _UHITRS = "UpdateHITReviewStatus";
|
|
487
|
+
const _UHITRSR = "UpdateHITReviewStatusRequest";
|
|
488
|
+
const _UHITRSRp = "UpdateHITReviewStatusResponse";
|
|
489
|
+
const _UHITTOHIT = "UpdateHITTypeOfHIT";
|
|
490
|
+
const _UHITTOHITR = "UpdateHITTypeOfHITRequest";
|
|
491
|
+
const _UHITTOHITRp = "UpdateHITTypeOfHITResponse";
|
|
492
|
+
const _UNS = "UpdateNotificationSettings";
|
|
493
|
+
const _UNSR = "UpdateNotificationSettingsRequest";
|
|
494
|
+
const _UNSRp = "UpdateNotificationSettingsResponse";
|
|
495
|
+
const _UQT = "UpdateQualificationType";
|
|
496
|
+
const _UQTR = "UpdateQualificationTypeRequest";
|
|
497
|
+
const _UQTRp = "UpdateQualificationTypeResponse";
|
|
498
|
+
const _URT = "UniqueRequestToken";
|
|
499
|
+
const _V = "Value";
|
|
500
|
+
const _Va = "Values";
|
|
501
|
+
const _Ve = "Version";
|
|
502
|
+
const _WB = "WorkerBlocks";
|
|
503
|
+
const _WBL = "WorkerBlockList";
|
|
504
|
+
const _WBo = "WorkerBlock";
|
|
505
|
+
const _WI = "WorkerId";
|
|
506
|
+
const _WIo = "WorkerIds";
|
|
507
|
+
const _aQE = "awsQueryError";
|
|
508
|
+
const _c = "client";
|
|
509
|
+
const _e = "error";
|
|
510
|
+
const _hE = "httpError";
|
|
511
|
+
const _s = "server";
|
|
512
|
+
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.mturk";
|
|
513
|
+
const n0 = "com.amazonaws.mturk";
|
|
514
|
+
var AcceptQualificationRequestRequest = [3, n0, _AQRR, 0, [_QRI, _IV], [0, 1]];
|
|
515
|
+
var AcceptQualificationRequestResponse = [3, n0, _AQRRc, 0, [], []];
|
|
516
|
+
var ApproveAssignmentRequest = [3, n0, _AAR, 0, [_AI, _RF, _OR], [0, 0, 2]];
|
|
517
|
+
var ApproveAssignmentResponse = [3, n0, _AARp, 0, [], []];
|
|
518
|
+
var Assignment = [
|
|
519
|
+
3,
|
|
520
|
+
n0,
|
|
521
|
+
_A,
|
|
522
|
+
0,
|
|
523
|
+
[_AI, _WI, _HITI, _AS, _AAT, _AT, _ST, _ATp, _RT, _D, _An, _RF],
|
|
524
|
+
[0, 0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0],
|
|
525
|
+
];
|
|
526
|
+
var AssociateQualificationWithWorkerRequest = [
|
|
527
|
+
3,
|
|
528
|
+
n0,
|
|
529
|
+
_AQWWR,
|
|
530
|
+
0,
|
|
531
|
+
[_QTI, _WI, _IV, _SN],
|
|
532
|
+
[0, 0, 1, 2],
|
|
533
|
+
];
|
|
534
|
+
var AssociateQualificationWithWorkerResponse = [3, n0, _AQWWRs, 0, [], []];
|
|
535
|
+
var BonusPayment = [3, n0, _BP, 0, [_WI, _BA, _AI, _R, _GT], [0, 0, 0, 0, 4]];
|
|
536
|
+
var CreateAdditionalAssignmentsForHITRequest = [
|
|
537
|
+
3,
|
|
538
|
+
n0,
|
|
539
|
+
_CAAFHITR,
|
|
540
|
+
0,
|
|
541
|
+
[_HITI, _NOAA, _URT],
|
|
542
|
+
[0, 1, 0],
|
|
543
|
+
];
|
|
544
|
+
var CreateAdditionalAssignmentsForHITResponse = [3, n0, _CAAFHITRr, 0, [], []];
|
|
545
|
+
var CreateHITRequest = [
|
|
546
|
+
3,
|
|
547
|
+
n0,
|
|
548
|
+
_CHITR,
|
|
549
|
+
0,
|
|
550
|
+
[_MA, _AADIS, _LIS, _ADIS, _Re, _T, _K, _De, _Q, _RA, _QR, _URT, _ARP, _HITRP, _HITLI, _HITLP],
|
|
551
|
+
[
|
|
552
|
+
1,
|
|
553
|
+
1,
|
|
554
|
+
1,
|
|
555
|
+
1,
|
|
556
|
+
0,
|
|
557
|
+
0,
|
|
558
|
+
0,
|
|
559
|
+
0,
|
|
560
|
+
0,
|
|
561
|
+
0,
|
|
562
|
+
() => QualificationRequirementList,
|
|
563
|
+
0,
|
|
564
|
+
() => ReviewPolicy,
|
|
565
|
+
() => ReviewPolicy,
|
|
566
|
+
0,
|
|
567
|
+
() => HITLayoutParameterList,
|
|
568
|
+
],
|
|
569
|
+
];
|
|
570
|
+
var CreateHITResponse = [3, n0, _CHITRr, 0, [_HIT], [() => HIT]];
|
|
571
|
+
var CreateHITTypeRequest = [
|
|
572
|
+
3,
|
|
573
|
+
n0,
|
|
574
|
+
_CHITTR,
|
|
575
|
+
0,
|
|
576
|
+
[_AADIS, _ADIS, _Re, _T, _K, _De, _QR],
|
|
577
|
+
[1, 1, 0, 0, 0, 0, () => QualificationRequirementList],
|
|
578
|
+
];
|
|
579
|
+
var CreateHITTypeResponse = [3, n0, _CHITTRr, 0, [_HITTI], [0]];
|
|
580
|
+
var CreateHITWithHITTypeRequest = [
|
|
581
|
+
3,
|
|
582
|
+
n0,
|
|
583
|
+
_CHITWHITTR,
|
|
584
|
+
0,
|
|
585
|
+
[_HITTI, _MA, _LIS, _Q, _RA, _URT, _ARP, _HITRP, _HITLI, _HITLP],
|
|
586
|
+
[0, 1, 1, 0, 0, 0, () => ReviewPolicy, () => ReviewPolicy, 0, () => HITLayoutParameterList],
|
|
587
|
+
];
|
|
588
|
+
var CreateHITWithHITTypeResponse = [3, n0, _CHITWHITTRr, 0, [_HIT], [() => HIT]];
|
|
589
|
+
var CreateQualificationTypeRequest = [
|
|
590
|
+
3,
|
|
591
|
+
n0,
|
|
592
|
+
_CQTR,
|
|
593
|
+
0,
|
|
594
|
+
[_N, _K, _De, _QTS, _RDIS, _Te, _AK, _TDIS, _AG, _AGV],
|
|
595
|
+
[0, 0, 0, 0, 1, 0, 0, 1, 2, 1],
|
|
596
|
+
];
|
|
597
|
+
var CreateQualificationTypeResponse = [
|
|
598
|
+
3,
|
|
599
|
+
n0,
|
|
600
|
+
_CQTRr,
|
|
601
|
+
0,
|
|
602
|
+
[_QT],
|
|
603
|
+
[() => QualificationType],
|
|
604
|
+
];
|
|
605
|
+
var CreateWorkerBlockRequest = [3, n0, _CWBR, 0, [_WI, _R], [0, 0]];
|
|
606
|
+
var CreateWorkerBlockResponse = [3, n0, _CWBRr, 0, [], []];
|
|
607
|
+
var DeleteHITRequest = [3, n0, _DHITR, 0, [_HITI], [0]];
|
|
608
|
+
var DeleteHITResponse = [3, n0, _DHITRe, 0, [], []];
|
|
609
|
+
var DeleteQualificationTypeRequest = [3, n0, _DQTR, 0, [_QTI], [0]];
|
|
610
|
+
var DeleteQualificationTypeResponse = [3, n0, _DQTRe, 0, [], []];
|
|
611
|
+
var DeleteWorkerBlockRequest = [3, n0, _DWBR, 0, [_WI, _R], [0, 0]];
|
|
612
|
+
var DeleteWorkerBlockResponse = [3, n0, _DWBRe, 0, [], []];
|
|
613
|
+
var DisassociateQualificationFromWorkerRequest = [
|
|
614
|
+
3,
|
|
615
|
+
n0,
|
|
616
|
+
_DQFWR,
|
|
617
|
+
0,
|
|
618
|
+
[_WI, _QTI, _R],
|
|
619
|
+
[0, 0, 0],
|
|
620
|
+
];
|
|
621
|
+
var DisassociateQualificationFromWorkerResponse = [3, n0, _DQFWRi, 0, [], []];
|
|
622
|
+
var GetAccountBalanceRequest = [3, n0, _GABR, 0, [], []];
|
|
623
|
+
var GetAccountBalanceResponse = [3, n0, _GABRe, 0, [_AB, _OHB], [0, 0]];
|
|
624
|
+
var GetAssignmentRequest = [3, n0, _GAR, 0, [_AI], [0]];
|
|
625
|
+
var GetAssignmentResponse = [3, n0, _GARe, 0, [_A, _HIT], [() => Assignment, () => HIT]];
|
|
626
|
+
var GetFileUploadURLRequest = [3, n0, _GFUURLR, 0, [_AI, _QI], [0, 0]];
|
|
627
|
+
var GetFileUploadURLResponse = [3, n0, _GFUURLRe, 0, [_FUURL], [0]];
|
|
628
|
+
var GetHITRequest = [3, n0, _GHITR, 0, [_HITI], [0]];
|
|
629
|
+
var GetHITResponse = [3, n0, _GHITRe, 0, [_HIT], [() => HIT]];
|
|
630
|
+
var GetQualificationScoreRequest = [3, n0, _GQSR, 0, [_QTI, _WI], [0, 0]];
|
|
631
|
+
var GetQualificationScoreResponse = [3, n0, _GQSRe, 0, [_Qu], [() => Qualification]];
|
|
632
|
+
var GetQualificationTypeRequest = [3, n0, _GQTR, 0, [_QTI], [0]];
|
|
633
|
+
var GetQualificationTypeResponse = [3, n0, _GQTRe, 0, [_QT], [() => QualificationType]];
|
|
634
|
+
var HIT = [
|
|
635
|
+
3,
|
|
636
|
+
n0,
|
|
637
|
+
_HIT,
|
|
638
|
+
0,
|
|
639
|
+
[
|
|
640
|
+
_HITI,
|
|
641
|
+
_HITTI,
|
|
642
|
+
_HITGI,
|
|
643
|
+
_HITLI,
|
|
644
|
+
_CT,
|
|
645
|
+
_T,
|
|
646
|
+
_De,
|
|
647
|
+
_Q,
|
|
648
|
+
_K,
|
|
649
|
+
_HITS,
|
|
650
|
+
_MA,
|
|
651
|
+
_Re,
|
|
652
|
+
_AADIS,
|
|
653
|
+
_E,
|
|
654
|
+
_ADIS,
|
|
655
|
+
_RA,
|
|
656
|
+
_QR,
|
|
657
|
+
_HITRS,
|
|
658
|
+
_NOAP,
|
|
659
|
+
_NOAAu,
|
|
660
|
+
_NOAC,
|
|
661
|
+
],
|
|
662
|
+
[0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 1, 4, 1, 0, () => QualificationRequirementList, 0, 1, 1, 1],
|
|
663
|
+
];
|
|
664
|
+
var HITLayoutParameter = [3, n0, _HITLPa, 0, [_N, _V], [0, 0]];
|
|
665
|
+
var ListAssignmentsForHITRequest = [
|
|
666
|
+
3,
|
|
667
|
+
n0,
|
|
668
|
+
_LAFHITR,
|
|
669
|
+
0,
|
|
670
|
+
[_HITI, _NT, _MR, _ASs],
|
|
671
|
+
[0, 0, 1, 64 | 0],
|
|
672
|
+
];
|
|
673
|
+
var ListAssignmentsForHITResponse = [
|
|
674
|
+
3,
|
|
675
|
+
n0,
|
|
676
|
+
_LAFHITRi,
|
|
677
|
+
0,
|
|
678
|
+
[_NT, _NR, _As],
|
|
679
|
+
[0, 1, () => AssignmentList],
|
|
680
|
+
];
|
|
681
|
+
var ListBonusPaymentsRequest = [3, n0, _LBPR, 0, [_HITI, _AI, _NT, _MR], [0, 0, 0, 1]];
|
|
682
|
+
var ListBonusPaymentsResponse = [
|
|
683
|
+
3,
|
|
684
|
+
n0,
|
|
685
|
+
_LBPRi,
|
|
686
|
+
0,
|
|
687
|
+
[_NR, _NT, _BPo],
|
|
688
|
+
[1, 0, () => BonusPaymentList],
|
|
689
|
+
];
|
|
690
|
+
var ListHITsForQualificationTypeRequest = [
|
|
691
|
+
3,
|
|
692
|
+
n0,
|
|
693
|
+
_LHITFQTR,
|
|
694
|
+
0,
|
|
695
|
+
[_QTI, _NT, _MR],
|
|
696
|
+
[0, 0, 1],
|
|
697
|
+
];
|
|
698
|
+
var ListHITsForQualificationTypeResponse = [
|
|
699
|
+
3,
|
|
700
|
+
n0,
|
|
701
|
+
_LHITFQTRi,
|
|
702
|
+
0,
|
|
703
|
+
[_NT, _NR, _HITs],
|
|
704
|
+
[0, 1, () => HITList],
|
|
705
|
+
];
|
|
706
|
+
var ListHITsRequest = [3, n0, _LHITR, 0, [_NT, _MR], [0, 1]];
|
|
707
|
+
var ListHITsResponse = [3, n0, _LHITRi, 0, [_NT, _NR, _HITs], [0, 1, () => HITList]];
|
|
708
|
+
var ListQualificationRequestsRequest = [3, n0, _LQRR, 0, [_QTI, _NT, _MR], [0, 0, 1]];
|
|
709
|
+
var ListQualificationRequestsResponse = [
|
|
710
|
+
3,
|
|
711
|
+
n0,
|
|
712
|
+
_LQRRi,
|
|
713
|
+
0,
|
|
714
|
+
[_NR, _NT, _QRu],
|
|
715
|
+
[1, 0, () => QualificationRequestList],
|
|
716
|
+
];
|
|
717
|
+
var ListQualificationTypesRequest = [
|
|
718
|
+
3,
|
|
719
|
+
n0,
|
|
720
|
+
_LQTR,
|
|
721
|
+
0,
|
|
722
|
+
[_Que, _MBR, _MBOBC, _NT, _MR],
|
|
723
|
+
[0, 2, 2, 0, 1],
|
|
724
|
+
];
|
|
725
|
+
var ListQualificationTypesResponse = [
|
|
726
|
+
3,
|
|
727
|
+
n0,
|
|
728
|
+
_LQTRi,
|
|
729
|
+
0,
|
|
730
|
+
[_NR, _NT, _QTu],
|
|
731
|
+
[1, 0, () => QualificationTypeList],
|
|
732
|
+
];
|
|
733
|
+
var ListReviewableHITsRequest = [3, n0, _LRHITR, 0, [_HITTI, _S, _NT, _MR], [0, 0, 0, 1]];
|
|
734
|
+
var ListReviewableHITsResponse = [
|
|
735
|
+
3,
|
|
736
|
+
n0,
|
|
737
|
+
_LRHITRi,
|
|
738
|
+
0,
|
|
739
|
+
[_NT, _NR, _HITs],
|
|
740
|
+
[0, 1, () => HITList],
|
|
741
|
+
];
|
|
742
|
+
var ListReviewPolicyResultsForHITRequest = [
|
|
743
|
+
3,
|
|
744
|
+
n0,
|
|
745
|
+
_LRPRFHITR,
|
|
746
|
+
0,
|
|
747
|
+
[_HITI, _PL, _RAe, _RR, _NT, _MR],
|
|
748
|
+
[0, 64 | 0, 2, 2, 0, 1],
|
|
749
|
+
];
|
|
750
|
+
var ListReviewPolicyResultsForHITResponse = [
|
|
751
|
+
3,
|
|
752
|
+
n0,
|
|
753
|
+
_LRPRFHITRi,
|
|
754
|
+
0,
|
|
755
|
+
[_HITI, _ARP, _HITRP, _ARR, _HITRR, _NT],
|
|
756
|
+
[0, () => ReviewPolicy, () => ReviewPolicy, () => ReviewReport, () => ReviewReport, 0],
|
|
757
|
+
];
|
|
758
|
+
var ListWorkerBlocksRequest = [3, n0, _LWBR, 0, [_NT, _MR], [0, 1]];
|
|
759
|
+
var ListWorkerBlocksResponse = [
|
|
760
|
+
3,
|
|
761
|
+
n0,
|
|
762
|
+
_LWBRi,
|
|
763
|
+
0,
|
|
764
|
+
[_NT, _NR, _WB],
|
|
765
|
+
[0, 1, () => WorkerBlockList],
|
|
766
|
+
];
|
|
767
|
+
var ListWorkersWithQualificationTypeRequest = [
|
|
768
|
+
3,
|
|
769
|
+
n0,
|
|
770
|
+
_LWWQTR,
|
|
771
|
+
0,
|
|
772
|
+
[_QTI, _S, _NT, _MR],
|
|
773
|
+
[0, 0, 0, 1],
|
|
774
|
+
];
|
|
775
|
+
var ListWorkersWithQualificationTypeResponse = [
|
|
776
|
+
3,
|
|
777
|
+
n0,
|
|
778
|
+
_LWWQTRi,
|
|
779
|
+
0,
|
|
780
|
+
[_NT, _NR, _Qua],
|
|
781
|
+
[0, 1, () => QualificationList],
|
|
782
|
+
];
|
|
783
|
+
var Locale = [3, n0, _L, 0, [_C, _Su], [0, 0]];
|
|
784
|
+
var NotificationSpecification = [3, n0, _NS, 0, [_Des, _Tr, _Ve, _ET], [0, 0, 0, 64 | 0]];
|
|
785
|
+
var NotifyWorkersFailureStatus = [3, n0, _NWFS, 0, [_NWFC, _NWFM, _WI], [0, 0, 0]];
|
|
786
|
+
var NotifyWorkersRequest = [3, n0, _NWR, 0, [_Sub, _MT, _WIo], [0, 0, 64 | 0]];
|
|
787
|
+
var NotifyWorkersResponse = [
|
|
788
|
+
3,
|
|
789
|
+
n0,
|
|
790
|
+
_NWRo,
|
|
791
|
+
0,
|
|
792
|
+
[_NWFSo],
|
|
793
|
+
[() => NotifyWorkersFailureStatusList],
|
|
794
|
+
];
|
|
795
|
+
var ParameterMapEntry = [3, n0, _PME, 0, [_Ke, _Va], [0, 64 | 0]];
|
|
796
|
+
var PolicyParameter = [
|
|
797
|
+
3,
|
|
798
|
+
n0,
|
|
799
|
+
_PP,
|
|
800
|
+
0,
|
|
801
|
+
[_Ke, _Va, _ME],
|
|
802
|
+
[0, 64 | 0, () => ParameterMapEntryList],
|
|
803
|
+
];
|
|
804
|
+
var Qualification = [
|
|
805
|
+
3,
|
|
806
|
+
n0,
|
|
807
|
+
_Qu,
|
|
808
|
+
0,
|
|
809
|
+
[_QTI, _WI, _GT, _IV, _LV, _S],
|
|
810
|
+
[0, 0, 4, 1, () => Locale, 0],
|
|
811
|
+
];
|
|
812
|
+
var QualificationRequest = [
|
|
813
|
+
3,
|
|
814
|
+
n0,
|
|
815
|
+
_QRua,
|
|
816
|
+
0,
|
|
817
|
+
[_QRI, _QTI, _WI, _Te, _An, _ST],
|
|
818
|
+
[0, 0, 0, 0, 0, 4],
|
|
819
|
+
];
|
|
820
|
+
var QualificationRequirement = [
|
|
821
|
+
3,
|
|
822
|
+
n0,
|
|
823
|
+
_QRual,
|
|
824
|
+
0,
|
|
825
|
+
[_QTI, _Co, _IVn, _LVo, _RTP, _AGc],
|
|
826
|
+
[0, 0, 64 | 1, () => LocaleList, 2, 0],
|
|
827
|
+
];
|
|
828
|
+
var QualificationType = [
|
|
829
|
+
3,
|
|
830
|
+
n0,
|
|
831
|
+
_QT,
|
|
832
|
+
0,
|
|
833
|
+
[_QTI, _CT, _N, _De, _K, _QTS, _Te, _TDIS, _AK, _RDIS, _IR, _AG, _AGV],
|
|
834
|
+
[0, 4, 0, 0, 0, 0, 0, 1, 0, 1, 2, 2, 1],
|
|
835
|
+
];
|
|
836
|
+
var RejectAssignmentRequest = [3, n0, _RAR, 0, [_AI, _RF], [0, 0]];
|
|
837
|
+
var RejectAssignmentResponse = [3, n0, _RARe, 0, [], []];
|
|
838
|
+
var RejectQualificationRequestRequest = [3, n0, _RQRR, 0, [_QRI, _R], [0, 0]];
|
|
839
|
+
var RejectQualificationRequestResponse = [3, n0, _RQRRe, 0, [], []];
|
|
840
|
+
var RequestError = [
|
|
841
|
+
-3,
|
|
842
|
+
n0,
|
|
843
|
+
_RE,
|
|
844
|
+
{
|
|
845
|
+
[_e]: _c,
|
|
846
|
+
[_hE]: 400,
|
|
847
|
+
[_aQE]: [`RequestError`, 400],
|
|
848
|
+
},
|
|
849
|
+
[_M, _TEC],
|
|
850
|
+
[0, 0],
|
|
851
|
+
];
|
|
852
|
+
schema.TypeRegistry.for(n0).registerError(RequestError, RequestError$1);
|
|
853
|
+
var ReviewActionDetail = [
|
|
854
|
+
3,
|
|
855
|
+
n0,
|
|
856
|
+
_RAD,
|
|
857
|
+
0,
|
|
858
|
+
[_AIc, _AN, _TI, _TT, _S, _CTo, _Res, _EC],
|
|
859
|
+
[0, 0, 0, 0, 0, 4, 0, 0],
|
|
860
|
+
];
|
|
861
|
+
var ReviewPolicy = [3, n0, _RP, 0, [_PN, _P], [0, () => PolicyParameterList]];
|
|
862
|
+
var ReviewReport = [
|
|
863
|
+
3,
|
|
864
|
+
n0,
|
|
865
|
+
_RRe,
|
|
866
|
+
0,
|
|
867
|
+
[_RRev, _RAev],
|
|
868
|
+
[() => ReviewResultDetailList, () => ReviewActionDetailList],
|
|
869
|
+
];
|
|
870
|
+
var ReviewResultDetail = [
|
|
871
|
+
3,
|
|
872
|
+
n0,
|
|
873
|
+
_RRD,
|
|
874
|
+
0,
|
|
875
|
+
[_AIc, _SI, _STu, _QIu, _Ke, _V],
|
|
876
|
+
[0, 0, 0, 0, 0, 0],
|
|
877
|
+
];
|
|
878
|
+
var SendBonusRequest = [3, n0, _SBR, 0, [_WI, _BA, _AI, _R, _URT], [0, 0, 0, 0, 0]];
|
|
879
|
+
var SendBonusResponse = [3, n0, _SBRe, 0, [], []];
|
|
880
|
+
var SendTestEventNotificationRequest = [
|
|
881
|
+
3,
|
|
882
|
+
n0,
|
|
883
|
+
_STENR,
|
|
884
|
+
0,
|
|
885
|
+
[_No, _TET],
|
|
886
|
+
[() => NotificationSpecification, 0],
|
|
887
|
+
];
|
|
888
|
+
var SendTestEventNotificationResponse = [3, n0, _STENRe, 0, [], []];
|
|
889
|
+
var ServiceFault = [
|
|
890
|
+
-3,
|
|
891
|
+
n0,
|
|
892
|
+
_SF,
|
|
893
|
+
{
|
|
894
|
+
[_e]: _s,
|
|
895
|
+
[_hE]: 500,
|
|
896
|
+
[_aQE]: [`ServiceFault`, 500],
|
|
897
|
+
},
|
|
898
|
+
[_M, _TEC],
|
|
899
|
+
[0, 0],
|
|
900
|
+
];
|
|
901
|
+
schema.TypeRegistry.for(n0).registerError(ServiceFault, ServiceFault$1);
|
|
902
|
+
var UpdateExpirationForHITRequest = [3, n0, _UEFHITR, 0, [_HITI, _EA], [0, 4]];
|
|
903
|
+
var UpdateExpirationForHITResponse = [3, n0, _UEFHITRp, 0, [], []];
|
|
904
|
+
var UpdateHITReviewStatusRequest = [3, n0, _UHITRSR, 0, [_HITI, _Rev], [0, 2]];
|
|
905
|
+
var UpdateHITReviewStatusResponse = [3, n0, _UHITRSRp, 0, [], []];
|
|
906
|
+
var UpdateHITTypeOfHITRequest = [3, n0, _UHITTOHITR, 0, [_HITI, _HITTI], [0, 0]];
|
|
907
|
+
var UpdateHITTypeOfHITResponse = [3, n0, _UHITTOHITRp, 0, [], []];
|
|
908
|
+
var UpdateNotificationSettingsRequest = [
|
|
909
|
+
3,
|
|
910
|
+
n0,
|
|
911
|
+
_UNSR,
|
|
912
|
+
0,
|
|
913
|
+
[_HITTI, _No, _Ac],
|
|
914
|
+
[0, () => NotificationSpecification, 2],
|
|
915
|
+
];
|
|
916
|
+
var UpdateNotificationSettingsResponse = [3, n0, _UNSRp, 0, [], []];
|
|
917
|
+
var UpdateQualificationTypeRequest = [
|
|
918
|
+
3,
|
|
919
|
+
n0,
|
|
920
|
+
_UQTR,
|
|
921
|
+
0,
|
|
922
|
+
[_QTI, _De, _QTS, _Te, _AK, _TDIS, _RDIS, _AG, _AGV],
|
|
923
|
+
[0, 0, 0, 0, 0, 1, 1, 2, 1],
|
|
924
|
+
];
|
|
925
|
+
var UpdateQualificationTypeResponse = [
|
|
926
|
+
3,
|
|
927
|
+
n0,
|
|
928
|
+
_UQTRp,
|
|
929
|
+
0,
|
|
930
|
+
[_QT],
|
|
931
|
+
[() => QualificationType],
|
|
932
|
+
];
|
|
933
|
+
var WorkerBlock = [3, n0, _WBo, 0, [_WI, _R], [0, 0]];
|
|
934
|
+
var MTurkServiceException = [-3, _sm, "MTurkServiceException", 0, [], []];
|
|
935
|
+
schema.TypeRegistry.for(_sm).registerError(MTurkServiceException, MTurkServiceException$1);
|
|
936
|
+
var AssignmentList = [1, n0, _AL, 0, () => Assignment];
|
|
937
|
+
var BonusPaymentList = [1, n0, _BPL, 0, () => BonusPayment];
|
|
938
|
+
var HITLayoutParameterList = [1, n0, _HITLPL, 0, () => HITLayoutParameter];
|
|
939
|
+
var HITList = [1, n0, _HITL, 0, () => HIT];
|
|
940
|
+
var LocaleList = [1, n0, _LL, 0, () => Locale];
|
|
941
|
+
var NotifyWorkersFailureStatusList = [1, n0, _NWFSL, 0, () => NotifyWorkersFailureStatus];
|
|
942
|
+
var ParameterMapEntryList = [1, n0, _PMEL, 0, () => ParameterMapEntry];
|
|
943
|
+
var PolicyParameterList = [1, n0, _PPL, 0, () => PolicyParameter];
|
|
944
|
+
var QualificationList = [1, n0, _QL, 0, () => Qualification];
|
|
945
|
+
var QualificationRequestList = [1, n0, _QRL, 0, () => QualificationRequest];
|
|
946
|
+
var QualificationRequirementList = [1, n0, _QRLu, 0, () => QualificationRequirement];
|
|
947
|
+
var QualificationTypeList = [1, n0, _QTL, 0, () => QualificationType];
|
|
948
|
+
var ReviewActionDetailList = [1, n0, _RADL, 0, () => ReviewActionDetail];
|
|
949
|
+
var ReviewResultDetailList = [1, n0, _RRDL, 0, () => ReviewResultDetail];
|
|
950
|
+
var WorkerBlockList = [1, n0, _WBL, 0, () => WorkerBlock];
|
|
951
|
+
var AcceptQualificationRequest = [
|
|
952
|
+
9,
|
|
953
|
+
n0,
|
|
954
|
+
_AQR,
|
|
955
|
+
0,
|
|
956
|
+
() => AcceptQualificationRequestRequest,
|
|
957
|
+
() => AcceptQualificationRequestResponse,
|
|
958
|
+
];
|
|
959
|
+
var ApproveAssignment = [
|
|
960
|
+
9,
|
|
961
|
+
n0,
|
|
962
|
+
_AA,
|
|
963
|
+
2,
|
|
964
|
+
() => ApproveAssignmentRequest,
|
|
965
|
+
() => ApproveAssignmentResponse,
|
|
966
|
+
];
|
|
967
|
+
var AssociateQualificationWithWorker = [
|
|
968
|
+
9,
|
|
969
|
+
n0,
|
|
970
|
+
_AQWW,
|
|
971
|
+
0,
|
|
972
|
+
() => AssociateQualificationWithWorkerRequest,
|
|
973
|
+
() => AssociateQualificationWithWorkerResponse,
|
|
974
|
+
];
|
|
975
|
+
var CreateAdditionalAssignmentsForHIT = [
|
|
976
|
+
9,
|
|
977
|
+
n0,
|
|
978
|
+
_CAAFHIT,
|
|
979
|
+
0,
|
|
980
|
+
() => CreateAdditionalAssignmentsForHITRequest,
|
|
981
|
+
() => CreateAdditionalAssignmentsForHITResponse,
|
|
982
|
+
];
|
|
983
|
+
var CreateHIT = [9, n0, _CHIT, 0, () => CreateHITRequest, () => CreateHITResponse];
|
|
984
|
+
var CreateHITType = [
|
|
985
|
+
9,
|
|
986
|
+
n0,
|
|
987
|
+
_CHITT,
|
|
988
|
+
2,
|
|
989
|
+
() => CreateHITTypeRequest,
|
|
990
|
+
() => CreateHITTypeResponse,
|
|
991
|
+
];
|
|
992
|
+
var CreateHITWithHITType = [
|
|
993
|
+
9,
|
|
994
|
+
n0,
|
|
995
|
+
_CHITWHITT,
|
|
996
|
+
0,
|
|
997
|
+
() => CreateHITWithHITTypeRequest,
|
|
998
|
+
() => CreateHITWithHITTypeResponse,
|
|
999
|
+
];
|
|
1000
|
+
var CreateQualificationType = [
|
|
1001
|
+
9,
|
|
1002
|
+
n0,
|
|
1003
|
+
_CQT,
|
|
1004
|
+
0,
|
|
1005
|
+
() => CreateQualificationTypeRequest,
|
|
1006
|
+
() => CreateQualificationTypeResponse,
|
|
1007
|
+
];
|
|
1008
|
+
var CreateWorkerBlock = [
|
|
1009
|
+
9,
|
|
1010
|
+
n0,
|
|
1011
|
+
_CWB,
|
|
1012
|
+
0,
|
|
1013
|
+
() => CreateWorkerBlockRequest,
|
|
1014
|
+
() => CreateWorkerBlockResponse,
|
|
1015
|
+
];
|
|
1016
|
+
var DeleteHIT = [9, n0, _DHIT, 2, () => DeleteHITRequest, () => DeleteHITResponse];
|
|
1017
|
+
var DeleteQualificationType = [
|
|
1018
|
+
9,
|
|
1019
|
+
n0,
|
|
1020
|
+
_DQT,
|
|
1021
|
+
2,
|
|
1022
|
+
() => DeleteQualificationTypeRequest,
|
|
1023
|
+
() => DeleteQualificationTypeResponse,
|
|
1024
|
+
];
|
|
1025
|
+
var DeleteWorkerBlock = [
|
|
1026
|
+
9,
|
|
1027
|
+
n0,
|
|
1028
|
+
_DWB,
|
|
1029
|
+
2,
|
|
1030
|
+
() => DeleteWorkerBlockRequest,
|
|
1031
|
+
() => DeleteWorkerBlockResponse,
|
|
1032
|
+
];
|
|
1033
|
+
var DisassociateQualificationFromWorker = [
|
|
1034
|
+
9,
|
|
1035
|
+
n0,
|
|
1036
|
+
_DQFW,
|
|
1037
|
+
0,
|
|
1038
|
+
() => DisassociateQualificationFromWorkerRequest,
|
|
1039
|
+
() => DisassociateQualificationFromWorkerResponse,
|
|
1040
|
+
];
|
|
1041
|
+
var GetAccountBalance = [
|
|
1042
|
+
9,
|
|
1043
|
+
n0,
|
|
1044
|
+
_GAB,
|
|
1045
|
+
2,
|
|
1046
|
+
() => GetAccountBalanceRequest,
|
|
1047
|
+
() => GetAccountBalanceResponse,
|
|
1048
|
+
];
|
|
1049
|
+
var GetAssignment = [
|
|
1050
|
+
9,
|
|
1051
|
+
n0,
|
|
1052
|
+
_GA,
|
|
1053
|
+
2,
|
|
1054
|
+
() => GetAssignmentRequest,
|
|
1055
|
+
() => GetAssignmentResponse,
|
|
1056
|
+
];
|
|
1057
|
+
var GetFileUploadURL = [
|
|
1058
|
+
9,
|
|
1059
|
+
n0,
|
|
1060
|
+
_GFUURL,
|
|
1061
|
+
2,
|
|
1062
|
+
() => GetFileUploadURLRequest,
|
|
1063
|
+
() => GetFileUploadURLResponse,
|
|
1064
|
+
];
|
|
1065
|
+
var GetHIT = [9, n0, _GHIT, 2, () => GetHITRequest, () => GetHITResponse];
|
|
1066
|
+
var GetQualificationScore = [
|
|
1067
|
+
9,
|
|
1068
|
+
n0,
|
|
1069
|
+
_GQS,
|
|
1070
|
+
2,
|
|
1071
|
+
() => GetQualificationScoreRequest,
|
|
1072
|
+
() => GetQualificationScoreResponse,
|
|
1073
|
+
];
|
|
1074
|
+
var GetQualificationType = [
|
|
1075
|
+
9,
|
|
1076
|
+
n0,
|
|
1077
|
+
_GQT,
|
|
1078
|
+
2,
|
|
1079
|
+
() => GetQualificationTypeRequest,
|
|
1080
|
+
() => GetQualificationTypeResponse,
|
|
1081
|
+
];
|
|
1082
|
+
var ListAssignmentsForHIT = [
|
|
1083
|
+
9,
|
|
1084
|
+
n0,
|
|
1085
|
+
_LAFHIT,
|
|
1086
|
+
2,
|
|
1087
|
+
() => ListAssignmentsForHITRequest,
|
|
1088
|
+
() => ListAssignmentsForHITResponse,
|
|
1089
|
+
];
|
|
1090
|
+
var ListBonusPayments = [
|
|
1091
|
+
9,
|
|
1092
|
+
n0,
|
|
1093
|
+
_LBP,
|
|
1094
|
+
2,
|
|
1095
|
+
() => ListBonusPaymentsRequest,
|
|
1096
|
+
() => ListBonusPaymentsResponse,
|
|
1097
|
+
];
|
|
1098
|
+
var ListHITs = [9, n0, _LHIT, 2, () => ListHITsRequest, () => ListHITsResponse];
|
|
1099
|
+
var ListHITsForQualificationType = [
|
|
1100
|
+
9,
|
|
1101
|
+
n0,
|
|
1102
|
+
_LHITFQT,
|
|
1103
|
+
2,
|
|
1104
|
+
() => ListHITsForQualificationTypeRequest,
|
|
1105
|
+
() => ListHITsForQualificationTypeResponse,
|
|
1106
|
+
];
|
|
1107
|
+
var ListQualificationRequests = [
|
|
1108
|
+
9,
|
|
1109
|
+
n0,
|
|
1110
|
+
_LQR,
|
|
1111
|
+
2,
|
|
1112
|
+
() => ListQualificationRequestsRequest,
|
|
1113
|
+
() => ListQualificationRequestsResponse,
|
|
1114
|
+
];
|
|
1115
|
+
var ListQualificationTypes = [
|
|
1116
|
+
9,
|
|
1117
|
+
n0,
|
|
1118
|
+
_LQT,
|
|
1119
|
+
2,
|
|
1120
|
+
() => ListQualificationTypesRequest,
|
|
1121
|
+
() => ListQualificationTypesResponse,
|
|
1122
|
+
];
|
|
1123
|
+
var ListReviewableHITs = [
|
|
1124
|
+
9,
|
|
1125
|
+
n0,
|
|
1126
|
+
_LRHIT,
|
|
1127
|
+
2,
|
|
1128
|
+
() => ListReviewableHITsRequest,
|
|
1129
|
+
() => ListReviewableHITsResponse,
|
|
1130
|
+
];
|
|
1131
|
+
var ListReviewPolicyResultsForHIT = [
|
|
1132
|
+
9,
|
|
1133
|
+
n0,
|
|
1134
|
+
_LRPRFHIT,
|
|
1135
|
+
2,
|
|
1136
|
+
() => ListReviewPolicyResultsForHITRequest,
|
|
1137
|
+
() => ListReviewPolicyResultsForHITResponse,
|
|
1138
|
+
];
|
|
1139
|
+
var ListWorkerBlocks = [
|
|
1140
|
+
9,
|
|
1141
|
+
n0,
|
|
1142
|
+
_LWB,
|
|
1143
|
+
2,
|
|
1144
|
+
() => ListWorkerBlocksRequest,
|
|
1145
|
+
() => ListWorkerBlocksResponse,
|
|
1146
|
+
];
|
|
1147
|
+
var ListWorkersWithQualificationType = [
|
|
1148
|
+
9,
|
|
1149
|
+
n0,
|
|
1150
|
+
_LWWQT,
|
|
1151
|
+
2,
|
|
1152
|
+
() => ListWorkersWithQualificationTypeRequest,
|
|
1153
|
+
() => ListWorkersWithQualificationTypeResponse,
|
|
1154
|
+
];
|
|
1155
|
+
var NotifyWorkers = [
|
|
1156
|
+
9,
|
|
1157
|
+
n0,
|
|
1158
|
+
_NW,
|
|
1159
|
+
0,
|
|
1160
|
+
() => NotifyWorkersRequest,
|
|
1161
|
+
() => NotifyWorkersResponse,
|
|
1162
|
+
];
|
|
1163
|
+
var RejectAssignment = [
|
|
1164
|
+
9,
|
|
1165
|
+
n0,
|
|
1166
|
+
_RAej,
|
|
1167
|
+
2,
|
|
1168
|
+
() => RejectAssignmentRequest,
|
|
1169
|
+
() => RejectAssignmentResponse,
|
|
1170
|
+
];
|
|
1171
|
+
var RejectQualificationRequest = [
|
|
1172
|
+
9,
|
|
1173
|
+
n0,
|
|
1174
|
+
_RQR,
|
|
1175
|
+
0,
|
|
1176
|
+
() => RejectQualificationRequestRequest,
|
|
1177
|
+
() => RejectQualificationRequestResponse,
|
|
1178
|
+
];
|
|
1179
|
+
var SendBonus = [9, n0, _SB, 0, () => SendBonusRequest, () => SendBonusResponse];
|
|
1180
|
+
var SendTestEventNotification = [
|
|
1181
|
+
9,
|
|
1182
|
+
n0,
|
|
1183
|
+
_STEN,
|
|
1184
|
+
0,
|
|
1185
|
+
() => SendTestEventNotificationRequest,
|
|
1186
|
+
() => SendTestEventNotificationResponse,
|
|
1187
|
+
];
|
|
1188
|
+
var UpdateExpirationForHIT = [
|
|
1189
|
+
9,
|
|
1190
|
+
n0,
|
|
1191
|
+
_UEFHIT,
|
|
1192
|
+
2,
|
|
1193
|
+
() => UpdateExpirationForHITRequest,
|
|
1194
|
+
() => UpdateExpirationForHITResponse,
|
|
1195
|
+
];
|
|
1196
|
+
var UpdateHITReviewStatus = [
|
|
1197
|
+
9,
|
|
1198
|
+
n0,
|
|
1199
|
+
_UHITRS,
|
|
1200
|
+
2,
|
|
1201
|
+
() => UpdateHITReviewStatusRequest,
|
|
1202
|
+
() => UpdateHITReviewStatusResponse,
|
|
1203
|
+
];
|
|
1204
|
+
var UpdateHITTypeOfHIT = [
|
|
1205
|
+
9,
|
|
1206
|
+
n0,
|
|
1207
|
+
_UHITTOHIT,
|
|
1208
|
+
2,
|
|
1209
|
+
() => UpdateHITTypeOfHITRequest,
|
|
1210
|
+
() => UpdateHITTypeOfHITResponse,
|
|
1211
|
+
];
|
|
1212
|
+
var UpdateNotificationSettings = [
|
|
1213
|
+
9,
|
|
1214
|
+
n0,
|
|
1215
|
+
_UNS,
|
|
1216
|
+
2,
|
|
1217
|
+
() => UpdateNotificationSettingsRequest,
|
|
1218
|
+
() => UpdateNotificationSettingsResponse,
|
|
1219
|
+
];
|
|
1220
|
+
var UpdateQualificationType = [
|
|
1221
|
+
9,
|
|
1222
|
+
n0,
|
|
1223
|
+
_UQT,
|
|
1224
|
+
0,
|
|
1225
|
+
() => UpdateQualificationTypeRequest,
|
|
1226
|
+
() => UpdateQualificationTypeResponse,
|
|
1227
|
+
];
|
|
1316
1228
|
|
|
1317
1229
|
class AcceptQualificationRequestCommand extends smithyClient.Command
|
|
1318
1230
|
.classBuilder()
|
|
1319
1231
|
.ep(commonParams)
|
|
1320
1232
|
.m(function (Command, cs, config, o) {
|
|
1321
|
-
return [
|
|
1322
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1323
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1324
|
-
];
|
|
1233
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1325
1234
|
})
|
|
1326
1235
|
.s("MTurkRequesterServiceV20170117", "AcceptQualificationRequest", {})
|
|
1327
1236
|
.n("MTurkClient", "AcceptQualificationRequestCommand")
|
|
1328
|
-
.
|
|
1329
|
-
.ser(se_AcceptQualificationRequestCommand)
|
|
1330
|
-
.de(de_AcceptQualificationRequestCommand)
|
|
1237
|
+
.sc(AcceptQualificationRequest)
|
|
1331
1238
|
.build() {
|
|
1332
1239
|
}
|
|
1333
1240
|
|
|
@@ -1335,16 +1242,11 @@ class ApproveAssignmentCommand extends smithyClient.Command
|
|
|
1335
1242
|
.classBuilder()
|
|
1336
1243
|
.ep(commonParams)
|
|
1337
1244
|
.m(function (Command, cs, config, o) {
|
|
1338
|
-
return [
|
|
1339
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1340
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1341
|
-
];
|
|
1245
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1342
1246
|
})
|
|
1343
1247
|
.s("MTurkRequesterServiceV20170117", "ApproveAssignment", {})
|
|
1344
1248
|
.n("MTurkClient", "ApproveAssignmentCommand")
|
|
1345
|
-
.
|
|
1346
|
-
.ser(se_ApproveAssignmentCommand)
|
|
1347
|
-
.de(de_ApproveAssignmentCommand)
|
|
1249
|
+
.sc(ApproveAssignment)
|
|
1348
1250
|
.build() {
|
|
1349
1251
|
}
|
|
1350
1252
|
|
|
@@ -1352,16 +1254,11 @@ class AssociateQualificationWithWorkerCommand extends smithyClient.Command
|
|
|
1352
1254
|
.classBuilder()
|
|
1353
1255
|
.ep(commonParams)
|
|
1354
1256
|
.m(function (Command, cs, config, o) {
|
|
1355
|
-
return [
|
|
1356
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1357
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1358
|
-
];
|
|
1257
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1359
1258
|
})
|
|
1360
1259
|
.s("MTurkRequesterServiceV20170117", "AssociateQualificationWithWorker", {})
|
|
1361
1260
|
.n("MTurkClient", "AssociateQualificationWithWorkerCommand")
|
|
1362
|
-
.
|
|
1363
|
-
.ser(se_AssociateQualificationWithWorkerCommand)
|
|
1364
|
-
.de(de_AssociateQualificationWithWorkerCommand)
|
|
1261
|
+
.sc(AssociateQualificationWithWorker)
|
|
1365
1262
|
.build() {
|
|
1366
1263
|
}
|
|
1367
1264
|
|
|
@@ -1369,16 +1266,11 @@ class CreateAdditionalAssignmentsForHITCommand extends smithyClient.Command
|
|
|
1369
1266
|
.classBuilder()
|
|
1370
1267
|
.ep(commonParams)
|
|
1371
1268
|
.m(function (Command, cs, config, o) {
|
|
1372
|
-
return [
|
|
1373
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1374
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1375
|
-
];
|
|
1269
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1376
1270
|
})
|
|
1377
1271
|
.s("MTurkRequesterServiceV20170117", "CreateAdditionalAssignmentsForHIT", {})
|
|
1378
1272
|
.n("MTurkClient", "CreateAdditionalAssignmentsForHITCommand")
|
|
1379
|
-
.
|
|
1380
|
-
.ser(se_CreateAdditionalAssignmentsForHITCommand)
|
|
1381
|
-
.de(de_CreateAdditionalAssignmentsForHITCommand)
|
|
1273
|
+
.sc(CreateAdditionalAssignmentsForHIT)
|
|
1382
1274
|
.build() {
|
|
1383
1275
|
}
|
|
1384
1276
|
|
|
@@ -1386,16 +1278,11 @@ class CreateHITCommand extends smithyClient.Command
|
|
|
1386
1278
|
.classBuilder()
|
|
1387
1279
|
.ep(commonParams)
|
|
1388
1280
|
.m(function (Command, cs, config, o) {
|
|
1389
|
-
return [
|
|
1390
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1391
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1392
|
-
];
|
|
1281
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1393
1282
|
})
|
|
1394
1283
|
.s("MTurkRequesterServiceV20170117", "CreateHIT", {})
|
|
1395
1284
|
.n("MTurkClient", "CreateHITCommand")
|
|
1396
|
-
.
|
|
1397
|
-
.ser(se_CreateHITCommand)
|
|
1398
|
-
.de(de_CreateHITCommand)
|
|
1285
|
+
.sc(CreateHIT)
|
|
1399
1286
|
.build() {
|
|
1400
1287
|
}
|
|
1401
1288
|
|
|
@@ -1403,16 +1290,11 @@ class CreateHITTypeCommand extends smithyClient.Command
|
|
|
1403
1290
|
.classBuilder()
|
|
1404
1291
|
.ep(commonParams)
|
|
1405
1292
|
.m(function (Command, cs, config, o) {
|
|
1406
|
-
return [
|
|
1407
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1408
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1409
|
-
];
|
|
1293
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1410
1294
|
})
|
|
1411
1295
|
.s("MTurkRequesterServiceV20170117", "CreateHITType", {})
|
|
1412
1296
|
.n("MTurkClient", "CreateHITTypeCommand")
|
|
1413
|
-
.
|
|
1414
|
-
.ser(se_CreateHITTypeCommand)
|
|
1415
|
-
.de(de_CreateHITTypeCommand)
|
|
1297
|
+
.sc(CreateHITType)
|
|
1416
1298
|
.build() {
|
|
1417
1299
|
}
|
|
1418
1300
|
|
|
@@ -1420,16 +1302,11 @@ class CreateHITWithHITTypeCommand extends smithyClient.Command
|
|
|
1420
1302
|
.classBuilder()
|
|
1421
1303
|
.ep(commonParams)
|
|
1422
1304
|
.m(function (Command, cs, config, o) {
|
|
1423
|
-
return [
|
|
1424
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1425
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1426
|
-
];
|
|
1305
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1427
1306
|
})
|
|
1428
1307
|
.s("MTurkRequesterServiceV20170117", "CreateHITWithHITType", {})
|
|
1429
1308
|
.n("MTurkClient", "CreateHITWithHITTypeCommand")
|
|
1430
|
-
.
|
|
1431
|
-
.ser(se_CreateHITWithHITTypeCommand)
|
|
1432
|
-
.de(de_CreateHITWithHITTypeCommand)
|
|
1309
|
+
.sc(CreateHITWithHITType)
|
|
1433
1310
|
.build() {
|
|
1434
1311
|
}
|
|
1435
1312
|
|
|
@@ -1437,16 +1314,11 @@ class CreateQualificationTypeCommand extends smithyClient.Command
|
|
|
1437
1314
|
.classBuilder()
|
|
1438
1315
|
.ep(commonParams)
|
|
1439
1316
|
.m(function (Command, cs, config, o) {
|
|
1440
|
-
return [
|
|
1441
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1442
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1443
|
-
];
|
|
1317
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1444
1318
|
})
|
|
1445
1319
|
.s("MTurkRequesterServiceV20170117", "CreateQualificationType", {})
|
|
1446
1320
|
.n("MTurkClient", "CreateQualificationTypeCommand")
|
|
1447
|
-
.
|
|
1448
|
-
.ser(se_CreateQualificationTypeCommand)
|
|
1449
|
-
.de(de_CreateQualificationTypeCommand)
|
|
1321
|
+
.sc(CreateQualificationType)
|
|
1450
1322
|
.build() {
|
|
1451
1323
|
}
|
|
1452
1324
|
|
|
@@ -1454,16 +1326,11 @@ class CreateWorkerBlockCommand extends smithyClient.Command
|
|
|
1454
1326
|
.classBuilder()
|
|
1455
1327
|
.ep(commonParams)
|
|
1456
1328
|
.m(function (Command, cs, config, o) {
|
|
1457
|
-
return [
|
|
1458
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1459
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1460
|
-
];
|
|
1329
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1461
1330
|
})
|
|
1462
1331
|
.s("MTurkRequesterServiceV20170117", "CreateWorkerBlock", {})
|
|
1463
1332
|
.n("MTurkClient", "CreateWorkerBlockCommand")
|
|
1464
|
-
.
|
|
1465
|
-
.ser(se_CreateWorkerBlockCommand)
|
|
1466
|
-
.de(de_CreateWorkerBlockCommand)
|
|
1333
|
+
.sc(CreateWorkerBlock)
|
|
1467
1334
|
.build() {
|
|
1468
1335
|
}
|
|
1469
1336
|
|
|
@@ -1471,16 +1338,11 @@ class DeleteHITCommand extends smithyClient.Command
|
|
|
1471
1338
|
.classBuilder()
|
|
1472
1339
|
.ep(commonParams)
|
|
1473
1340
|
.m(function (Command, cs, config, o) {
|
|
1474
|
-
return [
|
|
1475
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1476
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1477
|
-
];
|
|
1341
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1478
1342
|
})
|
|
1479
1343
|
.s("MTurkRequesterServiceV20170117", "DeleteHIT", {})
|
|
1480
1344
|
.n("MTurkClient", "DeleteHITCommand")
|
|
1481
|
-
.
|
|
1482
|
-
.ser(se_DeleteHITCommand)
|
|
1483
|
-
.de(de_DeleteHITCommand)
|
|
1345
|
+
.sc(DeleteHIT)
|
|
1484
1346
|
.build() {
|
|
1485
1347
|
}
|
|
1486
1348
|
|
|
@@ -1488,16 +1350,11 @@ class DeleteQualificationTypeCommand extends smithyClient.Command
|
|
|
1488
1350
|
.classBuilder()
|
|
1489
1351
|
.ep(commonParams)
|
|
1490
1352
|
.m(function (Command, cs, config, o) {
|
|
1491
|
-
return [
|
|
1492
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1493
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1494
|
-
];
|
|
1353
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1495
1354
|
})
|
|
1496
1355
|
.s("MTurkRequesterServiceV20170117", "DeleteQualificationType", {})
|
|
1497
1356
|
.n("MTurkClient", "DeleteQualificationTypeCommand")
|
|
1498
|
-
.
|
|
1499
|
-
.ser(se_DeleteQualificationTypeCommand)
|
|
1500
|
-
.de(de_DeleteQualificationTypeCommand)
|
|
1357
|
+
.sc(DeleteQualificationType)
|
|
1501
1358
|
.build() {
|
|
1502
1359
|
}
|
|
1503
1360
|
|
|
@@ -1505,16 +1362,11 @@ class DeleteWorkerBlockCommand extends smithyClient.Command
|
|
|
1505
1362
|
.classBuilder()
|
|
1506
1363
|
.ep(commonParams)
|
|
1507
1364
|
.m(function (Command, cs, config, o) {
|
|
1508
|
-
return [
|
|
1509
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1510
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1511
|
-
];
|
|
1365
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1512
1366
|
})
|
|
1513
1367
|
.s("MTurkRequesterServiceV20170117", "DeleteWorkerBlock", {})
|
|
1514
1368
|
.n("MTurkClient", "DeleteWorkerBlockCommand")
|
|
1515
|
-
.
|
|
1516
|
-
.ser(se_DeleteWorkerBlockCommand)
|
|
1517
|
-
.de(de_DeleteWorkerBlockCommand)
|
|
1369
|
+
.sc(DeleteWorkerBlock)
|
|
1518
1370
|
.build() {
|
|
1519
1371
|
}
|
|
1520
1372
|
|
|
@@ -1522,16 +1374,11 @@ class DisassociateQualificationFromWorkerCommand extends smithyClient.Command
|
|
|
1522
1374
|
.classBuilder()
|
|
1523
1375
|
.ep(commonParams)
|
|
1524
1376
|
.m(function (Command, cs, config, o) {
|
|
1525
|
-
return [
|
|
1526
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1527
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1528
|
-
];
|
|
1377
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1529
1378
|
})
|
|
1530
1379
|
.s("MTurkRequesterServiceV20170117", "DisassociateQualificationFromWorker", {})
|
|
1531
1380
|
.n("MTurkClient", "DisassociateQualificationFromWorkerCommand")
|
|
1532
|
-
.
|
|
1533
|
-
.ser(se_DisassociateQualificationFromWorkerCommand)
|
|
1534
|
-
.de(de_DisassociateQualificationFromWorkerCommand)
|
|
1381
|
+
.sc(DisassociateQualificationFromWorker)
|
|
1535
1382
|
.build() {
|
|
1536
1383
|
}
|
|
1537
1384
|
|
|
@@ -1539,16 +1386,11 @@ class GetAccountBalanceCommand extends smithyClient.Command
|
|
|
1539
1386
|
.classBuilder()
|
|
1540
1387
|
.ep(commonParams)
|
|
1541
1388
|
.m(function (Command, cs, config, o) {
|
|
1542
|
-
return [
|
|
1543
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1544
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1545
|
-
];
|
|
1389
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1546
1390
|
})
|
|
1547
1391
|
.s("MTurkRequesterServiceV20170117", "GetAccountBalance", {})
|
|
1548
1392
|
.n("MTurkClient", "GetAccountBalanceCommand")
|
|
1549
|
-
.
|
|
1550
|
-
.ser(se_GetAccountBalanceCommand)
|
|
1551
|
-
.de(de_GetAccountBalanceCommand)
|
|
1393
|
+
.sc(GetAccountBalance)
|
|
1552
1394
|
.build() {
|
|
1553
1395
|
}
|
|
1554
1396
|
|
|
@@ -1556,16 +1398,11 @@ class GetAssignmentCommand extends smithyClient.Command
|
|
|
1556
1398
|
.classBuilder()
|
|
1557
1399
|
.ep(commonParams)
|
|
1558
1400
|
.m(function (Command, cs, config, o) {
|
|
1559
|
-
return [
|
|
1560
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1561
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1562
|
-
];
|
|
1401
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1563
1402
|
})
|
|
1564
1403
|
.s("MTurkRequesterServiceV20170117", "GetAssignment", {})
|
|
1565
1404
|
.n("MTurkClient", "GetAssignmentCommand")
|
|
1566
|
-
.
|
|
1567
|
-
.ser(se_GetAssignmentCommand)
|
|
1568
|
-
.de(de_GetAssignmentCommand)
|
|
1405
|
+
.sc(GetAssignment)
|
|
1569
1406
|
.build() {
|
|
1570
1407
|
}
|
|
1571
1408
|
|
|
@@ -1573,16 +1410,11 @@ class GetFileUploadURLCommand extends smithyClient.Command
|
|
|
1573
1410
|
.classBuilder()
|
|
1574
1411
|
.ep(commonParams)
|
|
1575
1412
|
.m(function (Command, cs, config, o) {
|
|
1576
|
-
return [
|
|
1577
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1578
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1579
|
-
];
|
|
1413
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1580
1414
|
})
|
|
1581
1415
|
.s("MTurkRequesterServiceV20170117", "GetFileUploadURL", {})
|
|
1582
1416
|
.n("MTurkClient", "GetFileUploadURLCommand")
|
|
1583
|
-
.
|
|
1584
|
-
.ser(se_GetFileUploadURLCommand)
|
|
1585
|
-
.de(de_GetFileUploadURLCommand)
|
|
1417
|
+
.sc(GetFileUploadURL)
|
|
1586
1418
|
.build() {
|
|
1587
1419
|
}
|
|
1588
1420
|
|
|
@@ -1590,16 +1422,11 @@ class GetHITCommand extends smithyClient.Command
|
|
|
1590
1422
|
.classBuilder()
|
|
1591
1423
|
.ep(commonParams)
|
|
1592
1424
|
.m(function (Command, cs, config, o) {
|
|
1593
|
-
return [
|
|
1594
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1595
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1596
|
-
];
|
|
1425
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1597
1426
|
})
|
|
1598
1427
|
.s("MTurkRequesterServiceV20170117", "GetHIT", {})
|
|
1599
1428
|
.n("MTurkClient", "GetHITCommand")
|
|
1600
|
-
.
|
|
1601
|
-
.ser(se_GetHITCommand)
|
|
1602
|
-
.de(de_GetHITCommand)
|
|
1429
|
+
.sc(GetHIT)
|
|
1603
1430
|
.build() {
|
|
1604
1431
|
}
|
|
1605
1432
|
|
|
@@ -1607,16 +1434,11 @@ class GetQualificationScoreCommand extends smithyClient.Command
|
|
|
1607
1434
|
.classBuilder()
|
|
1608
1435
|
.ep(commonParams)
|
|
1609
1436
|
.m(function (Command, cs, config, o) {
|
|
1610
|
-
return [
|
|
1611
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1612
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1613
|
-
];
|
|
1437
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1614
1438
|
})
|
|
1615
1439
|
.s("MTurkRequesterServiceV20170117", "GetQualificationScore", {})
|
|
1616
1440
|
.n("MTurkClient", "GetQualificationScoreCommand")
|
|
1617
|
-
.
|
|
1618
|
-
.ser(se_GetQualificationScoreCommand)
|
|
1619
|
-
.de(de_GetQualificationScoreCommand)
|
|
1441
|
+
.sc(GetQualificationScore)
|
|
1620
1442
|
.build() {
|
|
1621
1443
|
}
|
|
1622
1444
|
|
|
@@ -1624,16 +1446,11 @@ class GetQualificationTypeCommand extends smithyClient.Command
|
|
|
1624
1446
|
.classBuilder()
|
|
1625
1447
|
.ep(commonParams)
|
|
1626
1448
|
.m(function (Command, cs, config, o) {
|
|
1627
|
-
return [
|
|
1628
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1629
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1630
|
-
];
|
|
1449
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1631
1450
|
})
|
|
1632
1451
|
.s("MTurkRequesterServiceV20170117", "GetQualificationType", {})
|
|
1633
1452
|
.n("MTurkClient", "GetQualificationTypeCommand")
|
|
1634
|
-
.
|
|
1635
|
-
.ser(se_GetQualificationTypeCommand)
|
|
1636
|
-
.de(de_GetQualificationTypeCommand)
|
|
1453
|
+
.sc(GetQualificationType)
|
|
1637
1454
|
.build() {
|
|
1638
1455
|
}
|
|
1639
1456
|
|
|
@@ -1641,16 +1458,11 @@ class ListAssignmentsForHITCommand extends smithyClient.Command
|
|
|
1641
1458
|
.classBuilder()
|
|
1642
1459
|
.ep(commonParams)
|
|
1643
1460
|
.m(function (Command, cs, config, o) {
|
|
1644
|
-
return [
|
|
1645
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1646
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1647
|
-
];
|
|
1461
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1648
1462
|
})
|
|
1649
1463
|
.s("MTurkRequesterServiceV20170117", "ListAssignmentsForHIT", {})
|
|
1650
1464
|
.n("MTurkClient", "ListAssignmentsForHITCommand")
|
|
1651
|
-
.
|
|
1652
|
-
.ser(se_ListAssignmentsForHITCommand)
|
|
1653
|
-
.de(de_ListAssignmentsForHITCommand)
|
|
1465
|
+
.sc(ListAssignmentsForHIT)
|
|
1654
1466
|
.build() {
|
|
1655
1467
|
}
|
|
1656
1468
|
|
|
@@ -1658,16 +1470,11 @@ class ListBonusPaymentsCommand extends smithyClient.Command
|
|
|
1658
1470
|
.classBuilder()
|
|
1659
1471
|
.ep(commonParams)
|
|
1660
1472
|
.m(function (Command, cs, config, o) {
|
|
1661
|
-
return [
|
|
1662
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1663
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1664
|
-
];
|
|
1473
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1665
1474
|
})
|
|
1666
1475
|
.s("MTurkRequesterServiceV20170117", "ListBonusPayments", {})
|
|
1667
1476
|
.n("MTurkClient", "ListBonusPaymentsCommand")
|
|
1668
|
-
.
|
|
1669
|
-
.ser(se_ListBonusPaymentsCommand)
|
|
1670
|
-
.de(de_ListBonusPaymentsCommand)
|
|
1477
|
+
.sc(ListBonusPayments)
|
|
1671
1478
|
.build() {
|
|
1672
1479
|
}
|
|
1673
1480
|
|
|
@@ -1675,16 +1482,11 @@ class ListHITsCommand extends smithyClient.Command
|
|
|
1675
1482
|
.classBuilder()
|
|
1676
1483
|
.ep(commonParams)
|
|
1677
1484
|
.m(function (Command, cs, config, o) {
|
|
1678
|
-
return [
|
|
1679
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1680
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1681
|
-
];
|
|
1485
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1682
1486
|
})
|
|
1683
1487
|
.s("MTurkRequesterServiceV20170117", "ListHITs", {})
|
|
1684
1488
|
.n("MTurkClient", "ListHITsCommand")
|
|
1685
|
-
.
|
|
1686
|
-
.ser(se_ListHITsCommand)
|
|
1687
|
-
.de(de_ListHITsCommand)
|
|
1489
|
+
.sc(ListHITs)
|
|
1688
1490
|
.build() {
|
|
1689
1491
|
}
|
|
1690
1492
|
|
|
@@ -1692,16 +1494,11 @@ class ListHITsForQualificationTypeCommand extends smithyClient.Command
|
|
|
1692
1494
|
.classBuilder()
|
|
1693
1495
|
.ep(commonParams)
|
|
1694
1496
|
.m(function (Command, cs, config, o) {
|
|
1695
|
-
return [
|
|
1696
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1697
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1698
|
-
];
|
|
1497
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1699
1498
|
})
|
|
1700
1499
|
.s("MTurkRequesterServiceV20170117", "ListHITsForQualificationType", {})
|
|
1701
1500
|
.n("MTurkClient", "ListHITsForQualificationTypeCommand")
|
|
1702
|
-
.
|
|
1703
|
-
.ser(se_ListHITsForQualificationTypeCommand)
|
|
1704
|
-
.de(de_ListHITsForQualificationTypeCommand)
|
|
1501
|
+
.sc(ListHITsForQualificationType)
|
|
1705
1502
|
.build() {
|
|
1706
1503
|
}
|
|
1707
1504
|
|
|
@@ -1709,16 +1506,11 @@ class ListQualificationRequestsCommand extends smithyClient.Command
|
|
|
1709
1506
|
.classBuilder()
|
|
1710
1507
|
.ep(commonParams)
|
|
1711
1508
|
.m(function (Command, cs, config, o) {
|
|
1712
|
-
return [
|
|
1713
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1714
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1715
|
-
];
|
|
1509
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1716
1510
|
})
|
|
1717
1511
|
.s("MTurkRequesterServiceV20170117", "ListQualificationRequests", {})
|
|
1718
1512
|
.n("MTurkClient", "ListQualificationRequestsCommand")
|
|
1719
|
-
.
|
|
1720
|
-
.ser(se_ListQualificationRequestsCommand)
|
|
1721
|
-
.de(de_ListQualificationRequestsCommand)
|
|
1513
|
+
.sc(ListQualificationRequests)
|
|
1722
1514
|
.build() {
|
|
1723
1515
|
}
|
|
1724
1516
|
|
|
@@ -1726,16 +1518,11 @@ class ListQualificationTypesCommand extends smithyClient.Command
|
|
|
1726
1518
|
.classBuilder()
|
|
1727
1519
|
.ep(commonParams)
|
|
1728
1520
|
.m(function (Command, cs, config, o) {
|
|
1729
|
-
return [
|
|
1730
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1731
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1732
|
-
];
|
|
1521
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1733
1522
|
})
|
|
1734
1523
|
.s("MTurkRequesterServiceV20170117", "ListQualificationTypes", {})
|
|
1735
1524
|
.n("MTurkClient", "ListQualificationTypesCommand")
|
|
1736
|
-
.
|
|
1737
|
-
.ser(se_ListQualificationTypesCommand)
|
|
1738
|
-
.de(de_ListQualificationTypesCommand)
|
|
1525
|
+
.sc(ListQualificationTypes)
|
|
1739
1526
|
.build() {
|
|
1740
1527
|
}
|
|
1741
1528
|
|
|
@@ -1743,16 +1530,11 @@ class ListReviewableHITsCommand extends smithyClient.Command
|
|
|
1743
1530
|
.classBuilder()
|
|
1744
1531
|
.ep(commonParams)
|
|
1745
1532
|
.m(function (Command, cs, config, o) {
|
|
1746
|
-
return [
|
|
1747
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1748
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1749
|
-
];
|
|
1533
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1750
1534
|
})
|
|
1751
1535
|
.s("MTurkRequesterServiceV20170117", "ListReviewableHITs", {})
|
|
1752
1536
|
.n("MTurkClient", "ListReviewableHITsCommand")
|
|
1753
|
-
.
|
|
1754
|
-
.ser(se_ListReviewableHITsCommand)
|
|
1755
|
-
.de(de_ListReviewableHITsCommand)
|
|
1537
|
+
.sc(ListReviewableHITs)
|
|
1756
1538
|
.build() {
|
|
1757
1539
|
}
|
|
1758
1540
|
|
|
@@ -1760,16 +1542,11 @@ class ListReviewPolicyResultsForHITCommand extends smithyClient.Command
|
|
|
1760
1542
|
.classBuilder()
|
|
1761
1543
|
.ep(commonParams)
|
|
1762
1544
|
.m(function (Command, cs, config, o) {
|
|
1763
|
-
return [
|
|
1764
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1765
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1766
|
-
];
|
|
1545
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1767
1546
|
})
|
|
1768
1547
|
.s("MTurkRequesterServiceV20170117", "ListReviewPolicyResultsForHIT", {})
|
|
1769
1548
|
.n("MTurkClient", "ListReviewPolicyResultsForHITCommand")
|
|
1770
|
-
.
|
|
1771
|
-
.ser(se_ListReviewPolicyResultsForHITCommand)
|
|
1772
|
-
.de(de_ListReviewPolicyResultsForHITCommand)
|
|
1549
|
+
.sc(ListReviewPolicyResultsForHIT)
|
|
1773
1550
|
.build() {
|
|
1774
1551
|
}
|
|
1775
1552
|
|
|
@@ -1777,16 +1554,11 @@ class ListWorkerBlocksCommand extends smithyClient.Command
|
|
|
1777
1554
|
.classBuilder()
|
|
1778
1555
|
.ep(commonParams)
|
|
1779
1556
|
.m(function (Command, cs, config, o) {
|
|
1780
|
-
return [
|
|
1781
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1782
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1783
|
-
];
|
|
1557
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1784
1558
|
})
|
|
1785
1559
|
.s("MTurkRequesterServiceV20170117", "ListWorkerBlocks", {})
|
|
1786
1560
|
.n("MTurkClient", "ListWorkerBlocksCommand")
|
|
1787
|
-
.
|
|
1788
|
-
.ser(se_ListWorkerBlocksCommand)
|
|
1789
|
-
.de(de_ListWorkerBlocksCommand)
|
|
1561
|
+
.sc(ListWorkerBlocks)
|
|
1790
1562
|
.build() {
|
|
1791
1563
|
}
|
|
1792
1564
|
|
|
@@ -1794,16 +1566,11 @@ class ListWorkersWithQualificationTypeCommand extends smithyClient.Command
|
|
|
1794
1566
|
.classBuilder()
|
|
1795
1567
|
.ep(commonParams)
|
|
1796
1568
|
.m(function (Command, cs, config, o) {
|
|
1797
|
-
return [
|
|
1798
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1799
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1800
|
-
];
|
|
1569
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1801
1570
|
})
|
|
1802
1571
|
.s("MTurkRequesterServiceV20170117", "ListWorkersWithQualificationType", {})
|
|
1803
1572
|
.n("MTurkClient", "ListWorkersWithQualificationTypeCommand")
|
|
1804
|
-
.
|
|
1805
|
-
.ser(se_ListWorkersWithQualificationTypeCommand)
|
|
1806
|
-
.de(de_ListWorkersWithQualificationTypeCommand)
|
|
1573
|
+
.sc(ListWorkersWithQualificationType)
|
|
1807
1574
|
.build() {
|
|
1808
1575
|
}
|
|
1809
1576
|
|
|
@@ -1811,16 +1578,11 @@ class NotifyWorkersCommand extends smithyClient.Command
|
|
|
1811
1578
|
.classBuilder()
|
|
1812
1579
|
.ep(commonParams)
|
|
1813
1580
|
.m(function (Command, cs, config, o) {
|
|
1814
|
-
return [
|
|
1815
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1816
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1817
|
-
];
|
|
1581
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1818
1582
|
})
|
|
1819
1583
|
.s("MTurkRequesterServiceV20170117", "NotifyWorkers", {})
|
|
1820
1584
|
.n("MTurkClient", "NotifyWorkersCommand")
|
|
1821
|
-
.
|
|
1822
|
-
.ser(se_NotifyWorkersCommand)
|
|
1823
|
-
.de(de_NotifyWorkersCommand)
|
|
1585
|
+
.sc(NotifyWorkers)
|
|
1824
1586
|
.build() {
|
|
1825
1587
|
}
|
|
1826
1588
|
|
|
@@ -1828,16 +1590,11 @@ class RejectAssignmentCommand extends smithyClient.Command
|
|
|
1828
1590
|
.classBuilder()
|
|
1829
1591
|
.ep(commonParams)
|
|
1830
1592
|
.m(function (Command, cs, config, o) {
|
|
1831
|
-
return [
|
|
1832
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1833
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1834
|
-
];
|
|
1593
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1835
1594
|
})
|
|
1836
1595
|
.s("MTurkRequesterServiceV20170117", "RejectAssignment", {})
|
|
1837
1596
|
.n("MTurkClient", "RejectAssignmentCommand")
|
|
1838
|
-
.
|
|
1839
|
-
.ser(se_RejectAssignmentCommand)
|
|
1840
|
-
.de(de_RejectAssignmentCommand)
|
|
1597
|
+
.sc(RejectAssignment)
|
|
1841
1598
|
.build() {
|
|
1842
1599
|
}
|
|
1843
1600
|
|
|
@@ -1845,16 +1602,11 @@ class RejectQualificationRequestCommand extends smithyClient.Command
|
|
|
1845
1602
|
.classBuilder()
|
|
1846
1603
|
.ep(commonParams)
|
|
1847
1604
|
.m(function (Command, cs, config, o) {
|
|
1848
|
-
return [
|
|
1849
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1850
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1851
|
-
];
|
|
1605
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1852
1606
|
})
|
|
1853
1607
|
.s("MTurkRequesterServiceV20170117", "RejectQualificationRequest", {})
|
|
1854
1608
|
.n("MTurkClient", "RejectQualificationRequestCommand")
|
|
1855
|
-
.
|
|
1856
|
-
.ser(se_RejectQualificationRequestCommand)
|
|
1857
|
-
.de(de_RejectQualificationRequestCommand)
|
|
1609
|
+
.sc(RejectQualificationRequest)
|
|
1858
1610
|
.build() {
|
|
1859
1611
|
}
|
|
1860
1612
|
|
|
@@ -1862,16 +1614,11 @@ class SendBonusCommand extends smithyClient.Command
|
|
|
1862
1614
|
.classBuilder()
|
|
1863
1615
|
.ep(commonParams)
|
|
1864
1616
|
.m(function (Command, cs, config, o) {
|
|
1865
|
-
return [
|
|
1866
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1867
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1868
|
-
];
|
|
1617
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1869
1618
|
})
|
|
1870
1619
|
.s("MTurkRequesterServiceV20170117", "SendBonus", {})
|
|
1871
1620
|
.n("MTurkClient", "SendBonusCommand")
|
|
1872
|
-
.
|
|
1873
|
-
.ser(se_SendBonusCommand)
|
|
1874
|
-
.de(de_SendBonusCommand)
|
|
1621
|
+
.sc(SendBonus)
|
|
1875
1622
|
.build() {
|
|
1876
1623
|
}
|
|
1877
1624
|
|
|
@@ -1879,16 +1626,11 @@ class SendTestEventNotificationCommand extends smithyClient.Command
|
|
|
1879
1626
|
.classBuilder()
|
|
1880
1627
|
.ep(commonParams)
|
|
1881
1628
|
.m(function (Command, cs, config, o) {
|
|
1882
|
-
return [
|
|
1883
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1884
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1885
|
-
];
|
|
1629
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1886
1630
|
})
|
|
1887
1631
|
.s("MTurkRequesterServiceV20170117", "SendTestEventNotification", {})
|
|
1888
1632
|
.n("MTurkClient", "SendTestEventNotificationCommand")
|
|
1889
|
-
.
|
|
1890
|
-
.ser(se_SendTestEventNotificationCommand)
|
|
1891
|
-
.de(de_SendTestEventNotificationCommand)
|
|
1633
|
+
.sc(SendTestEventNotification)
|
|
1892
1634
|
.build() {
|
|
1893
1635
|
}
|
|
1894
1636
|
|
|
@@ -1896,16 +1638,11 @@ class UpdateExpirationForHITCommand extends smithyClient.Command
|
|
|
1896
1638
|
.classBuilder()
|
|
1897
1639
|
.ep(commonParams)
|
|
1898
1640
|
.m(function (Command, cs, config, o) {
|
|
1899
|
-
return [
|
|
1900
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1901
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1902
|
-
];
|
|
1641
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1903
1642
|
})
|
|
1904
1643
|
.s("MTurkRequesterServiceV20170117", "UpdateExpirationForHIT", {})
|
|
1905
1644
|
.n("MTurkClient", "UpdateExpirationForHITCommand")
|
|
1906
|
-
.
|
|
1907
|
-
.ser(se_UpdateExpirationForHITCommand)
|
|
1908
|
-
.de(de_UpdateExpirationForHITCommand)
|
|
1645
|
+
.sc(UpdateExpirationForHIT)
|
|
1909
1646
|
.build() {
|
|
1910
1647
|
}
|
|
1911
1648
|
|
|
@@ -1913,16 +1650,11 @@ class UpdateHITReviewStatusCommand extends smithyClient.Command
|
|
|
1913
1650
|
.classBuilder()
|
|
1914
1651
|
.ep(commonParams)
|
|
1915
1652
|
.m(function (Command, cs, config, o) {
|
|
1916
|
-
return [
|
|
1917
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1918
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1919
|
-
];
|
|
1653
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1920
1654
|
})
|
|
1921
1655
|
.s("MTurkRequesterServiceV20170117", "UpdateHITReviewStatus", {})
|
|
1922
1656
|
.n("MTurkClient", "UpdateHITReviewStatusCommand")
|
|
1923
|
-
.
|
|
1924
|
-
.ser(se_UpdateHITReviewStatusCommand)
|
|
1925
|
-
.de(de_UpdateHITReviewStatusCommand)
|
|
1657
|
+
.sc(UpdateHITReviewStatus)
|
|
1926
1658
|
.build() {
|
|
1927
1659
|
}
|
|
1928
1660
|
|
|
@@ -1930,16 +1662,11 @@ class UpdateHITTypeOfHITCommand extends smithyClient.Command
|
|
|
1930
1662
|
.classBuilder()
|
|
1931
1663
|
.ep(commonParams)
|
|
1932
1664
|
.m(function (Command, cs, config, o) {
|
|
1933
|
-
return [
|
|
1934
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1935
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1936
|
-
];
|
|
1665
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1937
1666
|
})
|
|
1938
1667
|
.s("MTurkRequesterServiceV20170117", "UpdateHITTypeOfHIT", {})
|
|
1939
1668
|
.n("MTurkClient", "UpdateHITTypeOfHITCommand")
|
|
1940
|
-
.
|
|
1941
|
-
.ser(se_UpdateHITTypeOfHITCommand)
|
|
1942
|
-
.de(de_UpdateHITTypeOfHITCommand)
|
|
1669
|
+
.sc(UpdateHITTypeOfHIT)
|
|
1943
1670
|
.build() {
|
|
1944
1671
|
}
|
|
1945
1672
|
|
|
@@ -1947,16 +1674,11 @@ class UpdateNotificationSettingsCommand extends smithyClient.Command
|
|
|
1947
1674
|
.classBuilder()
|
|
1948
1675
|
.ep(commonParams)
|
|
1949
1676
|
.m(function (Command, cs, config, o) {
|
|
1950
|
-
return [
|
|
1951
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1952
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1953
|
-
];
|
|
1677
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1954
1678
|
})
|
|
1955
1679
|
.s("MTurkRequesterServiceV20170117", "UpdateNotificationSettings", {})
|
|
1956
1680
|
.n("MTurkClient", "UpdateNotificationSettingsCommand")
|
|
1957
|
-
.
|
|
1958
|
-
.ser(se_UpdateNotificationSettingsCommand)
|
|
1959
|
-
.de(de_UpdateNotificationSettingsCommand)
|
|
1681
|
+
.sc(UpdateNotificationSettings)
|
|
1960
1682
|
.build() {
|
|
1961
1683
|
}
|
|
1962
1684
|
|
|
@@ -1964,16 +1686,11 @@ class UpdateQualificationTypeCommand extends smithyClient.Command
|
|
|
1964
1686
|
.classBuilder()
|
|
1965
1687
|
.ep(commonParams)
|
|
1966
1688
|
.m(function (Command, cs, config, o) {
|
|
1967
|
-
return [
|
|
1968
|
-
middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
|
|
1969
|
-
middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1970
|
-
];
|
|
1689
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
1971
1690
|
})
|
|
1972
1691
|
.s("MTurkRequesterServiceV20170117", "UpdateQualificationType", {})
|
|
1973
1692
|
.n("MTurkClient", "UpdateQualificationTypeCommand")
|
|
1974
|
-
.
|
|
1975
|
-
.ser(se_UpdateQualificationTypeCommand)
|
|
1976
|
-
.de(de_UpdateQualificationTypeCommand)
|
|
1693
|
+
.sc(UpdateQualificationType)
|
|
1977
1694
|
.build() {
|
|
1978
1695
|
}
|
|
1979
1696
|
|
|
@@ -2087,7 +1804,7 @@ exports.ListWorkerBlocksCommand = ListWorkerBlocksCommand;
|
|
|
2087
1804
|
exports.ListWorkersWithQualificationTypeCommand = ListWorkersWithQualificationTypeCommand;
|
|
2088
1805
|
exports.MTurk = MTurk;
|
|
2089
1806
|
exports.MTurkClient = MTurkClient;
|
|
2090
|
-
exports.MTurkServiceException = MTurkServiceException;
|
|
1807
|
+
exports.MTurkServiceException = MTurkServiceException$1;
|
|
2091
1808
|
exports.NotificationTransport = NotificationTransport;
|
|
2092
1809
|
exports.NotifyWorkersCommand = NotifyWorkersCommand;
|
|
2093
1810
|
exports.NotifyWorkersFailureCode = NotifyWorkersFailureCode;
|
|
@@ -2095,13 +1812,13 @@ exports.QualificationStatus = QualificationStatus;
|
|
|
2095
1812
|
exports.QualificationTypeStatus = QualificationTypeStatus;
|
|
2096
1813
|
exports.RejectAssignmentCommand = RejectAssignmentCommand;
|
|
2097
1814
|
exports.RejectQualificationRequestCommand = RejectQualificationRequestCommand;
|
|
2098
|
-
exports.RequestError = RequestError;
|
|
1815
|
+
exports.RequestError = RequestError$1;
|
|
2099
1816
|
exports.ReviewActionStatus = ReviewActionStatus;
|
|
2100
1817
|
exports.ReviewPolicyLevel = ReviewPolicyLevel;
|
|
2101
1818
|
exports.ReviewableHITStatus = ReviewableHITStatus;
|
|
2102
1819
|
exports.SendBonusCommand = SendBonusCommand;
|
|
2103
1820
|
exports.SendTestEventNotificationCommand = SendTestEventNotificationCommand;
|
|
2104
|
-
exports.ServiceFault = ServiceFault;
|
|
1821
|
+
exports.ServiceFault = ServiceFault$1;
|
|
2105
1822
|
exports.UpdateExpirationForHITCommand = UpdateExpirationForHITCommand;
|
|
2106
1823
|
exports.UpdateHITReviewStatusCommand = UpdateHITReviewStatusCommand;
|
|
2107
1824
|
exports.UpdateHITTypeOfHITCommand = UpdateHITTypeOfHITCommand;
|