-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAPI-endpoints-changelog.txt
More file actions
817 lines (817 loc) · 42.1 KB
/
API-endpoints-changelog.txt
File metadata and controls
817 lines (817 loc) · 42.1 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
AgentsApi
DELETE /api/v2/agents/{agentId}
old: delete_agents
new: delete_agent
GET /api/v2/agents/{agentId}
old: get_agents_by_id
new: get_agent_by_id
GET /api/v2/tags
old: get_agent_tags
new: get_agents_tags
GET /api/v2/controllers/{controllerId}/compute-nodes/{computeNodeId}/ports/{portId}
old: get_ports_by_id
new: get_compute_node_port_by_id
GET /api/v2/controllers/{controllerId}/compute-nodes/{computeNodeId}/ports
old: get_ports
new: get_compute_node_ports
GET /api/v2/controllers/{controllerId}
old: get_controllers_by_id
new: get_controller_by_id
GET /api/v2/controllers/{controllerId}/compute-nodes/{computeNodeId}
old: get_compute_nodes_by_id
new: get_controller_compute_node_by_id
GET /api/v2/controllers/{controllerId}/compute-nodes
old: get_compute_nodes
new: get_controller_compute_nodes
PATCH /api/v2/agents/{agentId}
old: patch_agents
new: patch_agent
GET /api/v2/agents/operations/batch-delete/{id}
old: poll_batch_delete
new: poll_agents_batch_delete
GET /api/v2/agents/operations/exportFiles/{id}
old: poll_export_files
new: poll_agents_export_files
GET /api/v2/agents/operations/reboot/{id}
old: poll_reboot
new: poll_agents_reboot
GET /api/v2/agents/operations/release/{id}
old: poll_release
new: poll_agents_release
GET /api/v2/agents/operations/reserve/{id}
old: poll_reserve
new: poll_agents_reserve
GET /api/v2/agents/operations/set-dpdk-mode/{id}
old: poll_set_dpdk_mode
new: poll_agents_set_dpdk_mode
GET /api/v2/agents/operations/set-ntp/{id}
old: poll_set_ntp
new: poll_agents_set_ntp
GET /api/v2/agents/operations/update/{id}
old: poll_update
new: poll_agents_update
POST /api/v2/agents/operations/batch-delete
old: start_batch_delete
new: start_agents_batch_delete
POST /api/v2/agents/operations/exportFiles
old: start_export_files
new: start_agents_export_files
POST /api/v2/agents/operations/reboot
old: start_reboot
new: start_agents_reboot
POST /api/v2/agents/operations/release
old: start_release
new: start_agents_release
POST /api/v2/agents/operations/reserve
old: start_reserve
new: start_agents_reserve
POST /api/v2/agents/operations/set-dpdk-mode
old: start_set_dpdk_mode
new: start_agents_set_dpdk_mode
POST /api/v2/agents/operations/set-ntp
old: start_set_ntp
new: start_agents_set_ntp
POST /api/v2/agents/operations/update
old: start_update
new: start_agents_update
ApplicationResourcesApi
DELETE /api/v2/resources/captures/{captureId}
old: delete_captures
new: delete_resources_capture
DELETE /api/v2/resources/certificates/{certificateId}
old: delete_certificates
new: delete_resources_certificate
DELETE /api/v2/resources/flow-library/{flowLibraryId}
old: delete_flow_library
new: delete_resources_flow_library
DELETE /api/v2/resources/global-playlists/{globalPlaylistId}
old: delete_global_playlists
new: delete_resources_global_playlist
DELETE /api/v2/resources/http-library/{httpLibraryId}
old: delete_http_library
new: delete_resources_http_library
DELETE /api/v2/resources/media-files/{mediaFileId}
old: delete_media_files
new: delete_resources_media_file
DELETE /api/v2/resources/media-library/{mediaLibraryId}
old: delete_media_library
new: delete_resources_media_library
DELETE /api/v2/resources/other-library/{otherLibraryId}
old: delete_other_library
new: delete_resources_other_library
DELETE /api/v2/resources/payloads/{payloadId}
old: delete_payloads
new: delete_resources_payload
DELETE /api/v2/resources/pcaps/{pcapId}
old: delete_pcaps
new: delete_resources_pcap
DELETE /api/v2/resources/playlists/{playlistId}
old: delete_playlists
new: delete_resources_playlist
DELETE /api/v2/resources/sip-library/{sipLibraryId}
old: delete_sip_library
new: delete_resources_sip_library
DELETE /api/v2/resources/stats-profile/{statsProfileId}
old: delete_stats_profile
new: delete_resources_stats_profile
DELETE /api/v2/resources/tls-certificates/{tlsCertificateId}
old: delete_tls_certificates
new: delete_resources_tls_certificate
DELETE /api/v2/resources/tls-dhs/{tlsDhId}
old: delete_tls_dhs
new: delete_resources_tls_dh
DELETE /api/v2/resources/tls-keys/{tlsKeyId}
old: delete_tls_keys
new: delete_resources_tls_key
DELETE /api/v2/resources/user-defined-apps/{userDefinedAppId}
old: delete_user_defined_apps
new: delete_resources_user_defined_app
GET /api/v2/resources/captures/{captureId}/flows
old: get_flows
new: get_capture_flows
GET /api/v2/resources/captures/{captureId}/flows/{flowId}/exchanges
old: get_exchanges
new: get_flow_exchanges
GET /api/v2/resources/apps/{appId}
old: get_apps_by_id
new: get_resources_app_by_id
GET /api/v2/resources/application-types/{applicationTypeId}
old: get_application_types_by_id
new: get_resources_application_type_by_id
GET /api/v2/resources/application-types
old: get_application_types
new: get_resources_application_types
GET /api/v2/resources/apps
old: get_apps
new: get_resources_apps
GET /api/v2/resources/attacks/{attackId}
old: get_attacks_by_id
new: get_resources_attack_by_id
GET /api/v2/resources/attack-categories
old: get_attack_categories
new: get_resources_attack_categories
GET /api/v2/resources/attacks
old: get_attacks
new: get_resources_attacks
GET /api/v2/resources/auth-profiles/{authProfileId}
old: get_auth_profiles_by_id
new: get_resources_auth_profile_by_id
GET /api/v2/resources/auth-profiles
old: get_auth_profiles
new: get_resources_auth_profiles
GET /api/v2/resources/captures/{captureId}
old: get_captures_by_id
new: get_resources_capture_by_id
GET /api/v2/resources/captures
old: get_captures
new: get_resources_captures
GET /api/v2/resources/captures/operations/uploadFile/{uploadFileId}/result
old: get_resources_captures_operations_upload_file_operation_id_result
new: get_resources_captures_upload_file_result
GET /api/v2/resources/certificates/{certificateId}
old: get_certificates_by_id
new: get_resources_certificate_by_id
GET /api/v2/resources/certificates/{certificateId}/contentFile
old: get_resources_certificates_certificates_id_content_file
new: get_resources_certificate_content_file
GET /api/v2/resources/certificates
old: get_certificates
new: get_resources_certificates
GET /api/v2/resources/certificates/operations/uploadFile/{uploadFileId}/result
old: get_resources_certificates_operations_upload_file_operation_id_result
new: get_resources_certificates_upload_file_result
GET /api/v2/resources/flow-library
old: get_flow_library
new: get_resources_flow_library
GET /api/v2/resources/flow-library/{flowLibraryId}
old: get_flow_library_by_id
new: get_resources_flow_library_by_id
GET /api/v2/resources/flow-library/{flowLibraryId}/contentFile
old: get_resources_flow_library_flow_library_id_content_file
new: get_resources_flow_library_content_file
GET /api/v2/resources/flow-library/operations/uploadFile/{uploadFileId}/result
old: get_resources_flow_library_operations_upload_file_operation_id_result
new: get_resources_flow_library_upload_file_result
GET /api/v2/resources/global-playlists/{globalPlaylistId}
old: get_global_playlists_by_id
new: get_resources_global_playlist_by_id
GET /api/v2/resources/global-playlists/{globalPlaylistId}/contentFile
old: get_resources_global_playlists_global_playlists_id_content_file
new: get_resources_global_playlist_content_file
GET /api/v2/resources/global-playlists
old: get_global_playlists
new: get_resources_global_playlists
GET /api/v2/resources/global-playlists/operations/uploadFile/{uploadFileId}/result
old: get_resources_global_playlists_operations_upload_file_operation_id_result
new: get_resources_global_playlists_upload_file_result
GET /api/v2/resources/http-library
old: get_http_library
new: get_resources_http_library
GET /api/v2/resources/http-library/{httpLibraryId}
old: get_http_library_by_id
new: get_resources_http_library_by_id
GET /api/v2/resources/http-library/{httpLibraryId}/contentFile
old: get_resources_http_library_http_library_id_content_file
new: get_resources_http_library_content_file
GET /api/v2/resources/http-library/operations/uploadFile/{uploadFileId}/result
old: get_resources_http_library_operations_upload_file_operation_id_result
new: get_resources_http_library_upload_file_result
GET /api/v2/resources/http-profiles/{httpProfileId}
old: get_http_profiles_by_id
new: get_resources_http_profile_by_id
GET /api/v2/resources/http-profiles
old: get_http_profiles
new: get_resources_http_profiles
GET /api/v2/resources/media-files/{mediaFileId}
old: get_media_files_by_id
new: get_resources_media_file_by_id
GET /api/v2/resources/media-files/{mediaFileId}/contentFile
old: get_resources_media_files_media_files_id_content_file
new: get_resources_media_file_content_file
GET /api/v2/resources/media-files
old: get_media_files
new: get_resources_media_files
GET /api/v2/resources/media-files/operations/uploadFile/{uploadFileId}/result
old: get_resources_media_files_operations_upload_file_operation_id_result
new: get_resources_media_files_upload_file_result
GET /api/v2/resources/media-library
old: get_media_library
new: get_resources_media_library
GET /api/v2/resources/media-library/{mediaLibraryId}
old: get_media_library_by_id
new: get_resources_media_library_by_id
GET /api/v2/resources/media-library/{mediaLibraryId}/contentFile
old: get_resources_media_library_media_library_id_content_file
new: get_resources_media_library_content_file
GET /api/v2/resources/media-library/operations/uploadFile/{uploadFileId}/result
old: get_resources_media_library_operations_upload_file_operation_id_result
new: get_resources_media_library_upload_file_result
GET /api/v2/resources/other-library
old: get_other_library
new: get_resources_other_library
GET /api/v2/resources/other-library/{otherLibraryId}
old: get_other_library_by_id
new: get_resources_other_library_by_id
GET /api/v2/resources/other-library/{otherLibraryId}/contentFile
old: get_resources_other_library_other_library_id_content_file
new: get_resources_other_library_content_file
GET /api/v2/resources/other-library/operations/uploadFile/{uploadFileId}/result
old: get_resources_other_library_operations_upload_file_operation_id_result
new: get_resources_other_library_upload_file_result
GET /api/v2/resources/payloads/{payloadId}
old: get_payloads_by_id
new: get_resources_payload_by_id
GET /api/v2/resources/payloads/{payloadId}/contentFile
old: get_resources_payloads_payloads_id_content_file
new: get_resources_payload_content_file
GET /api/v2/resources/payloads
old: get_payloads
new: get_resources_payloads
GET /api/v2/resources/payloads/operations/uploadFile/{uploadFileId}/result
old: get_resources_payloads_operations_upload_file_operation_id_result
new: get_resources_payloads_upload_file_result
GET /api/v2/resources/pcaps/{pcapId}
old: get_pcaps_by_id
new: get_resources_pcap_by_id
GET /api/v2/resources/pcaps/{pcapId}/contentFile
old: get_resources_pcaps_pcaps_id_content_file
new: get_resources_pcap_content_file
GET /api/v2/resources/pcaps
old: get_pcaps
new: get_resources_pcaps
GET /api/v2/resources/pcaps/operations/uploadFile/{uploadFileId}/result
old: get_resources_pcaps_operations_upload_file_operation_id_result
new: get_resources_pcaps_upload_file_result
GET /api/v2/resources/playlists/{playlistId}
old: get_playlists_by_id
new: get_resources_playlist_by_id
GET /api/v2/resources/playlists/{playlistId}/contentFile
old: get_resources_playlists_playlists_id_content_file
new: get_resources_playlist_content_file
GET /api/v2/resources/playlists/{playlistId}/values
old: get_resources_playlists_playlists_id_values
new: get_resources_playlist_values
GET /api/v2/resources/playlists
old: get_playlists
new: get_resources_playlists
GET /api/v2/resources/playlists/operations/uploadFile/{uploadFileId}/result
old: get_resources_playlists_operations_upload_file_operation_id_result
new: get_resources_playlists_upload_file_result
GET /api/v2/resources/sip-library
old: get_sip_library
new: get_resources_sip_library
GET /api/v2/resources/sip-library/{sipLibraryId}
old: get_sip_library_by_id
new: get_resources_sip_library_by_id
GET /api/v2/resources/sip-library/{sipLibraryId}/contentFile
old: get_resources_sip_library_sip_library_id_content_file
new: get_resources_sip_library_content_file
GET /api/v2/resources/sip-library/operations/uploadFile/{uploadFileId}/result
old: get_resources_sip_library_operations_upload_file_operation_id_result
new: get_resources_sip_library_upload_file_result
GET /api/v2/resources/stats-profile
old: get_stats_profile
new: get_resources_stats_profile
GET /api/v2/resources/stats-profile/{statsProfileId}
old: get_stats_profile_by_id
new: get_resources_stats_profile_by_id
GET /api/v2/resources/stats-profile/{statsProfileId}/contentFile
old: get_resources_stats_profile_stats_profile_id_content_file
new: get_resources_stats_profile_content_file
GET /api/v2/resources/stats-profile/operations/uploadFile/{uploadFileId}/result
old: get_resources_stats_profile_operations_upload_file_operation_id_result
new: get_resources_stats_profile_upload_file_result
GET /api/v2/resources/strikes/{strikeId}
old: get_strikes_by_id
new: get_resources_strike_by_id
GET /api/v2/resources/strike-categories
old: get_strike_categories
new: get_resources_strike_categories
GET /api/v2/resources/strikes
old: get_strikes
new: get_resources_strikes
GET /api/v2/resources/tls-certificates/{tlsCertificateId}
old: get_tls_certificates_by_id
new: get_resources_tls_certificate_by_id
GET /api/v2/resources/tls-certificates/{tlsCertificateId}/contentFile
old: get_resources_tls_certificates_tls_certificates_id_content_file
new: get_resources_tls_certificate_content_file
GET /api/v2/resources/tls-certificates
old: get_tls_certificates
new: get_resources_tls_certificates
GET /api/v2/resources/tls-certificates/operations/uploadFile/{uploadFileId}/result
old: get_resources_tls_certificates_operations_upload_file_operation_id_result
new: get_resources_tls_certificates_upload_file_result
GET /api/v2/resources/tls-dhs/{tlsDhId}
old: get_tls_dhs_by_id
new: get_resources_tls_dh_by_id
GET /api/v2/resources/tls-dhs/{tlsDhId}/contentFile
old: get_resources_tls_dhs_tls_dhs_id_content_file
new: get_resources_tls_dh_content_file
GET /api/v2/resources/tls-dhs
old: get_tls_dhs
new: get_resources_tls_dhs
GET /api/v2/resources/tls-dhs/operations/uploadFile/{uploadFileId}/result
old: get_resources_tls_dhs_operations_upload_file_operation_id_result
new: get_resources_tls_dhs_upload_file_result
GET /api/v2/resources/tls-keys/{tlsKeyId}
old: get_tls_keys_by_id
new: get_resources_tls_key_by_id
GET /api/v2/resources/tls-keys/{tlsKeyId}/contentFile
old: get_resources_tls_keys_tls_keys_id_content_file
new: get_resources_tls_key_content_file
GET /api/v2/resources/tls-keys
old: get_tls_keys
new: get_resources_tls_keys
GET /api/v2/resources/tls-keys/operations/uploadFile/{uploadFileId}/result
old: get_resources_tls_keys_operations_upload_file_operation_id_result
new: get_resources_tls_keys_upload_file_result
GET /api/v2/resources/user-defined-apps
old: get_user_defined_apps
new: get_resources_user_defined_apps
GET /api/v2/resources/user-defined-apps/operations/uploadFile/{uploadFileId}/result
old: get_resources_user_defined_apps_operations_upload_file_operation_id_result
new: get_resources_user_defined_apps_upload_file_result
GET /api/v2/resources/apps/operations/export-all/{id}
old: poll_apps_export_all
new: poll_resources_apps_export_all
GET /api/v2/resources/captures/operations/batch-delete/{id}
old: poll_captures_batch_delete
new: poll_resources_captures_batch_delete
GET /api/v2/resources/captures/operations/uploadFile/{uploadFileId}
old: poll_captures_upload_file
new: poll_resources_captures_upload_file
GET /api/v2/resources/certificates/operations/uploadFile/{uploadFileId}
old: get_resources_certificates_operations_upload_file_operation_id
new: poll_resources_certificates_upload_file
GET /api/v2/resources/operations/create-app/{id}
old: poll_create_app
new: poll_resources_create_app
GET /api/v2/resources/operations/edit-app/{id}
old: poll_edit_app
new: poll_resources_edit_app
GET /api/v2/resources/flow-library/operations/uploadFile/{uploadFileId}
old: get_resources_flow_library_operations_upload_file_operation_id
new: poll_resources_flow_library_upload_file
GET /api/v2/resources/operations/get-attack-categories/{id}
old: poll_get_attack_categories
new: poll_resources_get_attack_categories
GET /api/v2/resources/operations/get-attacks/{id}
old: poll_get_attacks
new: poll_resources_get_attacks
GET /api/v2/resources/operations/get-strike-categories/{id}
old: poll_get_strike_categories
new: poll_resources_get_strike_categories
GET /api/v2/resources/operations/get-strikes/{id}
old: poll_get_strikes
new: poll_resources_get_strikes
GET /api/v2/resources/global-playlists/operations/uploadFile/{uploadFileId}
old: get_resources_global_playlists_operations_upload_file_operation_id
new: poll_resources_global_playlists_upload_file
GET /api/v2/resources/http-library/operations/uploadFile/{uploadFileId}
old: get_resources_http_library_operations_upload_file_operation_id
new: poll_resources_http_library_upload_file
GET /api/v2/resources/media-files/operations/uploadFile/{uploadFileId}
old: get_resources_media_files_operations_upload_file_operation_id
new: poll_resources_media_files_upload_file
GET /api/v2/resources/media-library/operations/uploadFile/{uploadFileId}
old: get_resources_media_library_operations_upload_file_operation_id
new: poll_resources_media_library_upload_file
GET /api/v2/resources/other-library/operations/uploadFile/{uploadFileId}
old: get_resources_other_library_operations_upload_file_operation_id
new: poll_resources_other_library_upload_file
GET /api/v2/resources/payloads/operations/uploadFile/{uploadFileId}
old: get_resources_payloads_operations_upload_file_operation_id
new: poll_resources_payloads_upload_file
GET /api/v2/resources/pcaps/operations/uploadFile/{uploadFileId}
old: get_resources_pcaps_operations_upload_file_operation_id
new: poll_resources_pcaps_upload_file
GET /api/v2/resources/playlists/operations/uploadFile/{uploadFileId}
old: get_resources_playlists_operations_upload_file_operation_id
new: poll_resources_playlists_upload_file
GET /api/v2/resources/sip-library/operations/uploadFile/{uploadFileId}
old: get_resources_sip_library_operations_upload_file_operation_id
new: poll_resources_sip_library_upload_file
GET /api/v2/resources/stats-profile/operations/uploadFile/{uploadFileId}
old: get_resources_stats_profile_operations_upload_file_operation_id
new: poll_resources_stats_profile_upload_file
GET /api/v2/resources/tls-certificates/operations/uploadFile/{uploadFileId}
old: get_resources_tls_certificates_operations_upload_file_operation_id
new: poll_resources_tls_certificates_upload_file
GET /api/v2/resources/tls-dhs/operations/uploadFile/{uploadFileId}
old: get_resources_tls_dhs_operations_upload_file_operation_id
new: poll_resources_tls_dhs_upload_file
GET /api/v2/resources/tls-keys/operations/uploadFile/{uploadFileId}
old: get_resources_tls_keys_operations_upload_file_operation_id
new: poll_resources_tls_keys_upload_file
GET /api/v2/resources/user-defined-apps/operations/export-all/{id}
old: poll_user_defined_apps_export_all
new: poll_resources_user_defined_apps_export_all
GET /api/v2/resources/user-defined-apps/operations/uploadFile/{uploadFileId}
old: get_resources_user_defined_apps_operations_upload_file_operation_id
new: poll_resources_user_defined_apps_upload_file
POST /api/v2/resources/apps/operations/export-all
old: start_apps_export_all
new: start_resources_apps_export_all
POST /api/v2/resources/captures/operations/batch-delete
old: start_captures_batch_delete
new: start_resources_captures_batch_delete
POST /api/v2/resources/captures/operations/uploadFile
old: start_captures_upload_file
new: start_resources_captures_upload_file
POST /api/v2/resources/certificates/operations/uploadFile
old: create_resources_certificates_operations_upload_file
new: start_resources_certificates_upload_file
POST /api/v2/resources/operations/create-app
old: start_create_app
new: start_resources_create_app
POST /api/v2/resources/operations/edit-app
old: start_edit_app
new: start_resources_edit_app
POST /api/v2/resources/flow-library/operations/uploadFile
old: create_resources_flow_library_operations_upload_file
new: start_resources_flow_library_upload_file
POST /api/v2/resources/operations/get-attack-categories
old: start_get_attack_categories
new: start_resources_get_attack_categories
POST /api/v2/resources/operations/get-attacks
old: start_get_attacks
new: start_resources_get_attacks
POST /api/v2/resources/operations/get-strike-categories
old: start_get_strike_categories
new: start_resources_get_strike_categories
POST /api/v2/resources/operations/get-strikes
old: start_get_strikes
new: start_resources_get_strikes
POST /api/v2/resources/global-playlists/operations/uploadFile
old: create_resources_global_playlists_operations_upload_file
new: start_resources_global_playlists_upload_file
POST /api/v2/resources/http-library/operations/uploadFile
old: create_resources_http_library_operations_upload_file
new: start_resources_http_library_upload_file
POST /api/v2/resources/media-files/operations/uploadFile
old: create_resources_media_files_operations_upload_file
new: start_resources_media_files_upload_file
POST /api/v2/resources/media-library/operations/uploadFile
old: create_resources_media_library_operations_upload_file
new: start_resources_media_library_upload_file
POST /api/v2/resources/other-library/operations/uploadFile
old: create_resources_other_library_operations_upload_file
new: start_resources_other_library_upload_file
POST /api/v2/resources/payloads/operations/uploadFile
old: create_resources_payloads_operations_upload_file
new: start_resources_payloads_upload_file
POST /api/v2/resources/pcaps/operations/uploadFile
old: create_resources_pcaps_operations_upload_file
new: start_resources_pcaps_upload_file
POST /api/v2/resources/playlists/operations/uploadFile
old: create_resources_playlists_operations_upload_file
new: start_resources_playlists_upload_file
POST /api/v2/resources/sip-library/operations/uploadFile
old: create_resources_sip_library_operations_upload_file
new: start_resources_sip_library_upload_file
POST /api/v2/resources/stats-profile/operations/uploadFile
old: create_resources_stats_profile_operations_upload_file
new: start_resources_stats_profile_upload_file
POST /api/v2/resources/tls-certificates/operations/uploadFile
old: create_resources_tls_certificates_operations_upload_file
new: start_resources_tls_certificates_upload_file
POST /api/v2/resources/tls-dhs/operations/uploadFile
old: create_resources_tls_dhs_operations_upload_file
new: start_resources_tls_dhs_upload_file
POST /api/v2/resources/tls-keys/operations/uploadFile
old: create_resources_tls_keys_operations_upload_file
new: start_resources_tls_keys_upload_file
POST /api/v2/resources/user-defined-apps/operations/export-all
old: start_user_defined_apps_export_all
new: start_resources_user_defined_apps_export_all
POST /api/v2/resources/user-defined-apps/operations/uploadFile
old: create_resources_user_defined_apps_operations_upload_file
new: start_resources_user_defined_apps_upload_file
BrokersApi
DELETE /api/v2/brokers/{brokerId}
old: delete_brokers
new: delete_broker
GET /api/v2/brokers/{brokerId}
old: get_brokers_by_id
new: get_broker_by_id
PATCH /api/v2/brokers/{brokerId}
old: patch_brokers
new: patch_broker
ConfigurationsApi
DELETE /api/v2/configs/{configId}
old: delete_configs
new: delete_config
GET /api/v2/configs/{configId}
old: get_configs_by_id
new: get_config_by_id
GET /api/v2/resources/custom-import-operations
old: get_custom_import_operations
new: get_resources_custom_import_operations
PATCH /api/v2/configs/{configId}
old: patch_configs
new: patch_config
PUT /api/v2/configs/{configId}
old: update_configs
new: update_config
DataMigrationApi
GET /api/v2/controller-migration/operations/export/{id}
old: poll_export
new: poll_controller_migration_export
GET /api/v2/controller-migration/operations/import/{id}
old: poll_import
new: poll_controller_migration_import
POST /api/v2/controller-migration/operations/export
old: start_export
new: start_controller_migration_export
POST /api/v2/controller-migration/operations/import
old: start_import
new: start_controller_migration_import
LicenseServersApi
DELETE /api/v2/license-servers/{licenseServerId}
old: delete_license_servers
new: delete_license_server
GET /api/v2/license-servers/{licenseServerId}
old: get_license_servers_by_id
new: get_license_server_by_id
PATCH /api/v2/license-servers/{licenseServerId}
old: patch_license_servers
new: patch_license_server
NotificationsApi
DELETE /api/v2/notifications/{notificationId}
old: delete_notifications
new: delete_notification
GET /api/v2/notifications/{notificationId}
old: get_notifications_by_id
new: get_notification_by_id
ReportsApi
GET /api/v2/results/{resultId}/download-csv/{downloadCsvId}
old: get_download_csv_by_id
new: get_result_download_csv_by_id
GET /api/v2/results/{resultId}/operations/generate-csv/{id}
old: poll_results_generate_csv
new: poll_result_generate_csv
GET /api/v2/results/{resultId}/operations/generate-pdf/{id}
old: poll_results_generate_pdf
new: poll_result_generate_pdf
POST /api/v2/results/{resultId}/operations/generate-csv
old: start_results_generate_csv
new: start_result_generate_csv
POST /api/v2/results/{resultId}/operations/generate-pdf
old: start_results_generate_pdf
new: start_result_generate_pdf
SessionsApi
POST /api/v2/sessions/{sessionId}/meta
old: create_meta
new: create_session_meta
DELETE /api/v2/sessions/{sessionId}
old: delete_sessions
new: delete_session
DELETE /api/v2/sessions/{sessionId}/meta/{metaId}
old: delete_meta
new: delete_session_meta
GET /api/v2/sessions/{sessionId}/config/$docs
old: get_docs
new: get_config_docs
GET /api/v2/sessions/{sessionId}/config/granular-stats
old: get_granular_stats
new: get_config_granular_stats
GET /api/v2/sessions/{sessionId}/config/granular-stats-filters
old: get_granular_stats_filters
new: get_config_granular_stats_filters
GET /api/v2/sessions/{sessionId}
old: get_sessions_by_id
new: get_session_by_id
GET /api/v2/sessions/{sessionId}/config
old: get_config
new: get_session_config
GET /api/v2/sessions/{sessionId}/meta
old: get_meta
new: get_session_meta
GET /api/v2/sessions/{sessionId}/meta/{metaId}
old: get_meta_by_id
new: get_session_meta_by_id
GET /api/v2/sessions/{sessionId}/test
old: get_test
new: get_session_test
PATCH /api/v2/sessions/{sessionId}
old: patch_sessions
new: patch_session
PATCH /api/v2/sessions/{sessionId}/meta/{metaId}
old: patch_meta
new: patch_session_meta
PATCH /api/v2/sessions/{sessionId}/test
old: patch_test
new: patch_session_test
GET /api/v2/sessions/{sessionId}/config/operations/granular-stats-default-dashboards/{id}
old: poll_config_granular_stats_default_dashboards
new: poll_session_config_granular_stats_default_dashboards
GET /api/v2/sessions/{sessionId}/operations/loadConfig/{id}
old: poll_sessions_load_config
new: poll_session_load_config
GET /api/v2/sessions/{sessionId}/operations/prepareTest/{id}
old: poll_prepare_test
new: poll_session_prepare_test
GET /api/v2/sessions/{sessionId}/operations/testEnd/{id}
old: poll_test_end
new: poll_session_test_end
GET /api/v2/sessions/{sessionId}/operations/testInit/{id}
old: poll_test_init
new: poll_session_test_init
GET /api/v2/sessions/{sessionId}/operations/touch/{id}
old: poll_sessions_touch
new: poll_session_touch
POST /api/v2/sessions/{sessionId}/config/operations/granular-stats-default-dashboards
old: start_config_granular_stats_default_dashboards
new: start_session_config_granular_stats_default_dashboards
POST /api/v2/sessions/{sessionId}/config/operations/save
old: start_config_save
new: start_session_config_save
POST /api/v2/sessions/{sessionId}/operations/loadConfig
old: start_sessions_load_config
new: start_session_load_config
POST /api/v2/sessions/{sessionId}/operations/prepareTest
old: start_prepare_test
new: start_session_prepare_test
POST /api/v2/sessions/{sessionId}/operations/testEnd
old: start_test_end
new: start_session_test_end
POST /api/v2/sessions/{sessionId}/operations/testInit
old: start_test_init
new: start_session_test_init
POST /api/v2/sessions/{sessionId}/operations/touch
old: start_sessions_touch
new: start_session_touch
PUT /api/v2/sessions/{sessionId}
old: update_sessions
new: update_session
PUT /api/v2/sessions/{sessionId}/config
old: update_config
new: update_session_config
PUT /api/v2/sessions/{sessionId}/meta
old: update_meta
new: update_session_meta
PUT /api/v2/sessions/{sessionId}/test
old: update_test
new: update_session_test
StatisticsApi
POST /api/v2/stats/plugins
old: create_plugins
new: create_stats_plugins
DELETE /api/v2/stats/plugins/{pluginId}
old: delete_plugins
new: delete_stats_plugin
GET /api/v2/results/{resultId}/stats/{statId}
old: get_stats_by_id
new: get_result_stat_by_id
GET /api/v2/results/{resultId}/stats
old: get_stats
new: get_result_stats
GET /api/v2/stats/plugins
old: get_plugins
new: get_stats_plugins
GET /api/v2/stats/plugins/operations/ingest/{id}
old: poll_plugins_ingest
new: poll_stats_plugins_ingest
POST /api/v2/stats/plugins/operations/ingest
old: start_plugins_ingest
new: start_stats_plugins_ingest
TestOperationsApi
GET /api/v2/sessions/{sessionId}/test-calibrate/operations/start/{id}
old: poll_start_calibration
new: poll_test_calibrate_start
GET /api/v2/sessions/{sessionId}/test-calibrate/operations/stop/{id}
old: poll_stop_calibration
new: poll_test_calibrate_stop
GET /api/v2/sessions/{sessionId}/test-run/operations/abort/{id}
old: poll_abort
new: poll_test_run_abort
GET /api/v2/sessions/{sessionId}/test-run/operations/start/{id}
old: poll_start_traffic
new: poll_test_run_start
GET /api/v2/sessions/{sessionId}/test-run/operations/stop/{id}
old: poll_stop_traffic
new: poll_test_run_stop
POST /api/v2/sessions/{sessionId}/test-calibrate/operations/start
old: start_start_calibration
new: start_test_calibrate_start
POST /api/v2/sessions/{sessionId}/test-calibrate/operations/stop
old: start_stop_calibration
new: start_test_calibrate_stop
POST /api/v2/sessions/{sessionId}/test-run/operations/abort
old: start_abort
new: start_test_run_abort
POST /api/v2/sessions/{sessionId}/test-run/operations/start
old: start_start_traffic
new: start_test_run_start
POST /api/v2/sessions/{sessionId}/test-run/operations/stop
old: start_stop_traffic
new: start_test_run_stop
TestResultsApi
DELETE /api/v2/results/{resultId}
old: delete_results
new: delete_result
DELETE /api/v2/results/{resultId}/files/{fileId}
old: delete_files
new: delete_result_file
GET /api/v2/results/{resultId}
old: get_results_by_id
new: get_result_by_id
GET /api/v2/results/{resultId}/download-all/{downloadAllId}
old: get_download_all_by_id
new: get_result_download_all_by_id
GET /api/v2/results/{resultId}/download-result-config
old: get_download_result_config
new: get_result_download_result_config
GET /api/v2/results/{resultId}/files/{fileId}
old: get_files_by_id
new: get_result_file_by_id
GET /api/v2/results/{resultId}/files/{fileId}/content
old: get_results_results_id_files_files_id_content
new: get_result_file_content
GET /api/v2/results/{resultId}/files
old: get_files
new: get_result_files
GET /api/v2/results/tags
old: get_result_tags
new: get_results_tags
GET /api/v2/results/{resultId}/operations/generate-all/{id}
old: poll_results_generate_all
new: poll_result_generate_all
GET /api/v2/results/{resultId}/operations/generate-results/{id}
old: poll_results_generate_results
new: poll_result_generate_results
GET /api/v2/results/{resultId}/operations/load/{id}
old: poll_results_load
new: poll_result_load
POST /api/v2/results/{resultId}/operations/generate-all
old: start_results_generate_all
new: start_result_generate_all
POST /api/v2/results/{resultId}/operations/generate-results
old: start_results_generate_results
new: start_result_generate_results
POST /api/v2/results/{resultId}/operations/load
old: start_results_load
new: start_result_load
UtilsApi
GET /api/v2/cert-manager/certificate
old: get_certificate
new: get_cert_manager_certificate
GET /api/v2/disk-usage/consumers/{consumerId}
old: get_consumers_by_id
new: get_disk_usage_consumer_by_id
GET /api/v2/disk-usage/consumers
old: get_consumers
new: get_disk_usage_consumers
GET /api/v2/cert-manager/operations/generate/{id}
old: poll_generate
new: poll_cert_manager_generate
GET /api/v2/cert-manager/operations/upload/{id}
old: poll_upload
new: poll_cert_manager_upload
POST /api/v2/cert-manager/operations/generate
old: start_generate
new: start_cert_manager_generate
POST /api/v2/cert-manager/operations/upload
old: start_upload
new: start_cert_manager_upload