@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": "Billing And Usage",
5
5
  "description": "Subscription lifecycle with plan transitions and billing states. Payment method hierarchies supporting primary and secondary configurations. Invoice generation with PDF downloads and custom listing. Resource quotas per namespace with limit definitions and consumption metrics. Contact types for billing notifications and tenant deletion workflows.",
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": "Plan transitions, invoicing, and resource consumption. Namespace-level quota limits and usage tracking.",
16
- "x-f5xc-cli-domain": "billing_and_usage"
16
+ "x-f5xc-cli-domain": "billing_and_usage",
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
  {
@@ -265,6 +315,13 @@
265
315
  "latency": "moderate",
266
316
  "resource_usage": "moderate"
267
317
  }
318
+ },
319
+ "x-f5xc-discovered-response-time": {
320
+ "p50_ms": 200,
321
+ "p95_ms": 800,
322
+ "p99_ms": 2000,
323
+ "sample_count": 0,
324
+ "source": "estimate"
268
325
  }
269
326
  },
270
327
  "x-displayname": "Invoice",
@@ -465,6 +522,13 @@
465
522
  "latency": "moderate",
466
523
  "resource_usage": "moderate"
467
524
  }
525
+ },
526
+ "x-f5xc-discovered-response-time": {
527
+ "p50_ms": 200,
528
+ "p95_ms": 800,
529
+ "p99_ms": 2000,
530
+ "sample_count": 0,
531
+ "source": "estimate"
468
532
  }
469
533
  },
470
534
  "x-displayname": "Invoice",
@@ -690,6 +754,13 @@
690
754
  "latency": "low",
691
755
  "resource_usage": "low"
692
756
  }
757
+ },
758
+ "x-f5xc-discovered-response-time": {
759
+ "p50_ms": 1000,
760
+ "p95_ms": 3000,
761
+ "p99_ms": 8000,
762
+ "sample_count": 0,
763
+ "source": "estimate"
693
764
  }
694
765
  },
695
766
  "x-displayname": "Payment Method.",
@@ -915,6 +986,13 @@
915
986
  "latency": "low",
916
987
  "resource_usage": "low"
917
988
  }
989
+ },
990
+ "x-f5xc-discovered-response-time": {
991
+ "p50_ms": 1000,
992
+ "p95_ms": 3000,
993
+ "p99_ms": 8000,
994
+ "sample_count": 0,
995
+ "source": "estimate"
918
996
  }
919
997
  },
920
998
  "x-displayname": "Payment Method.",
@@ -1140,6 +1218,13 @@
1140
1218
  "latency": "low",
1141
1219
  "resource_usage": "low"
1142
1220
  }
1221
+ },
1222
+ "x-f5xc-discovered-response-time": {
1223
+ "p50_ms": 1000,
1224
+ "p95_ms": 3000,
1225
+ "p99_ms": 8000,
1226
+ "sample_count": 0,
1227
+ "source": "estimate"
1143
1228
  }
1144
1229
  },
1145
1230
  "x-displayname": "Payment Method.",
@@ -1354,6 +1439,13 @@
1354
1439
  "latency": "low",
1355
1440
  "resource_usage": "low"
1356
1441
  }
1442
+ },
1443
+ "x-f5xc-discovered-response-time": {
1444
+ "p50_ms": 1000,
1445
+ "p95_ms": 3000,
1446
+ "p99_ms": 8000,
1447
+ "sample_count": 0,
1448
+ "source": "estimate"
1357
1449
  }
1358
1450
  },
1359
1451
  "x-displayname": "Payment Method.",
@@ -1568,6 +1660,13 @@
1568
1660
  "latency": "high",
1569
1661
  "resource_usage": "moderate"
1570
1662
  }
1663
+ },
1664
+ "x-f5xc-discovered-response-time": {
1665
+ "p50_ms": 500,
1666
+ "p95_ms": 1500,
1667
+ "p99_ms": 4000,
1668
+ "sample_count": 0,
1669
+ "source": "estimate"
1571
1670
  }
1572
1671
  },
1573
1672
  "x-displayname": "Payment Method.",
@@ -1751,6 +1850,13 @@
1751
1850
  "latency": "moderate",
1752
1851
  "resource_usage": "moderate"
1753
1852
  }
1853
+ },
1854
+ "x-f5xc-discovered-response-time": {
1855
+ "p50_ms": 200,
1856
+ "p95_ms": 800,
1857
+ "p99_ms": 2000,
1858
+ "sample_count": 0,
1859
+ "source": "estimate"
1754
1860
  }
1755
1861
  },
1756
1862
  "x-displayname": "Plan transition CustomAPI.",
@@ -1965,6 +2071,13 @@
1965
2071
  "latency": "low",
1966
2072
  "resource_usage": "low"
1967
2073
  }
2074
+ },
2075
+ "x-f5xc-discovered-response-time": {
2076
+ "p50_ms": 1000,
2077
+ "p95_ms": 3000,
2078
+ "p99_ms": 8000,
2079
+ "sample_count": 0,
2080
+ "source": "estimate"
1968
2081
  }
1969
2082
  },
1970
2083
  "x-displayname": "Plan transition CustomAPI.",
@@ -2179,6 +2292,13 @@
2179
2292
  "latency": "low",
2180
2293
  "resource_usage": "low"
2181
2294
  }
2295
+ },
2296
+ "x-f5xc-discovered-response-time": {
2297
+ "p50_ms": 1000,
2298
+ "p95_ms": 3000,
2299
+ "p99_ms": 8000,
2300
+ "sample_count": 0,
2301
+ "source": "estimate"
2182
2302
  }
2183
2303
  },
2184
2304
  "x-displayname": "Quota",
@@ -2401,6 +2521,13 @@
2401
2521
  "latency": "low",
2402
2522
  "resource_usage": "low"
2403
2523
  }
2524
+ },
2525
+ "x-f5xc-discovered-response-time": {
2526
+ "p50_ms": 800,
2527
+ "p95_ms": 2500,
2528
+ "p99_ms": 6000,
2529
+ "sample_count": 0,
2530
+ "source": "estimate"
2404
2531
  }
2405
2532
  },
2406
2533
  "x-displayname": "Quota",
@@ -2589,6 +2716,13 @@
2589
2716
  "latency": "moderate",
2590
2717
  "resource_usage": "moderate"
2591
2718
  }
2719
+ },
2720
+ "x-f5xc-discovered-response-time": {
2721
+ "p50_ms": 200,
2722
+ "p95_ms": 800,
2723
+ "p99_ms": 2000,
2724
+ "sample_count": 0,
2725
+ "source": "estimate"
2592
2726
  }
2593
2727
  },
2594
2728
  "x-displayname": "Quota",
@@ -2777,6 +2911,13 @@
2777
2911
  "latency": "moderate",
2778
2912
  "resource_usage": "moderate"
2779
2913
  }
2914
+ },
2915
+ "x-f5xc-discovered-response-time": {
2916
+ "p50_ms": 200,
2917
+ "p95_ms": 800,
2918
+ "p99_ms": 2000,
2919
+ "sample_count": 0,
2920
+ "source": "estimate"
2780
2921
  }
2781
2922
  },
2782
2923
  "x-displayname": "Quota",
@@ -3004,6 +3145,13 @@
3004
3145
  "latency": "moderate",
3005
3146
  "resource_usage": "moderate"
3006
3147
  }
3148
+ },
3149
+ "x-f5xc-discovered-response-time": {
3150
+ "p50_ms": 200,
3151
+ "p95_ms": 800,
3152
+ "p99_ms": 2000,
3153
+ "sample_count": 0,
3154
+ "source": "estimate"
3007
3155
  }
3008
3156
  },
3009
3157
  "x-displayname": "Quota",
@@ -3225,6 +3373,13 @@
3225
3373
  "latency": "low",
3226
3374
  "resource_usage": "low"
3227
3375
  }
3376
+ },
3377
+ "x-f5xc-discovered-response-time": {
3378
+ "p50_ms": 200,
3379
+ "p95_ms": 800,
3380
+ "p99_ms": 2000,
3381
+ "sample_count": 0,
3382
+ "source": "estimate"
3228
3383
  }
3229
3384
  },
3230
3385
  "delete": {
@@ -3444,6 +3599,13 @@
3444
3599
  "latency": "high",
3445
3600
  "resource_usage": "moderate"
3446
3601
  }
3602
+ },
3603
+ "x-f5xc-discovered-response-time": {
3604
+ "p50_ms": 500,
3605
+ "p95_ms": 1500,
3606
+ "p99_ms": 4000,
3607
+ "sample_count": 0,
3608
+ "source": "estimate"
3447
3609
  }
3448
3610
  },
3449
3611
  "x-displayname": "Quota",
@@ -3643,6 +3805,13 @@
3643
3805
  "latency": "moderate",
3644
3806
  "resource_usage": "moderate"
3645
3807
  }
3808
+ },
3809
+ "x-f5xc-discovered-response-time": {
3810
+ "p50_ms": 200,
3811
+ "p95_ms": 800,
3812
+ "p99_ms": 2000,
3813
+ "sample_count": 0,
3814
+ "source": "estimate"
3646
3815
  }
3647
3816
  },
3648
3817
  "x-displayname": "Subscription.",
@@ -3842,6 +4011,13 @@
3842
4011
  "latency": "low",
3843
4012
  "resource_usage": "low"
3844
4013
  }
4014
+ },
4015
+ "x-f5xc-discovered-response-time": {
4016
+ "p50_ms": 1000,
4017
+ "p95_ms": 3000,
4018
+ "p99_ms": 8000,
4019
+ "sample_count": 0,
4020
+ "source": "estimate"
3845
4021
  }
3846
4022
  },
3847
4023
  "x-displayname": "Subscription API.",
@@ -4041,6 +4217,13 @@
4041
4217
  "latency": "low",
4042
4218
  "resource_usage": "low"
4043
4219
  }
4220
+ },
4221
+ "x-f5xc-discovered-response-time": {
4222
+ "p50_ms": 1000,
4223
+ "p95_ms": 3000,
4224
+ "p99_ms": 8000,
4225
+ "sample_count": 0,
4226
+ "source": "estimate"
4044
4227
  }
4045
4228
  },
4046
4229
  "x-displayname": "Subscription API.",
@@ -4255,6 +4438,13 @@
4255
4438
  "latency": "low",
4256
4439
  "resource_usage": "low"
4257
4440
  }
4441
+ },
4442
+ "x-f5xc-discovered-response-time": {
4443
+ "p50_ms": 1000,
4444
+ "p95_ms": 3000,
4445
+ "p99_ms": 8000,
4446
+ "sample_count": 0,
4447
+ "source": "estimate"
4258
4448
  }
4259
4449
  },
4260
4450
  "x-displayname": "Usage",
@@ -4469,6 +4659,13 @@
4469
4659
  "latency": "low",
4470
4660
  "resource_usage": "low"
4471
4661
  }
4662
+ },
4663
+ "x-f5xc-discovered-response-time": {
4664
+ "p50_ms": 1000,
4665
+ "p95_ms": 3000,
4666
+ "p99_ms": 8000,
4667
+ "sample_count": 0,
4668
+ "source": "estimate"
4472
4669
  }
4473
4670
  },
4474
4671
  "x-displayname": "Usage",
@@ -4683,6 +4880,13 @@
4683
4880
  "latency": "low",
4684
4881
  "resource_usage": "low"
4685
4882
  }
4883
+ },
4884
+ "x-f5xc-discovered-response-time": {
4885
+ "p50_ms": 1000,
4886
+ "p95_ms": 3000,
4887
+ "p99_ms": 8000,
4888
+ "sample_count": 0,
4889
+ "source": "estimate"
4686
4890
  }
4687
4891
  },
4688
4892
  "x-displayname": "Usage",
@@ -4897,6 +5101,13 @@
4897
5101
  "latency": "low",
4898
5102
  "resource_usage": "low"
4899
5103
  }
5104
+ },
5105
+ "x-f5xc-discovered-response-time": {
5106
+ "p50_ms": 1000,
5107
+ "p95_ms": 3000,
5108
+ "p99_ms": 8000,
5109
+ "sample_count": 0,
5110
+ "source": "estimate"
4900
5111
  }
4901
5112
  },
4902
5113
  "x-displayname": "Usage",
@@ -5067,6 +5278,13 @@
5067
5278
  "latency": "moderate",
5068
5279
  "resource_usage": "moderate"
5069
5280
  }
5281
+ },
5282
+ "x-f5xc-discovered-response-time": {
5283
+ "p50_ms": 200,
5284
+ "p95_ms": 800,
5285
+ "p99_ms": 2000,
5286
+ "sample_count": 0,
5287
+ "source": "estimate"
5070
5288
  }
5071
5289
  },
5072
5290
  "x-displayname": "Usage plan.",
@@ -5237,6 +5455,13 @@
5237
5455
  "latency": "moderate",
5238
5456
  "resource_usage": "moderate"
5239
5457
  }
5458
+ },
5459
+ "x-f5xc-discovered-response-time": {
5460
+ "p50_ms": 200,
5461
+ "p95_ms": 800,
5462
+ "p99_ms": 2000,
5463
+ "sample_count": 0,
5464
+ "source": "estimate"
5240
5465
  }
5241
5466
  },
5242
5467
  "x-displayname": "Usage plan.",
@@ -5385,7 +5610,7 @@
5385
5610
  },
5386
5611
  "x-original-maxLength": 1024,
5387
5612
  "x-reconciled-from-discovery": true,
5388
- "x-reconciled-at": "2026-01-05T14:38:31.163442+00:00"
5613
+ "x-reconciled-at": "2026-01-05T18:29:29.116082+00:00"
5389
5614
  },
5390
5615
  "period_end": {
5391
5616
  "type": "string",
@@ -5703,7 +5928,7 @@
5703
5928
  },
5704
5929
  "x-original-maxLength": 1024,
5705
5930
  "x-reconciled-from-discovery": true,
5706
- "x-reconciled-at": "2026-01-05T14:38:44.783866+00:00"
5931
+ "x-reconciled-at": "2026-01-05T18:29:41.315998+00:00"
5707
5932
  },
5708
5933
  "role": {
5709
5934
  "$ref": "#/components/schemas/payment_methodPaymentMethodRole"
@@ -5761,7 +5986,7 @@
5761
5986
  },
5762
5987
  "x-original-maxLength": 1024,
5763
5988
  "x-reconciled-from-discovery": true,
5764
- "x-reconciled-at": "2026-01-05T14:38:44.783877+00:00"
5989
+ "x-reconciled-at": "2026-01-05T18:29:41.316008+00:00"
5765
5990
  }
5766
5991
  },
5767
5992
  "x-f5xc-minimum-configuration": {
@@ -5800,7 +6025,7 @@
5800
6025
  },
5801
6026
  "x-original-maxLength": 1024,
5802
6027
  "x-reconciled-from-discovery": true,
5803
- "x-reconciled-at": "2026-01-05T14:38:44.783883+00:00"
6028
+ "x-reconciled-at": "2026-01-05T18:29:41.316014+00:00"
5804
6029
  },
5805
6030
  "namespace": {
5806
6031
  "type": "string",
@@ -5819,7 +6044,7 @@
5819
6044
  },
5820
6045
  "x-original-maxLength": 1024,
5821
6046
  "x-reconciled-from-discovery": true,
5822
- "x-reconciled-at": "2026-01-05T14:38:44.783887+00:00"
6047
+ "x-reconciled-at": "2026-01-05T18:29:41.316018+00:00"
5823
6048
  }
5824
6049
  },
5825
6050
  "x-f5xc-minimum-configuration": {
@@ -5882,7 +6107,7 @@
5882
6107
  },
5883
6108
  "x-original-maxLength": 1024,
5884
6109
  "x-reconciled-from-discovery": true,
5885
- "x-reconciled-at": "2026-01-05T14:38:44.783892+00:00"
6110
+ "x-reconciled-at": "2026-01-05T18:29:41.316024+00:00"
5886
6111
  },
5887
6112
  "namespace": {
5888
6113
  "type": "string",
@@ -5901,7 +6126,7 @@
5901
6126
  },
5902
6127
  "x-original-maxLength": 1024,
5903
6128
  "x-reconciled-from-discovery": true,
5904
- "x-reconciled-at": "2026-01-05T14:38:44.783897+00:00"
6129
+ "x-reconciled-at": "2026-01-05T18:29:41.316028+00:00"
5905
6130
  }
5906
6131
  },
5907
6132
  "x-f5xc-minimum-configuration": {
@@ -5941,7 +6166,7 @@
5941
6166
  },
5942
6167
  "x-original-maxLength": 1024,
5943
6168
  "x-reconciled-from-discovery": true,
5944
- "x-reconciled-at": "2026-01-05T14:38:44.783902+00:00"
6169
+ "x-reconciled-at": "2026-01-05T18:29:41.316044+00:00"
5945
6170
  },
5946
6171
  "namespace": {
5947
6172
  "type": "string",
@@ -5960,7 +6185,7 @@
5960
6185
  },
5961
6186
  "x-original-maxLength": 1024,
5962
6187
  "x-reconciled-from-discovery": true,
5963
- "x-reconciled-at": "2026-01-05T14:38:44.783906+00:00"
6188
+ "x-reconciled-at": "2026-01-05T18:29:41.316049+00:00"
5964
6189
  }
5965
6190
  },
5966
6191
  "x-f5xc-minimum-configuration": {
@@ -6023,7 +6248,7 @@
6023
6248
  },
6024
6249
  "x-original-maxLength": 1024,
6025
6250
  "x-reconciled-from-discovery": true,
6026
- "x-reconciled-at": "2026-01-05T14:38:45.539128+00:00"
6251
+ "x-reconciled-at": "2026-01-05T18:29:41.962151+00:00"
6027
6252
  },
6028
6253
  "new_plan": {
6029
6254
  "type": "string",
@@ -6212,7 +6437,7 @@
6212
6437
  "x-original-maxLength": 1024,
6213
6438
  "format": "hostname",
6214
6439
  "x-reconciled-from-discovery": true,
6215
- "x-reconciled-at": "2026-01-05T14:38:45.539153+00:00"
6440
+ "x-reconciled-at": "2026-01-05T18:29:41.962174+00:00"
6216
6441
  },
6217
6442
  "payment_address": {
6218
6443
  "$ref": "#/components/schemas/schemacontactGlobalSpecType"
@@ -6554,7 +6779,7 @@
6554
6779
  },
6555
6780
  "x-original-maxLength": 1024,
6556
6781
  "x-reconciled-from-discovery": true,
6557
- "x-reconciled-at": "2026-01-05T14:38:48.506047+00:00"
6782
+ "x-reconciled-at": "2026-01-05T18:29:44.667988+00:00"
6558
6783
  }
6559
6784
  },
6560
6785
  "x-f5xc-minimum-configuration": {
@@ -6662,7 +6887,7 @@
6662
6887
  },
6663
6888
  "x-original-maxLength": 1024,
6664
6889
  "x-reconciled-from-discovery": true,
6665
- "x-reconciled-at": "2026-01-05T14:38:48.506065+00:00"
6890
+ "x-reconciled-at": "2026-01-05T18:29:44.668005+00:00"
6666
6891
  },
6667
6892
  "namespace": {
6668
6893
  "type": "string",
@@ -6681,7 +6906,7 @@
6681
6906
  },
6682
6907
  "x-original-maxLength": 1024,
6683
6908
  "x-reconciled-from-discovery": true,
6684
- "x-reconciled-at": "2026-01-05T14:38:48.506070+00:00"
6909
+ "x-reconciled-at": "2026-01-05T18:29:44.668010+00:00"
6685
6910
  }
6686
6911
  },
6687
6912
  "x-f5xc-minimum-configuration": {
@@ -6907,7 +7132,7 @@
6907
7132
  "maxLength": 17,
6908
7133
  "minLength": 17,
6909
7134
  "x-reconciled-from-discovery": true,
6910
- "x-reconciled-at": "2026-01-05T14:38:48.506099+00:00"
7135
+ "x-reconciled-at": "2026-01-05T18:29:44.668048+00:00"
6911
7136
  },
6912
7137
  "system_metadata": {
6913
7138
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -7173,7 +7398,7 @@
7173
7398
  },
7174
7399
  "x-original-maxLength": 1024,
7175
7400
  "x-reconciled-from-discovery": true,
7176
- "x-reconciled-at": "2026-01-05T14:38:48.506125+00:00"
7401
+ "x-reconciled-at": "2026-01-05T18:29:44.668073+00:00"
7177
7402
  },
7178
7403
  "disabled": {
7179
7404
  "type": "boolean",
@@ -7223,7 +7448,7 @@
7223
7448
  },
7224
7449
  "x-original-maxLength": 1024,
7225
7450
  "x-reconciled-from-discovery": true,
7226
- "x-reconciled-at": "2026-01-05T14:38:48.506136+00:00"
7451
+ "x-reconciled-at": "2026-01-05T18:29:44.668083+00:00"
7227
7452
  },
7228
7453
  "namespace": {
7229
7454
  "type": "string",
@@ -7242,7 +7467,7 @@
7242
7467
  },
7243
7468
  "x-original-maxLength": 1024,
7244
7469
  "x-reconciled-from-discovery": true,
7245
- "x-reconciled-at": "2026-01-05T14:38:48.506140+00:00"
7470
+ "x-reconciled-at": "2026-01-05T18:29:44.668087+00:00"
7246
7471
  },
7247
7472
  "owner_view": {
7248
7473
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -7283,7 +7508,7 @@
7283
7508
  "x-field-mutability": "read-only",
7284
7509
  "x-original-maxLength": 1024,
7285
7510
  "x-reconciled-from-discovery": true,
7286
- "x-reconciled-at": "2026-01-05T14:38:48.506149+00:00"
7511
+ "x-reconciled-at": "2026-01-05T18:29:44.668095+00:00"
7287
7512
  },
7288
7513
  "uid": {
7289
7514
  "type": "string",
@@ -7304,7 +7529,7 @@
7304
7529
  "x-original-maxLength": 1024,
7305
7530
  "format": "uuid",
7306
7531
  "x-reconciled-from-discovery": true,
7307
- "x-reconciled-at": "2026-01-05T14:38:48.506154+00:00"
7532
+ "x-reconciled-at": "2026-01-05T18:29:44.668101+00:00"
7308
7533
  }
7309
7534
  },
7310
7535
  "x-f5xc-minimum-configuration": {
@@ -7350,7 +7575,7 @@
7350
7575
  },
7351
7576
  "x-original-maxLength": 1024,
7352
7577
  "x-reconciled-from-discovery": true,
7353
- "x-reconciled-at": "2026-01-05T14:38:48.506159+00:00"
7578
+ "x-reconciled-at": "2026-01-05T18:29:44.668106+00:00"
7354
7579
  },
7355
7580
  "display_name": {
7356
7581
  "type": "string",
@@ -7406,7 +7631,7 @@
7406
7631
  },
7407
7632
  "x-original-maxLength": 1024,
7408
7633
  "x-reconciled-from-discovery": true,
7409
- "x-reconciled-at": "2026-01-05T14:38:48.506168+00:00"
7634
+ "x-reconciled-at": "2026-01-05T18:29:44.668114+00:00"
7410
7635
  },
7411
7636
  "display_name": {
7412
7637
  "type": "string",
@@ -7458,7 +7683,7 @@
7458
7683
  },
7459
7684
  "x-original-maxLength": 1024,
7460
7685
  "x-reconciled-from-discovery": true,
7461
- "x-reconciled-at": "2026-01-05T14:38:48.506176+00:00"
7686
+ "x-reconciled-at": "2026-01-05T18:29:44.668122+00:00"
7462
7687
  },
7463
7688
  "display_name": {
7464
7689
  "type": "string",
@@ -7517,7 +7742,7 @@
7517
7742
  },
7518
7743
  "x-original-maxLength": 1024,
7519
7744
  "x-reconciled-from-discovery": true,
7520
- "x-reconciled-at": "2026-01-05T14:38:48.506186+00:00"
7745
+ "x-reconciled-at": "2026-01-05T18:29:44.668131+00:00"
7521
7746
  },
7522
7747
  "display_name": {
7523
7748
  "type": "string",
@@ -7767,7 +7992,7 @@
7767
7992
  },
7768
7993
  "x-original-maxLength": 1024,
7769
7994
  "x-reconciled-from-discovery": true,
7770
- "x-reconciled-at": "2026-01-05T14:38:48.506210+00:00"
7995
+ "x-reconciled-at": "2026-01-05T18:29:44.668154+00:00"
7771
7996
  },
7772
7997
  "service_name": {
7773
7998
  "type": "string",
@@ -7806,7 +8031,7 @@
7806
8031
  },
7807
8032
  "x-original-maxLength": 1024,
7808
8033
  "x-reconciled-from-discovery": true,
7809
- "x-reconciled-at": "2026-01-05T14:38:48.506216+00:00"
8034
+ "x-reconciled-at": "2026-01-05T18:29:44.668160+00:00"
7810
8035
  },
7811
8036
  "type": {
7812
8037
  "type": "string",
@@ -7943,7 +8168,7 @@
7943
8168
  },
7944
8169
  "x-original-maxLength": 1024,
7945
8170
  "x-reconciled-from-discovery": true,
7946
- "x-reconciled-at": "2026-01-05T14:38:48.506228+00:00"
8171
+ "x-reconciled-at": "2026-01-05T18:29:44.668171+00:00"
7947
8172
  }
7948
8173
  },
7949
8174
  "x-f5xc-minimum-configuration": {
@@ -8052,7 +8277,7 @@
8052
8277
  },
8053
8278
  "x-original-maxLength": 1200,
8054
8279
  "x-reconciled-from-discovery": true,
8055
- "x-reconciled-at": "2026-01-05T14:38:48.506238+00:00"
8280
+ "x-reconciled-at": "2026-01-05T18:29:44.668180+00:00"
8056
8281
  },
8057
8282
  "disable": {
8058
8283
  "type": "boolean",
@@ -8105,7 +8330,7 @@
8105
8330
  },
8106
8331
  "x-original-maxLength": 1024,
8107
8332
  "x-reconciled-from-discovery": true,
8108
- "x-reconciled-at": "2026-01-05T14:38:48.506245+00:00"
8333
+ "x-reconciled-at": "2026-01-05T18:29:44.668188+00:00"
8109
8334
  },
8110
8335
  "namespace": {
8111
8336
  "type": "string",
@@ -8124,7 +8349,7 @@
8124
8349
  },
8125
8350
  "x-original-maxLength": 1024,
8126
8351
  "x-reconciled-from-discovery": true,
8127
- "x-reconciled-at": "2026-01-05T14:38:48.506249+00:00"
8352
+ "x-reconciled-at": "2026-01-05T18:29:44.668192+00:00"
8128
8353
  }
8129
8354
  },
8130
8355
  "x-f5xc-minimum-configuration": {
@@ -8200,7 +8425,7 @@
8200
8425
  },
8201
8426
  "x-original-maxLength": 1200,
8202
8427
  "x-reconciled-from-discovery": true,
8203
- "x-reconciled-at": "2026-01-05T14:38:48.506256+00:00"
8428
+ "x-reconciled-at": "2026-01-05T18:29:44.668198+00:00"
8204
8429
  },
8205
8430
  "disable": {
8206
8431
  "type": "boolean",
@@ -8255,7 +8480,7 @@
8255
8480
  },
8256
8481
  "x-original-maxLength": 1024,
8257
8482
  "x-reconciled-from-discovery": true,
8258
- "x-reconciled-at": "2026-01-05T14:38:48.506264+00:00"
8483
+ "x-reconciled-at": "2026-01-05T18:29:44.668205+00:00"
8259
8484
  },
8260
8485
  "namespace": {
8261
8486
  "type": "string",
@@ -8274,7 +8499,7 @@
8274
8499
  },
8275
8500
  "x-original-maxLength": 1024,
8276
8501
  "x-reconciled-from-discovery": true,
8277
- "x-reconciled-at": "2026-01-05T14:38:48.506268+00:00"
8502
+ "x-reconciled-at": "2026-01-05T18:29:44.668209+00:00"
8278
8503
  }
8279
8504
  },
8280
8505
  "x-f5xc-minimum-configuration": {
@@ -8319,7 +8544,7 @@
8319
8544
  "readOnly": true,
8320
8545
  "x-original-maxLength": 1024,
8321
8546
  "x-reconciled-from-discovery": true,
8322
- "x-reconciled-at": "2026-01-05T14:38:48.506273+00:00"
8547
+ "x-reconciled-at": "2026-01-05T18:29:44.668214+00:00"
8323
8548
  },
8324
8549
  "name": {
8325
8550
  "type": "string",
@@ -8338,7 +8563,7 @@
8338
8563
  },
8339
8564
  "x-original-maxLength": 1024,
8340
8565
  "x-reconciled-from-discovery": true,
8341
- "x-reconciled-at": "2026-01-05T14:38:48.506277+00:00"
8566
+ "x-reconciled-at": "2026-01-05T18:29:44.668218+00:00"
8342
8567
  },
8343
8568
  "namespace": {
8344
8569
  "type": "string",
@@ -8357,7 +8582,7 @@
8357
8582
  },
8358
8583
  "x-original-maxLength": 1024,
8359
8584
  "x-reconciled-from-discovery": true,
8360
- "x-reconciled-at": "2026-01-05T14:38:48.506281+00:00"
8585
+ "x-reconciled-at": "2026-01-05T18:29:44.668222+00:00"
8361
8586
  },
8362
8587
  "tenant": {
8363
8588
  "type": "string",
@@ -8378,7 +8603,7 @@
8378
8603
  "x-field-mutability": "read-only",
8379
8604
  "x-original-maxLength": 1024,
8380
8605
  "x-reconciled-from-discovery": true,
8381
- "x-reconciled-at": "2026-01-05T14:38:48.506286+00:00"
8606
+ "x-reconciled-at": "2026-01-05T18:29:44.668226+00:00"
8382
8607
  },
8383
8608
  "uid": {
8384
8609
  "type": "string",
@@ -8400,7 +8625,7 @@
8400
8625
  "x-original-maxLength": 1024,
8401
8626
  "format": "uuid",
8402
8627
  "x-reconciled-from-discovery": true,
8403
- "x-reconciled-at": "2026-01-05T14:38:48.506291+00:00"
8628
+ "x-reconciled-at": "2026-01-05T18:29:44.668231+00:00"
8404
8629
  }
8405
8630
  },
8406
8631
  "x-f5xc-minimum-configuration": {
@@ -8475,7 +8700,7 @@
8475
8700
  },
8476
8701
  "x-original-maxLength": 1200,
8477
8702
  "x-reconciled-from-discovery": true,
8478
- "x-reconciled-at": "2026-01-05T14:38:48.506298+00:00"
8703
+ "x-reconciled-at": "2026-01-05T18:29:44.668238+00:00"
8479
8704
  },
8480
8705
  "disable": {
8481
8706
  "type": "boolean",
@@ -8528,7 +8753,7 @@
8528
8753
  },
8529
8754
  "x-original-maxLength": 1024,
8530
8755
  "x-reconciled-from-discovery": true,
8531
- "x-reconciled-at": "2026-01-05T14:38:48.506306+00:00"
8756
+ "x-reconciled-at": "2026-01-05T18:29:44.668245+00:00"
8532
8757
  },
8533
8758
  "namespace": {
8534
8759
  "type": "string",
@@ -8547,7 +8772,7 @@
8547
8772
  },
8548
8773
  "x-original-maxLength": 1024,
8549
8774
  "x-reconciled-from-discovery": true,
8550
- "x-reconciled-at": "2026-01-05T14:38:48.506310+00:00"
8775
+ "x-reconciled-at": "2026-01-05T18:29:44.668249+00:00"
8551
8776
  }
8552
8777
  },
8553
8778
  "x-f5xc-minimum-configuration": {
@@ -8661,7 +8886,7 @@
8661
8886
  "x-original-maxLength": 1024,
8662
8887
  "format": "uuid",
8663
8888
  "x-reconciled-from-discovery": true,
8664
- "x-reconciled-at": "2026-01-05T14:38:48.506323+00:00"
8889
+ "x-reconciled-at": "2026-01-05T18:29:44.668261+00:00"
8665
8890
  },
8666
8891
  "vtrp_id": {
8667
8892
  "type": "string",
@@ -8773,7 +8998,7 @@
8773
8998
  },
8774
8999
  "x-original-maxLength": 1024,
8775
9000
  "x-reconciled-from-discovery": true,
8776
- "x-reconciled-at": "2026-01-05T14:38:48.506333+00:00"
9001
+ "x-reconciled-at": "2026-01-05T18:29:44.668271+00:00"
8777
9002
  },
8778
9003
  "status": {
8779
9004
  "type": "string",
@@ -8792,7 +9017,7 @@
8792
9017
  },
8793
9018
  "x-original-maxLength": 1024,
8794
9019
  "x-reconciled-from-discovery": true,
8795
- "x-reconciled-at": "2026-01-05T14:38:48.506337+00:00"
9020
+ "x-reconciled-at": "2026-01-05T18:29:44.668275+00:00"
8796
9021
  }
8797
9022
  },
8798
9023
  "x-f5xc-minimum-configuration": {
@@ -8970,7 +9195,7 @@
8970
9195
  "x-field-mutability": "read-only",
8971
9196
  "x-original-maxLength": 1024,
8972
9197
  "x-reconciled-from-discovery": true,
8973
- "x-reconciled-at": "2026-01-05T14:38:48.506358+00:00"
9198
+ "x-reconciled-at": "2026-01-05T18:29:44.668294+00:00"
8974
9199
  },
8975
9200
  "uid": {
8976
9201
  "type": "string",
@@ -8991,7 +9216,7 @@
8991
9216
  "x-original-maxLength": 1024,
8992
9217
  "format": "uuid",
8993
9218
  "x-reconciled-from-discovery": true,
8994
- "x-reconciled-at": "2026-01-05T14:38:48.506363+00:00"
9219
+ "x-reconciled-at": "2026-01-05T18:29:44.668298+00:00"
8995
9220
  }
8996
9221
  },
8997
9222
  "x-f5xc-minimum-configuration": {
@@ -9041,7 +9266,7 @@
9041
9266
  },
9042
9267
  "x-original-maxLength": 1024,
9043
9268
  "x-reconciled-from-discovery": true,
9044
- "x-reconciled-at": "2026-01-05T14:38:48.506367+00:00"
9269
+ "x-reconciled-at": "2026-01-05T18:29:44.668303+00:00"
9045
9270
  },
9046
9271
  "name": {
9047
9272
  "type": "string",
@@ -9060,7 +9285,7 @@
9060
9285
  },
9061
9286
  "x-original-maxLength": 1024,
9062
9287
  "x-reconciled-from-discovery": true,
9063
- "x-reconciled-at": "2026-01-05T14:38:48.506371+00:00"
9288
+ "x-reconciled-at": "2026-01-05T18:29:44.668307+00:00"
9064
9289
  },
9065
9290
  "namespace": {
9066
9291
  "type": "string",
@@ -9079,7 +9304,7 @@
9079
9304
  },
9080
9305
  "x-original-maxLength": 1024,
9081
9306
  "x-reconciled-from-discovery": true,
9082
- "x-reconciled-at": "2026-01-05T14:38:48.506375+00:00"
9307
+ "x-reconciled-at": "2026-01-05T18:29:44.668311+00:00"
9083
9308
  },
9084
9309
  "uid": {
9085
9310
  "type": "string",
@@ -9100,7 +9325,7 @@
9100
9325
  "x-original-maxLength": 1024,
9101
9326
  "format": "uuid",
9102
9327
  "x-reconciled-from-discovery": true,
9103
- "x-reconciled-at": "2026-01-05T14:38:48.506380+00:00"
9328
+ "x-reconciled-at": "2026-01-05T18:29:44.668316+00:00"
9104
9329
  }
9105
9330
  },
9106
9331
  "x-f5xc-minimum-configuration": {
@@ -9619,7 +9844,7 @@
9619
9844
  "x-original-maxLength": 1024,
9620
9845
  "format": "uuid",
9621
9846
  "x-reconciled-from-discovery": true,
9622
- "x-reconciled-at": "2026-01-05T14:39:05.205396+00:00"
9847
+ "x-reconciled-at": "2026-01-05T18:29:59.898511+00:00"
9623
9848
  }
9624
9849
  },
9625
9850
  "x-f5xc-minimum-configuration": {
@@ -9743,7 +9968,7 @@
9743
9968
  },
9744
9969
  "x-original-maxLength": 1024,
9745
9970
  "x-reconciled-from-discovery": true,
9746
- "x-reconciled-at": "2026-01-05T14:39:05.205413+00:00"
9971
+ "x-reconciled-at": "2026-01-05T18:29:59.898526+00:00"
9747
9972
  },
9748
9973
  "plan_name": {
9749
9974
  "type": "string",
@@ -10306,7 +10531,7 @@
10306
10531
  },
10307
10532
  "x-original-maxLength": 1024,
10308
10533
  "x-reconciled-from-discovery": true,
10309
- "x-reconciled-at": "2026-01-05T14:39:13.669556+00:00"
10534
+ "x-reconciled-at": "2026-01-05T18:30:07.440022+00:00"
10310
10535
  }
10311
10536
  },
10312
10537
  "x-f5xc-minimum-configuration": {
@@ -10515,7 +10740,7 @@
10515
10740
  },
10516
10741
  "x-original-maxLength": 1024,
10517
10742
  "x-reconciled-from-discovery": true,
10518
- "x-reconciled-at": "2026-01-05T14:39:13.669575+00:00"
10743
+ "x-reconciled-at": "2026-01-05T18:30:07.440051+00:00"
10519
10744
  },
10520
10745
  "to": {
10521
10746
  "type": "string",
@@ -10660,7 +10885,7 @@
10660
10885
  },
10661
10886
  "x-original-maxLength": 1024,
10662
10887
  "x-reconciled-from-discovery": true,
10663
- "x-reconciled-at": "2026-01-05T14:39:13.669589+00:00"
10888
+ "x-reconciled-at": "2026-01-05T18:30:07.440064+00:00"
10664
10889
  },
10665
10890
  "query": {
10666
10891
  "type": "string",
@@ -10751,7 +10976,7 @@
10751
10976
  },
10752
10977
  "x-original-maxLength": 1024,
10753
10978
  "x-reconciled-from-discovery": true,
10754
- "x-reconciled-at": "2026-01-05T14:39:13.669598+00:00"
10979
+ "x-reconciled-at": "2026-01-05T18:30:07.440073+00:00"
10755
10980
  }
10756
10981
  },
10757
10982
  "x-f5xc-minimum-configuration": {
@@ -10842,7 +11067,7 @@
10842
11067
  },
10843
11068
  "x-original-maxLength": 1024,
10844
11069
  "x-reconciled-from-discovery": true,
10845
- "x-reconciled-at": "2026-01-05T14:39:13.669606+00:00"
11070
+ "x-reconciled-at": "2026-01-05T18:30:07.440081+00:00"
10846
11071
  },
10847
11072
  "to": {
10848
11073
  "type": "string",
@@ -11101,7 +11326,7 @@
11101
11326
  },
11102
11327
  "x-original-maxLength": 1024,
11103
11328
  "x-reconciled-from-discovery": true,
11104
- "x-reconciled-at": "2026-01-05T14:39:13.669627+00:00"
11329
+ "x-reconciled-at": "2026-01-05T18:30:07.440100+00:00"
11105
11330
  },
11106
11331
  "object_name": {
11107
11332
  "type": "string",
@@ -11245,7 +11470,7 @@
11245
11470
  },
11246
11471
  "x-original-maxLength": 1024,
11247
11472
  "x-reconciled-from-discovery": true,
11248
- "x-reconciled-at": "2026-01-05T14:39:13.922818+00:00"
11473
+ "x-reconciled-at": "2026-01-05T18:30:07.654743+00:00"
11249
11474
  }
11250
11475
  },
11251
11476
  "x-f5xc-minimum-configuration": {
@@ -11439,7 +11664,7 @@
11439
11664
  },
11440
11665
  "x-original-maxLength": 1024,
11441
11666
  "x-reconciled-from-discovery": true,
11442
- "x-reconciled-at": "2026-01-05T14:39:13.922839+00:00"
11667
+ "x-reconciled-at": "2026-01-05T18:30:07.654763+00:00"
11443
11668
  },
11444
11669
  "flat_price": {
11445
11670
  "type": "integer",
@@ -11489,7 +11714,7 @@
11489
11714
  },
11490
11715
  "x-original-maxLength": 1024,
11491
11716
  "x-reconciled-from-discovery": true,
11492
- "x-reconciled-at": "2026-01-05T14:39:13.922847+00:00"
11717
+ "x-reconciled-at": "2026-01-05T18:30:07.654770+00:00"
11493
11718
  },
11494
11719
  "renewal_period_unit": {
11495
11720
  "$ref": "#/components/schemas/planPeriodUnitType"
@@ -11533,7 +11758,7 @@
11533
11758
  },
11534
11759
  "x-original-maxLength": 1024,
11535
11760
  "x-reconciled-from-discovery": true,
11536
- "x-reconciled-at": "2026-01-05T14:39:13.922857+00:00"
11761
+ "x-reconciled-at": "2026-01-05T18:30:07.654780+00:00"
11537
11762
  },
11538
11763
  "transition_flow": {
11539
11764
  "$ref": "#/components/schemas/planUsagePlanTransitionFlow"