forked from corellium/python-api-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_corellium_api.py
More file actions
1377 lines (980 loc) · 32.4 KB
/
Copy pathtest_corellium_api.py
File metadata and controls
1377 lines (980 loc) · 32.4 KB
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
# coding: utf-8
"""
Corellium API
REST API to manage your virtual devices. # noqa: E501
The version of the OpenAPI document: 7.6.0-29198
Generated by: https://openapi-generator.tech
"""
from __future__ import absolute_import
import unittest
import corellium_api
from corellium_api.api.corellium_api import CorelliumApi # noqa: E501
from corellium_api.rest import ApiException
class TestCorelliumApi(unittest.TestCase):
"""CorelliumApi unit test stubs"""
def setUp(self):
self.api = corellium_api.api.corellium_api.CorelliumApi() # noqa: E501
def tearDown(self):
pass
def test_api_v1_cluster_nodes_node_id_console_get(self):
"""Test case for api_v1_cluster_nodes_node_id_console_get
Access node console via SSH # noqa: E501
"""
pass
def test_api_v1_interconnects_get(self):
"""Test case for api_v1_interconnects_get
Get all I/O Interconnects # noqa: E501
"""
pass
def test_api_v1_interconnects_interconnect_id_delete(self):
"""Test case for api_v1_interconnects_interconnect_id_delete
Delete I/O Interconnect # noqa: E501
"""
pass
def test_api_v1_interconnects_interconnect_id_get(self):
"""Test case for api_v1_interconnects_interconnect_id_get
Get Interconnect # noqa: E501
"""
pass
def test_api_v1_interconnects_interconnect_id_patch(self):
"""Test case for api_v1_interconnects_interconnect_id_patch
Partial Update Interconnect # noqa: E501
"""
pass
def test_api_v1_interconnects_interconnect_id_put(self):
"""Test case for api_v1_interconnects_interconnect_id_put
Update Interconnect # noqa: E501
"""
pass
def test_api_v1_interconnects_post(self):
"""Test case for api_v1_interconnects_post
Create I/O Interconnect # noqa: E501
"""
pass
def test_create_assessment(self):
"""Test case for create_assessment
Create assessment # noqa: E501
"""
pass
def test_delete_assessment(self):
"""Test case for delete_assessment
Delete assessment # noqa: E501
"""
pass
def test_download_report(self):
"""Test case for download_report
Download report # noqa: E501
"""
pass
def test_get_assessment_by_id(self):
"""Test case for get_assessment_by_id
Get assessment by ID # noqa: E501
"""
pass
def test_get_assessments_by_instance_id(self):
"""Test case for get_assessments_by_instance_id
Get assessments by instanceId # noqa: E501
"""
pass
def test_run_tests(self):
"""Test case for run_tests
Update assessment state and execute MATRIX tests # noqa: E501
"""
pass
def test_start_monitoring(self):
"""Test case for start_monitoring
Update assessment state and begin device monitoring # noqa: E501
"""
pass
def test_stop_monitoring(self):
"""Test case for stop_monitoring
Update assessment state and stop device monitoring # noqa: E501
"""
pass
def test_v1_accept_shared_snapshot(self):
"""Test case for v1_accept_shared_snapshot
Accept a snapshot shared with you # noqa: E501
"""
pass
def test_v1_activity_export(self):
"""Test case for v1_activity_export
Start activity export # noqa: E501
"""
pass
def test_v1_activity_list(self):
"""Test case for v1_activity_list
Get resource activities # noqa: E501
"""
pass
def test_v1_add_project_key(self):
"""Test case for v1_add_project_key
Add Project Authorized Key # noqa: E501
"""
pass
def test_v1_add_team_role_to_project(self):
"""Test case for v1_add_team_role_to_project
Add team role to project # noqa: E501
"""
pass
def test_v1_add_user_role_to_project(self):
"""Test case for v1_add_user_role_to_project
Add user role to project # noqa: E501
"""
pass
def test_v1_add_user_to_team(self):
"""Test case for v1_add_user_to_team
Add user to team # noqa: E501
"""
pass
def test_v1_agent_app_ready(self):
"""Test case for v1_agent_app_ready
Check if App subsystem is ready # noqa: E501
"""
pass
def test_v1_agent_delete_file(self):
"""Test case for v1_agent_delete_file
Delete a File on VM # noqa: E501
"""
pass
def test_v1_agent_get_file(self):
"""Test case for v1_agent_get_file
Download a File from VM # noqa: E501
"""
pass
def test_v1_agent_get_temp_filename(self):
"""Test case for v1_agent_get_temp_filename
Get the path for a new temp file # noqa: E501
"""
pass
def test_v1_agent_install_app(self):
"""Test case for v1_agent_install_app
Install App at path # noqa: E501
"""
pass
def test_v1_agent_install_profile(self):
"""Test case for v1_agent_install_profile
Install a Profile to VM # noqa: E501
"""
pass
def test_v1_agent_kill_app(self):
"""Test case for v1_agent_kill_app
Kill an App # noqa: E501
"""
pass
def test_v1_agent_list_app_icons(self):
"""Test case for v1_agent_list_app_icons
List App Icons # noqa: E501
"""
pass
def test_v1_agent_list_apps(self):
"""Test case for v1_agent_list_apps
List Apps # noqa: E501
"""
pass
def test_v1_agent_list_apps_status(self):
"""Test case for v1_agent_list_apps_status
List Apps Status # noqa: E501
"""
pass
def test_v1_agent_list_profiles(self):
"""Test case for v1_agent_list_profiles
List Profiles # noqa: E501
"""
pass
def test_v1_agent_run_app(self):
"""Test case for v1_agent_run_app
Run an App # noqa: E501
"""
pass
def test_v1_agent_set_file_attributes(self):
"""Test case for v1_agent_set_file_attributes
Change Attrs of a File on VM # noqa: E501
"""
pass
def test_v1_agent_system_get_adb_auth(self):
"""Test case for v1_agent_system_get_adb_auth
Get ADB Auth Setting (AOSP only) # noqa: E501
"""
pass
def test_v1_agent_system_get_network(self):
"""Test case for v1_agent_system_get_network
Get IP of eth0 (AOSP only) # noqa: E501
"""
pass
def test_v1_agent_system_get_prop(self):
"""Test case for v1_agent_system_get_prop
Get System Property (AOSP only) # noqa: E501
"""
pass
def test_v1_agent_system_install_open_g_apps(self):
"""Test case for v1_agent_system_install_open_g_apps
Install OpenGApps (AOSP only) # noqa: E501
"""
pass
def test_v1_agent_system_lock(self):
"""Test case for v1_agent_system_lock
Lock Device (iOS Only) # noqa: E501
"""
pass
def test_v1_agent_system_set_adb_auth(self):
"""Test case for v1_agent_system_set_adb_auth
Set ADB Auth Setting (AOSP only) # noqa: E501
"""
pass
def test_v1_agent_system_set_hostname(self):
"""Test case for v1_agent_system_set_hostname
Set Hostname of instance # noqa: E501
"""
pass
def test_v1_agent_system_shutdown(self):
"""Test case for v1_agent_system_shutdown
Instruct VM to halt # noqa: E501
"""
pass
def test_v1_agent_system_unlock(self):
"""Test case for v1_agent_system_unlock
Unlock Device (iOS Only) # noqa: E501
"""
pass
def test_v1_agent_uninstall_app(self):
"""Test case for v1_agent_uninstall_app
Uninstall an App # noqa: E501
"""
pass
def test_v1_agent_uninstall_profile(self):
"""Test case for v1_agent_uninstall_profile
Uninstall a Profile from VM # noqa: E501
"""
pass
def test_v1_agent_upload_file(self):
"""Test case for v1_agent_upload_file
Upload a file to VM # noqa: E501
"""
pass
def test_v1_attach_instance_interface(self):
"""Test case for v1_attach_instance_interface
Attach I/O Interface # noqa: E501
"""
pass
def test_v1_auth_login(self):
"""Test case for v1_auth_login
Log In # noqa: E501
"""
pass
def test_v1_btrace_preauthorize(self):
"""Test case for v1_btrace_preauthorize
Pre-authorize an btrace download # noqa: E501
"""
pass
def test_v1_clear_core_trace(self):
"""Test case for v1_clear_core_trace
Clear CoreTrace logs # noqa: E501
"""
pass
def test_v1_clear_hyper_trace(self):
"""Test case for v1_clear_hyper_trace
Clear HyperTrace logs # noqa: E501
"""
pass
def test_v1_clear_hyper_trace_hooks(self):
"""Test case for v1_clear_hyper_trace_hooks
Clear Hooks on an instance # noqa: E501
"""
pass
def test_v1_clear_instance_panics(self):
"""Test case for v1_clear_instance_panics
Clear Panics # noqa: E501
"""
pass
def test_v1_cluster_firmware_service_devices_get(self):
"""Test case for v1_cluster_firmware_service_devices_get
Fetch devices from the firmware service # noqa: E501
"""
pass
def test_v1_cluster_firmware_service_firmware_assets_asset_url_delete(self):
"""Test case for v1_cluster_firmware_service_firmware_assets_asset_url_delete
Delete a firmware asset by its URL # noqa: E501
"""
pass
def test_v1_cluster_firmware_service_firmware_assets_asset_url_extended_get(self):
"""Test case for v1_cluster_firmware_service_firmware_assets_asset_url_extended_get
Fetch extended firmware-asset details including instances and associated IPSWs # noqa: E501
"""
pass
def test_v1_cluster_firmware_service_firmware_assets_get(self):
"""Test case for v1_cluster_firmware_service_firmware_assets_get
Fetch firmware assets from the firmware service # noqa: E501
"""
pass
def test_v1_cluster_firmware_service_firmware_assets_post(self):
"""Test case for v1_cluster_firmware_service_firmware_assets_post
Add firmware assets via the firmware service # noqa: E501
"""
pass
def test_v1_cluster_firmware_service_firmwares_filename_delete(self):
"""Test case for v1_cluster_firmware_service_firmwares_filename_delete
Delete a firmware by filename from the firmware service # noqa: E501
"""
pass
def test_v1_cluster_firmware_service_firmwares_get(self):
"""Test case for v1_cluster_firmware_service_firmwares_get
Fetch firmwares from the firmware service # noqa: E501
"""
pass
def test_v1_cluster_nodes_get(self):
"""Test case for v1_cluster_nodes_get
List servers in the cluster # noqa: E501
"""
pass
def test_v1_cluster_nodes_node_id_get(self):
"""Test case for v1_cluster_nodes_node_id_get
Get node details by ID # noqa: E501
"""
pass
def test_v1_create_domain_auth_provider(self):
"""Test case for v1_create_domain_auth_provider
Create a new auth provider for a domain # noqa: E501
"""
pass
def test_v1_create_hook(self):
"""Test case for v1_create_hook
Create hypervisor hook for Instance # noqa: E501
"""
pass
def test_v1_create_image(self):
"""Test case for v1_create_image
Create a new Image # noqa: E501
"""
pass
def test_v1_create_instance(self):
"""Test case for v1_create_instance
Create Instance # noqa: E501
"""
pass
def test_v1_create_network_connection(self):
"""Test case for v1_create_network_connection
Create a new Network Connection # noqa: E501
"""
pass
def test_v1_create_project(self):
"""Test case for v1_create_project
Create a Project # noqa: E501
"""
pass
def test_v1_create_snapshot(self):
"""Test case for v1_create_snapshot
Create Instance Snapshot # noqa: E501
"""
pass
def test_v1_create_user(self):
"""Test case for v1_create_user
Create User # noqa: E501
"""
pass
def test_v1_delete_domain_auth_provider(self):
"""Test case for v1_delete_domain_auth_provider
Delete an auth provider from a domain # noqa: E501
"""
pass
def test_v1_delete_extension(self):
"""Test case for v1_delete_extension
Delete an existing extension # noqa: E501
"""
pass
def test_v1_delete_hook(self):
"""Test case for v1_delete_hook
Delete an existing hypervisor hook # noqa: E501
"""
pass
def test_v1_delete_image(self):
"""Test case for v1_delete_image
Delete Image # noqa: E501
"""
pass
def test_v1_delete_instance(self):
"""Test case for v1_delete_instance
Remove Instance # noqa: E501
"""
pass
def test_v1_delete_instance_snapshot(self):
"""Test case for v1_delete_instance_snapshot
Delete an Instance Snapshot # noqa: E501
"""
pass
def test_v1_delete_network_connection(self):
"""Test case for v1_delete_network_connection
Delete an existing Network Connection # noqa: E501
"""
pass
def test_v1_delete_project(self):
"""Test case for v1_delete_project
Delete a Project # noqa: E501
"""
pass
def test_v1_delete_snapshot(self):
"""Test case for v1_delete_snapshot
Delete a Snapshot # noqa: E501
"""
pass
def test_v1_delete_snapshot_permissions(self):
"""Test case for v1_delete_snapshot_permissions
Delete member(s) # noqa: E501
"""
pass
def test_v1_delete_user(self):
"""Test case for v1_delete_user
Delete User # noqa: E501
"""
pass
def test_v1_detach_instance_interface(self):
"""Test case for v1_detach_instance_interface
Detach I/O Interface # noqa: E501
"""
pass
def test_v1_disable_expose_port(self):
"""Test case for v1_disable_expose_port
Disable an exposed port on an instance for device access. # noqa: E501
"""
pass
def test_v1_download_activity(self):
"""Test case for v1_download_activity
Download activity # noqa: E501
"""
pass
def test_v1_enable_expose_port(self):
"""Test case for v1_enable_expose_port
Enable an exposed port on an instance for device access. # noqa: E501
"""
pass
def test_v1_execute_hyper_trace_hooks(self):
"""Test case for v1_execute_hyper_trace_hooks
Execute Hooks on an instance # noqa: E501
"""
pass
def test_v1_get_activity_export_status(self):
"""Test case for v1_get_activity_export_status
Get export task status # noqa: E501
"""
pass
def test_v1_get_activity_export_tasks(self):
"""Test case for v1_get_activity_export_tasks
Get all export tasks for user # noqa: E501
"""
pass
def test_v1_get_config(self):
"""Test case for v1_get_config
Get all configs # noqa: E501
"""
pass
def test_v1_get_domain_auth_providers(self):
"""Test case for v1_get_domain_auth_providers
Return all configured auth providers for a domain (including globally configured providers) # noqa: E501
"""
pass
def test_v1_get_extension_by_id(self):
"""Test case for v1_get_extension_by_id
Get extension by id # noqa: E501
"""
pass
def test_v1_get_extensions(self):
"""Test case for v1_get_extensions
Get all extensions # noqa: E501
"""
pass
def test_v1_get_hook_by_id(self):
"""Test case for v1_get_hook_by_id
Get hypervisor hook by id # noqa: E501
"""
pass
def test_v1_get_hooks(self):
"""Test case for v1_get_hooks
Get all hypervisor hooks for Instance # noqa: E501
"""
pass
def test_v1_get_image(self):
"""Test case for v1_get_image
Get Image Metadata # noqa: E501
"""
pass
def test_v1_get_images(self):
"""Test case for v1_get_images
Get all Images Metadata # noqa: E501
"""
pass
def test_v1_get_install_firmware_status(self):
"""Test case for v1_get_install_firmware_status
Query install firmware request status. # noqa: E501
"""
pass
def test_v1_get_instance(self):
"""Test case for v1_get_instance
Get Instance # noqa: E501
"""
pass
def test_v1_get_instance_console(self):
"""Test case for v1_get_instance_console
Get console websocket URL # noqa: E501
"""
pass
def test_v1_get_instance_console_log(self):
"""Test case for v1_get_instance_console_log
Get Console Log # noqa: E501
"""
pass
def test_v1_get_instance_gpios(self):
"""Test case for v1_get_instance_gpios
Get Instance GPIOs # noqa: E501
"""
pass
def test_v1_get_instance_panics(self):
"""Test case for v1_get_instance_panics
Get Panics # noqa: E501
"""
pass
def test_v1_get_instance_peripherals(self):
"""Test case for v1_get_instance_peripherals
Get Instance Peripherals # noqa: E501
"""
pass
def test_v1_get_instance_screenshot(self):
"""Test case for v1_get_instance_screenshot
Get Instance Screenshot # noqa: E501
"""
pass
def test_v1_get_instance_snapshot(self):
"""Test case for v1_get_instance_snapshot
Get Instance Snapshot # noqa: E501
"""
pass
def test_v1_get_instance_snapshots(self):
"""Test case for v1_get_instance_snapshots
Get Instance Snapshots # noqa: E501
"""
pass
def test_v1_get_instances(self):
"""Test case for v1_get_instances
Get Instances # noqa: E501
"""
pass
def test_v1_get_model_software(self):
"""Test case for v1_get_model_software
Get Software for Model # noqa: E501
"""
pass
def test_v1_get_models(self):
"""Test case for v1_get_models
Get Supported Models # noqa: E501
"""
pass
def test_v1_get_network_connection(self):
"""Test case for v1_get_network_connection
Return the configuration and per project statuses for a single network provider. # noqa: E501
"""
pass
def test_v1_get_project(self):
"""Test case for v1_get_project
Get a Project # noqa: E501
"""
pass
def test_v1_get_project_instances(self):
"""Test case for v1_get_project_instances
Get Instances in Project # noqa: E501
"""
pass
def test_v1_get_project_keys(self):
"""Test case for v1_get_project_keys
Get Project Authorized Keys # noqa: E501
"""
pass
def test_v1_get_project_network_log(self):
"""Test case for v1_get_project_network_log
Retrieve the network connection log for a project # noqa: E501
"""
pass
def test_v1_get_project_network_status(self):
"""Test case for v1_get_project_network_status
Retrieve the network connection status for a project # noqa: E501
"""
pass
def test_v1_get_project_vpn_config(self):
"""Test case for v1_get_project_vpn_config
Get Project VPN Configuration # noqa: E501
"""
pass
def test_v1_get_projects(self):
"""Test case for v1_get_projects
Get Projects # noqa: E501
"""
pass
def test_v1_get_reset_link_info(self):
"""Test case for v1_get_reset_link_info
Send Password Reset Link Info # noqa: E501
"""
pass
def test_v1_get_shared_snapshots(self):
"""Test case for v1_get_shared_snapshots
Fetch shared snapshots # noqa: E501
"""
pass
def test_v1_get_snapshot(self):
"""Test case for v1_get_snapshot
Get Snapshot # noqa: E501
"""
pass
def test_v1_install_firmware(self):
"""Test case for v1_install_firmware
Installs a firmware for cluster-wide use # noqa: E501
"""
pass
def test_v1_instances_instance_id_message_post(self):
"""Test case for v1_instances_instance_id_message_post
Inject a message into an iOS VM # noqa: E501
"""
pass
def test_v1_instances_instance_id_netdump_pcap_get(self):
"""Test case for v1_instances_instance_id_netdump_pcap_get
Download a netdump pcap file # noqa: E501
"""
pass
def test_v1_instances_instance_id_network_monitor_pcap_get(self):
"""Test case for v1_instances_instance_id_network_monitor_pcap_get
Download a Network Monitor pcap file # noqa: E501
"""
pass
def test_v1_kcrange(self):
"""Test case for v1_kcrange
Get Kernel extension ranges # noqa: E501
"""
pass
def test_v1_list_network_connections(self):
"""Test case for v1_list_network_connections
List available network connections # noqa: E501
"""
pass
def test_v1_list_network_interfaces(self):
"""Test case for v1_list_network_interfaces
List available physical network interfaces # noqa: E501
"""
pass
def test_v1_list_network_providers(self):
"""Test case for v1_list_network_providers
List available network providers # noqa: E501
"""
pass
def test_v1_list_threads(self):
"""Test case for v1_list_threads
Get Running Threads (CoreTrace) # noqa: E501
"""
pass
def test_v1_load_extension(self):
"""Test case for v1_load_extension
Load an extension # noqa: E501
"""
pass
def test_v1_media_play(self):
"""Test case for v1_media_play
Start playing media # noqa: E501
"""
pass
def test_v1_media_stop(self):
"""Test case for v1_media_stop
Stop playing media # noqa: E501
"""
pass
def test_v1_parse_extension_json(self):
"""Test case for v1_parse_extension_json
Validates extension.json # noqa: E501
"""
pass
def test_v1_partial_update_network_connection(self):
"""Test case for v1_partial_update_network_connection
Update Network Connection (partial) # noqa: E501
"""
pass
def test_v1_patch_instance(self):
"""Test case for v1_patch_instance
Update Instance # noqa: E501
"""
pass
def test_v1_patch_instance_read_only(self):
"""Test case for v1_patch_instance_read_only
Update Instance Read Only # noqa: E501
"""
pass
def test_v1_pause_instance(self):
"""Test case for v1_pause_instance
Pause an Instance # noqa: E501
"""
pass
def test_v1_post_instance_input(self):
"""Test case for v1_post_instance_input
Provide Instance Input # noqa: E501