summaryrefslogtreecommitdiff
path: root/net/py-softlayer/PLIST
blob: 8c813155f0b66d3545bec3aebdf33ba8f7dfb234 (plain)
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
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
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
@comment $NetBSD: PLIST,v 1.10 2022/02/27 09:08:57 adam Exp $
bin/sl-${PYVERSSUFFIX}
bin/slcli-${PYVERSSUFFIX}
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/entry_points.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/SoftLayer/API.py
${PYSITELIB}/SoftLayer/API.pyc
${PYSITELIB}/SoftLayer/API.pyo
${PYSITELIB}/SoftLayer/CLI/__init__.py
${PYSITELIB}/SoftLayer/CLI/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/account/__init__.py
${PYSITELIB}/SoftLayer/CLI/account/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/account/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/account/bandwidth_pools.py
${PYSITELIB}/SoftLayer/CLI/account/bandwidth_pools.pyc
${PYSITELIB}/SoftLayer/CLI/account/bandwidth_pools.pyo
${PYSITELIB}/SoftLayer/CLI/account/billing_items.py
${PYSITELIB}/SoftLayer/CLI/account/billing_items.pyc
${PYSITELIB}/SoftLayer/CLI/account/billing_items.pyo
${PYSITELIB}/SoftLayer/CLI/account/cancel_item.py
${PYSITELIB}/SoftLayer/CLI/account/cancel_item.pyc
${PYSITELIB}/SoftLayer/CLI/account/cancel_item.pyo
${PYSITELIB}/SoftLayer/CLI/account/event_detail.py
${PYSITELIB}/SoftLayer/CLI/account/event_detail.pyc
${PYSITELIB}/SoftLayer/CLI/account/event_detail.pyo
${PYSITELIB}/SoftLayer/CLI/account/events.py
${PYSITELIB}/SoftLayer/CLI/account/events.pyc
${PYSITELIB}/SoftLayer/CLI/account/events.pyo
${PYSITELIB}/SoftLayer/CLI/account/invoice_detail.py
${PYSITELIB}/SoftLayer/CLI/account/invoice_detail.pyc
${PYSITELIB}/SoftLayer/CLI/account/invoice_detail.pyo
${PYSITELIB}/SoftLayer/CLI/account/invoices.py
${PYSITELIB}/SoftLayer/CLI/account/invoices.pyc
${PYSITELIB}/SoftLayer/CLI/account/invoices.pyo
${PYSITELIB}/SoftLayer/CLI/account/item_detail.py
${PYSITELIB}/SoftLayer/CLI/account/item_detail.pyc
${PYSITELIB}/SoftLayer/CLI/account/item_detail.pyo
${PYSITELIB}/SoftLayer/CLI/account/licenses.py
${PYSITELIB}/SoftLayer/CLI/account/licenses.pyc
${PYSITELIB}/SoftLayer/CLI/account/licenses.pyo
${PYSITELIB}/SoftLayer/CLI/account/orders.py
${PYSITELIB}/SoftLayer/CLI/account/orders.pyc
${PYSITELIB}/SoftLayer/CLI/account/orders.pyo
${PYSITELIB}/SoftLayer/CLI/account/summary.py
${PYSITELIB}/SoftLayer/CLI/account/summary.pyc
${PYSITELIB}/SoftLayer/CLI/account/summary.pyo
${PYSITELIB}/SoftLayer/CLI/autoscale/__init__.py
${PYSITELIB}/SoftLayer/CLI/autoscale/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/autoscale/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/autoscale/detail.py
${PYSITELIB}/SoftLayer/CLI/autoscale/detail.pyc
${PYSITELIB}/SoftLayer/CLI/autoscale/detail.pyo
${PYSITELIB}/SoftLayer/CLI/autoscale/edit.py
${PYSITELIB}/SoftLayer/CLI/autoscale/edit.pyc
${PYSITELIB}/SoftLayer/CLI/autoscale/edit.pyo
${PYSITELIB}/SoftLayer/CLI/autoscale/list.py
${PYSITELIB}/SoftLayer/CLI/autoscale/list.pyc
${PYSITELIB}/SoftLayer/CLI/autoscale/list.pyo
${PYSITELIB}/SoftLayer/CLI/autoscale/logs.py
${PYSITELIB}/SoftLayer/CLI/autoscale/logs.pyc
${PYSITELIB}/SoftLayer/CLI/autoscale/logs.pyo
${PYSITELIB}/SoftLayer/CLI/autoscale/scale.py
${PYSITELIB}/SoftLayer/CLI/autoscale/scale.pyc
${PYSITELIB}/SoftLayer/CLI/autoscale/scale.pyo
${PYSITELIB}/SoftLayer/CLI/autoscale/tag.py
${PYSITELIB}/SoftLayer/CLI/autoscale/tag.pyc
${PYSITELIB}/SoftLayer/CLI/autoscale/tag.pyo
${PYSITELIB}/SoftLayer/CLI/block/__init__.py
${PYSITELIB}/SoftLayer/CLI/block/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/block/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/block/access/__init__.py
${PYSITELIB}/SoftLayer/CLI/block/access/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/block/access/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/block/access/authorize.py
${PYSITELIB}/SoftLayer/CLI/block/access/authorize.pyc
${PYSITELIB}/SoftLayer/CLI/block/access/authorize.pyo
${PYSITELIB}/SoftLayer/CLI/block/access/list.py
${PYSITELIB}/SoftLayer/CLI/block/access/list.pyc
${PYSITELIB}/SoftLayer/CLI/block/access/list.pyo
${PYSITELIB}/SoftLayer/CLI/block/access/password.py
${PYSITELIB}/SoftLayer/CLI/block/access/password.pyc
${PYSITELIB}/SoftLayer/CLI/block/access/password.pyo
${PYSITELIB}/SoftLayer/CLI/block/access/revoke.py
${PYSITELIB}/SoftLayer/CLI/block/access/revoke.pyc
${PYSITELIB}/SoftLayer/CLI/block/access/revoke.pyo
${PYSITELIB}/SoftLayer/CLI/block/cancel.py
${PYSITELIB}/SoftLayer/CLI/block/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/block/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/block/convert.py
${PYSITELIB}/SoftLayer/CLI/block/convert.pyc
${PYSITELIB}/SoftLayer/CLI/block/convert.pyo
${PYSITELIB}/SoftLayer/CLI/block/count.py
${PYSITELIB}/SoftLayer/CLI/block/count.pyc
${PYSITELIB}/SoftLayer/CLI/block/count.pyo
${PYSITELIB}/SoftLayer/CLI/block/detail.py
${PYSITELIB}/SoftLayer/CLI/block/detail.pyc
${PYSITELIB}/SoftLayer/CLI/block/detail.pyo
${PYSITELIB}/SoftLayer/CLI/block/duplicate.py
${PYSITELIB}/SoftLayer/CLI/block/duplicate.pyc
${PYSITELIB}/SoftLayer/CLI/block/duplicate.pyo
${PYSITELIB}/SoftLayer/CLI/block/limit.py
${PYSITELIB}/SoftLayer/CLI/block/limit.pyc
${PYSITELIB}/SoftLayer/CLI/block/limit.pyo
${PYSITELIB}/SoftLayer/CLI/block/list.py
${PYSITELIB}/SoftLayer/CLI/block/list.pyc
${PYSITELIB}/SoftLayer/CLI/block/list.pyo
${PYSITELIB}/SoftLayer/CLI/block/lun.py
${PYSITELIB}/SoftLayer/CLI/block/lun.pyc
${PYSITELIB}/SoftLayer/CLI/block/lun.pyo
${PYSITELIB}/SoftLayer/CLI/block/modify.py
${PYSITELIB}/SoftLayer/CLI/block/modify.pyc
${PYSITELIB}/SoftLayer/CLI/block/modify.pyo
${PYSITELIB}/SoftLayer/CLI/block/order.py
${PYSITELIB}/SoftLayer/CLI/block/order.pyc
${PYSITELIB}/SoftLayer/CLI/block/order.pyo
${PYSITELIB}/SoftLayer/CLI/block/refresh.py
${PYSITELIB}/SoftLayer/CLI/block/refresh.pyc
${PYSITELIB}/SoftLayer/CLI/block/refresh.pyo
${PYSITELIB}/SoftLayer/CLI/block/replication/__init__.py
${PYSITELIB}/SoftLayer/CLI/block/replication/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/block/replication/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/block/replication/disaster_recovery_failover.py
${PYSITELIB}/SoftLayer/CLI/block/replication/disaster_recovery_failover.pyc
${PYSITELIB}/SoftLayer/CLI/block/replication/disaster_recovery_failover.pyo
${PYSITELIB}/SoftLayer/CLI/block/replication/failback.py
${PYSITELIB}/SoftLayer/CLI/block/replication/failback.pyc
${PYSITELIB}/SoftLayer/CLI/block/replication/failback.pyo
${PYSITELIB}/SoftLayer/CLI/block/replication/failover.py
${PYSITELIB}/SoftLayer/CLI/block/replication/failover.pyc
${PYSITELIB}/SoftLayer/CLI/block/replication/failover.pyo
${PYSITELIB}/SoftLayer/CLI/block/replication/locations.py
${PYSITELIB}/SoftLayer/CLI/block/replication/locations.pyc
${PYSITELIB}/SoftLayer/CLI/block/replication/locations.pyo
${PYSITELIB}/SoftLayer/CLI/block/replication/order.py
${PYSITELIB}/SoftLayer/CLI/block/replication/order.pyc
${PYSITELIB}/SoftLayer/CLI/block/replication/order.pyo
${PYSITELIB}/SoftLayer/CLI/block/replication/partners.py
${PYSITELIB}/SoftLayer/CLI/block/replication/partners.pyc
${PYSITELIB}/SoftLayer/CLI/block/replication/partners.pyo
${PYSITELIB}/SoftLayer/CLI/block/set_note.py
${PYSITELIB}/SoftLayer/CLI/block/set_note.pyc
${PYSITELIB}/SoftLayer/CLI/block/set_note.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/__init__.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/cancel.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/create.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/create.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/create.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/delete.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/delete.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/delete.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/disable.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/disable.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/disable.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/enable.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/enable.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/enable.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/get_notify_status.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/get_notify_status.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/get_notify_status.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/list.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/list.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/list.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/order.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/order.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/order.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/restore.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/restore.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/restore.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/schedule_list.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/schedule_list.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/schedule_list.pyo
${PYSITELIB}/SoftLayer/CLI/block/snapshot/set_notify_status.py
${PYSITELIB}/SoftLayer/CLI/block/snapshot/set_notify_status.pyc
${PYSITELIB}/SoftLayer/CLI/block/snapshot/set_notify_status.pyo
${PYSITELIB}/SoftLayer/CLI/block/subnets/__init__.py
${PYSITELIB}/SoftLayer/CLI/block/subnets/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/block/subnets/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/block/subnets/assign.py
${PYSITELIB}/SoftLayer/CLI/block/subnets/assign.pyc
${PYSITELIB}/SoftLayer/CLI/block/subnets/assign.pyo
${PYSITELIB}/SoftLayer/CLI/block/subnets/list.py
${PYSITELIB}/SoftLayer/CLI/block/subnets/list.pyc
${PYSITELIB}/SoftLayer/CLI/block/subnets/list.pyo
${PYSITELIB}/SoftLayer/CLI/block/subnets/remove.py
${PYSITELIB}/SoftLayer/CLI/block/subnets/remove.pyc
${PYSITELIB}/SoftLayer/CLI/block/subnets/remove.pyo
${PYSITELIB}/SoftLayer/CLI/call_api.py
${PYSITELIB}/SoftLayer/CLI/call_api.pyc
${PYSITELIB}/SoftLayer/CLI/call_api.pyo
${PYSITELIB}/SoftLayer/CLI/cdn/__init__.py
${PYSITELIB}/SoftLayer/CLI/cdn/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/cdn/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/cdn/detail.py
${PYSITELIB}/SoftLayer/CLI/cdn/detail.pyc
${PYSITELIB}/SoftLayer/CLI/cdn/detail.pyo
${PYSITELIB}/SoftLayer/CLI/cdn/edit.py
${PYSITELIB}/SoftLayer/CLI/cdn/edit.pyc
${PYSITELIB}/SoftLayer/CLI/cdn/edit.pyo
${PYSITELIB}/SoftLayer/CLI/cdn/list.py
${PYSITELIB}/SoftLayer/CLI/cdn/list.pyc
${PYSITELIB}/SoftLayer/CLI/cdn/list.pyo
${PYSITELIB}/SoftLayer/CLI/cdn/origin_add.py
${PYSITELIB}/SoftLayer/CLI/cdn/origin_add.pyc
${PYSITELIB}/SoftLayer/CLI/cdn/origin_add.pyo
${PYSITELIB}/SoftLayer/CLI/cdn/origin_list.py
${PYSITELIB}/SoftLayer/CLI/cdn/origin_list.pyc
${PYSITELIB}/SoftLayer/CLI/cdn/origin_list.pyo
${PYSITELIB}/SoftLayer/CLI/cdn/origin_remove.py
${PYSITELIB}/SoftLayer/CLI/cdn/origin_remove.pyc
${PYSITELIB}/SoftLayer/CLI/cdn/origin_remove.pyo
${PYSITELIB}/SoftLayer/CLI/cdn/purge.py
${PYSITELIB}/SoftLayer/CLI/cdn/purge.pyc
${PYSITELIB}/SoftLayer/CLI/cdn/purge.pyo
${PYSITELIB}/SoftLayer/CLI/columns.py
${PYSITELIB}/SoftLayer/CLI/columns.pyc
${PYSITELIB}/SoftLayer/CLI/columns.pyo
${PYSITELIB}/SoftLayer/CLI/config/__init__.py
${PYSITELIB}/SoftLayer/CLI/config/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/config/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/config/setup.py
${PYSITELIB}/SoftLayer/CLI/config/setup.pyc
${PYSITELIB}/SoftLayer/CLI/config/setup.pyo
${PYSITELIB}/SoftLayer/CLI/config/show.py
${PYSITELIB}/SoftLayer/CLI/config/show.pyc
${PYSITELIB}/SoftLayer/CLI/config/show.pyo
${PYSITELIB}/SoftLayer/CLI/core.py
${PYSITELIB}/SoftLayer/CLI/core.pyc
${PYSITELIB}/SoftLayer/CLI/core.pyo
${PYSITELIB}/SoftLayer/CLI/custom_types.py
${PYSITELIB}/SoftLayer/CLI/custom_types.pyc
${PYSITELIB}/SoftLayer/CLI/custom_types.pyo
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/__init__.py
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/cancel.py
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/cancel_guests.py
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/cancel_guests.pyc
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/cancel_guests.pyo
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/create.py
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/create.pyc
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/create.pyo
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/create_options.py
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/create_options.pyc
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/create_options.pyo
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/detail.py
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/detail.pyc
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/detail.pyo
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/list.py
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/list.pyc
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/list.pyo
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/list_guests.py
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/list_guests.pyc
${PYSITELIB}/SoftLayer/CLI/dedicatedhost/list_guests.pyo
${PYSITELIB}/SoftLayer/CLI/dns/__init__.py
${PYSITELIB}/SoftLayer/CLI/dns/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/dns/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/dns/record_add.py
${PYSITELIB}/SoftLayer/CLI/dns/record_add.pyc
${PYSITELIB}/SoftLayer/CLI/dns/record_add.pyo
${PYSITELIB}/SoftLayer/CLI/dns/record_edit.py
${PYSITELIB}/SoftLayer/CLI/dns/record_edit.pyc
${PYSITELIB}/SoftLayer/CLI/dns/record_edit.pyo
${PYSITELIB}/SoftLayer/CLI/dns/record_list.py
${PYSITELIB}/SoftLayer/CLI/dns/record_list.pyc
${PYSITELIB}/SoftLayer/CLI/dns/record_list.pyo
${PYSITELIB}/SoftLayer/CLI/dns/record_remove.py
${PYSITELIB}/SoftLayer/CLI/dns/record_remove.pyc
${PYSITELIB}/SoftLayer/CLI/dns/record_remove.pyo
${PYSITELIB}/SoftLayer/CLI/dns/zone_create.py
${PYSITELIB}/SoftLayer/CLI/dns/zone_create.pyc
${PYSITELIB}/SoftLayer/CLI/dns/zone_create.pyo
${PYSITELIB}/SoftLayer/CLI/dns/zone_delete.py
${PYSITELIB}/SoftLayer/CLI/dns/zone_delete.pyc
${PYSITELIB}/SoftLayer/CLI/dns/zone_delete.pyo
${PYSITELIB}/SoftLayer/CLI/dns/zone_import.py
${PYSITELIB}/SoftLayer/CLI/dns/zone_import.pyc
${PYSITELIB}/SoftLayer/CLI/dns/zone_import.pyo
${PYSITELIB}/SoftLayer/CLI/dns/zone_list.py
${PYSITELIB}/SoftLayer/CLI/dns/zone_list.pyc
${PYSITELIB}/SoftLayer/CLI/dns/zone_list.pyo
${PYSITELIB}/SoftLayer/CLI/dns/zone_print.py
${PYSITELIB}/SoftLayer/CLI/dns/zone_print.pyc
${PYSITELIB}/SoftLayer/CLI/dns/zone_print.pyo
${PYSITELIB}/SoftLayer/CLI/email/__init__.py
${PYSITELIB}/SoftLayer/CLI/email/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/email/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/email/detail.py
${PYSITELIB}/SoftLayer/CLI/email/detail.pyc
${PYSITELIB}/SoftLayer/CLI/email/detail.pyo
${PYSITELIB}/SoftLayer/CLI/email/edit.py
${PYSITELIB}/SoftLayer/CLI/email/edit.pyc
${PYSITELIB}/SoftLayer/CLI/email/edit.pyo
${PYSITELIB}/SoftLayer/CLI/email/list.py
${PYSITELIB}/SoftLayer/CLI/email/list.pyc
${PYSITELIB}/SoftLayer/CLI/email/list.pyo
${PYSITELIB}/SoftLayer/CLI/environment.py
${PYSITELIB}/SoftLayer/CLI/environment.pyc
${PYSITELIB}/SoftLayer/CLI/environment.pyo
${PYSITELIB}/SoftLayer/CLI/event_log/__init__.py
${PYSITELIB}/SoftLayer/CLI/event_log/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/event_log/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/event_log/get.py
${PYSITELIB}/SoftLayer/CLI/event_log/get.pyc
${PYSITELIB}/SoftLayer/CLI/event_log/get.pyo
${PYSITELIB}/SoftLayer/CLI/event_log/types.py
${PYSITELIB}/SoftLayer/CLI/event_log/types.pyc
${PYSITELIB}/SoftLayer/CLI/event_log/types.pyo
${PYSITELIB}/SoftLayer/CLI/exceptions.py
${PYSITELIB}/SoftLayer/CLI/exceptions.pyc
${PYSITELIB}/SoftLayer/CLI/exceptions.pyo
${PYSITELIB}/SoftLayer/CLI/file/__init__.py
${PYSITELIB}/SoftLayer/CLI/file/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/file/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/file/access/__init__.py
${PYSITELIB}/SoftLayer/CLI/file/access/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/file/access/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/file/access/authorize.py
${PYSITELIB}/SoftLayer/CLI/file/access/authorize.pyc
${PYSITELIB}/SoftLayer/CLI/file/access/authorize.pyo
${PYSITELIB}/SoftLayer/CLI/file/access/list.py
${PYSITELIB}/SoftLayer/CLI/file/access/list.pyc
${PYSITELIB}/SoftLayer/CLI/file/access/list.pyo
${PYSITELIB}/SoftLayer/CLI/file/access/revoke.py
${PYSITELIB}/SoftLayer/CLI/file/access/revoke.pyc
${PYSITELIB}/SoftLayer/CLI/file/access/revoke.pyo
${PYSITELIB}/SoftLayer/CLI/file/cancel.py
${PYSITELIB}/SoftLayer/CLI/file/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/file/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/file/convert.py
${PYSITELIB}/SoftLayer/CLI/file/convert.pyc
${PYSITELIB}/SoftLayer/CLI/file/convert.pyo
${PYSITELIB}/SoftLayer/CLI/file/count.py
${PYSITELIB}/SoftLayer/CLI/file/count.pyc
${PYSITELIB}/SoftLayer/CLI/file/count.pyo
${PYSITELIB}/SoftLayer/CLI/file/detail.py
${PYSITELIB}/SoftLayer/CLI/file/detail.pyc
${PYSITELIB}/SoftLayer/CLI/file/detail.pyo
${PYSITELIB}/SoftLayer/CLI/file/duplicate.py
${PYSITELIB}/SoftLayer/CLI/file/duplicate.pyc
${PYSITELIB}/SoftLayer/CLI/file/duplicate.pyo
${PYSITELIB}/SoftLayer/CLI/file/limit.py
${PYSITELIB}/SoftLayer/CLI/file/limit.pyc
${PYSITELIB}/SoftLayer/CLI/file/limit.pyo
${PYSITELIB}/SoftLayer/CLI/file/list.py
${PYSITELIB}/SoftLayer/CLI/file/list.pyc
${PYSITELIB}/SoftLayer/CLI/file/list.pyo
${PYSITELIB}/SoftLayer/CLI/file/modify.py
${PYSITELIB}/SoftLayer/CLI/file/modify.pyc
${PYSITELIB}/SoftLayer/CLI/file/modify.pyo
${PYSITELIB}/SoftLayer/CLI/file/order.py
${PYSITELIB}/SoftLayer/CLI/file/order.pyc
${PYSITELIB}/SoftLayer/CLI/file/order.pyo
${PYSITELIB}/SoftLayer/CLI/file/refresh.py
${PYSITELIB}/SoftLayer/CLI/file/refresh.pyc
${PYSITELIB}/SoftLayer/CLI/file/refresh.pyo
${PYSITELIB}/SoftLayer/CLI/file/replication/__init__.py
${PYSITELIB}/SoftLayer/CLI/file/replication/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/file/replication/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/file/replication/disaster_recovery_failover.py
${PYSITELIB}/SoftLayer/CLI/file/replication/disaster_recovery_failover.pyc
${PYSITELIB}/SoftLayer/CLI/file/replication/disaster_recovery_failover.pyo
${PYSITELIB}/SoftLayer/CLI/file/replication/failback.py
${PYSITELIB}/SoftLayer/CLI/file/replication/failback.pyc
${PYSITELIB}/SoftLayer/CLI/file/replication/failback.pyo
${PYSITELIB}/SoftLayer/CLI/file/replication/failover.py
${PYSITELIB}/SoftLayer/CLI/file/replication/failover.pyc
${PYSITELIB}/SoftLayer/CLI/file/replication/failover.pyo
${PYSITELIB}/SoftLayer/CLI/file/replication/locations.py
${PYSITELIB}/SoftLayer/CLI/file/replication/locations.pyc
${PYSITELIB}/SoftLayer/CLI/file/replication/locations.pyo
${PYSITELIB}/SoftLayer/CLI/file/replication/order.py
${PYSITELIB}/SoftLayer/CLI/file/replication/order.pyc
${PYSITELIB}/SoftLayer/CLI/file/replication/order.pyo
${PYSITELIB}/SoftLayer/CLI/file/replication/partners.py
${PYSITELIB}/SoftLayer/CLI/file/replication/partners.pyc
${PYSITELIB}/SoftLayer/CLI/file/replication/partners.pyo
${PYSITELIB}/SoftLayer/CLI/file/set_note.py
${PYSITELIB}/SoftLayer/CLI/file/set_note.pyc
${PYSITELIB}/SoftLayer/CLI/file/set_note.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/__init__.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/cancel.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/create.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/create.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/create.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/delete.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/delete.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/delete.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/disable.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/disable.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/disable.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/enable.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/enable.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/enable.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/get_notify_status.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/get_notify_status.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/get_notify_status.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/list.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/list.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/list.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/order.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/order.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/order.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/restore.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/restore.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/restore.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/schedule_list.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/schedule_list.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/schedule_list.pyo
${PYSITELIB}/SoftLayer/CLI/file/snapshot/set_notify_status.py
${PYSITELIB}/SoftLayer/CLI/file/snapshot/set_notify_status.pyc
${PYSITELIB}/SoftLayer/CLI/file/snapshot/set_notify_status.pyo
${PYSITELIB}/SoftLayer/CLI/firewall/__init__.py
${PYSITELIB}/SoftLayer/CLI/firewall/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/firewall/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/firewall/add.py
${PYSITELIB}/SoftLayer/CLI/firewall/add.pyc
${PYSITELIB}/SoftLayer/CLI/firewall/add.pyo
${PYSITELIB}/SoftLayer/CLI/firewall/cancel.py
${PYSITELIB}/SoftLayer/CLI/firewall/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/firewall/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/firewall/detail.py
${PYSITELIB}/SoftLayer/CLI/firewall/detail.pyc
${PYSITELIB}/SoftLayer/CLI/firewall/detail.pyo
${PYSITELIB}/SoftLayer/CLI/firewall/edit.py
${PYSITELIB}/SoftLayer/CLI/firewall/edit.pyc
${PYSITELIB}/SoftLayer/CLI/firewall/edit.pyo
${PYSITELIB}/SoftLayer/CLI/firewall/list.py
${PYSITELIB}/SoftLayer/CLI/firewall/list.pyc
${PYSITELIB}/SoftLayer/CLI/firewall/list.pyo
${PYSITELIB}/SoftLayer/CLI/formatting.py
${PYSITELIB}/SoftLayer/CLI/formatting.pyc
${PYSITELIB}/SoftLayer/CLI/formatting.pyo
${PYSITELIB}/SoftLayer/CLI/globalip/__init__.py
${PYSITELIB}/SoftLayer/CLI/globalip/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/globalip/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/globalip/assign.py
${PYSITELIB}/SoftLayer/CLI/globalip/assign.pyc
${PYSITELIB}/SoftLayer/CLI/globalip/assign.pyo
${PYSITELIB}/SoftLayer/CLI/globalip/cancel.py
${PYSITELIB}/SoftLayer/CLI/globalip/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/globalip/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/globalip/create.py
${PYSITELIB}/SoftLayer/CLI/globalip/create.pyc
${PYSITELIB}/SoftLayer/CLI/globalip/create.pyo
${PYSITELIB}/SoftLayer/CLI/globalip/list.py
${PYSITELIB}/SoftLayer/CLI/globalip/list.pyc
${PYSITELIB}/SoftLayer/CLI/globalip/list.pyo
${PYSITELIB}/SoftLayer/CLI/globalip/unassign.py
${PYSITELIB}/SoftLayer/CLI/globalip/unassign.pyc
${PYSITELIB}/SoftLayer/CLI/globalip/unassign.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/__init__.py
${PYSITELIB}/SoftLayer/CLI/hardware/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/authorize_storage.py
${PYSITELIB}/SoftLayer/CLI/hardware/authorize_storage.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/authorize_storage.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/bandwidth.py
${PYSITELIB}/SoftLayer/CLI/hardware/bandwidth.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/bandwidth.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/billing.py
${PYSITELIB}/SoftLayer/CLI/hardware/billing.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/billing.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/cancel.py
${PYSITELIB}/SoftLayer/CLI/hardware/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/cancel_reasons.py
${PYSITELIB}/SoftLayer/CLI/hardware/cancel_reasons.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/cancel_reasons.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/create.py
${PYSITELIB}/SoftLayer/CLI/hardware/create.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/create.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/create_options.py
${PYSITELIB}/SoftLayer/CLI/hardware/create_options.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/create_options.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/credentials.py
${PYSITELIB}/SoftLayer/CLI/hardware/credentials.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/credentials.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/detail.py
${PYSITELIB}/SoftLayer/CLI/hardware/detail.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/detail.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/dns.py
${PYSITELIB}/SoftLayer/CLI/hardware/dns.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/dns.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/edit.py
${PYSITELIB}/SoftLayer/CLI/hardware/edit.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/edit.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/guests.py
${PYSITELIB}/SoftLayer/CLI/hardware/guests.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/guests.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/list.py
${PYSITELIB}/SoftLayer/CLI/hardware/list.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/list.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/power.py
${PYSITELIB}/SoftLayer/CLI/hardware/power.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/power.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/ready.py
${PYSITELIB}/SoftLayer/CLI/hardware/ready.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/ready.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/reflash_firmware.py
${PYSITELIB}/SoftLayer/CLI/hardware/reflash_firmware.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/reflash_firmware.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/reload.py
${PYSITELIB}/SoftLayer/CLI/hardware/reload.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/reload.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/sensor.py
${PYSITELIB}/SoftLayer/CLI/hardware/sensor.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/sensor.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/storage.py
${PYSITELIB}/SoftLayer/CLI/hardware/storage.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/storage.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/toggle_ipmi.py
${PYSITELIB}/SoftLayer/CLI/hardware/toggle_ipmi.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/toggle_ipmi.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/update_firmware.py
${PYSITELIB}/SoftLayer/CLI/hardware/update_firmware.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/update_firmware.pyo
${PYSITELIB}/SoftLayer/CLI/hardware/upgrade.py
${PYSITELIB}/SoftLayer/CLI/hardware/upgrade.pyc
${PYSITELIB}/SoftLayer/CLI/hardware/upgrade.pyo
${PYSITELIB}/SoftLayer/CLI/helpers.py
${PYSITELIB}/SoftLayer/CLI/helpers.pyc
${PYSITELIB}/SoftLayer/CLI/helpers.pyo
${PYSITELIB}/SoftLayer/CLI/image/__init__.py
${PYSITELIB}/SoftLayer/CLI/image/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/image/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/image/datacenter.py
${PYSITELIB}/SoftLayer/CLI/image/datacenter.pyc
${PYSITELIB}/SoftLayer/CLI/image/datacenter.pyo
${PYSITELIB}/SoftLayer/CLI/image/delete.py
${PYSITELIB}/SoftLayer/CLI/image/delete.pyc
${PYSITELIB}/SoftLayer/CLI/image/delete.pyo
${PYSITELIB}/SoftLayer/CLI/image/detail.py
${PYSITELIB}/SoftLayer/CLI/image/detail.pyc
${PYSITELIB}/SoftLayer/CLI/image/detail.pyo
${PYSITELIB}/SoftLayer/CLI/image/edit.py
${PYSITELIB}/SoftLayer/CLI/image/edit.pyc
${PYSITELIB}/SoftLayer/CLI/image/edit.pyo
${PYSITELIB}/SoftLayer/CLI/image/export.py
${PYSITELIB}/SoftLayer/CLI/image/export.pyc
${PYSITELIB}/SoftLayer/CLI/image/export.pyo
${PYSITELIB}/SoftLayer/CLI/image/import.py
${PYSITELIB}/SoftLayer/CLI/image/import.pyc
${PYSITELIB}/SoftLayer/CLI/image/import.pyo
${PYSITELIB}/SoftLayer/CLI/image/list.py
${PYSITELIB}/SoftLayer/CLI/image/list.pyc
${PYSITELIB}/SoftLayer/CLI/image/list.pyo
${PYSITELIB}/SoftLayer/CLI/licenses/__init__.py
${PYSITELIB}/SoftLayer/CLI/licenses/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/licenses/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/licenses/cancel.py
${PYSITELIB}/SoftLayer/CLI/licenses/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/licenses/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/licenses/create.py
${PYSITELIB}/SoftLayer/CLI/licenses/create.pyc
${PYSITELIB}/SoftLayer/CLI/licenses/create.pyo
${PYSITELIB}/SoftLayer/CLI/licenses/create_options.py
${PYSITELIB}/SoftLayer/CLI/licenses/create_options.pyc
${PYSITELIB}/SoftLayer/CLI/licenses/create_options.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/__init__.py
${PYSITELIB}/SoftLayer/CLI/loadbal/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/detail.py
${PYSITELIB}/SoftLayer/CLI/loadbal/detail.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/detail.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/health.py
${PYSITELIB}/SoftLayer/CLI/loadbal/health.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/health.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/layer7_policy_list.py
${PYSITELIB}/SoftLayer/CLI/loadbal/layer7_policy_list.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/layer7_policy_list.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/list.py
${PYSITELIB}/SoftLayer/CLI/loadbal/list.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/list.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/members.py
${PYSITELIB}/SoftLayer/CLI/loadbal/members.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/members.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/ns_detail.py
${PYSITELIB}/SoftLayer/CLI/loadbal/ns_detail.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/ns_detail.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/ns_list.py
${PYSITELIB}/SoftLayer/CLI/loadbal/ns_list.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/ns_list.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/order.py
${PYSITELIB}/SoftLayer/CLI/loadbal/order.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/order.pyo
${PYSITELIB}/SoftLayer/CLI/loadbal/pools.py
${PYSITELIB}/SoftLayer/CLI/loadbal/pools.pyc
${PYSITELIB}/SoftLayer/CLI/loadbal/pools.pyo
${PYSITELIB}/SoftLayer/CLI/metadata.py
${PYSITELIB}/SoftLayer/CLI/metadata.pyc
${PYSITELIB}/SoftLayer/CLI/metadata.pyo
${PYSITELIB}/SoftLayer/CLI/nas/__init__.py
${PYSITELIB}/SoftLayer/CLI/nas/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/nas/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/nas/credentials.py
${PYSITELIB}/SoftLayer/CLI/nas/credentials.pyc
${PYSITELIB}/SoftLayer/CLI/nas/credentials.pyo
${PYSITELIB}/SoftLayer/CLI/nas/list.py
${PYSITELIB}/SoftLayer/CLI/nas/list.pyc
${PYSITELIB}/SoftLayer/CLI/nas/list.pyo
${PYSITELIB}/SoftLayer/CLI/object_storage/__init__.py
${PYSITELIB}/SoftLayer/CLI/object_storage/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/object_storage/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/__init__.py
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/create.py
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/create.pyc
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/create.pyo
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/delete.py
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/delete.pyc
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/delete.pyo
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/limit.py
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/limit.pyc
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/limit.pyo
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/list.py
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/list.pyc
${PYSITELIB}/SoftLayer/CLI/object_storage/credential/list.pyo
${PYSITELIB}/SoftLayer/CLI/object_storage/list_accounts.py
${PYSITELIB}/SoftLayer/CLI/object_storage/list_accounts.pyc
${PYSITELIB}/SoftLayer/CLI/object_storage/list_accounts.pyo
${PYSITELIB}/SoftLayer/CLI/object_storage/list_endpoints.py
${PYSITELIB}/SoftLayer/CLI/object_storage/list_endpoints.pyc
${PYSITELIB}/SoftLayer/CLI/object_storage/list_endpoints.pyo
${PYSITELIB}/SoftLayer/CLI/order/__init__.py
${PYSITELIB}/SoftLayer/CLI/order/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/order/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/order/category_list.py
${PYSITELIB}/SoftLayer/CLI/order/category_list.pyc
${PYSITELIB}/SoftLayer/CLI/order/category_list.pyo
${PYSITELIB}/SoftLayer/CLI/order/item_list.py
${PYSITELIB}/SoftLayer/CLI/order/item_list.pyc
${PYSITELIB}/SoftLayer/CLI/order/item_list.pyo
${PYSITELIB}/SoftLayer/CLI/order/lookup.py
${PYSITELIB}/SoftLayer/CLI/order/lookup.pyc
${PYSITELIB}/SoftLayer/CLI/order/lookup.pyo
${PYSITELIB}/SoftLayer/CLI/order/package_list.py
${PYSITELIB}/SoftLayer/CLI/order/package_list.pyc
${PYSITELIB}/SoftLayer/CLI/order/package_list.pyo
${PYSITELIB}/SoftLayer/CLI/order/package_locations.py
${PYSITELIB}/SoftLayer/CLI/order/package_locations.pyc
${PYSITELIB}/SoftLayer/CLI/order/package_locations.pyo
${PYSITELIB}/SoftLayer/CLI/order/place.py
${PYSITELIB}/SoftLayer/CLI/order/place.pyc
${PYSITELIB}/SoftLayer/CLI/order/place.pyo
${PYSITELIB}/SoftLayer/CLI/order/place_quote.py
${PYSITELIB}/SoftLayer/CLI/order/place_quote.pyc
${PYSITELIB}/SoftLayer/CLI/order/place_quote.pyo
${PYSITELIB}/SoftLayer/CLI/order/preset_list.py
${PYSITELIB}/SoftLayer/CLI/order/preset_list.pyc
${PYSITELIB}/SoftLayer/CLI/order/preset_list.pyo
${PYSITELIB}/SoftLayer/CLI/order/quote.py
${PYSITELIB}/SoftLayer/CLI/order/quote.pyc
${PYSITELIB}/SoftLayer/CLI/order/quote.pyo
${PYSITELIB}/SoftLayer/CLI/order/quote_detail.py
${PYSITELIB}/SoftLayer/CLI/order/quote_detail.pyc
${PYSITELIB}/SoftLayer/CLI/order/quote_detail.pyo
${PYSITELIB}/SoftLayer/CLI/order/quote_list.py
${PYSITELIB}/SoftLayer/CLI/order/quote_list.pyc
${PYSITELIB}/SoftLayer/CLI/order/quote_list.pyo
${PYSITELIB}/SoftLayer/CLI/order/quote_save.py
${PYSITELIB}/SoftLayer/CLI/order/quote_save.pyc
${PYSITELIB}/SoftLayer/CLI/order/quote_save.pyo
${PYSITELIB}/SoftLayer/CLI/report/__init__.py
${PYSITELIB}/SoftLayer/CLI/report/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/report/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/report/bandwidth.py
${PYSITELIB}/SoftLayer/CLI/report/bandwidth.pyc
${PYSITELIB}/SoftLayer/CLI/report/bandwidth.pyo
${PYSITELIB}/SoftLayer/CLI/routes.py
${PYSITELIB}/SoftLayer/CLI/routes.pyc
${PYSITELIB}/SoftLayer/CLI/routes.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/__init__.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/create.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/create.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/create.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/delete.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/delete.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/delete.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/detail.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/detail.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/detail.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/edit.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/edit.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/edit.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/event_log.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/event_log.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/event_log.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/interface.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/interface.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/interface.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/list.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/list.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/list.pyo
${PYSITELIB}/SoftLayer/CLI/securitygroup/rule.py
${PYSITELIB}/SoftLayer/CLI/securitygroup/rule.pyc
${PYSITELIB}/SoftLayer/CLI/securitygroup/rule.pyo
${PYSITELIB}/SoftLayer/CLI/sshkey/__init__.py
${PYSITELIB}/SoftLayer/CLI/sshkey/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/sshkey/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/sshkey/add.py
${PYSITELIB}/SoftLayer/CLI/sshkey/add.pyc
${PYSITELIB}/SoftLayer/CLI/sshkey/add.pyo
${PYSITELIB}/SoftLayer/CLI/sshkey/edit.py
${PYSITELIB}/SoftLayer/CLI/sshkey/edit.pyc
${PYSITELIB}/SoftLayer/CLI/sshkey/edit.pyo
${PYSITELIB}/SoftLayer/CLI/sshkey/list.py
${PYSITELIB}/SoftLayer/CLI/sshkey/list.pyc
${PYSITELIB}/SoftLayer/CLI/sshkey/list.pyo
${PYSITELIB}/SoftLayer/CLI/sshkey/print.py
${PYSITELIB}/SoftLayer/CLI/sshkey/print.pyc
${PYSITELIB}/SoftLayer/CLI/sshkey/print.pyo
${PYSITELIB}/SoftLayer/CLI/sshkey/remove.py
${PYSITELIB}/SoftLayer/CLI/sshkey/remove.pyc
${PYSITELIB}/SoftLayer/CLI/sshkey/remove.pyo
${PYSITELIB}/SoftLayer/CLI/ssl/__init__.py
${PYSITELIB}/SoftLayer/CLI/ssl/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/ssl/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/ssl/add.py
${PYSITELIB}/SoftLayer/CLI/ssl/add.pyc
${PYSITELIB}/SoftLayer/CLI/ssl/add.pyo
${PYSITELIB}/SoftLayer/CLI/ssl/download.py
${PYSITELIB}/SoftLayer/CLI/ssl/download.pyc
${PYSITELIB}/SoftLayer/CLI/ssl/download.pyo
${PYSITELIB}/SoftLayer/CLI/ssl/edit.py
${PYSITELIB}/SoftLayer/CLI/ssl/edit.pyc
${PYSITELIB}/SoftLayer/CLI/ssl/edit.pyo
${PYSITELIB}/SoftLayer/CLI/ssl/list.py
${PYSITELIB}/SoftLayer/CLI/ssl/list.pyc
${PYSITELIB}/SoftLayer/CLI/ssl/list.pyo
${PYSITELIB}/SoftLayer/CLI/ssl/remove.py
${PYSITELIB}/SoftLayer/CLI/ssl/remove.pyc
${PYSITELIB}/SoftLayer/CLI/ssl/remove.pyo
${PYSITELIB}/SoftLayer/CLI/storage_utils.py
${PYSITELIB}/SoftLayer/CLI/storage_utils.pyc
${PYSITELIB}/SoftLayer/CLI/storage_utils.pyo
${PYSITELIB}/SoftLayer/CLI/subnet/__init__.py
${PYSITELIB}/SoftLayer/CLI/subnet/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/subnet/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/subnet/cancel.py
${PYSITELIB}/SoftLayer/CLI/subnet/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/subnet/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/subnet/create.py
${PYSITELIB}/SoftLayer/CLI/subnet/create.pyc
${PYSITELIB}/SoftLayer/CLI/subnet/create.pyo
${PYSITELIB}/SoftLayer/CLI/subnet/detail.py
${PYSITELIB}/SoftLayer/CLI/subnet/detail.pyc
${PYSITELIB}/SoftLayer/CLI/subnet/detail.pyo
${PYSITELIB}/SoftLayer/CLI/subnet/edit.py
${PYSITELIB}/SoftLayer/CLI/subnet/edit.pyc
${PYSITELIB}/SoftLayer/CLI/subnet/edit.pyo
${PYSITELIB}/SoftLayer/CLI/subnet/edit_ip.py
${PYSITELIB}/SoftLayer/CLI/subnet/edit_ip.pyc
${PYSITELIB}/SoftLayer/CLI/subnet/edit_ip.pyo
${PYSITELIB}/SoftLayer/CLI/subnet/list.py
${PYSITELIB}/SoftLayer/CLI/subnet/list.pyc
${PYSITELIB}/SoftLayer/CLI/subnet/list.pyo
${PYSITELIB}/SoftLayer/CLI/subnet/lookup.py
${PYSITELIB}/SoftLayer/CLI/subnet/lookup.pyc
${PYSITELIB}/SoftLayer/CLI/subnet/lookup.pyo
${PYSITELIB}/SoftLayer/CLI/summary.py
${PYSITELIB}/SoftLayer/CLI/summary.pyc
${PYSITELIB}/SoftLayer/CLI/summary.pyo
${PYSITELIB}/SoftLayer/CLI/tags/__init__.py
${PYSITELIB}/SoftLayer/CLI/tags/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/tags/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/tags/cleanup.py
${PYSITELIB}/SoftLayer/CLI/tags/cleanup.pyc
${PYSITELIB}/SoftLayer/CLI/tags/cleanup.pyo
${PYSITELIB}/SoftLayer/CLI/tags/delete.py
${PYSITELIB}/SoftLayer/CLI/tags/delete.pyc
${PYSITELIB}/SoftLayer/CLI/tags/delete.pyo
${PYSITELIB}/SoftLayer/CLI/tags/details.py
${PYSITELIB}/SoftLayer/CLI/tags/details.pyc
${PYSITELIB}/SoftLayer/CLI/tags/details.pyo
${PYSITELIB}/SoftLayer/CLI/tags/list.py
${PYSITELIB}/SoftLayer/CLI/tags/list.pyc
${PYSITELIB}/SoftLayer/CLI/tags/list.pyo
${PYSITELIB}/SoftLayer/CLI/tags/set.py
${PYSITELIB}/SoftLayer/CLI/tags/set.pyc
${PYSITELIB}/SoftLayer/CLI/tags/set.pyo
${PYSITELIB}/SoftLayer/CLI/tags/taggable.py
${PYSITELIB}/SoftLayer/CLI/tags/taggable.pyc
${PYSITELIB}/SoftLayer/CLI/tags/taggable.pyo
${PYSITELIB}/SoftLayer/CLI/template.py
${PYSITELIB}/SoftLayer/CLI/template.pyc
${PYSITELIB}/SoftLayer/CLI/template.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/__init__.py
${PYSITELIB}/SoftLayer/CLI/ticket/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/attach.py
${PYSITELIB}/SoftLayer/CLI/ticket/attach.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/attach.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/create.py
${PYSITELIB}/SoftLayer/CLI/ticket/create.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/create.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/detach.py
${PYSITELIB}/SoftLayer/CLI/ticket/detach.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/detach.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/detail.py
${PYSITELIB}/SoftLayer/CLI/ticket/detail.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/detail.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/list.py
${PYSITELIB}/SoftLayer/CLI/ticket/list.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/list.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/subjects.py
${PYSITELIB}/SoftLayer/CLI/ticket/subjects.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/subjects.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/summary.py
${PYSITELIB}/SoftLayer/CLI/ticket/summary.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/summary.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/update.py
${PYSITELIB}/SoftLayer/CLI/ticket/update.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/update.pyo
${PYSITELIB}/SoftLayer/CLI/ticket/upload.py
${PYSITELIB}/SoftLayer/CLI/ticket/upload.pyc
${PYSITELIB}/SoftLayer/CLI/ticket/upload.pyo
${PYSITELIB}/SoftLayer/CLI/user/__init__.py
${PYSITELIB}/SoftLayer/CLI/user/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/user/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/user/create.py
${PYSITELIB}/SoftLayer/CLI/user/create.pyc
${PYSITELIB}/SoftLayer/CLI/user/create.pyo
${PYSITELIB}/SoftLayer/CLI/user/delete.py
${PYSITELIB}/SoftLayer/CLI/user/delete.pyc
${PYSITELIB}/SoftLayer/CLI/user/delete.pyo
${PYSITELIB}/SoftLayer/CLI/user/detail.py
${PYSITELIB}/SoftLayer/CLI/user/detail.pyc
${PYSITELIB}/SoftLayer/CLI/user/detail.pyo
${PYSITELIB}/SoftLayer/CLI/user/edit_details.py
${PYSITELIB}/SoftLayer/CLI/user/edit_details.pyc
${PYSITELIB}/SoftLayer/CLI/user/edit_details.pyo
${PYSITELIB}/SoftLayer/CLI/user/edit_notifications.py
${PYSITELIB}/SoftLayer/CLI/user/edit_notifications.pyc
${PYSITELIB}/SoftLayer/CLI/user/edit_notifications.pyo
${PYSITELIB}/SoftLayer/CLI/user/edit_permissions.py
${PYSITELIB}/SoftLayer/CLI/user/edit_permissions.pyc
${PYSITELIB}/SoftLayer/CLI/user/edit_permissions.pyo
${PYSITELIB}/SoftLayer/CLI/user/list.py
${PYSITELIB}/SoftLayer/CLI/user/list.pyc
${PYSITELIB}/SoftLayer/CLI/user/list.pyo
${PYSITELIB}/SoftLayer/CLI/user/notifications.py
${PYSITELIB}/SoftLayer/CLI/user/notifications.pyc
${PYSITELIB}/SoftLayer/CLI/user/notifications.pyo
${PYSITELIB}/SoftLayer/CLI/user/permissions.py
${PYSITELIB}/SoftLayer/CLI/user/permissions.pyc
${PYSITELIB}/SoftLayer/CLI/user/permissions.pyo
${PYSITELIB}/SoftLayer/CLI/user/vpn_manual.py
${PYSITELIB}/SoftLayer/CLI/user/vpn_manual.pyc
${PYSITELIB}/SoftLayer/CLI/user/vpn_manual.pyo
${PYSITELIB}/SoftLayer/CLI/user/vpn_subnet.py
${PYSITELIB}/SoftLayer/CLI/user/vpn_subnet.pyc
${PYSITELIB}/SoftLayer/CLI/user/vpn_subnet.pyo
${PYSITELIB}/SoftLayer/CLI/virt/__init__.py
${PYSITELIB}/SoftLayer/CLI/virt/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/virt/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/virt/authorize_storage.py
${PYSITELIB}/SoftLayer/CLI/virt/authorize_storage.pyc
${PYSITELIB}/SoftLayer/CLI/virt/authorize_storage.pyo
${PYSITELIB}/SoftLayer/CLI/virt/bandwidth.py
${PYSITELIB}/SoftLayer/CLI/virt/bandwidth.pyc
${PYSITELIB}/SoftLayer/CLI/virt/bandwidth.pyo
${PYSITELIB}/SoftLayer/CLI/virt/billing.py
${PYSITELIB}/SoftLayer/CLI/virt/billing.pyc
${PYSITELIB}/SoftLayer/CLI/virt/billing.pyo
${PYSITELIB}/SoftLayer/CLI/virt/cancel.py
${PYSITELIB}/SoftLayer/CLI/virt/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/virt/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/virt/capacity/__init__.py
${PYSITELIB}/SoftLayer/CLI/virt/capacity/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/virt/capacity/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create.py
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create.pyc
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create.pyo
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create_guest.py
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create_guest.pyc
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create_guest.pyo
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create_options.py
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create_options.pyc
${PYSITELIB}/SoftLayer/CLI/virt/capacity/create_options.pyo
${PYSITELIB}/SoftLayer/CLI/virt/capacity/detail.py
${PYSITELIB}/SoftLayer/CLI/virt/capacity/detail.pyc
${PYSITELIB}/SoftLayer/CLI/virt/capacity/detail.pyo
${PYSITELIB}/SoftLayer/CLI/virt/capacity/list.py
${PYSITELIB}/SoftLayer/CLI/virt/capacity/list.pyc
${PYSITELIB}/SoftLayer/CLI/virt/capacity/list.pyo
${PYSITELIB}/SoftLayer/CLI/virt/capture.py
${PYSITELIB}/SoftLayer/CLI/virt/capture.pyc
${PYSITELIB}/SoftLayer/CLI/virt/capture.pyo
${PYSITELIB}/SoftLayer/CLI/virt/create.py
${PYSITELIB}/SoftLayer/CLI/virt/create.pyc
${PYSITELIB}/SoftLayer/CLI/virt/create.pyo
${PYSITELIB}/SoftLayer/CLI/virt/create_options.py
${PYSITELIB}/SoftLayer/CLI/virt/create_options.pyc
${PYSITELIB}/SoftLayer/CLI/virt/create_options.pyo
${PYSITELIB}/SoftLayer/CLI/virt/credentials.py
${PYSITELIB}/SoftLayer/CLI/virt/credentials.pyc
${PYSITELIB}/SoftLayer/CLI/virt/credentials.pyo
${PYSITELIB}/SoftLayer/CLI/virt/detail.py
${PYSITELIB}/SoftLayer/CLI/virt/detail.pyc
${PYSITELIB}/SoftLayer/CLI/virt/detail.pyo
${PYSITELIB}/SoftLayer/CLI/virt/dns.py
${PYSITELIB}/SoftLayer/CLI/virt/dns.pyc
${PYSITELIB}/SoftLayer/CLI/virt/dns.pyo
${PYSITELIB}/SoftLayer/CLI/virt/edit.py
${PYSITELIB}/SoftLayer/CLI/virt/edit.pyc
${PYSITELIB}/SoftLayer/CLI/virt/edit.pyo
${PYSITELIB}/SoftLayer/CLI/virt/list.py
${PYSITELIB}/SoftLayer/CLI/virt/list.pyc
${PYSITELIB}/SoftLayer/CLI/virt/list.pyo
${PYSITELIB}/SoftLayer/CLI/virt/migrate.py
${PYSITELIB}/SoftLayer/CLI/virt/migrate.pyc
${PYSITELIB}/SoftLayer/CLI/virt/migrate.pyo
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/__init__.py
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/create.py
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/create.pyc
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/create.pyo
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/create_options.py
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/create_options.pyc
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/create_options.pyo
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/delete.py
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/delete.pyc
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/delete.pyo
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/detail.py
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/detail.pyc
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/detail.pyo
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/list.py
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/list.pyc
${PYSITELIB}/SoftLayer/CLI/virt/placementgroup/list.pyo
${PYSITELIB}/SoftLayer/CLI/virt/power.py
${PYSITELIB}/SoftLayer/CLI/virt/power.pyc
${PYSITELIB}/SoftLayer/CLI/virt/power.pyo
${PYSITELIB}/SoftLayer/CLI/virt/ready.py
${PYSITELIB}/SoftLayer/CLI/virt/ready.pyc
${PYSITELIB}/SoftLayer/CLI/virt/ready.pyo
${PYSITELIB}/SoftLayer/CLI/virt/reload.py
${PYSITELIB}/SoftLayer/CLI/virt/reload.pyc
${PYSITELIB}/SoftLayer/CLI/virt/reload.pyo
${PYSITELIB}/SoftLayer/CLI/virt/storage.py
${PYSITELIB}/SoftLayer/CLI/virt/storage.pyc
${PYSITELIB}/SoftLayer/CLI/virt/storage.pyo
${PYSITELIB}/SoftLayer/CLI/virt/upgrade.py
${PYSITELIB}/SoftLayer/CLI/virt/upgrade.pyc
${PYSITELIB}/SoftLayer/CLI/virt/upgrade.pyo
${PYSITELIB}/SoftLayer/CLI/virt/usage.py
${PYSITELIB}/SoftLayer/CLI/virt/usage.pyc
${PYSITELIB}/SoftLayer/CLI/virt/usage.pyo
${PYSITELIB}/SoftLayer/CLI/vlan/__init__.py
${PYSITELIB}/SoftLayer/CLI/vlan/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/vlan/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/vlan/cancel.py
${PYSITELIB}/SoftLayer/CLI/vlan/cancel.pyc
${PYSITELIB}/SoftLayer/CLI/vlan/cancel.pyo
${PYSITELIB}/SoftLayer/CLI/vlan/create.py
${PYSITELIB}/SoftLayer/CLI/vlan/create.pyc
${PYSITELIB}/SoftLayer/CLI/vlan/create.pyo
${PYSITELIB}/SoftLayer/CLI/vlan/create_options.py
${PYSITELIB}/SoftLayer/CLI/vlan/create_options.pyc
${PYSITELIB}/SoftLayer/CLI/vlan/create_options.pyo
${PYSITELIB}/SoftLayer/CLI/vlan/detail.py
${PYSITELIB}/SoftLayer/CLI/vlan/detail.pyc
${PYSITELIB}/SoftLayer/CLI/vlan/detail.pyo
${PYSITELIB}/SoftLayer/CLI/vlan/edit.py
${PYSITELIB}/SoftLayer/CLI/vlan/edit.pyc
${PYSITELIB}/SoftLayer/CLI/vlan/edit.pyo
${PYSITELIB}/SoftLayer/CLI/vlan/list.py
${PYSITELIB}/SoftLayer/CLI/vlan/list.pyc
${PYSITELIB}/SoftLayer/CLI/vlan/list.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/__init__.py
${PYSITELIB}/SoftLayer/CLI/vpn/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/__init__.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/configure.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/configure.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/configure.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/detail.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/detail.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/detail.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/list.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/list.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/list.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/__init__.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/add.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/add.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/add.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/remove.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/remove.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/subnet/remove.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/__init__.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/__init__.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/__init__.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/add.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/add.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/add.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/remove.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/remove.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/remove.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/update.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/update.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/translation/update.pyo
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/update.py
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/update.pyc
${PYSITELIB}/SoftLayer/CLI/vpn/ipsec/update.pyo
${PYSITELIB}/SoftLayer/__init__.py
${PYSITELIB}/SoftLayer/__init__.pyc
${PYSITELIB}/SoftLayer/__init__.pyo
${PYSITELIB}/SoftLayer/auth.py
${PYSITELIB}/SoftLayer/auth.pyc
${PYSITELIB}/SoftLayer/auth.pyo
${PYSITELIB}/SoftLayer/config.py
${PYSITELIB}/SoftLayer/config.pyc
${PYSITELIB}/SoftLayer/config.pyo
${PYSITELIB}/SoftLayer/consts.py
${PYSITELIB}/SoftLayer/consts.pyc
${PYSITELIB}/SoftLayer/consts.pyo
${PYSITELIB}/SoftLayer/decoration.py
${PYSITELIB}/SoftLayer/decoration.pyc
${PYSITELIB}/SoftLayer/decoration.pyo
${PYSITELIB}/SoftLayer/exceptions.py
${PYSITELIB}/SoftLayer/exceptions.pyc
${PYSITELIB}/SoftLayer/exceptions.pyo
${PYSITELIB}/SoftLayer/fixtures/BluePages_Search.py
${PYSITELIB}/SoftLayer/fixtures/BluePages_Search.pyc
${PYSITELIB}/SoftLayer/fixtures/BluePages_Search.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Account.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Account.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Account.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Invoice.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Invoice.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Invoice.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Invoice_Item.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Invoice_Item.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Invoice_Item.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Item.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Item.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Item.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Order.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Order.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Order.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Order_Quote.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Order_Quote.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Billing_Order_Quote.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Dns_Domain.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Dns_Domain.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Dns_Domain.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Dns_Domain_ResourceRecord.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Dns_Domain_ResourceRecord.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Dns_Domain_ResourceRecord.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Email_Subscription.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Email_Subscription.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Email_Subscription.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Event_Log.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Event_Log.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Event_Log.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Hardware.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Hardware.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Hardware.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Hardware_Server.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Hardware_Server.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Hardware_Server.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Location.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Location.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Location.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Location_Datacenter.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Location_Datacenter.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Location_Datacenter.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Metric_Tracking_Object.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Metric_Tracking_Object.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Metric_Tracking_Object.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Health_Check_Type.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Method.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Routing_Type.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_Service_Group.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualIpAddress.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Application_Delivery_Controller_LoadBalancer_VirtualServer.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Bandwidth_Version1_Allotment.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Bandwidth_Version1_Allotment.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Bandwidth_Version1_Allotment.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Cache_Purge.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Configuration_Mapping_Path.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Metrics.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Metrics.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_CdnMarketplace_Metrics.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Component_Firewall.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Component_Firewall.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Component_Firewall.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Firewall_Update_Request.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Firewall_Update_Request.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Firewall_Update_Request.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_HealthMonitor.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_HealthMonitor.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_HealthMonitor.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_L7Pool.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_L7Pool.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_L7Pool.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_Listener.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_Listener.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_Listener.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_LoadBalancer.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_LoadBalancer.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_LoadBalancer.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_Member.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_Member.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_LBaaS_Member.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Message_Delivery_Email_Sendgrid.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Message_Delivery_Email_Sendgrid.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Message_Delivery_Email_Sendgrid.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Pod.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Pod.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Pod.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_SecurityGroup.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_SecurityGroup.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_SecurityGroup.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Service_Vpn_Overrides.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Service_Vpn_Overrides.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Service_Vpn_Overrides.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Allowed_Host.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Allowed_Host.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Allowed_Host.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Hub_Cleversafe_Account.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Hub_Cleversafe_Account.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Hub_Cleversafe_Account.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Iscsi.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Iscsi.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Storage_Iscsi.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress_Global.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress_Global.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_IpAddress_Global.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_Rwhois_Data.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_Rwhois_Data.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Subnet_Rwhois_Data.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Vlan.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Vlan.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Vlan.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Vlan_Firewall.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Vlan_Firewall.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Network_Vlan_Firewall.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Notification_Occurrence_Event.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Notification_Occurrence_Event.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Notification_Occurrence_Event.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Order.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Order.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Order.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Package.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Package.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Package.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Package_Preset.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Package_Preset.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Product_Package_Preset.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Provisioning_Maintenance_Window.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Provisioning_Maintenance_Window.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Provisioning_Maintenance_Window.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Resource_Metadata.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Resource_Metadata.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Resource_Metadata.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Scale_Group.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Scale_Group.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Scale_Group.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Scale_Policy.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Scale_Policy.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Scale_Policy.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Search.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Search.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Search.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Security_Certificate.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Security_Certificate.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Security_Certificate.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Security_Ssh_Key.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Security_Ssh_Key.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Security_Ssh_Key.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Software_AccountLicense.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Software_AccountLicense.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Software_AccountLicense.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Tag.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Tag.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Tag.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Ticket.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Ticket.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Ticket.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Ticket_Subject.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Ticket_Subject.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Ticket_Subject.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_User_Customer.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_User_Customer.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_User_Customer.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_User_Customer_CustomerPermission_Permission.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_User_Customer_CustomerPermission_Permission.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_User_Customer_CustomerPermission_Permission.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_DedicatedHost.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_DedicatedHost.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_DedicatedHost.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Guest.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Guest.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Guest.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Guest_Block_Device_Template_Group.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Guest_Block_Device_Template_Group.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Guest_Block_Device_Template_Group.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Host.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Host.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_Host.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup_Rule.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup_Rule.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_PlacementGroup_Rule.pyo
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_ReservedCapacityGroup.py
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_ReservedCapacityGroup.pyc
${PYSITELIB}/SoftLayer/fixtures/SoftLayer_Virtual_ReservedCapacityGroup.pyo
${PYSITELIB}/SoftLayer/fixtures/__init__.py
${PYSITELIB}/SoftLayer/fixtures/__init__.pyc
${PYSITELIB}/SoftLayer/fixtures/__init__.pyo
${PYSITELIB}/SoftLayer/managers/__init__.py
${PYSITELIB}/SoftLayer/managers/__init__.pyc
${PYSITELIB}/SoftLayer/managers/__init__.pyo
${PYSITELIB}/SoftLayer/managers/account.py
${PYSITELIB}/SoftLayer/managers/account.pyc
${PYSITELIB}/SoftLayer/managers/account.pyo
${PYSITELIB}/SoftLayer/managers/autoscale.py
${PYSITELIB}/SoftLayer/managers/autoscale.pyc
${PYSITELIB}/SoftLayer/managers/autoscale.pyo
${PYSITELIB}/SoftLayer/managers/block.py
${PYSITELIB}/SoftLayer/managers/block.pyc
${PYSITELIB}/SoftLayer/managers/block.pyo
${PYSITELIB}/SoftLayer/managers/cdn.py
${PYSITELIB}/SoftLayer/managers/cdn.pyc
${PYSITELIB}/SoftLayer/managers/cdn.pyo
${PYSITELIB}/SoftLayer/managers/dedicated_host.py
${PYSITELIB}/SoftLayer/managers/dedicated_host.pyc
${PYSITELIB}/SoftLayer/managers/dedicated_host.pyo
${PYSITELIB}/SoftLayer/managers/dns.py
${PYSITELIB}/SoftLayer/managers/dns.pyc
${PYSITELIB}/SoftLayer/managers/dns.pyo
${PYSITELIB}/SoftLayer/managers/email.py
${PYSITELIB}/SoftLayer/managers/email.pyc
${PYSITELIB}/SoftLayer/managers/email.pyo
${PYSITELIB}/SoftLayer/managers/event_log.py
${PYSITELIB}/SoftLayer/managers/event_log.pyc
${PYSITELIB}/SoftLayer/managers/event_log.pyo
${PYSITELIB}/SoftLayer/managers/file.py
${PYSITELIB}/SoftLayer/managers/file.pyc
${PYSITELIB}/SoftLayer/managers/file.pyo
${PYSITELIB}/SoftLayer/managers/firewall.py
${PYSITELIB}/SoftLayer/managers/firewall.pyc
${PYSITELIB}/SoftLayer/managers/firewall.pyo
${PYSITELIB}/SoftLayer/managers/hardware.py
${PYSITELIB}/SoftLayer/managers/hardware.pyc
${PYSITELIB}/SoftLayer/managers/hardware.pyo
${PYSITELIB}/SoftLayer/managers/image.py
${PYSITELIB}/SoftLayer/managers/image.pyc
${PYSITELIB}/SoftLayer/managers/image.pyo
${PYSITELIB}/SoftLayer/managers/ipsec.py
${PYSITELIB}/SoftLayer/managers/ipsec.pyc
${PYSITELIB}/SoftLayer/managers/ipsec.pyo
${PYSITELIB}/SoftLayer/managers/license.py
${PYSITELIB}/SoftLayer/managers/license.pyc
${PYSITELIB}/SoftLayer/managers/license.pyo
${PYSITELIB}/SoftLayer/managers/licenses.py
${PYSITELIB}/SoftLayer/managers/licenses.pyc
${PYSITELIB}/SoftLayer/managers/licenses.pyo
${PYSITELIB}/SoftLayer/managers/load_balancer.py
${PYSITELIB}/SoftLayer/managers/load_balancer.pyc
${PYSITELIB}/SoftLayer/managers/load_balancer.pyo
${PYSITELIB}/SoftLayer/managers/metadata.py
${PYSITELIB}/SoftLayer/managers/metadata.pyc
${PYSITELIB}/SoftLayer/managers/metadata.pyo
${PYSITELIB}/SoftLayer/managers/network.py
${PYSITELIB}/SoftLayer/managers/network.pyc
${PYSITELIB}/SoftLayer/managers/network.pyo
${PYSITELIB}/SoftLayer/managers/object_storage.py
${PYSITELIB}/SoftLayer/managers/object_storage.pyc
${PYSITELIB}/SoftLayer/managers/object_storage.pyo
${PYSITELIB}/SoftLayer/managers/ordering.py
${PYSITELIB}/SoftLayer/managers/ordering.pyc
${PYSITELIB}/SoftLayer/managers/ordering.pyo
${PYSITELIB}/SoftLayer/managers/sshkey.py
${PYSITELIB}/SoftLayer/managers/sshkey.pyc
${PYSITELIB}/SoftLayer/managers/sshkey.pyo
${PYSITELIB}/SoftLayer/managers/ssl.py
${PYSITELIB}/SoftLayer/managers/ssl.pyc
${PYSITELIB}/SoftLayer/managers/ssl.pyo
${PYSITELIB}/SoftLayer/managers/storage.py
${PYSITELIB}/SoftLayer/managers/storage.pyc
${PYSITELIB}/SoftLayer/managers/storage.pyo
${PYSITELIB}/SoftLayer/managers/storage_utils.py
${PYSITELIB}/SoftLayer/managers/storage_utils.pyc
${PYSITELIB}/SoftLayer/managers/storage_utils.pyo
${PYSITELIB}/SoftLayer/managers/tags.py
${PYSITELIB}/SoftLayer/managers/tags.pyc
${PYSITELIB}/SoftLayer/managers/tags.pyo
${PYSITELIB}/SoftLayer/managers/ticket.py
${PYSITELIB}/SoftLayer/managers/ticket.pyc
${PYSITELIB}/SoftLayer/managers/ticket.pyo
${PYSITELIB}/SoftLayer/managers/user.py
${PYSITELIB}/SoftLayer/managers/user.pyc
${PYSITELIB}/SoftLayer/managers/user.pyo
${PYSITELIB}/SoftLayer/managers/vs.py
${PYSITELIB}/SoftLayer/managers/vs.pyc
${PYSITELIB}/SoftLayer/managers/vs.pyo
${PYSITELIB}/SoftLayer/managers/vs_capacity.py
${PYSITELIB}/SoftLayer/managers/vs_capacity.pyc
${PYSITELIB}/SoftLayer/managers/vs_capacity.pyo
${PYSITELIB}/SoftLayer/managers/vs_placement.py
${PYSITELIB}/SoftLayer/managers/vs_placement.pyc
${PYSITELIB}/SoftLayer/managers/vs_placement.pyo
${PYSITELIB}/SoftLayer/shell/__init__.py
${PYSITELIB}/SoftLayer/shell/__init__.pyc
${PYSITELIB}/SoftLayer/shell/__init__.pyo
${PYSITELIB}/SoftLayer/shell/cmd_env.py
${PYSITELIB}/SoftLayer/shell/cmd_env.pyc
${PYSITELIB}/SoftLayer/shell/cmd_env.pyo
${PYSITELIB}/SoftLayer/shell/cmd_exit.py
${PYSITELIB}/SoftLayer/shell/cmd_exit.pyc
${PYSITELIB}/SoftLayer/shell/cmd_exit.pyo
${PYSITELIB}/SoftLayer/shell/cmd_help.py
${PYSITELIB}/SoftLayer/shell/cmd_help.pyc
${PYSITELIB}/SoftLayer/shell/cmd_help.pyo
${PYSITELIB}/SoftLayer/shell/completer.py
${PYSITELIB}/SoftLayer/shell/completer.pyc
${PYSITELIB}/SoftLayer/shell/completer.pyo
${PYSITELIB}/SoftLayer/shell/core.py
${PYSITELIB}/SoftLayer/shell/core.pyc
${PYSITELIB}/SoftLayer/shell/core.pyo
${PYSITELIB}/SoftLayer/shell/routes.py
${PYSITELIB}/SoftLayer/shell/routes.pyc
${PYSITELIB}/SoftLayer/shell/routes.pyo
${PYSITELIB}/SoftLayer/testing/__init__.py
${PYSITELIB}/SoftLayer/testing/__init__.pyc
${PYSITELIB}/SoftLayer/testing/__init__.pyo
${PYSITELIB}/SoftLayer/testing/xmlrpc.py
${PYSITELIB}/SoftLayer/testing/xmlrpc.pyc
${PYSITELIB}/SoftLayer/testing/xmlrpc.pyo
${PYSITELIB}/SoftLayer/transports.py
${PYSITELIB}/SoftLayer/transports.pyc
${PYSITELIB}/SoftLayer/transports.pyo
${PYSITELIB}/SoftLayer/utils.py
${PYSITELIB}/SoftLayer/utils.pyc
${PYSITELIB}/SoftLayer/utils.pyo