@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.
- package/CHANGELOG.md +25 -14
- package/README.md +9 -5
- package/dist/generator/domain-metadata.d.ts +1 -3
- package/dist/generator/domain-metadata.d.ts.map +1 -1
- package/dist/generator/domain-metadata.js +0 -20
- package/dist/generator/domain-metadata.js.map +1 -1
- package/dist/generator/naming/acronyms.d.ts +1 -1
- package/dist/generator/naming/acronyms.js +1 -1
- package/dist/tools/generated/dependency-graph.json +1 -1
- package/dist/version.d.ts +2 -2
- package/dist/version.js +2 -2
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/specs/domains/admin_console_and_ui.json +90 -26
- package/specs/domains/ai_services.json +149 -22
- package/specs/domains/api.json +598 -179
- package/specs/domains/authentication.json +198 -46
- package/specs/domains/bigip.json +326 -98
- package/specs/domains/billing_and_usage.json +289 -64
- package/specs/domains/blindfold.json +384 -110
- package/specs/domains/bot_and_threat_defense.json +256 -66
- package/specs/domains/cdn.json +477 -181
- package/specs/domains/ce_management.json +398 -118
- package/specs/domains/certificates.json +253 -78
- package/specs/domains/cloud_infrastructure.json +412 -115
- package/specs/domains/container_services.json +260 -95
- package/specs/domains/data_and_privacy_security.json +210 -68
- package/specs/domains/data_intelligence.json +225 -63
- package/specs/domains/ddos.json +690 -156
- package/specs/domains/dns.json +614 -149
- package/specs/domains/managed_kubernetes.json +317 -89
- package/specs/domains/marketplace.json +427 -104
- package/specs/domains/network.json +950 -231
- package/specs/domains/network_security.json +749 -188
- package/specs/domains/nginx_one.json +211 -63
- package/specs/domains/object_storage.json +126 -13
- package/specs/domains/observability.json +622 -103
- package/specs/domains/rate_limiting.json +208 -53
- package/specs/domains/secops_and_incident_response.json +122 -37
- package/specs/domains/service_mesh.json +484 -123
- package/specs/domains/shape.json +2359 -314
- package/specs/domains/sites.json +1572 -390
- package/specs/domains/statistics.json +892 -226
- package/specs/domains/support.json +544 -109
- package/specs/domains/telemetry_and_insights.json +312 -73
- package/specs/domains/tenant_and_identity.json +1881 -273
- package/specs/domains/threat_campaign.json +124 -67
- package/specs/domains/users.json +225 -72
- package/specs/domains/virtual.json +1157 -245
- package/specs/domains/vpm_and_node_management.json +59 -2
- package/specs/domains/waf.json +565 -140
- package/specs/index.json +99 -4
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Data Intelligence",
|
|
5
5
|
"description": "F5 Distributed Cloud Data Intelligence API specifications",
|
|
6
|
-
"version": "2.0.
|
|
6
|
+
"version": "2.0.13",
|
|
7
7
|
"contact": {
|
|
8
8
|
"name": "F5 Distributed Cloud",
|
|
9
9
|
"url": "https://docs.cloud.f5.com"
|
|
@@ -12,7 +12,57 @@
|
|
|
12
12
|
"name": "Proprietary",
|
|
13
13
|
"url": "https://www.f5.com/company/policies/eula"
|
|
14
14
|
},
|
|
15
|
-
"x-f5xc-cli-domain": "data_intelligence"
|
|
15
|
+
"x-f5xc-cli-domain": "data_intelligence",
|
|
16
|
+
"x-f5xc-best-practices": {
|
|
17
|
+
"common_errors": [
|
|
18
|
+
{
|
|
19
|
+
"code": 400,
|
|
20
|
+
"message": "Invalid request body",
|
|
21
|
+
"resolution": "Validate JSON structure and required fields before submission",
|
|
22
|
+
"prevention": "Use schema validation from OpenAPI spec"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"code": 401,
|
|
26
|
+
"message": "Authentication failed",
|
|
27
|
+
"resolution": "Verify API token is valid and not expired",
|
|
28
|
+
"prevention": "Use environment variables for token management"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"code": 403,
|
|
32
|
+
"message": "Permission denied",
|
|
33
|
+
"resolution": "Check user role and namespace permissions",
|
|
34
|
+
"prevention": "Verify RBAC policies before operations"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"code": 404,
|
|
38
|
+
"message": "Resource not found",
|
|
39
|
+
"resolution": "Verify resource name and namespace exist",
|
|
40
|
+
"prevention": "List resources before attempting operations"
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"code": 409,
|
|
44
|
+
"message": "Resource already exists",
|
|
45
|
+
"resolution": "Use unique name or delete existing resource",
|
|
46
|
+
"prevention": "Check existence before creation"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"code": 429,
|
|
50
|
+
"message": "Rate limit exceeded",
|
|
51
|
+
"resolution": "Implement exponential backoff and retry logic",
|
|
52
|
+
"prevention": "Batch operations and add delays between requests"
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"security_notes": [
|
|
56
|
+
"Always use HTTPS for all API communications",
|
|
57
|
+
"Store API tokens securely, never in source code",
|
|
58
|
+
"Rotate API tokens regularly following security policies"
|
|
59
|
+
],
|
|
60
|
+
"performance_tips": [
|
|
61
|
+
"Use pagination for large result sets",
|
|
62
|
+
"Batch related operations when possible",
|
|
63
|
+
"Cache read-only responses appropriately"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
16
66
|
},
|
|
17
67
|
"servers": [
|
|
18
68
|
{
|
|
@@ -275,6 +325,13 @@
|
|
|
275
325
|
"latency": "low",
|
|
276
326
|
"resource_usage": "low"
|
|
277
327
|
}
|
|
328
|
+
},
|
|
329
|
+
"x-f5xc-discovered-response-time": {
|
|
330
|
+
"p50_ms": 1000,
|
|
331
|
+
"p95_ms": 3000,
|
|
332
|
+
"p99_ms": 8000,
|
|
333
|
+
"sample_count": 0,
|
|
334
|
+
"source": "estimate"
|
|
278
335
|
}
|
|
279
336
|
},
|
|
280
337
|
"x-displayname": "Data Delivery.",
|
|
@@ -497,6 +554,13 @@
|
|
|
497
554
|
"latency": "low",
|
|
498
555
|
"resource_usage": "low"
|
|
499
556
|
}
|
|
557
|
+
},
|
|
558
|
+
"x-f5xc-discovered-response-time": {
|
|
559
|
+
"p50_ms": 800,
|
|
560
|
+
"p95_ms": 2500,
|
|
561
|
+
"p99_ms": 6000,
|
|
562
|
+
"sample_count": 0,
|
|
563
|
+
"source": "estimate"
|
|
500
564
|
}
|
|
501
565
|
},
|
|
502
566
|
"x-displayname": "Data Delivery.",
|
|
@@ -724,6 +788,13 @@
|
|
|
724
788
|
"latency": "moderate",
|
|
725
789
|
"resource_usage": "moderate"
|
|
726
790
|
}
|
|
791
|
+
},
|
|
792
|
+
"x-f5xc-discovered-response-time": {
|
|
793
|
+
"p50_ms": 200,
|
|
794
|
+
"p95_ms": 800,
|
|
795
|
+
"p99_ms": 2000,
|
|
796
|
+
"sample_count": 0,
|
|
797
|
+
"source": "estimate"
|
|
727
798
|
}
|
|
728
799
|
},
|
|
729
800
|
"x-displayname": "Data Delivery.",
|
|
@@ -945,6 +1016,13 @@
|
|
|
945
1016
|
"latency": "low",
|
|
946
1017
|
"resource_usage": "low"
|
|
947
1018
|
}
|
|
1019
|
+
},
|
|
1020
|
+
"x-f5xc-discovered-response-time": {
|
|
1021
|
+
"p50_ms": 200,
|
|
1022
|
+
"p95_ms": 800,
|
|
1023
|
+
"p99_ms": 2000,
|
|
1024
|
+
"sample_count": 0,
|
|
1025
|
+
"source": "estimate"
|
|
948
1026
|
}
|
|
949
1027
|
},
|
|
950
1028
|
"delete": {
|
|
@@ -1164,6 +1242,13 @@
|
|
|
1164
1242
|
"latency": "high",
|
|
1165
1243
|
"resource_usage": "moderate"
|
|
1166
1244
|
}
|
|
1245
|
+
},
|
|
1246
|
+
"x-f5xc-discovered-response-time": {
|
|
1247
|
+
"p50_ms": 500,
|
|
1248
|
+
"p95_ms": 1500,
|
|
1249
|
+
"p99_ms": 4000,
|
|
1250
|
+
"sample_count": 0,
|
|
1251
|
+
"source": "estimate"
|
|
1167
1252
|
}
|
|
1168
1253
|
},
|
|
1169
1254
|
"x-displayname": "Data Delivery.",
|
|
@@ -1334,6 +1419,13 @@
|
|
|
1334
1419
|
"latency": "moderate",
|
|
1335
1420
|
"resource_usage": "moderate"
|
|
1336
1421
|
}
|
|
1422
|
+
},
|
|
1423
|
+
"x-f5xc-discovered-response-time": {
|
|
1424
|
+
"p50_ms": 200,
|
|
1425
|
+
"p95_ms": 800,
|
|
1426
|
+
"p99_ms": 2000,
|
|
1427
|
+
"sample_count": 0,
|
|
1428
|
+
"source": "estimate"
|
|
1337
1429
|
}
|
|
1338
1430
|
},
|
|
1339
1431
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -1522,6 +1614,13 @@
|
|
|
1522
1614
|
"latency": "low",
|
|
1523
1615
|
"resource_usage": "low"
|
|
1524
1616
|
}
|
|
1617
|
+
},
|
|
1618
|
+
"x-f5xc-discovered-response-time": {
|
|
1619
|
+
"p50_ms": 200,
|
|
1620
|
+
"p95_ms": 800,
|
|
1621
|
+
"p99_ms": 2000,
|
|
1622
|
+
"sample_count": 0,
|
|
1623
|
+
"source": "estimate"
|
|
1525
1624
|
}
|
|
1526
1625
|
},
|
|
1527
1626
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -1721,6 +1820,13 @@
|
|
|
1721
1820
|
"latency": "low",
|
|
1722
1821
|
"resource_usage": "low"
|
|
1723
1822
|
}
|
|
1823
|
+
},
|
|
1824
|
+
"x-f5xc-discovered-response-time": {
|
|
1825
|
+
"p50_ms": 1000,
|
|
1826
|
+
"p95_ms": 3000,
|
|
1827
|
+
"p99_ms": 8000,
|
|
1828
|
+
"sample_count": 0,
|
|
1829
|
+
"source": "estimate"
|
|
1724
1830
|
}
|
|
1725
1831
|
},
|
|
1726
1832
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -1909,6 +2015,13 @@
|
|
|
1909
2015
|
"latency": "moderate",
|
|
1910
2016
|
"resource_usage": "moderate"
|
|
1911
2017
|
}
|
|
2018
|
+
},
|
|
2019
|
+
"x-f5xc-discovered-response-time": {
|
|
2020
|
+
"p50_ms": 200,
|
|
2021
|
+
"p95_ms": 800,
|
|
2022
|
+
"p99_ms": 2000,
|
|
2023
|
+
"sample_count": 0,
|
|
2024
|
+
"source": "estimate"
|
|
1912
2025
|
}
|
|
1913
2026
|
},
|
|
1914
2027
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -2097,6 +2210,13 @@
|
|
|
2097
2210
|
"latency": "moderate",
|
|
2098
2211
|
"resource_usage": "moderate"
|
|
2099
2212
|
}
|
|
2213
|
+
},
|
|
2214
|
+
"x-f5xc-discovered-response-time": {
|
|
2215
|
+
"p50_ms": 200,
|
|
2216
|
+
"p95_ms": 800,
|
|
2217
|
+
"p99_ms": 2000,
|
|
2218
|
+
"sample_count": 0,
|
|
2219
|
+
"source": "estimate"
|
|
2100
2220
|
}
|
|
2101
2221
|
},
|
|
2102
2222
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -2311,6 +2431,13 @@
|
|
|
2311
2431
|
"latency": "low",
|
|
2312
2432
|
"resource_usage": "low"
|
|
2313
2433
|
}
|
|
2434
|
+
},
|
|
2435
|
+
"x-f5xc-discovered-response-time": {
|
|
2436
|
+
"p50_ms": 1000,
|
|
2437
|
+
"p95_ms": 3000,
|
|
2438
|
+
"p99_ms": 8000,
|
|
2439
|
+
"sample_count": 0,
|
|
2440
|
+
"source": "estimate"
|
|
2314
2441
|
}
|
|
2315
2442
|
},
|
|
2316
2443
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -2538,6 +2665,13 @@
|
|
|
2538
2665
|
"latency": "low",
|
|
2539
2666
|
"resource_usage": "low"
|
|
2540
2667
|
}
|
|
2668
|
+
},
|
|
2669
|
+
"x-f5xc-discovered-response-time": {
|
|
2670
|
+
"p50_ms": 1000,
|
|
2671
|
+
"p95_ms": 3000,
|
|
2672
|
+
"p99_ms": 8000,
|
|
2673
|
+
"sample_count": 0,
|
|
2674
|
+
"source": "estimate"
|
|
2541
2675
|
}
|
|
2542
2676
|
},
|
|
2543
2677
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -2765,6 +2899,13 @@
|
|
|
2765
2899
|
"latency": "low",
|
|
2766
2900
|
"resource_usage": "low"
|
|
2767
2901
|
}
|
|
2902
|
+
},
|
|
2903
|
+
"x-f5xc-discovered-response-time": {
|
|
2904
|
+
"p50_ms": 1000,
|
|
2905
|
+
"p95_ms": 3000,
|
|
2906
|
+
"p99_ms": 8000,
|
|
2907
|
+
"sample_count": 0,
|
|
2908
|
+
"source": "estimate"
|
|
2768
2909
|
}
|
|
2769
2910
|
},
|
|
2770
2911
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -2979,6 +3120,13 @@
|
|
|
2979
3120
|
"latency": "low",
|
|
2980
3121
|
"resource_usage": "low"
|
|
2981
3122
|
}
|
|
3123
|
+
},
|
|
3124
|
+
"x-f5xc-discovered-response-time": {
|
|
3125
|
+
"p50_ms": 1000,
|
|
3126
|
+
"p95_ms": 3000,
|
|
3127
|
+
"p99_ms": 8000,
|
|
3128
|
+
"sample_count": 0,
|
|
3129
|
+
"source": "estimate"
|
|
2982
3130
|
}
|
|
2983
3131
|
},
|
|
2984
3132
|
"x-displayname": "Data Delivery APIs.",
|
|
@@ -3178,6 +3326,13 @@
|
|
|
3178
3326
|
"latency": "low",
|
|
3179
3327
|
"resource_usage": "low"
|
|
3180
3328
|
}
|
|
3329
|
+
},
|
|
3330
|
+
"x-f5xc-discovered-response-time": {
|
|
3331
|
+
"p50_ms": 1000,
|
|
3332
|
+
"p95_ms": 3000,
|
|
3333
|
+
"p99_ms": 8000,
|
|
3334
|
+
"sample_count": 0,
|
|
3335
|
+
"source": "estimate"
|
|
3181
3336
|
}
|
|
3182
3337
|
},
|
|
3183
3338
|
"x-displayname": "Data Intelligence Subscription API.",
|
|
@@ -3377,6 +3532,13 @@
|
|
|
3377
3532
|
"latency": "low",
|
|
3378
3533
|
"resource_usage": "low"
|
|
3379
3534
|
}
|
|
3535
|
+
},
|
|
3536
|
+
"x-f5xc-discovered-response-time": {
|
|
3537
|
+
"p50_ms": 1000,
|
|
3538
|
+
"p95_ms": 3000,
|
|
3539
|
+
"p99_ms": 8000,
|
|
3540
|
+
"sample_count": 0,
|
|
3541
|
+
"source": "estimate"
|
|
3380
3542
|
}
|
|
3381
3543
|
},
|
|
3382
3544
|
"x-displayname": "Data Intelligence Subscription API.",
|
|
@@ -3435,7 +3597,7 @@
|
|
|
3435
3597
|
"readOnly": true,
|
|
3436
3598
|
"x-original-maxLength": 1024,
|
|
3437
3599
|
"x-reconciled-from-discovery": true,
|
|
3438
|
-
"x-reconciled-at": "2026-01-
|
|
3600
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887668+00:00"
|
|
3439
3601
|
},
|
|
3440
3602
|
"name": {
|
|
3441
3603
|
"type": "string",
|
|
@@ -3454,7 +3616,7 @@
|
|
|
3454
3616
|
},
|
|
3455
3617
|
"x-original-maxLength": 1024,
|
|
3456
3618
|
"x-reconciled-from-discovery": true,
|
|
3457
|
-
"x-reconciled-at": "2026-01-
|
|
3619
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887676+00:00"
|
|
3458
3620
|
},
|
|
3459
3621
|
"namespace": {
|
|
3460
3622
|
"type": "string",
|
|
@@ -3473,7 +3635,7 @@
|
|
|
3473
3635
|
},
|
|
3474
3636
|
"x-original-maxLength": 1024,
|
|
3475
3637
|
"x-reconciled-from-discovery": true,
|
|
3476
|
-
"x-reconciled-at": "2026-01-
|
|
3638
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887682+00:00"
|
|
3477
3639
|
},
|
|
3478
3640
|
"tenant": {
|
|
3479
3641
|
"type": "string",
|
|
@@ -3494,7 +3656,7 @@
|
|
|
3494
3656
|
"x-field-mutability": "read-only",
|
|
3495
3657
|
"x-original-maxLength": 1024,
|
|
3496
3658
|
"x-reconciled-from-discovery": true,
|
|
3497
|
-
"x-reconciled-at": "2026-01-
|
|
3659
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887686+00:00"
|
|
3498
3660
|
},
|
|
3499
3661
|
"uid": {
|
|
3500
3662
|
"type": "string",
|
|
@@ -3516,7 +3678,7 @@
|
|
|
3516
3678
|
"x-original-maxLength": 1024,
|
|
3517
3679
|
"format": "uuid",
|
|
3518
3680
|
"x-reconciled-from-discovery": true,
|
|
3519
|
-
"x-reconciled-at": "2026-01-
|
|
3681
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887692+00:00"
|
|
3520
3682
|
}
|
|
3521
3683
|
},
|
|
3522
3684
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3565,7 +3727,7 @@
|
|
|
3565
3727
|
},
|
|
3566
3728
|
"x-original-maxLength": 1024,
|
|
3567
3729
|
"x-reconciled-from-discovery": true,
|
|
3568
|
-
"x-reconciled-at": "2026-01-
|
|
3730
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887699+00:00"
|
|
3569
3731
|
}
|
|
3570
3732
|
},
|
|
3571
3733
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3702,7 +3864,7 @@
|
|
|
3702
3864
|
},
|
|
3703
3865
|
"x-original-maxLength": 1024,
|
|
3704
3866
|
"x-reconciled-from-discovery": true,
|
|
3705
|
-
"x-reconciled-at": "2026-01-
|
|
3867
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887715+00:00"
|
|
3706
3868
|
}
|
|
3707
3869
|
},
|
|
3708
3870
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4099,7 +4261,7 @@
|
|
|
4099
4261
|
},
|
|
4100
4262
|
"x-original-maxLength": 1024,
|
|
4101
4263
|
"x-reconciled-from-discovery": true,
|
|
4102
|
-
"x-reconciled-at": "2026-01-
|
|
4264
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887755+00:00"
|
|
4103
4265
|
},
|
|
4104
4266
|
"namespace": {
|
|
4105
4267
|
"type": "string",
|
|
@@ -4118,7 +4280,7 @@
|
|
|
4118
4280
|
},
|
|
4119
4281
|
"x-original-maxLength": 1024,
|
|
4120
4282
|
"x-reconciled-from-discovery": true,
|
|
4121
|
-
"x-reconciled-at": "2026-01-
|
|
4283
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887759+00:00"
|
|
4122
4284
|
}
|
|
4123
4285
|
},
|
|
4124
4286
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4277,7 +4439,7 @@
|
|
|
4277
4439
|
"maxLength": 17,
|
|
4278
4440
|
"minLength": 17,
|
|
4279
4441
|
"x-reconciled-from-discovery": true,
|
|
4280
|
-
"x-reconciled-at": "2026-01-
|
|
4442
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887779+00:00"
|
|
4281
4443
|
},
|
|
4282
4444
|
"system_metadata": {
|
|
4283
4445
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -4686,7 +4848,7 @@
|
|
|
4686
4848
|
},
|
|
4687
4849
|
"x-original-maxLength": 1024,
|
|
4688
4850
|
"x-reconciled-from-discovery": true,
|
|
4689
|
-
"x-reconciled-at": "2026-01-
|
|
4851
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887816+00:00"
|
|
4690
4852
|
},
|
|
4691
4853
|
"disabled": {
|
|
4692
4854
|
"type": "boolean",
|
|
@@ -4736,7 +4898,7 @@
|
|
|
4736
4898
|
},
|
|
4737
4899
|
"x-original-maxLength": 1024,
|
|
4738
4900
|
"x-reconciled-from-discovery": true,
|
|
4739
|
-
"x-reconciled-at": "2026-01-
|
|
4901
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887826+00:00"
|
|
4740
4902
|
},
|
|
4741
4903
|
"namespace": {
|
|
4742
4904
|
"type": "string",
|
|
@@ -4755,7 +4917,7 @@
|
|
|
4755
4917
|
},
|
|
4756
4918
|
"x-original-maxLength": 1024,
|
|
4757
4919
|
"x-reconciled-from-discovery": true,
|
|
4758
|
-
"x-reconciled-at": "2026-01-
|
|
4920
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887830+00:00"
|
|
4759
4921
|
},
|
|
4760
4922
|
"owner_view": {
|
|
4761
4923
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -4796,7 +4958,7 @@
|
|
|
4796
4958
|
"x-field-mutability": "read-only",
|
|
4797
4959
|
"x-original-maxLength": 1024,
|
|
4798
4960
|
"x-reconciled-from-discovery": true,
|
|
4799
|
-
"x-reconciled-at": "2026-01-
|
|
4961
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887838+00:00"
|
|
4800
4962
|
},
|
|
4801
4963
|
"uid": {
|
|
4802
4964
|
"type": "string",
|
|
@@ -4817,7 +4979,7 @@
|
|
|
4817
4979
|
"x-original-maxLength": 1024,
|
|
4818
4980
|
"format": "uuid",
|
|
4819
4981
|
"x-reconciled-from-discovery": true,
|
|
4820
|
-
"x-reconciled-at": "2026-01-
|
|
4982
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887843+00:00"
|
|
4821
4983
|
}
|
|
4822
4984
|
},
|
|
4823
4985
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5330,7 +5492,7 @@
|
|
|
5330
5492
|
},
|
|
5331
5493
|
"x-original-maxLength": 1024,
|
|
5332
5494
|
"x-reconciled-from-discovery": true,
|
|
5333
|
-
"x-reconciled-at": "2026-01-
|
|
5495
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887890+00:00"
|
|
5334
5496
|
},
|
|
5335
5497
|
"store_provider": {
|
|
5336
5498
|
"type": "string",
|
|
@@ -5388,7 +5550,7 @@
|
|
|
5388
5550
|
},
|
|
5389
5551
|
"x-original-maxLength": 1024,
|
|
5390
5552
|
"x-reconciled-from-discovery": true,
|
|
5391
|
-
"x-reconciled-at": "2026-01-
|
|
5553
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887897+00:00"
|
|
5392
5554
|
},
|
|
5393
5555
|
"url": {
|
|
5394
5556
|
"type": "string",
|
|
@@ -5485,7 +5647,7 @@
|
|
|
5485
5647
|
},
|
|
5486
5648
|
"x-original-maxLength": 1024,
|
|
5487
5649
|
"x-reconciled-from-discovery": true,
|
|
5488
|
-
"x-reconciled-at": "2026-01-
|
|
5650
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887907+00:00"
|
|
5489
5651
|
},
|
|
5490
5652
|
"service_name": {
|
|
5491
5653
|
"type": "string",
|
|
@@ -5524,7 +5686,7 @@
|
|
|
5524
5686
|
},
|
|
5525
5687
|
"x-original-maxLength": 1024,
|
|
5526
5688
|
"x-reconciled-from-discovery": true,
|
|
5527
|
-
"x-reconciled-at": "2026-01-
|
|
5689
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887912+00:00"
|
|
5528
5690
|
},
|
|
5529
5691
|
"type": {
|
|
5530
5692
|
"type": "string",
|
|
@@ -5661,7 +5823,7 @@
|
|
|
5661
5823
|
},
|
|
5662
5824
|
"x-original-maxLength": 1024,
|
|
5663
5825
|
"x-reconciled-from-discovery": true,
|
|
5664
|
-
"x-reconciled-at": "2026-01-
|
|
5826
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887923+00:00"
|
|
5665
5827
|
}
|
|
5666
5828
|
},
|
|
5667
5829
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5770,7 +5932,7 @@
|
|
|
5770
5932
|
},
|
|
5771
5933
|
"x-original-maxLength": 1200,
|
|
5772
5934
|
"x-reconciled-from-discovery": true,
|
|
5773
|
-
"x-reconciled-at": "2026-01-
|
|
5935
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887933+00:00"
|
|
5774
5936
|
},
|
|
5775
5937
|
"disable": {
|
|
5776
5938
|
"type": "boolean",
|
|
@@ -5823,7 +5985,7 @@
|
|
|
5823
5985
|
},
|
|
5824
5986
|
"x-original-maxLength": 1024,
|
|
5825
5987
|
"x-reconciled-from-discovery": true,
|
|
5826
|
-
"x-reconciled-at": "2026-01-
|
|
5988
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887940+00:00"
|
|
5827
5989
|
},
|
|
5828
5990
|
"namespace": {
|
|
5829
5991
|
"type": "string",
|
|
@@ -5842,7 +6004,7 @@
|
|
|
5842
6004
|
},
|
|
5843
6005
|
"x-original-maxLength": 1024,
|
|
5844
6006
|
"x-reconciled-from-discovery": true,
|
|
5845
|
-
"x-reconciled-at": "2026-01-
|
|
6007
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887944+00:00"
|
|
5846
6008
|
}
|
|
5847
6009
|
},
|
|
5848
6010
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5918,7 +6080,7 @@
|
|
|
5918
6080
|
},
|
|
5919
6081
|
"x-original-maxLength": 1200,
|
|
5920
6082
|
"x-reconciled-from-discovery": true,
|
|
5921
|
-
"x-reconciled-at": "2026-01-
|
|
6083
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887951+00:00"
|
|
5922
6084
|
},
|
|
5923
6085
|
"disable": {
|
|
5924
6086
|
"type": "boolean",
|
|
@@ -5973,7 +6135,7 @@
|
|
|
5973
6135
|
},
|
|
5974
6136
|
"x-original-maxLength": 1024,
|
|
5975
6137
|
"x-reconciled-from-discovery": true,
|
|
5976
|
-
"x-reconciled-at": "2026-01-
|
|
6138
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887958+00:00"
|
|
5977
6139
|
},
|
|
5978
6140
|
"namespace": {
|
|
5979
6141
|
"type": "string",
|
|
@@ -5992,7 +6154,7 @@
|
|
|
5992
6154
|
},
|
|
5993
6155
|
"x-original-maxLength": 1024,
|
|
5994
6156
|
"x-reconciled-from-discovery": true,
|
|
5995
|
-
"x-reconciled-at": "2026-01-
|
|
6157
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887963+00:00"
|
|
5996
6158
|
}
|
|
5997
6159
|
},
|
|
5998
6160
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6068,7 +6230,7 @@
|
|
|
6068
6230
|
},
|
|
6069
6231
|
"x-original-maxLength": 1200,
|
|
6070
6232
|
"x-reconciled-from-discovery": true,
|
|
6071
|
-
"x-reconciled-at": "2026-01-
|
|
6233
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887969+00:00"
|
|
6072
6234
|
},
|
|
6073
6235
|
"disable": {
|
|
6074
6236
|
"type": "boolean",
|
|
@@ -6121,7 +6283,7 @@
|
|
|
6121
6283
|
},
|
|
6122
6284
|
"x-original-maxLength": 1024,
|
|
6123
6285
|
"x-reconciled-from-discovery": true,
|
|
6124
|
-
"x-reconciled-at": "2026-01-
|
|
6286
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887976+00:00"
|
|
6125
6287
|
},
|
|
6126
6288
|
"namespace": {
|
|
6127
6289
|
"type": "string",
|
|
@@ -6140,7 +6302,7 @@
|
|
|
6140
6302
|
},
|
|
6141
6303
|
"x-original-maxLength": 1024,
|
|
6142
6304
|
"x-reconciled-from-discovery": true,
|
|
6143
|
-
"x-reconciled-at": "2026-01-
|
|
6305
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887981+00:00"
|
|
6144
6306
|
}
|
|
6145
6307
|
},
|
|
6146
6308
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6301,7 +6463,7 @@
|
|
|
6301
6463
|
"x-original-maxLength": 1024,
|
|
6302
6464
|
"format": "uuid",
|
|
6303
6465
|
"x-reconciled-from-discovery": true,
|
|
6304
|
-
"x-reconciled-at": "2026-01-
|
|
6466
|
+
"x-reconciled-at": "2026-01-05T18:29:13.887997+00:00"
|
|
6305
6467
|
},
|
|
6306
6468
|
"vtrp_id": {
|
|
6307
6469
|
"type": "string",
|
|
@@ -6413,7 +6575,7 @@
|
|
|
6413
6575
|
},
|
|
6414
6576
|
"x-original-maxLength": 1024,
|
|
6415
6577
|
"x-reconciled-from-discovery": true,
|
|
6416
|
-
"x-reconciled-at": "2026-01-
|
|
6578
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888007+00:00"
|
|
6417
6579
|
},
|
|
6418
6580
|
"status": {
|
|
6419
6581
|
"type": "string",
|
|
@@ -6432,7 +6594,7 @@
|
|
|
6432
6594
|
},
|
|
6433
6595
|
"x-original-maxLength": 1024,
|
|
6434
6596
|
"x-reconciled-from-discovery": true,
|
|
6435
|
-
"x-reconciled-at": "2026-01-
|
|
6597
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888011+00:00"
|
|
6436
6598
|
}
|
|
6437
6599
|
},
|
|
6438
6600
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6610,7 +6772,7 @@
|
|
|
6610
6772
|
"x-field-mutability": "read-only",
|
|
6611
6773
|
"x-original-maxLength": 1024,
|
|
6612
6774
|
"x-reconciled-from-discovery": true,
|
|
6613
|
-
"x-reconciled-at": "2026-01-
|
|
6775
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888030+00:00"
|
|
6614
6776
|
},
|
|
6615
6777
|
"uid": {
|
|
6616
6778
|
"type": "string",
|
|
@@ -6631,7 +6793,7 @@
|
|
|
6631
6793
|
"x-original-maxLength": 1024,
|
|
6632
6794
|
"format": "uuid",
|
|
6633
6795
|
"x-reconciled-from-discovery": true,
|
|
6634
|
-
"x-reconciled-at": "2026-01-
|
|
6796
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888047+00:00"
|
|
6635
6797
|
}
|
|
6636
6798
|
},
|
|
6637
6799
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6677,7 +6839,7 @@
|
|
|
6677
6839
|
},
|
|
6678
6840
|
"x-original-maxLength": 1024,
|
|
6679
6841
|
"x-reconciled-from-discovery": true,
|
|
6680
|
-
"x-reconciled-at": "2026-01-
|
|
6842
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888052+00:00"
|
|
6681
6843
|
},
|
|
6682
6844
|
"location": {
|
|
6683
6845
|
"type": "string",
|
|
@@ -6694,7 +6856,7 @@
|
|
|
6694
6856
|
},
|
|
6695
6857
|
"x-original-maxLength": 1024,
|
|
6696
6858
|
"x-reconciled-from-discovery": true,
|
|
6697
|
-
"x-reconciled-at": "2026-01-
|
|
6859
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888057+00:00"
|
|
6698
6860
|
},
|
|
6699
6861
|
"provider": {
|
|
6700
6862
|
"type": "string",
|
|
@@ -6711,7 +6873,7 @@
|
|
|
6711
6873
|
},
|
|
6712
6874
|
"x-original-maxLength": 1024,
|
|
6713
6875
|
"x-reconciled-from-discovery": true,
|
|
6714
|
-
"x-reconciled-at": "2026-01-
|
|
6876
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888061+00:00"
|
|
6715
6877
|
},
|
|
6716
6878
|
"secret_encoding": {
|
|
6717
6879
|
"$ref": "#/components/schemas/schemaSecretEncodingType"
|
|
@@ -6733,7 +6895,7 @@
|
|
|
6733
6895
|
"maxLength": 1,
|
|
6734
6896
|
"minLength": 1,
|
|
6735
6897
|
"x-reconciled-from-discovery": true,
|
|
6736
|
-
"x-reconciled-at": "2026-01-
|
|
6898
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888067+00:00"
|
|
6737
6899
|
}
|
|
6738
6900
|
},
|
|
6739
6901
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6776,7 +6938,7 @@
|
|
|
6776
6938
|
},
|
|
6777
6939
|
"x-original-maxLength": 1024,
|
|
6778
6940
|
"x-reconciled-from-discovery": true,
|
|
6779
|
-
"x-reconciled-at": "2026-01-
|
|
6941
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888072+00:00"
|
|
6780
6942
|
},
|
|
6781
6943
|
"name": {
|
|
6782
6944
|
"type": "string",
|
|
@@ -6795,7 +6957,7 @@
|
|
|
6795
6957
|
},
|
|
6796
6958
|
"x-original-maxLength": 1024,
|
|
6797
6959
|
"x-reconciled-from-discovery": true,
|
|
6798
|
-
"x-reconciled-at": "2026-01-
|
|
6960
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888076+00:00"
|
|
6799
6961
|
},
|
|
6800
6962
|
"namespace": {
|
|
6801
6963
|
"type": "string",
|
|
@@ -6814,7 +6976,7 @@
|
|
|
6814
6976
|
},
|
|
6815
6977
|
"x-original-maxLength": 1024,
|
|
6816
6978
|
"x-reconciled-from-discovery": true,
|
|
6817
|
-
"x-reconciled-at": "2026-01-
|
|
6979
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888081+00:00"
|
|
6818
6980
|
},
|
|
6819
6981
|
"uid": {
|
|
6820
6982
|
"type": "string",
|
|
@@ -6835,7 +6997,7 @@
|
|
|
6835
6997
|
"x-original-maxLength": 1024,
|
|
6836
6998
|
"format": "uuid",
|
|
6837
6999
|
"x-reconciled-from-discovery": true,
|
|
6838
|
-
"x-reconciled-at": "2026-01-
|
|
7000
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888086+00:00"
|
|
6839
7001
|
}
|
|
6840
7002
|
},
|
|
6841
7003
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6873,7 +7035,7 @@
|
|
|
6873
7035
|
},
|
|
6874
7036
|
"x-original-maxLength": 1024,
|
|
6875
7037
|
"x-reconciled-from-discovery": true,
|
|
6876
|
-
"x-reconciled-at": "2026-01-
|
|
7038
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888090+00:00"
|
|
6877
7039
|
}
|
|
6878
7040
|
},
|
|
6879
7041
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6923,7 +7085,7 @@
|
|
|
6923
7085
|
},
|
|
6924
7086
|
"x-original-maxLength": 128,
|
|
6925
7087
|
"x-reconciled-from-discovery": true,
|
|
6926
|
-
"x-reconciled-at": "2026-01-
|
|
7088
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888095+00:00"
|
|
6927
7089
|
},
|
|
6928
7090
|
"namespace": {
|
|
6929
7091
|
"type": "string",
|
|
@@ -6948,7 +7110,7 @@
|
|
|
6948
7110
|
},
|
|
6949
7111
|
"x-original-maxLength": 64,
|
|
6950
7112
|
"x-reconciled-from-discovery": true,
|
|
6951
|
-
"x-reconciled-at": "2026-01-
|
|
7113
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888099+00:00"
|
|
6952
7114
|
},
|
|
6953
7115
|
"tenant": {
|
|
6954
7116
|
"type": "string",
|
|
@@ -6975,7 +7137,7 @@
|
|
|
6975
7137
|
"x-field-mutability": "read-only",
|
|
6976
7138
|
"x-original-maxLength": 64,
|
|
6977
7139
|
"x-reconciled-from-discovery": true,
|
|
6978
|
-
"x-reconciled-at": "2026-01-
|
|
7140
|
+
"x-reconciled-at": "2026-01-05T18:29:13.888104+00:00"
|
|
6979
7141
|
}
|
|
6980
7142
|
},
|
|
6981
7143
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7030,7 +7192,7 @@
|
|
|
7030
7192
|
"maxLength": 15,
|
|
7031
7193
|
"minLength": 3,
|
|
7032
7194
|
"x-reconciled-from-discovery": true,
|
|
7033
|
-
"x-reconciled-at": "2026-01-
|
|
7195
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171874+00:00"
|
|
7034
7196
|
}
|
|
7035
7197
|
},
|
|
7036
7198
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7068,7 +7230,7 @@
|
|
|
7068
7230
|
},
|
|
7069
7231
|
"x-original-maxLength": 1024,
|
|
7070
7232
|
"x-reconciled-from-discovery": true,
|
|
7071
|
-
"x-reconciled-at": "2026-01-
|
|
7233
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171883+00:00"
|
|
7072
7234
|
},
|
|
7073
7235
|
"id": {
|
|
7074
7236
|
"type": "string",
|
|
@@ -7105,7 +7267,7 @@
|
|
|
7105
7267
|
},
|
|
7106
7268
|
"x-original-maxLength": 1024,
|
|
7107
7269
|
"x-reconciled-from-discovery": true,
|
|
7108
|
-
"x-reconciled-at": "2026-01-
|
|
7270
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171892+00:00"
|
|
7109
7271
|
},
|
|
7110
7272
|
"status": {
|
|
7111
7273
|
"type": "string",
|
|
@@ -7124,7 +7286,7 @@
|
|
|
7124
7286
|
},
|
|
7125
7287
|
"x-original-maxLength": 1024,
|
|
7126
7288
|
"x-reconciled-from-discovery": true,
|
|
7127
|
-
"x-reconciled-at": "2026-01-
|
|
7289
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171897+00:00"
|
|
7128
7290
|
}
|
|
7129
7291
|
},
|
|
7130
7292
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7210,7 +7372,7 @@
|
|
|
7210
7372
|
},
|
|
7211
7373
|
"x-original-maxLength": 1024,
|
|
7212
7374
|
"x-reconciled-from-discovery": true,
|
|
7213
|
-
"x-reconciled-at": "2026-01-
|
|
7375
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171907+00:00"
|
|
7214
7376
|
}
|
|
7215
7377
|
},
|
|
7216
7378
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7266,7 +7428,7 @@
|
|
|
7266
7428
|
},
|
|
7267
7429
|
"x-original-maxLength": 1024,
|
|
7268
7430
|
"x-reconciled-from-discovery": true,
|
|
7269
|
-
"x-reconciled-at": "2026-01-
|
|
7431
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171914+00:00"
|
|
7270
7432
|
},
|
|
7271
7433
|
"feature_name": {
|
|
7272
7434
|
"type": "string",
|
|
@@ -7649,7 +7811,7 @@
|
|
|
7649
7811
|
},
|
|
7650
7812
|
"x-original-maxLength": 1024,
|
|
7651
7813
|
"x-reconciled-from-discovery": true,
|
|
7652
|
-
"x-reconciled-at": "2026-01-
|
|
7814
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171941+00:00"
|
|
7653
7815
|
},
|
|
7654
7816
|
"platform": {
|
|
7655
7817
|
"type": "string",
|
|
@@ -7802,7 +7964,7 @@
|
|
|
7802
7964
|
},
|
|
7803
7965
|
"x-original-maxLength": 1024,
|
|
7804
7966
|
"x-reconciled-from-discovery": true,
|
|
7805
|
-
"x-reconciled-at": "2026-01-
|
|
7967
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171956+00:00"
|
|
7806
7968
|
}
|
|
7807
7969
|
},
|
|
7808
7970
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8042,7 +8204,7 @@
|
|
|
8042
8204
|
},
|
|
8043
8205
|
"x-original-maxLength": 1024,
|
|
8044
8206
|
"x-reconciled-from-discovery": true,
|
|
8045
|
-
"x-reconciled-at": "2026-01-
|
|
8207
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171976+00:00"
|
|
8046
8208
|
}
|
|
8047
8209
|
},
|
|
8048
8210
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8167,7 +8329,7 @@
|
|
|
8167
8329
|
},
|
|
8168
8330
|
"x-original-maxLength": 1024,
|
|
8169
8331
|
"x-reconciled-from-discovery": true,
|
|
8170
|
-
"x-reconciled-at": "2026-01-
|
|
8332
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171986+00:00"
|
|
8171
8333
|
},
|
|
8172
8334
|
"type": {
|
|
8173
8335
|
"$ref": "#/components/schemas/shapedata_deliveryStatusType"
|
|
@@ -8245,7 +8407,7 @@
|
|
|
8245
8407
|
},
|
|
8246
8408
|
"x-original-maxLength": 1024,
|
|
8247
8409
|
"x-reconciled-from-discovery": true,
|
|
8248
|
-
"x-reconciled-at": "2026-01-
|
|
8410
|
+
"x-reconciled-at": "2026-01-05T18:29:14.171995+00:00"
|
|
8249
8411
|
}
|
|
8250
8412
|
},
|
|
8251
8413
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8330,7 +8492,7 @@
|
|
|
8330
8492
|
},
|
|
8331
8493
|
"x-original-maxLength": 1024,
|
|
8332
8494
|
"x-reconciled-from-discovery": true,
|
|
8333
|
-
"x-reconciled-at": "2026-01-
|
|
8495
|
+
"x-reconciled-at": "2026-01-05T18:29:14.172003+00:00"
|
|
8334
8496
|
},
|
|
8335
8497
|
"request_body": {
|
|
8336
8498
|
"$ref": "#/components/schemas/protobufAny"
|
|
@@ -8409,7 +8571,7 @@
|
|
|
8409
8571
|
},
|
|
8410
8572
|
"x-original-maxLength": 1024,
|
|
8411
8573
|
"x-reconciled-from-discovery": true,
|
|
8412
|
-
"x-reconciled-at": "2026-01-
|
|
8574
|
+
"x-reconciled-at": "2026-01-05T18:29:14.172010+00:00"
|
|
8413
8575
|
},
|
|
8414
8576
|
"ref_value": {
|
|
8415
8577
|
"$ref": "#/components/schemas/schemaviewsObjectRefType"
|
|
@@ -8443,7 +8605,7 @@
|
|
|
8443
8605
|
},
|
|
8444
8606
|
"x-original-maxLength": 1024,
|
|
8445
8607
|
"x-reconciled-from-discovery": true,
|
|
8446
|
-
"x-reconciled-at": "2026-01-
|
|
8608
|
+
"x-reconciled-at": "2026-01-05T18:29:14.172017+00:00"
|
|
8447
8609
|
},
|
|
8448
8610
|
"value": {
|
|
8449
8611
|
"type": "string",
|
|
@@ -8460,7 +8622,7 @@
|
|
|
8460
8622
|
},
|
|
8461
8623
|
"x-original-maxLength": 1024,
|
|
8462
8624
|
"x-reconciled-from-discovery": true,
|
|
8463
|
-
"x-reconciled-at": "2026-01-
|
|
8625
|
+
"x-reconciled-at": "2026-01-05T18:29:14.172021+00:00"
|
|
8464
8626
|
}
|
|
8465
8627
|
},
|
|
8466
8628
|
"x-f5xc-minimum-configuration": {
|