@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": "Dns",
5
5
  "description": "Primary and secondary zone configuration with support for A, AAAA, CNAME, CAA, CERT, and AFSDB record types. Zone cloning, BIND file imports, and AXFR transfers for migration. Load balancer health checks with metrics collection and request log analysis. Compliance policies and RRSet management for enterprise name resolution.",
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,101 @@
13
13
  "url": "https://www.f5.com/company/policies/eula"
14
14
  },
15
15
  "summary": "Authoritative zone hosting with BIND and AXFR imports. Health checks, failover policies, and request logging.",
16
- "x-f5xc-cli-domain": "dns"
16
+ "x-f5xc-cli-domain": "dns",
17
+ "x-f5xc-best-practices": {
18
+ "common_errors": [
19
+ {
20
+ "code": 400,
21
+ "message": "Invalid DNS record format",
22
+ "resolution": "Validate record syntax (e.g., IP format for A records)",
23
+ "prevention": "Use DNS record validation before submission"
24
+ },
25
+ {
26
+ "code": 409,
27
+ "message": "DNS zone already exists",
28
+ "resolution": "Use existing zone or delete before recreation",
29
+ "prevention": "Check zone existence before creation"
30
+ },
31
+ {
32
+ "code": 400,
33
+ "message": "DNSSEC signing failed",
34
+ "resolution": "Verify DNSSEC key configuration and chain",
35
+ "prevention": "Test DNSSEC in staging before production"
36
+ }
37
+ ],
38
+ "security_notes": [
39
+ "Enable DNSSEC for zone authentication",
40
+ "Use CAA records to restrict certificate issuance",
41
+ "Configure DNS query logging for security monitoring",
42
+ "Implement rate limiting on DNS responses"
43
+ ],
44
+ "performance_tips": [
45
+ "Set appropriate TTL values based on change frequency",
46
+ "Use GeoDNS for global load distribution",
47
+ "Configure health-based failover for high availability",
48
+ "Enable DNS prefetching hints for faster resolution"
49
+ ]
50
+ },
51
+ "x-f5xc-guided-workflows": [
52
+ {
53
+ "id": "configure_dns_zone",
54
+ "name": "Configure DNS Zone",
55
+ "description": "Set up authoritative DNS zone with records",
56
+ "complexity": "low",
57
+ "estimated_steps": 4,
58
+ "prerequisites": [
59
+ "Domain name ownership",
60
+ "NS delegation configured at registrar"
61
+ ],
62
+ "steps": [
63
+ {
64
+ "order": 1,
65
+ "action": "create_dns_zone",
66
+ "name": "Create DNS Zone",
67
+ "description": "Create authoritative zone for domain",
68
+ "resource": "dns_zone",
69
+ "required_fields": [
70
+ "name",
71
+ "domain"
72
+ ]
73
+ },
74
+ {
75
+ "order": 2,
76
+ "action": "add_dns_records",
77
+ "name": "Add DNS Records",
78
+ "description": "Create A, CNAME, and other records",
79
+ "resource": "dns_record",
80
+ "depends_on": [
81
+ 1
82
+ ],
83
+ "tips": [
84
+ "Use appropriate TTL values",
85
+ "Add MX records for email"
86
+ ]
87
+ },
88
+ {
89
+ "order": 3,
90
+ "action": "enable_dnssec",
91
+ "name": "Enable DNSSEC",
92
+ "description": "Configure DNS security extensions",
93
+ "optional": true,
94
+ "depends_on": [
95
+ 1
96
+ ]
97
+ },
98
+ {
99
+ "order": 4,
100
+ "action": "verify_resolution",
101
+ "name": "Verify DNS Resolution",
102
+ "description": "Test DNS queries",
103
+ "verification": [
104
+ "Query records from public DNS",
105
+ "Verify propagation"
106
+ ]
107
+ }
108
+ ]
109
+ }
110
+ ]
17
111
  },
18
112
  "servers": [
19
113
  {
@@ -280,6 +374,13 @@
280
374
  "latency": "low",
281
375
  "resource_usage": "low"
282
376
  }
377
+ },
378
+ "x-f5xc-discovered-response-time": {
379
+ "p50_ms": 1000,
380
+ "p95_ms": 3000,
381
+ "p99_ms": 8000,
382
+ "sample_count": 0,
383
+ "source": "estimate"
283
384
  }
284
385
  },
285
386
  "x-displayname": "Configure DNS Compliance Checks.",
@@ -502,6 +603,13 @@
502
603
  "latency": "low",
503
604
  "resource_usage": "low"
504
605
  }
606
+ },
607
+ "x-f5xc-discovered-response-time": {
608
+ "p50_ms": 800,
609
+ "p95_ms": 2500,
610
+ "p99_ms": 6000,
611
+ "sample_count": 0,
612
+ "source": "estimate"
505
613
  }
506
614
  },
507
615
  "x-displayname": "Configure DNS Compliance Checks.",
@@ -729,6 +837,13 @@
729
837
  "latency": "moderate",
730
838
  "resource_usage": "moderate"
731
839
  }
840
+ },
841
+ "x-f5xc-discovered-response-time": {
842
+ "p50_ms": 200,
843
+ "p95_ms": 800,
844
+ "p99_ms": 2000,
845
+ "sample_count": 0,
846
+ "source": "estimate"
732
847
  }
733
848
  },
734
849
  "x-displayname": "Configure DNS Compliance Checks.",
@@ -950,6 +1065,13 @@
950
1065
  "latency": "low",
951
1066
  "resource_usage": "low"
952
1067
  }
1068
+ },
1069
+ "x-f5xc-discovered-response-time": {
1070
+ "p50_ms": 200,
1071
+ "p95_ms": 800,
1072
+ "p99_ms": 2000,
1073
+ "sample_count": 0,
1074
+ "source": "estimate"
953
1075
  }
954
1076
  },
955
1077
  "delete": {
@@ -1169,6 +1291,13 @@
1169
1291
  "latency": "high",
1170
1292
  "resource_usage": "moderate"
1171
1293
  }
1294
+ },
1295
+ "x-f5xc-discovered-response-time": {
1296
+ "p50_ms": 500,
1297
+ "p95_ms": 1500,
1298
+ "p99_ms": 4000,
1299
+ "sample_count": 0,
1300
+ "source": "estimate"
1172
1301
  }
1173
1302
  },
1174
1303
  "x-displayname": "Configure DNS Compliance Checks.",
@@ -1383,6 +1512,13 @@
1383
1512
  "latency": "low",
1384
1513
  "resource_usage": "low"
1385
1514
  }
1515
+ },
1516
+ "x-f5xc-discovered-response-time": {
1517
+ "p50_ms": 1000,
1518
+ "p95_ms": 3000,
1519
+ "p99_ms": 8000,
1520
+ "sample_count": 0,
1521
+ "source": "estimate"
1386
1522
  }
1387
1523
  },
1388
1524
  "x-displayname": "DNS Domain.",
@@ -1605,6 +1741,13 @@
1605
1741
  "latency": "low",
1606
1742
  "resource_usage": "low"
1607
1743
  }
1744
+ },
1745
+ "x-f5xc-discovered-response-time": {
1746
+ "p50_ms": 800,
1747
+ "p95_ms": 2500,
1748
+ "p99_ms": 6000,
1749
+ "sample_count": 0,
1750
+ "source": "estimate"
1608
1751
  }
1609
1752
  },
1610
1753
  "x-displayname": "DNS Domain.",
@@ -1832,6 +1975,13 @@
1832
1975
  "latency": "low",
1833
1976
  "resource_usage": "low"
1834
1977
  }
1978
+ },
1979
+ "x-f5xc-discovered-response-time": {
1980
+ "p50_ms": 1000,
1981
+ "p95_ms": 3000,
1982
+ "p99_ms": 8000,
1983
+ "sample_count": 0,
1984
+ "source": "estimate"
1835
1985
  }
1836
1986
  },
1837
1987
  "x-displayname": "DNS Domain.",
@@ -2059,6 +2209,13 @@
2059
2209
  "latency": "moderate",
2060
2210
  "resource_usage": "moderate"
2061
2211
  }
2212
+ },
2213
+ "x-f5xc-discovered-response-time": {
2214
+ "p50_ms": 200,
2215
+ "p95_ms": 800,
2216
+ "p99_ms": 2000,
2217
+ "sample_count": 0,
2218
+ "source": "estimate"
2062
2219
  }
2063
2220
  },
2064
2221
  "x-displayname": "DNS Domain.",
@@ -2280,6 +2437,13 @@
2280
2437
  "latency": "low",
2281
2438
  "resource_usage": "low"
2282
2439
  }
2440
+ },
2441
+ "x-f5xc-discovered-response-time": {
2442
+ "p50_ms": 200,
2443
+ "p95_ms": 800,
2444
+ "p99_ms": 2000,
2445
+ "sample_count": 0,
2446
+ "source": "estimate"
2283
2447
  }
2284
2448
  },
2285
2449
  "delete": {
@@ -2499,6 +2663,13 @@
2499
2663
  "latency": "high",
2500
2664
  "resource_usage": "moderate"
2501
2665
  }
2666
+ },
2667
+ "x-f5xc-discovered-response-time": {
2668
+ "p50_ms": 500,
2669
+ "p95_ms": 1500,
2670
+ "p99_ms": 4000,
2671
+ "sample_count": 0,
2672
+ "source": "estimate"
2502
2673
  }
2503
2674
  },
2504
2675
  "x-displayname": "DNS Domain.",
@@ -2698,6 +2869,13 @@
2698
2869
  "latency": "low",
2699
2870
  "resource_usage": "low"
2700
2871
  }
2872
+ },
2873
+ "x-f5xc-discovered-response-time": {
2874
+ "p50_ms": 1000,
2875
+ "p95_ms": 3000,
2876
+ "p99_ms": 8000,
2877
+ "sample_count": 0,
2878
+ "source": "estimate"
2701
2879
  }
2702
2880
  },
2703
2881
  "x-displayname": "DNS Load Balancer.",
@@ -2912,6 +3090,13 @@
2912
3090
  "latency": "low",
2913
3091
  "resource_usage": "low"
2914
3092
  }
3093
+ },
3094
+ "x-f5xc-discovered-response-time": {
3095
+ "p50_ms": 1000,
3096
+ "p95_ms": 3000,
3097
+ "p99_ms": 8000,
3098
+ "sample_count": 0,
3099
+ "source": "estimate"
2915
3100
  }
2916
3101
  },
2917
3102
  "x-displayname": "DNS Load Balancer.",
@@ -3134,6 +3319,13 @@
3134
3319
  "latency": "low",
3135
3320
  "resource_usage": "low"
3136
3321
  }
3322
+ },
3323
+ "x-f5xc-discovered-response-time": {
3324
+ "p50_ms": 800,
3325
+ "p95_ms": 2500,
3326
+ "p99_ms": 6000,
3327
+ "sample_count": 0,
3328
+ "source": "estimate"
3137
3329
  }
3138
3330
  },
3139
3331
  "x-displayname": "DNS Load Balancer.",
@@ -3361,6 +3553,13 @@
3361
3553
  "latency": "moderate",
3362
3554
  "resource_usage": "moderate"
3363
3555
  }
3556
+ },
3557
+ "x-f5xc-discovered-response-time": {
3558
+ "p50_ms": 200,
3559
+ "p95_ms": 800,
3560
+ "p99_ms": 2000,
3561
+ "sample_count": 0,
3562
+ "source": "estimate"
3364
3563
  }
3365
3564
  },
3366
3565
  "x-displayname": "DNS Load Balancer.",
@@ -3549,6 +3748,13 @@
3549
3748
  "latency": "moderate",
3550
3749
  "resource_usage": "moderate"
3551
3750
  }
3751
+ },
3752
+ "x-f5xc-discovered-response-time": {
3753
+ "p50_ms": 200,
3754
+ "p95_ms": 800,
3755
+ "p99_ms": 2000,
3756
+ "sample_count": 0,
3757
+ "source": "estimate"
3552
3758
  }
3553
3759
  },
3554
3760
  "x-displayname": "DNS Load Balancer.",
@@ -3738,6 +3944,13 @@
3738
3944
  "latency": "moderate",
3739
3945
  "resource_usage": "moderate"
3740
3946
  }
3947
+ },
3948
+ "x-f5xc-discovered-response-time": {
3949
+ "p50_ms": 200,
3950
+ "p95_ms": 800,
3951
+ "p99_ms": 2000,
3952
+ "sample_count": 0,
3953
+ "source": "estimate"
3741
3954
  }
3742
3955
  },
3743
3956
  "x-displayname": "DNS Load Balancer.",
@@ -3953,6 +4166,13 @@
3953
4166
  "latency": "moderate",
3954
4167
  "resource_usage": "moderate"
3955
4168
  }
4169
+ },
4170
+ "x-f5xc-discovered-response-time": {
4171
+ "p50_ms": 200,
4172
+ "p95_ms": 800,
4173
+ "p99_ms": 2000,
4174
+ "sample_count": 0,
4175
+ "source": "estimate"
3956
4176
  }
3957
4177
  },
3958
4178
  "x-displayname": "DNS Load Balancer.",
@@ -4181,6 +4401,13 @@
4181
4401
  "latency": "moderate",
4182
4402
  "resource_usage": "moderate"
4183
4403
  }
4404
+ },
4405
+ "x-f5xc-discovered-response-time": {
4406
+ "p50_ms": 200,
4407
+ "p95_ms": 800,
4408
+ "p99_ms": 2000,
4409
+ "sample_count": 0,
4410
+ "source": "estimate"
4184
4411
  }
4185
4412
  },
4186
4413
  "x-displayname": "DNS Load Balancer.",
@@ -4402,6 +4629,13 @@
4402
4629
  "latency": "low",
4403
4630
  "resource_usage": "low"
4404
4631
  }
4632
+ },
4633
+ "x-f5xc-discovered-response-time": {
4634
+ "p50_ms": 200,
4635
+ "p95_ms": 800,
4636
+ "p99_ms": 2000,
4637
+ "sample_count": 0,
4638
+ "source": "estimate"
4405
4639
  }
4406
4640
  },
4407
4641
  "delete": {
@@ -4621,6 +4855,13 @@
4621
4855
  "latency": "high",
4622
4856
  "resource_usage": "moderate"
4623
4857
  }
4858
+ },
4859
+ "x-f5xc-discovered-response-time": {
4860
+ "p50_ms": 500,
4861
+ "p95_ms": 1500,
4862
+ "p99_ms": 4000,
4863
+ "sample_count": 0,
4864
+ "source": "estimate"
4624
4865
  }
4625
4866
  },
4626
4867
  "x-displayname": "DNS Load Balancer.",
@@ -4822,6 +5063,13 @@
4822
5063
  "latency": "moderate",
4823
5064
  "resource_usage": "moderate"
4824
5065
  }
5066
+ },
5067
+ "x-f5xc-discovered-response-time": {
5068
+ "p50_ms": 200,
5069
+ "p95_ms": 800,
5070
+ "p99_ms": 2000,
5071
+ "sample_count": 0,
5072
+ "source": "estimate"
4825
5073
  }
4826
5074
  },
4827
5075
  "x-displayname": "DNS Load Balancer.",
@@ -5036,6 +5284,13 @@
5036
5284
  "latency": "low",
5037
5285
  "resource_usage": "low"
5038
5286
  }
5287
+ },
5288
+ "x-f5xc-discovered-response-time": {
5289
+ "p50_ms": 1000,
5290
+ "p95_ms": 3000,
5291
+ "p99_ms": 8000,
5292
+ "sample_count": 0,
5293
+ "source": "estimate"
5039
5294
  }
5040
5295
  },
5041
5296
  "x-displayname": "DNS Load Balancer Health Check.",
@@ -5258,6 +5513,13 @@
5258
5513
  "latency": "low",
5259
5514
  "resource_usage": "low"
5260
5515
  }
5516
+ },
5517
+ "x-f5xc-discovered-response-time": {
5518
+ "p50_ms": 800,
5519
+ "p95_ms": 2500,
5520
+ "p99_ms": 6000,
5521
+ "sample_count": 0,
5522
+ "source": "estimate"
5261
5523
  }
5262
5524
  },
5263
5525
  "x-displayname": "DNS Load Balancer Health Check.",
@@ -5485,6 +5747,13 @@
5485
5747
  "latency": "moderate",
5486
5748
  "resource_usage": "moderate"
5487
5749
  }
5750
+ },
5751
+ "x-f5xc-discovered-response-time": {
5752
+ "p50_ms": 200,
5753
+ "p95_ms": 800,
5754
+ "p99_ms": 2000,
5755
+ "sample_count": 0,
5756
+ "source": "estimate"
5488
5757
  }
5489
5758
  },
5490
5759
  "x-displayname": "DNS Load Balancer Health Check.",
@@ -5706,6 +5975,13 @@
5706
5975
  "latency": "low",
5707
5976
  "resource_usage": "low"
5708
5977
  }
5978
+ },
5979
+ "x-f5xc-discovered-response-time": {
5980
+ "p50_ms": 200,
5981
+ "p95_ms": 800,
5982
+ "p99_ms": 2000,
5983
+ "sample_count": 0,
5984
+ "source": "estimate"
5709
5985
  }
5710
5986
  },
5711
5987
  "delete": {
@@ -5925,6 +6201,13 @@
5925
6201
  "latency": "high",
5926
6202
  "resource_usage": "moderate"
5927
6203
  }
6204
+ },
6205
+ "x-f5xc-discovered-response-time": {
6206
+ "p50_ms": 500,
6207
+ "p95_ms": 1500,
6208
+ "p99_ms": 4000,
6209
+ "sample_count": 0,
6210
+ "source": "estimate"
5928
6211
  }
5929
6212
  },
5930
6213
  "x-displayname": "DNS Load Balancer Health Check.",
@@ -6140,6 +6423,13 @@
6140
6423
  "latency": "low",
6141
6424
  "resource_usage": "low"
6142
6425
  }
6426
+ },
6427
+ "x-f5xc-discovered-response-time": {
6428
+ "p50_ms": 1000,
6429
+ "p95_ms": 3000,
6430
+ "p99_ms": 8000,
6431
+ "sample_count": 0,
6432
+ "source": "estimate"
6143
6433
  }
6144
6434
  },
6145
6435
  "x-displayname": "DNS Load Balancer Pool.",
@@ -6363,6 +6653,13 @@
6363
6653
  "latency": "low",
6364
6654
  "resource_usage": "low"
6365
6655
  }
6656
+ },
6657
+ "x-f5xc-discovered-response-time": {
6658
+ "p50_ms": 800,
6659
+ "p95_ms": 2500,
6660
+ "p99_ms": 6000,
6661
+ "sample_count": 0,
6662
+ "source": "estimate"
6366
6663
  }
6367
6664
  },
6368
6665
  "x-displayname": "DNS Load Balancer Pool.",
@@ -6591,6 +6888,13 @@
6591
6888
  "latency": "moderate",
6592
6889
  "resource_usage": "moderate"
6593
6890
  }
6891
+ },
6892
+ "x-f5xc-discovered-response-time": {
6893
+ "p50_ms": 200,
6894
+ "p95_ms": 800,
6895
+ "p99_ms": 2000,
6896
+ "sample_count": 0,
6897
+ "source": "estimate"
6594
6898
  }
6595
6899
  },
6596
6900
  "x-displayname": "DNS Load Balancer Pool.",
@@ -6813,6 +7117,13 @@
6813
7117
  "latency": "low",
6814
7118
  "resource_usage": "low"
6815
7119
  }
7120
+ },
7121
+ "x-f5xc-discovered-response-time": {
7122
+ "p50_ms": 200,
7123
+ "p95_ms": 800,
7124
+ "p99_ms": 2000,
7125
+ "sample_count": 0,
7126
+ "source": "estimate"
6816
7127
  }
6817
7128
  },
6818
7129
  "delete": {
@@ -7033,6 +7344,13 @@
7033
7344
  "latency": "high",
7034
7345
  "resource_usage": "moderate"
7035
7346
  }
7347
+ },
7348
+ "x-f5xc-discovered-response-time": {
7349
+ "p50_ms": 500,
7350
+ "p95_ms": 1500,
7351
+ "p99_ms": 4000,
7352
+ "sample_count": 0,
7353
+ "source": "estimate"
7036
7354
  }
7037
7355
  },
7038
7356
  "x-displayname": "DNS Load Balancer Pool.",
@@ -7232,6 +7550,13 @@
7232
7550
  "latency": "low",
7233
7551
  "resource_usage": "low"
7234
7552
  }
7553
+ },
7554
+ "x-f5xc-discovered-response-time": {
7555
+ "p50_ms": 1000,
7556
+ "p95_ms": 3000,
7557
+ "p99_ms": 8000,
7558
+ "sample_count": 0,
7559
+ "source": "estimate"
7235
7560
  }
7236
7561
  },
7237
7562
  "x-displayname": "DNS Zone",
@@ -7431,6 +7756,13 @@
7431
7756
  "latency": "low",
7432
7757
  "resource_usage": "low"
7433
7758
  }
7759
+ },
7760
+ "x-f5xc-discovered-response-time": {
7761
+ "p50_ms": 1000,
7762
+ "p95_ms": 3000,
7763
+ "p99_ms": 8000,
7764
+ "sample_count": 0,
7765
+ "source": "estimate"
7434
7766
  }
7435
7767
  },
7436
7768
  "x-displayname": "DNS Zone",
@@ -7630,6 +7962,13 @@
7630
7962
  "latency": "low",
7631
7963
  "resource_usage": "low"
7632
7964
  }
7965
+ },
7966
+ "x-f5xc-discovered-response-time": {
7967
+ "p50_ms": 1000,
7968
+ "p95_ms": 3000,
7969
+ "p99_ms": 8000,
7970
+ "sample_count": 0,
7971
+ "source": "estimate"
7633
7972
  }
7634
7973
  },
7635
7974
  "x-displayname": "DNS Zone",
@@ -7829,6 +8168,13 @@
7829
8168
  "latency": "low",
7830
8169
  "resource_usage": "low"
7831
8170
  }
8171
+ },
8172
+ "x-f5xc-discovered-response-time": {
8173
+ "p50_ms": 1000,
8174
+ "p95_ms": 3000,
8175
+ "p99_ms": 8000,
8176
+ "sample_count": 0,
8177
+ "source": "estimate"
7832
8178
  }
7833
8179
  },
7834
8180
  "x-displayname": "DNS Zone",
@@ -8028,6 +8374,13 @@
8028
8374
  "latency": "low",
8029
8375
  "resource_usage": "low"
8030
8376
  }
8377
+ },
8378
+ "x-f5xc-discovered-response-time": {
8379
+ "p50_ms": 1000,
8380
+ "p95_ms": 3000,
8381
+ "p99_ms": 8000,
8382
+ "sample_count": 0,
8383
+ "source": "estimate"
8031
8384
  }
8032
8385
  },
8033
8386
  "x-displayname": "DNS Zone",
@@ -8242,6 +8595,13 @@
8242
8595
  "latency": "low",
8243
8596
  "resource_usage": "low"
8244
8597
  }
8598
+ },
8599
+ "x-f5xc-discovered-response-time": {
8600
+ "p50_ms": 1000,
8601
+ "p95_ms": 3000,
8602
+ "p99_ms": 8000,
8603
+ "sample_count": 0,
8604
+ "source": "estimate"
8245
8605
  }
8246
8606
  },
8247
8607
  "x-displayname": "DNS Zone",
@@ -8464,6 +8824,13 @@
8464
8824
  "latency": "low",
8465
8825
  "resource_usage": "low"
8466
8826
  }
8827
+ },
8828
+ "x-f5xc-discovered-response-time": {
8829
+ "p50_ms": 800,
8830
+ "p95_ms": 2500,
8831
+ "p99_ms": 6000,
8832
+ "sample_count": 0,
8833
+ "source": "estimate"
8467
8834
  }
8468
8835
  },
8469
8836
  "x-displayname": "DNS Zone",
@@ -8665,6 +9032,13 @@
8665
9032
  "latency": "moderate",
8666
9033
  "resource_usage": "moderate"
8667
9034
  }
9035
+ },
9036
+ "x-f5xc-discovered-response-time": {
9037
+ "p50_ms": 200,
9038
+ "p95_ms": 800,
9039
+ "p99_ms": 2000,
9040
+ "sample_count": 0,
9041
+ "source": "estimate"
8668
9042
  }
8669
9043
  },
8670
9044
  "x-displayname": "DNS Zone",
@@ -8866,6 +9240,13 @@
8866
9240
  "latency": "moderate",
8867
9241
  "resource_usage": "moderate"
8868
9242
  }
9243
+ },
9244
+ "x-f5xc-discovered-response-time": {
9245
+ "p50_ms": 200,
9246
+ "p95_ms": 800,
9247
+ "p99_ms": 2000,
9248
+ "sample_count": 0,
9249
+ "source": "estimate"
8869
9250
  }
8870
9251
  },
8871
9252
  "x-displayname": "DNS Zone",
@@ -9067,6 +9448,13 @@
9067
9448
  "latency": "moderate",
9068
9449
  "resource_usage": "moderate"
9069
9450
  }
9451
+ },
9452
+ "x-f5xc-discovered-response-time": {
9453
+ "p50_ms": 200,
9454
+ "p95_ms": 800,
9455
+ "p99_ms": 2000,
9456
+ "sample_count": 0,
9457
+ "source": "estimate"
9070
9458
  }
9071
9459
  },
9072
9460
  "x-displayname": "DNS Zone",
@@ -9294,6 +9682,13 @@
9294
9682
  "latency": "moderate",
9295
9683
  "resource_usage": "moderate"
9296
9684
  }
9685
+ },
9686
+ "x-f5xc-discovered-response-time": {
9687
+ "p50_ms": 200,
9688
+ "p95_ms": 800,
9689
+ "p99_ms": 2000,
9690
+ "sample_count": 0,
9691
+ "source": "estimate"
9297
9692
  }
9298
9693
  },
9299
9694
  "x-displayname": "DNS Zone",
@@ -9508,6 +9903,13 @@
9508
9903
  "latency": "low",
9509
9904
  "resource_usage": "low"
9510
9905
  }
9906
+ },
9907
+ "x-f5xc-discovered-response-time": {
9908
+ "p50_ms": 1000,
9909
+ "p95_ms": 3000,
9910
+ "p99_ms": 8000,
9911
+ "sample_count": 0,
9912
+ "source": "estimate"
9511
9913
  }
9512
9914
  },
9513
9915
  "x-displayname": "DNS Zone",
@@ -9722,6 +10124,13 @@
9722
10124
  "latency": "low",
9723
10125
  "resource_usage": "low"
9724
10126
  }
10127
+ },
10128
+ "x-f5xc-discovered-response-time": {
10129
+ "p50_ms": 1000,
10130
+ "p95_ms": 3000,
10131
+ "p99_ms": 8000,
10132
+ "sample_count": 0,
10133
+ "source": "estimate"
9725
10134
  }
9726
10135
  },
9727
10136
  "x-displayname": "DNS Zone",
@@ -9943,6 +10352,13 @@
9943
10352
  "latency": "low",
9944
10353
  "resource_usage": "low"
9945
10354
  }
10355
+ },
10356
+ "x-f5xc-discovered-response-time": {
10357
+ "p50_ms": 200,
10358
+ "p95_ms": 800,
10359
+ "p99_ms": 2000,
10360
+ "sample_count": 0,
10361
+ "source": "estimate"
9946
10362
  }
9947
10363
  },
9948
10364
  "delete": {
@@ -10162,6 +10578,13 @@
10162
10578
  "latency": "high",
10163
10579
  "resource_usage": "moderate"
10164
10580
  }
10581
+ },
10582
+ "x-f5xc-discovered-response-time": {
10583
+ "p50_ms": 500,
10584
+ "p95_ms": 1500,
10585
+ "p99_ms": 4000,
10586
+ "sample_count": 0,
10587
+ "source": "estimate"
10165
10588
  }
10166
10589
  },
10167
10590
  "x-displayname": "DNS Zone",
@@ -10387,6 +10810,13 @@
10387
10810
  "latency": "low",
10388
10811
  "resource_usage": "low"
10389
10812
  }
10813
+ },
10814
+ "x-f5xc-discovered-response-time": {
10815
+ "p50_ms": 1000,
10816
+ "p95_ms": 3000,
10817
+ "p99_ms": 8000,
10818
+ "sample_count": 0,
10819
+ "source": "estimate"
10390
10820
  }
10391
10821
  },
10392
10822
  "x-displayname": "F5XC DNS Management RRSet API.",
@@ -10610,6 +11040,13 @@
10610
11040
  "latency": "low",
10611
11041
  "resource_usage": "low"
10612
11042
  }
11043
+ },
11044
+ "x-f5xc-discovered-response-time": {
11045
+ "p50_ms": 200,
11046
+ "p95_ms": 800,
11047
+ "p99_ms": 2000,
11048
+ "sample_count": 0,
11049
+ "source": "estimate"
10613
11050
  }
10614
11051
  },
10615
11052
  "delete": {
@@ -10843,6 +11280,13 @@
10843
11280
  "latency": "high",
10844
11281
  "resource_usage": "moderate"
10845
11282
  }
11283
+ },
11284
+ "x-f5xc-discovered-response-time": {
11285
+ "p50_ms": 500,
11286
+ "p95_ms": 1500,
11287
+ "p99_ms": 4000,
11288
+ "sample_count": 0,
11289
+ "source": "estimate"
10846
11290
  }
10847
11291
  },
10848
11292
  "put": {
@@ -11082,6 +11526,13 @@
11082
11526
  "latency": "low",
11083
11527
  "resource_usage": "low"
11084
11528
  }
11529
+ },
11530
+ "x-f5xc-discovered-response-time": {
11531
+ "p50_ms": 800,
11532
+ "p95_ms": 2500,
11533
+ "p99_ms": 6000,
11534
+ "sample_count": 0,
11535
+ "source": "estimate"
11085
11536
  }
11086
11537
  },
11087
11538
  "x-displayname": "F5XC DNS Management RRSet API.",
@@ -11281,6 +11732,13 @@
11281
11732
  "latency": "low",
11282
11733
  "resource_usage": "low"
11283
11734
  }
11735
+ },
11736
+ "x-f5xc-discovered-response-time": {
11737
+ "p50_ms": 1000,
11738
+ "p95_ms": 3000,
11739
+ "p99_ms": 8000,
11740
+ "sample_count": 0,
11741
+ "source": "estimate"
11284
11742
  }
11285
11743
  },
11286
11744
  "x-displayname": "F5XC DNS Management Subscription API.",
@@ -11480,6 +11938,13 @@
11480
11938
  "latency": "low",
11481
11939
  "resource_usage": "low"
11482
11940
  }
11941
+ },
11942
+ "x-f5xc-discovered-response-time": {
11943
+ "p50_ms": 1000,
11944
+ "p95_ms": 3000,
11945
+ "p99_ms": 8000,
11946
+ "sample_count": 0,
11947
+ "source": "estimate"
11483
11948
  }
11484
11949
  },
11485
11950
  "x-displayname": "F5XC DNS Management Subscription API.",
@@ -11733,7 +12198,7 @@
11733
12198
  },
11734
12199
  "x-original-maxLength": 1024,
11735
12200
  "x-reconciled-from-discovery": true,
11736
- "x-reconciled-at": "2026-01-05T14:38:02.847496+00:00"
12201
+ "x-reconciled-at": "2026-01-05T18:29:03.441804+00:00"
11737
12202
  },
11738
12203
  "namespace": {
11739
12204
  "type": "string",
@@ -11752,7 +12217,7 @@
11752
12217
  },
11753
12218
  "x-original-maxLength": 1024,
11754
12219
  "x-reconciled-from-discovery": true,
11755
- "x-reconciled-at": "2026-01-05T14:38:02.847503+00:00"
12220
+ "x-reconciled-at": "2026-01-05T18:29:03.441811+00:00"
11756
12221
  }
11757
12222
  },
11758
12223
  "x-f5xc-minimum-configuration": {
@@ -11976,7 +12441,7 @@
11976
12441
  "maxLength": 17,
11977
12442
  "minLength": 17,
11978
12443
  "x-reconciled-from-discovery": true,
11979
- "x-reconciled-at": "2026-01-05T14:38:02.847520+00:00"
12444
+ "x-reconciled-at": "2026-01-05T18:29:03.441828+00:00"
11980
12445
  },
11981
12446
  "system_metadata": {
11982
12447
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -12224,7 +12689,7 @@
12224
12689
  },
12225
12690
  "x-original-maxLength": 1024,
12226
12691
  "x-reconciled-from-discovery": true,
12227
- "x-reconciled-at": "2026-01-05T14:38:02.847541+00:00"
12692
+ "x-reconciled-at": "2026-01-05T18:29:03.441846+00:00"
12228
12693
  },
12229
12694
  "disabled": {
12230
12695
  "type": "boolean",
@@ -12274,7 +12739,7 @@
12274
12739
  },
12275
12740
  "x-original-maxLength": 1024,
12276
12741
  "x-reconciled-from-discovery": true,
12277
- "x-reconciled-at": "2026-01-05T14:38:02.847551+00:00"
12742
+ "x-reconciled-at": "2026-01-05T18:29:03.441857+00:00"
12278
12743
  },
12279
12744
  "namespace": {
12280
12745
  "type": "string",
@@ -12293,7 +12758,7 @@
12293
12758
  },
12294
12759
  "x-original-maxLength": 1024,
12295
12760
  "x-reconciled-from-discovery": true,
12296
- "x-reconciled-at": "2026-01-05T14:38:02.847556+00:00"
12761
+ "x-reconciled-at": "2026-01-05T18:29:03.441861+00:00"
12297
12762
  },
12298
12763
  "owner_view": {
12299
12764
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -12334,7 +12799,7 @@
12334
12799
  "x-field-mutability": "read-only",
12335
12800
  "x-original-maxLength": 1024,
12336
12801
  "x-reconciled-from-discovery": true,
12337
- "x-reconciled-at": "2026-01-05T14:38:02.847564+00:00"
12802
+ "x-reconciled-at": "2026-01-05T18:29:03.441870+00:00"
12338
12803
  },
12339
12804
  "uid": {
12340
12805
  "type": "string",
@@ -12355,7 +12820,7 @@
12355
12820
  "x-original-maxLength": 1024,
12356
12821
  "format": "uuid",
12357
12822
  "x-reconciled-from-discovery": true,
12358
- "x-reconciled-at": "2026-01-05T14:38:02.847570+00:00"
12823
+ "x-reconciled-at": "2026-01-05T18:29:03.441876+00:00"
12359
12824
  }
12360
12825
  },
12361
12826
  "x-f5xc-minimum-configuration": {
@@ -12604,7 +13069,7 @@
12604
13069
  "readOnly": true,
12605
13070
  "x-original-maxLength": 1024,
12606
13071
  "x-reconciled-from-discovery": true,
12607
- "x-reconciled-at": "2026-01-05T14:38:02.847591+00:00"
13072
+ "x-reconciled-at": "2026-01-05T18:29:03.441901+00:00"
12608
13073
  },
12609
13074
  "name": {
12610
13075
  "type": "string",
@@ -12623,7 +13088,7 @@
12623
13088
  },
12624
13089
  "x-original-maxLength": 1024,
12625
13090
  "x-reconciled-from-discovery": true,
12626
- "x-reconciled-at": "2026-01-05T14:38:02.847595+00:00"
13091
+ "x-reconciled-at": "2026-01-05T18:29:03.441906+00:00"
12627
13092
  },
12628
13093
  "namespace": {
12629
13094
  "type": "string",
@@ -12642,7 +13107,7 @@
12642
13107
  },
12643
13108
  "x-original-maxLength": 1024,
12644
13109
  "x-reconciled-from-discovery": true,
12645
- "x-reconciled-at": "2026-01-05T14:38:02.847600+00:00"
13110
+ "x-reconciled-at": "2026-01-05T18:29:03.441911+00:00"
12646
13111
  },
12647
13112
  "tenant": {
12648
13113
  "type": "string",
@@ -12663,7 +13128,7 @@
12663
13128
  "x-field-mutability": "read-only",
12664
13129
  "x-original-maxLength": 1024,
12665
13130
  "x-reconciled-from-discovery": true,
12666
- "x-reconciled-at": "2026-01-05T14:38:02.847604+00:00"
13131
+ "x-reconciled-at": "2026-01-05T18:29:03.441915+00:00"
12667
13132
  },
12668
13133
  "uid": {
12669
13134
  "type": "string",
@@ -12685,7 +13150,7 @@
12685
13150
  "x-original-maxLength": 1024,
12686
13151
  "format": "uuid",
12687
13152
  "x-reconciled-from-discovery": true,
12688
- "x-reconciled-at": "2026-01-05T14:38:02.847609+00:00"
13153
+ "x-reconciled-at": "2026-01-05T18:29:03.441921+00:00"
12689
13154
  }
12690
13155
  },
12691
13156
  "x-f5xc-minimum-configuration": {
@@ -12734,7 +13199,7 @@
12734
13199
  },
12735
13200
  "x-original-maxLength": 1024,
12736
13201
  "x-reconciled-from-discovery": true,
12737
- "x-reconciled-at": "2026-01-05T14:38:02.847616+00:00"
13202
+ "x-reconciled-at": "2026-01-05T18:29:03.441927+00:00"
12738
13203
  }
12739
13204
  },
12740
13205
  "x-f5xc-minimum-configuration": {
@@ -12803,7 +13268,7 @@
12803
13268
  },
12804
13269
  "x-original-maxLength": 1024,
12805
13270
  "x-reconciled-from-discovery": true,
12806
- "x-reconciled-at": "2026-01-05T14:38:02.847624+00:00"
13271
+ "x-reconciled-at": "2026-01-05T18:29:03.441935+00:00"
12807
13272
  },
12808
13273
  "service_name": {
12809
13274
  "type": "string",
@@ -12842,7 +13307,7 @@
12842
13307
  },
12843
13308
  "x-original-maxLength": 1024,
12844
13309
  "x-reconciled-from-discovery": true,
12845
- "x-reconciled-at": "2026-01-05T14:38:02.847630+00:00"
13310
+ "x-reconciled-at": "2026-01-05T18:29:03.441941+00:00"
12846
13311
  },
12847
13312
  "type": {
12848
13313
  "type": "string",
@@ -12979,7 +13444,7 @@
12979
13444
  },
12980
13445
  "x-original-maxLength": 1024,
12981
13446
  "x-reconciled-from-discovery": true,
12982
- "x-reconciled-at": "2026-01-05T14:38:02.847642+00:00"
13447
+ "x-reconciled-at": "2026-01-05T18:29:03.441953+00:00"
12983
13448
  }
12984
13449
  },
12985
13450
  "x-f5xc-minimum-configuration": {
@@ -13088,7 +13553,7 @@
13088
13553
  },
13089
13554
  "x-original-maxLength": 1200,
13090
13555
  "x-reconciled-from-discovery": true,
13091
- "x-reconciled-at": "2026-01-05T14:38:02.847653+00:00"
13556
+ "x-reconciled-at": "2026-01-05T18:29:03.441963+00:00"
13092
13557
  },
13093
13558
  "disable": {
13094
13559
  "type": "boolean",
@@ -13141,7 +13606,7 @@
13141
13606
  },
13142
13607
  "x-original-maxLength": 1024,
13143
13608
  "x-reconciled-from-discovery": true,
13144
- "x-reconciled-at": "2026-01-05T14:38:02.847661+00:00"
13609
+ "x-reconciled-at": "2026-01-05T18:29:03.441970+00:00"
13145
13610
  },
13146
13611
  "namespace": {
13147
13612
  "type": "string",
@@ -13160,7 +13625,7 @@
13160
13625
  },
13161
13626
  "x-original-maxLength": 1024,
13162
13627
  "x-reconciled-from-discovery": true,
13163
- "x-reconciled-at": "2026-01-05T14:38:02.847665+00:00"
13628
+ "x-reconciled-at": "2026-01-05T18:29:03.441974+00:00"
13164
13629
  }
13165
13630
  },
13166
13631
  "x-f5xc-minimum-configuration": {
@@ -13236,7 +13701,7 @@
13236
13701
  },
13237
13702
  "x-original-maxLength": 1200,
13238
13703
  "x-reconciled-from-discovery": true,
13239
- "x-reconciled-at": "2026-01-05T14:38:02.847672+00:00"
13704
+ "x-reconciled-at": "2026-01-05T18:29:03.441982+00:00"
13240
13705
  },
13241
13706
  "disable": {
13242
13707
  "type": "boolean",
@@ -13291,7 +13756,7 @@
13291
13756
  },
13292
13757
  "x-original-maxLength": 1024,
13293
13758
  "x-reconciled-from-discovery": true,
13294
- "x-reconciled-at": "2026-01-05T14:38:02.847680+00:00"
13759
+ "x-reconciled-at": "2026-01-05T18:29:03.441989+00:00"
13295
13760
  },
13296
13761
  "namespace": {
13297
13762
  "type": "string",
@@ -13310,7 +13775,7 @@
13310
13775
  },
13311
13776
  "x-original-maxLength": 1024,
13312
13777
  "x-reconciled-from-discovery": true,
13313
- "x-reconciled-at": "2026-01-05T14:38:02.847684+00:00"
13778
+ "x-reconciled-at": "2026-01-05T18:29:03.441993+00:00"
13314
13779
  }
13315
13780
  },
13316
13781
  "x-f5xc-minimum-configuration": {
@@ -13386,7 +13851,7 @@
13386
13851
  },
13387
13852
  "x-original-maxLength": 1200,
13388
13853
  "x-reconciled-from-discovery": true,
13389
- "x-reconciled-at": "2026-01-05T14:38:02.847691+00:00"
13854
+ "x-reconciled-at": "2026-01-05T18:29:03.441999+00:00"
13390
13855
  },
13391
13856
  "disable": {
13392
13857
  "type": "boolean",
@@ -13439,7 +13904,7 @@
13439
13904
  },
13440
13905
  "x-original-maxLength": 1024,
13441
13906
  "x-reconciled-from-discovery": true,
13442
- "x-reconciled-at": "2026-01-05T14:38:02.847699+00:00"
13907
+ "x-reconciled-at": "2026-01-05T18:29:03.442007+00:00"
13443
13908
  },
13444
13909
  "namespace": {
13445
13910
  "type": "string",
@@ -13458,7 +13923,7 @@
13458
13923
  },
13459
13924
  "x-original-maxLength": 1024,
13460
13925
  "x-reconciled-from-discovery": true,
13461
- "x-reconciled-at": "2026-01-05T14:38:02.847703+00:00"
13926
+ "x-reconciled-at": "2026-01-05T18:29:03.442011+00:00"
13462
13927
  }
13463
13928
  },
13464
13929
  "x-f5xc-minimum-configuration": {
@@ -13572,7 +14037,7 @@
13572
14037
  "x-original-maxLength": 1024,
13573
14038
  "format": "uuid",
13574
14039
  "x-reconciled-from-discovery": true,
13575
- "x-reconciled-at": "2026-01-05T14:38:02.847716+00:00"
14040
+ "x-reconciled-at": "2026-01-05T18:29:03.442023+00:00"
13576
14041
  },
13577
14042
  "vtrp_id": {
13578
14043
  "type": "string",
@@ -13684,7 +14149,7 @@
13684
14149
  },
13685
14150
  "x-original-maxLength": 1024,
13686
14151
  "x-reconciled-from-discovery": true,
13687
- "x-reconciled-at": "2026-01-05T14:38:02.847726+00:00"
14152
+ "x-reconciled-at": "2026-01-05T18:29:03.442044+00:00"
13688
14153
  },
13689
14154
  "status": {
13690
14155
  "type": "string",
@@ -13703,7 +14168,7 @@
13703
14168
  },
13704
14169
  "x-original-maxLength": 1024,
13705
14170
  "x-reconciled-from-discovery": true,
13706
- "x-reconciled-at": "2026-01-05T14:38:02.847730+00:00"
14171
+ "x-reconciled-at": "2026-01-05T18:29:03.442049+00:00"
13707
14172
  }
13708
14173
  },
13709
14174
  "x-f5xc-minimum-configuration": {
@@ -13881,7 +14346,7 @@
13881
14346
  "x-field-mutability": "read-only",
13882
14347
  "x-original-maxLength": 1024,
13883
14348
  "x-reconciled-from-discovery": true,
13884
- "x-reconciled-at": "2026-01-05T14:38:02.847751+00:00"
14349
+ "x-reconciled-at": "2026-01-05T18:29:03.442068+00:00"
13885
14350
  },
13886
14351
  "uid": {
13887
14352
  "type": "string",
@@ -13902,7 +14367,7 @@
13902
14367
  "x-original-maxLength": 1024,
13903
14368
  "format": "uuid",
13904
14369
  "x-reconciled-from-discovery": true,
13905
- "x-reconciled-at": "2026-01-05T14:38:02.847766+00:00"
14370
+ "x-reconciled-at": "2026-01-05T18:29:03.442073+00:00"
13906
14371
  }
13907
14372
  },
13908
14373
  "x-f5xc-minimum-configuration": {
@@ -13952,7 +14417,7 @@
13952
14417
  },
13953
14418
  "x-original-maxLength": 1024,
13954
14419
  "x-reconciled-from-discovery": true,
13955
- "x-reconciled-at": "2026-01-05T14:38:02.847773+00:00"
14420
+ "x-reconciled-at": "2026-01-05T18:29:03.442077+00:00"
13956
14421
  },
13957
14422
  "name": {
13958
14423
  "type": "string",
@@ -13971,7 +14436,7 @@
13971
14436
  },
13972
14437
  "x-original-maxLength": 1024,
13973
14438
  "x-reconciled-from-discovery": true,
13974
- "x-reconciled-at": "2026-01-05T14:38:02.847777+00:00"
14439
+ "x-reconciled-at": "2026-01-05T18:29:03.442081+00:00"
13975
14440
  },
13976
14441
  "namespace": {
13977
14442
  "type": "string",
@@ -13990,7 +14455,7 @@
13990
14455
  },
13991
14456
  "x-original-maxLength": 1024,
13992
14457
  "x-reconciled-from-discovery": true,
13993
- "x-reconciled-at": "2026-01-05T14:38:02.847781+00:00"
14458
+ "x-reconciled-at": "2026-01-05T18:29:03.442086+00:00"
13994
14459
  },
13995
14460
  "uid": {
13996
14461
  "type": "string",
@@ -14011,7 +14476,7 @@
14011
14476
  "x-original-maxLength": 1024,
14012
14477
  "format": "uuid",
14013
14478
  "x-reconciled-from-discovery": true,
14014
- "x-reconciled-at": "2026-01-05T14:38:02.847786+00:00"
14479
+ "x-reconciled-at": "2026-01-05T18:29:03.442090+00:00"
14015
14480
  }
14016
14481
  },
14017
14482
  "x-f5xc-minimum-configuration": {
@@ -14064,7 +14529,7 @@
14064
14529
  },
14065
14530
  "x-original-maxLength": 128,
14066
14531
  "x-reconciled-from-discovery": true,
14067
- "x-reconciled-at": "2026-01-05T14:38:02.847792+00:00"
14532
+ "x-reconciled-at": "2026-01-05T18:29:03.442096+00:00"
14068
14533
  },
14069
14534
  "namespace": {
14070
14535
  "type": "string",
@@ -14089,7 +14554,7 @@
14089
14554
  },
14090
14555
  "x-original-maxLength": 64,
14091
14556
  "x-reconciled-from-discovery": true,
14092
- "x-reconciled-at": "2026-01-05T14:38:02.847796+00:00"
14557
+ "x-reconciled-at": "2026-01-05T18:29:03.442100+00:00"
14093
14558
  },
14094
14559
  "tenant": {
14095
14560
  "type": "string",
@@ -14116,7 +14581,7 @@
14116
14581
  "x-field-mutability": "read-only",
14117
14582
  "x-original-maxLength": 64,
14118
14583
  "x-reconciled-from-discovery": true,
14119
- "x-reconciled-at": "2026-01-05T14:38:02.847800+00:00"
14584
+ "x-reconciled-at": "2026-01-05T18:29:03.442104+00:00"
14120
14585
  }
14121
14586
  },
14122
14587
  "x-f5xc-minimum-configuration": {
@@ -14489,7 +14954,7 @@
14489
14954
  },
14490
14955
  "x-original-maxLength": 1024,
14491
14956
  "x-reconciled-from-discovery": true,
14492
- "x-reconciled-at": "2026-01-05T14:38:11.361783+00:00"
14957
+ "x-reconciled-at": "2026-01-05T18:29:11.248192+00:00"
14493
14958
  },
14494
14959
  "namespace": {
14495
14960
  "type": "string",
@@ -14508,7 +14973,7 @@
14508
14973
  },
14509
14974
  "x-original-maxLength": 1024,
14510
14975
  "x-reconciled-from-discovery": true,
14511
- "x-reconciled-at": "2026-01-05T14:38:11.361791+00:00"
14976
+ "x-reconciled-at": "2026-01-05T18:29:11.248199+00:00"
14512
14977
  }
14513
14978
  },
14514
14979
  "x-f5xc-minimum-configuration": {
@@ -14606,7 +15071,7 @@
14606
15071
  "maxLength": 17,
14607
15072
  "minLength": 17,
14608
15073
  "x-reconciled-from-discovery": true,
14609
- "x-reconciled-at": "2026-01-05T14:38:11.361807+00:00"
15074
+ "x-reconciled-at": "2026-01-05T18:29:11.248216+00:00"
14610
15075
  },
14611
15076
  "system_metadata": {
14612
15077
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -14680,7 +15145,7 @@
14680
15145
  "x-original-maxLength": 1024,
14681
15146
  "format": "hostname",
14682
15147
  "x-reconciled-from-discovery": true,
14683
- "x-reconciled-at": "2026-01-05T14:38:11.361817+00:00"
15148
+ "x-reconciled-at": "2026-01-05T18:29:11.248226+00:00"
14684
15149
  },
14685
15150
  "txt_record": {
14686
15151
  "type": "string",
@@ -14799,7 +15264,7 @@
14799
15264
  },
14800
15265
  "x-original-maxLength": 1024,
14801
15266
  "x-reconciled-from-discovery": true,
14802
- "x-reconciled-at": "2026-01-05T14:38:11.361831+00:00"
15267
+ "x-reconciled-at": "2026-01-05T18:29:11.248238+00:00"
14803
15268
  },
14804
15269
  "disabled": {
14805
15270
  "type": "boolean",
@@ -14849,7 +15314,7 @@
14849
15314
  },
14850
15315
  "x-original-maxLength": 1024,
14851
15316
  "x-reconciled-from-discovery": true,
14852
- "x-reconciled-at": "2026-01-05T14:38:11.361842+00:00"
15317
+ "x-reconciled-at": "2026-01-05T18:29:11.248249+00:00"
14853
15318
  },
14854
15319
  "namespace": {
14855
15320
  "type": "string",
@@ -14868,7 +15333,7 @@
14868
15333
  },
14869
15334
  "x-original-maxLength": 1024,
14870
15335
  "x-reconciled-from-discovery": true,
14871
- "x-reconciled-at": "2026-01-05T14:38:11.361846+00:00"
15336
+ "x-reconciled-at": "2026-01-05T18:29:11.248253+00:00"
14872
15337
  },
14873
15338
  "owner_view": {
14874
15339
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -14909,7 +15374,7 @@
14909
15374
  "x-field-mutability": "read-only",
14910
15375
  "x-original-maxLength": 1024,
14911
15376
  "x-reconciled-from-discovery": true,
14912
- "x-reconciled-at": "2026-01-05T14:38:11.361854+00:00"
15377
+ "x-reconciled-at": "2026-01-05T18:29:11.248261+00:00"
14913
15378
  },
14914
15379
  "uid": {
14915
15380
  "type": "string",
@@ -14930,7 +15395,7 @@
14930
15395
  "x-original-maxLength": 1024,
14931
15396
  "format": "uuid",
14932
15397
  "x-reconciled-from-discovery": true,
14933
- "x-reconciled-at": "2026-01-05T14:38:11.361860+00:00"
15398
+ "x-reconciled-at": "2026-01-05T18:29:11.248266+00:00"
14934
15399
  }
14935
15400
  },
14936
15401
  "x-f5xc-minimum-configuration": {
@@ -15108,7 +15573,7 @@
15108
15573
  },
15109
15574
  "x-original-maxLength": 1024,
15110
15575
  "x-reconciled-from-discovery": true,
15111
- "x-reconciled-at": "2026-01-05T14:38:11.361877+00:00"
15576
+ "x-reconciled-at": "2026-01-05T18:29:11.248282+00:00"
15112
15577
  },
15113
15578
  "namespace": {
15114
15579
  "type": "string",
@@ -15127,7 +15592,7 @@
15127
15592
  },
15128
15593
  "x-original-maxLength": 1024,
15129
15594
  "x-reconciled-from-discovery": true,
15130
- "x-reconciled-at": "2026-01-05T14:38:11.361882+00:00"
15595
+ "x-reconciled-at": "2026-01-05T18:29:11.248287+00:00"
15131
15596
  }
15132
15597
  },
15133
15598
  "x-f5xc-minimum-configuration": {
@@ -15336,7 +15801,7 @@
15336
15801
  },
15337
15802
  "x-original-maxLength": 1024,
15338
15803
  "x-reconciled-from-discovery": true,
15339
- "x-reconciled-at": "2026-01-05T14:38:11.851106+00:00"
15804
+ "x-reconciled-at": "2026-01-05T18:29:11.693860+00:00"
15340
15805
  },
15341
15806
  "status": {
15342
15807
  "type": "array",
@@ -15355,7 +15820,7 @@
15355
15820
  "maxLength": 17,
15356
15821
  "minLength": 17,
15357
15822
  "x-reconciled-from-discovery": true,
15358
- "x-reconciled-at": "2026-01-05T14:38:11.851114+00:00"
15823
+ "x-reconciled-at": "2026-01-05T18:29:11.693869+00:00"
15359
15824
  }
15360
15825
  },
15361
15826
  "x-f5xc-minimum-configuration": {
@@ -15411,7 +15876,7 @@
15411
15876
  "maxLength": 17,
15412
15877
  "minLength": 17,
15413
15878
  "x-reconciled-from-discovery": true,
15414
- "x-reconciled-at": "2026-01-05T14:38:11.851122+00:00"
15879
+ "x-reconciled-at": "2026-01-05T18:29:11.693877+00:00"
15415
15880
  }
15416
15881
  },
15417
15882
  "x-f5xc-minimum-configuration": {
@@ -15482,7 +15947,7 @@
15482
15947
  },
15483
15948
  "x-original-maxLength": 1024,
15484
15949
  "x-reconciled-from-discovery": true,
15485
- "x-reconciled-at": "2026-01-05T14:38:11.851131+00:00"
15950
+ "x-reconciled-at": "2026-01-05T18:29:11.693885+00:00"
15486
15951
  },
15487
15952
  "status": {
15488
15953
  "type": "array",
@@ -15501,7 +15966,7 @@
15501
15966
  "maxLength": 17,
15502
15967
  "minLength": 17,
15503
15968
  "x-reconciled-from-discovery": true,
15504
- "x-reconciled-at": "2026-01-05T14:38:11.851136+00:00"
15969
+ "x-reconciled-at": "2026-01-05T18:29:11.693890+00:00"
15505
15970
  }
15506
15971
  },
15507
15972
  "x-f5xc-minimum-configuration": {
@@ -15558,7 +16023,7 @@
15558
16023
  "maxLength": 17,
15559
16024
  "minLength": 17,
15560
16025
  "x-reconciled-from-discovery": true,
15561
- "x-reconciled-at": "2026-01-05T14:38:11.851143+00:00"
16026
+ "x-reconciled-at": "2026-01-05T18:29:11.693897+00:00"
15562
16027
  }
15563
16028
  },
15564
16029
  "x-f5xc-minimum-configuration": {
@@ -15633,7 +16098,7 @@
15633
16098
  "maxLength": 17,
15634
16099
  "minLength": 17,
15635
16100
  "x-reconciled-from-discovery": true,
15636
- "x-reconciled-at": "2026-01-05T14:38:11.851153+00:00"
16101
+ "x-reconciled-at": "2026-01-05T18:29:11.693906+00:00"
15637
16102
  }
15638
16103
  },
15639
16104
  "x-f5xc-minimum-configuration": {
@@ -15780,7 +16245,7 @@
15780
16245
  },
15781
16246
  "x-original-maxLength": 1024,
15782
16247
  "x-reconciled-from-discovery": true,
15783
- "x-reconciled-at": "2026-01-05T14:38:11.851168+00:00"
16248
+ "x-reconciled-at": "2026-01-05T18:29:11.693921+00:00"
15784
16249
  },
15785
16250
  "ports": {
15786
16251
  "type": "array",
@@ -15824,7 +16289,7 @@
15824
16289
  "maxLength": 17,
15825
16290
  "minLength": 17,
15826
16291
  "x-reconciled-from-discovery": true,
15827
- "x-reconciled-at": "2026-01-05T14:38:11.851175+00:00"
16292
+ "x-reconciled-at": "2026-01-05T18:29:11.693928+00:00"
15828
16293
  },
15829
16294
  "unhealthy_ports": {
15830
16295
  "type": "array",
@@ -15944,7 +16409,7 @@
15944
16409
  },
15945
16410
  "x-original-maxLength": 1024,
15946
16411
  "x-reconciled-from-discovery": true,
15947
- "x-reconciled-at": "2026-01-05T14:38:11.851185+00:00"
16412
+ "x-reconciled-at": "2026-01-05T18:29:11.693938+00:00"
15948
16413
  },
15949
16414
  "namespace": {
15950
16415
  "type": "string",
@@ -15963,7 +16428,7 @@
15963
16428
  },
15964
16429
  "x-original-maxLength": 1024,
15965
16430
  "x-reconciled-from-discovery": true,
15966
- "x-reconciled-at": "2026-01-05T14:38:11.851189+00:00"
16431
+ "x-reconciled-at": "2026-01-05T18:29:11.693942+00:00"
15967
16432
  }
15968
16433
  },
15969
16434
  "x-f5xc-minimum-configuration": {
@@ -16061,7 +16526,7 @@
16061
16526
  "maxLength": 17,
16062
16527
  "minLength": 17,
16063
16528
  "x-reconciled-from-discovery": true,
16064
- "x-reconciled-at": "2026-01-05T14:38:11.851204+00:00"
16529
+ "x-reconciled-at": "2026-01-05T18:29:11.693955+00:00"
16065
16530
  },
16066
16531
  "system_metadata": {
16067
16532
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -16258,7 +16723,7 @@
16258
16723
  },
16259
16724
  "x-original-maxLength": 1024,
16260
16725
  "x-reconciled-from-discovery": true,
16261
- "x-reconciled-at": "2026-01-05T14:38:11.851219+00:00"
16726
+ "x-reconciled-at": "2026-01-05T18:29:11.693970+00:00"
16262
16727
  },
16263
16728
  "disabled": {
16264
16729
  "type": "boolean",
@@ -16308,7 +16773,7 @@
16308
16773
  },
16309
16774
  "x-original-maxLength": 1024,
16310
16775
  "x-reconciled-from-discovery": true,
16311
- "x-reconciled-at": "2026-01-05T14:38:11.851230+00:00"
16776
+ "x-reconciled-at": "2026-01-05T18:29:11.693980+00:00"
16312
16777
  },
16313
16778
  "namespace": {
16314
16779
  "type": "string",
@@ -16327,7 +16792,7 @@
16327
16792
  },
16328
16793
  "x-original-maxLength": 1024,
16329
16794
  "x-reconciled-from-discovery": true,
16330
- "x-reconciled-at": "2026-01-05T14:38:11.851235+00:00"
16795
+ "x-reconciled-at": "2026-01-05T18:29:11.693984+00:00"
16331
16796
  },
16332
16797
  "owner_view": {
16333
16798
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -16368,7 +16833,7 @@
16368
16833
  "x-field-mutability": "read-only",
16369
16834
  "x-original-maxLength": 1024,
16370
16835
  "x-reconciled-from-discovery": true,
16371
- "x-reconciled-at": "2026-01-05T14:38:11.851244+00:00"
16836
+ "x-reconciled-at": "2026-01-05T18:29:11.693992+00:00"
16372
16837
  },
16373
16838
  "uid": {
16374
16839
  "type": "string",
@@ -16389,7 +16854,7 @@
16389
16854
  "x-original-maxLength": 1024,
16390
16855
  "format": "uuid",
16391
16856
  "x-reconciled-from-discovery": true,
16392
- "x-reconciled-at": "2026-01-05T14:38:11.851250+00:00"
16857
+ "x-reconciled-at": "2026-01-05T18:29:11.693998+00:00"
16393
16858
  }
16394
16859
  },
16395
16860
  "x-f5xc-minimum-configuration": {
@@ -16798,7 +17263,7 @@
16798
17263
  },
16799
17264
  "x-original-maxLength": 1024,
16800
17265
  "x-reconciled-from-discovery": true,
16801
- "x-reconciled-at": "2026-01-05T14:38:11.851286+00:00"
17266
+ "x-reconciled-at": "2026-01-05T18:29:11.694046+00:00"
16802
17267
  },
16803
17268
  "request_body": {
16804
17269
  "$ref": "#/components/schemas/protobufAny"
@@ -17241,7 +17706,7 @@
17241
17706
  },
17242
17707
  "x-original-maxLength": 1024,
17243
17708
  "x-reconciled-from-discovery": true,
17244
- "x-reconciled-at": "2026-01-05T14:38:11.851366+00:00"
17709
+ "x-reconciled-at": "2026-01-05T18:29:11.694126+00:00"
17245
17710
  }
17246
17711
  },
17247
17712
  "x-f5xc-minimum-configuration": {
@@ -17304,7 +17769,7 @@
17304
17769
  },
17305
17770
  "x-original-maxLength": 1024,
17306
17771
  "x-reconciled-from-discovery": true,
17307
- "x-reconciled-at": "2026-01-05T14:38:11.851478+00:00"
17772
+ "x-reconciled-at": "2026-01-05T18:29:11.694234+00:00"
17308
17773
  },
17309
17774
  "previous_value": {
17310
17775
  "type": "string",
@@ -17342,7 +17807,7 @@
17342
17807
  },
17343
17808
  "x-original-maxLength": 1024,
17344
17809
  "x-reconciled-from-discovery": true,
17345
- "x-reconciled-at": "2026-01-05T14:38:11.851485+00:00"
17810
+ "x-reconciled-at": "2026-01-05T18:29:11.694240+00:00"
17346
17811
  }
17347
17812
  },
17348
17813
  "x-f5xc-minimum-configuration": {
@@ -17629,7 +18094,7 @@
17629
18094
  },
17630
18095
  "x-original-maxLength": 1024,
17631
18096
  "x-reconciled-from-discovery": true,
17632
- "x-reconciled-at": "2026-01-05T14:38:11.851532+00:00"
18097
+ "x-reconciled-at": "2026-01-05T18:29:11.694287+00:00"
17633
18098
  },
17634
18099
  "ref_value": {
17635
18100
  "$ref": "#/components/schemas/schemaviewsObjectRefType"
@@ -17799,7 +18264,7 @@
17799
18264
  },
17800
18265
  "x-original-maxLength": 1024,
17801
18266
  "x-reconciled-from-discovery": true,
17802
- "x-reconciled-at": "2026-01-05T14:38:12.244543+00:00"
18267
+ "x-reconciled-at": "2026-01-05T18:29:12.045680+00:00"
17803
18268
  },
17804
18269
  "namespace": {
17805
18270
  "type": "string",
@@ -17818,7 +18283,7 @@
17818
18283
  },
17819
18284
  "x-original-maxLength": 1024,
17820
18285
  "x-reconciled-from-discovery": true,
17821
- "x-reconciled-at": "2026-01-05T14:38:12.244549+00:00"
18286
+ "x-reconciled-at": "2026-01-05T18:29:12.045687+00:00"
17822
18287
  }
17823
18288
  },
17824
18289
  "x-f5xc-minimum-configuration": {
@@ -17916,7 +18381,7 @@
17916
18381
  "maxLength": 17,
17917
18382
  "minLength": 17,
17918
18383
  "x-reconciled-from-discovery": true,
17919
- "x-reconciled-at": "2026-01-05T14:38:12.244566+00:00"
18384
+ "x-reconciled-at": "2026-01-05T18:29:12.045703+00:00"
17920
18385
  },
17921
18386
  "system_metadata": {
17922
18387
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -18240,7 +18705,7 @@
18240
18705
  },
18241
18706
  "x-original-maxLength": 1024,
18242
18707
  "x-reconciled-from-discovery": true,
18243
- "x-reconciled-at": "2026-01-05T14:38:12.244596+00:00"
18708
+ "x-reconciled-at": "2026-01-05T18:29:12.045731+00:00"
18244
18709
  },
18245
18710
  "disabled": {
18246
18711
  "type": "boolean",
@@ -18290,7 +18755,7 @@
18290
18755
  },
18291
18756
  "x-original-maxLength": 1024,
18292
18757
  "x-reconciled-from-discovery": true,
18293
- "x-reconciled-at": "2026-01-05T14:38:12.244607+00:00"
18758
+ "x-reconciled-at": "2026-01-05T18:29:12.045741+00:00"
18294
18759
  },
18295
18760
  "namespace": {
18296
18761
  "type": "string",
@@ -18309,7 +18774,7 @@
18309
18774
  },
18310
18775
  "x-original-maxLength": 1024,
18311
18776
  "x-reconciled-from-discovery": true,
18312
- "x-reconciled-at": "2026-01-05T14:38:12.244612+00:00"
18777
+ "x-reconciled-at": "2026-01-05T18:29:12.045745+00:00"
18313
18778
  },
18314
18779
  "owner_view": {
18315
18780
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -18350,7 +18815,7 @@
18350
18815
  "x-field-mutability": "read-only",
18351
18816
  "x-original-maxLength": 1024,
18352
18817
  "x-reconciled-from-discovery": true,
18353
- "x-reconciled-at": "2026-01-05T14:38:12.244620+00:00"
18818
+ "x-reconciled-at": "2026-01-05T18:29:12.045753+00:00"
18354
18819
  },
18355
18820
  "uid": {
18356
18821
  "type": "string",
@@ -18371,7 +18836,7 @@
18371
18836
  "x-original-maxLength": 1024,
18372
18837
  "format": "uuid",
18373
18838
  "x-reconciled-from-discovery": true,
18374
- "x-reconciled-at": "2026-01-05T14:38:12.244626+00:00"
18839
+ "x-reconciled-at": "2026-01-05T18:29:12.045759+00:00"
18375
18840
  }
18376
18841
  },
18377
18842
  "x-f5xc-minimum-configuration": {
@@ -19171,7 +19636,7 @@
19171
19636
  },
19172
19637
  "x-original-maxLength": 256,
19173
19638
  "x-reconciled-from-discovery": true,
19174
- "x-reconciled-at": "2026-01-05T14:38:12.654324+00:00"
19639
+ "x-reconciled-at": "2026-01-05T18:29:12.418570+00:00"
19175
19640
  },
19176
19641
  "priority": {
19177
19642
  "type": "integer",
@@ -19275,7 +19740,7 @@
19275
19740
  "x-original-maxLength": 1024,
19276
19741
  "format": "hostname",
19277
19742
  "x-reconciled-from-discovery": true,
19278
- "x-reconciled-at": "2026-01-05T14:38:12.654336+00:00"
19743
+ "x-reconciled-at": "2026-01-05T18:29:12.418584+00:00"
19279
19744
  },
19280
19745
  "final_translation": {
19281
19746
  "type": "boolean",
@@ -19313,7 +19778,7 @@
19313
19778
  },
19314
19779
  "x-original-maxLength": 256,
19315
19780
  "x-reconciled-from-discovery": true,
19316
- "x-reconciled-at": "2026-01-05T14:38:12.654344+00:00"
19781
+ "x-reconciled-at": "2026-01-05T18:29:12.418592+00:00"
19317
19782
  },
19318
19783
  "ratio": {
19319
19784
  "type": "integer",
@@ -19571,7 +20036,7 @@
19571
20036
  },
19572
20037
  "x-original-maxLength": 1024,
19573
20038
  "x-reconciled-from-discovery": true,
19574
- "x-reconciled-at": "2026-01-05T14:38:12.654373+00:00"
20039
+ "x-reconciled-at": "2026-01-05T18:29:12.418619+00:00"
19575
20040
  },
19576
20041
  "namespace": {
19577
20042
  "type": "string",
@@ -19590,7 +20055,7 @@
19590
20055
  },
19591
20056
  "x-original-maxLength": 1024,
19592
20057
  "x-reconciled-from-discovery": true,
19593
- "x-reconciled-at": "2026-01-05T14:38:12.654377+00:00"
20058
+ "x-reconciled-at": "2026-01-05T18:29:12.418624+00:00"
19594
20059
  }
19595
20060
  },
19596
20061
  "x-f5xc-minimum-configuration": {
@@ -19688,7 +20153,7 @@
19688
20153
  "maxLength": 17,
19689
20154
  "minLength": 17,
19690
20155
  "x-reconciled-from-discovery": true,
19691
- "x-reconciled-at": "2026-01-05T14:38:12.654393+00:00"
20156
+ "x-reconciled-at": "2026-01-05T18:29:12.418638+00:00"
19692
20157
  },
19693
20158
  "system_metadata": {
19694
20159
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -19912,7 +20377,7 @@
19912
20377
  },
19913
20378
  "x-original-maxLength": 1024,
19914
20379
  "x-reconciled-from-discovery": true,
19915
- "x-reconciled-at": "2026-01-05T14:38:12.654417+00:00"
20380
+ "x-reconciled-at": "2026-01-05T18:29:12.418662+00:00"
19916
20381
  },
19917
20382
  "disabled": {
19918
20383
  "type": "boolean",
@@ -19962,7 +20427,7 @@
19962
20427
  },
19963
20428
  "x-original-maxLength": 1024,
19964
20429
  "x-reconciled-from-discovery": true,
19965
- "x-reconciled-at": "2026-01-05T14:38:12.654428+00:00"
20430
+ "x-reconciled-at": "2026-01-05T18:29:12.418672+00:00"
19966
20431
  },
19967
20432
  "namespace": {
19968
20433
  "type": "string",
@@ -19981,7 +20446,7 @@
19981
20446
  },
19982
20447
  "x-original-maxLength": 1024,
19983
20448
  "x-reconciled-from-discovery": true,
19984
- "x-reconciled-at": "2026-01-05T14:38:12.654433+00:00"
20449
+ "x-reconciled-at": "2026-01-05T18:29:12.418676+00:00"
19985
20450
  },
19986
20451
  "owner_view": {
19987
20452
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -20022,7 +20487,7 @@
20022
20487
  "x-field-mutability": "read-only",
20023
20488
  "x-original-maxLength": 1024,
20024
20489
  "x-reconciled-from-discovery": true,
20025
- "x-reconciled-at": "2026-01-05T14:38:12.654441+00:00"
20490
+ "x-reconciled-at": "2026-01-05T18:29:12.418684+00:00"
20026
20491
  },
20027
20492
  "uid": {
20028
20493
  "type": "string",
@@ -20043,7 +20508,7 @@
20043
20508
  "x-original-maxLength": 1024,
20044
20509
  "format": "uuid",
20045
20510
  "x-reconciled-from-discovery": true,
20046
- "x-reconciled-at": "2026-01-05T14:38:12.654446+00:00"
20511
+ "x-reconciled-at": "2026-01-05T18:29:12.418689+00:00"
20047
20512
  }
20048
20513
  },
20049
20514
  "x-f5xc-minimum-configuration": {
@@ -20128,7 +20593,7 @@
20128
20593
  "x-original-maxLength": 1024,
20129
20594
  "format": "hostname",
20130
20595
  "x-reconciled-from-discovery": true,
20131
- "x-reconciled-at": "2026-01-05T14:38:12.654453+00:00"
20596
+ "x-reconciled-at": "2026-01-05T18:29:12.418696+00:00"
20132
20597
  },
20133
20598
  "name": {
20134
20599
  "type": "string",
@@ -20153,7 +20618,7 @@
20153
20618
  },
20154
20619
  "x-original-maxLength": 256,
20155
20620
  "x-reconciled-from-discovery": true,
20156
- "x-reconciled-at": "2026-01-05T14:38:12.654457+00:00"
20621
+ "x-reconciled-at": "2026-01-05T18:29:12.418700+00:00"
20157
20622
  },
20158
20623
  "priority": {
20159
20624
  "type": "integer",
@@ -20457,7 +20922,7 @@
20457
20922
  },
20458
20923
  "x-original-maxLength": 256,
20459
20924
  "x-reconciled-from-discovery": true,
20460
- "x-reconciled-at": "2026-01-05T14:38:12.654484+00:00"
20925
+ "x-reconciled-at": "2026-01-05T18:29:12.418726+00:00"
20461
20926
  },
20462
20927
  "port": {
20463
20928
  "type": "integer",
@@ -20956,7 +21421,7 @@
20956
21421
  },
20957
21422
  "x-original-maxLength": 1024,
20958
21423
  "x-reconciled-from-discovery": true,
20959
- "x-reconciled-at": "2026-01-05T14:38:13.825424+00:00"
21424
+ "x-reconciled-at": "2026-01-05T18:29:13.502060+00:00"
20960
21425
  },
20961
21426
  "values": {
20962
21427
  "type": "array",
@@ -21110,7 +21575,7 @@
21110
21575
  },
21111
21576
  "x-original-maxLength": 1024,
21112
21577
  "x-reconciled-from-discovery": true,
21113
- "x-reconciled-at": "2026-01-05T14:38:13.825436+00:00"
21578
+ "x-reconciled-at": "2026-01-05T18:29:13.502073+00:00"
21114
21579
  }
21115
21580
  },
21116
21581
  "x-f5xc-minimum-configuration": {
@@ -21150,7 +21615,7 @@
21150
21615
  "x-field-mutability": "read-only",
21151
21616
  "x-original-maxLength": 1024,
21152
21617
  "x-reconciled-from-discovery": true,
21153
- "x-reconciled-at": "2026-01-05T14:38:13.825442+00:00"
21618
+ "x-reconciled-at": "2026-01-05T18:29:13.502080+00:00"
21154
21619
  }
21155
21620
  },
21156
21621
  "x-f5xc-minimum-configuration": {
@@ -21319,7 +21784,7 @@
21319
21784
  },
21320
21785
  "x-original-maxLength": 1024,
21321
21786
  "x-reconciled-from-discovery": true,
21322
- "x-reconciled-at": "2026-01-05T14:38:13.825461+00:00"
21787
+ "x-reconciled-at": "2026-01-05T18:29:13.502098+00:00"
21323
21788
  },
21324
21789
  "values": {
21325
21790
  "type": "array",
@@ -21380,7 +21845,7 @@
21380
21845
  },
21381
21846
  "x-original-maxLength": 1024,
21382
21847
  "x-reconciled-from-discovery": true,
21383
- "x-reconciled-at": "2026-01-05T14:38:13.825468+00:00"
21848
+ "x-reconciled-at": "2026-01-05T18:29:13.502105+00:00"
21384
21849
  },
21385
21850
  "values": {
21386
21851
  "type": "array",
@@ -21460,7 +21925,7 @@
21460
21925
  },
21461
21926
  "x-original-maxLength": 1024,
21462
21927
  "x-reconciled-from-discovery": true,
21463
- "x-reconciled-at": "2026-01-05T14:38:13.825474+00:00"
21928
+ "x-reconciled-at": "2026-01-05T18:29:13.502112+00:00"
21464
21929
  },
21465
21930
  "values": {
21466
21931
  "type": "array",
@@ -21536,7 +22001,7 @@
21536
22001
  },
21537
22002
  "x-original-maxLength": 1024,
21538
22003
  "x-reconciled-from-discovery": true,
21539
- "x-reconciled-at": "2026-01-05T14:38:13.825481+00:00"
22004
+ "x-reconciled-at": "2026-01-05T18:29:13.502118+00:00"
21540
22005
  },
21541
22006
  "values": {
21542
22007
  "type": "array",
@@ -21617,7 +22082,7 @@
21617
22082
  },
21618
22083
  "x-original-maxLength": 255,
21619
22084
  "x-reconciled-from-discovery": true,
21620
- "x-reconciled-at": "2026-01-05T14:38:13.825487+00:00"
22085
+ "x-reconciled-at": "2026-01-05T18:29:13.502125+00:00"
21621
22086
  }
21622
22087
  },
21623
22088
  "x-f5xc-minimum-configuration": {
@@ -21661,7 +22126,7 @@
21661
22126
  },
21662
22127
  "x-original-maxLength": 1024,
21663
22128
  "x-reconciled-from-discovery": true,
21664
- "x-reconciled-at": "2026-01-05T14:38:13.825492+00:00"
22129
+ "x-reconciled-at": "2026-01-05T18:29:13.502130+00:00"
21665
22130
  },
21666
22131
  "values": {
21667
22132
  "type": "array",
@@ -21729,7 +22194,7 @@
21729
22194
  },
21730
22195
  "x-original-maxLength": 1024,
21731
22196
  "x-reconciled-from-discovery": true,
21732
- "x-reconciled-at": "2026-01-05T14:38:13.825498+00:00"
22197
+ "x-reconciled-at": "2026-01-05T18:29:13.502136+00:00"
21733
22198
  },
21734
22199
  "values": {
21735
22200
  "type": "array",
@@ -21805,7 +22270,7 @@
21805
22270
  },
21806
22271
  "x-original-maxLength": 1024,
21807
22272
  "x-reconciled-from-discovery": true,
21808
- "x-reconciled-at": "2026-01-05T14:38:13.825505+00:00"
22273
+ "x-reconciled-at": "2026-01-05T18:29:13.502142+00:00"
21809
22274
  },
21810
22275
  "value": {
21811
22276
  "type": "string",
@@ -21832,7 +22297,7 @@
21832
22297
  },
21833
22298
  "x-original-maxLength": 255,
21834
22299
  "x-reconciled-from-discovery": true,
21835
- "x-reconciled-at": "2026-01-05T14:38:13.825509+00:00"
22300
+ "x-reconciled-at": "2026-01-05T18:29:13.502147+00:00"
21836
22301
  }
21837
22302
  },
21838
22303
  "x-f5xc-minimum-configuration": {
@@ -21878,7 +22343,7 @@
21878
22343
  },
21879
22344
  "x-original-maxLength": 1024,
21880
22345
  "x-reconciled-from-discovery": true,
21881
- "x-reconciled-at": "2026-01-05T14:38:13.825514+00:00"
22346
+ "x-reconciled-at": "2026-01-05T18:29:13.502151+00:00"
21882
22347
  },
21883
22348
  "values": {
21884
22349
  "type": "array",
@@ -21975,7 +22440,7 @@
21975
22440
  },
21976
22441
  "x-original-maxLength": 1024,
21977
22442
  "x-reconciled-from-discovery": true,
21978
- "x-reconciled-at": "2026-01-05T14:38:13.825521+00:00"
22443
+ "x-reconciled-at": "2026-01-05T18:29:13.502158+00:00"
21979
22444
  },
21980
22445
  "value": {
21981
22446
  "type": "string",
@@ -22007,7 +22472,7 @@
22007
22472
  },
22008
22473
  "x-original-maxLength": 17,
22009
22474
  "x-reconciled-from-discovery": true,
22010
- "x-reconciled-at": "2026-01-05T14:38:13.825525+00:00"
22475
+ "x-reconciled-at": "2026-01-05T18:29:13.502162+00:00"
22011
22476
  }
22012
22477
  },
22013
22478
  "x-f5xc-minimum-configuration": {
@@ -22053,7 +22518,7 @@
22053
22518
  },
22054
22519
  "x-original-maxLength": 1024,
22055
22520
  "x-reconciled-from-discovery": true,
22056
- "x-reconciled-at": "2026-01-05T14:38:13.825530+00:00"
22521
+ "x-reconciled-at": "2026-01-05T18:29:13.502166+00:00"
22057
22522
  },
22058
22523
  "value": {
22059
22524
  "type": "string",
@@ -22085,7 +22550,7 @@
22085
22550
  },
22086
22551
  "x-original-maxLength": 23,
22087
22552
  "x-reconciled-from-discovery": true,
22088
- "x-reconciled-at": "2026-01-05T14:38:13.825534+00:00"
22553
+ "x-reconciled-at": "2026-01-05T18:29:13.502171+00:00"
22089
22554
  }
22090
22555
  },
22091
22556
  "x-f5xc-minimum-configuration": {
@@ -22131,7 +22596,7 @@
22131
22596
  },
22132
22597
  "x-original-maxLength": 255,
22133
22598
  "x-reconciled-from-discovery": true,
22134
- "x-reconciled-at": "2026-01-05T14:38:13.825539+00:00"
22599
+ "x-reconciled-at": "2026-01-05T18:29:13.502175+00:00"
22135
22600
  },
22136
22601
  "value": {
22137
22602
  "$ref": "#/components/schemas/schemaviewsObjectRefType"
@@ -22180,7 +22645,7 @@
22180
22645
  },
22181
22646
  "x-original-maxLength": 1024,
22182
22647
  "x-reconciled-from-discovery": true,
22183
- "x-reconciled-at": "2026-01-05T14:38:13.825545+00:00"
22648
+ "x-reconciled-at": "2026-01-05T18:29:13.502181+00:00"
22184
22649
  },
22185
22650
  "values": {
22186
22651
  "type": "array",
@@ -22255,7 +22720,7 @@
22255
22720
  },
22256
22721
  "x-original-maxLength": 1024,
22257
22722
  "x-reconciled-from-discovery": true,
22258
- "x-reconciled-at": "2026-01-05T14:38:13.825551+00:00"
22723
+ "x-reconciled-at": "2026-01-05T18:29:13.502187+00:00"
22259
22724
  },
22260
22725
  "values": {
22261
22726
  "type": "array",
@@ -22326,7 +22791,7 @@
22326
22791
  },
22327
22792
  "x-original-maxLength": 1024,
22328
22793
  "x-reconciled-from-discovery": true,
22329
- "x-reconciled-at": "2026-01-05T14:38:13.825557+00:00"
22794
+ "x-reconciled-at": "2026-01-05T18:29:13.502194+00:00"
22330
22795
  },
22331
22796
  "values": {
22332
22797
  "type": "array",
@@ -22401,7 +22866,7 @@
22401
22866
  },
22402
22867
  "x-original-maxLength": 1024,
22403
22868
  "x-reconciled-from-discovery": true,
22404
- "x-reconciled-at": "2026-01-05T14:38:13.825564+00:00"
22869
+ "x-reconciled-at": "2026-01-05T18:29:13.502200+00:00"
22405
22870
  },
22406
22871
  "values": {
22407
22872
  "type": "array",
@@ -22480,7 +22945,7 @@
22480
22945
  },
22481
22946
  "x-original-maxLength": 1024,
22482
22947
  "x-reconciled-from-discovery": true,
22483
- "x-reconciled-at": "2026-01-05T14:38:13.825570+00:00"
22948
+ "x-reconciled-at": "2026-01-05T18:29:13.502206+00:00"
22484
22949
  },
22485
22950
  "values": {
22486
22951
  "type": "array",
@@ -22643,7 +23108,7 @@
22643
23108
  },
22644
23109
  "x-original-maxLength": 1024,
22645
23110
  "x-reconciled-from-discovery": true,
22646
- "x-reconciled-at": "2026-01-05T14:38:13.825583+00:00"
23111
+ "x-reconciled-at": "2026-01-05T18:29:13.502218+00:00"
22647
23112
  },
22648
23113
  "values": {
22649
23114
  "type": "array",
@@ -22718,7 +23183,7 @@
22718
23183
  },
22719
23184
  "x-original-maxLength": 1024,
22720
23185
  "x-reconciled-from-discovery": true,
22721
- "x-reconciled-at": "2026-01-05T14:38:13.825589+00:00"
23186
+ "x-reconciled-at": "2026-01-05T18:29:13.502224+00:00"
22722
23187
  },
22723
23188
  "values": {
22724
23189
  "type": "array",
@@ -23112,7 +23577,7 @@
23112
23577
  },
23113
23578
  "x-original-maxLength": 1024,
23114
23579
  "x-reconciled-from-discovery": true,
23115
- "x-reconciled-at": "2026-01-05T14:38:13.825621+00:00"
23580
+ "x-reconciled-at": "2026-01-05T18:29:13.502253+00:00"
23116
23581
  },
23117
23582
  "namespace": {
23118
23583
  "type": "string",
@@ -23131,7 +23596,7 @@
23131
23596
  },
23132
23597
  "x-original-maxLength": 1024,
23133
23598
  "x-reconciled-from-discovery": true,
23134
- "x-reconciled-at": "2026-01-05T14:38:13.825625+00:00"
23599
+ "x-reconciled-at": "2026-01-05T18:29:13.502258+00:00"
23135
23600
  }
23136
23601
  },
23137
23602
  "x-f5xc-minimum-configuration": {
@@ -23249,7 +23714,7 @@
23249
23714
  },
23250
23715
  "x-original-maxLength": 1024,
23251
23716
  "x-reconciled-from-discovery": true,
23252
- "x-reconciled-at": "2026-01-05T14:38:13.825636+00:00"
23717
+ "x-reconciled-at": "2026-01-05T18:29:13.502268+00:00"
23253
23718
  },
23254
23719
  "sort": {
23255
23720
  "$ref": "#/components/schemas/schemaSortOrder"
@@ -23480,7 +23945,7 @@
23480
23945
  },
23481
23946
  "x-original-maxLength": 1024,
23482
23947
  "x-reconciled-from-discovery": true,
23483
- "x-reconciled-at": "2026-01-05T14:38:13.825655+00:00"
23948
+ "x-reconciled-at": "2026-01-05T18:29:13.502287+00:00"
23484
23949
  },
23485
23950
  "sort": {
23486
23951
  "$ref": "#/components/schemas/schemaSortOrder"
@@ -23653,7 +24118,7 @@
23653
24118
  "x-original-maxLength": 1024,
23654
24119
  "format": "hostname",
23655
24120
  "x-reconciled-from-discovery": true,
23656
- "x-reconciled-at": "2026-01-05T14:38:13.825673+00:00"
24121
+ "x-reconciled-at": "2026-01-05T18:29:13.502304+00:00"
23657
24122
  },
23658
24123
  "query_type": {
23659
24124
  "type": "string",
@@ -23975,7 +24440,7 @@
23975
24440
  "maxLength": 17,
23976
24441
  "minLength": 17,
23977
24442
  "x-reconciled-from-discovery": true,
23978
- "x-reconciled-at": "2026-01-05T14:38:13.825705+00:00"
24443
+ "x-reconciled-at": "2026-01-05T18:29:13.502335+00:00"
23979
24444
  },
23980
24445
  "system_metadata": {
23981
24446
  "$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
@@ -24046,7 +24511,7 @@
24046
24511
  "x-original-maxLength": 1024,
24047
24512
  "format": "hostname",
24048
24513
  "x-reconciled-from-discovery": true,
24049
- "x-reconciled-at": "2026-01-05T14:38:13.825713+00:00"
24514
+ "x-reconciled-at": "2026-01-05T18:29:13.502343+00:00"
24050
24515
  },
24051
24516
  "num_of_dns_records": {
24052
24517
  "type": "integer",
@@ -24209,7 +24674,7 @@
24209
24674
  },
24210
24675
  "x-original-maxLength": 1024,
24211
24676
  "x-reconciled-from-discovery": true,
24212
- "x-reconciled-at": "2026-01-05T14:38:13.825729+00:00"
24677
+ "x-reconciled-at": "2026-01-05T18:29:13.502359+00:00"
24213
24678
  },
24214
24679
  "file": {
24215
24680
  "type": "string",
@@ -24337,7 +24802,7 @@
24337
24802
  },
24338
24803
  "x-original-maxLength": 1024,
24339
24804
  "x-reconciled-from-discovery": true,
24340
- "x-reconciled-at": "2026-01-05T14:38:13.825740+00:00"
24805
+ "x-reconciled-at": "2026-01-05T18:29:13.502371+00:00"
24341
24806
  },
24342
24807
  "file": {
24343
24808
  "type": "string",
@@ -24867,7 +25332,7 @@
24867
25332
  },
24868
25333
  "x-original-maxLength": 1024,
24869
25334
  "x-reconciled-from-discovery": true,
24870
- "x-reconciled-at": "2026-01-05T14:38:13.825791+00:00"
25335
+ "x-reconciled-at": "2026-01-05T18:29:13.502408+00:00"
24871
25336
  },
24872
25337
  "disabled": {
24873
25338
  "type": "boolean",
@@ -24917,7 +25382,7 @@
24917
25382
  },
24918
25383
  "x-original-maxLength": 1024,
24919
25384
  "x-reconciled-from-discovery": true,
24920
- "x-reconciled-at": "2026-01-05T14:38:13.825801+00:00"
25385
+ "x-reconciled-at": "2026-01-05T18:29:13.502417+00:00"
24921
25386
  },
24922
25387
  "namespace": {
24923
25388
  "type": "string",
@@ -24936,7 +25401,7 @@
24936
25401
  },
24937
25402
  "x-original-maxLength": 1024,
24938
25403
  "x-reconciled-from-discovery": true,
24939
- "x-reconciled-at": "2026-01-05T14:38:13.825806+00:00"
25404
+ "x-reconciled-at": "2026-01-05T18:29:13.502422+00:00"
24940
25405
  },
24941
25406
  "owner_view": {
24942
25407
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -24977,7 +25442,7 @@
24977
25442
  "x-field-mutability": "read-only",
24978
25443
  "x-original-maxLength": 1024,
24979
25444
  "x-reconciled-from-discovery": true,
24980
- "x-reconciled-at": "2026-01-05T14:38:13.825814+00:00"
25445
+ "x-reconciled-at": "2026-01-05T18:29:13.502430+00:00"
24981
25446
  },
24982
25447
  "uid": {
24983
25448
  "type": "string",
@@ -24998,7 +25463,7 @@
24998
25463
  "x-original-maxLength": 1024,
24999
25464
  "format": "uuid",
25000
25465
  "x-reconciled-from-discovery": true,
25001
- "x-reconciled-at": "2026-01-05T14:38:13.825819+00:00"
25466
+ "x-reconciled-at": "2026-01-05T18:29:13.502435+00:00"
25002
25467
  }
25003
25468
  },
25004
25469
  "x-f5xc-minimum-configuration": {
@@ -25076,7 +25541,7 @@
25076
25541
  "x-original-maxLength": 1024,
25077
25542
  "format": "hostname",
25078
25543
  "x-reconciled-from-discovery": true,
25079
- "x-reconciled-at": "2026-01-05T14:38:13.825825+00:00"
25544
+ "x-reconciled-at": "2026-01-05T18:29:13.502441+00:00"
25080
25545
  },
25081
25546
  "priority": {
25082
25547
  "type": "integer",
@@ -25153,7 +25618,7 @@
25153
25618
  "maxLength": 15,
25154
25619
  "minLength": 3,
25155
25620
  "x-reconciled-from-discovery": true,
25156
- "x-reconciled-at": "2026-01-05T14:38:13.825834+00:00"
25621
+ "x-reconciled-at": "2026-01-05T18:29:13.502450+00:00"
25157
25622
  }
25158
25623
  },
25159
25624
  "x-f5xc-minimum-configuration": {
@@ -25583,7 +26048,7 @@
25583
26048
  },
25584
26049
  "x-original-maxLength": 1024,
25585
26050
  "x-reconciled-from-discovery": true,
25586
- "x-reconciled-at": "2026-01-05T14:38:13.825879+00:00"
26051
+ "x-reconciled-at": "2026-01-05T18:29:13.502491+00:00"
25587
26052
  },
25588
26053
  "ds_record": {
25589
26054
  "$ref": "#/components/schemas/dns_zoneDNSDSRecord"
@@ -26400,7 +26865,7 @@
26400
26865
  },
26401
26866
  "x-original-maxLength": 1024,
26402
26867
  "x-reconciled-from-discovery": true,
26403
- "x-reconciled-at": "2026-01-05T14:38:13.825942+00:00"
26868
+ "x-reconciled-at": "2026-01-05T18:29:13.502549+00:00"
26404
26869
  },
26405
26870
  "values": {
26406
26871
  "type": "array",
@@ -26838,7 +27303,7 @@
26838
27303
  },
26839
27304
  "x-original-maxLength": 1024,
26840
27305
  "x-reconciled-from-discovery": true,
26841
- "x-reconciled-at": "2026-01-05T14:38:13.825975+00:00"
27306
+ "x-reconciled-at": "2026-01-05T18:29:13.502579+00:00"
26842
27307
  },
26843
27308
  "values": {
26844
27309
  "type": "array",
@@ -27075,7 +27540,7 @@
27075
27540
  },
27076
27541
  "x-original-maxLength": 1024,
27077
27542
  "x-reconciled-from-discovery": true,
27078
- "x-reconciled-at": "2026-01-05T14:38:13.826021+00:00"
27543
+ "x-reconciled-at": "2026-01-05T18:29:13.502626+00:00"
27079
27544
  },
27080
27545
  "store_provider": {
27081
27546
  "type": "string",
@@ -27133,7 +27598,7 @@
27133
27598
  },
27134
27599
  "x-original-maxLength": 1024,
27135
27600
  "x-reconciled-from-discovery": true,
27136
- "x-reconciled-at": "2026-01-05T14:38:13.826027+00:00"
27601
+ "x-reconciled-at": "2026-01-05T18:29:13.502633+00:00"
27137
27602
  },
27138
27603
  "url": {
27139
27604
  "type": "string",
@@ -27207,7 +27672,7 @@
27207
27672
  },
27208
27673
  "x-original-maxLength": 256,
27209
27674
  "x-reconciled-from-discovery": true,
27210
- "x-reconciled-at": "2026-01-05T14:38:13.826062+00:00"
27675
+ "x-reconciled-at": "2026-01-05T18:29:13.502667+00:00"
27211
27676
  },
27212
27677
  "name": {
27213
27678
  "type": "string",
@@ -27237,7 +27702,7 @@
27237
27702
  },
27238
27703
  "x-original-maxLength": 1024,
27239
27704
  "x-reconciled-from-discovery": true,
27240
- "x-reconciled-at": "2026-01-05T14:38:13.826066+00:00"
27705
+ "x-reconciled-at": "2026-01-05T18:29:13.502672+00:00"
27241
27706
  }
27242
27707
  },
27243
27708
  "x-f5xc-minimum-configuration": {
@@ -27341,7 +27806,7 @@
27341
27806
  },
27342
27807
  "x-original-maxLength": 1024,
27343
27808
  "x-reconciled-from-discovery": true,
27344
- "x-reconciled-at": "2026-01-05T14:38:13.826199+00:00"
27809
+ "x-reconciled-at": "2026-01-05T18:29:13.502805+00:00"
27345
27810
  },
27346
27811
  "location": {
27347
27812
  "type": "string",
@@ -27358,7 +27823,7 @@
27358
27823
  },
27359
27824
  "x-original-maxLength": 1024,
27360
27825
  "x-reconciled-from-discovery": true,
27361
- "x-reconciled-at": "2026-01-05T14:38:13.826203+00:00"
27826
+ "x-reconciled-at": "2026-01-05T18:29:13.502810+00:00"
27362
27827
  },
27363
27828
  "provider": {
27364
27829
  "type": "string",
@@ -27375,7 +27840,7 @@
27375
27840
  },
27376
27841
  "x-original-maxLength": 1024,
27377
27842
  "x-reconciled-from-discovery": true,
27378
- "x-reconciled-at": "2026-01-05T14:38:13.826208+00:00"
27843
+ "x-reconciled-at": "2026-01-05T18:29:13.502814+00:00"
27379
27844
  },
27380
27845
  "secret_encoding": {
27381
27846
  "$ref": "#/components/schemas/schemaSecretEncodingType"
@@ -27397,7 +27862,7 @@
27397
27862
  "maxLength": 1,
27398
27863
  "minLength": 1,
27399
27864
  "x-reconciled-from-discovery": true,
27400
- "x-reconciled-at": "2026-01-05T14:38:13.826214+00:00"
27865
+ "x-reconciled-at": "2026-01-05T18:29:13.502820+00:00"
27401
27866
  }
27402
27867
  },
27403
27868
  "x-f5xc-minimum-configuration": {
@@ -27436,7 +27901,7 @@
27436
27901
  },
27437
27902
  "x-original-maxLength": 1024,
27438
27903
  "x-reconciled-from-discovery": true,
27439
- "x-reconciled-at": "2026-01-05T14:38:13.826237+00:00"
27904
+ "x-reconciled-at": "2026-01-05T18:29:13.502843+00:00"
27440
27905
  }
27441
27906
  },
27442
27907
  "x-f5xc-minimum-configuration": {
@@ -27712,7 +28177,7 @@
27712
28177
  },
27713
28178
  "x-original-maxLength": 1024,
27714
28179
  "x-reconciled-from-discovery": true,
27715
- "x-reconciled-at": "2026-01-05T14:38:18.846398+00:00"
28180
+ "x-reconciled-at": "2026-01-05T18:29:18.048139+00:00"
27716
28181
  },
27717
28182
  "record_name": {
27718
28183
  "type": "string",