-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdevice-farm.json
10028 lines (10028 loc) · 402 KB
/
device-farm.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
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
{
"smithy": "2.0",
"metadata": {
"suppressions": [
{
"id": "HttpMethodSemantics",
"namespace": "*"
},
{
"id": "HttpResponseCodeSemantics",
"namespace": "*"
},
{
"id": "PaginatedTrait",
"namespace": "*"
},
{
"id": "HttpHeaderTrait",
"namespace": "*"
},
{
"id": "HttpUriConflict",
"namespace": "*"
},
{
"id": "Service",
"namespace": "*"
}
]
},
"shapes": {
"com.amazonaws.devicefarm#AWSAccountNumber": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 2,
"max": 16
}
}
},
"com.amazonaws.devicefarm#AccountSettings": {
"type": "structure",
"members": {
"awsAccountNumber": {
"target": "com.amazonaws.devicefarm#AWSAccountNumber",
"traits": {
"smithy.api#documentation": "<p>The AWS account number specified in the <code>AccountSettings</code>\n container.</p>"
}
},
"unmeteredDevices": {
"target": "com.amazonaws.devicefarm#PurchasedDevicesMap",
"traits": {
"smithy.api#documentation": "<p>Returns the unmetered devices you have purchased or want to purchase.</p>"
}
},
"unmeteredRemoteAccessDevices": {
"target": "com.amazonaws.devicefarm#PurchasedDevicesMap",
"traits": {
"smithy.api#documentation": "<p>Returns the unmetered remote access devices you have purchased or want to\n purchase.</p>"
}
},
"maxJobTimeoutMinutes": {
"target": "com.amazonaws.devicefarm#JobTimeoutMinutes",
"traits": {
"smithy.api#documentation": "<p>The maximum number of minutes a test run executes before it times out.</p>"
}
},
"trialMinutes": {
"target": "com.amazonaws.devicefarm#TrialMinutes",
"traits": {
"smithy.api#documentation": "<p>Information about an AWS account's usage of free trial device minutes.</p>"
}
},
"maxSlots": {
"target": "com.amazonaws.devicefarm#MaxSlotMap",
"traits": {
"smithy.api#documentation": "<p>The maximum number of device slots that the AWS account can purchase. Each maximum\n is expressed as an <code>offering-id:number</code> pair, where the\n <code>offering-id</code> represents one of the IDs returned by the\n <code>ListOfferings</code> command.</p>"
}
},
"defaultJobTimeoutMinutes": {
"target": "com.amazonaws.devicefarm#JobTimeoutMinutes",
"traits": {
"smithy.api#documentation": "<p>The default number of minutes (at the account level) a test run executes before it times out. The\n default value is 150 minutes.</p>"
}
},
"skipAppResign": {
"target": "com.amazonaws.devicefarm#SkipAppResign",
"traits": {
"smithy.api#documentation": "<p>When set to <code>true</code>, for private devices, Device Farm does not sign your app again. For public\n devices, Device Farm always signs your apps again.</p>\n <p>For more information about how Device Farm re-signs your apps, see <a href=\"http://aws.amazon.com/device-farm/faqs/\">Do you modify my app?</a> in the <i>AWS Device\n Farm FAQs</i>.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>A container for account-level settings in AWS Device Farm.</p>"
}
},
"com.amazonaws.devicefarm#AccountsCleanup": {
"type": "boolean"
},
"com.amazonaws.devicefarm#AmazonResourceName": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 32,
"max": 1011
},
"smithy.api#pattern": "^arn:.+$"
}
},
"com.amazonaws.devicefarm#AmazonResourceNames": {
"type": "list",
"member": {
"target": "com.amazonaws.devicefarm#AmazonResourceName"
}
},
"com.amazonaws.devicefarm#AndroidPaths": {
"type": "list",
"member": {
"target": "com.amazonaws.devicefarm#String"
}
},
"com.amazonaws.devicefarm#AppPackagesCleanup": {
"type": "boolean"
},
"com.amazonaws.devicefarm#ArgumentException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.devicefarm#Message",
"traits": {
"smithy.api#documentation": "<p>Any additional information about the exception.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>An invalid argument was specified.</p>",
"smithy.api#error": "client"
}
},
"com.amazonaws.devicefarm#Artifact": {
"type": "structure",
"members": {
"arn": {
"target": "com.amazonaws.devicefarm#AmazonResourceName",
"traits": {
"smithy.api#documentation": "<p>The artifact's ARN.</p>"
}
},
"name": {
"target": "com.amazonaws.devicefarm#Name",
"traits": {
"smithy.api#documentation": "<p>The artifact's name.</p>"
}
},
"type": {
"target": "com.amazonaws.devicefarm#ArtifactType",
"traits": {
"smithy.api#documentation": "<p>The artifact's type.</p>\n <p>Allowed values include the following:</p>\n <ul>\n <li>\n <p>UNKNOWN</p>\n </li>\n <li>\n <p>SCREENSHOT</p>\n </li>\n <li>\n <p>DEVICE_LOG</p>\n </li>\n <li>\n <p>MESSAGE_LOG</p>\n </li>\n <li>\n <p>VIDEO_LOG</p>\n </li>\n <li>\n <p>RESULT_LOG</p>\n </li>\n <li>\n <p>SERVICE_LOG</p>\n </li>\n <li>\n <p>WEBKIT_LOG</p>\n </li>\n <li>\n <p>INSTRUMENTATION_OUTPUT</p>\n </li>\n <li>\n <p>EXERCISER_MONKEY_OUTPUT: the artifact (log) generated by an Android fuzz test.</p>\n </li>\n <li>\n <p>CALABASH_JSON_OUTPUT</p>\n </li>\n <li>\n <p>CALABASH_PRETTY_OUTPUT</p>\n </li>\n <li>\n <p>CALABASH_STANDARD_OUTPUT</p>\n </li>\n <li>\n <p>CALABASH_JAVA_XML_OUTPUT</p>\n </li>\n <li>\n <p>AUTOMATION_OUTPUT</p>\n </li>\n <li>\n <p>APPIUM_SERVER_OUTPUT</p>\n </li>\n <li>\n <p>APPIUM_JAVA_OUTPUT</p>\n </li>\n <li>\n <p>APPIUM_JAVA_XML_OUTPUT</p>\n </li>\n <li>\n <p>APPIUM_PYTHON_OUTPUT</p>\n </li>\n <li>\n <p>APPIUM_PYTHON_XML_OUTPUT</p>\n </li>\n <li>\n <p>EXPLORER_EVENT_LOG</p>\n </li>\n <li>\n <p>EXPLORER_SUMMARY_LOG</p>\n </li>\n <li>\n <p>APPLICATION_CRASH_REPORT</p>\n </li>\n <li>\n <p>XCTEST_LOG</p>\n </li>\n <li>\n <p>VIDEO</p>\n </li>\n <li>\n <p>CUSTOMER_ARTIFACT</p>\n </li>\n <li>\n <p>CUSTOMER_ARTIFACT_LOG</p>\n </li>\n <li>\n <p>TESTSPEC_OUTPUT</p>\n </li>\n </ul>"
}
},
"extension": {
"target": "com.amazonaws.devicefarm#String",
"traits": {
"smithy.api#documentation": "<p>The artifact's file extension.</p>"
}
},
"url": {
"target": "com.amazonaws.devicefarm#URL",
"traits": {
"smithy.api#documentation": "<p>The presigned Amazon S3 URL that can be used with a GET request to download the artifact's\n file.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents the output of a test. Examples of artifacts include logs and\n screenshots.</p>"
}
},
"com.amazonaws.devicefarm#ArtifactCategory": {
"type": "enum",
"members": {
"SCREENSHOT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "SCREENSHOT"
}
},
"FILE": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "FILE"
}
},
"LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "LOG"
}
}
}
},
"com.amazonaws.devicefarm#ArtifactType": {
"type": "enum",
"members": {
"UNKNOWN": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "UNKNOWN"
}
},
"SCREENSHOT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "SCREENSHOT"
}
},
"DEVICE_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "DEVICE_LOG"
}
},
"MESSAGE_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "MESSAGE_LOG"
}
},
"VIDEO_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "VIDEO_LOG"
}
},
"RESULT_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "RESULT_LOG"
}
},
"SERVICE_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "SERVICE_LOG"
}
},
"WEBKIT_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "WEBKIT_LOG"
}
},
"INSTRUMENTATION_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "INSTRUMENTATION_OUTPUT"
}
},
"EXERCISER_MONKEY_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "EXERCISER_MONKEY_OUTPUT"
}
},
"CALABASH_JSON_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "CALABASH_JSON_OUTPUT"
}
},
"CALABASH_PRETTY_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "CALABASH_PRETTY_OUTPUT"
}
},
"CALABASH_STANDARD_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "CALABASH_STANDARD_OUTPUT"
}
},
"CALABASH_JAVA_XML_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "CALABASH_JAVA_XML_OUTPUT"
}
},
"AUTOMATION_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "AUTOMATION_OUTPUT"
}
},
"APPIUM_SERVER_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "APPIUM_SERVER_OUTPUT"
}
},
"APPIUM_JAVA_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "APPIUM_JAVA_OUTPUT"
}
},
"APPIUM_JAVA_XML_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "APPIUM_JAVA_XML_OUTPUT"
}
},
"APPIUM_PYTHON_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "APPIUM_PYTHON_OUTPUT"
}
},
"APPIUM_PYTHON_XML_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "APPIUM_PYTHON_XML_OUTPUT"
}
},
"EXPLORER_EVENT_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "EXPLORER_EVENT_LOG"
}
},
"EXPLORER_SUMMARY_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "EXPLORER_SUMMARY_LOG"
}
},
"APPLICATION_CRASH_REPORT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "APPLICATION_CRASH_REPORT"
}
},
"XCTEST_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "XCTEST_LOG"
}
},
"VIDEO": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "VIDEO"
}
},
"CUSTOMER_ARTIFACT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "CUSTOMER_ARTIFACT"
}
},
"CUSTOMER_ARTIFACT_LOG": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "CUSTOMER_ARTIFACT_LOG"
}
},
"TESTSPEC_OUTPUT": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "TESTSPEC_OUTPUT"
}
}
}
},
"com.amazonaws.devicefarm#Artifacts": {
"type": "list",
"member": {
"target": "com.amazonaws.devicefarm#Artifact"
}
},
"com.amazonaws.devicefarm#BillingMethod": {
"type": "enum",
"members": {
"METERED": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "METERED"
}
},
"UNMETERED": {
"target": "smithy.api#Unit",
"traits": {
"smithy.api#enumValue": "UNMETERED"
}
}
}
},
"com.amazonaws.devicefarm#Boolean": {
"type": "boolean"
},
"com.amazonaws.devicefarm#CPU": {
"type": "structure",
"members": {
"frequency": {
"target": "com.amazonaws.devicefarm#String",
"traits": {
"smithy.api#documentation": "<p>The CPU's frequency.</p>"
}
},
"architecture": {
"target": "com.amazonaws.devicefarm#String",
"traits": {
"smithy.api#documentation": "<p>The CPU's architecture (for example, x86 or ARM).</p>"
}
},
"clock": {
"target": "com.amazonaws.devicefarm#Double",
"traits": {
"smithy.api#documentation": "<p>The clock speed of the device's CPU, expressed in hertz (Hz). For example, a 1.2\n GHz CPU is expressed as 1200000000.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents the amount of CPU that an app is using on a physical device. Does not represent system-wide\n CPU usage.</p>"
}
},
"com.amazonaws.devicefarm#CannotDeleteException": {
"type": "structure",
"members": {
"message": {
"target": "com.amazonaws.devicefarm#Message"
}
},
"traits": {
"smithy.api#documentation": "<p>The requested object could not be deleted.</p>",
"smithy.api#error": "client",
"smithy.api#httpError": 409
}
},
"com.amazonaws.devicefarm#ClientId": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 64
}
}
},
"com.amazonaws.devicefarm#ContentType": {
"type": "string",
"traits": {
"smithy.api#length": {
"min": 0,
"max": 64
}
}
},
"com.amazonaws.devicefarm#Counters": {
"type": "structure",
"members": {
"total": {
"target": "com.amazonaws.devicefarm#Integer",
"traits": {
"smithy.api#documentation": "<p>The total number of entities.</p>"
}
},
"passed": {
"target": "com.amazonaws.devicefarm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of passed entities.</p>"
}
},
"failed": {
"target": "com.amazonaws.devicefarm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of failed entities.</p>"
}
},
"warned": {
"target": "com.amazonaws.devicefarm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of warned entities.</p>"
}
},
"errored": {
"target": "com.amazonaws.devicefarm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of errored entities.</p>"
}
},
"stopped": {
"target": "com.amazonaws.devicefarm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of stopped entities.</p>"
}
},
"skipped": {
"target": "com.amazonaws.devicefarm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of skipped entities.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents entity counters.</p>"
}
},
"com.amazonaws.devicefarm#CreateDevicePool": {
"type": "operation",
"input": {
"target": "com.amazonaws.devicefarm#CreateDevicePoolRequest"
},
"output": {
"target": "com.amazonaws.devicefarm#CreateDevicePoolResult"
},
"errors": [
{
"target": "com.amazonaws.devicefarm#ArgumentException"
},
{
"target": "com.amazonaws.devicefarm#LimitExceededException"
},
{
"target": "com.amazonaws.devicefarm#NotFoundException"
},
{
"target": "com.amazonaws.devicefarm#ServiceAccountException"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a device pool.</p>"
}
},
"com.amazonaws.devicefarm#CreateDevicePoolRequest": {
"type": "structure",
"members": {
"projectArn": {
"target": "com.amazonaws.devicefarm#AmazonResourceName",
"traits": {
"smithy.api#documentation": "<p>The ARN of the project for the device pool.</p>",
"smithy.api#required": {}
}
},
"name": {
"target": "com.amazonaws.devicefarm#Name",
"traits": {
"smithy.api#documentation": "<p>The device pool's name.</p>",
"smithy.api#required": {}
}
},
"description": {
"target": "com.amazonaws.devicefarm#Message",
"traits": {
"smithy.api#documentation": "<p>The device pool's description.</p>"
}
},
"rules": {
"target": "com.amazonaws.devicefarm#Rules",
"traits": {
"smithy.api#documentation": "<p>The device pool's rules.</p>",
"smithy.api#required": {}
}
},
"maxDevices": {
"target": "com.amazonaws.devicefarm#Integer",
"traits": {
"smithy.api#documentation": "<p>The number of devices that Device Farm can add to your device pool. Device Farm adds devices that are\n available and meet the criteria that you assign for the <code>rules</code> parameter. Depending on how many\n devices meet these constraints, your device pool might contain fewer devices than the value for this\n parameter.</p>\n <p>By specifying the maximum number of devices, you can control the costs that you incur\n by running tests.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents a request to the create device pool operation.</p>"
}
},
"com.amazonaws.devicefarm#CreateDevicePoolResult": {
"type": "structure",
"members": {
"devicePool": {
"target": "com.amazonaws.devicefarm#DevicePool",
"traits": {
"smithy.api#documentation": "<p>The newly created device pool.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents the result of a create device pool request.</p>"
}
},
"com.amazonaws.devicefarm#CreateInstanceProfile": {
"type": "operation",
"input": {
"target": "com.amazonaws.devicefarm#CreateInstanceProfileRequest"
},
"output": {
"target": "com.amazonaws.devicefarm#CreateInstanceProfileResult"
},
"errors": [
{
"target": "com.amazonaws.devicefarm#ArgumentException"
},
{
"target": "com.amazonaws.devicefarm#LimitExceededException"
},
{
"target": "com.amazonaws.devicefarm#NotFoundException"
},
{
"target": "com.amazonaws.devicefarm#ServiceAccountException"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a profile that can be applied to one or more private fleet device\n instances.</p>"
}
},
"com.amazonaws.devicefarm#CreateInstanceProfileRequest": {
"type": "structure",
"members": {
"name": {
"target": "com.amazonaws.devicefarm#Name",
"traits": {
"smithy.api#documentation": "<p>The name of your instance profile.</p>",
"smithy.api#required": {}
}
},
"description": {
"target": "com.amazonaws.devicefarm#Message",
"traits": {
"smithy.api#documentation": "<p>The description of your instance profile.</p>"
}
},
"packageCleanup": {
"target": "com.amazonaws.devicefarm#Boolean",
"traits": {
"smithy.api#documentation": "<p>When set to <code>true</code>, Device Farm removes app packages after a test run. The default value is\n <code>false</code> for private devices.</p>"
}
},
"excludeAppPackagesFromCleanup": {
"target": "com.amazonaws.devicefarm#PackageIds",
"traits": {
"smithy.api#documentation": "<p>An array of strings that specifies the list of app packages that should not be cleaned up from the device\n after a test run.</p>\n <p>The list of packages is considered only if you set <code>packageCleanup</code> to\n <code>true</code>.</p>"
}
},
"rebootAfterUse": {
"target": "com.amazonaws.devicefarm#Boolean",
"traits": {
"smithy.api#documentation": "<p>When set to <code>true</code>, Device Farm reboots the instance after a test run. The default value is\n <code>true</code>.</p>"
}
}
}
},
"com.amazonaws.devicefarm#CreateInstanceProfileResult": {
"type": "structure",
"members": {
"instanceProfile": {
"target": "com.amazonaws.devicefarm#InstanceProfile",
"traits": {
"smithy.api#documentation": "<p>An object that contains information about your instance profile.</p>"
}
}
}
},
"com.amazonaws.devicefarm#CreateNetworkProfile": {
"type": "operation",
"input": {
"target": "com.amazonaws.devicefarm#CreateNetworkProfileRequest"
},
"output": {
"target": "com.amazonaws.devicefarm#CreateNetworkProfileResult"
},
"errors": [
{
"target": "com.amazonaws.devicefarm#ArgumentException"
},
{
"target": "com.amazonaws.devicefarm#LimitExceededException"
},
{
"target": "com.amazonaws.devicefarm#NotFoundException"
},
{
"target": "com.amazonaws.devicefarm#ServiceAccountException"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a network profile.</p>"
}
},
"com.amazonaws.devicefarm#CreateNetworkProfileRequest": {
"type": "structure",
"members": {
"projectArn": {
"target": "com.amazonaws.devicefarm#AmazonResourceName",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the project for which you want to create a\n network profile.</p>",
"smithy.api#required": {}
}
},
"name": {
"target": "com.amazonaws.devicefarm#Name",
"traits": {
"smithy.api#documentation": "<p>The name for the new network profile.</p>",
"smithy.api#required": {}
}
},
"description": {
"target": "com.amazonaws.devicefarm#Message",
"traits": {
"smithy.api#documentation": "<p>The description of the network profile.</p>"
}
},
"type": {
"target": "com.amazonaws.devicefarm#NetworkProfileType",
"traits": {
"smithy.api#documentation": "<p>The type of network profile to create. Valid values are listed here.</p>"
}
},
"uplinkBandwidthBits": {
"target": "com.amazonaws.devicefarm#Long",
"traits": {
"smithy.api#documentation": "<p>The data throughput rate in bits per second, as an integer from 0 to\n 104857600.</p>"
}
},
"downlinkBandwidthBits": {
"target": "com.amazonaws.devicefarm#Long",
"traits": {
"smithy.api#documentation": "<p>The data throughput rate in bits per second, as an integer from 0 to\n 104857600.</p>"
}
},
"uplinkDelayMs": {
"target": "com.amazonaws.devicefarm#Long",
"traits": {
"smithy.api#documentation": "<p>Delay time for all packets to destination in milliseconds as an integer from 0 to\n 2000.</p>"
}
},
"downlinkDelayMs": {
"target": "com.amazonaws.devicefarm#Long",
"traits": {
"smithy.api#documentation": "<p>Delay time for all packets to destination in milliseconds as an integer from 0 to\n 2000.</p>"
}
},
"uplinkJitterMs": {
"target": "com.amazonaws.devicefarm#Long",
"traits": {
"smithy.api#documentation": "<p>Time variation in the delay of received packets in milliseconds as an integer from\n 0 to 2000.</p>"
}
},
"downlinkJitterMs": {
"target": "com.amazonaws.devicefarm#Long",
"traits": {
"smithy.api#documentation": "<p>Time variation in the delay of received packets in milliseconds as an integer from\n 0 to 2000.</p>"
}
},
"uplinkLossPercent": {
"target": "com.amazonaws.devicefarm#PercentInteger",
"traits": {
"smithy.api#default": 0,
"smithy.api#documentation": "<p>Proportion of transmitted packets that fail to arrive from 0 to 100\n percent.</p>"
}
},
"downlinkLossPercent": {
"target": "com.amazonaws.devicefarm#PercentInteger",
"traits": {
"smithy.api#default": 0,
"smithy.api#documentation": "<p>Proportion of received packets that fail to arrive from 0 to 100 percent.</p>"
}
}
}
},
"com.amazonaws.devicefarm#CreateNetworkProfileResult": {
"type": "structure",
"members": {
"networkProfile": {
"target": "com.amazonaws.devicefarm#NetworkProfile",
"traits": {
"smithy.api#documentation": "<p>The network profile that is returned by the create network profile\n request.</p>"
}
}
}
},
"com.amazonaws.devicefarm#CreateProject": {
"type": "operation",
"input": {
"target": "com.amazonaws.devicefarm#CreateProjectRequest"
},
"output": {
"target": "com.amazonaws.devicefarm#CreateProjectResult"
},
"errors": [
{
"target": "com.amazonaws.devicefarm#ArgumentException"
},
{
"target": "com.amazonaws.devicefarm#LimitExceededException"
},
{
"target": "com.amazonaws.devicefarm#NotFoundException"
},
{
"target": "com.amazonaws.devicefarm#ServiceAccountException"
},
{
"target": "com.amazonaws.devicefarm#TagOperationException"
}
],
"traits": {
"smithy.api#documentation": "<p>Creates a project.</p>"
}
},
"com.amazonaws.devicefarm#CreateProjectRequest": {
"type": "structure",
"members": {
"name": {
"target": "com.amazonaws.devicefarm#Name",
"traits": {
"smithy.api#documentation": "<p>The project's name.</p>",
"smithy.api#required": {}
}
},
"defaultJobTimeoutMinutes": {
"target": "com.amazonaws.devicefarm#JobTimeoutMinutes",
"traits": {
"smithy.api#documentation": "<p>Sets the execution timeout value (in minutes) for a project. All test runs in this project use the\n specified execution timeout value unless overridden when scheduling a run.</p>"
}
},
"vpcConfig": {
"target": "com.amazonaws.devicefarm#VpcConfig",
"traits": {
"smithy.api#documentation": "<p>The VPC security groups and subnets that are attached to a project.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents a request to the create project operation.</p>"
}
},
"com.amazonaws.devicefarm#CreateProjectResult": {
"type": "structure",
"members": {
"project": {
"target": "com.amazonaws.devicefarm#Project",
"traits": {
"smithy.api#documentation": "<p>The newly created project.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents the result of a create project request.</p>"
}
},
"com.amazonaws.devicefarm#CreateRemoteAccessSession": {
"type": "operation",
"input": {
"target": "com.amazonaws.devicefarm#CreateRemoteAccessSessionRequest"
},
"output": {
"target": "com.amazonaws.devicefarm#CreateRemoteAccessSessionResult"
},
"errors": [
{
"target": "com.amazonaws.devicefarm#ArgumentException"
},
{
"target": "com.amazonaws.devicefarm#LimitExceededException"
},
{
"target": "com.amazonaws.devicefarm#NotFoundException"
},
{
"target": "com.amazonaws.devicefarm#ServiceAccountException"
}
],
"traits": {
"smithy.api#documentation": "<p>Specifies and starts a remote access session.</p>"
}
},
"com.amazonaws.devicefarm#CreateRemoteAccessSessionConfiguration": {
"type": "structure",
"members": {
"billingMethod": {
"target": "com.amazonaws.devicefarm#BillingMethod",
"traits": {
"smithy.api#documentation": "<p>The billing method for the remote access session.</p>"
}
},
"vpceConfigurationArns": {
"target": "com.amazonaws.devicefarm#AmazonResourceNames",
"traits": {
"smithy.api#documentation": "<p>An array of ARNs included in the VPC endpoint configuration.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Configuration settings for a remote access session, including billing\n method.</p>"
}
},
"com.amazonaws.devicefarm#CreateRemoteAccessSessionRequest": {
"type": "structure",
"members": {
"projectArn": {
"target": "com.amazonaws.devicefarm#AmazonResourceName",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the project for which you want to create a remote\n access session.</p>",
"smithy.api#required": {}
}
},
"deviceArn": {
"target": "com.amazonaws.devicefarm#AmazonResourceName",
"traits": {
"smithy.api#documentation": "<p>The ARN of the device for which you want to create a remote access session.</p>",
"smithy.api#required": {}
}
},
"instanceArn": {
"target": "com.amazonaws.devicefarm#AmazonResourceName",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) of the device instance for which you want to create a\n remote access session.</p>"
}
},
"sshPublicKey": {
"target": "com.amazonaws.devicefarm#SshPublicKey",
"traits": {
"smithy.api#documentation": "<p>Ignored. The public key of the <code>ssh</code> key pair you want to use for connecting to remote\n devices in your remote debugging session. This key is required only if <code>remoteDebugEnabled</code> is\n set to <code>true</code>.</p>\n <p>Remote debugging is <a href=\"https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html\">no\n longer supported</a>.</p>"
}
},
"remoteDebugEnabled": {
"target": "com.amazonaws.devicefarm#Boolean",
"traits": {
"smithy.api#documentation": "<p>Set to <code>true</code> if you want to access devices remotely for debugging in\n your remote access session.</p>\n <p>Remote debugging is <a href=\"https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html\">no\n longer supported</a>.</p>"
}
},
"remoteRecordEnabled": {
"target": "com.amazonaws.devicefarm#Boolean",
"traits": {
"smithy.api#documentation": "<p>Set to <code>true</code> to enable remote recording for the remote access\n session.</p>"
}
},
"remoteRecordAppArn": {
"target": "com.amazonaws.devicefarm#AmazonResourceName",
"traits": {
"smithy.api#documentation": "<p>The Amazon Resource Name (ARN) for the app to be recorded in the remote access\n session.</p>"
}
},
"name": {
"target": "com.amazonaws.devicefarm#Name",
"traits": {
"smithy.api#documentation": "<p>The name of the remote access session to create.</p>"
}
},
"clientId": {
"target": "com.amazonaws.devicefarm#ClientId",
"traits": {
"smithy.api#documentation": "<p>Unique identifier for the client. If you want access to multiple devices on the same client, you should\n pass the same <code>clientId</code> value in each call to <code>CreateRemoteAccessSession</code>. This\n identifier is required only if <code>remoteDebugEnabled</code> is set to <code>true</code>.</p>\n <p>Remote debugging is <a href=\"https://docs.aws.amazon.com/devicefarm/latest/developerguide/history.html\">no\n longer supported</a>.</p>"
}
},
"configuration": {
"target": "com.amazonaws.devicefarm#CreateRemoteAccessSessionConfiguration",
"traits": {
"smithy.api#documentation": "<p>The configuration information for the remote access session request.</p>"
}
},
"interactionMode": {
"target": "com.amazonaws.devicefarm#InteractionMode",
"traits": {
"smithy.api#documentation": "<p>The interaction mode of the remote access session. Valid values are:</p>\n <ul>\n <li>\n <p>INTERACTIVE: You can interact with the iOS device by viewing, touching, and\n rotating the screen. You cannot run XCUITest framework-based tests in this\n mode.</p>\n </li>\n <li>\n <p>NO_VIDEO: You are connected to the device, but cannot interact with it or view the screen. This\n mode has the fastest test execution speed. You can run XCUITest framework-based tests in this\n mode.</p>\n </li>\n <li>\n <p>VIDEO_ONLY: You can view the screen, but cannot touch or rotate it. You can run XCUITest\n framework-based tests and watch the screen in this mode.</p>\n </li>\n </ul>"
}
},
"skipAppResign": {
"target": "com.amazonaws.devicefarm#Boolean",
"traits": {
"smithy.api#documentation": "<p>When set to <code>true</code>, for private devices, Device Farm does not sign your app again. For public\n devices, Device Farm always signs your apps again.</p>\n <p>For more information on how Device Farm modifies your uploads during tests, see <a href=\"http://aws.amazon.com/device-farm/faqs/\">Do you modify my app?</a>\n </p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Creates and submits a request to start a remote access session.</p>"
}
},
"com.amazonaws.devicefarm#CreateRemoteAccessSessionResult": {
"type": "structure",
"members": {
"remoteAccessSession": {
"target": "com.amazonaws.devicefarm#RemoteAccessSession",
"traits": {
"smithy.api#documentation": "<p>A container that describes the remote access session when the request to create a\n remote access session is sent.</p>"
}
}
},
"traits": {
"smithy.api#documentation": "<p>Represents the server response from a request to create a remote access\n session.</p>"
}
},
"com.amazonaws.devicefarm#CreateTestGridProject": {
"type": "operation",
"input": {
"target": "com.amazonaws.devicefarm#CreateTestGridProjectRequest"
},
"output": {
"target": "com.amazonaws.devicefarm#CreateTestGridProjectResult"
},
"errors": [
{