@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": "Service Mesh",
5
5
  "description": "NFV service lifecycle and software version tracking. Machine learning-driven classification with security risk assessment and PII detection. Override management for application behavior customization. Sidecar proxy orchestration with automatic mTLS certificate rotation and policy enforcement across distributed workloads.",
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": "Application type definitions with discovery and learned schema analysis. Traffic pattern inference for intelligent request handling.",
16
- "x-f5xc-cli-domain": "service_mesh"
16
+ "x-f5xc-cli-domain": "service_mesh",
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
  {
@@ -284,6 +334,13 @@
284
334
  "latency": "low",
285
335
  "resource_usage": "low"
286
336
  }
337
+ },
338
+ "x-f5xc-discovered-response-time": {
339
+ "p50_ms": 1000,
340
+ "p95_ms": 3000,
341
+ "p99_ms": 8000,
342
+ "sample_count": 0,
343
+ "source": "estimate"
287
344
  }
288
345
  },
289
346
  "x-displayname": "App Setting.",
@@ -506,6 +563,13 @@
506
563
  "latency": "low",
507
564
  "resource_usage": "low"
508
565
  }
566
+ },
567
+ "x-f5xc-discovered-response-time": {
568
+ "p50_ms": 800,
569
+ "p95_ms": 2500,
570
+ "p99_ms": 6000,
571
+ "sample_count": 0,
572
+ "source": "estimate"
509
573
  }
510
574
  },
511
575
  "x-displayname": "App Setting.",
@@ -735,7 +799,15 @@
735
799
  }
736
800
  },
737
801
  "x-discovered-response-time-ms": 149.78,
738
- "x-discovered-sample-size": 1
802
+ "x-discovered-sample-size": 1,
803
+ "x-f5xc-discovered-response-time": {
804
+ "p50_ms": 149.78,
805
+ "p95_ms": 299.56,
806
+ "p99_ms": 449.34,
807
+ "sample_count": 1,
808
+ "source": "discovery",
809
+ "last_measured": "2025-12-20T19:39:20.211392+00:00"
810
+ }
739
811
  },
740
812
  "x-displayname": "App Setting.",
741
813
  "x-ves-proto-service": "ves.io.schema.app_setting.API",
@@ -956,6 +1028,13 @@
956
1028
  "latency": "low",
957
1029
  "resource_usage": "low"
958
1030
  }
1031
+ },
1032
+ "x-f5xc-discovered-response-time": {
1033
+ "p50_ms": 200,
1034
+ "p95_ms": 800,
1035
+ "p99_ms": 2000,
1036
+ "sample_count": 0,
1037
+ "source": "estimate"
959
1038
  }
960
1039
  },
961
1040
  "delete": {
@@ -1175,6 +1254,13 @@
1175
1254
  "latency": "high",
1176
1255
  "resource_usage": "moderate"
1177
1256
  }
1257
+ },
1258
+ "x-f5xc-discovered-response-time": {
1259
+ "p50_ms": 500,
1260
+ "p95_ms": 1500,
1261
+ "p99_ms": 4000,
1262
+ "sample_count": 0,
1263
+ "source": "estimate"
1178
1264
  }
1179
1265
  },
1180
1266
  "x-displayname": "App Setting.",
@@ -1417,6 +1503,13 @@
1417
1503
  "latency": "moderate",
1418
1504
  "resource_usage": "moderate"
1419
1505
  }
1506
+ },
1507
+ "x-f5xc-discovered-response-time": {
1508
+ "p50_ms": 200,
1509
+ "p95_ms": 800,
1510
+ "p99_ms": 2000,
1511
+ "sample_count": 0,
1512
+ "source": "estimate"
1420
1513
  }
1421
1514
  },
1422
1515
  "x-displayname": "App Setting.",
@@ -1631,6 +1724,13 @@
1631
1724
  "latency": "low",
1632
1725
  "resource_usage": "low"
1633
1726
  }
1727
+ },
1728
+ "x-f5xc-discovered-response-time": {
1729
+ "p50_ms": 1000,
1730
+ "p95_ms": 3000,
1731
+ "p99_ms": 8000,
1732
+ "sample_count": 0,
1733
+ "source": "estimate"
1634
1734
  }
1635
1735
  },
1636
1736
  "x-displayname": "App Type",
@@ -1853,6 +1953,13 @@
1853
1953
  "latency": "low",
1854
1954
  "resource_usage": "low"
1855
1955
  }
1956
+ },
1957
+ "x-f5xc-discovered-response-time": {
1958
+ "p50_ms": 800,
1959
+ "p95_ms": 2500,
1960
+ "p99_ms": 6000,
1961
+ "sample_count": 0,
1962
+ "source": "estimate"
1856
1963
  }
1857
1964
  },
1858
1965
  "x-displayname": "App Type",
@@ -2082,7 +2189,15 @@
2082
2189
  }
2083
2190
  },
2084
2191
  "x-discovered-response-time-ms": 154.15,
2085
- "x-discovered-sample-size": 1
2192
+ "x-discovered-sample-size": 1,
2193
+ "x-f5xc-discovered-response-time": {
2194
+ "p50_ms": 154.15,
2195
+ "p95_ms": 308.3,
2196
+ "p99_ms": 462.45,
2197
+ "sample_count": 1,
2198
+ "source": "discovery",
2199
+ "last_measured": "2025-12-20T19:39:20.211392+00:00"
2200
+ }
2086
2201
  },
2087
2202
  "x-displayname": "App Type",
2088
2203
  "x-ves-proto-service": "ves.io.schema.app_type.API",
@@ -2309,6 +2424,13 @@
2309
2424
  "latency": "low",
2310
2425
  "resource_usage": "low"
2311
2426
  }
2427
+ },
2428
+ "x-f5xc-discovered-response-time": {
2429
+ "p50_ms": 1000,
2430
+ "p95_ms": 3000,
2431
+ "p99_ms": 8000,
2432
+ "sample_count": 0,
2433
+ "source": "estimate"
2312
2434
  }
2313
2435
  },
2314
2436
  "x-displayname": "App Type",
@@ -2532,6 +2654,13 @@
2532
2654
  "latency": "moderate",
2533
2655
  "resource_usage": "moderate"
2534
2656
  }
2657
+ },
2658
+ "x-f5xc-discovered-response-time": {
2659
+ "p50_ms": 200,
2660
+ "p95_ms": 800,
2661
+ "p99_ms": 2000,
2662
+ "sample_count": 0,
2663
+ "source": "estimate"
2535
2664
  }
2536
2665
  },
2537
2666
  "x-displayname": "App Type",
@@ -2747,6 +2876,13 @@
2747
2876
  "latency": "moderate",
2748
2877
  "resource_usage": "moderate"
2749
2878
  }
2879
+ },
2880
+ "x-f5xc-discovered-response-time": {
2881
+ "p50_ms": 200,
2882
+ "p95_ms": 800,
2883
+ "p99_ms": 2000,
2884
+ "sample_count": 0,
2885
+ "source": "estimate"
2750
2886
  }
2751
2887
  },
2752
2888
  "x-displayname": "App Type",
@@ -2950,7 +3086,15 @@
2950
3086
  }
2951
3087
  },
2952
3088
  "x-discovered-response-time-ms": 150.59,
2953
- "x-discovered-sample-size": 1
3089
+ "x-discovered-sample-size": 1,
3090
+ "x-f5xc-discovered-response-time": {
3091
+ "p50_ms": 150.59,
3092
+ "p95_ms": 301.18,
3093
+ "p99_ms": 451.77,
3094
+ "sample_count": 1,
3095
+ "source": "discovery",
3096
+ "last_measured": "2025-12-20T19:39:20.211392+00:00"
3097
+ }
2954
3098
  },
2955
3099
  "x-displayname": "App Type",
2956
3100
  "x-ves-proto-service": "ves.io.schema.app_type.CustomAPI",
@@ -3177,6 +3321,13 @@
3177
3321
  "latency": "low",
3178
3322
  "resource_usage": "low"
3179
3323
  }
3324
+ },
3325
+ "x-f5xc-discovered-response-time": {
3326
+ "p50_ms": 1000,
3327
+ "p95_ms": 3000,
3328
+ "p99_ms": 8000,
3329
+ "sample_count": 0,
3330
+ "source": "estimate"
3180
3331
  }
3181
3332
  },
3182
3333
  "x-displayname": "App Type",
@@ -3404,6 +3555,13 @@
3404
3555
  "latency": "low",
3405
3556
  "resource_usage": "low"
3406
3557
  }
3558
+ },
3559
+ "x-f5xc-discovered-response-time": {
3560
+ "p50_ms": 1000,
3561
+ "p95_ms": 3000,
3562
+ "p99_ms": 8000,
3563
+ "sample_count": 0,
3564
+ "source": "estimate"
3407
3565
  }
3408
3566
  },
3409
3567
  "x-displayname": "App Type",
@@ -3605,6 +3763,13 @@
3605
3763
  "latency": "moderate",
3606
3764
  "resource_usage": "moderate"
3607
3765
  }
3766
+ },
3767
+ "x-f5xc-discovered-response-time": {
3768
+ "p50_ms": 200,
3769
+ "p95_ms": 800,
3770
+ "p99_ms": 2000,
3771
+ "sample_count": 0,
3772
+ "source": "estimate"
3608
3773
  }
3609
3774
  },
3610
3775
  "x-displayname": "App Type",
@@ -3845,6 +4010,13 @@
3845
4010
  "latency": "low",
3846
4011
  "resource_usage": "low"
3847
4012
  }
4013
+ },
4014
+ "x-f5xc-discovered-response-time": {
4015
+ "p50_ms": 1000,
4016
+ "p95_ms": 3000,
4017
+ "p99_ms": 8000,
4018
+ "sample_count": 0,
4019
+ "source": "estimate"
3848
4020
  }
3849
4021
  },
3850
4022
  "x-displayname": "App Type",
@@ -4085,6 +4257,13 @@
4085
4257
  "latency": "low",
4086
4258
  "resource_usage": "low"
4087
4259
  }
4260
+ },
4261
+ "x-f5xc-discovered-response-time": {
4262
+ "p50_ms": 1000,
4263
+ "p95_ms": 3000,
4264
+ "p99_ms": 8000,
4265
+ "sample_count": 0,
4266
+ "source": "estimate"
4088
4267
  }
4089
4268
  },
4090
4269
  "x-displayname": "App Type",
@@ -4306,6 +4485,13 @@
4306
4485
  "latency": "low",
4307
4486
  "resource_usage": "low"
4308
4487
  }
4488
+ },
4489
+ "x-f5xc-discovered-response-time": {
4490
+ "p50_ms": 200,
4491
+ "p95_ms": 800,
4492
+ "p99_ms": 2000,
4493
+ "sample_count": 0,
4494
+ "source": "estimate"
4309
4495
  }
4310
4496
  },
4311
4497
  "delete": {
@@ -4525,6 +4711,13 @@
4525
4711
  "latency": "high",
4526
4712
  "resource_usage": "moderate"
4527
4713
  }
4714
+ },
4715
+ "x-f5xc-discovered-response-time": {
4716
+ "p50_ms": 500,
4717
+ "p95_ms": 1500,
4718
+ "p99_ms": 4000,
4719
+ "sample_count": 0,
4720
+ "source": "estimate"
4528
4721
  }
4529
4722
  },
4530
4723
  "x-displayname": "App Type",
@@ -4739,6 +4932,13 @@
4739
4932
  "latency": "low",
4740
4933
  "resource_usage": "low"
4741
4934
  }
4935
+ },
4936
+ "x-f5xc-discovered-response-time": {
4937
+ "p50_ms": 1000,
4938
+ "p95_ms": 3000,
4939
+ "p99_ms": 8000,
4940
+ "sample_count": 0,
4941
+ "source": "estimate"
4742
4942
  }
4743
4943
  },
4744
4944
  "x-displayname": "Endpoint",
@@ -4961,6 +5161,13 @@
4961
5161
  "latency": "low",
4962
5162
  "resource_usage": "low"
4963
5163
  }
5164
+ },
5165
+ "x-f5xc-discovered-response-time": {
5166
+ "p50_ms": 800,
5167
+ "p95_ms": 2500,
5168
+ "p99_ms": 6000,
5169
+ "sample_count": 0,
5170
+ "source": "estimate"
4964
5171
  }
4965
5172
  },
4966
5173
  "x-displayname": "Endpoint",
@@ -5188,6 +5395,13 @@
5188
5395
  "latency": "moderate",
5189
5396
  "resource_usage": "moderate"
5190
5397
  }
5398
+ },
5399
+ "x-f5xc-discovered-response-time": {
5400
+ "p50_ms": 200,
5401
+ "p95_ms": 800,
5402
+ "p99_ms": 2000,
5403
+ "sample_count": 0,
5404
+ "source": "estimate"
5191
5405
  }
5192
5406
  },
5193
5407
  "x-displayname": "Endpoint",
@@ -5409,6 +5623,13 @@
5409
5623
  "latency": "low",
5410
5624
  "resource_usage": "low"
5411
5625
  }
5626
+ },
5627
+ "x-f5xc-discovered-response-time": {
5628
+ "p50_ms": 200,
5629
+ "p95_ms": 800,
5630
+ "p99_ms": 2000,
5631
+ "sample_count": 0,
5632
+ "source": "estimate"
5412
5633
  }
5413
5634
  },
5414
5635
  "delete": {
@@ -5628,6 +5849,13 @@
5628
5849
  "latency": "high",
5629
5850
  "resource_usage": "moderate"
5630
5851
  }
5852
+ },
5853
+ "x-f5xc-discovered-response-time": {
5854
+ "p50_ms": 500,
5855
+ "p95_ms": 1500,
5856
+ "p99_ms": 4000,
5857
+ "sample_count": 0,
5858
+ "source": "estimate"
5631
5859
  }
5632
5860
  },
5633
5861
  "x-displayname": "Endpoint",
@@ -5842,6 +6070,13 @@
5842
6070
  "latency": "low",
5843
6071
  "resource_usage": "low"
5844
6072
  }
6073
+ },
6074
+ "x-f5xc-discovered-response-time": {
6075
+ "p50_ms": 1000,
6076
+ "p95_ms": 3000,
6077
+ "p99_ms": 8000,
6078
+ "sample_count": 0,
6079
+ "source": "estimate"
5845
6080
  }
5846
6081
  },
5847
6082
  "x-displayname": "NFV Service.",
@@ -6056,6 +6291,13 @@
6056
6291
  "latency": "low",
6057
6292
  "resource_usage": "low"
6058
6293
  }
6294
+ },
6295
+ "x-f5xc-discovered-response-time": {
6296
+ "p50_ms": 1000,
6297
+ "p95_ms": 3000,
6298
+ "p99_ms": 8000,
6299
+ "sample_count": 0,
6300
+ "source": "estimate"
6059
6301
  }
6060
6302
  },
6061
6303
  "x-displayname": "NFV Service.",
@@ -6278,6 +6520,13 @@
6278
6520
  "latency": "low",
6279
6521
  "resource_usage": "low"
6280
6522
  }
6523
+ },
6524
+ "x-f5xc-discovered-response-time": {
6525
+ "p50_ms": 800,
6526
+ "p95_ms": 2500,
6527
+ "p99_ms": 6000,
6528
+ "sample_count": 0,
6529
+ "source": "estimate"
6281
6530
  }
6282
6531
  },
6283
6532
  "x-displayname": "NFV Service.",
@@ -6505,6 +6754,13 @@
6505
6754
  "latency": "moderate",
6506
6755
  "resource_usage": "moderate"
6507
6756
  }
6757
+ },
6758
+ "x-f5xc-discovered-response-time": {
6759
+ "p50_ms": 200,
6760
+ "p95_ms": 800,
6761
+ "p99_ms": 2000,
6762
+ "sample_count": 0,
6763
+ "source": "estimate"
6508
6764
  }
6509
6765
  },
6510
6766
  "x-displayname": "NFV Service.",
@@ -6719,6 +6975,13 @@
6719
6975
  "latency": "low",
6720
6976
  "resource_usage": "low"
6721
6977
  }
6978
+ },
6979
+ "x-f5xc-discovered-response-time": {
6980
+ "p50_ms": 1000,
6981
+ "p95_ms": 3000,
6982
+ "p99_ms": 8000,
6983
+ "sample_count": 0,
6984
+ "source": "estimate"
6722
6985
  }
6723
6986
  },
6724
6987
  "x-displayname": "NFV Service.",
@@ -6940,6 +7203,13 @@
6940
7203
  "latency": "low",
6941
7204
  "resource_usage": "low"
6942
7205
  }
7206
+ },
7207
+ "x-f5xc-discovered-response-time": {
7208
+ "p50_ms": 200,
7209
+ "p95_ms": 800,
7210
+ "p99_ms": 2000,
7211
+ "sample_count": 0,
7212
+ "source": "estimate"
6943
7213
  }
6944
7214
  },
6945
7215
  "delete": {
@@ -7159,6 +7429,13 @@
7159
7429
  "latency": "high",
7160
7430
  "resource_usage": "moderate"
7161
7431
  }
7432
+ },
7433
+ "x-f5xc-discovered-response-time": {
7434
+ "p50_ms": 500,
7435
+ "p95_ms": 1500,
7436
+ "p99_ms": 4000,
7437
+ "sample_count": 0,
7438
+ "source": "estimate"
7162
7439
  }
7163
7440
  },
7164
7441
  "x-displayname": "NFV Service.",
@@ -7373,6 +7650,13 @@
7373
7650
  "latency": "low",
7374
7651
  "resource_usage": "low"
7375
7652
  }
7653
+ },
7654
+ "x-f5xc-discovered-response-time": {
7655
+ "p50_ms": 1000,
7656
+ "p95_ms": 3000,
7657
+ "p99_ms": 8000,
7658
+ "sample_count": 0,
7659
+ "source": "estimate"
7376
7660
  }
7377
7661
  },
7378
7662
  "x-displayname": "Site Mesh Group.",
@@ -7595,6 +7879,13 @@
7595
7879
  "latency": "low",
7596
7880
  "resource_usage": "low"
7597
7881
  }
7882
+ },
7883
+ "x-f5xc-discovered-response-time": {
7884
+ "p50_ms": 800,
7885
+ "p95_ms": 2500,
7886
+ "p99_ms": 6000,
7887
+ "sample_count": 0,
7888
+ "source": "estimate"
7598
7889
  }
7599
7890
  },
7600
7891
  "x-displayname": "Site Mesh Group.",
@@ -7822,6 +8113,13 @@
7822
8113
  "latency": "moderate",
7823
8114
  "resource_usage": "moderate"
7824
8115
  }
8116
+ },
8117
+ "x-f5xc-discovered-response-time": {
8118
+ "p50_ms": 200,
8119
+ "p95_ms": 800,
8120
+ "p99_ms": 2000,
8121
+ "sample_count": 0,
8122
+ "source": "estimate"
7825
8123
  }
7826
8124
  },
7827
8125
  "x-displayname": "Site Mesh Group.",
@@ -8043,6 +8341,13 @@
8043
8341
  "latency": "low",
8044
8342
  "resource_usage": "low"
8045
8343
  }
8344
+ },
8345
+ "x-f5xc-discovered-response-time": {
8346
+ "p50_ms": 200,
8347
+ "p95_ms": 800,
8348
+ "p99_ms": 2000,
8349
+ "sample_count": 0,
8350
+ "source": "estimate"
8046
8351
  }
8047
8352
  },
8048
8353
  "delete": {
@@ -8262,6 +8567,13 @@
8262
8567
  "latency": "high",
8263
8568
  "resource_usage": "moderate"
8264
8569
  }
8570
+ },
8571
+ "x-f5xc-discovered-response-time": {
8572
+ "p50_ms": 500,
8573
+ "p95_ms": 1500,
8574
+ "p99_ms": 4000,
8575
+ "sample_count": 0,
8576
+ "source": "estimate"
8265
8577
  }
8266
8578
  },
8267
8579
  "x-displayname": "Site Mesh Group.",
@@ -8459,6 +8771,13 @@
8459
8771
  "latency": "low",
8460
8772
  "resource_usage": "low"
8461
8773
  }
8774
+ },
8775
+ "x-f5xc-discovered-response-time": {
8776
+ "p50_ms": 1000,
8777
+ "p95_ms": 3000,
8778
+ "p99_ms": 8000,
8779
+ "sample_count": 0,
8780
+ "source": "estimate"
8462
8781
  }
8463
8782
  },
8464
8783
  "x-displayname": "Upgrade Status.",
@@ -8673,6 +8992,13 @@
8673
8992
  "latency": "low",
8674
8993
  "resource_usage": "low"
8675
8994
  }
8995
+ },
8996
+ "x-f5xc-discovered-response-time": {
8997
+ "p50_ms": 1000,
8998
+ "p95_ms": 3000,
8999
+ "p99_ms": 8000,
9000
+ "sample_count": 0,
9001
+ "source": "estimate"
8676
9002
  }
8677
9003
  },
8678
9004
  "x-displayname": "Virtual Network.",
@@ -8895,6 +9221,13 @@
8895
9221
  "latency": "low",
8896
9222
  "resource_usage": "low"
8897
9223
  }
9224
+ },
9225
+ "x-f5xc-discovered-response-time": {
9226
+ "p50_ms": 800,
9227
+ "p95_ms": 2500,
9228
+ "p99_ms": 6000,
9229
+ "sample_count": 0,
9230
+ "source": "estimate"
8898
9231
  }
8899
9232
  },
8900
9233
  "x-displayname": "Virtual Network.",
@@ -9109,6 +9442,13 @@
9109
9442
  "latency": "low",
9110
9443
  "resource_usage": "low"
9111
9444
  }
9445
+ },
9446
+ "x-f5xc-discovered-response-time": {
9447
+ "p50_ms": 1000,
9448
+ "p95_ms": 3000,
9449
+ "p99_ms": 8000,
9450
+ "sample_count": 0,
9451
+ "source": "estimate"
9112
9452
  }
9113
9453
  },
9114
9454
  "x-displayname": "Virtual Network.",
@@ -9336,6 +9676,13 @@
9336
9676
  "latency": "moderate",
9337
9677
  "resource_usage": "moderate"
9338
9678
  }
9679
+ },
9680
+ "x-f5xc-discovered-response-time": {
9681
+ "p50_ms": 200,
9682
+ "p95_ms": 800,
9683
+ "p99_ms": 2000,
9684
+ "sample_count": 0,
9685
+ "source": "estimate"
9339
9686
  }
9340
9687
  },
9341
9688
  "x-displayname": "Virtual Network.",
@@ -9557,6 +9904,13 @@
9557
9904
  "latency": "low",
9558
9905
  "resource_usage": "low"
9559
9906
  }
9907
+ },
9908
+ "x-f5xc-discovered-response-time": {
9909
+ "p50_ms": 200,
9910
+ "p95_ms": 800,
9911
+ "p99_ms": 2000,
9912
+ "sample_count": 0,
9913
+ "source": "estimate"
9560
9914
  }
9561
9915
  },
9562
9916
  "delete": {
@@ -9776,6 +10130,13 @@
9776
10130
  "latency": "high",
9777
10131
  "resource_usage": "moderate"
9778
10132
  }
10133
+ },
10134
+ "x-f5xc-discovered-response-time": {
10135
+ "p50_ms": 500,
10136
+ "p95_ms": 1500,
10137
+ "p99_ms": 4000,
10138
+ "sample_count": 0,
10139
+ "source": "estimate"
9779
10140
  }
9780
10141
  },
9781
10142
  "x-displayname": "Virtual Network.",
@@ -10032,7 +10393,7 @@
10032
10393
  },
10033
10394
  "x-original-maxLength": 1024,
10034
10395
  "x-reconciled-from-discovery": true,
10035
- "x-reconciled-at": "2026-01-05T14:37:39.835844+00:00"
10396
+ "x-reconciled-at": "2026-01-05T18:28:42.442826+00:00"
10036
10397
  },
10037
10398
  "namespace": {
10038
10399
  "type": "string",
@@ -10051,7 +10412,7 @@
10051
10412
  },
10052
10413
  "x-original-maxLength": 1024,
10053
10414
  "x-reconciled-from-discovery": true,
10054
- "x-reconciled-at": "2026-01-05T14:37:39.835850+00:00"
10415
+ "x-reconciled-at": "2026-01-05T18:28:42.442832+00:00"
10055
10416
  }
10056
10417
  },
10057
10418
  "x-f5xc-minimum-configuration": {
@@ -10241,7 +10602,7 @@
10241
10602
  "maxLength": 17,
10242
10603
  "minLength": 17,
10243
10604
  "x-reconciled-from-discovery": true,
10244
- "x-reconciled-at": "2026-01-05T14:37:39.835872+00:00"
10605
+ "x-reconciled-at": "2026-01-05T18:28:42.442853+00:00"
10245
10606
  },
10246
10607
  "system_metadata": {
10247
10608
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -10376,7 +10737,7 @@
10376
10737
  },
10377
10738
  "x-original-maxLength": 1024,
10378
10739
  "x-reconciled-from-discovery": true,
10379
- "x-reconciled-at": "2026-01-05T14:37:39.835885+00:00"
10740
+ "x-reconciled-at": "2026-01-05T18:28:42.442865+00:00"
10380
10741
  },
10381
10742
  "disabled": {
10382
10743
  "type": "boolean",
@@ -10426,7 +10787,7 @@
10426
10787
  },
10427
10788
  "x-original-maxLength": 1024,
10428
10789
  "x-reconciled-from-discovery": true,
10429
- "x-reconciled-at": "2026-01-05T14:37:39.835896+00:00"
10790
+ "x-reconciled-at": "2026-01-05T18:28:42.442875+00:00"
10430
10791
  },
10431
10792
  "namespace": {
10432
10793
  "type": "string",
@@ -10445,7 +10806,7 @@
10445
10806
  },
10446
10807
  "x-original-maxLength": 1024,
10447
10808
  "x-reconciled-from-discovery": true,
10448
- "x-reconciled-at": "2026-01-05T14:37:39.835901+00:00"
10809
+ "x-reconciled-at": "2026-01-05T18:28:42.442879+00:00"
10449
10810
  },
10450
10811
  "owner_view": {
10451
10812
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -10486,7 +10847,7 @@
10486
10847
  "x-field-mutability": "read-only",
10487
10848
  "x-original-maxLength": 1024,
10488
10849
  "x-reconciled-from-discovery": true,
10489
- "x-reconciled-at": "2026-01-05T14:37:39.835909+00:00"
10850
+ "x-reconciled-at": "2026-01-05T18:28:42.442887+00:00"
10490
10851
  },
10491
10852
  "uid": {
10492
10853
  "type": "string",
@@ -10507,7 +10868,7 @@
10507
10868
  "x-original-maxLength": 1024,
10508
10869
  "format": "uuid",
10509
10870
  "x-reconciled-from-discovery": true,
10510
- "x-reconciled-at": "2026-01-05T14:37:39.835915+00:00"
10871
+ "x-reconciled-at": "2026-01-05T18:28:42.442893+00:00"
10511
10872
  }
10512
10873
  },
10513
10874
  "x-f5xc-minimum-configuration": {
@@ -11145,7 +11506,7 @@
11145
11506
  "readOnly": true,
11146
11507
  "x-original-maxLength": 1024,
11147
11508
  "x-reconciled-from-discovery": true,
11148
- "x-reconciled-at": "2026-01-05T14:37:39.835976+00:00"
11509
+ "x-reconciled-at": "2026-01-05T18:28:42.442948+00:00"
11149
11510
  },
11150
11511
  "name": {
11151
11512
  "type": "string",
@@ -11164,7 +11525,7 @@
11164
11525
  },
11165
11526
  "x-original-maxLength": 1024,
11166
11527
  "x-reconciled-from-discovery": true,
11167
- "x-reconciled-at": "2026-01-05T14:37:39.835981+00:00"
11528
+ "x-reconciled-at": "2026-01-05T18:28:42.442952+00:00"
11168
11529
  },
11169
11530
  "namespace": {
11170
11531
  "type": "string",
@@ -11183,7 +11544,7 @@
11183
11544
  },
11184
11545
  "x-original-maxLength": 1024,
11185
11546
  "x-reconciled-from-discovery": true,
11186
- "x-reconciled-at": "2026-01-05T14:37:39.835985+00:00"
11547
+ "x-reconciled-at": "2026-01-05T18:28:42.442956+00:00"
11187
11548
  },
11188
11549
  "tenant": {
11189
11550
  "type": "string",
@@ -11204,7 +11565,7 @@
11204
11565
  "x-field-mutability": "read-only",
11205
11566
  "x-original-maxLength": 1024,
11206
11567
  "x-reconciled-from-discovery": true,
11207
- "x-reconciled-at": "2026-01-05T14:37:39.835990+00:00"
11568
+ "x-reconciled-at": "2026-01-05T18:28:42.442960+00:00"
11208
11569
  },
11209
11570
  "uid": {
11210
11571
  "type": "string",
@@ -11226,7 +11587,7 @@
11226
11587
  "x-original-maxLength": 1024,
11227
11588
  "format": "uuid",
11228
11589
  "x-reconciled-from-discovery": true,
11229
- "x-reconciled-at": "2026-01-05T14:37:39.835995+00:00"
11590
+ "x-reconciled-at": "2026-01-05T18:28:42.442966+00:00"
11230
11591
  }
11231
11592
  },
11232
11593
  "x-f5xc-minimum-configuration": {
@@ -11275,7 +11636,7 @@
11275
11636
  },
11276
11637
  "x-original-maxLength": 1024,
11277
11638
  "x-reconciled-from-discovery": true,
11278
- "x-reconciled-at": "2026-01-05T14:37:39.836001+00:00"
11639
+ "x-reconciled-at": "2026-01-05T18:28:42.442972+00:00"
11279
11640
  }
11280
11641
  },
11281
11642
  "x-f5xc-minimum-configuration": {
@@ -11344,7 +11705,7 @@
11344
11705
  },
11345
11706
  "x-original-maxLength": 1024,
11346
11707
  "x-reconciled-from-discovery": true,
11347
- "x-reconciled-at": "2026-01-05T14:37:39.836010+00:00"
11708
+ "x-reconciled-at": "2026-01-05T18:28:42.442979+00:00"
11348
11709
  },
11349
11710
  "service_name": {
11350
11711
  "type": "string",
@@ -11383,7 +11744,7 @@
11383
11744
  },
11384
11745
  "x-original-maxLength": 1024,
11385
11746
  "x-reconciled-from-discovery": true,
11386
- "x-reconciled-at": "2026-01-05T14:37:39.836016+00:00"
11747
+ "x-reconciled-at": "2026-01-05T18:28:42.442985+00:00"
11387
11748
  },
11388
11749
  "type": {
11389
11750
  "type": "string",
@@ -11520,7 +11881,7 @@
11520
11881
  },
11521
11882
  "x-original-maxLength": 1024,
11522
11883
  "x-reconciled-from-discovery": true,
11523
- "x-reconciled-at": "2026-01-05T14:37:39.836027+00:00"
11884
+ "x-reconciled-at": "2026-01-05T18:28:42.442996+00:00"
11524
11885
  }
11525
11886
  },
11526
11887
  "x-f5xc-minimum-configuration": {
@@ -11629,7 +11990,7 @@
11629
11990
  },
11630
11991
  "x-original-maxLength": 1200,
11631
11992
  "x-reconciled-from-discovery": true,
11632
- "x-reconciled-at": "2026-01-05T14:37:39.836037+00:00"
11993
+ "x-reconciled-at": "2026-01-05T18:28:42.443005+00:00"
11633
11994
  },
11634
11995
  "disable": {
11635
11996
  "type": "boolean",
@@ -11682,7 +12043,7 @@
11682
12043
  },
11683
12044
  "x-original-maxLength": 1024,
11684
12045
  "x-reconciled-from-discovery": true,
11685
- "x-reconciled-at": "2026-01-05T14:37:39.836045+00:00"
12046
+ "x-reconciled-at": "2026-01-05T18:28:42.443012+00:00"
11686
12047
  },
11687
12048
  "namespace": {
11688
12049
  "type": "string",
@@ -11701,7 +12062,7 @@
11701
12062
  },
11702
12063
  "x-original-maxLength": 1024,
11703
12064
  "x-reconciled-from-discovery": true,
11704
- "x-reconciled-at": "2026-01-05T14:37:39.836049+00:00"
12065
+ "x-reconciled-at": "2026-01-05T18:28:42.443016+00:00"
11705
12066
  }
11706
12067
  },
11707
12068
  "x-f5xc-minimum-configuration": {
@@ -11777,7 +12138,7 @@
11777
12138
  },
11778
12139
  "x-original-maxLength": 1200,
11779
12140
  "x-reconciled-from-discovery": true,
11780
- "x-reconciled-at": "2026-01-05T14:37:39.836056+00:00"
12141
+ "x-reconciled-at": "2026-01-05T18:28:42.443022+00:00"
11781
12142
  },
11782
12143
  "disable": {
11783
12144
  "type": "boolean",
@@ -11832,7 +12193,7 @@
11832
12193
  },
11833
12194
  "x-original-maxLength": 1024,
11834
12195
  "x-reconciled-from-discovery": true,
11835
- "x-reconciled-at": "2026-01-05T14:37:39.836064+00:00"
12196
+ "x-reconciled-at": "2026-01-05T18:28:42.443030+00:00"
11836
12197
  },
11837
12198
  "namespace": {
11838
12199
  "type": "string",
@@ -11851,7 +12212,7 @@
11851
12212
  },
11852
12213
  "x-original-maxLength": 1024,
11853
12214
  "x-reconciled-from-discovery": true,
11854
- "x-reconciled-at": "2026-01-05T14:37:39.836068+00:00"
12215
+ "x-reconciled-at": "2026-01-05T18:28:42.443046+00:00"
11855
12216
  }
11856
12217
  },
11857
12218
  "x-f5xc-minimum-configuration": {
@@ -11927,7 +12288,7 @@
11927
12288
  },
11928
12289
  "x-original-maxLength": 1200,
11929
12290
  "x-reconciled-from-discovery": true,
11930
- "x-reconciled-at": "2026-01-05T14:37:39.836074+00:00"
12291
+ "x-reconciled-at": "2026-01-05T18:28:42.443052+00:00"
11931
12292
  },
11932
12293
  "disable": {
11933
12294
  "type": "boolean",
@@ -11980,7 +12341,7 @@
11980
12341
  },
11981
12342
  "x-original-maxLength": 1024,
11982
12343
  "x-reconciled-from-discovery": true,
11983
- "x-reconciled-at": "2026-01-05T14:37:39.836082+00:00"
12344
+ "x-reconciled-at": "2026-01-05T18:28:42.443059+00:00"
11984
12345
  },
11985
12346
  "namespace": {
11986
12347
  "type": "string",
@@ -11999,7 +12360,7 @@
11999
12360
  },
12000
12361
  "x-original-maxLength": 1024,
12001
12362
  "x-reconciled-from-discovery": true,
12002
- "x-reconciled-at": "2026-01-05T14:37:39.836086+00:00"
12363
+ "x-reconciled-at": "2026-01-05T18:28:42.443063+00:00"
12003
12364
  }
12004
12365
  },
12005
12366
  "x-f5xc-minimum-configuration": {
@@ -12113,7 +12474,7 @@
12113
12474
  "x-original-maxLength": 1024,
12114
12475
  "format": "uuid",
12115
12476
  "x-reconciled-from-discovery": true,
12116
- "x-reconciled-at": "2026-01-05T14:37:39.836099+00:00"
12477
+ "x-reconciled-at": "2026-01-05T18:28:42.443076+00:00"
12117
12478
  },
12118
12479
  "vtrp_id": {
12119
12480
  "type": "string",
@@ -12225,7 +12586,7 @@
12225
12586
  },
12226
12587
  "x-original-maxLength": 1024,
12227
12588
  "x-reconciled-from-discovery": true,
12228
- "x-reconciled-at": "2026-01-05T14:37:39.836109+00:00"
12589
+ "x-reconciled-at": "2026-01-05T18:28:42.443086+00:00"
12229
12590
  },
12230
12591
  "status": {
12231
12592
  "type": "string",
@@ -12244,7 +12605,7 @@
12244
12605
  },
12245
12606
  "x-original-maxLength": 1024,
12246
12607
  "x-reconciled-from-discovery": true,
12247
- "x-reconciled-at": "2026-01-05T14:37:39.836114+00:00"
12608
+ "x-reconciled-at": "2026-01-05T18:28:42.443090+00:00"
12248
12609
  }
12249
12610
  },
12250
12611
  "x-f5xc-minimum-configuration": {
@@ -12422,7 +12783,7 @@
12422
12783
  "x-field-mutability": "read-only",
12423
12784
  "x-original-maxLength": 1024,
12424
12785
  "x-reconciled-from-discovery": true,
12425
- "x-reconciled-at": "2026-01-05T14:37:39.836134+00:00"
12786
+ "x-reconciled-at": "2026-01-05T18:28:42.443109+00:00"
12426
12787
  },
12427
12788
  "uid": {
12428
12789
  "type": "string",
@@ -12443,7 +12804,7 @@
12443
12804
  "x-original-maxLength": 1024,
12444
12805
  "format": "uuid",
12445
12806
  "x-reconciled-from-discovery": true,
12446
- "x-reconciled-at": "2026-01-05T14:37:39.836139+00:00"
12807
+ "x-reconciled-at": "2026-01-05T18:28:42.443113+00:00"
12447
12808
  }
12448
12809
  },
12449
12810
  "x-f5xc-minimum-configuration": {
@@ -12493,7 +12854,7 @@
12493
12854
  },
12494
12855
  "x-original-maxLength": 1024,
12495
12856
  "x-reconciled-from-discovery": true,
12496
- "x-reconciled-at": "2026-01-05T14:37:39.836144+00:00"
12857
+ "x-reconciled-at": "2026-01-05T18:28:42.443118+00:00"
12497
12858
  },
12498
12859
  "name": {
12499
12860
  "type": "string",
@@ -12512,7 +12873,7 @@
12512
12873
  },
12513
12874
  "x-original-maxLength": 1024,
12514
12875
  "x-reconciled-from-discovery": true,
12515
- "x-reconciled-at": "2026-01-05T14:37:39.836148+00:00"
12876
+ "x-reconciled-at": "2026-01-05T18:28:42.443123+00:00"
12516
12877
  },
12517
12878
  "namespace": {
12518
12879
  "type": "string",
@@ -12531,7 +12892,7 @@
12531
12892
  },
12532
12893
  "x-original-maxLength": 1024,
12533
12894
  "x-reconciled-from-discovery": true,
12534
- "x-reconciled-at": "2026-01-05T14:37:39.836153+00:00"
12895
+ "x-reconciled-at": "2026-01-05T18:28:42.443127+00:00"
12535
12896
  },
12536
12897
  "uid": {
12537
12898
  "type": "string",
@@ -12552,7 +12913,7 @@
12552
12913
  "x-original-maxLength": 1024,
12553
12914
  "format": "uuid",
12554
12915
  "x-reconciled-from-discovery": true,
12555
- "x-reconciled-at": "2026-01-05T14:37:39.836157+00:00"
12916
+ "x-reconciled-at": "2026-01-05T18:28:42.443132+00:00"
12556
12917
  }
12557
12918
  },
12558
12919
  "x-f5xc-minimum-configuration": {
@@ -13675,7 +14036,7 @@
13675
14036
  },
13676
14037
  "x-original-maxLength": 1024,
13677
14038
  "x-reconciled-from-discovery": true,
13678
- "x-reconciled-at": "2026-01-05T14:37:40.413685+00:00"
14039
+ "x-reconciled-at": "2026-01-05T18:28:42.972971+00:00"
13679
14040
  }
13680
14041
  },
13681
14042
  "x-f5xc-minimum-configuration": {
@@ -14007,7 +14368,7 @@
14007
14368
  },
14008
14369
  "x-original-maxLength": 1024,
14009
14370
  "x-reconciled-from-discovery": true,
14010
- "x-reconciled-at": "2026-01-05T14:37:40.413710+00:00"
14371
+ "x-reconciled-at": "2026-01-05T18:28:42.972996+00:00"
14011
14372
  }
14012
14373
  },
14013
14374
  "x-f5xc-example": "[EMAIL, CC]",
@@ -14388,7 +14749,7 @@
14388
14749
  },
14389
14750
  "x-original-maxLength": 1024,
14390
14751
  "x-reconciled-from-discovery": true,
14391
- "x-reconciled-at": "2026-01-05T14:37:40.413772+00:00"
14752
+ "x-reconciled-at": "2026-01-05T18:28:42.973052+00:00"
14392
14753
  },
14393
14754
  "namespace": {
14394
14755
  "type": "string",
@@ -14407,7 +14768,7 @@
14407
14768
  },
14408
14769
  "x-original-maxLength": 1024,
14409
14770
  "x-reconciled-from-discovery": true,
14410
- "x-reconciled-at": "2026-01-05T14:37:40.413777+00:00"
14771
+ "x-reconciled-at": "2026-01-05T18:28:42.973058+00:00"
14411
14772
  }
14412
14773
  },
14413
14774
  "x-f5xc-minimum-configuration": {
@@ -14651,7 +15012,7 @@
14651
15012
  "maxLength": 17,
14652
15013
  "minLength": 17,
14653
15014
  "x-reconciled-from-discovery": true,
14654
- "x-reconciled-at": "2026-01-05T14:37:40.413802+00:00"
15015
+ "x-reconciled-at": "2026-01-05T18:28:42.973082+00:00"
14655
15016
  },
14656
15017
  "system_metadata": {
14657
15018
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -14902,7 +15263,7 @@
14902
15263
  },
14903
15264
  "x-original-maxLength": 1024,
14904
15265
  "x-reconciled-from-discovery": true,
14905
- "x-reconciled-at": "2026-01-05T14:37:40.413824+00:00"
15266
+ "x-reconciled-at": "2026-01-05T18:28:42.973103+00:00"
14906
15267
  },
14907
15268
  "disabled": {
14908
15269
  "type": "boolean",
@@ -14952,7 +15313,7 @@
14952
15313
  },
14953
15314
  "x-original-maxLength": 1024,
14954
15315
  "x-reconciled-from-discovery": true,
14955
- "x-reconciled-at": "2026-01-05T14:37:40.413834+00:00"
15316
+ "x-reconciled-at": "2026-01-05T18:28:42.973113+00:00"
14956
15317
  },
14957
15318
  "namespace": {
14958
15319
  "type": "string",
@@ -14971,7 +15332,7 @@
14971
15332
  },
14972
15333
  "x-original-maxLength": 1024,
14973
15334
  "x-reconciled-from-discovery": true,
14974
- "x-reconciled-at": "2026-01-05T14:37:40.413838+00:00"
15335
+ "x-reconciled-at": "2026-01-05T18:28:42.973117+00:00"
14975
15336
  },
14976
15337
  "owner_view": {
14977
15338
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -15012,7 +15373,7 @@
15012
15373
  "x-field-mutability": "read-only",
15013
15374
  "x-original-maxLength": 1024,
15014
15375
  "x-reconciled-from-discovery": true,
15015
- "x-reconciled-at": "2026-01-05T14:37:40.413847+00:00"
15376
+ "x-reconciled-at": "2026-01-05T18:28:42.973125+00:00"
15016
15377
  },
15017
15378
  "uid": {
15018
15379
  "type": "string",
@@ -15033,7 +15394,7 @@
15033
15394
  "x-original-maxLength": 1024,
15034
15395
  "format": "uuid",
15035
15396
  "x-reconciled-from-discovery": true,
15036
- "x-reconciled-at": "2026-01-05T14:37:40.413852+00:00"
15397
+ "x-reconciled-at": "2026-01-05T18:28:42.973131+00:00"
15037
15398
  }
15038
15399
  },
15039
15400
  "x-f5xc-minimum-configuration": {
@@ -15153,7 +15514,7 @@
15153
15514
  },
15154
15515
  "x-original-maxLength": 1024,
15155
15516
  "x-reconciled-from-discovery": true,
15156
- "x-reconciled-at": "2026-01-05T14:37:40.413863+00:00"
15517
+ "x-reconciled-at": "2026-01-05T18:28:42.973141+00:00"
15157
15518
  }
15158
15519
  },
15159
15520
  "x-f5xc-minimum-configuration": {
@@ -15193,7 +15554,7 @@
15193
15554
  "maxLength": 17,
15194
15555
  "minLength": 17,
15195
15556
  "x-reconciled-from-discovery": true,
15196
- "x-reconciled-at": "2026-01-05T14:37:40.413869+00:00"
15557
+ "x-reconciled-at": "2026-01-05T18:28:42.973147+00:00"
15197
15558
  },
15198
15559
  "status_msg": {
15199
15560
  "type": "string",
@@ -15265,7 +15626,7 @@
15265
15626
  },
15266
15627
  "x-original-maxLength": 1024,
15267
15628
  "x-reconciled-from-discovery": true,
15268
- "x-reconciled-at": "2026-01-05T14:37:40.413877+00:00"
15629
+ "x-reconciled-at": "2026-01-05T18:28:42.973155+00:00"
15269
15630
  },
15270
15631
  "override_info": {
15271
15632
  "$ref": "#/components/schemas/app_typeOverrideInfo"
@@ -15309,7 +15670,7 @@
15309
15670
  "maxLength": 17,
15310
15671
  "minLength": 17,
15311
15672
  "x-reconciled-from-discovery": true,
15312
- "x-reconciled-at": "2026-01-05T14:37:40.413884+00:00"
15673
+ "x-reconciled-at": "2026-01-05T18:28:42.973161+00:00"
15313
15674
  },
15314
15675
  "status_msg": {
15315
15676
  "type": "string",
@@ -15999,7 +16360,7 @@
15999
16360
  },
16000
16361
  "x-original-maxLength": 1024,
16001
16362
  "x-reconciled-from-discovery": true,
16002
- "x-reconciled-at": "2026-01-05T14:37:40.413941+00:00"
16363
+ "x-reconciled-at": "2026-01-05T18:28:42.973215+00:00"
16003
16364
  },
16004
16365
  "service_name": {
16005
16366
  "type": "string",
@@ -16095,7 +16456,7 @@
16095
16456
  },
16096
16457
  "x-original-maxLength": 1024,
16097
16458
  "x-reconciled-from-discovery": true,
16098
- "x-reconciled-at": "2026-01-05T14:37:40.413950+00:00"
16459
+ "x-reconciled-at": "2026-01-05T18:28:42.973224+00:00"
16099
16460
  },
16100
16461
  "service_name": {
16101
16462
  "type": "string",
@@ -16302,7 +16663,7 @@
16302
16663
  },
16303
16664
  "x-original-maxLength": 1024,
16304
16665
  "x-reconciled-from-discovery": true,
16305
- "x-reconciled-at": "2026-01-05T14:37:40.413999+00:00"
16666
+ "x-reconciled-at": "2026-01-05T18:28:42.973273+00:00"
16306
16667
  },
16307
16668
  "disable": {
16308
16669
  "type": "boolean",
@@ -16332,7 +16693,7 @@
16332
16693
  },
16333
16694
  "x-original-maxLength": 1024,
16334
16695
  "x-reconciled-from-discovery": true,
16335
- "x-reconciled-at": "2026-01-05T14:37:40.414005+00:00"
16696
+ "x-reconciled-at": "2026-01-05T18:28:42.973278+00:00"
16336
16697
  }
16337
16698
  },
16338
16699
  "x-f5xc-minimum-configuration": {
@@ -16374,7 +16735,7 @@
16374
16735
  "readOnly": true,
16375
16736
  "x-original-maxLength": 1024,
16376
16737
  "x-reconciled-from-discovery": true,
16377
- "x-reconciled-at": "2026-01-05T14:37:40.414047+00:00"
16738
+ "x-reconciled-at": "2026-01-05T18:28:42.973318+00:00"
16378
16739
  },
16379
16740
  "name": {
16380
16741
  "type": "string",
@@ -16393,7 +16754,7 @@
16393
16754
  },
16394
16755
  "x-original-maxLength": 1024,
16395
16756
  "x-reconciled-from-discovery": true,
16396
- "x-reconciled-at": "2026-01-05T14:37:40.414051+00:00"
16757
+ "x-reconciled-at": "2026-01-05T18:28:42.973322+00:00"
16397
16758
  },
16398
16759
  "namespace": {
16399
16760
  "type": "string",
@@ -16412,7 +16773,7 @@
16412
16773
  },
16413
16774
  "x-original-maxLength": 1024,
16414
16775
  "x-reconciled-from-discovery": true,
16415
- "x-reconciled-at": "2026-01-05T14:37:40.414055+00:00"
16776
+ "x-reconciled-at": "2026-01-05T18:28:42.973326+00:00"
16416
16777
  },
16417
16778
  "tenant": {
16418
16779
  "type": "string",
@@ -16433,7 +16794,7 @@
16433
16794
  "x-field-mutability": "read-only",
16434
16795
  "x-original-maxLength": 1024,
16435
16796
  "x-reconciled-from-discovery": true,
16436
- "x-reconciled-at": "2026-01-05T14:37:40.414059+00:00"
16797
+ "x-reconciled-at": "2026-01-05T18:28:42.973330+00:00"
16437
16798
  },
16438
16799
  "uid": {
16439
16800
  "type": "string",
@@ -16455,7 +16816,7 @@
16455
16816
  "x-original-maxLength": 1024,
16456
16817
  "format": "uuid",
16457
16818
  "x-reconciled-from-discovery": true,
16458
- "x-reconciled-at": "2026-01-05T14:37:40.414064+00:00"
16819
+ "x-reconciled-at": "2026-01-05T18:28:42.973335+00:00"
16459
16820
  }
16460
16821
  },
16461
16822
  "x-f5xc-minimum-configuration": {
@@ -16657,7 +17018,7 @@
16657
17018
  },
16658
17019
  "x-original-maxLength": 1024,
16659
17020
  "x-reconciled-from-discovery": true,
16660
- "x-reconciled-at": "2026-01-05T14:38:17.633309+00:00"
17021
+ "x-reconciled-at": "2026-01-05T18:29:16.957060+00:00"
16661
17022
  },
16662
17023
  "namespace": {
16663
17024
  "type": "string",
@@ -16676,7 +17037,7 @@
16676
17037
  },
16677
17038
  "x-original-maxLength": 1024,
16678
17039
  "x-reconciled-from-discovery": true,
16679
- "x-reconciled-at": "2026-01-05T14:38:17.633316+00:00"
17040
+ "x-reconciled-at": "2026-01-05T18:29:16.957067+00:00"
16680
17041
  }
16681
17042
  },
16682
17043
  "x-f5xc-minimum-configuration": {
@@ -16758,7 +17119,7 @@
16758
17119
  },
16759
17120
  "x-original-maxLength": 256,
16760
17121
  "x-reconciled-from-discovery": true,
16761
- "x-reconciled-at": "2026-01-05T14:38:17.633327+00:00"
17122
+ "x-reconciled-at": "2026-01-05T18:29:16.957077+00:00"
16762
17123
  },
16763
17124
  "refresh_interval": {
16764
17125
  "type": "integer",
@@ -16880,7 +17241,7 @@
16880
17241
  "maxLength": 17,
16881
17242
  "minLength": 17,
16882
17243
  "x-reconciled-from-discovery": true,
16883
- "x-reconciled-at": "2026-01-05T14:38:17.633344+00:00"
17244
+ "x-reconciled-at": "2026-01-05T18:29:16.957094+00:00"
16884
17245
  },
16885
17246
  "system_metadata": {
16886
17247
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -17239,7 +17600,7 @@
17239
17600
  },
17240
17601
  "x-original-maxLength": 1024,
17241
17602
  "x-reconciled-from-discovery": true,
17242
- "x-reconciled-at": "2026-01-05T14:38:17.633375+00:00"
17603
+ "x-reconciled-at": "2026-01-05T18:29:16.957122+00:00"
17243
17604
  },
17244
17605
  "disabled": {
17245
17606
  "type": "boolean",
@@ -17289,7 +17650,7 @@
17289
17650
  },
17290
17651
  "x-original-maxLength": 1024,
17291
17652
  "x-reconciled-from-discovery": true,
17292
- "x-reconciled-at": "2026-01-05T14:38:17.633386+00:00"
17653
+ "x-reconciled-at": "2026-01-05T18:29:16.957132+00:00"
17293
17654
  },
17294
17655
  "namespace": {
17295
17656
  "type": "string",
@@ -17308,7 +17669,7 @@
17308
17669
  },
17309
17670
  "x-original-maxLength": 1024,
17310
17671
  "x-reconciled-from-discovery": true,
17311
- "x-reconciled-at": "2026-01-05T14:38:17.633391+00:00"
17672
+ "x-reconciled-at": "2026-01-05T18:29:16.957137+00:00"
17312
17673
  },
17313
17674
  "owner_view": {
17314
17675
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -17349,7 +17710,7 @@
17349
17710
  "x-field-mutability": "read-only",
17350
17711
  "x-original-maxLength": 1024,
17351
17712
  "x-reconciled-from-discovery": true,
17352
- "x-reconciled-at": "2026-01-05T14:38:17.633399+00:00"
17713
+ "x-reconciled-at": "2026-01-05T18:29:16.957144+00:00"
17353
17714
  },
17354
17715
  "uid": {
17355
17716
  "type": "string",
@@ -17370,7 +17731,7 @@
17370
17731
  "x-original-maxLength": 1024,
17371
17732
  "format": "uuid",
17372
17733
  "x-reconciled-from-discovery": true,
17373
- "x-reconciled-at": "2026-01-05T14:38:17.633405+00:00"
17734
+ "x-reconciled-at": "2026-01-05T18:29:16.957150+00:00"
17374
17735
  }
17375
17736
  },
17376
17737
  "x-f5xc-minimum-configuration": {
@@ -18593,7 +18954,7 @@
18593
18954
  },
18594
18955
  "x-original-maxLength": 128,
18595
18956
  "x-reconciled-from-discovery": true,
18596
- "x-reconciled-at": "2026-01-05T14:38:17.633692+00:00"
18957
+ "x-reconciled-at": "2026-01-05T18:29:16.957417+00:00"
18597
18958
  },
18598
18959
  "namespace": {
18599
18960
  "type": "string",
@@ -18618,7 +18979,7 @@
18618
18979
  },
18619
18980
  "x-original-maxLength": 64,
18620
18981
  "x-reconciled-from-discovery": true,
18621
- "x-reconciled-at": "2026-01-05T14:38:17.633696+00:00"
18982
+ "x-reconciled-at": "2026-01-05T18:29:16.957421+00:00"
18622
18983
  },
18623
18984
  "tenant": {
18624
18985
  "type": "string",
@@ -18645,7 +19006,7 @@
18645
19006
  "x-field-mutability": "read-only",
18646
19007
  "x-original-maxLength": 64,
18647
19008
  "x-reconciled-from-discovery": true,
18648
- "x-reconciled-at": "2026-01-05T14:38:17.633701+00:00"
19009
+ "x-reconciled-at": "2026-01-05T18:29:16.957425+00:00"
18649
19010
  }
18650
19011
  },
18651
19012
  "x-f5xc-minimum-configuration": {
@@ -18867,7 +19228,7 @@
18867
19228
  },
18868
19229
  "x-original-maxLength": 1024,
18869
19230
  "x-reconciled-from-discovery": true,
18870
- "x-reconciled-at": "2026-01-05T14:38:38.397590+00:00"
19231
+ "x-reconciled-at": "2026-01-05T18:29:35.588360+00:00"
18871
19232
  },
18872
19233
  "namespace": {
18873
19234
  "type": "string",
@@ -18886,7 +19247,7 @@
18886
19247
  },
18887
19248
  "x-original-maxLength": 1024,
18888
19249
  "x-reconciled-from-discovery": true,
18889
- "x-reconciled-at": "2026-01-05T14:38:38.397595+00:00"
19250
+ "x-reconciled-at": "2026-01-05T18:29:35.588365+00:00"
18890
19251
  }
18891
19252
  },
18892
19253
  "x-f5xc-minimum-configuration": {
@@ -19382,7 +19743,7 @@
19382
19743
  },
19383
19744
  "x-original-maxLength": 1024,
19384
19745
  "x-reconciled-from-discovery": true,
19385
- "x-reconciled-at": "2026-01-05T14:38:38.397655+00:00"
19746
+ "x-reconciled-at": "2026-01-05T18:29:35.588420+00:00"
19386
19747
  }
19387
19748
  },
19388
19749
  "x-f5xc-minimum-configuration": {
@@ -19510,7 +19871,7 @@
19510
19871
  "maxLength": 17,
19511
19872
  "minLength": 17,
19512
19873
  "x-reconciled-from-discovery": true,
19513
- "x-reconciled-at": "2026-01-05T14:38:38.397672+00:00"
19874
+ "x-reconciled-at": "2026-01-05T18:29:35.588435+00:00"
19514
19875
  },
19515
19876
  "system_metadata": {
19516
19877
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -19645,7 +20006,7 @@
19645
20006
  },
19646
20007
  "x-original-maxLength": 1024,
19647
20008
  "x-reconciled-from-discovery": true,
19648
- "x-reconciled-at": "2026-01-05T14:38:38.397685+00:00"
20009
+ "x-reconciled-at": "2026-01-05T18:29:35.588447+00:00"
19649
20010
  },
19650
20011
  "disabled": {
19651
20012
  "type": "boolean",
@@ -19695,7 +20056,7 @@
19695
20056
  },
19696
20057
  "x-original-maxLength": 1024,
19697
20058
  "x-reconciled-from-discovery": true,
19698
- "x-reconciled-at": "2026-01-05T14:38:38.397696+00:00"
20059
+ "x-reconciled-at": "2026-01-05T18:29:35.588457+00:00"
19699
20060
  },
19700
20061
  "namespace": {
19701
20062
  "type": "string",
@@ -19714,7 +20075,7 @@
19714
20075
  },
19715
20076
  "x-original-maxLength": 1024,
19716
20077
  "x-reconciled-from-discovery": true,
19717
- "x-reconciled-at": "2026-01-05T14:38:38.397700+00:00"
20078
+ "x-reconciled-at": "2026-01-05T18:29:35.588461+00:00"
19718
20079
  },
19719
20080
  "owner_view": {
19720
20081
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -19755,7 +20116,7 @@
19755
20116
  "x-field-mutability": "read-only",
19756
20117
  "x-original-maxLength": 1024,
19757
20118
  "x-reconciled-from-discovery": true,
19758
- "x-reconciled-at": "2026-01-05T14:38:38.397709+00:00"
20119
+ "x-reconciled-at": "2026-01-05T18:29:35.588469+00:00"
19759
20120
  },
19760
20121
  "uid": {
19761
20122
  "type": "string",
@@ -19776,7 +20137,7 @@
19776
20137
  "x-original-maxLength": 1024,
19777
20138
  "format": "uuid",
19778
20139
  "x-reconciled-from-discovery": true,
19779
- "x-reconciled-at": "2026-01-05T14:38:38.397714+00:00"
20140
+ "x-reconciled-at": "2026-01-05T18:29:35.588474+00:00"
19780
20141
  }
19781
20142
  },
19782
20143
  "x-f5xc-minimum-configuration": {
@@ -19976,7 +20337,7 @@
19976
20337
  },
19977
20338
  "x-original-maxLength": 1024,
19978
20339
  "x-reconciled-from-discovery": true,
19979
- "x-reconciled-at": "2026-01-05T14:38:38.397731+00:00"
20340
+ "x-reconciled-at": "2026-01-05T18:29:35.588489+00:00"
19980
20341
  },
19981
20342
  "start_time": {
19982
20343
  "type": "string",
@@ -20447,7 +20808,7 @@
20447
20808
  },
20448
20809
  "x-original-maxLength": 1024,
20449
20810
  "x-reconciled-from-discovery": true,
20450
- "x-reconciled-at": "2026-01-05T14:38:38.397781+00:00"
20811
+ "x-reconciled-at": "2026-01-05T18:29:35.588524+00:00"
20451
20812
  }
20452
20813
  },
20453
20814
  "x-f5xc-minimum-configuration": {
@@ -21257,7 +21618,7 @@
21257
21618
  },
21258
21619
  "x-original-maxLength": 1024,
21259
21620
  "x-reconciled-from-discovery": true,
21260
- "x-reconciled-at": "2026-01-05T14:38:38.397851+00:00"
21621
+ "x-reconciled-at": "2026-01-05T18:29:35.588586+00:00"
21261
21622
  },
21262
21623
  "warning": {
21263
21624
  "type": "string",
@@ -21337,7 +21698,7 @@
21337
21698
  },
21338
21699
  "x-original-maxLength": 1024,
21339
21700
  "x-reconciled-from-discovery": true,
21340
- "x-reconciled-at": "2026-01-05T14:38:38.397865+00:00"
21701
+ "x-reconciled-at": "2026-01-05T18:29:35.588600+00:00"
21341
21702
  },
21342
21703
  "store_provider": {
21343
21704
  "type": "string",
@@ -21395,7 +21756,7 @@
21395
21756
  },
21396
21757
  "x-original-maxLength": 1024,
21397
21758
  "x-reconciled-from-discovery": true,
21398
- "x-reconciled-at": "2026-01-05T14:38:38.397872+00:00"
21759
+ "x-reconciled-at": "2026-01-05T18:29:35.588606+00:00"
21399
21760
  },
21400
21761
  "url": {
21401
21762
  "type": "string",
@@ -21553,7 +21914,7 @@
21553
21914
  },
21554
21915
  "x-original-maxLength": 1024,
21555
21916
  "x-reconciled-from-discovery": true,
21556
- "x-reconciled-at": "2026-01-05T14:38:38.397912+00:00"
21917
+ "x-reconciled-at": "2026-01-05T18:29:35.588648+00:00"
21557
21918
  }
21558
21919
  },
21559
21920
  "x-f5xc-minimum-configuration": {
@@ -21723,7 +22084,7 @@
21723
22084
  },
21724
22085
  "x-original-maxLength": 1024,
21725
22086
  "x-reconciled-from-discovery": true,
21726
- "x-reconciled-at": "2026-01-05T14:38:38.398034+00:00"
22087
+ "x-reconciled-at": "2026-01-05T18:29:35.588764+00:00"
21727
22088
  },
21728
22089
  "disable_ocsp_stapling": {
21729
22090
  "$ref": "#/components/schemas/ioschemaEmpty"
@@ -21822,7 +22183,7 @@
21822
22183
  },
21823
22184
  "x-original-maxLength": 1024,
21824
22185
  "x-reconciled-from-discovery": true,
21825
- "x-reconciled-at": "2026-01-05T14:38:38.398043+00:00"
22186
+ "x-reconciled-at": "2026-01-05T18:29:35.588773+00:00"
21826
22187
  },
21827
22188
  "previous_value": {
21828
22189
  "type": "string",
@@ -21860,7 +22221,7 @@
21860
22221
  },
21861
22222
  "x-original-maxLength": 1024,
21862
22223
  "x-reconciled-from-discovery": true,
21863
- "x-reconciled-at": "2026-01-05T14:38:38.398051+00:00"
22224
+ "x-reconciled-at": "2026-01-05T18:29:35.588779+00:00"
21864
22225
  }
21865
22226
  },
21866
22227
  "x-f5xc-minimum-configuration": {
@@ -21944,7 +22305,7 @@
21944
22305
  },
21945
22306
  "x-original-maxLength": 1024,
21946
22307
  "x-reconciled-from-discovery": true,
21947
- "x-reconciled-at": "2026-01-05T14:38:38.398055+00:00"
22308
+ "x-reconciled-at": "2026-01-05T18:29:35.588784+00:00"
21948
22309
  },
21949
22310
  "location": {
21950
22311
  "type": "string",
@@ -21961,7 +22322,7 @@
21961
22322
  },
21962
22323
  "x-original-maxLength": 1024,
21963
22324
  "x-reconciled-from-discovery": true,
21964
- "x-reconciled-at": "2026-01-05T14:38:38.398060+00:00"
22325
+ "x-reconciled-at": "2026-01-05T18:29:35.588788+00:00"
21965
22326
  },
21966
22327
  "provider": {
21967
22328
  "type": "string",
@@ -21978,7 +22339,7 @@
21978
22339
  },
21979
22340
  "x-original-maxLength": 1024,
21980
22341
  "x-reconciled-from-discovery": true,
21981
- "x-reconciled-at": "2026-01-05T14:38:38.398064+00:00"
22342
+ "x-reconciled-at": "2026-01-05T18:29:35.588792+00:00"
21982
22343
  },
21983
22344
  "secret_encoding": {
21984
22345
  "$ref": "#/components/schemas/schemaSecretEncodingType"
@@ -22000,7 +22361,7 @@
22000
22361
  "maxLength": 1,
22001
22362
  "minLength": 1,
22002
22363
  "x-reconciled-from-discovery": true,
22003
- "x-reconciled-at": "2026-01-05T14:38:38.398071+00:00"
22364
+ "x-reconciled-at": "2026-01-05T18:29:35.588799+00:00"
22004
22365
  }
22005
22366
  },
22006
22367
  "x-f5xc-minimum-configuration": {
@@ -22039,7 +22400,7 @@
22039
22400
  },
22040
22401
  "x-original-maxLength": 1024,
22041
22402
  "x-reconciled-from-discovery": true,
22042
- "x-reconciled-at": "2026-01-05T14:38:38.398094+00:00"
22403
+ "x-reconciled-at": "2026-01-05T18:29:35.588821+00:00"
22043
22404
  }
22044
22405
  },
22045
22406
  "x-f5xc-minimum-configuration": {
@@ -22254,7 +22615,7 @@
22254
22615
  "maxLength": 16,
22255
22616
  "minLength": 7,
22256
22617
  "x-reconciled-from-discovery": true,
22257
- "x-reconciled-at": "2026-01-05T14:38:38.398121+00:00"
22618
+ "x-reconciled-at": "2026-01-05T18:29:35.588846+00:00"
22258
22619
  },
22259
22620
  "value": {
22260
22621
  "type": "array",
@@ -22273,7 +22634,7 @@
22273
22634
  "maxLength": 15,
22274
22635
  "minLength": 3,
22275
22636
  "x-reconciled-from-discovery": true,
22276
- "x-reconciled-at": "2026-01-05T14:38:38.398127+00:00"
22637
+ "x-reconciled-at": "2026-01-05T18:29:35.588852+00:00"
22277
22638
  }
22278
22639
  },
22279
22640
  "x-f5xc-minimum-configuration": {
@@ -23434,7 +23795,7 @@
23434
23795
  },
23435
23796
  "x-original-maxLength": 1024,
23436
23797
  "x-reconciled-from-discovery": true,
23437
- "x-reconciled-at": "2026-01-05T14:39:04.094343+00:00"
23798
+ "x-reconciled-at": "2026-01-05T18:29:58.931995+00:00"
23438
23799
  },
23439
23800
  "namespace": {
23440
23801
  "type": "string",
@@ -23453,7 +23814,7 @@
23453
23814
  },
23454
23815
  "x-original-maxLength": 1024,
23455
23816
  "x-reconciled-from-discovery": true,
23456
- "x-reconciled-at": "2026-01-05T14:39:04.094347+00:00"
23817
+ "x-reconciled-at": "2026-01-05T18:29:58.932000+00:00"
23457
23818
  }
23458
23819
  },
23459
23820
  "x-f5xc-minimum-configuration": {
@@ -23579,7 +23940,7 @@
23579
23940
  "maxLength": 17,
23580
23941
  "minLength": 17,
23581
23942
  "x-reconciled-from-discovery": true,
23582
- "x-reconciled-at": "2026-01-05T14:39:04.094365+00:00"
23943
+ "x-reconciled-at": "2026-01-05T18:29:58.932017+00:00"
23583
23944
  },
23584
23945
  "system_metadata": {
23585
23946
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -23742,7 +24103,7 @@
23742
24103
  },
23743
24104
  "x-original-maxLength": 1024,
23744
24105
  "x-reconciled-from-discovery": true,
23745
- "x-reconciled-at": "2026-01-05T14:39:04.094381+00:00"
24106
+ "x-reconciled-at": "2026-01-05T18:29:58.932043+00:00"
23746
24107
  },
23747
24108
  "disabled": {
23748
24109
  "type": "boolean",
@@ -23792,7 +24153,7 @@
23792
24153
  },
23793
24154
  "x-original-maxLength": 1024,
23794
24155
  "x-reconciled-from-discovery": true,
23795
- "x-reconciled-at": "2026-01-05T14:39:04.094391+00:00"
24156
+ "x-reconciled-at": "2026-01-05T18:29:58.932055+00:00"
23796
24157
  },
23797
24158
  "namespace": {
23798
24159
  "type": "string",
@@ -23811,7 +24172,7 @@
23811
24172
  },
23812
24173
  "x-original-maxLength": 1024,
23813
24174
  "x-reconciled-from-discovery": true,
23814
- "x-reconciled-at": "2026-01-05T14:39:04.094395+00:00"
24175
+ "x-reconciled-at": "2026-01-05T18:29:58.932060+00:00"
23815
24176
  },
23816
24177
  "owner_view": {
23817
24178
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -23852,7 +24213,7 @@
23852
24213
  "x-field-mutability": "read-only",
23853
24214
  "x-original-maxLength": 1024,
23854
24215
  "x-reconciled-from-discovery": true,
23855
- "x-reconciled-at": "2026-01-05T14:39:04.094403+00:00"
24216
+ "x-reconciled-at": "2026-01-05T18:29:58.932067+00:00"
23856
24217
  },
23857
24218
  "uid": {
23858
24219
  "type": "string",
@@ -23873,7 +24234,7 @@
23873
24234
  "x-original-maxLength": 1024,
23874
24235
  "format": "uuid",
23875
24236
  "x-reconciled-from-discovery": true,
23876
- "x-reconciled-at": "2026-01-05T14:39:04.094409+00:00"
24237
+ "x-reconciled-at": "2026-01-05T18:29:58.932073+00:00"
23877
24238
  }
23878
24239
  },
23879
24240
  "x-f5xc-minimum-configuration": {
@@ -24394,7 +24755,7 @@
24394
24755
  "maxLength": 15,
24395
24756
  "minLength": 3,
24396
24757
  "x-reconciled-from-discovery": true,
24397
- "x-reconciled-at": "2026-01-05T14:39:18.069838+00:00"
24758
+ "x-reconciled-at": "2026-01-05T18:30:11.487229+00:00"
24398
24759
  }
24399
24760
  },
24400
24761
  "x-f5xc-minimum-configuration": {
@@ -24447,7 +24808,7 @@
24447
24808
  "maxLength": 15,
24448
24809
  "minLength": 3,
24449
24810
  "x-reconciled-from-discovery": true,
24450
- "x-reconciled-at": "2026-01-05T14:39:18.069846+00:00"
24811
+ "x-reconciled-at": "2026-01-05T18:30:11.487236+00:00"
24451
24812
  }
24452
24813
  },
24453
24814
  "x-f5xc-minimum-configuration": {
@@ -24499,7 +24860,7 @@
24499
24860
  "maxLength": 15,
24500
24861
  "minLength": 3,
24501
24862
  "x-reconciled-from-discovery": true,
24502
- "x-reconciled-at": "2026-01-05T14:39:18.069852+00:00"
24863
+ "x-reconciled-at": "2026-01-05T18:30:11.487242+00:00"
24503
24864
  }
24504
24865
  },
24505
24866
  "x-f5xc-minimum-configuration": {
@@ -24689,7 +25050,7 @@
24689
25050
  },
24690
25051
  "x-original-maxLength": 1024,
24691
25052
  "x-reconciled-from-discovery": true,
24692
- "x-reconciled-at": "2026-01-05T14:39:18.069975+00:00"
25053
+ "x-reconciled-at": "2026-01-05T18:30:11.487355+00:00"
24693
25054
  },
24694
25055
  "namespace": {
24695
25056
  "type": "string",
@@ -24708,7 +25069,7 @@
24708
25069
  },
24709
25070
  "x-original-maxLength": 1024,
24710
25071
  "x-reconciled-from-discovery": true,
24711
- "x-reconciled-at": "2026-01-05T14:39:18.069980+00:00"
25072
+ "x-reconciled-at": "2026-01-05T18:30:11.487360+00:00"
24712
25073
  }
24713
25074
  },
24714
25075
  "x-f5xc-minimum-configuration": {
@@ -24806,7 +25167,7 @@
24806
25167
  "maxLength": 17,
24807
25168
  "minLength": 17,
24808
25169
  "x-reconciled-from-discovery": true,
24809
- "x-reconciled-at": "2026-01-05T14:39:18.069995+00:00"
25170
+ "x-reconciled-at": "2026-01-05T18:30:11.487373+00:00"
24810
25171
  },
24811
25172
  "system_metadata": {
24812
25173
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -25027,7 +25388,7 @@
25027
25388
  },
25028
25389
  "x-original-maxLength": 1024,
25029
25390
  "x-reconciled-from-discovery": true,
25030
- "x-reconciled-at": "2026-01-05T14:39:18.070015+00:00"
25391
+ "x-reconciled-at": "2026-01-05T18:30:11.487391+00:00"
25031
25392
  },
25032
25393
  "disabled": {
25033
25394
  "type": "boolean",
@@ -25077,7 +25438,7 @@
25077
25438
  },
25078
25439
  "x-original-maxLength": 1024,
25079
25440
  "x-reconciled-from-discovery": true,
25080
- "x-reconciled-at": "2026-01-05T14:39:18.070025+00:00"
25441
+ "x-reconciled-at": "2026-01-05T18:30:11.487401+00:00"
25081
25442
  },
25082
25443
  "namespace": {
25083
25444
  "type": "string",
@@ -25096,7 +25457,7 @@
25096
25457
  },
25097
25458
  "x-original-maxLength": 1024,
25098
25459
  "x-reconciled-from-discovery": true,
25099
- "x-reconciled-at": "2026-01-05T14:39:18.070029+00:00"
25460
+ "x-reconciled-at": "2026-01-05T18:30:11.487405+00:00"
25100
25461
  },
25101
25462
  "owner_view": {
25102
25463
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -25137,7 +25498,7 @@
25137
25498
  "x-field-mutability": "read-only",
25138
25499
  "x-original-maxLength": 1024,
25139
25500
  "x-reconciled-from-discovery": true,
25140
- "x-reconciled-at": "2026-01-05T14:39:18.070038+00:00"
25501
+ "x-reconciled-at": "2026-01-05T18:30:11.487412+00:00"
25141
25502
  },
25142
25503
  "uid": {
25143
25504
  "type": "string",
@@ -25158,7 +25519,7 @@
25158
25519
  "x-original-maxLength": 1024,
25159
25520
  "format": "uuid",
25160
25521
  "x-reconciled-from-discovery": true,
25161
- "x-reconciled-at": "2026-01-05T14:39:18.070043+00:00"
25522
+ "x-reconciled-at": "2026-01-05T18:30:11.487417+00:00"
25162
25523
  }
25163
25524
  },
25164
25525
  "x-f5xc-minimum-configuration": {
@@ -25612,7 +25973,7 @@
25612
25973
  },
25613
25974
  "x-original-maxLength": 1024,
25614
25975
  "x-reconciled-from-discovery": true,
25615
- "x-reconciled-at": "2026-01-05T14:39:18.070090+00:00"
25976
+ "x-reconciled-at": "2026-01-05T18:30:11.487458+00:00"
25616
25977
  },
25617
25978
  "range": {
25618
25979
  "type": "string",
@@ -25801,7 +26162,7 @@
25801
26162
  "maxLength": 16,
25802
26163
  "minLength": 7,
25803
26164
  "x-reconciled-from-discovery": true,
25804
- "x-reconciled-at": "2026-01-05T14:39:18.070103+00:00"
26165
+ "x-reconciled-at": "2026-01-05T18:30:11.487471+00:00"
25805
26166
  },
25806
26167
  "value": {
25807
26168
  "type": "array",
@@ -25820,7 +26181,7 @@
25820
26181
  "maxLength": 15,
25821
26182
  "minLength": 3,
25822
26183
  "x-reconciled-from-discovery": true,
25823
- "x-reconciled-at": "2026-01-05T14:39:18.070109+00:00"
26184
+ "x-reconciled-at": "2026-01-05T18:30:11.487477+00:00"
25824
26185
  }
25825
26186
  },
25826
26187
  "x-f5xc-minimum-configuration": {
@@ -25985,7 +26346,7 @@
25985
26346
  },
25986
26347
  "x-original-maxLength": 1024,
25987
26348
  "x-reconciled-from-discovery": true,
25988
- "x-reconciled-at": "2026-01-05T14:39:18.070123+00:00"
26349
+ "x-reconciled-at": "2026-01-05T18:30:11.487492+00:00"
25989
26350
  }
25990
26351
  },
25991
26352
  "x-f5xc-minimum-configuration": {