@robinmordasiewicz/f5xc-api-mcp 2.0.10-2601051503 → 2.0.13-2601051957

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/CHANGELOG.md +25 -14
  2. package/README.md +9 -5
  3. package/dist/generator/domain-metadata.d.ts +1 -3
  4. package/dist/generator/domain-metadata.d.ts.map +1 -1
  5. package/dist/generator/domain-metadata.js +0 -20
  6. package/dist/generator/domain-metadata.js.map +1 -1
  7. package/dist/generator/naming/acronyms.d.ts +1 -1
  8. package/dist/generator/naming/acronyms.js +1 -1
  9. package/dist/tools/generated/dependency-graph.json +1 -1
  10. package/dist/version.d.ts +2 -2
  11. package/dist/version.js +2 -2
  12. package/manifest.json +1 -1
  13. package/package.json +1 -1
  14. package/specs/domains/admin_console_and_ui.json +90 -26
  15. package/specs/domains/ai_services.json +149 -22
  16. package/specs/domains/api.json +598 -179
  17. package/specs/domains/authentication.json +198 -46
  18. package/specs/domains/bigip.json +326 -98
  19. package/specs/domains/billing_and_usage.json +289 -64
  20. package/specs/domains/blindfold.json +384 -110
  21. package/specs/domains/bot_and_threat_defense.json +256 -66
  22. package/specs/domains/cdn.json +477 -181
  23. package/specs/domains/ce_management.json +398 -118
  24. package/specs/domains/certificates.json +253 -78
  25. package/specs/domains/cloud_infrastructure.json +412 -115
  26. package/specs/domains/container_services.json +260 -95
  27. package/specs/domains/data_and_privacy_security.json +210 -68
  28. package/specs/domains/data_intelligence.json +225 -63
  29. package/specs/domains/ddos.json +690 -156
  30. package/specs/domains/dns.json +614 -149
  31. package/specs/domains/managed_kubernetes.json +317 -89
  32. package/specs/domains/marketplace.json +427 -104
  33. package/specs/domains/network.json +950 -231
  34. package/specs/domains/network_security.json +749 -188
  35. package/specs/domains/nginx_one.json +211 -63
  36. package/specs/domains/object_storage.json +126 -13
  37. package/specs/domains/observability.json +622 -103
  38. package/specs/domains/rate_limiting.json +208 -53
  39. package/specs/domains/secops_and_incident_response.json +122 -37
  40. package/specs/domains/service_mesh.json +484 -123
  41. package/specs/domains/shape.json +2359 -314
  42. package/specs/domains/sites.json +1572 -390
  43. package/specs/domains/statistics.json +892 -226
  44. package/specs/domains/support.json +544 -109
  45. package/specs/domains/telemetry_and_insights.json +312 -73
  46. package/specs/domains/tenant_and_identity.json +1881 -273
  47. package/specs/domains/threat_campaign.json +124 -67
  48. package/specs/domains/users.json +225 -72
  49. package/specs/domains/virtual.json +1157 -245
  50. package/specs/domains/vpm_and_node_management.json +59 -2
  51. package/specs/domains/waf.json +565 -140
  52. package/specs/index.json +99 -4
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Secops And Incident Response",
5
5
  "description": "User threat assessment with configurable risk thresholds and mitigation rules. Detection covers high, medium, and low threat levels with corresponding actions like blocking, rate limiting, or alerting. Mitigation policies link to load balancers for real-time enforcement against identified bad actors.",
6
- "version": "2.0.10",
6
+ "version": "2.0.13",
7
7
  "contact": {
8
8
  "name": "F5 Distributed Cloud",
9
9
  "url": "https://docs.cloud.f5.com"
@@ -13,7 +13,57 @@
13
13
  "url": "https://www.f5.com/company/policies/eula"
14
14
  },
15
15
  "summary": "Malicious user mitigation with threat level classification. Automated response actions for suspicious behavior patterns.",
16
- "x-f5xc-cli-domain": "secops_and_incident_response"
16
+ "x-f5xc-cli-domain": "secops_and_incident_response",
17
+ "x-f5xc-best-practices": {
18
+ "common_errors": [
19
+ {
20
+ "code": 400,
21
+ "message": "Invalid request body",
22
+ "resolution": "Validate JSON structure and required fields before submission",
23
+ "prevention": "Use schema validation from OpenAPI spec"
24
+ },
25
+ {
26
+ "code": 401,
27
+ "message": "Authentication failed",
28
+ "resolution": "Verify API token is valid and not expired",
29
+ "prevention": "Use environment variables for token management"
30
+ },
31
+ {
32
+ "code": 403,
33
+ "message": "Permission denied",
34
+ "resolution": "Check user role and namespace permissions",
35
+ "prevention": "Verify RBAC policies before operations"
36
+ },
37
+ {
38
+ "code": 404,
39
+ "message": "Resource not found",
40
+ "resolution": "Verify resource name and namespace exist",
41
+ "prevention": "List resources before attempting operations"
42
+ },
43
+ {
44
+ "code": 409,
45
+ "message": "Resource already exists",
46
+ "resolution": "Use unique name or delete existing resource",
47
+ "prevention": "Check existence before creation"
48
+ },
49
+ {
50
+ "code": 429,
51
+ "message": "Rate limit exceeded",
52
+ "resolution": "Implement exponential backoff and retry logic",
53
+ "prevention": "Batch operations and add delays between requests"
54
+ }
55
+ ],
56
+ "security_notes": [
57
+ "Always use HTTPS for all API communications",
58
+ "Store API tokens securely, never in source code",
59
+ "Rotate API tokens regularly following security policies"
60
+ ],
61
+ "performance_tips": [
62
+ "Use pagination for large result sets",
63
+ "Batch related operations when possible",
64
+ "Cache read-only responses appropriately"
65
+ ]
66
+ }
17
67
  },
18
68
  "servers": [
19
69
  {
@@ -276,6 +326,13 @@
276
326
  "latency": "low",
277
327
  "resource_usage": "low"
278
328
  }
329
+ },
330
+ "x-f5xc-discovered-response-time": {
331
+ "p50_ms": 1000,
332
+ "p95_ms": 3000,
333
+ "p99_ms": 8000,
334
+ "sample_count": 0,
335
+ "source": "estimate"
279
336
  }
280
337
  },
281
338
  "x-displayname": "Malicious User Mitigation.",
@@ -498,6 +555,13 @@
498
555
  "latency": "low",
499
556
  "resource_usage": "low"
500
557
  }
558
+ },
559
+ "x-f5xc-discovered-response-time": {
560
+ "p50_ms": 800,
561
+ "p95_ms": 2500,
562
+ "p99_ms": 6000,
563
+ "sample_count": 0,
564
+ "source": "estimate"
501
565
  }
502
566
  },
503
567
  "x-displayname": "Malicious User Mitigation.",
@@ -725,6 +789,13 @@
725
789
  "latency": "moderate",
726
790
  "resource_usage": "moderate"
727
791
  }
792
+ },
793
+ "x-f5xc-discovered-response-time": {
794
+ "p50_ms": 200,
795
+ "p95_ms": 800,
796
+ "p99_ms": 2000,
797
+ "sample_count": 0,
798
+ "source": "estimate"
728
799
  }
729
800
  },
730
801
  "x-displayname": "Malicious User Mitigation.",
@@ -946,6 +1017,13 @@
946
1017
  "latency": "low",
947
1018
  "resource_usage": "low"
948
1019
  }
1020
+ },
1021
+ "x-f5xc-discovered-response-time": {
1022
+ "p50_ms": 200,
1023
+ "p95_ms": 800,
1024
+ "p99_ms": 2000,
1025
+ "sample_count": 0,
1026
+ "source": "estimate"
949
1027
  }
950
1028
  },
951
1029
  "delete": {
@@ -1165,6 +1243,13 @@
1165
1243
  "latency": "high",
1166
1244
  "resource_usage": "moderate"
1167
1245
  }
1246
+ },
1247
+ "x-f5xc-discovered-response-time": {
1248
+ "p50_ms": 500,
1249
+ "p95_ms": 1500,
1250
+ "p99_ms": 4000,
1251
+ "sample_count": 0,
1252
+ "source": "estimate"
1168
1253
  }
1169
1254
  },
1170
1255
  "x-displayname": "Malicious User Mitigation.",
@@ -1313,7 +1398,7 @@
1313
1398
  },
1314
1399
  "x-original-maxLength": 1024,
1315
1400
  "x-reconciled-from-discovery": true,
1316
- "x-reconciled-at": "2026-01-05T14:38:35.657542+00:00"
1401
+ "x-reconciled-at": "2026-01-05T18:29:33.213888+00:00"
1317
1402
  },
1318
1403
  "namespace": {
1319
1404
  "type": "string",
@@ -1332,7 +1417,7 @@
1332
1417
  },
1333
1418
  "x-original-maxLength": 1024,
1334
1419
  "x-reconciled-from-discovery": true,
1335
- "x-reconciled-at": "2026-01-05T14:38:35.657550+00:00"
1420
+ "x-reconciled-at": "2026-01-05T18:29:33.213895+00:00"
1336
1421
  }
1337
1422
  },
1338
1423
  "x-f5xc-minimum-configuration": {
@@ -1430,7 +1515,7 @@
1430
1515
  "maxLength": 17,
1431
1516
  "minLength": 17,
1432
1517
  "x-reconciled-from-discovery": true,
1433
- "x-reconciled-at": "2026-01-05T14:38:35.657566+00:00"
1518
+ "x-reconciled-at": "2026-01-05T18:29:33.213911+00:00"
1434
1519
  },
1435
1520
  "system_metadata": {
1436
1521
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -1588,7 +1673,7 @@
1588
1673
  },
1589
1674
  "x-original-maxLength": 1024,
1590
1675
  "x-reconciled-from-discovery": true,
1591
- "x-reconciled-at": "2026-01-05T14:38:35.657581+00:00"
1676
+ "x-reconciled-at": "2026-01-05T18:29:33.213926+00:00"
1592
1677
  },
1593
1678
  "disabled": {
1594
1679
  "type": "boolean",
@@ -1638,7 +1723,7 @@
1638
1723
  },
1639
1724
  "x-original-maxLength": 1024,
1640
1725
  "x-reconciled-from-discovery": true,
1641
- "x-reconciled-at": "2026-01-05T14:38:35.657592+00:00"
1726
+ "x-reconciled-at": "2026-01-05T18:29:33.213936+00:00"
1642
1727
  },
1643
1728
  "namespace": {
1644
1729
  "type": "string",
@@ -1657,7 +1742,7 @@
1657
1742
  },
1658
1743
  "x-original-maxLength": 1024,
1659
1744
  "x-reconciled-from-discovery": true,
1660
- "x-reconciled-at": "2026-01-05T14:38:35.657596+00:00"
1745
+ "x-reconciled-at": "2026-01-05T18:29:33.213940+00:00"
1661
1746
  },
1662
1747
  "owner_view": {
1663
1748
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -1698,7 +1783,7 @@
1698
1783
  "x-field-mutability": "read-only",
1699
1784
  "x-original-maxLength": 1024,
1700
1785
  "x-reconciled-from-discovery": true,
1701
- "x-reconciled-at": "2026-01-05T14:38:35.657605+00:00"
1786
+ "x-reconciled-at": "2026-01-05T18:29:33.213948+00:00"
1702
1787
  },
1703
1788
  "uid": {
1704
1789
  "type": "string",
@@ -1719,7 +1804,7 @@
1719
1804
  "x-original-maxLength": 1024,
1720
1805
  "format": "uuid",
1721
1806
  "x-reconciled-from-discovery": true,
1722
- "x-reconciled-at": "2026-01-05T14:38:35.657611+00:00"
1807
+ "x-reconciled-at": "2026-01-05T18:29:33.213953+00:00"
1723
1808
  }
1724
1809
  },
1725
1810
  "x-f5xc-minimum-configuration": {
@@ -2034,7 +2119,7 @@
2034
2119
  },
2035
2120
  "x-original-maxLength": 1024,
2036
2121
  "x-reconciled-from-discovery": true,
2037
- "x-reconciled-at": "2026-01-05T14:38:35.657641+00:00"
2122
+ "x-reconciled-at": "2026-01-05T18:29:33.213981+00:00"
2038
2123
  }
2039
2124
  },
2040
2125
  "x-f5xc-minimum-configuration": {
@@ -2103,7 +2188,7 @@
2103
2188
  },
2104
2189
  "x-original-maxLength": 1024,
2105
2190
  "x-reconciled-from-discovery": true,
2106
- "x-reconciled-at": "2026-01-05T14:38:35.657650+00:00"
2191
+ "x-reconciled-at": "2026-01-05T18:29:33.213989+00:00"
2107
2192
  },
2108
2193
  "service_name": {
2109
2194
  "type": "string",
@@ -2142,7 +2227,7 @@
2142
2227
  },
2143
2228
  "x-original-maxLength": 1024,
2144
2229
  "x-reconciled-from-discovery": true,
2145
- "x-reconciled-at": "2026-01-05T14:38:35.657656+00:00"
2230
+ "x-reconciled-at": "2026-01-05T18:29:33.213995+00:00"
2146
2231
  },
2147
2232
  "type": {
2148
2233
  "type": "string",
@@ -2279,7 +2364,7 @@
2279
2364
  },
2280
2365
  "x-original-maxLength": 1024,
2281
2366
  "x-reconciled-from-discovery": true,
2282
- "x-reconciled-at": "2026-01-05T14:38:35.657667+00:00"
2367
+ "x-reconciled-at": "2026-01-05T18:29:33.214006+00:00"
2283
2368
  }
2284
2369
  },
2285
2370
  "x-f5xc-minimum-configuration": {
@@ -2388,7 +2473,7 @@
2388
2473
  },
2389
2474
  "x-original-maxLength": 1200,
2390
2475
  "x-reconciled-from-discovery": true,
2391
- "x-reconciled-at": "2026-01-05T14:38:35.657677+00:00"
2476
+ "x-reconciled-at": "2026-01-05T18:29:33.214016+00:00"
2392
2477
  },
2393
2478
  "disable": {
2394
2479
  "type": "boolean",
@@ -2441,7 +2526,7 @@
2441
2526
  },
2442
2527
  "x-original-maxLength": 1024,
2443
2528
  "x-reconciled-from-discovery": true,
2444
- "x-reconciled-at": "2026-01-05T14:38:35.657685+00:00"
2529
+ "x-reconciled-at": "2026-01-05T18:29:33.214023+00:00"
2445
2530
  },
2446
2531
  "namespace": {
2447
2532
  "type": "string",
@@ -2460,7 +2545,7 @@
2460
2545
  },
2461
2546
  "x-original-maxLength": 1024,
2462
2547
  "x-reconciled-from-discovery": true,
2463
- "x-reconciled-at": "2026-01-05T14:38:35.657689+00:00"
2548
+ "x-reconciled-at": "2026-01-05T18:29:33.214027+00:00"
2464
2549
  }
2465
2550
  },
2466
2551
  "x-f5xc-minimum-configuration": {
@@ -2536,7 +2621,7 @@
2536
2621
  },
2537
2622
  "x-original-maxLength": 1200,
2538
2623
  "x-reconciled-from-discovery": true,
2539
- "x-reconciled-at": "2026-01-05T14:38:35.657696+00:00"
2624
+ "x-reconciled-at": "2026-01-05T18:29:33.214046+00:00"
2540
2625
  },
2541
2626
  "disable": {
2542
2627
  "type": "boolean",
@@ -2591,7 +2676,7 @@
2591
2676
  },
2592
2677
  "x-original-maxLength": 1024,
2593
2678
  "x-reconciled-from-discovery": true,
2594
- "x-reconciled-at": "2026-01-05T14:38:35.657703+00:00"
2679
+ "x-reconciled-at": "2026-01-05T18:29:33.214053+00:00"
2595
2680
  },
2596
2681
  "namespace": {
2597
2682
  "type": "string",
@@ -2610,7 +2695,7 @@
2610
2695
  },
2611
2696
  "x-original-maxLength": 1024,
2612
2697
  "x-reconciled-from-discovery": true,
2613
- "x-reconciled-at": "2026-01-05T14:38:35.657708+00:00"
2698
+ "x-reconciled-at": "2026-01-05T18:29:33.214057+00:00"
2614
2699
  }
2615
2700
  },
2616
2701
  "x-f5xc-minimum-configuration": {
@@ -2655,7 +2740,7 @@
2655
2740
  "readOnly": true,
2656
2741
  "x-original-maxLength": 1024,
2657
2742
  "x-reconciled-from-discovery": true,
2658
- "x-reconciled-at": "2026-01-05T14:38:35.657712+00:00"
2743
+ "x-reconciled-at": "2026-01-05T18:29:33.214062+00:00"
2659
2744
  },
2660
2745
  "name": {
2661
2746
  "type": "string",
@@ -2674,7 +2759,7 @@
2674
2759
  },
2675
2760
  "x-original-maxLength": 1024,
2676
2761
  "x-reconciled-from-discovery": true,
2677
- "x-reconciled-at": "2026-01-05T14:38:35.657716+00:00"
2762
+ "x-reconciled-at": "2026-01-05T18:29:33.214066+00:00"
2678
2763
  },
2679
2764
  "namespace": {
2680
2765
  "type": "string",
@@ -2693,7 +2778,7 @@
2693
2778
  },
2694
2779
  "x-original-maxLength": 1024,
2695
2780
  "x-reconciled-from-discovery": true,
2696
- "x-reconciled-at": "2026-01-05T14:38:35.657721+00:00"
2781
+ "x-reconciled-at": "2026-01-05T18:29:33.214069+00:00"
2697
2782
  },
2698
2783
  "tenant": {
2699
2784
  "type": "string",
@@ -2714,7 +2799,7 @@
2714
2799
  "x-field-mutability": "read-only",
2715
2800
  "x-original-maxLength": 1024,
2716
2801
  "x-reconciled-from-discovery": true,
2717
- "x-reconciled-at": "2026-01-05T14:38:35.657725+00:00"
2802
+ "x-reconciled-at": "2026-01-05T18:29:33.214073+00:00"
2718
2803
  },
2719
2804
  "uid": {
2720
2805
  "type": "string",
@@ -2736,7 +2821,7 @@
2736
2821
  "x-original-maxLength": 1024,
2737
2822
  "format": "uuid",
2738
2823
  "x-reconciled-from-discovery": true,
2739
- "x-reconciled-at": "2026-01-05T14:38:35.657730+00:00"
2824
+ "x-reconciled-at": "2026-01-05T18:29:33.214078+00:00"
2740
2825
  }
2741
2826
  },
2742
2827
  "x-f5xc-minimum-configuration": {
@@ -2811,7 +2896,7 @@
2811
2896
  },
2812
2897
  "x-original-maxLength": 1200,
2813
2898
  "x-reconciled-from-discovery": true,
2814
- "x-reconciled-at": "2026-01-05T14:38:35.657737+00:00"
2899
+ "x-reconciled-at": "2026-01-05T18:29:33.214085+00:00"
2815
2900
  },
2816
2901
  "disable": {
2817
2902
  "type": "boolean",
@@ -2864,7 +2949,7 @@
2864
2949
  },
2865
2950
  "x-original-maxLength": 1024,
2866
2951
  "x-reconciled-from-discovery": true,
2867
- "x-reconciled-at": "2026-01-05T14:38:35.657744+00:00"
2952
+ "x-reconciled-at": "2026-01-05T18:29:33.214092+00:00"
2868
2953
  },
2869
2954
  "namespace": {
2870
2955
  "type": "string",
@@ -2883,7 +2968,7 @@
2883
2968
  },
2884
2969
  "x-original-maxLength": 1024,
2885
2970
  "x-reconciled-from-discovery": true,
2886
- "x-reconciled-at": "2026-01-05T14:38:35.657748+00:00"
2971
+ "x-reconciled-at": "2026-01-05T18:29:33.214096+00:00"
2887
2972
  }
2888
2973
  },
2889
2974
  "x-f5xc-minimum-configuration": {
@@ -2997,7 +3082,7 @@
2997
3082
  "x-original-maxLength": 1024,
2998
3083
  "format": "uuid",
2999
3084
  "x-reconciled-from-discovery": true,
3000
- "x-reconciled-at": "2026-01-05T14:38:35.657774+00:00"
3085
+ "x-reconciled-at": "2026-01-05T18:29:33.214109+00:00"
3001
3086
  },
3002
3087
  "vtrp_id": {
3003
3088
  "type": "string",
@@ -3109,7 +3194,7 @@
3109
3194
  },
3110
3195
  "x-original-maxLength": 1024,
3111
3196
  "x-reconciled-from-discovery": true,
3112
- "x-reconciled-at": "2026-01-05T14:38:35.657784+00:00"
3197
+ "x-reconciled-at": "2026-01-05T18:29:33.214118+00:00"
3113
3198
  },
3114
3199
  "status": {
3115
3200
  "type": "string",
@@ -3128,7 +3213,7 @@
3128
3213
  },
3129
3214
  "x-original-maxLength": 1024,
3130
3215
  "x-reconciled-from-discovery": true,
3131
- "x-reconciled-at": "2026-01-05T14:38:35.657789+00:00"
3216
+ "x-reconciled-at": "2026-01-05T18:29:33.214123+00:00"
3132
3217
  }
3133
3218
  },
3134
3219
  "x-f5xc-minimum-configuration": {
@@ -3306,7 +3391,7 @@
3306
3391
  "x-field-mutability": "read-only",
3307
3392
  "x-original-maxLength": 1024,
3308
3393
  "x-reconciled-from-discovery": true,
3309
- "x-reconciled-at": "2026-01-05T14:38:35.657809+00:00"
3394
+ "x-reconciled-at": "2026-01-05T18:29:33.214141+00:00"
3310
3395
  },
3311
3396
  "uid": {
3312
3397
  "type": "string",
@@ -3327,7 +3412,7 @@
3327
3412
  "x-original-maxLength": 1024,
3328
3413
  "format": "uuid",
3329
3414
  "x-reconciled-from-discovery": true,
3330
- "x-reconciled-at": "2026-01-05T14:38:35.657814+00:00"
3415
+ "x-reconciled-at": "2026-01-05T18:29:33.214146+00:00"
3331
3416
  }
3332
3417
  },
3333
3418
  "x-f5xc-minimum-configuration": {
@@ -3377,7 +3462,7 @@
3377
3462
  },
3378
3463
  "x-original-maxLength": 1024,
3379
3464
  "x-reconciled-from-discovery": true,
3380
- "x-reconciled-at": "2026-01-05T14:38:35.657819+00:00"
3465
+ "x-reconciled-at": "2026-01-05T18:29:33.214151+00:00"
3381
3466
  },
3382
3467
  "name": {
3383
3468
  "type": "string",
@@ -3396,7 +3481,7 @@
3396
3481
  },
3397
3482
  "x-original-maxLength": 1024,
3398
3483
  "x-reconciled-from-discovery": true,
3399
- "x-reconciled-at": "2026-01-05T14:38:35.657824+00:00"
3484
+ "x-reconciled-at": "2026-01-05T18:29:33.214155+00:00"
3400
3485
  },
3401
3486
  "namespace": {
3402
3487
  "type": "string",
@@ -3415,7 +3500,7 @@
3415
3500
  },
3416
3501
  "x-original-maxLength": 1024,
3417
3502
  "x-reconciled-from-discovery": true,
3418
- "x-reconciled-at": "2026-01-05T14:38:35.657828+00:00"
3503
+ "x-reconciled-at": "2026-01-05T18:29:33.214159+00:00"
3419
3504
  },
3420
3505
  "uid": {
3421
3506
  "type": "string",
@@ -3436,7 +3521,7 @@
3436
3521
  "x-original-maxLength": 1024,
3437
3522
  "format": "uuid",
3438
3523
  "x-reconciled-from-discovery": true,
3439
- "x-reconciled-at": "2026-01-05T14:38:35.657833+00:00"
3524
+ "x-reconciled-at": "2026-01-05T18:29:33.214164+00:00"
3440
3525
  }
3441
3526
  },
3442
3527
  "x-f5xc-minimum-configuration": {