@robinmordasiewicz/f5xc-api-mcp 2.0.5-2601050335 → 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 (82) hide show
  1. package/CHANGELOG.md +25 -14
  2. package/README.md +9 -5
  3. package/dist/generator/domain-metadata.d.ts +162 -3
  4. package/dist/generator/domain-metadata.d.ts.map +1 -1
  5. package/dist/generator/domain-metadata.js +263 -20
  6. package/dist/generator/domain-metadata.js.map +1 -1
  7. package/dist/generator/naming/acronyms.d.ts +9 -2
  8. package/dist/generator/naming/acronyms.d.ts.map +1 -1
  9. package/dist/generator/naming/acronyms.js +35 -129
  10. package/dist/generator/naming/acronyms.js.map +1 -1
  11. package/dist/generator/naming/index.d.ts +1 -1
  12. package/dist/generator/naming/index.d.ts.map +1 -1
  13. package/dist/generator/naming/index.js +1 -1
  14. package/dist/generator/naming/index.js.map +1 -1
  15. package/dist/prompts/error-resolution.d.ts +7 -24
  16. package/dist/prompts/error-resolution.d.ts.map +1 -1
  17. package/dist/prompts/error-resolution.js +94 -296
  18. package/dist/prompts/error-resolution.js.map +1 -1
  19. package/dist/prompts/index.d.ts +2 -2
  20. package/dist/prompts/index.d.ts.map +1 -1
  21. package/dist/prompts/index.js +3 -3
  22. package/dist/prompts/index.js.map +1 -1
  23. package/dist/prompts/workflows.d.ts +8 -16
  24. package/dist/prompts/workflows.d.ts.map +1 -1
  25. package/dist/prompts/workflows.js +100 -306
  26. package/dist/prompts/workflows.js.map +1 -1
  27. package/dist/server.d.ts.map +1 -1
  28. package/dist/server.js +9 -7
  29. package/dist/server.js.map +1 -1
  30. package/dist/tools/discovery/best-practices.d.ts +1 -0
  31. package/dist/tools/discovery/best-practices.d.ts.map +1 -1
  32. package/dist/tools/discovery/best-practices.js +135 -226
  33. package/dist/tools/discovery/best-practices.js.map +1 -1
  34. package/dist/tools/discovery/cost-estimator.d.ts.map +1 -1
  35. package/dist/tools/discovery/cost-estimator.js +16 -4
  36. package/dist/tools/discovery/cost-estimator.js.map +1 -1
  37. package/dist/tools/generated/dependency-graph.json +1 -1
  38. package/dist/version.d.ts +2 -2
  39. package/dist/version.d.ts.map +1 -1
  40. package/dist/version.js +2 -2
  41. package/dist/version.js.map +1 -1
  42. package/manifest.json +1 -1
  43. package/package.json +1 -1
  44. package/specs/domains/admin_console_and_ui.json +90 -26
  45. package/specs/domains/ai_services.json +149 -22
  46. package/specs/domains/api.json +598 -179
  47. package/specs/domains/authentication.json +198 -46
  48. package/specs/domains/bigip.json +326 -98
  49. package/specs/domains/billing_and_usage.json +289 -64
  50. package/specs/domains/blindfold.json +384 -110
  51. package/specs/domains/bot_and_threat_defense.json +256 -66
  52. package/specs/domains/cdn.json +477 -181
  53. package/specs/domains/ce_management.json +398 -118
  54. package/specs/domains/certificates.json +253 -78
  55. package/specs/domains/cloud_infrastructure.json +412 -115
  56. package/specs/domains/container_services.json +260 -95
  57. package/specs/domains/data_and_privacy_security.json +210 -68
  58. package/specs/domains/data_intelligence.json +225 -63
  59. package/specs/domains/ddos.json +690 -156
  60. package/specs/domains/dns.json +614 -149
  61. package/specs/domains/managed_kubernetes.json +317 -89
  62. package/specs/domains/marketplace.json +427 -104
  63. package/specs/domains/network.json +950 -231
  64. package/specs/domains/network_security.json +749 -188
  65. package/specs/domains/nginx_one.json +211 -63
  66. package/specs/domains/object_storage.json +126 -13
  67. package/specs/domains/observability.json +622 -103
  68. package/specs/domains/rate_limiting.json +208 -53
  69. package/specs/domains/secops_and_incident_response.json +122 -37
  70. package/specs/domains/service_mesh.json +484 -123
  71. package/specs/domains/shape.json +2359 -314
  72. package/specs/domains/sites.json +1572 -390
  73. package/specs/domains/statistics.json +892 -226
  74. package/specs/domains/support.json +544 -109
  75. package/specs/domains/telemetry_and_insights.json +312 -73
  76. package/specs/domains/tenant_and_identity.json +1881 -273
  77. package/specs/domains/threat_campaign.json +124 -67
  78. package/specs/domains/users.json +225 -72
  79. package/specs/domains/virtual.json +1157 -245
  80. package/specs/domains/vpm_and_node_management.json +59 -2
  81. package/specs/domains/waf.json +565 -140
  82. package/specs/index.json +1758 -5
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Blindfold",
5
5
  "description": "Public key retrieval and secret policy enforcement for encrypted data handling. Policy rules govern access with configurable matching and transformation actions. VoltShare integration provides decryption services, access counting, and audit log aggregation. Namespace-scoped policies enable fine-grained control over sensitive information with administrative overrides.",
6
- "version": "2.0.5",
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": "Encryption key management with policy-based access controls. Audit logging and secure data protection.",
16
- "x-f5xc-cli-domain": "blindfold"
16
+ "x-f5xc-cli-domain": "blindfold",
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
  {
@@ -248,6 +298,13 @@
248
298
  "latency": "moderate",
249
299
  "resource_usage": "moderate"
250
300
  }
301
+ },
302
+ "x-f5xc-discovered-response-time": {
303
+ "p50_ms": 200,
304
+ "p95_ms": 800,
305
+ "p99_ms": 2000,
306
+ "sample_count": 0,
307
+ "source": "estimate"
251
308
  }
252
309
  },
253
310
  "x-displayname": "F5XC Secret Management.",
@@ -450,6 +507,13 @@
450
507
  "latency": "moderate",
451
508
  "resource_usage": "moderate"
452
509
  }
510
+ },
511
+ "x-f5xc-discovered-response-time": {
512
+ "p50_ms": 200,
513
+ "p95_ms": 800,
514
+ "p99_ms": 2000,
515
+ "sample_count": 0,
516
+ "source": "estimate"
453
517
  }
454
518
  },
455
519
  "x-displayname": "F5XC Secret Management.",
@@ -649,6 +713,13 @@
649
713
  "latency": "low",
650
714
  "resource_usage": "low"
651
715
  }
716
+ },
717
+ "x-f5xc-discovered-response-time": {
718
+ "p50_ms": 1000,
719
+ "p95_ms": 3000,
720
+ "p99_ms": 8000,
721
+ "sample_count": 0,
722
+ "source": "estimate"
652
723
  }
653
724
  },
654
725
  "x-displayname": "F5XC VoltShare.",
@@ -849,6 +920,13 @@
849
920
  "latency": "low",
850
921
  "resource_usage": "low"
851
922
  }
923
+ },
924
+ "x-f5xc-discovered-response-time": {
925
+ "p50_ms": 1000,
926
+ "p95_ms": 3000,
927
+ "p99_ms": 8000,
928
+ "sample_count": 0,
929
+ "source": "estimate"
852
930
  }
853
931
  },
854
932
  "x-displayname": "F5XC VoltShare.",
@@ -1063,6 +1141,13 @@
1063
1141
  "latency": "low",
1064
1142
  "resource_usage": "low"
1065
1143
  }
1144
+ },
1145
+ "x-f5xc-discovered-response-time": {
1146
+ "p50_ms": 1000,
1147
+ "p95_ms": 3000,
1148
+ "p99_ms": 8000,
1149
+ "sample_count": 0,
1150
+ "source": "estimate"
1066
1151
  }
1067
1152
  },
1068
1153
  "x-displayname": "F5XC VoltShare.",
@@ -1277,6 +1362,13 @@
1277
1362
  "latency": "low",
1278
1363
  "resource_usage": "low"
1279
1364
  }
1365
+ },
1366
+ "x-f5xc-discovered-response-time": {
1367
+ "p50_ms": 1000,
1368
+ "p95_ms": 3000,
1369
+ "p99_ms": 8000,
1370
+ "sample_count": 0,
1371
+ "source": "estimate"
1280
1372
  }
1281
1373
  },
1282
1374
  "x-displayname": "F5XC VoltShare.",
@@ -1491,6 +1583,13 @@
1491
1583
  "latency": "low",
1492
1584
  "resource_usage": "low"
1493
1585
  }
1586
+ },
1587
+ "x-f5xc-discovered-response-time": {
1588
+ "p50_ms": 1000,
1589
+ "p95_ms": 3000,
1590
+ "p99_ms": 8000,
1591
+ "sample_count": 0,
1592
+ "source": "estimate"
1494
1593
  }
1495
1594
  },
1496
1595
  "x-displayname": "F5XC VoltShare.",
@@ -1690,6 +1789,13 @@
1690
1789
  "latency": "moderate",
1691
1790
  "resource_usage": "moderate"
1692
1791
  }
1792
+ },
1793
+ "x-f5xc-discovered-response-time": {
1794
+ "p50_ms": 200,
1795
+ "p95_ms": 800,
1796
+ "p99_ms": 2000,
1797
+ "sample_count": 0,
1798
+ "source": "estimate"
1693
1799
  }
1694
1800
  },
1695
1801
  "post": {
@@ -1899,6 +2005,13 @@
1899
2005
  "latency": "low",
1900
2006
  "resource_usage": "low"
1901
2007
  }
2008
+ },
2009
+ "x-f5xc-discovered-response-time": {
2010
+ "p50_ms": 1000,
2011
+ "p95_ms": 3000,
2012
+ "p99_ms": 8000,
2013
+ "sample_count": 0,
2014
+ "source": "estimate"
1902
2015
  }
1903
2016
  },
1904
2017
  "x-displayname": "F5XC VoltShare.",
@@ -2113,6 +2226,13 @@
2113
2226
  "latency": "low",
2114
2227
  "resource_usage": "low"
2115
2228
  }
2229
+ },
2230
+ "x-f5xc-discovered-response-time": {
2231
+ "p50_ms": 1000,
2232
+ "p95_ms": 3000,
2233
+ "p99_ms": 8000,
2234
+ "sample_count": 0,
2235
+ "source": "estimate"
2116
2236
  }
2117
2237
  },
2118
2238
  "x-displayname": "Secret Management Access.",
@@ -2335,6 +2455,13 @@
2335
2455
  "latency": "low",
2336
2456
  "resource_usage": "low"
2337
2457
  }
2458
+ },
2459
+ "x-f5xc-discovered-response-time": {
2460
+ "p50_ms": 800,
2461
+ "p95_ms": 2500,
2462
+ "p99_ms": 6000,
2463
+ "sample_count": 0,
2464
+ "source": "estimate"
2338
2465
  }
2339
2466
  },
2340
2467
  "x-displayname": "Secret Management Access.",
@@ -2562,6 +2689,13 @@
2562
2689
  "latency": "moderate",
2563
2690
  "resource_usage": "moderate"
2564
2691
  }
2692
+ },
2693
+ "x-f5xc-discovered-response-time": {
2694
+ "p50_ms": 200,
2695
+ "p95_ms": 800,
2696
+ "p99_ms": 2000,
2697
+ "sample_count": 0,
2698
+ "source": "estimate"
2565
2699
  }
2566
2700
  },
2567
2701
  "x-displayname": "Secret Management Access.",
@@ -2783,6 +2917,13 @@
2783
2917
  "latency": "low",
2784
2918
  "resource_usage": "low"
2785
2919
  }
2920
+ },
2921
+ "x-f5xc-discovered-response-time": {
2922
+ "p50_ms": 200,
2923
+ "p95_ms": 800,
2924
+ "p99_ms": 2000,
2925
+ "sample_count": 0,
2926
+ "source": "estimate"
2786
2927
  }
2787
2928
  },
2788
2929
  "delete": {
@@ -3002,6 +3143,13 @@
3002
3143
  "latency": "high",
3003
3144
  "resource_usage": "moderate"
3004
3145
  }
3146
+ },
3147
+ "x-f5xc-discovered-response-time": {
3148
+ "p50_ms": 500,
3149
+ "p95_ms": 1500,
3150
+ "p99_ms": 4000,
3151
+ "sample_count": 0,
3152
+ "source": "estimate"
3005
3153
  }
3006
3154
  },
3007
3155
  "x-displayname": "Secret Management Access.",
@@ -3217,6 +3365,13 @@
3217
3365
  "latency": "low",
3218
3366
  "resource_usage": "low"
3219
3367
  }
3368
+ },
3369
+ "x-f5xc-discovered-response-time": {
3370
+ "p50_ms": 1000,
3371
+ "p95_ms": 3000,
3372
+ "p99_ms": 8000,
3373
+ "sample_count": 0,
3374
+ "source": "estimate"
3220
3375
  }
3221
3376
  },
3222
3377
  "x-displayname": "Secret Policy.",
@@ -3440,6 +3595,13 @@
3440
3595
  "latency": "low",
3441
3596
  "resource_usage": "low"
3442
3597
  }
3598
+ },
3599
+ "x-f5xc-discovered-response-time": {
3600
+ "p50_ms": 800,
3601
+ "p95_ms": 2500,
3602
+ "p99_ms": 6000,
3603
+ "sample_count": 0,
3604
+ "source": "estimate"
3443
3605
  }
3444
3606
  },
3445
3607
  "x-displayname": "Secret Policy.",
@@ -3642,6 +3804,13 @@
3642
3804
  "latency": "low",
3643
3805
  "resource_usage": "low"
3644
3806
  }
3807
+ },
3808
+ "x-f5xc-discovered-response-time": {
3809
+ "p50_ms": 200,
3810
+ "p95_ms": 800,
3811
+ "p99_ms": 2000,
3812
+ "sample_count": 0,
3813
+ "source": "estimate"
3645
3814
  }
3646
3815
  },
3647
3816
  "x-displayname": "Secret Policy.",
@@ -3870,6 +4039,13 @@
3870
4039
  "latency": "low",
3871
4040
  "resource_usage": "low"
3872
4041
  }
4042
+ },
4043
+ "x-f5xc-discovered-response-time": {
4044
+ "p50_ms": 1000,
4045
+ "p95_ms": 3000,
4046
+ "p99_ms": 8000,
4047
+ "sample_count": 0,
4048
+ "source": "estimate"
3873
4049
  }
3874
4050
  },
3875
4051
  "x-displayname": "Secret Policy.",
@@ -4098,6 +4274,13 @@
4098
4274
  "latency": "low",
4099
4275
  "resource_usage": "low"
4100
4276
  }
4277
+ },
4278
+ "x-f5xc-discovered-response-time": {
4279
+ "p50_ms": 1000,
4280
+ "p95_ms": 3000,
4281
+ "p99_ms": 8000,
4282
+ "sample_count": 0,
4283
+ "source": "estimate"
4101
4284
  }
4102
4285
  },
4103
4286
  "x-displayname": "Secret Policy.",
@@ -4326,6 +4509,13 @@
4326
4509
  "latency": "moderate",
4327
4510
  "resource_usage": "moderate"
4328
4511
  }
4512
+ },
4513
+ "x-f5xc-discovered-response-time": {
4514
+ "p50_ms": 200,
4515
+ "p95_ms": 800,
4516
+ "p99_ms": 2000,
4517
+ "sample_count": 0,
4518
+ "source": "estimate"
4329
4519
  }
4330
4520
  },
4331
4521
  "x-displayname": "Secret Policy.",
@@ -4548,6 +4738,13 @@
4548
4738
  "latency": "low",
4549
4739
  "resource_usage": "low"
4550
4740
  }
4741
+ },
4742
+ "x-f5xc-discovered-response-time": {
4743
+ "p50_ms": 200,
4744
+ "p95_ms": 800,
4745
+ "p99_ms": 2000,
4746
+ "sample_count": 0,
4747
+ "source": "estimate"
4551
4748
  }
4552
4749
  },
4553
4750
  "delete": {
@@ -4768,6 +4965,13 @@
4768
4965
  "latency": "high",
4769
4966
  "resource_usage": "moderate"
4770
4967
  }
4968
+ },
4969
+ "x-f5xc-discovered-response-time": {
4970
+ "p50_ms": 500,
4971
+ "p95_ms": 1500,
4972
+ "p99_ms": 4000,
4973
+ "sample_count": 0,
4974
+ "source": "estimate"
4771
4975
  }
4772
4976
  },
4773
4977
  "x-displayname": "Secret Policy.",
@@ -4983,6 +5187,13 @@
4983
5187
  "latency": "low",
4984
5188
  "resource_usage": "low"
4985
5189
  }
5190
+ },
5191
+ "x-f5xc-discovered-response-time": {
5192
+ "p50_ms": 1000,
5193
+ "p95_ms": 3000,
5194
+ "p99_ms": 8000,
5195
+ "sample_count": 0,
5196
+ "source": "estimate"
4986
5197
  }
4987
5198
  },
4988
5199
  "x-displayname": "Secret Policy Rule.",
@@ -5206,6 +5417,13 @@
5206
5417
  "latency": "low",
5207
5418
  "resource_usage": "low"
5208
5419
  }
5420
+ },
5421
+ "x-f5xc-discovered-response-time": {
5422
+ "p50_ms": 800,
5423
+ "p95_ms": 2500,
5424
+ "p99_ms": 6000,
5425
+ "sample_count": 0,
5426
+ "source": "estimate"
5209
5427
  }
5210
5428
  },
5211
5429
  "x-displayname": "Secret Policy Rule.",
@@ -5434,6 +5652,13 @@
5434
5652
  "latency": "moderate",
5435
5653
  "resource_usage": "moderate"
5436
5654
  }
5655
+ },
5656
+ "x-f5xc-discovered-response-time": {
5657
+ "p50_ms": 200,
5658
+ "p95_ms": 800,
5659
+ "p99_ms": 2000,
5660
+ "sample_count": 0,
5661
+ "source": "estimate"
5437
5662
  }
5438
5663
  },
5439
5664
  "x-displayname": "Secret Policy Rule.",
@@ -5656,6 +5881,13 @@
5656
5881
  "latency": "low",
5657
5882
  "resource_usage": "low"
5658
5883
  }
5884
+ },
5885
+ "x-f5xc-discovered-response-time": {
5886
+ "p50_ms": 200,
5887
+ "p95_ms": 800,
5888
+ "p99_ms": 2000,
5889
+ "sample_count": 0,
5890
+ "source": "estimate"
5659
5891
  }
5660
5892
  },
5661
5893
  "delete": {
@@ -5876,6 +6108,13 @@
5876
6108
  "latency": "high",
5877
6109
  "resource_usage": "moderate"
5878
6110
  }
6111
+ },
6112
+ "x-f5xc-discovered-response-time": {
6113
+ "p50_ms": 500,
6114
+ "p95_ms": 1500,
6115
+ "p99_ms": 4000,
6116
+ "sample_count": 0,
6117
+ "source": "estimate"
5879
6118
  }
5880
6119
  },
5881
6120
  "x-displayname": "Secret Policy Rule.",
@@ -6091,6 +6330,13 @@
6091
6330
  "latency": "low",
6092
6331
  "resource_usage": "low"
6093
6332
  }
6333
+ },
6334
+ "x-f5xc-discovered-response-time": {
6335
+ "p50_ms": 1000,
6336
+ "p95_ms": 3000,
6337
+ "p99_ms": 8000,
6338
+ "sample_count": 0,
6339
+ "source": "estimate"
6094
6340
  }
6095
6341
  },
6096
6342
  "x-displayname": "VoltShare Admin Policy.",
@@ -6314,6 +6560,13 @@
6314
6560
  "latency": "low",
6315
6561
  "resource_usage": "low"
6316
6562
  }
6563
+ },
6564
+ "x-f5xc-discovered-response-time": {
6565
+ "p50_ms": 800,
6566
+ "p95_ms": 2500,
6567
+ "p99_ms": 6000,
6568
+ "sample_count": 0,
6569
+ "source": "estimate"
6317
6570
  }
6318
6571
  },
6319
6572
  "x-displayname": "VoltShare Admin Policy.",
@@ -6542,6 +6795,13 @@
6542
6795
  "latency": "moderate",
6543
6796
  "resource_usage": "moderate"
6544
6797
  }
6798
+ },
6799
+ "x-f5xc-discovered-response-time": {
6800
+ "p50_ms": 200,
6801
+ "p95_ms": 800,
6802
+ "p99_ms": 2000,
6803
+ "sample_count": 0,
6804
+ "source": "estimate"
6545
6805
  }
6546
6806
  },
6547
6807
  "x-displayname": "VoltShare Admin Policy.",
@@ -6764,6 +7024,13 @@
6764
7024
  "latency": "low",
6765
7025
  "resource_usage": "low"
6766
7026
  }
7027
+ },
7028
+ "x-f5xc-discovered-response-time": {
7029
+ "p50_ms": 200,
7030
+ "p95_ms": 800,
7031
+ "p99_ms": 2000,
7032
+ "sample_count": 0,
7033
+ "source": "estimate"
6767
7034
  }
6768
7035
  },
6769
7036
  "delete": {
@@ -6984,6 +7251,13 @@
6984
7251
  "latency": "high",
6985
7252
  "resource_usage": "moderate"
6986
7253
  }
7254
+ },
7255
+ "x-f5xc-discovered-response-time": {
7256
+ "p50_ms": 500,
7257
+ "p95_ms": 1500,
7258
+ "p99_ms": 4000,
7259
+ "sample_count": 0,
7260
+ "source": "estimate"
6987
7261
  }
6988
7262
  },
6989
7263
  "x-displayname": "VoltShare Admin Policy.",
@@ -7447,7 +7721,7 @@
7447
7721
  "x-field-mutability": "read-only",
7448
7722
  "x-original-maxLength": 1024,
7449
7723
  "x-reconciled-from-discovery": true,
7450
- "x-reconciled-at": "2026-01-05T03:03:39.945382+00:00"
7724
+ "x-reconciled-at": "2026-01-05T18:29:18.584690+00:00"
7451
7725
  }
7452
7726
  },
7453
7727
  "x-f5xc-minimum-configuration": {
@@ -7489,7 +7763,7 @@
7489
7763
  },
7490
7764
  "x-original-maxLength": 1024,
7491
7765
  "x-reconciled-from-discovery": true,
7492
- "x-reconciled-at": "2026-01-05T03:03:39.945388+00:00"
7766
+ "x-reconciled-at": "2026-01-05T18:29:18.584697+00:00"
7493
7767
  },
7494
7768
  "namespace": {
7495
7769
  "type": "string",
@@ -7508,7 +7782,7 @@
7508
7782
  },
7509
7783
  "x-original-maxLength": 1024,
7510
7784
  "x-reconciled-from-discovery": true,
7511
- "x-reconciled-at": "2026-01-05T03:03:39.945392+00:00"
7785
+ "x-reconciled-at": "2026-01-05T18:29:18.584702+00:00"
7512
7786
  },
7513
7787
  "policy_id": {
7514
7788
  "type": "string",
@@ -7557,7 +7831,7 @@
7557
7831
  "x-field-mutability": "read-only",
7558
7832
  "x-original-maxLength": 1024,
7559
7833
  "x-reconciled-from-discovery": true,
7560
- "x-reconciled-at": "2026-01-05T03:03:39.945398+00:00"
7834
+ "x-reconciled-at": "2026-01-05T18:29:18.584710+00:00"
7561
7835
  }
7562
7836
  },
7563
7837
  "x-f5xc-minimum-configuration": {
@@ -7659,7 +7933,7 @@
7659
7933
  "maxLength": 15,
7660
7934
  "minLength": 3,
7661
7935
  "x-reconciled-from-discovery": true,
7662
- "x-reconciled-at": "2026-01-05T03:03:40.211749+00:00"
7936
+ "x-reconciled-at": "2026-01-05T18:29:18.915566+00:00"
7663
7937
  }
7664
7938
  },
7665
7939
  "x-f5xc-minimum-configuration": {
@@ -7981,7 +8255,7 @@
7981
8255
  },
7982
8256
  "x-original-maxLength": 1024,
7983
8257
  "x-reconciled-from-discovery": true,
7984
- "x-reconciled-at": "2026-01-05T03:03:40.211778+00:00"
8258
+ "x-reconciled-at": "2026-01-05T18:29:18.915599+00:00"
7985
8259
  },
7986
8260
  "order_by": {
7987
8261
  "$ref": "#/components/schemas/logOrderByData"
@@ -8083,7 +8357,7 @@
8083
8357
  },
8084
8358
  "x-original-maxLength": 1024,
8085
8359
  "x-reconciled-from-discovery": true,
8086
- "x-reconciled-at": "2026-01-05T03:03:40.211789+00:00"
8360
+ "x-reconciled-at": "2026-01-05T18:29:18.915611+00:00"
8087
8361
  },
8088
8362
  "order_by": {
8089
8363
  "$ref": "#/components/schemas/logOrderByData"
@@ -8193,7 +8467,7 @@
8193
8467
  },
8194
8468
  "x-original-maxLength": 1024,
8195
8469
  "x-reconciled-from-discovery": true,
8196
- "x-reconciled-at": "2026-01-05T03:03:40.211802+00:00"
8470
+ "x-reconciled-at": "2026-01-05T18:29:18.915627+00:00"
8197
8471
  }
8198
8472
  },
8199
8473
  "x-f5xc-minimum-configuration": {
@@ -8351,7 +8625,7 @@
8351
8625
  },
8352
8626
  "x-original-maxLength": 1024,
8353
8627
  "x-reconciled-from-discovery": true,
8354
- "x-reconciled-at": "2026-01-05T03:03:40.211813+00:00"
8628
+ "x-reconciled-at": "2026-01-05T18:29:18.915640+00:00"
8355
8629
  },
8356
8630
  "sub_aggs": {
8357
8631
  "type": "object",
@@ -8483,7 +8757,7 @@
8483
8757
  "maxLength": 15,
8484
8758
  "minLength": 3,
8485
8759
  "x-reconciled-from-discovery": true,
8486
- "x-reconciled-at": "2026-01-05T03:03:40.211830+00:00"
8760
+ "x-reconciled-at": "2026-01-05T18:29:18.915660+00:00"
8487
8761
  }
8488
8762
  },
8489
8763
  "x-f5xc-minimum-configuration": {
@@ -8538,7 +8812,7 @@
8538
8812
  "maxLength": 15,
8539
8813
  "minLength": 3,
8540
8814
  "x-reconciled-from-discovery": true,
8541
- "x-reconciled-at": "2026-01-05T03:03:40.211836+00:00"
8815
+ "x-reconciled-at": "2026-01-05T18:29:18.915667+00:00"
8542
8816
  }
8543
8817
  },
8544
8818
  "x-f5xc-minimum-configuration": {
@@ -8755,7 +9029,7 @@
8755
9029
  "maxLength": 16,
8756
9030
  "minLength": 7,
8757
9031
  "x-reconciled-from-discovery": true,
8758
- "x-reconciled-at": "2026-01-05T03:03:40.211856+00:00"
9032
+ "x-reconciled-at": "2026-01-05T18:29:18.915690+00:00"
8759
9033
  },
8760
9034
  "value": {
8761
9035
  "type": "number",
@@ -8771,7 +9045,7 @@
8771
9045
  "maxLength": 15,
8772
9046
  "minLength": 3,
8773
9047
  "x-reconciled-from-discovery": true,
8774
- "x-reconciled-at": "2026-01-05T03:03:40.211860+00:00"
9048
+ "x-reconciled-at": "2026-01-05T18:29:18.915694+00:00"
8775
9049
  }
8776
9050
  },
8777
9051
  "x-f5xc-minimum-configuration": {
@@ -9013,7 +9287,7 @@
9013
9287
  },
9014
9288
  "x-original-maxLength": 1024,
9015
9289
  "x-reconciled-from-discovery": true,
9016
- "x-reconciled-at": "2026-01-05T03:03:40.211878+00:00"
9290
+ "x-reconciled-at": "2026-01-05T18:29:18.915715+00:00"
9017
9291
  }
9018
9292
  },
9019
9293
  "x-f5xc-minimum-configuration": {
@@ -9090,7 +9364,7 @@
9090
9364
  },
9091
9365
  "x-original-maxLength": 1024,
9092
9366
  "x-reconciled-from-discovery": true,
9093
- "x-reconciled-at": "2026-01-05T03:03:40.211884+00:00"
9367
+ "x-reconciled-at": "2026-01-05T18:29:18.915723+00:00"
9094
9368
  }
9095
9369
  },
9096
9370
  "x-f5xc-minimum-configuration": {
@@ -9167,7 +9441,7 @@
9167
9441
  },
9168
9442
  "x-original-maxLength": 1024,
9169
9443
  "x-reconciled-from-discovery": true,
9170
- "x-reconciled-at": "2026-01-05T03:03:40.211888+00:00"
9444
+ "x-reconciled-at": "2026-01-05T18:29:18.915731+00:00"
9171
9445
  },
9172
9446
  "previous_value": {
9173
9447
  "type": "string",
@@ -9201,7 +9475,7 @@
9201
9475
  },
9202
9476
  "x-original-maxLength": 1024,
9203
9477
  "x-reconciled-from-discovery": true,
9204
- "x-reconciled-at": "2026-01-05T03:03:40.211895+00:00"
9478
+ "x-reconciled-at": "2026-01-05T18:29:18.915739+00:00"
9205
9479
  }
9206
9480
  },
9207
9481
  "x-f5xc-minimum-configuration": {
@@ -9277,7 +9551,7 @@
9277
9551
  },
9278
9552
  "x-original-maxLength": 1024,
9279
9553
  "x-reconciled-from-discovery": true,
9280
- "x-reconciled-at": "2026-01-05T03:03:40.211902+00:00"
9554
+ "x-reconciled-at": "2026-01-05T18:29:18.915747+00:00"
9281
9555
  },
9282
9556
  "query": {
9283
9557
  "type": "string",
@@ -9459,7 +9733,7 @@
9459
9733
  },
9460
9734
  "x-original-maxLength": 1024,
9461
9735
  "x-reconciled-from-discovery": true,
9462
- "x-reconciled-at": "2026-01-05T03:03:40.211918+00:00"
9736
+ "x-reconciled-at": "2026-01-05T18:29:18.915763+00:00"
9463
9737
  },
9464
9738
  "query": {
9465
9739
  "type": "string",
@@ -9647,7 +9921,7 @@
9647
9921
  },
9648
9922
  "x-original-maxLength": 1024,
9649
9923
  "x-reconciled-from-discovery": true,
9650
- "x-reconciled-at": "2026-01-05T03:03:40.211933+00:00"
9924
+ "x-reconciled-at": "2026-01-05T18:29:18.915779+00:00"
9651
9925
  },
9652
9926
  "scroll_id": {
9653
9927
  "type": "string",
@@ -10111,7 +10385,7 @@
10111
10385
  "x-field-mutability": "read-only",
10112
10386
  "x-original-maxLength": 256,
10113
10387
  "x-reconciled-from-discovery": true,
10114
- "x-reconciled-at": "2026-01-05T03:03:40.211964+00:00"
10388
+ "x-reconciled-at": "2026-01-05T18:29:18.915813+00:00"
10115
10389
  }
10116
10390
  },
10117
10391
  "x-f5xc-minimum-configuration": {
@@ -10203,7 +10477,7 @@
10203
10477
  },
10204
10478
  "x-original-maxLength": 1024,
10205
10479
  "x-reconciled-from-discovery": true,
10206
- "x-reconciled-at": "2026-01-05T03:03:40.211973+00:00"
10480
+ "x-reconciled-at": "2026-01-05T18:29:18.915822+00:00"
10207
10481
  },
10208
10482
  "start_time": {
10209
10483
  "type": "string",
@@ -10371,7 +10645,7 @@
10371
10645
  },
10372
10646
  "x-original-maxLength": 1024,
10373
10647
  "x-reconciled-from-discovery": true,
10374
- "x-reconciled-at": "2026-01-05T03:04:04.639695+00:00"
10648
+ "x-reconciled-at": "2026-01-05T18:29:49.729280+00:00"
10375
10649
  }
10376
10650
  },
10377
10651
  "x-f5xc-minimum-configuration": {
@@ -10602,7 +10876,7 @@
10602
10876
  },
10603
10877
  "x-original-maxLength": 1024,
10604
10878
  "x-reconciled-from-discovery": true,
10605
- "x-reconciled-at": "2026-01-05T03:04:04.639714+00:00"
10879
+ "x-reconciled-at": "2026-01-05T18:29:49.729303+00:00"
10606
10880
  },
10607
10881
  "store_provider": {
10608
10882
  "type": "string",
@@ -10660,7 +10934,7 @@
10660
10934
  },
10661
10935
  "x-original-maxLength": 1024,
10662
10936
  "x-reconciled-from-discovery": true,
10663
- "x-reconciled-at": "2026-01-05T03:04:04.639720+00:00"
10937
+ "x-reconciled-at": "2026-01-05T18:29:49.729311+00:00"
10664
10938
  },
10665
10939
  "url": {
10666
10940
  "type": "string",
@@ -10757,7 +11031,7 @@
10757
11031
  },
10758
11032
  "x-original-maxLength": 1024,
10759
11033
  "x-reconciled-from-discovery": true,
10760
- "x-reconciled-at": "2026-01-05T03:04:04.639729+00:00"
11034
+ "x-reconciled-at": "2026-01-05T18:29:49.729321+00:00"
10761
11035
  },
10762
11036
  "service_name": {
10763
11037
  "type": "string",
@@ -10796,7 +11070,7 @@
10796
11070
  },
10797
11071
  "x-original-maxLength": 1024,
10798
11072
  "x-reconciled-from-discovery": true,
10799
- "x-reconciled-at": "2026-01-05T03:04:04.639734+00:00"
11073
+ "x-reconciled-at": "2026-01-05T18:29:49.729327+00:00"
10800
11074
  },
10801
11075
  "type": {
10802
11076
  "type": "string",
@@ -11069,7 +11343,7 @@
11069
11343
  },
11070
11344
  "x-original-maxLength": 1024,
11071
11345
  "x-reconciled-from-discovery": true,
11072
- "x-reconciled-at": "2026-01-05T03:04:04.639752+00:00"
11346
+ "x-reconciled-at": "2026-01-05T18:29:49.729354+00:00"
11073
11347
  }
11074
11348
  },
11075
11349
  "x-f5xc-minimum-configuration": {
@@ -11255,7 +11529,7 @@
11255
11529
  },
11256
11530
  "x-original-maxLength": 1200,
11257
11531
  "x-reconciled-from-discovery": true,
11258
- "x-reconciled-at": "2026-01-05T03:04:04.639766+00:00"
11532
+ "x-reconciled-at": "2026-01-05T18:29:49.729370+00:00"
11259
11533
  },
11260
11534
  "disable": {
11261
11535
  "type": "boolean",
@@ -11308,7 +11582,7 @@
11308
11582
  },
11309
11583
  "x-original-maxLength": 1024,
11310
11584
  "x-reconciled-from-discovery": true,
11311
- "x-reconciled-at": "2026-01-05T03:04:04.639773+00:00"
11585
+ "x-reconciled-at": "2026-01-05T18:29:49.729378+00:00"
11312
11586
  },
11313
11587
  "namespace": {
11314
11588
  "type": "string",
@@ -11327,7 +11601,7 @@
11327
11601
  },
11328
11602
  "x-original-maxLength": 1024,
11329
11603
  "x-reconciled-from-discovery": true,
11330
- "x-reconciled-at": "2026-01-05T03:04:04.639776+00:00"
11604
+ "x-reconciled-at": "2026-01-05T18:29:49.729383+00:00"
11331
11605
  }
11332
11606
  },
11333
11607
  "x-f5xc-minimum-configuration": {
@@ -11403,7 +11677,7 @@
11403
11677
  },
11404
11678
  "x-original-maxLength": 1200,
11405
11679
  "x-reconciled-from-discovery": true,
11406
- "x-reconciled-at": "2026-01-05T03:04:04.639782+00:00"
11680
+ "x-reconciled-at": "2026-01-05T18:29:49.729389+00:00"
11407
11681
  },
11408
11682
  "disable": {
11409
11683
  "type": "boolean",
@@ -11458,7 +11732,7 @@
11458
11732
  },
11459
11733
  "x-original-maxLength": 1024,
11460
11734
  "x-reconciled-from-discovery": true,
11461
- "x-reconciled-at": "2026-01-05T03:04:04.639789+00:00"
11735
+ "x-reconciled-at": "2026-01-05T18:29:49.729397+00:00"
11462
11736
  },
11463
11737
  "namespace": {
11464
11738
  "type": "string",
@@ -11477,7 +11751,7 @@
11477
11751
  },
11478
11752
  "x-original-maxLength": 1024,
11479
11753
  "x-reconciled-from-discovery": true,
11480
- "x-reconciled-at": "2026-01-05T03:04:04.639793+00:00"
11754
+ "x-reconciled-at": "2026-01-05T18:29:49.729401+00:00"
11481
11755
  }
11482
11756
  },
11483
11757
  "x-f5xc-minimum-configuration": {
@@ -11522,7 +11796,7 @@
11522
11796
  "readOnly": true,
11523
11797
  "x-original-maxLength": 1024,
11524
11798
  "x-reconciled-from-discovery": true,
11525
- "x-reconciled-at": "2026-01-05T03:04:04.639797+00:00"
11799
+ "x-reconciled-at": "2026-01-05T18:29:49.729406+00:00"
11526
11800
  },
11527
11801
  "name": {
11528
11802
  "type": "string",
@@ -11541,7 +11815,7 @@
11541
11815
  },
11542
11816
  "x-original-maxLength": 1024,
11543
11817
  "x-reconciled-from-discovery": true,
11544
- "x-reconciled-at": "2026-01-05T03:04:04.639801+00:00"
11818
+ "x-reconciled-at": "2026-01-05T18:29:49.729410+00:00"
11545
11819
  },
11546
11820
  "namespace": {
11547
11821
  "type": "string",
@@ -11560,7 +11834,7 @@
11560
11834
  },
11561
11835
  "x-original-maxLength": 1024,
11562
11836
  "x-reconciled-from-discovery": true,
11563
- "x-reconciled-at": "2026-01-05T03:04:04.639805+00:00"
11837
+ "x-reconciled-at": "2026-01-05T18:29:49.729414+00:00"
11564
11838
  },
11565
11839
  "tenant": {
11566
11840
  "type": "string",
@@ -11581,7 +11855,7 @@
11581
11855
  "x-field-mutability": "read-only",
11582
11856
  "x-original-maxLength": 1024,
11583
11857
  "x-reconciled-from-discovery": true,
11584
- "x-reconciled-at": "2026-01-05T03:04:04.639808+00:00"
11858
+ "x-reconciled-at": "2026-01-05T18:29:49.729418+00:00"
11585
11859
  },
11586
11860
  "uid": {
11587
11861
  "type": "string",
@@ -11603,7 +11877,7 @@
11603
11877
  "x-original-maxLength": 1024,
11604
11878
  "format": "uuid",
11605
11879
  "x-reconciled-from-discovery": true,
11606
- "x-reconciled-at": "2026-01-05T03:04:04.639814+00:00"
11880
+ "x-reconciled-at": "2026-01-05T18:29:49.729424+00:00"
11607
11881
  }
11608
11882
  },
11609
11883
  "x-f5xc-minimum-configuration": {
@@ -11678,7 +11952,7 @@
11678
11952
  },
11679
11953
  "x-original-maxLength": 1200,
11680
11954
  "x-reconciled-from-discovery": true,
11681
- "x-reconciled-at": "2026-01-05T03:04:04.639820+00:00"
11955
+ "x-reconciled-at": "2026-01-05T18:29:49.729431+00:00"
11682
11956
  },
11683
11957
  "disable": {
11684
11958
  "type": "boolean",
@@ -11731,7 +12005,7 @@
11731
12005
  },
11732
12006
  "x-original-maxLength": 1024,
11733
12007
  "x-reconciled-from-discovery": true,
11734
- "x-reconciled-at": "2026-01-05T03:04:04.639826+00:00"
12008
+ "x-reconciled-at": "2026-01-05T18:29:49.729439+00:00"
11735
12009
  },
11736
12010
  "namespace": {
11737
12011
  "type": "string",
@@ -11750,7 +12024,7 @@
11750
12024
  },
11751
12025
  "x-original-maxLength": 1024,
11752
12026
  "x-reconciled-from-discovery": true,
11753
- "x-reconciled-at": "2026-01-05T03:04:04.639830+00:00"
12027
+ "x-reconciled-at": "2026-01-05T18:29:49.729443+00:00"
11754
12028
  }
11755
12029
  },
11756
12030
  "x-f5xc-minimum-configuration": {
@@ -12001,7 +12275,7 @@
12001
12275
  "x-original-maxLength": 1024,
12002
12276
  "format": "uuid",
12003
12277
  "x-reconciled-from-discovery": true,
12004
- "x-reconciled-at": "2026-01-05T03:04:04.639852+00:00"
12278
+ "x-reconciled-at": "2026-01-05T18:29:49.729468+00:00"
12005
12279
  },
12006
12280
  "vtrp_id": {
12007
12281
  "type": "string",
@@ -12113,7 +12387,7 @@
12113
12387
  },
12114
12388
  "x-original-maxLength": 1024,
12115
12389
  "x-reconciled-from-discovery": true,
12116
- "x-reconciled-at": "2026-01-05T03:04:04.639860+00:00"
12390
+ "x-reconciled-at": "2026-01-05T18:29:49.729478+00:00"
12117
12391
  },
12118
12392
  "status": {
12119
12393
  "type": "string",
@@ -12132,7 +12406,7 @@
12132
12406
  },
12133
12407
  "x-original-maxLength": 1024,
12134
12408
  "x-reconciled-from-discovery": true,
12135
- "x-reconciled-at": "2026-01-05T03:04:04.639864+00:00"
12409
+ "x-reconciled-at": "2026-01-05T18:29:49.729483+00:00"
12136
12410
  }
12137
12411
  },
12138
12412
  "x-f5xc-minimum-configuration": {
@@ -12310,7 +12584,7 @@
12310
12584
  "x-field-mutability": "read-only",
12311
12585
  "x-original-maxLength": 1024,
12312
12586
  "x-reconciled-from-discovery": true,
12313
- "x-reconciled-at": "2026-01-05T03:04:04.639881+00:00"
12587
+ "x-reconciled-at": "2026-01-05T18:29:49.729501+00:00"
12314
12588
  },
12315
12589
  "uid": {
12316
12590
  "type": "string",
@@ -12331,7 +12605,7 @@
12331
12605
  "x-original-maxLength": 1024,
12332
12606
  "format": "uuid",
12333
12607
  "x-reconciled-from-discovery": true,
12334
- "x-reconciled-at": "2026-01-05T03:04:04.639885+00:00"
12608
+ "x-reconciled-at": "2026-01-05T18:29:49.729507+00:00"
12335
12609
  }
12336
12610
  },
12337
12611
  "x-f5xc-minimum-configuration": {
@@ -12414,7 +12688,7 @@
12414
12688
  },
12415
12689
  "x-original-maxLength": 1024,
12416
12690
  "x-reconciled-from-discovery": true,
12417
- "x-reconciled-at": "2026-01-05T03:04:04.639892+00:00"
12691
+ "x-reconciled-at": "2026-01-05T18:29:49.729515+00:00"
12418
12692
  },
12419
12693
  "disable_ocsp_stapling": {
12420
12694
  "$ref": "#/components/schemas/ioschemaEmpty"
@@ -12969,7 +13243,7 @@
12969
13243
  },
12970
13244
  "x-original-maxLength": 1024,
12971
13245
  "x-reconciled-from-discovery": true,
12972
- "x-reconciled-at": "2026-01-05T03:04:04.639933+00:00"
13246
+ "x-reconciled-at": "2026-01-05T18:29:49.729563+00:00"
12973
13247
  },
12974
13248
  "location": {
12975
13249
  "type": "string",
@@ -12986,7 +13260,7 @@
12986
13260
  },
12987
13261
  "x-original-maxLength": 1024,
12988
13262
  "x-reconciled-from-discovery": true,
12989
- "x-reconciled-at": "2026-01-05T03:04:04.639937+00:00"
13263
+ "x-reconciled-at": "2026-01-05T18:29:49.729568+00:00"
12990
13264
  },
12991
13265
  "provider": {
12992
13266
  "type": "string",
@@ -13003,7 +13277,7 @@
13003
13277
  },
13004
13278
  "x-original-maxLength": 1024,
13005
13279
  "x-reconciled-from-discovery": true,
13006
- "x-reconciled-at": "2026-01-05T03:04:04.639940+00:00"
13280
+ "x-reconciled-at": "2026-01-05T18:29:49.729572+00:00"
13007
13281
  },
13008
13282
  "secret_encoding": {
13009
13283
  "$ref": "#/components/schemas/schemaSecretEncodingType"
@@ -13025,7 +13299,7 @@
13025
13299
  "maxLength": 1,
13026
13300
  "minLength": 1,
13027
13301
  "x-reconciled-from-discovery": true,
13028
- "x-reconciled-at": "2026-01-05T03:04:04.639947+00:00"
13302
+ "x-reconciled-at": "2026-01-05T18:29:49.729579+00:00"
13029
13303
  }
13030
13304
  },
13031
13305
  "x-f5xc-minimum-configuration": {
@@ -13068,7 +13342,7 @@
13068
13342
  },
13069
13343
  "x-original-maxLength": 1024,
13070
13344
  "x-reconciled-from-discovery": true,
13071
- "x-reconciled-at": "2026-01-05T03:04:04.639951+00:00"
13345
+ "x-reconciled-at": "2026-01-05T18:29:49.729584+00:00"
13072
13346
  },
13073
13347
  "name": {
13074
13348
  "type": "string",
@@ -13087,7 +13361,7 @@
13087
13361
  },
13088
13362
  "x-original-maxLength": 1024,
13089
13363
  "x-reconciled-from-discovery": true,
13090
- "x-reconciled-at": "2026-01-05T03:04:04.639955+00:00"
13364
+ "x-reconciled-at": "2026-01-05T18:29:49.729589+00:00"
13091
13365
  },
13092
13366
  "namespace": {
13093
13367
  "type": "string",
@@ -13106,7 +13380,7 @@
13106
13380
  },
13107
13381
  "x-original-maxLength": 1024,
13108
13382
  "x-reconciled-from-discovery": true,
13109
- "x-reconciled-at": "2026-01-05T03:04:04.639959+00:00"
13383
+ "x-reconciled-at": "2026-01-05T18:29:49.729593+00:00"
13110
13384
  },
13111
13385
  "uid": {
13112
13386
  "type": "string",
@@ -13127,7 +13401,7 @@
13127
13401
  "x-original-maxLength": 1024,
13128
13402
  "format": "uuid",
13129
13403
  "x-reconciled-from-discovery": true,
13130
- "x-reconciled-at": "2026-01-05T03:04:04.639963+00:00"
13404
+ "x-reconciled-at": "2026-01-05T18:29:49.729598+00:00"
13131
13405
  }
13132
13406
  },
13133
13407
  "x-f5xc-minimum-configuration": {
@@ -13197,7 +13471,7 @@
13197
13471
  },
13198
13472
  "x-original-maxLength": 1024,
13199
13473
  "x-reconciled-from-discovery": true,
13200
- "x-reconciled-at": "2026-01-05T03:04:04.639967+00:00"
13474
+ "x-reconciled-at": "2026-01-05T18:29:49.729604+00:00"
13201
13475
  }
13202
13476
  },
13203
13477
  "x-f5xc-minimum-configuration": {
@@ -13359,7 +13633,7 @@
13359
13633
  },
13360
13634
  "x-original-maxLength": 1024,
13361
13635
  "x-reconciled-from-discovery": true,
13362
- "x-reconciled-at": "2026-01-05T03:04:04.640001+00:00"
13636
+ "x-reconciled-at": "2026-01-05T18:29:49.729621+00:00"
13363
13637
  },
13364
13638
  "namespace": {
13365
13639
  "type": "string",
@@ -13378,7 +13652,7 @@
13378
13652
  },
13379
13653
  "x-original-maxLength": 1024,
13380
13654
  "x-reconciled-from-discovery": true,
13381
- "x-reconciled-at": "2026-01-05T03:04:04.640007+00:00"
13655
+ "x-reconciled-at": "2026-01-05T18:29:49.729625+00:00"
13382
13656
  }
13383
13657
  },
13384
13658
  "x-f5xc-minimum-configuration": {
@@ -13476,7 +13750,7 @@
13476
13750
  "maxLength": 17,
13477
13751
  "minLength": 17,
13478
13752
  "x-reconciled-from-discovery": true,
13479
- "x-reconciled-at": "2026-01-05T03:04:04.640031+00:00"
13753
+ "x-reconciled-at": "2026-01-05T18:29:49.729642+00:00"
13480
13754
  },
13481
13755
  "system_metadata": {
13482
13756
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -13666,7 +13940,7 @@
13666
13940
  },
13667
13941
  "x-original-maxLength": 1024,
13668
13942
  "x-reconciled-from-discovery": true,
13669
- "x-reconciled-at": "2026-01-05T03:04:04.640045+00:00"
13943
+ "x-reconciled-at": "2026-01-05T18:29:49.729657+00:00"
13670
13944
  },
13671
13945
  "disabled": {
13672
13946
  "type": "boolean",
@@ -13716,7 +13990,7 @@
13716
13990
  },
13717
13991
  "x-original-maxLength": 1024,
13718
13992
  "x-reconciled-from-discovery": true,
13719
- "x-reconciled-at": "2026-01-05T03:04:04.640053+00:00"
13993
+ "x-reconciled-at": "2026-01-05T18:29:49.729666+00:00"
13720
13994
  },
13721
13995
  "namespace": {
13722
13996
  "type": "string",
@@ -13735,7 +14009,7 @@
13735
14009
  },
13736
14010
  "x-original-maxLength": 1024,
13737
14011
  "x-reconciled-from-discovery": true,
13738
- "x-reconciled-at": "2026-01-05T03:04:04.640057+00:00"
14012
+ "x-reconciled-at": "2026-01-05T18:29:49.729670+00:00"
13739
14013
  },
13740
14014
  "owner_view": {
13741
14015
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -13776,7 +14050,7 @@
13776
14050
  "x-field-mutability": "read-only",
13777
14051
  "x-original-maxLength": 1024,
13778
14052
  "x-reconciled-from-discovery": true,
13779
- "x-reconciled-at": "2026-01-05T03:04:04.640063+00:00"
14053
+ "x-reconciled-at": "2026-01-05T18:29:49.729678+00:00"
13780
14054
  },
13781
14055
  "uid": {
13782
14056
  "type": "string",
@@ -13797,7 +14071,7 @@
13797
14071
  "x-original-maxLength": 1024,
13798
14072
  "format": "uuid",
13799
14073
  "x-reconciled-from-discovery": true,
13800
- "x-reconciled-at": "2026-01-05T03:04:04.640067+00:00"
14074
+ "x-reconciled-at": "2026-01-05T18:29:49.729683+00:00"
13801
14075
  }
13802
14076
  },
13803
14077
  "x-f5xc-minimum-configuration": {
@@ -13999,7 +14273,7 @@
13999
14273
  "readOnly": true,
14000
14274
  "x-original-maxLength": 1024,
14001
14275
  "x-reconciled-from-discovery": true,
14002
- "x-reconciled-at": "2026-01-05T03:04:05.046873+00:00"
14276
+ "x-reconciled-at": "2026-01-05T18:29:50.140644+00:00"
14003
14277
  },
14004
14278
  "name": {
14005
14279
  "type": "string",
@@ -14018,7 +14292,7 @@
14018
14292
  },
14019
14293
  "x-original-maxLength": 1024,
14020
14294
  "x-reconciled-from-discovery": true,
14021
- "x-reconciled-at": "2026-01-05T03:04:05.046880+00:00"
14295
+ "x-reconciled-at": "2026-01-05T18:29:50.140651+00:00"
14022
14296
  },
14023
14297
  "namespace": {
14024
14298
  "type": "string",
@@ -14037,7 +14311,7 @@
14037
14311
  },
14038
14312
  "x-original-maxLength": 1024,
14039
14313
  "x-reconciled-from-discovery": true,
14040
- "x-reconciled-at": "2026-01-05T03:04:05.046884+00:00"
14314
+ "x-reconciled-at": "2026-01-05T18:29:50.140656+00:00"
14041
14315
  },
14042
14316
  "tenant": {
14043
14317
  "type": "string",
@@ -14058,7 +14332,7 @@
14058
14332
  "x-field-mutability": "read-only",
14059
14333
  "x-original-maxLength": 1024,
14060
14334
  "x-reconciled-from-discovery": true,
14061
- "x-reconciled-at": "2026-01-05T03:04:05.046888+00:00"
14335
+ "x-reconciled-at": "2026-01-05T18:29:50.140661+00:00"
14062
14336
  },
14063
14337
  "uid": {
14064
14338
  "type": "string",
@@ -14080,7 +14354,7 @@
14080
14354
  "x-original-maxLength": 1024,
14081
14355
  "format": "uuid",
14082
14356
  "x-reconciled-from-discovery": true,
14083
- "x-reconciled-at": "2026-01-05T03:04:05.046894+00:00"
14357
+ "x-reconciled-at": "2026-01-05T18:29:50.140669+00:00"
14084
14358
  }
14085
14359
  },
14086
14360
  "x-f5xc-minimum-configuration": {
@@ -14129,7 +14403,7 @@
14129
14403
  },
14130
14404
  "x-original-maxLength": 256,
14131
14405
  "x-reconciled-from-discovery": true,
14132
- "x-reconciled-at": "2026-01-05T03:04:05.046944+00:00"
14406
+ "x-reconciled-at": "2026-01-05T18:29:50.140727+00:00"
14133
14407
  },
14134
14408
  "name": {
14135
14409
  "type": "string",
@@ -14159,7 +14433,7 @@
14159
14433
  },
14160
14434
  "x-original-maxLength": 1024,
14161
14435
  "x-reconciled-from-discovery": true,
14162
- "x-reconciled-at": "2026-01-05T03:04:05.046948+00:00"
14436
+ "x-reconciled-at": "2026-01-05T18:29:50.140731+00:00"
14163
14437
  }
14164
14438
  },
14165
14439
  "x-f5xc-minimum-configuration": {
@@ -14470,7 +14744,7 @@
14470
14744
  },
14471
14745
  "x-original-maxLength": 1024,
14472
14746
  "x-reconciled-from-discovery": true,
14473
- "x-reconciled-at": "2026-01-05T03:04:05.047106+00:00"
14747
+ "x-reconciled-at": "2026-01-05T18:29:50.140894+00:00"
14474
14748
  },
14475
14749
  "namespace": {
14476
14750
  "type": "string",
@@ -14489,7 +14763,7 @@
14489
14763
  },
14490
14764
  "x-original-maxLength": 1024,
14491
14765
  "x-reconciled-from-discovery": true,
14492
- "x-reconciled-at": "2026-01-05T03:04:05.047110+00:00"
14766
+ "x-reconciled-at": "2026-01-05T18:29:50.140898+00:00"
14493
14767
  }
14494
14768
  },
14495
14769
  "x-f5xc-minimum-configuration": {
@@ -14587,7 +14861,7 @@
14587
14861
  "maxLength": 17,
14588
14862
  "minLength": 17,
14589
14863
  "x-reconciled-from-discovery": true,
14590
- "x-reconciled-at": "2026-01-05T03:04:05.047123+00:00"
14864
+ "x-reconciled-at": "2026-01-05T18:29:50.140914+00:00"
14591
14865
  },
14592
14866
  "system_metadata": {
14593
14867
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -14763,7 +15037,7 @@
14763
15037
  },
14764
15038
  "x-original-maxLength": 1024,
14765
15039
  "x-reconciled-from-discovery": true,
14766
- "x-reconciled-at": "2026-01-05T03:04:05.047135+00:00"
15040
+ "x-reconciled-at": "2026-01-05T18:29:50.140928+00:00"
14767
15041
  },
14768
15042
  "disabled": {
14769
15043
  "type": "boolean",
@@ -14813,7 +15087,7 @@
14813
15087
  },
14814
15088
  "x-original-maxLength": 1024,
14815
15089
  "x-reconciled-from-discovery": true,
14816
- "x-reconciled-at": "2026-01-05T03:04:05.047144+00:00"
15090
+ "x-reconciled-at": "2026-01-05T18:29:50.140939+00:00"
14817
15091
  },
14818
15092
  "namespace": {
14819
15093
  "type": "string",
@@ -14832,7 +15106,7 @@
14832
15106
  },
14833
15107
  "x-original-maxLength": 1024,
14834
15108
  "x-reconciled-from-discovery": true,
14835
- "x-reconciled-at": "2026-01-05T03:04:05.047148+00:00"
15109
+ "x-reconciled-at": "2026-01-05T18:29:50.140943+00:00"
14836
15110
  },
14837
15111
  "system_metadata": {
14838
15112
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -14855,7 +15129,7 @@
14855
15129
  "x-field-mutability": "read-only",
14856
15130
  "x-original-maxLength": 1024,
14857
15131
  "x-reconciled-from-discovery": true,
14858
- "x-reconciled-at": "2026-01-05T03:04:05.047153+00:00"
15132
+ "x-reconciled-at": "2026-01-05T18:29:50.140949+00:00"
14859
15133
  },
14860
15134
  "uid": {
14861
15135
  "type": "string",
@@ -14876,7 +15150,7 @@
14876
15150
  "x-original-maxLength": 1024,
14877
15151
  "format": "uuid",
14878
15152
  "x-reconciled-from-discovery": true,
14879
- "x-reconciled-at": "2026-01-05T03:04:05.047158+00:00"
15153
+ "x-reconciled-at": "2026-01-05T18:29:50.140954+00:00"
14880
15154
  }
14881
15155
  },
14882
15156
  "x-f5xc-minimum-configuration": {
@@ -14986,7 +15260,7 @@
14986
15260
  },
14987
15261
  "x-original-maxLength": 1024,
14988
15262
  "x-reconciled-from-discovery": true,
14989
- "x-reconciled-at": "2026-01-05T03:04:05.047166+00:00"
15263
+ "x-reconciled-at": "2026-01-05T18:29:50.140964+00:00"
14990
15264
  },
14991
15265
  "disabled": {
14992
15266
  "type": "boolean",
@@ -15036,7 +15310,7 @@
15036
15310
  },
15037
15311
  "x-original-maxLength": 1024,
15038
15312
  "x-reconciled-from-discovery": true,
15039
- "x-reconciled-at": "2026-01-05T03:04:05.047175+00:00"
15313
+ "x-reconciled-at": "2026-01-05T18:29:50.140974+00:00"
15040
15314
  },
15041
15315
  "namespace": {
15042
15316
  "type": "string",
@@ -15055,7 +15329,7 @@
15055
15329
  },
15056
15330
  "x-original-maxLength": 1024,
15057
15331
  "x-reconciled-from-discovery": true,
15058
- "x-reconciled-at": "2026-01-05T03:04:05.047179+00:00"
15332
+ "x-reconciled-at": "2026-01-05T18:29:50.140978+00:00"
15059
15333
  },
15060
15334
  "owner_view": {
15061
15335
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -15096,7 +15370,7 @@
15096
15370
  "x-field-mutability": "read-only",
15097
15371
  "x-original-maxLength": 1024,
15098
15372
  "x-reconciled-from-discovery": true,
15099
- "x-reconciled-at": "2026-01-05T03:04:05.047186+00:00"
15373
+ "x-reconciled-at": "2026-01-05T18:29:50.140985+00:00"
15100
15374
  },
15101
15375
  "uid": {
15102
15376
  "type": "string",
@@ -15117,7 +15391,7 @@
15117
15391
  "x-original-maxLength": 1024,
15118
15392
  "format": "uuid",
15119
15393
  "x-reconciled-from-discovery": true,
15120
- "x-reconciled-at": "2026-01-05T03:04:05.047190+00:00"
15394
+ "x-reconciled-at": "2026-01-05T18:29:50.140990+00:00"
15121
15395
  }
15122
15396
  },
15123
15397
  "x-f5xc-minimum-configuration": {
@@ -15175,7 +15449,7 @@
15175
15449
  },
15176
15450
  "x-original-maxLength": 1024,
15177
15451
  "x-reconciled-from-discovery": true,
15178
- "x-reconciled-at": "2026-01-05T03:04:05.047195+00:00"
15452
+ "x-reconciled-at": "2026-01-05T18:29:50.140995+00:00"
15179
15453
  },
15180
15454
  "namespace": {
15181
15455
  "type": "string",
@@ -15201,7 +15475,7 @@
15201
15475
  },
15202
15476
  "x-original-maxLength": 1024,
15203
15477
  "x-reconciled-from-discovery": true,
15204
- "x-reconciled-at": "2026-01-05T03:04:05.047199+00:00"
15478
+ "x-reconciled-at": "2026-01-05T18:29:50.141000+00:00"
15205
15479
  }
15206
15480
  },
15207
15481
  "x-f5xc-minimum-configuration": {
@@ -15241,7 +15515,7 @@
15241
15515
  },
15242
15516
  "x-original-maxLength": 1024,
15243
15517
  "x-reconciled-from-discovery": true,
15244
- "x-reconciled-at": "2026-01-05T03:04:05.047203+00:00"
15518
+ "x-reconciled-at": "2026-01-05T18:29:50.141005+00:00"
15245
15519
  }
15246
15520
  },
15247
15521
  "x-f5xc-minimum-configuration": {
@@ -15398,7 +15672,7 @@
15398
15672
  },
15399
15673
  "x-original-maxLength": 1024,
15400
15674
  "x-reconciled-from-discovery": true,
15401
- "x-reconciled-at": "2026-01-05T03:04:05.047215+00:00"
15675
+ "x-reconciled-at": "2026-01-05T18:29:50.141018+00:00"
15402
15676
  },
15403
15677
  "namespace": {
15404
15678
  "type": "string",
@@ -15424,7 +15698,7 @@
15424
15698
  },
15425
15699
  "x-original-maxLength": 1024,
15426
15700
  "x-reconciled-from-discovery": true,
15427
- "x-reconciled-at": "2026-01-05T03:04:05.047219+00:00"
15701
+ "x-reconciled-at": "2026-01-05T18:29:50.141023+00:00"
15428
15702
  }
15429
15703
  },
15430
15704
  "x-f5xc-minimum-configuration": {
@@ -15464,7 +15738,7 @@
15464
15738
  },
15465
15739
  "x-original-maxLength": 1024,
15466
15740
  "x-reconciled-from-discovery": true,
15467
- "x-reconciled-at": "2026-01-05T03:04:05.047223+00:00"
15741
+ "x-reconciled-at": "2026-01-05T18:29:50.141028+00:00"
15468
15742
  }
15469
15743
  },
15470
15744
  "x-f5xc-minimum-configuration": {
@@ -15873,7 +16147,7 @@
15873
16147
  },
15874
16148
  "x-original-maxLength": 1024,
15875
16149
  "x-reconciled-from-discovery": true,
15876
- "x-reconciled-at": "2026-01-05T03:04:05.326320+00:00"
16150
+ "x-reconciled-at": "2026-01-05T18:29:50.487748+00:00"
15877
16151
  },
15878
16152
  "namespace": {
15879
16153
  "type": "string",
@@ -15892,7 +16166,7 @@
15892
16166
  },
15893
16167
  "x-original-maxLength": 1024,
15894
16168
  "x-reconciled-from-discovery": true,
15895
- "x-reconciled-at": "2026-01-05T03:04:05.326325+00:00"
16169
+ "x-reconciled-at": "2026-01-05T18:29:50.487752+00:00"
15896
16170
  }
15897
16171
  },
15898
16172
  "x-f5xc-minimum-configuration": {
@@ -15990,7 +16264,7 @@
15990
16264
  "maxLength": 17,
15991
16265
  "minLength": 17,
15992
16266
  "x-reconciled-from-discovery": true,
15993
- "x-reconciled-at": "2026-01-05T03:04:05.326338+00:00"
16267
+ "x-reconciled-at": "2026-01-05T18:29:50.487767+00:00"
15994
16268
  },
15995
16269
  "system_metadata": {
15996
16270
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -16125,7 +16399,7 @@
16125
16399
  },
16126
16400
  "x-original-maxLength": 1024,
16127
16401
  "x-reconciled-from-discovery": true,
16128
- "x-reconciled-at": "2026-01-05T03:04:05.326348+00:00"
16402
+ "x-reconciled-at": "2026-01-05T18:29:50.487778+00:00"
16129
16403
  },
16130
16404
  "disabled": {
16131
16405
  "type": "boolean",
@@ -16175,7 +16449,7 @@
16175
16449
  },
16176
16450
  "x-original-maxLength": 1024,
16177
16451
  "x-reconciled-from-discovery": true,
16178
- "x-reconciled-at": "2026-01-05T03:04:05.326357+00:00"
16452
+ "x-reconciled-at": "2026-01-05T18:29:50.487788+00:00"
16179
16453
  },
16180
16454
  "namespace": {
16181
16455
  "type": "string",
@@ -16194,7 +16468,7 @@
16194
16468
  },
16195
16469
  "x-original-maxLength": 1024,
16196
16470
  "x-reconciled-from-discovery": true,
16197
- "x-reconciled-at": "2026-01-05T03:04:05.326361+00:00"
16471
+ "x-reconciled-at": "2026-01-05T18:29:50.487792+00:00"
16198
16472
  },
16199
16473
  "owner_view": {
16200
16474
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -16235,7 +16509,7 @@
16235
16509
  "x-field-mutability": "read-only",
16236
16510
  "x-original-maxLength": 1024,
16237
16511
  "x-reconciled-from-discovery": true,
16238
- "x-reconciled-at": "2026-01-05T03:04:05.326368+00:00"
16512
+ "x-reconciled-at": "2026-01-05T18:29:50.487800+00:00"
16239
16513
  },
16240
16514
  "uid": {
16241
16515
  "type": "string",
@@ -16256,7 +16530,7 @@
16256
16530
  "x-original-maxLength": 1024,
16257
16531
  "format": "uuid",
16258
16532
  "x-reconciled-from-discovery": true,
16259
- "x-reconciled-at": "2026-01-05T03:04:05.326372+00:00"
16533
+ "x-reconciled-at": "2026-01-05T18:29:50.487805+00:00"
16260
16534
  }
16261
16535
  },
16262
16536
  "x-f5xc-minimum-configuration": {
@@ -16773,7 +17047,7 @@
16773
17047
  },
16774
17048
  "x-original-maxLength": 1024,
16775
17049
  "x-reconciled-from-discovery": true,
16776
- "x-reconciled-at": "2026-01-05T03:04:22.765457+00:00"
17050
+ "x-reconciled-at": "2026-01-05T18:30:12.162720+00:00"
16777
17051
  },
16778
17052
  "namespace": {
16779
17053
  "type": "string",
@@ -16792,7 +17066,7 @@
16792
17066
  },
16793
17067
  "x-original-maxLength": 1024,
16794
17068
  "x-reconciled-from-discovery": true,
16795
- "x-reconciled-at": "2026-01-05T03:04:22.765461+00:00"
17069
+ "x-reconciled-at": "2026-01-05T18:30:12.162725+00:00"
16796
17070
  }
16797
17071
  },
16798
17072
  "x-f5xc-minimum-configuration": {
@@ -16890,7 +17164,7 @@
16890
17164
  "maxLength": 17,
16891
17165
  "minLength": 17,
16892
17166
  "x-reconciled-from-discovery": true,
16893
- "x-reconciled-at": "2026-01-05T03:04:22.765474+00:00"
17167
+ "x-reconciled-at": "2026-01-05T18:30:12.162739+00:00"
16894
17168
  },
16895
17169
  "system_metadata": {
16896
17170
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -17025,7 +17299,7 @@
17025
17299
  },
17026
17300
  "x-original-maxLength": 1024,
17027
17301
  "x-reconciled-from-discovery": true,
17028
- "x-reconciled-at": "2026-01-05T03:04:22.765484+00:00"
17302
+ "x-reconciled-at": "2026-01-05T18:30:12.162750+00:00"
17029
17303
  },
17030
17304
  "disabled": {
17031
17305
  "type": "boolean",
@@ -17075,7 +17349,7 @@
17075
17349
  },
17076
17350
  "x-original-maxLength": 1024,
17077
17351
  "x-reconciled-from-discovery": true,
17078
- "x-reconciled-at": "2026-01-05T03:04:22.765493+00:00"
17352
+ "x-reconciled-at": "2026-01-05T18:30:12.162761+00:00"
17079
17353
  },
17080
17354
  "namespace": {
17081
17355
  "type": "string",
@@ -17094,7 +17368,7 @@
17094
17368
  },
17095
17369
  "x-original-maxLength": 1024,
17096
17370
  "x-reconciled-from-discovery": true,
17097
- "x-reconciled-at": "2026-01-05T03:04:22.765496+00:00"
17371
+ "x-reconciled-at": "2026-01-05T18:30:12.162765+00:00"
17098
17372
  },
17099
17373
  "owner_view": {
17100
17374
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -17135,7 +17409,7 @@
17135
17409
  "x-field-mutability": "read-only",
17136
17410
  "x-original-maxLength": 1024,
17137
17411
  "x-reconciled-from-discovery": true,
17138
- "x-reconciled-at": "2026-01-05T03:04:22.765503+00:00"
17412
+ "x-reconciled-at": "2026-01-05T18:30:12.162772+00:00"
17139
17413
  },
17140
17414
  "uid": {
17141
17415
  "type": "string",
@@ -17156,7 +17430,7 @@
17156
17430
  "x-original-maxLength": 1024,
17157
17431
  "format": "uuid",
17158
17432
  "x-reconciled-from-discovery": true,
17159
- "x-reconciled-at": "2026-01-05T03:04:22.765508+00:00"
17433
+ "x-reconciled-at": "2026-01-05T18:30:12.162777+00:00"
17160
17434
  }
17161
17435
  },
17162
17436
  "x-f5xc-minimum-configuration": {
@@ -17354,7 +17628,7 @@
17354
17628
  "x-field-mutability": "read-only",
17355
17629
  "x-original-maxLength": 256,
17356
17630
  "x-reconciled-from-discovery": true,
17357
- "x-reconciled-at": "2026-01-05T03:04:22.765524+00:00"
17631
+ "x-reconciled-at": "2026-01-05T18:30:12.162797+00:00"
17358
17632
  },
17359
17633
  "user_restrictions": {
17360
17634
  "$ref": "#/components/schemas/voltshare_admin_policyUserMatcherType"