@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": "Bigip",
5
5
  "description": "On-premises appliance connector enabling iRule lifecycle operations and data group replication. APM policy coordination, virtual server configuration binding, and CNE linkage. Telemetry aggregation and health status monitoring across hybrid infrastructure deployments.",
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": "Legacy device orchestration with iRule scripts and data group synchronization. Virtual server bindings and metrics collection.",
16
- "x-f5xc-cli-domain": "bigip"
16
+ "x-f5xc-cli-domain": "bigip",
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
  {
@@ -280,6 +330,13 @@
280
330
  "latency": "low",
281
331
  "resource_usage": "low"
282
332
  }
333
+ },
334
+ "x-f5xc-discovered-response-time": {
335
+ "p50_ms": 1000,
336
+ "p95_ms": 3000,
337
+ "p99_ms": 8000,
338
+ "sample_count": 0,
339
+ "source": "estimate"
283
340
  }
284
341
  },
285
342
  "x-displayname": "BIG-IP APM as a Service.",
@@ -502,6 +559,13 @@
502
559
  "latency": "low",
503
560
  "resource_usage": "low"
504
561
  }
562
+ },
563
+ "x-f5xc-discovered-response-time": {
564
+ "p50_ms": 800,
565
+ "p95_ms": 2500,
566
+ "p99_ms": 6000,
567
+ "sample_count": 0,
568
+ "source": "estimate"
505
569
  }
506
570
  },
507
571
  "x-displayname": "BIG-IP APM as a Service.",
@@ -729,6 +793,13 @@
729
793
  "latency": "moderate",
730
794
  "resource_usage": "moderate"
731
795
  }
796
+ },
797
+ "x-f5xc-discovered-response-time": {
798
+ "p50_ms": 200,
799
+ "p95_ms": 800,
800
+ "p99_ms": 2000,
801
+ "sample_count": 0,
802
+ "source": "estimate"
732
803
  }
733
804
  },
734
805
  "x-displayname": "BIG-IP APM as a Service.",
@@ -950,6 +1021,13 @@
950
1021
  "latency": "low",
951
1022
  "resource_usage": "low"
952
1023
  }
1024
+ },
1025
+ "x-f5xc-discovered-response-time": {
1026
+ "p50_ms": 200,
1027
+ "p95_ms": 800,
1028
+ "p99_ms": 2000,
1029
+ "sample_count": 0,
1030
+ "source": "estimate"
953
1031
  }
954
1032
  },
955
1033
  "delete": {
@@ -1169,6 +1247,13 @@
1169
1247
  "latency": "high",
1170
1248
  "resource_usage": "moderate"
1171
1249
  }
1250
+ },
1251
+ "x-f5xc-discovered-response-time": {
1252
+ "p50_ms": 500,
1253
+ "p95_ms": 1500,
1254
+ "p99_ms": 4000,
1255
+ "sample_count": 0,
1256
+ "source": "estimate"
1172
1257
  }
1173
1258
  },
1174
1259
  "x-displayname": "BIG-IP APM as a Service.",
@@ -1383,6 +1468,13 @@
1383
1468
  "latency": "low",
1384
1469
  "resource_usage": "low"
1385
1470
  }
1471
+ },
1472
+ "x-f5xc-discovered-response-time": {
1473
+ "p50_ms": 1000,
1474
+ "p95_ms": 3000,
1475
+ "p99_ms": 8000,
1476
+ "sample_count": 0,
1477
+ "source": "estimate"
1386
1478
  }
1387
1479
  },
1388
1480
  "x-displayname": "BIG-IP APM as a Service.",
@@ -1598,6 +1690,13 @@
1598
1690
  "latency": "low",
1599
1691
  "resource_usage": "low"
1600
1692
  }
1693
+ },
1694
+ "x-f5xc-discovered-response-time": {
1695
+ "p50_ms": 1000,
1696
+ "p95_ms": 3000,
1697
+ "p99_ms": 8000,
1698
+ "sample_count": 0,
1699
+ "source": "estimate"
1601
1700
  }
1602
1701
  },
1603
1702
  "x-displayname": "BIG-IP iRule as a Service.",
@@ -1821,6 +1920,13 @@
1821
1920
  "latency": "low",
1822
1921
  "resource_usage": "low"
1823
1922
  }
1923
+ },
1924
+ "x-f5xc-discovered-response-time": {
1925
+ "p50_ms": 800,
1926
+ "p95_ms": 2500,
1927
+ "p99_ms": 6000,
1928
+ "sample_count": 0,
1929
+ "source": "estimate"
1824
1930
  }
1825
1931
  },
1826
1932
  "x-displayname": "BIG-IP iRule as a Service.",
@@ -2049,6 +2155,13 @@
2049
2155
  "latency": "moderate",
2050
2156
  "resource_usage": "moderate"
2051
2157
  }
2158
+ },
2159
+ "x-f5xc-discovered-response-time": {
2160
+ "p50_ms": 200,
2161
+ "p95_ms": 800,
2162
+ "p99_ms": 2000,
2163
+ "sample_count": 0,
2164
+ "source": "estimate"
2052
2165
  }
2053
2166
  },
2054
2167
  "x-displayname": "BIG-IP iRule as a Service.",
@@ -2271,6 +2384,13 @@
2271
2384
  "latency": "low",
2272
2385
  "resource_usage": "low"
2273
2386
  }
2387
+ },
2388
+ "x-f5xc-discovered-response-time": {
2389
+ "p50_ms": 200,
2390
+ "p95_ms": 800,
2391
+ "p99_ms": 2000,
2392
+ "sample_count": 0,
2393
+ "source": "estimate"
2274
2394
  }
2275
2395
  },
2276
2396
  "delete": {
@@ -2491,6 +2611,13 @@
2491
2611
  "latency": "high",
2492
2612
  "resource_usage": "moderate"
2493
2613
  }
2614
+ },
2615
+ "x-f5xc-discovered-response-time": {
2616
+ "p50_ms": 500,
2617
+ "p95_ms": 1500,
2618
+ "p99_ms": 4000,
2619
+ "sample_count": 0,
2620
+ "source": "estimate"
2494
2621
  }
2495
2622
  },
2496
2623
  "x-displayname": "BIG-IP iRule as a Service.",
@@ -2713,6 +2840,13 @@
2713
2840
  "latency": "low",
2714
2841
  "resource_usage": "low"
2715
2842
  }
2843
+ },
2844
+ "x-f5xc-discovered-response-time": {
2845
+ "p50_ms": 800,
2846
+ "p95_ms": 2500,
2847
+ "p99_ms": 6000,
2848
+ "sample_count": 0,
2849
+ "source": "estimate"
2716
2850
  }
2717
2851
  },
2718
2852
  "x-displayname": "BIG-IP virtual server.",
@@ -2942,7 +3076,15 @@
2942
3076
  }
2943
3077
  },
2944
3078
  "x-discovered-response-time-ms": 152.67,
2945
- "x-discovered-sample-size": 1
3079
+ "x-discovered-sample-size": 1,
3080
+ "x-f5xc-discovered-response-time": {
3081
+ "p50_ms": 152.67,
3082
+ "p95_ms": 305.34,
3083
+ "p99_ms": 458.01,
3084
+ "sample_count": 1,
3085
+ "source": "discovery",
3086
+ "last_measured": "2025-12-20T19:39:20.211392+00:00"
3087
+ }
2946
3088
  },
2947
3089
  "x-displayname": "BIG-IP virtual server.",
2948
3090
  "x-ves-proto-service": "ves.io.schema.views.bigip_virtual_server.API",
@@ -3156,6 +3298,13 @@
3156
3298
  "latency": "low",
3157
3299
  "resource_usage": "low"
3158
3300
  }
3301
+ },
3302
+ "x-f5xc-discovered-response-time": {
3303
+ "p50_ms": 1000,
3304
+ "p95_ms": 3000,
3305
+ "p99_ms": 8000,
3306
+ "sample_count": 0,
3307
+ "source": "estimate"
3159
3308
  }
3160
3309
  },
3161
3310
  "x-displayname": "BIG-IP virtual server.",
@@ -3376,6 +3525,13 @@
3376
3525
  "latency": "low",
3377
3526
  "resource_usage": "low"
3378
3527
  }
3528
+ },
3529
+ "x-f5xc-discovered-response-time": {
3530
+ "p50_ms": 200,
3531
+ "p95_ms": 800,
3532
+ "p99_ms": 2000,
3533
+ "sample_count": 0,
3534
+ "source": "estimate"
3379
3535
  }
3380
3536
  },
3381
3537
  "x-displayname": "BIG-IP virtual server.",
@@ -3591,6 +3747,13 @@
3591
3747
  "latency": "low",
3592
3748
  "resource_usage": "low"
3593
3749
  }
3750
+ },
3751
+ "x-f5xc-discovered-response-time": {
3752
+ "p50_ms": 1000,
3753
+ "p95_ms": 3000,
3754
+ "p99_ms": 8000,
3755
+ "sample_count": 0,
3756
+ "source": "estimate"
3594
3757
  }
3595
3758
  },
3596
3759
  "x-displayname": "Configure iRule.",
@@ -3814,6 +3977,13 @@
3814
3977
  "latency": "low",
3815
3978
  "resource_usage": "low"
3816
3979
  }
3980
+ },
3981
+ "x-f5xc-discovered-response-time": {
3982
+ "p50_ms": 800,
3983
+ "p95_ms": 2500,
3984
+ "p99_ms": 6000,
3985
+ "sample_count": 0,
3986
+ "source": "estimate"
3817
3987
  }
3818
3988
  },
3819
3989
  "x-displayname": "Configure iRule.",
@@ -4044,7 +4214,15 @@
4044
4214
  }
4045
4215
  },
4046
4216
  "x-discovered-response-time-ms": 157.12,
4047
- "x-discovered-sample-size": 1
4217
+ "x-discovered-sample-size": 1,
4218
+ "x-f5xc-discovered-response-time": {
4219
+ "p50_ms": 157.12,
4220
+ "p95_ms": 314.24,
4221
+ "p99_ms": 471.36,
4222
+ "sample_count": 1,
4223
+ "source": "discovery",
4224
+ "last_measured": "2025-12-20T19:39:20.211392+00:00"
4225
+ }
4048
4226
  },
4049
4227
  "x-displayname": "Configure iRule.",
4050
4228
  "x-ves-proto-service": "ves.io.schema.bigcne.irule.API",
@@ -4265,6 +4443,13 @@
4265
4443
  "latency": "low",
4266
4444
  "resource_usage": "low"
4267
4445
  }
4446
+ },
4447
+ "x-f5xc-discovered-response-time": {
4448
+ "p50_ms": 200,
4449
+ "p95_ms": 800,
4450
+ "p99_ms": 2000,
4451
+ "sample_count": 0,
4452
+ "source": "estimate"
4268
4453
  }
4269
4454
  },
4270
4455
  "delete": {
@@ -4485,6 +4670,13 @@
4485
4670
  "latency": "high",
4486
4671
  "resource_usage": "moderate"
4487
4672
  }
4673
+ },
4674
+ "x-f5xc-discovered-response-time": {
4675
+ "p50_ms": 500,
4676
+ "p95_ms": 1500,
4677
+ "p99_ms": 4000,
4678
+ "sample_count": 0,
4679
+ "source": "estimate"
4488
4680
  }
4489
4681
  },
4490
4682
  "x-displayname": "Configure iRule.",
@@ -4699,6 +4891,13 @@
4699
4891
  "latency": "low",
4700
4892
  "resource_usage": "low"
4701
4893
  }
4894
+ },
4895
+ "x-f5xc-discovered-response-time": {
4896
+ "p50_ms": 1000,
4897
+ "p95_ms": 3000,
4898
+ "p99_ms": 8000,
4899
+ "sample_count": 0,
4900
+ "source": "estimate"
4702
4901
  }
4703
4902
  },
4704
4903
  "x-displayname": "Data Group.",
@@ -4921,6 +5120,13 @@
4921
5120
  "latency": "low",
4922
5121
  "resource_usage": "low"
4923
5122
  }
5123
+ },
5124
+ "x-f5xc-discovered-response-time": {
5125
+ "p50_ms": 800,
5126
+ "p95_ms": 2500,
5127
+ "p99_ms": 6000,
5128
+ "sample_count": 0,
5129
+ "source": "estimate"
4924
5130
  }
4925
5131
  },
4926
5132
  "x-displayname": "Data Group.",
@@ -5150,7 +5356,15 @@
5150
5356
  }
5151
5357
  },
5152
5358
  "x-discovered-response-time-ms": 154.24,
5153
- "x-discovered-sample-size": 1
5359
+ "x-discovered-sample-size": 1,
5360
+ "x-f5xc-discovered-response-time": {
5361
+ "p50_ms": 154.24,
5362
+ "p95_ms": 308.48,
5363
+ "p99_ms": 462.72,
5364
+ "sample_count": 1,
5365
+ "source": "discovery",
5366
+ "last_measured": "2025-12-20T19:39:20.211392+00:00"
5367
+ }
5154
5368
  },
5155
5369
  "x-displayname": "Data Group.",
5156
5370
  "x-ves-proto-service": "ves.io.schema.bigcne.data_group.API",
@@ -5370,6 +5584,13 @@
5370
5584
  "latency": "low",
5371
5585
  "resource_usage": "low"
5372
5586
  }
5587
+ },
5588
+ "x-f5xc-discovered-response-time": {
5589
+ "p50_ms": 200,
5590
+ "p95_ms": 800,
5591
+ "p99_ms": 2000,
5592
+ "sample_count": 0,
5593
+ "source": "estimate"
5373
5594
  }
5374
5595
  },
5375
5596
  "delete": {
@@ -5589,6 +5810,13 @@
5589
5810
  "latency": "high",
5590
5811
  "resource_usage": "moderate"
5591
5812
  }
5813
+ },
5814
+ "x-f5xc-discovered-response-time": {
5815
+ "p50_ms": 500,
5816
+ "p95_ms": 1500,
5817
+ "p99_ms": 4000,
5818
+ "sample_count": 0,
5819
+ "source": "estimate"
5592
5820
  }
5593
5821
  },
5594
5822
  "x-displayname": "Data Group.",
@@ -5964,7 +6192,7 @@
5964
6192
  },
5965
6193
  "x-original-maxLength": 1024,
5966
6194
  "x-reconciled-from-discovery": true,
5967
- "x-reconciled-at": "2026-01-05T14:37:45.376360+00:00"
6195
+ "x-reconciled-at": "2026-01-05T18:28:47.429199+00:00"
5968
6196
  },
5969
6197
  "namespace": {
5970
6198
  "type": "string",
@@ -5983,7 +6211,7 @@
5983
6211
  },
5984
6212
  "x-original-maxLength": 1024,
5985
6213
  "x-reconciled-from-discovery": true,
5986
- "x-reconciled-at": "2026-01-05T14:37:45.376366+00:00"
6214
+ "x-reconciled-at": "2026-01-05T18:28:47.429207+00:00"
5987
6215
  }
5988
6216
  },
5989
6217
  "x-f5xc-minimum-configuration": {
@@ -6120,7 +6348,7 @@
6120
6348
  "maxLength": 17,
6121
6349
  "minLength": 17,
6122
6350
  "x-reconciled-from-discovery": true,
6123
- "x-reconciled-at": "2026-01-05T14:37:45.376386+00:00"
6351
+ "x-reconciled-at": "2026-01-05T18:28:47.429225+00:00"
6124
6352
  },
6125
6353
  "system_metadata": {
6126
6354
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -6255,7 +6483,7 @@
6255
6483
  },
6256
6484
  "x-original-maxLength": 1024,
6257
6485
  "x-reconciled-from-discovery": true,
6258
- "x-reconciled-at": "2026-01-05T14:37:45.376399+00:00"
6486
+ "x-reconciled-at": "2026-01-05T18:28:47.429238+00:00"
6259
6487
  },
6260
6488
  "disabled": {
6261
6489
  "type": "boolean",
@@ -6305,7 +6533,7 @@
6305
6533
  },
6306
6534
  "x-original-maxLength": 1024,
6307
6535
  "x-reconciled-from-discovery": true,
6308
- "x-reconciled-at": "2026-01-05T14:37:45.376410+00:00"
6536
+ "x-reconciled-at": "2026-01-05T18:28:47.429249+00:00"
6309
6537
  },
6310
6538
  "namespace": {
6311
6539
  "type": "string",
@@ -6324,7 +6552,7 @@
6324
6552
  },
6325
6553
  "x-original-maxLength": 1024,
6326
6554
  "x-reconciled-from-discovery": true,
6327
- "x-reconciled-at": "2026-01-05T14:37:45.376414+00:00"
6555
+ "x-reconciled-at": "2026-01-05T18:28:47.429253+00:00"
6328
6556
  },
6329
6557
  "owner_view": {
6330
6558
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -6365,7 +6593,7 @@
6365
6593
  "x-field-mutability": "read-only",
6366
6594
  "x-original-maxLength": 1024,
6367
6595
  "x-reconciled-from-discovery": true,
6368
- "x-reconciled-at": "2026-01-05T14:37:45.376423+00:00"
6596
+ "x-reconciled-at": "2026-01-05T18:28:47.429261+00:00"
6369
6597
  },
6370
6598
  "uid": {
6371
6599
  "type": "string",
@@ -6386,7 +6614,7 @@
6386
6614
  "x-original-maxLength": 1024,
6387
6615
  "format": "uuid",
6388
6616
  "x-reconciled-from-discovery": true,
6389
- "x-reconciled-at": "2026-01-05T14:37:45.376429+00:00"
6617
+ "x-reconciled-at": "2026-01-05T18:28:47.429267+00:00"
6390
6618
  }
6391
6619
  },
6392
6620
  "x-f5xc-minimum-configuration": {
@@ -6585,7 +6813,7 @@
6585
6813
  },
6586
6814
  "x-original-maxLength": 1024,
6587
6815
  "x-reconciled-from-discovery": true,
6588
- "x-reconciled-at": "2026-01-05T14:37:45.376446+00:00"
6816
+ "x-reconciled-at": "2026-01-05T18:28:47.429283+00:00"
6589
6817
  },
6590
6818
  "start_time": {
6591
6819
  "type": "string",
@@ -7077,7 +7305,7 @@
7077
7305
  "maxLength": 16,
7078
7306
  "minLength": 7,
7079
7307
  "x-reconciled-from-discovery": true,
7080
- "x-reconciled-at": "2026-01-05T14:37:45.376510+00:00"
7308
+ "x-reconciled-at": "2026-01-05T18:28:47.429337+00:00"
7081
7309
  },
7082
7310
  "value": {
7083
7311
  "type": "array",
@@ -7096,7 +7324,7 @@
7096
7324
  "maxLength": 15,
7097
7325
  "minLength": 3,
7098
7326
  "x-reconciled-from-discovery": true,
7099
- "x-reconciled-at": "2026-01-05T14:37:45.376516+00:00"
7327
+ "x-reconciled-at": "2026-01-05T18:28:47.429343+00:00"
7100
7328
  }
7101
7329
  },
7102
7330
  "x-f5xc-minimum-configuration": {
@@ -7186,7 +7414,7 @@
7186
7414
  "readOnly": true,
7187
7415
  "x-original-maxLength": 1024,
7188
7416
  "x-reconciled-from-discovery": true,
7189
- "x-reconciled-at": "2026-01-05T14:37:45.376527+00:00"
7417
+ "x-reconciled-at": "2026-01-05T18:28:47.429353+00:00"
7190
7418
  },
7191
7419
  "name": {
7192
7420
  "type": "string",
@@ -7205,7 +7433,7 @@
7205
7433
  },
7206
7434
  "x-original-maxLength": 1024,
7207
7435
  "x-reconciled-from-discovery": true,
7208
- "x-reconciled-at": "2026-01-05T14:37:45.376531+00:00"
7436
+ "x-reconciled-at": "2026-01-05T18:28:47.429357+00:00"
7209
7437
  },
7210
7438
  "namespace": {
7211
7439
  "type": "string",
@@ -7224,7 +7452,7 @@
7224
7452
  },
7225
7453
  "x-original-maxLength": 1024,
7226
7454
  "x-reconciled-from-discovery": true,
7227
- "x-reconciled-at": "2026-01-05T14:37:45.376535+00:00"
7455
+ "x-reconciled-at": "2026-01-05T18:28:47.429361+00:00"
7228
7456
  },
7229
7457
  "tenant": {
7230
7458
  "type": "string",
@@ -7245,7 +7473,7 @@
7245
7473
  "x-field-mutability": "read-only",
7246
7474
  "x-original-maxLength": 1024,
7247
7475
  "x-reconciled-from-discovery": true,
7248
- "x-reconciled-at": "2026-01-05T14:37:45.376540+00:00"
7476
+ "x-reconciled-at": "2026-01-05T18:28:47.429365+00:00"
7249
7477
  },
7250
7478
  "uid": {
7251
7479
  "type": "string",
@@ -7267,7 +7495,7 @@
7267
7495
  "x-original-maxLength": 1024,
7268
7496
  "format": "uuid",
7269
7497
  "x-reconciled-from-discovery": true,
7270
- "x-reconciled-at": "2026-01-05T14:37:45.376545+00:00"
7498
+ "x-reconciled-at": "2026-01-05T18:28:47.429370+00:00"
7271
7499
  }
7272
7500
  },
7273
7501
  "x-f5xc-minimum-configuration": {
@@ -8008,7 +8236,7 @@
8008
8236
  },
8009
8237
  "x-original-maxLength": 1024,
8010
8238
  "x-reconciled-from-discovery": true,
8011
- "x-reconciled-at": "2026-01-05T14:37:45.376607+00:00"
8239
+ "x-reconciled-at": "2026-01-05T18:28:47.429428+00:00"
8012
8240
  }
8013
8241
  },
8014
8242
  "x-f5xc-minimum-configuration": {
@@ -8074,7 +8302,7 @@
8074
8302
  },
8075
8303
  "x-original-maxLength": 1024,
8076
8304
  "x-reconciled-from-discovery": true,
8077
- "x-reconciled-at": "2026-01-05T14:37:45.376614+00:00"
8305
+ "x-reconciled-at": "2026-01-05T18:28:47.429435+00:00"
8078
8306
  },
8079
8307
  "store_provider": {
8080
8308
  "type": "string",
@@ -8132,7 +8360,7 @@
8132
8360
  },
8133
8361
  "x-original-maxLength": 1024,
8134
8362
  "x-reconciled-from-discovery": true,
8135
- "x-reconciled-at": "2026-01-05T14:37:45.376620+00:00"
8363
+ "x-reconciled-at": "2026-01-05T18:28:47.429442+00:00"
8136
8364
  },
8137
8365
  "url": {
8138
8366
  "type": "string",
@@ -8229,7 +8457,7 @@
8229
8457
  },
8230
8458
  "x-original-maxLength": 1024,
8231
8459
  "x-reconciled-from-discovery": true,
8232
- "x-reconciled-at": "2026-01-05T14:37:45.376630+00:00"
8460
+ "x-reconciled-at": "2026-01-05T18:28:47.429451+00:00"
8233
8461
  },
8234
8462
  "service_name": {
8235
8463
  "type": "string",
@@ -8268,7 +8496,7 @@
8268
8496
  },
8269
8497
  "x-original-maxLength": 1024,
8270
8498
  "x-reconciled-from-discovery": true,
8271
- "x-reconciled-at": "2026-01-05T14:37:45.376636+00:00"
8499
+ "x-reconciled-at": "2026-01-05T18:28:47.429457+00:00"
8272
8500
  },
8273
8501
  "type": {
8274
8502
  "type": "string",
@@ -8477,7 +8705,7 @@
8477
8705
  },
8478
8706
  "x-original-maxLength": 1024,
8479
8707
  "x-reconciled-from-discovery": true,
8480
- "x-reconciled-at": "2026-01-05T14:37:45.376650+00:00"
8708
+ "x-reconciled-at": "2026-01-05T18:28:47.429470+00:00"
8481
8709
  }
8482
8710
  },
8483
8711
  "x-f5xc-minimum-configuration": {
@@ -8573,7 +8801,7 @@
8573
8801
  },
8574
8802
  "x-original-maxLength": 1024,
8575
8803
  "x-reconciled-from-discovery": true,
8576
- "x-reconciled-at": "2026-01-05T14:37:45.376661+00:00"
8804
+ "x-reconciled-at": "2026-01-05T18:28:47.429481+00:00"
8577
8805
  }
8578
8806
  },
8579
8807
  "x-f5xc-minimum-configuration": {
@@ -8645,7 +8873,7 @@
8645
8873
  },
8646
8874
  "x-original-maxLength": 1200,
8647
8875
  "x-reconciled-from-discovery": true,
8648
- "x-reconciled-at": "2026-01-05T14:37:45.376668+00:00"
8876
+ "x-reconciled-at": "2026-01-05T18:28:47.429488+00:00"
8649
8877
  },
8650
8878
  "disable": {
8651
8879
  "type": "boolean",
@@ -8698,7 +8926,7 @@
8698
8926
  },
8699
8927
  "x-original-maxLength": 1024,
8700
8928
  "x-reconciled-from-discovery": true,
8701
- "x-reconciled-at": "2026-01-05T14:37:45.376675+00:00"
8929
+ "x-reconciled-at": "2026-01-05T18:28:47.429495+00:00"
8702
8930
  },
8703
8931
  "namespace": {
8704
8932
  "type": "string",
@@ -8717,7 +8945,7 @@
8717
8945
  },
8718
8946
  "x-original-maxLength": 1024,
8719
8947
  "x-reconciled-from-discovery": true,
8720
- "x-reconciled-at": "2026-01-05T14:37:45.376679+00:00"
8948
+ "x-reconciled-at": "2026-01-05T18:28:47.429499+00:00"
8721
8949
  }
8722
8950
  },
8723
8951
  "x-f5xc-minimum-configuration": {
@@ -8793,7 +9021,7 @@
8793
9021
  },
8794
9022
  "x-original-maxLength": 1200,
8795
9023
  "x-reconciled-from-discovery": true,
8796
- "x-reconciled-at": "2026-01-05T14:37:45.376686+00:00"
9024
+ "x-reconciled-at": "2026-01-05T18:28:47.429505+00:00"
8797
9025
  },
8798
9026
  "disable": {
8799
9027
  "type": "boolean",
@@ -8848,7 +9076,7 @@
8848
9076
  },
8849
9077
  "x-original-maxLength": 1024,
8850
9078
  "x-reconciled-from-discovery": true,
8851
- "x-reconciled-at": "2026-01-05T14:37:45.376693+00:00"
9079
+ "x-reconciled-at": "2026-01-05T18:28:47.429512+00:00"
8852
9080
  },
8853
9081
  "namespace": {
8854
9082
  "type": "string",
@@ -8867,7 +9095,7 @@
8867
9095
  },
8868
9096
  "x-original-maxLength": 1024,
8869
9097
  "x-reconciled-from-discovery": true,
8870
- "x-reconciled-at": "2026-01-05T14:37:45.376697+00:00"
9098
+ "x-reconciled-at": "2026-01-05T18:28:47.429517+00:00"
8871
9099
  }
8872
9100
  },
8873
9101
  "x-f5xc-minimum-configuration": {
@@ -8943,7 +9171,7 @@
8943
9171
  },
8944
9172
  "x-original-maxLength": 1200,
8945
9173
  "x-reconciled-from-discovery": true,
8946
- "x-reconciled-at": "2026-01-05T14:37:45.376704+00:00"
9174
+ "x-reconciled-at": "2026-01-05T18:28:47.429523+00:00"
8947
9175
  },
8948
9176
  "disable": {
8949
9177
  "type": "boolean",
@@ -8996,7 +9224,7 @@
8996
9224
  },
8997
9225
  "x-original-maxLength": 1024,
8998
9226
  "x-reconciled-from-discovery": true,
8999
- "x-reconciled-at": "2026-01-05T14:37:45.376711+00:00"
9227
+ "x-reconciled-at": "2026-01-05T18:28:47.429530+00:00"
9000
9228
  },
9001
9229
  "namespace": {
9002
9230
  "type": "string",
@@ -9015,7 +9243,7 @@
9015
9243
  },
9016
9244
  "x-original-maxLength": 1024,
9017
9245
  "x-reconciled-from-discovery": true,
9018
- "x-reconciled-at": "2026-01-05T14:37:45.376715+00:00"
9246
+ "x-reconciled-at": "2026-01-05T18:28:47.429534+00:00"
9019
9247
  }
9020
9248
  },
9021
9249
  "x-f5xc-minimum-configuration": {
@@ -9225,7 +9453,7 @@
9225
9453
  "x-original-maxLength": 1024,
9226
9454
  "format": "uuid",
9227
9455
  "x-reconciled-from-discovery": true,
9228
- "x-reconciled-at": "2026-01-05T14:37:45.376734+00:00"
9456
+ "x-reconciled-at": "2026-01-05T18:28:47.429551+00:00"
9229
9457
  },
9230
9458
  "vtrp_id": {
9231
9459
  "type": "string",
@@ -9337,7 +9565,7 @@
9337
9565
  },
9338
9566
  "x-original-maxLength": 1024,
9339
9567
  "x-reconciled-from-discovery": true,
9340
- "x-reconciled-at": "2026-01-05T14:37:45.376744+00:00"
9568
+ "x-reconciled-at": "2026-01-05T18:28:47.429561+00:00"
9341
9569
  },
9342
9570
  "status": {
9343
9571
  "type": "string",
@@ -9356,7 +9584,7 @@
9356
9584
  },
9357
9585
  "x-original-maxLength": 1024,
9358
9586
  "x-reconciled-from-discovery": true,
9359
- "x-reconciled-at": "2026-01-05T14:37:45.376748+00:00"
9587
+ "x-reconciled-at": "2026-01-05T18:28:47.429565+00:00"
9360
9588
  }
9361
9589
  },
9362
9590
  "x-f5xc-minimum-configuration": {
@@ -9534,7 +9762,7 @@
9534
9762
  "x-field-mutability": "read-only",
9535
9763
  "x-original-maxLength": 1024,
9536
9764
  "x-reconciled-from-discovery": true,
9537
- "x-reconciled-at": "2026-01-05T14:37:45.376780+00:00"
9765
+ "x-reconciled-at": "2026-01-05T18:28:47.429583+00:00"
9538
9766
  },
9539
9767
  "uid": {
9540
9768
  "type": "string",
@@ -9555,7 +9783,7 @@
9555
9783
  "x-original-maxLength": 1024,
9556
9784
  "format": "uuid",
9557
9785
  "x-reconciled-from-discovery": true,
9558
- "x-reconciled-at": "2026-01-05T14:37:45.376786+00:00"
9786
+ "x-reconciled-at": "2026-01-05T18:28:47.429588+00:00"
9559
9787
  }
9560
9788
  },
9561
9789
  "x-f5xc-minimum-configuration": {
@@ -9638,7 +9866,7 @@
9638
9866
  },
9639
9867
  "x-original-maxLength": 1024,
9640
9868
  "x-reconciled-from-discovery": true,
9641
- "x-reconciled-at": "2026-01-05T14:37:45.376795+00:00"
9869
+ "x-reconciled-at": "2026-01-05T18:28:47.429596+00:00"
9642
9870
  },
9643
9871
  "disable_ocsp_stapling": {
9644
9872
  "$ref": "#/components/schemas/ioschemaEmpty"
@@ -9737,7 +9965,7 @@
9737
9965
  },
9738
9966
  "x-original-maxLength": 1024,
9739
9967
  "x-reconciled-from-discovery": true,
9740
- "x-reconciled-at": "2026-01-05T14:37:45.376804+00:00"
9968
+ "x-reconciled-at": "2026-01-05T18:28:47.429604+00:00"
9741
9969
  },
9742
9970
  "previous_value": {
9743
9971
  "type": "string",
@@ -9775,7 +10003,7 @@
9775
10003
  },
9776
10004
  "x-original-maxLength": 1024,
9777
10005
  "x-reconciled-from-discovery": true,
9778
- "x-reconciled-at": "2026-01-05T14:37:45.376812+00:00"
10006
+ "x-reconciled-at": "2026-01-05T18:28:47.429612+00:00"
9779
10007
  }
9780
10008
  },
9781
10009
  "x-f5xc-minimum-configuration": {
@@ -9859,7 +10087,7 @@
9859
10087
  },
9860
10088
  "x-original-maxLength": 1024,
9861
10089
  "x-reconciled-from-discovery": true,
9862
- "x-reconciled-at": "2026-01-05T14:37:45.376817+00:00"
10090
+ "x-reconciled-at": "2026-01-05T18:28:47.429618+00:00"
9863
10091
  },
9864
10092
  "location": {
9865
10093
  "type": "string",
@@ -9876,7 +10104,7 @@
9876
10104
  },
9877
10105
  "x-original-maxLength": 1024,
9878
10106
  "x-reconciled-from-discovery": true,
9879
- "x-reconciled-at": "2026-01-05T14:37:45.376821+00:00"
10107
+ "x-reconciled-at": "2026-01-05T18:28:47.429622+00:00"
9880
10108
  },
9881
10109
  "provider": {
9882
10110
  "type": "string",
@@ -9893,7 +10121,7 @@
9893
10121
  },
9894
10122
  "x-original-maxLength": 1024,
9895
10123
  "x-reconciled-from-discovery": true,
9896
- "x-reconciled-at": "2026-01-05T14:37:45.376825+00:00"
10124
+ "x-reconciled-at": "2026-01-05T18:28:47.429627+00:00"
9897
10125
  },
9898
10126
  "secret_encoding": {
9899
10127
  "$ref": "#/components/schemas/schemaSecretEncodingType"
@@ -9915,7 +10143,7 @@
9915
10143
  "maxLength": 1,
9916
10144
  "minLength": 1,
9917
10145
  "x-reconciled-from-discovery": true,
9918
- "x-reconciled-at": "2026-01-05T14:37:45.376832+00:00"
10146
+ "x-reconciled-at": "2026-01-05T18:28:47.429633+00:00"
9919
10147
  }
9920
10148
  },
9921
10149
  "x-f5xc-minimum-configuration": {
@@ -9958,7 +10186,7 @@
9958
10186
  },
9959
10187
  "x-original-maxLength": 1024,
9960
10188
  "x-reconciled-from-discovery": true,
9961
- "x-reconciled-at": "2026-01-05T14:37:45.376837+00:00"
10189
+ "x-reconciled-at": "2026-01-05T18:28:47.429638+00:00"
9962
10190
  },
9963
10191
  "name": {
9964
10192
  "type": "string",
@@ -9977,7 +10205,7 @@
9977
10205
  },
9978
10206
  "x-original-maxLength": 1024,
9979
10207
  "x-reconciled-from-discovery": true,
9980
- "x-reconciled-at": "2026-01-05T14:37:45.376841+00:00"
10208
+ "x-reconciled-at": "2026-01-05T18:28:47.429643+00:00"
9981
10209
  },
9982
10210
  "namespace": {
9983
10211
  "type": "string",
@@ -9996,7 +10224,7 @@
9996
10224
  },
9997
10225
  "x-original-maxLength": 1024,
9998
10226
  "x-reconciled-from-discovery": true,
9999
- "x-reconciled-at": "2026-01-05T14:37:45.376845+00:00"
10227
+ "x-reconciled-at": "2026-01-05T18:28:47.429647+00:00"
10000
10228
  },
10001
10229
  "uid": {
10002
10230
  "type": "string",
@@ -10017,7 +10245,7 @@
10017
10245
  "x-original-maxLength": 1024,
10018
10246
  "format": "uuid",
10019
10247
  "x-reconciled-from-discovery": true,
10020
- "x-reconciled-at": "2026-01-05T14:37:45.376851+00:00"
10248
+ "x-reconciled-at": "2026-01-05T18:28:47.429652+00:00"
10021
10249
  }
10022
10250
  },
10023
10251
  "x-f5xc-minimum-configuration": {
@@ -10055,7 +10283,7 @@
10055
10283
  },
10056
10284
  "x-original-maxLength": 1024,
10057
10285
  "x-reconciled-from-discovery": true,
10058
- "x-reconciled-at": "2026-01-05T14:37:45.376855+00:00"
10286
+ "x-reconciled-at": "2026-01-05T18:28:47.429657+00:00"
10059
10287
  }
10060
10288
  },
10061
10289
  "x-f5xc-minimum-configuration": {
@@ -10130,7 +10358,7 @@
10130
10358
  },
10131
10359
  "x-original-maxLength": 128,
10132
10360
  "x-reconciled-from-discovery": true,
10133
- "x-reconciled-at": "2026-01-05T14:37:45.376861+00:00"
10361
+ "x-reconciled-at": "2026-01-05T18:28:47.429662+00:00"
10134
10362
  },
10135
10363
  "namespace": {
10136
10364
  "type": "string",
@@ -10155,7 +10383,7 @@
10155
10383
  },
10156
10384
  "x-original-maxLength": 64,
10157
10385
  "x-reconciled-from-discovery": true,
10158
- "x-reconciled-at": "2026-01-05T14:37:45.376865+00:00"
10386
+ "x-reconciled-at": "2026-01-05T18:28:47.429666+00:00"
10159
10387
  },
10160
10388
  "tenant": {
10161
10389
  "type": "string",
@@ -10182,7 +10410,7 @@
10182
10410
  "x-field-mutability": "read-only",
10183
10411
  "x-original-maxLength": 64,
10184
10412
  "x-reconciled-from-discovery": true,
10185
- "x-reconciled-at": "2026-01-05T14:37:45.376870+00:00"
10413
+ "x-reconciled-at": "2026-01-05T18:28:47.429671+00:00"
10186
10414
  }
10187
10415
  },
10188
10416
  "x-f5xc-minimum-configuration": {
@@ -11011,7 +11239,7 @@
11011
11239
  },
11012
11240
  "x-original-maxLength": 1024,
11013
11241
  "x-reconciled-from-discovery": true,
11014
- "x-reconciled-at": "2026-01-05T14:37:45.740463+00:00"
11242
+ "x-reconciled-at": "2026-01-05T18:28:47.755804+00:00"
11015
11243
  },
11016
11244
  "namespace": {
11017
11245
  "type": "string",
@@ -11030,7 +11258,7 @@
11030
11258
  },
11031
11259
  "x-original-maxLength": 1024,
11032
11260
  "x-reconciled-from-discovery": true,
11033
- "x-reconciled-at": "2026-01-05T14:37:45.740469+00:00"
11261
+ "x-reconciled-at": "2026-01-05T18:28:47.755811+00:00"
11034
11262
  }
11035
11263
  },
11036
11264
  "x-f5xc-minimum-configuration": {
@@ -11128,7 +11356,7 @@
11128
11356
  "maxLength": 17,
11129
11357
  "minLength": 17,
11130
11358
  "x-reconciled-from-discovery": true,
11131
- "x-reconciled-at": "2026-01-05T14:37:45.740486+00:00"
11359
+ "x-reconciled-at": "2026-01-05T18:28:47.755826+00:00"
11132
11360
  },
11133
11361
  "system_metadata": {
11134
11362
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -11344,7 +11572,7 @@
11344
11572
  },
11345
11573
  "x-original-maxLength": 1024,
11346
11574
  "x-reconciled-from-discovery": true,
11347
- "x-reconciled-at": "2026-01-05T14:37:45.740503+00:00"
11575
+ "x-reconciled-at": "2026-01-05T18:28:47.755844+00:00"
11348
11576
  },
11349
11577
  "disabled": {
11350
11578
  "type": "boolean",
@@ -11394,7 +11622,7 @@
11394
11622
  },
11395
11623
  "x-original-maxLength": 1024,
11396
11624
  "x-reconciled-from-discovery": true,
11397
- "x-reconciled-at": "2026-01-05T14:37:45.740514+00:00"
11625
+ "x-reconciled-at": "2026-01-05T18:28:47.755856+00:00"
11398
11626
  },
11399
11627
  "namespace": {
11400
11628
  "type": "string",
@@ -11413,7 +11641,7 @@
11413
11641
  },
11414
11642
  "x-original-maxLength": 1024,
11415
11643
  "x-reconciled-from-discovery": true,
11416
- "x-reconciled-at": "2026-01-05T14:37:45.740519+00:00"
11644
+ "x-reconciled-at": "2026-01-05T18:28:47.755860+00:00"
11417
11645
  },
11418
11646
  "owner_view": {
11419
11647
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -11454,7 +11682,7 @@
11454
11682
  "x-field-mutability": "read-only",
11455
11683
  "x-original-maxLength": 1024,
11456
11684
  "x-reconciled-from-discovery": true,
11457
- "x-reconciled-at": "2026-01-05T14:37:45.740527+00:00"
11685
+ "x-reconciled-at": "2026-01-05T18:28:47.755868+00:00"
11458
11686
  },
11459
11687
  "uid": {
11460
11688
  "type": "string",
@@ -11475,7 +11703,7 @@
11475
11703
  "x-original-maxLength": 1024,
11476
11704
  "format": "uuid",
11477
11705
  "x-reconciled-from-discovery": true,
11478
- "x-reconciled-at": "2026-01-05T14:37:45.740533+00:00"
11706
+ "x-reconciled-at": "2026-01-05T18:28:47.755874+00:00"
11479
11707
  }
11480
11708
  },
11481
11709
  "x-f5xc-minimum-configuration": {
@@ -11703,7 +11931,7 @@
11703
11931
  "readOnly": true,
11704
11932
  "x-original-maxLength": 1024,
11705
11933
  "x-reconciled-from-discovery": true,
11706
- "x-reconciled-at": "2026-01-05T14:37:45.740626+00:00"
11934
+ "x-reconciled-at": "2026-01-05T18:28:47.755963+00:00"
11707
11935
  },
11708
11936
  "name": {
11709
11937
  "type": "string",
@@ -11722,7 +11950,7 @@
11722
11950
  },
11723
11951
  "x-original-maxLength": 1024,
11724
11952
  "x-reconciled-from-discovery": true,
11725
- "x-reconciled-at": "2026-01-05T14:37:45.740630+00:00"
11953
+ "x-reconciled-at": "2026-01-05T18:28:47.755967+00:00"
11726
11954
  },
11727
11955
  "namespace": {
11728
11956
  "type": "string",
@@ -11741,7 +11969,7 @@
11741
11969
  },
11742
11970
  "x-original-maxLength": 1024,
11743
11971
  "x-reconciled-from-discovery": true,
11744
- "x-reconciled-at": "2026-01-05T14:37:45.740634+00:00"
11972
+ "x-reconciled-at": "2026-01-05T18:28:47.755971+00:00"
11745
11973
  },
11746
11974
  "tenant": {
11747
11975
  "type": "string",
@@ -11762,7 +11990,7 @@
11762
11990
  "x-field-mutability": "read-only",
11763
11991
  "x-original-maxLength": 1024,
11764
11992
  "x-reconciled-from-discovery": true,
11765
- "x-reconciled-at": "2026-01-05T14:37:45.740639+00:00"
11993
+ "x-reconciled-at": "2026-01-05T18:28:47.755974+00:00"
11766
11994
  },
11767
11995
  "uid": {
11768
11996
  "type": "string",
@@ -11784,7 +12012,7 @@
11784
12012
  "x-original-maxLength": 1024,
11785
12013
  "format": "uuid",
11786
12014
  "x-reconciled-from-discovery": true,
11787
- "x-reconciled-at": "2026-01-05T14:37:45.740644+00:00"
12015
+ "x-reconciled-at": "2026-01-05T18:28:47.755979+00:00"
11788
12016
  }
11789
12017
  },
11790
12018
  "x-f5xc-minimum-configuration": {
@@ -11873,7 +12101,7 @@
11873
12101
  },
11874
12102
  "x-original-maxLength": 1024,
11875
12103
  "x-reconciled-from-discovery": true,
11876
- "x-reconciled-at": "2026-01-05T14:37:46.197133+00:00"
12104
+ "x-reconciled-at": "2026-01-05T18:28:48.172800+00:00"
11877
12105
  }
11878
12106
  },
11879
12107
  "x-f5xc-example": "[EMAIL, CC]",
@@ -12470,7 +12698,7 @@
12470
12698
  "maxLength": 17,
12471
12699
  "minLength": 17,
12472
12700
  "x-reconciled-from-discovery": true,
12473
- "x-reconciled-at": "2026-01-05T14:37:46.197195+00:00"
12701
+ "x-reconciled-at": "2026-01-05T18:28:48.172856+00:00"
12474
12702
  },
12475
12703
  "system_metadata": {
12476
12704
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -12556,7 +12784,7 @@
12556
12784
  },
12557
12785
  "x-original-maxLength": 1024,
12558
12786
  "x-reconciled-from-discovery": true,
12559
- "x-reconciled-at": "2026-01-05T14:37:46.197206+00:00"
12787
+ "x-reconciled-at": "2026-01-05T18:28:48.172866+00:00"
12560
12788
  }
12561
12789
  },
12562
12790
  "x-f5xc-minimum-configuration": {
@@ -12658,7 +12886,7 @@
12658
12886
  },
12659
12887
  "x-original-maxLength": 1024,
12660
12888
  "x-reconciled-from-discovery": true,
12661
- "x-reconciled-at": "2026-01-05T14:37:46.197217+00:00"
12889
+ "x-reconciled-at": "2026-01-05T18:28:48.172876+00:00"
12662
12890
  },
12663
12891
  "disabled": {
12664
12892
  "type": "boolean",
@@ -12708,7 +12936,7 @@
12708
12936
  },
12709
12937
  "x-original-maxLength": 1024,
12710
12938
  "x-reconciled-from-discovery": true,
12711
- "x-reconciled-at": "2026-01-05T14:37:46.197228+00:00"
12939
+ "x-reconciled-at": "2026-01-05T18:28:48.172887+00:00"
12712
12940
  },
12713
12941
  "namespace": {
12714
12942
  "type": "string",
@@ -12727,7 +12955,7 @@
12727
12955
  },
12728
12956
  "x-original-maxLength": 1024,
12729
12957
  "x-reconciled-from-discovery": true,
12730
- "x-reconciled-at": "2026-01-05T14:37:46.197232+00:00"
12958
+ "x-reconciled-at": "2026-01-05T18:28:48.172891+00:00"
12731
12959
  },
12732
12960
  "owner_view": {
12733
12961
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -12768,7 +12996,7 @@
12768
12996
  "x-field-mutability": "read-only",
12769
12997
  "x-original-maxLength": 1024,
12770
12998
  "x-reconciled-from-discovery": true,
12771
- "x-reconciled-at": "2026-01-05T14:37:46.197241+00:00"
12999
+ "x-reconciled-at": "2026-01-05T18:28:48.172899+00:00"
12772
13000
  },
12773
13001
  "uid": {
12774
13002
  "type": "string",
@@ -12789,7 +13017,7 @@
12789
13017
  "x-original-maxLength": 1024,
12790
13018
  "format": "uuid",
12791
13019
  "x-reconciled-from-discovery": true,
12792
- "x-reconciled-at": "2026-01-05T14:37:46.197247+00:00"
13020
+ "x-reconciled-at": "2026-01-05T18:28:48.172905+00:00"
12793
13021
  }
12794
13022
  },
12795
13023
  "x-f5xc-minimum-configuration": {
@@ -13504,7 +13732,7 @@
13504
13732
  "x-original-maxLength": 256,
13505
13733
  "format": "hostname",
13506
13734
  "x-reconciled-from-discovery": true,
13507
- "x-reconciled-at": "2026-01-05T14:37:46.197308+00:00"
13735
+ "x-reconciled-at": "2026-01-05T18:28:48.172962+00:00"
13508
13736
  },
13509
13737
  "simple_login": {
13510
13738
  "$ref": "#/components/schemas/common_wafSimpleLogin"
@@ -14235,7 +14463,7 @@
14235
14463
  },
14236
14464
  "x-original-maxLength": 256,
14237
14465
  "x-reconciled-from-discovery": true,
14238
- "x-reconciled-at": "2026-01-05T14:37:46.197451+00:00"
14466
+ "x-reconciled-at": "2026-01-05T18:28:48.173115+00:00"
14239
14467
  },
14240
14468
  "name": {
14241
14469
  "type": "string",
@@ -14265,7 +14493,7 @@
14265
14493
  },
14266
14494
  "x-original-maxLength": 1024,
14267
14495
  "x-reconciled-from-discovery": true,
14268
- "x-reconciled-at": "2026-01-05T14:37:46.197456+00:00"
14496
+ "x-reconciled-at": "2026-01-05T18:28:48.173119+00:00"
14269
14497
  }
14270
14498
  },
14271
14499
  "x-f5xc-minimum-configuration": {
@@ -14564,7 +14792,7 @@
14564
14792
  },
14565
14793
  "x-original-maxLength": 256,
14566
14794
  "x-reconciled-from-discovery": true,
14567
- "x-reconciled-at": "2026-01-05T14:38:09.028945+00:00"
14795
+ "x-reconciled-at": "2026-01-05T18:29:09.153538+00:00"
14568
14796
  },
14569
14797
  "irule": {
14570
14798
  "type": "string",
@@ -14641,7 +14869,7 @@
14641
14869
  },
14642
14870
  "x-original-maxLength": 1024,
14643
14871
  "x-reconciled-from-discovery": true,
14644
- "x-reconciled-at": "2026-01-05T14:38:09.028953+00:00"
14872
+ "x-reconciled-at": "2026-01-05T18:29:09.153546+00:00"
14645
14873
  },
14646
14874
  "namespace": {
14647
14875
  "type": "string",
@@ -14660,7 +14888,7 @@
14660
14888
  },
14661
14889
  "x-original-maxLength": 1024,
14662
14890
  "x-reconciled-from-discovery": true,
14663
- "x-reconciled-at": "2026-01-05T14:38:09.028958+00:00"
14891
+ "x-reconciled-at": "2026-01-05T18:29:09.153551+00:00"
14664
14892
  }
14665
14893
  },
14666
14894
  "x-f5xc-minimum-configuration": {
@@ -14817,7 +15045,7 @@
14817
15045
  },
14818
15046
  "x-original-maxLength": 256,
14819
15047
  "x-reconciled-from-discovery": true,
14820
- "x-reconciled-at": "2026-01-05T14:38:09.028975+00:00"
15048
+ "x-reconciled-at": "2026-01-05T18:29:09.153567+00:00"
14821
15049
  },
14822
15050
  "irule": {
14823
15051
  "type": "string",
@@ -14942,7 +15170,7 @@
14942
15170
  },
14943
15171
  "x-original-maxLength": 1024,
14944
15172
  "x-reconciled-from-discovery": true,
14945
- "x-reconciled-at": "2026-01-05T14:38:09.028988+00:00"
15173
+ "x-reconciled-at": "2026-01-05T18:29:09.153579+00:00"
14946
15174
  },
14947
15175
  "disabled": {
14948
15176
  "type": "boolean",
@@ -14992,7 +15220,7 @@
14992
15220
  },
14993
15221
  "x-original-maxLength": 1024,
14994
15222
  "x-reconciled-from-discovery": true,
14995
- "x-reconciled-at": "2026-01-05T14:38:09.028998+00:00"
15223
+ "x-reconciled-at": "2026-01-05T18:29:09.153589+00:00"
14996
15224
  },
14997
15225
  "namespace": {
14998
15226
  "type": "string",
@@ -15011,7 +15239,7 @@
15011
15239
  },
15012
15240
  "x-original-maxLength": 1024,
15013
15241
  "x-reconciled-from-discovery": true,
15014
- "x-reconciled-at": "2026-01-05T14:38:09.029003+00:00"
15242
+ "x-reconciled-at": "2026-01-05T18:29:09.153593+00:00"
15015
15243
  },
15016
15244
  "owner_view": {
15017
15245
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -15037,7 +15265,7 @@
15037
15265
  "x-field-mutability": "read-only",
15038
15266
  "x-original-maxLength": 1024,
15039
15267
  "x-reconciled-from-discovery": true,
15040
- "x-reconciled-at": "2026-01-05T14:38:09.029010+00:00"
15268
+ "x-reconciled-at": "2026-01-05T18:29:09.153599+00:00"
15041
15269
  },
15042
15270
  "uid": {
15043
15271
  "type": "string",
@@ -15058,7 +15286,7 @@
15058
15286
  "x-original-maxLength": 1024,
15059
15287
  "format": "uuid",
15060
15288
  "x-reconciled-from-discovery": true,
15061
- "x-reconciled-at": "2026-01-05T14:38:09.029015+00:00"
15289
+ "x-reconciled-at": "2026-01-05T18:29:09.153604+00:00"
15062
15290
  }
15063
15291
  },
15064
15292
  "x-f5xc-minimum-configuration": {
@@ -15154,7 +15382,7 @@
15154
15382
  },
15155
15383
  "x-original-maxLength": 256,
15156
15384
  "x-reconciled-from-discovery": true,
15157
- "x-reconciled-at": "2026-01-05T14:38:09.029024+00:00"
15385
+ "x-reconciled-at": "2026-01-05T18:29:09.153612+00:00"
15158
15386
  },
15159
15387
  "irule": {
15160
15388
  "type": "string",
@@ -15424,7 +15652,7 @@
15424
15652
  },
15425
15653
  "x-original-maxLength": 1024,
15426
15654
  "x-reconciled-from-discovery": true,
15427
- "x-reconciled-at": "2026-01-05T14:38:14.905537+00:00"
15655
+ "x-reconciled-at": "2026-01-05T18:29:14.474805+00:00"
15428
15656
  },
15429
15657
  "namespace": {
15430
15658
  "type": "string",
@@ -15443,7 +15671,7 @@
15443
15671
  },
15444
15672
  "x-original-maxLength": 1024,
15445
15673
  "x-reconciled-from-discovery": true,
15446
- "x-reconciled-at": "2026-01-05T14:38:14.905543+00:00"
15674
+ "x-reconciled-at": "2026-01-05T18:29:14.474812+00:00"
15447
15675
  }
15448
15676
  },
15449
15677
  "x-f5xc-minimum-configuration": {
@@ -15695,7 +15923,7 @@
15695
15923
  },
15696
15924
  "x-original-maxLength": 1024,
15697
15925
  "x-reconciled-from-discovery": true,
15698
- "x-reconciled-at": "2026-01-05T14:38:14.905568+00:00"
15926
+ "x-reconciled-at": "2026-01-05T18:29:14.475170+00:00"
15699
15927
  },
15700
15928
  "disabled": {
15701
15929
  "type": "boolean",
@@ -15745,7 +15973,7 @@
15745
15973
  },
15746
15974
  "x-original-maxLength": 1024,
15747
15975
  "x-reconciled-from-discovery": true,
15748
- "x-reconciled-at": "2026-01-05T14:38:14.905578+00:00"
15976
+ "x-reconciled-at": "2026-01-05T18:29:14.475184+00:00"
15749
15977
  },
15750
15978
  "namespace": {
15751
15979
  "type": "string",
@@ -15764,7 +15992,7 @@
15764
15992
  },
15765
15993
  "x-original-maxLength": 1024,
15766
15994
  "x-reconciled-from-discovery": true,
15767
- "x-reconciled-at": "2026-01-05T14:38:14.905583+00:00"
15995
+ "x-reconciled-at": "2026-01-05T18:29:14.475189+00:00"
15768
15996
  },
15769
15997
  "owner_view": {
15770
15998
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -15790,7 +16018,7 @@
15790
16018
  "x-field-mutability": "read-only",
15791
16019
  "x-original-maxLength": 1024,
15792
16020
  "x-reconciled-from-discovery": true,
15793
- "x-reconciled-at": "2026-01-05T14:38:14.905589+00:00"
16021
+ "x-reconciled-at": "2026-01-05T18:29:14.475196+00:00"
15794
16022
  },
15795
16023
  "uid": {
15796
16024
  "type": "string",
@@ -15811,7 +16039,7 @@
15811
16039
  "x-original-maxLength": 1024,
15812
16040
  "format": "uuid",
15813
16041
  "x-reconciled-from-discovery": true,
15814
- "x-reconciled-at": "2026-01-05T14:38:14.905595+00:00"
16042
+ "x-reconciled-at": "2026-01-05T18:29:14.475202+00:00"
15815
16043
  }
15816
16044
  },
15817
16045
  "x-f5xc-minimum-configuration": {