@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
package/specs/domains/ddos.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Ddos",
|
|
5
5
|
"description": "Network perimeter hardening through deny list configurations, rule group hierarchies, and encrypted tunnel endpoints. Attack signature detection identifies flood patterns while throttling mechanisms block anomalous traffic bursts. Tunnel health checks verify coverage across distributed segments. Priority ordering governs policy application for multi-layered screening approaches.",
|
|
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"
|
|
@@ -13,7 +13,57 @@
|
|
|
13
13
|
"url": "https://www.f5.com/company/policies/eula"
|
|
14
14
|
},
|
|
15
15
|
"summary": "Deny lists, firewall rule groups, and tunnel-based safeguards. Rate limiting and pattern analysis for network perimeter security.",
|
|
16
|
-
"x-f5xc-cli-domain": "ddos"
|
|
16
|
+
"x-f5xc-cli-domain": "ddos",
|
|
17
|
+
"x-f5xc-best-practices": {
|
|
18
|
+
"common_errors": [
|
|
19
|
+
{
|
|
20
|
+
"code": 400,
|
|
21
|
+
"message": "Invalid request body",
|
|
22
|
+
"resolution": "Validate JSON structure and required fields before submission",
|
|
23
|
+
"prevention": "Use schema validation from OpenAPI spec"
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"code": 401,
|
|
27
|
+
"message": "Authentication failed",
|
|
28
|
+
"resolution": "Verify API token is valid and not expired",
|
|
29
|
+
"prevention": "Use environment variables for token management"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"code": 403,
|
|
33
|
+
"message": "Permission denied",
|
|
34
|
+
"resolution": "Check user role and namespace permissions",
|
|
35
|
+
"prevention": "Verify RBAC policies before operations"
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
"code": 404,
|
|
39
|
+
"message": "Resource not found",
|
|
40
|
+
"resolution": "Verify resource name and namespace exist",
|
|
41
|
+
"prevention": "List resources before attempting operations"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"code": 409,
|
|
45
|
+
"message": "Resource already exists",
|
|
46
|
+
"resolution": "Use unique name or delete existing resource",
|
|
47
|
+
"prevention": "Check existence before creation"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"code": 429,
|
|
51
|
+
"message": "Rate limit exceeded",
|
|
52
|
+
"resolution": "Implement exponential backoff and retry logic",
|
|
53
|
+
"prevention": "Batch operations and add delays between requests"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"security_notes": [
|
|
57
|
+
"Always use HTTPS for all API communications",
|
|
58
|
+
"Store API tokens securely, never in source code",
|
|
59
|
+
"Rotate API tokens regularly following security policies"
|
|
60
|
+
],
|
|
61
|
+
"performance_tips": [
|
|
62
|
+
"Use pagination for large result sets",
|
|
63
|
+
"Batch related operations when possible",
|
|
64
|
+
"Cache read-only responses appropriately"
|
|
65
|
+
]
|
|
66
|
+
}
|
|
17
67
|
},
|
|
18
68
|
"servers": [
|
|
19
69
|
{
|
|
@@ -234,7 +284,15 @@
|
|
|
234
284
|
}
|
|
235
285
|
},
|
|
236
286
|
"x-discovered-response-time-ms": 159.08,
|
|
237
|
-
"x-discovered-sample-size": 1
|
|
287
|
+
"x-discovered-sample-size": 1,
|
|
288
|
+
"x-f5xc-discovered-response-time": {
|
|
289
|
+
"p50_ms": 159.08,
|
|
290
|
+
"p95_ms": 318.16,
|
|
291
|
+
"p99_ms": 477.24,
|
|
292
|
+
"sample_count": 1,
|
|
293
|
+
"source": "discovery",
|
|
294
|
+
"last_measured": "2025-12-20T19:39:20.211392+00:00"
|
|
295
|
+
}
|
|
238
296
|
},
|
|
239
297
|
"x-displayname": "Infraprotect.",
|
|
240
298
|
"x-ves-proto-service": "ves.io.schema.infraprotect.CustomGeneralAPI",
|
|
@@ -435,6 +493,13 @@
|
|
|
435
493
|
"latency": "low",
|
|
436
494
|
"resource_usage": "low"
|
|
437
495
|
}
|
|
496
|
+
},
|
|
497
|
+
"x-f5xc-discovered-response-time": {
|
|
498
|
+
"p50_ms": 200,
|
|
499
|
+
"p95_ms": 800,
|
|
500
|
+
"p99_ms": 2000,
|
|
501
|
+
"sample_count": 0,
|
|
502
|
+
"source": "estimate"
|
|
438
503
|
}
|
|
439
504
|
},
|
|
440
505
|
"x-displayname": "Infraprotect.",
|
|
@@ -657,6 +722,13 @@
|
|
|
657
722
|
"latency": "low",
|
|
658
723
|
"resource_usage": "low"
|
|
659
724
|
}
|
|
725
|
+
},
|
|
726
|
+
"x-f5xc-discovered-response-time": {
|
|
727
|
+
"p50_ms": 800,
|
|
728
|
+
"p95_ms": 2500,
|
|
729
|
+
"p99_ms": 6000,
|
|
730
|
+
"sample_count": 0,
|
|
731
|
+
"source": "estimate"
|
|
660
732
|
}
|
|
661
733
|
},
|
|
662
734
|
"x-displayname": "Infraprotect.",
|
|
@@ -871,6 +943,13 @@
|
|
|
871
943
|
"latency": "low",
|
|
872
944
|
"resource_usage": "low"
|
|
873
945
|
}
|
|
946
|
+
},
|
|
947
|
+
"x-f5xc-discovered-response-time": {
|
|
948
|
+
"p50_ms": 1000,
|
|
949
|
+
"p95_ms": 3000,
|
|
950
|
+
"p99_ms": 8000,
|
|
951
|
+
"sample_count": 0,
|
|
952
|
+
"source": "estimate"
|
|
874
953
|
}
|
|
875
954
|
},
|
|
876
955
|
"x-displayname": "Infraprotect.",
|
|
@@ -1085,6 +1164,13 @@
|
|
|
1085
1164
|
"latency": "low",
|
|
1086
1165
|
"resource_usage": "low"
|
|
1087
1166
|
}
|
|
1167
|
+
},
|
|
1168
|
+
"x-f5xc-discovered-response-time": {
|
|
1169
|
+
"p50_ms": 1000,
|
|
1170
|
+
"p95_ms": 3000,
|
|
1171
|
+
"p99_ms": 8000,
|
|
1172
|
+
"sample_count": 0,
|
|
1173
|
+
"source": "estimate"
|
|
1088
1174
|
}
|
|
1089
1175
|
},
|
|
1090
1176
|
"x-displayname": "Infraprotect.",
|
|
@@ -1286,6 +1372,13 @@
|
|
|
1286
1372
|
"latency": "low",
|
|
1287
1373
|
"resource_usage": "low"
|
|
1288
1374
|
}
|
|
1375
|
+
},
|
|
1376
|
+
"x-f5xc-discovered-response-time": {
|
|
1377
|
+
"p50_ms": 200,
|
|
1378
|
+
"p95_ms": 800,
|
|
1379
|
+
"p99_ms": 2000,
|
|
1380
|
+
"sample_count": 0,
|
|
1381
|
+
"source": "estimate"
|
|
1289
1382
|
}
|
|
1290
1383
|
},
|
|
1291
1384
|
"put": {
|
|
@@ -1503,6 +1596,13 @@
|
|
|
1503
1596
|
"latency": "low",
|
|
1504
1597
|
"resource_usage": "low"
|
|
1505
1598
|
}
|
|
1599
|
+
},
|
|
1600
|
+
"x-f5xc-discovered-response-time": {
|
|
1601
|
+
"p50_ms": 800,
|
|
1602
|
+
"p95_ms": 2500,
|
|
1603
|
+
"p99_ms": 6000,
|
|
1604
|
+
"sample_count": 0,
|
|
1605
|
+
"source": "estimate"
|
|
1506
1606
|
}
|
|
1507
1607
|
},
|
|
1508
1608
|
"x-displayname": "Infraprotect.",
|
|
@@ -1704,6 +1804,13 @@
|
|
|
1704
1804
|
"latency": "moderate",
|
|
1705
1805
|
"resource_usage": "moderate"
|
|
1706
1806
|
}
|
|
1807
|
+
},
|
|
1808
|
+
"x-f5xc-discovered-response-time": {
|
|
1809
|
+
"p50_ms": 200,
|
|
1810
|
+
"p95_ms": 800,
|
|
1811
|
+
"p99_ms": 2000,
|
|
1812
|
+
"sample_count": 0,
|
|
1813
|
+
"source": "estimate"
|
|
1707
1814
|
}
|
|
1708
1815
|
},
|
|
1709
1816
|
"x-displayname": "Infraprotect.",
|
|
@@ -1905,6 +2012,13 @@
|
|
|
1905
2012
|
"latency": "moderate",
|
|
1906
2013
|
"resource_usage": "moderate"
|
|
1907
2014
|
}
|
|
2015
|
+
},
|
|
2016
|
+
"x-f5xc-discovered-response-time": {
|
|
2017
|
+
"p50_ms": 200,
|
|
2018
|
+
"p95_ms": 800,
|
|
2019
|
+
"p99_ms": 2000,
|
|
2020
|
+
"sample_count": 0,
|
|
2021
|
+
"source": "estimate"
|
|
1908
2022
|
}
|
|
1909
2023
|
},
|
|
1910
2024
|
"x-displayname": "Infraprotect.",
|
|
@@ -2134,6 +2248,13 @@
|
|
|
2134
2248
|
"latency": "high",
|
|
2135
2249
|
"resource_usage": "moderate"
|
|
2136
2250
|
}
|
|
2251
|
+
},
|
|
2252
|
+
"x-f5xc-discovered-response-time": {
|
|
2253
|
+
"p50_ms": 500,
|
|
2254
|
+
"p95_ms": 1500,
|
|
2255
|
+
"p99_ms": 4000,
|
|
2256
|
+
"sample_count": 0,
|
|
2257
|
+
"source": "estimate"
|
|
2137
2258
|
}
|
|
2138
2259
|
},
|
|
2139
2260
|
"put": {
|
|
@@ -2364,6 +2485,13 @@
|
|
|
2364
2485
|
"latency": "low",
|
|
2365
2486
|
"resource_usage": "low"
|
|
2366
2487
|
}
|
|
2488
|
+
},
|
|
2489
|
+
"x-f5xc-discovered-response-time": {
|
|
2490
|
+
"p50_ms": 800,
|
|
2491
|
+
"p95_ms": 2500,
|
|
2492
|
+
"p99_ms": 6000,
|
|
2493
|
+
"sample_count": 0,
|
|
2494
|
+
"source": "estimate"
|
|
2367
2495
|
}
|
|
2368
2496
|
},
|
|
2369
2497
|
"x-displayname": "Infraprotect.",
|
|
@@ -2565,6 +2693,13 @@
|
|
|
2565
2693
|
"latency": "moderate",
|
|
2566
2694
|
"resource_usage": "moderate"
|
|
2567
2695
|
}
|
|
2696
|
+
},
|
|
2697
|
+
"x-f5xc-discovered-response-time": {
|
|
2698
|
+
"p50_ms": 200,
|
|
2699
|
+
"p95_ms": 800,
|
|
2700
|
+
"p99_ms": 2000,
|
|
2701
|
+
"sample_count": 0,
|
|
2702
|
+
"source": "estimate"
|
|
2568
2703
|
}
|
|
2569
2704
|
},
|
|
2570
2705
|
"post": {
|
|
@@ -2787,6 +2922,13 @@
|
|
|
2787
2922
|
"latency": "low",
|
|
2788
2923
|
"resource_usage": "low"
|
|
2789
2924
|
}
|
|
2925
|
+
},
|
|
2926
|
+
"x-f5xc-discovered-response-time": {
|
|
2927
|
+
"p50_ms": 1000,
|
|
2928
|
+
"p95_ms": 3000,
|
|
2929
|
+
"p99_ms": 8000,
|
|
2930
|
+
"sample_count": 0,
|
|
2931
|
+
"source": "estimate"
|
|
2790
2932
|
}
|
|
2791
2933
|
},
|
|
2792
2934
|
"x-displayname": "Infraprotect.",
|
|
@@ -2988,6 +3130,13 @@
|
|
|
2988
3130
|
"latency": "moderate",
|
|
2989
3131
|
"resource_usage": "moderate"
|
|
2990
3132
|
}
|
|
3133
|
+
},
|
|
3134
|
+
"x-f5xc-discovered-response-time": {
|
|
3135
|
+
"p50_ms": 200,
|
|
3136
|
+
"p95_ms": 800,
|
|
3137
|
+
"p99_ms": 2000,
|
|
3138
|
+
"sample_count": 0,
|
|
3139
|
+
"source": "estimate"
|
|
2991
3140
|
}
|
|
2992
3141
|
},
|
|
2993
3142
|
"x-displayname": "Infraprotect.",
|
|
@@ -3202,6 +3351,13 @@
|
|
|
3202
3351
|
"latency": "low",
|
|
3203
3352
|
"resource_usage": "low"
|
|
3204
3353
|
}
|
|
3354
|
+
},
|
|
3355
|
+
"x-f5xc-discovered-response-time": {
|
|
3356
|
+
"p50_ms": 1000,
|
|
3357
|
+
"p95_ms": 3000,
|
|
3358
|
+
"p99_ms": 8000,
|
|
3359
|
+
"sample_count": 0,
|
|
3360
|
+
"source": "estimate"
|
|
3205
3361
|
}
|
|
3206
3362
|
},
|
|
3207
3363
|
"x-displayname": "Infraprotect.",
|
|
@@ -3401,6 +3557,13 @@
|
|
|
3401
3557
|
"latency": "moderate",
|
|
3402
3558
|
"resource_usage": "moderate"
|
|
3403
3559
|
}
|
|
3560
|
+
},
|
|
3561
|
+
"x-f5xc-discovered-response-time": {
|
|
3562
|
+
"p50_ms": 200,
|
|
3563
|
+
"p95_ms": 800,
|
|
3564
|
+
"p99_ms": 2000,
|
|
3565
|
+
"sample_count": 0,
|
|
3566
|
+
"source": "estimate"
|
|
3404
3567
|
}
|
|
3405
3568
|
},
|
|
3406
3569
|
"x-displayname": "Infraprotect.",
|
|
@@ -3602,6 +3765,13 @@
|
|
|
3602
3765
|
"latency": "low",
|
|
3603
3766
|
"resource_usage": "low"
|
|
3604
3767
|
}
|
|
3768
|
+
},
|
|
3769
|
+
"x-f5xc-discovered-response-time": {
|
|
3770
|
+
"p50_ms": 200,
|
|
3771
|
+
"p95_ms": 800,
|
|
3772
|
+
"p99_ms": 2000,
|
|
3773
|
+
"sample_count": 0,
|
|
3774
|
+
"source": "estimate"
|
|
3605
3775
|
}
|
|
3606
3776
|
},
|
|
3607
3777
|
"x-displayname": "Infraprotect.",
|
|
@@ -3803,6 +3973,13 @@
|
|
|
3803
3973
|
"latency": "moderate",
|
|
3804
3974
|
"resource_usage": "moderate"
|
|
3805
3975
|
}
|
|
3976
|
+
},
|
|
3977
|
+
"x-f5xc-discovered-response-time": {
|
|
3978
|
+
"p50_ms": 200,
|
|
3979
|
+
"p95_ms": 800,
|
|
3980
|
+
"p99_ms": 2000,
|
|
3981
|
+
"sample_count": 0,
|
|
3982
|
+
"source": "estimate"
|
|
3806
3983
|
}
|
|
3807
3984
|
},
|
|
3808
3985
|
"x-displayname": "Infraprotect.",
|
|
@@ -4004,6 +4181,13 @@
|
|
|
4004
4181
|
"latency": "moderate",
|
|
4005
4182
|
"resource_usage": "moderate"
|
|
4006
4183
|
}
|
|
4184
|
+
},
|
|
4185
|
+
"x-f5xc-discovered-response-time": {
|
|
4186
|
+
"p50_ms": 200,
|
|
4187
|
+
"p95_ms": 800,
|
|
4188
|
+
"p99_ms": 2000,
|
|
4189
|
+
"sample_count": 0,
|
|
4190
|
+
"source": "estimate"
|
|
4007
4191
|
}
|
|
4008
4192
|
},
|
|
4009
4193
|
"x-displayname": "Infraprotect.",
|
|
@@ -4218,6 +4402,13 @@
|
|
|
4218
4402
|
"latency": "low",
|
|
4219
4403
|
"resource_usage": "low"
|
|
4220
4404
|
}
|
|
4405
|
+
},
|
|
4406
|
+
"x-f5xc-discovered-response-time": {
|
|
4407
|
+
"p50_ms": 1000,
|
|
4408
|
+
"p95_ms": 3000,
|
|
4409
|
+
"p99_ms": 8000,
|
|
4410
|
+
"sample_count": 0,
|
|
4411
|
+
"source": "estimate"
|
|
4221
4412
|
}
|
|
4222
4413
|
},
|
|
4223
4414
|
"x-displayname": "Infraprotect.",
|
|
@@ -4406,6 +4597,13 @@
|
|
|
4406
4597
|
"latency": "moderate",
|
|
4407
4598
|
"resource_usage": "moderate"
|
|
4408
4599
|
}
|
|
4600
|
+
},
|
|
4601
|
+
"x-f5xc-discovered-response-time": {
|
|
4602
|
+
"p50_ms": 200,
|
|
4603
|
+
"p95_ms": 800,
|
|
4604
|
+
"p99_ms": 2000,
|
|
4605
|
+
"sample_count": 0,
|
|
4606
|
+
"source": "estimate"
|
|
4409
4607
|
}
|
|
4410
4608
|
},
|
|
4411
4609
|
"x-displayname": "Infraprotect.",
|
|
@@ -4607,6 +4805,13 @@
|
|
|
4607
4805
|
"latency": "low",
|
|
4608
4806
|
"resource_usage": "low"
|
|
4609
4807
|
}
|
|
4808
|
+
},
|
|
4809
|
+
"x-f5xc-discovered-response-time": {
|
|
4810
|
+
"p50_ms": 200,
|
|
4811
|
+
"p95_ms": 800,
|
|
4812
|
+
"p99_ms": 2000,
|
|
4813
|
+
"sample_count": 0,
|
|
4814
|
+
"source": "estimate"
|
|
4610
4815
|
}
|
|
4611
4816
|
},
|
|
4612
4817
|
"x-displayname": "Infraprotect.",
|
|
@@ -4821,6 +5026,13 @@
|
|
|
4821
5026
|
"latency": "low",
|
|
4822
5027
|
"resource_usage": "low"
|
|
4823
5028
|
}
|
|
5029
|
+
},
|
|
5030
|
+
"x-f5xc-discovered-response-time": {
|
|
5031
|
+
"p50_ms": 1000,
|
|
5032
|
+
"p95_ms": 3000,
|
|
5033
|
+
"p99_ms": 8000,
|
|
5034
|
+
"sample_count": 0,
|
|
5035
|
+
"source": "estimate"
|
|
4824
5036
|
}
|
|
4825
5037
|
},
|
|
4826
5038
|
"x-displayname": "Infraprotect.",
|
|
@@ -5035,6 +5247,13 @@
|
|
|
5035
5247
|
"latency": "low",
|
|
5036
5248
|
"resource_usage": "low"
|
|
5037
5249
|
}
|
|
5250
|
+
},
|
|
5251
|
+
"x-f5xc-discovered-response-time": {
|
|
5252
|
+
"p50_ms": 1000,
|
|
5253
|
+
"p95_ms": 3000,
|
|
5254
|
+
"p99_ms": 8000,
|
|
5255
|
+
"sample_count": 0,
|
|
5256
|
+
"source": "estimate"
|
|
5038
5257
|
}
|
|
5039
5258
|
},
|
|
5040
5259
|
"x-displayname": "Infraprotect.",
|
|
@@ -5249,6 +5468,13 @@
|
|
|
5249
5468
|
"latency": "low",
|
|
5250
5469
|
"resource_usage": "low"
|
|
5251
5470
|
}
|
|
5471
|
+
},
|
|
5472
|
+
"x-f5xc-discovered-response-time": {
|
|
5473
|
+
"p50_ms": 1000,
|
|
5474
|
+
"p95_ms": 3000,
|
|
5475
|
+
"p99_ms": 8000,
|
|
5476
|
+
"sample_count": 0,
|
|
5477
|
+
"source": "estimate"
|
|
5252
5478
|
}
|
|
5253
5479
|
},
|
|
5254
5480
|
"x-displayname": "Infraprotect.",
|
|
@@ -5463,6 +5689,13 @@
|
|
|
5463
5689
|
"latency": "low",
|
|
5464
5690
|
"resource_usage": "low"
|
|
5465
5691
|
}
|
|
5692
|
+
},
|
|
5693
|
+
"x-f5xc-discovered-response-time": {
|
|
5694
|
+
"p50_ms": 1000,
|
|
5695
|
+
"p95_ms": 3000,
|
|
5696
|
+
"p99_ms": 8000,
|
|
5697
|
+
"sample_count": 0,
|
|
5698
|
+
"source": "estimate"
|
|
5466
5699
|
}
|
|
5467
5700
|
},
|
|
5468
5701
|
"x-displayname": "Infraprotect ASN.",
|
|
@@ -5685,6 +5918,13 @@
|
|
|
5685
5918
|
"latency": "low",
|
|
5686
5919
|
"resource_usage": "low"
|
|
5687
5920
|
}
|
|
5921
|
+
},
|
|
5922
|
+
"x-f5xc-discovered-response-time": {
|
|
5923
|
+
"p50_ms": 800,
|
|
5924
|
+
"p95_ms": 2500,
|
|
5925
|
+
"p99_ms": 6000,
|
|
5926
|
+
"sample_count": 0,
|
|
5927
|
+
"source": "estimate"
|
|
5688
5928
|
}
|
|
5689
5929
|
},
|
|
5690
5930
|
"x-displayname": "Infraprotect ASN.",
|
|
@@ -5912,6 +6152,13 @@
|
|
|
5912
6152
|
"latency": "moderate",
|
|
5913
6153
|
"resource_usage": "moderate"
|
|
5914
6154
|
}
|
|
6155
|
+
},
|
|
6156
|
+
"x-f5xc-discovered-response-time": {
|
|
6157
|
+
"p50_ms": 200,
|
|
6158
|
+
"p95_ms": 800,
|
|
6159
|
+
"p99_ms": 2000,
|
|
6160
|
+
"sample_count": 0,
|
|
6161
|
+
"source": "estimate"
|
|
5915
6162
|
}
|
|
5916
6163
|
},
|
|
5917
6164
|
"x-displayname": "Infraprotect ASN.",
|
|
@@ -6126,6 +6373,13 @@
|
|
|
6126
6373
|
"latency": "low",
|
|
6127
6374
|
"resource_usage": "low"
|
|
6128
6375
|
}
|
|
6376
|
+
},
|
|
6377
|
+
"x-f5xc-discovered-response-time": {
|
|
6378
|
+
"p50_ms": 1000,
|
|
6379
|
+
"p95_ms": 3000,
|
|
6380
|
+
"p99_ms": 8000,
|
|
6381
|
+
"sample_count": 0,
|
|
6382
|
+
"source": "estimate"
|
|
6129
6383
|
}
|
|
6130
6384
|
},
|
|
6131
6385
|
"x-displayname": "Infraprotect ASN.",
|
|
@@ -6347,6 +6601,13 @@
|
|
|
6347
6601
|
"latency": "low",
|
|
6348
6602
|
"resource_usage": "low"
|
|
6349
6603
|
}
|
|
6604
|
+
},
|
|
6605
|
+
"x-f5xc-discovered-response-time": {
|
|
6606
|
+
"p50_ms": 200,
|
|
6607
|
+
"p95_ms": 800,
|
|
6608
|
+
"p99_ms": 2000,
|
|
6609
|
+
"sample_count": 0,
|
|
6610
|
+
"source": "estimate"
|
|
6350
6611
|
}
|
|
6351
6612
|
},
|
|
6352
6613
|
"delete": {
|
|
@@ -6566,6 +6827,13 @@
|
|
|
6566
6827
|
"latency": "high",
|
|
6567
6828
|
"resource_usage": "moderate"
|
|
6568
6829
|
}
|
|
6830
|
+
},
|
|
6831
|
+
"x-f5xc-discovered-response-time": {
|
|
6832
|
+
"p50_ms": 500,
|
|
6833
|
+
"p95_ms": 1500,
|
|
6834
|
+
"p99_ms": 4000,
|
|
6835
|
+
"sample_count": 0,
|
|
6836
|
+
"source": "estimate"
|
|
6569
6837
|
}
|
|
6570
6838
|
},
|
|
6571
6839
|
"x-displayname": "Infraprotect ASN.",
|
|
@@ -6780,6 +7048,13 @@
|
|
|
6780
7048
|
"latency": "low",
|
|
6781
7049
|
"resource_usage": "low"
|
|
6782
7050
|
}
|
|
7051
|
+
},
|
|
7052
|
+
"x-f5xc-discovered-response-time": {
|
|
7053
|
+
"p50_ms": 1000,
|
|
7054
|
+
"p95_ms": 3000,
|
|
7055
|
+
"p99_ms": 8000,
|
|
7056
|
+
"sample_count": 0,
|
|
7057
|
+
"source": "estimate"
|
|
6783
7058
|
}
|
|
6784
7059
|
},
|
|
6785
7060
|
"x-displayname": "Infraprotect ASN Prefix.",
|
|
@@ -7002,6 +7277,13 @@
|
|
|
7002
7277
|
"latency": "low",
|
|
7003
7278
|
"resource_usage": "low"
|
|
7004
7279
|
}
|
|
7280
|
+
},
|
|
7281
|
+
"x-f5xc-discovered-response-time": {
|
|
7282
|
+
"p50_ms": 800,
|
|
7283
|
+
"p95_ms": 2500,
|
|
7284
|
+
"p99_ms": 6000,
|
|
7285
|
+
"sample_count": 0,
|
|
7286
|
+
"source": "estimate"
|
|
7005
7287
|
}
|
|
7006
7288
|
},
|
|
7007
7289
|
"x-displayname": "Infraprotect ASN Prefix.",
|
|
@@ -7216,6 +7498,13 @@
|
|
|
7216
7498
|
"latency": "low",
|
|
7217
7499
|
"resource_usage": "low"
|
|
7218
7500
|
}
|
|
7501
|
+
},
|
|
7502
|
+
"x-f5xc-discovered-response-time": {
|
|
7503
|
+
"p50_ms": 1000,
|
|
7504
|
+
"p95_ms": 3000,
|
|
7505
|
+
"p99_ms": 8000,
|
|
7506
|
+
"sample_count": 0,
|
|
7507
|
+
"source": "estimate"
|
|
7219
7508
|
}
|
|
7220
7509
|
},
|
|
7221
7510
|
"x-displayname": "Infraprotect ASN Prefix.",
|
|
@@ -7430,6 +7719,13 @@
|
|
|
7430
7719
|
"latency": "low",
|
|
7431
7720
|
"resource_usage": "low"
|
|
7432
7721
|
}
|
|
7722
|
+
},
|
|
7723
|
+
"x-f5xc-discovered-response-time": {
|
|
7724
|
+
"p50_ms": 1000,
|
|
7725
|
+
"p95_ms": 3000,
|
|
7726
|
+
"p99_ms": 8000,
|
|
7727
|
+
"sample_count": 0,
|
|
7728
|
+
"source": "estimate"
|
|
7433
7729
|
}
|
|
7434
7730
|
},
|
|
7435
7731
|
"x-displayname": "Infraprotect ASN Prefix.",
|
|
@@ -7657,6 +7953,13 @@
|
|
|
7657
7953
|
"latency": "moderate",
|
|
7658
7954
|
"resource_usage": "moderate"
|
|
7659
7955
|
}
|
|
7956
|
+
},
|
|
7957
|
+
"x-f5xc-discovered-response-time": {
|
|
7958
|
+
"p50_ms": 200,
|
|
7959
|
+
"p95_ms": 800,
|
|
7960
|
+
"p99_ms": 2000,
|
|
7961
|
+
"sample_count": 0,
|
|
7962
|
+
"source": "estimate"
|
|
7660
7963
|
}
|
|
7661
7964
|
},
|
|
7662
7965
|
"x-displayname": "Infraprotect ASN Prefix.",
|
|
@@ -7878,6 +8181,13 @@
|
|
|
7878
8181
|
"latency": "low",
|
|
7879
8182
|
"resource_usage": "low"
|
|
7880
8183
|
}
|
|
8184
|
+
},
|
|
8185
|
+
"x-f5xc-discovered-response-time": {
|
|
8186
|
+
"p50_ms": 200,
|
|
8187
|
+
"p95_ms": 800,
|
|
8188
|
+
"p99_ms": 2000,
|
|
8189
|
+
"sample_count": 0,
|
|
8190
|
+
"source": "estimate"
|
|
7881
8191
|
}
|
|
7882
8192
|
},
|
|
7883
8193
|
"delete": {
|
|
@@ -8097,6 +8407,13 @@
|
|
|
8097
8407
|
"latency": "high",
|
|
8098
8408
|
"resource_usage": "moderate"
|
|
8099
8409
|
}
|
|
8410
|
+
},
|
|
8411
|
+
"x-f5xc-discovered-response-time": {
|
|
8412
|
+
"p50_ms": 500,
|
|
8413
|
+
"p95_ms": 1500,
|
|
8414
|
+
"p99_ms": 4000,
|
|
8415
|
+
"sample_count": 0,
|
|
8416
|
+
"source": "estimate"
|
|
8100
8417
|
}
|
|
8101
8418
|
},
|
|
8102
8419
|
"x-displayname": "Infraprotect ASN Prefix.",
|
|
@@ -8312,6 +8629,13 @@
|
|
|
8312
8629
|
"latency": "low",
|
|
8313
8630
|
"resource_usage": "low"
|
|
8314
8631
|
}
|
|
8632
|
+
},
|
|
8633
|
+
"x-f5xc-discovered-response-time": {
|
|
8634
|
+
"p50_ms": 1000,
|
|
8635
|
+
"p95_ms": 3000,
|
|
8636
|
+
"p99_ms": 8000,
|
|
8637
|
+
"sample_count": 0,
|
|
8638
|
+
"source": "estimate"
|
|
8315
8639
|
}
|
|
8316
8640
|
},
|
|
8317
8641
|
"x-displayname": "Infraprotect Deny List Rule.",
|
|
@@ -8535,6 +8859,13 @@
|
|
|
8535
8859
|
"latency": "low",
|
|
8536
8860
|
"resource_usage": "low"
|
|
8537
8861
|
}
|
|
8862
|
+
},
|
|
8863
|
+
"x-f5xc-discovered-response-time": {
|
|
8864
|
+
"p50_ms": 800,
|
|
8865
|
+
"p95_ms": 2500,
|
|
8866
|
+
"p99_ms": 6000,
|
|
8867
|
+
"sample_count": 0,
|
|
8868
|
+
"source": "estimate"
|
|
8538
8869
|
}
|
|
8539
8870
|
},
|
|
8540
8871
|
"x-displayname": "Infraprotect Deny List Rule.",
|
|
@@ -8763,6 +9094,13 @@
|
|
|
8763
9094
|
"latency": "moderate",
|
|
8764
9095
|
"resource_usage": "moderate"
|
|
8765
9096
|
}
|
|
9097
|
+
},
|
|
9098
|
+
"x-f5xc-discovered-response-time": {
|
|
9099
|
+
"p50_ms": 200,
|
|
9100
|
+
"p95_ms": 800,
|
|
9101
|
+
"p99_ms": 2000,
|
|
9102
|
+
"sample_count": 0,
|
|
9103
|
+
"source": "estimate"
|
|
8766
9104
|
}
|
|
8767
9105
|
},
|
|
8768
9106
|
"x-displayname": "Infraprotect Deny List Rule.",
|
|
@@ -8985,6 +9323,13 @@
|
|
|
8985
9323
|
"latency": "low",
|
|
8986
9324
|
"resource_usage": "low"
|
|
8987
9325
|
}
|
|
9326
|
+
},
|
|
9327
|
+
"x-f5xc-discovered-response-time": {
|
|
9328
|
+
"p50_ms": 200,
|
|
9329
|
+
"p95_ms": 800,
|
|
9330
|
+
"p99_ms": 2000,
|
|
9331
|
+
"sample_count": 0,
|
|
9332
|
+
"source": "estimate"
|
|
8988
9333
|
}
|
|
8989
9334
|
},
|
|
8990
9335
|
"delete": {
|
|
@@ -9205,6 +9550,13 @@
|
|
|
9205
9550
|
"latency": "high",
|
|
9206
9551
|
"resource_usage": "moderate"
|
|
9207
9552
|
}
|
|
9553
|
+
},
|
|
9554
|
+
"x-f5xc-discovered-response-time": {
|
|
9555
|
+
"p50_ms": 500,
|
|
9556
|
+
"p95_ms": 1500,
|
|
9557
|
+
"p99_ms": 4000,
|
|
9558
|
+
"sample_count": 0,
|
|
9559
|
+
"source": "estimate"
|
|
9208
9560
|
}
|
|
9209
9561
|
},
|
|
9210
9562
|
"x-displayname": "Infraprotect Deny List Rule.",
|
|
@@ -9420,6 +9772,13 @@
|
|
|
9420
9772
|
"latency": "low",
|
|
9421
9773
|
"resource_usage": "low"
|
|
9422
9774
|
}
|
|
9775
|
+
},
|
|
9776
|
+
"x-f5xc-discovered-response-time": {
|
|
9777
|
+
"p50_ms": 1000,
|
|
9778
|
+
"p95_ms": 3000,
|
|
9779
|
+
"p99_ms": 8000,
|
|
9780
|
+
"sample_count": 0,
|
|
9781
|
+
"source": "estimate"
|
|
9423
9782
|
}
|
|
9424
9783
|
},
|
|
9425
9784
|
"x-displayname": "Infraprotect Firewall Rule.",
|
|
@@ -9643,6 +10002,13 @@
|
|
|
9643
10002
|
"latency": "low",
|
|
9644
10003
|
"resource_usage": "low"
|
|
9645
10004
|
}
|
|
10005
|
+
},
|
|
10006
|
+
"x-f5xc-discovered-response-time": {
|
|
10007
|
+
"p50_ms": 800,
|
|
10008
|
+
"p95_ms": 2500,
|
|
10009
|
+
"p99_ms": 6000,
|
|
10010
|
+
"sample_count": 0,
|
|
10011
|
+
"source": "estimate"
|
|
9646
10012
|
}
|
|
9647
10013
|
},
|
|
9648
10014
|
"x-displayname": "Infraprotect Firewall Rule.",
|
|
@@ -9871,6 +10237,13 @@
|
|
|
9871
10237
|
"latency": "moderate",
|
|
9872
10238
|
"resource_usage": "moderate"
|
|
9873
10239
|
}
|
|
10240
|
+
},
|
|
10241
|
+
"x-f5xc-discovered-response-time": {
|
|
10242
|
+
"p50_ms": 200,
|
|
10243
|
+
"p95_ms": 800,
|
|
10244
|
+
"p99_ms": 2000,
|
|
10245
|
+
"sample_count": 0,
|
|
10246
|
+
"source": "estimate"
|
|
9874
10247
|
}
|
|
9875
10248
|
},
|
|
9876
10249
|
"x-displayname": "Infraprotect Firewall Rule.",
|
|
@@ -10093,6 +10466,13 @@
|
|
|
10093
10466
|
"latency": "low",
|
|
10094
10467
|
"resource_usage": "low"
|
|
10095
10468
|
}
|
|
10469
|
+
},
|
|
10470
|
+
"x-f5xc-discovered-response-time": {
|
|
10471
|
+
"p50_ms": 200,
|
|
10472
|
+
"p95_ms": 800,
|
|
10473
|
+
"p99_ms": 2000,
|
|
10474
|
+
"sample_count": 0,
|
|
10475
|
+
"source": "estimate"
|
|
10096
10476
|
}
|
|
10097
10477
|
},
|
|
10098
10478
|
"delete": {
|
|
@@ -10313,6 +10693,13 @@
|
|
|
10313
10693
|
"latency": "high",
|
|
10314
10694
|
"resource_usage": "moderate"
|
|
10315
10695
|
}
|
|
10696
|
+
},
|
|
10697
|
+
"x-f5xc-discovered-response-time": {
|
|
10698
|
+
"p50_ms": 500,
|
|
10699
|
+
"p95_ms": 1500,
|
|
10700
|
+
"p99_ms": 4000,
|
|
10701
|
+
"sample_count": 0,
|
|
10702
|
+
"source": "estimate"
|
|
10316
10703
|
}
|
|
10317
10704
|
},
|
|
10318
10705
|
"x-displayname": "Infraprotect Firewall Rule.",
|
|
@@ -10528,6 +10915,13 @@
|
|
|
10528
10915
|
"latency": "low",
|
|
10529
10916
|
"resource_usage": "low"
|
|
10530
10917
|
}
|
|
10918
|
+
},
|
|
10919
|
+
"x-f5xc-discovered-response-time": {
|
|
10920
|
+
"p50_ms": 1000,
|
|
10921
|
+
"p95_ms": 3000,
|
|
10922
|
+
"p99_ms": 8000,
|
|
10923
|
+
"sample_count": 0,
|
|
10924
|
+
"source": "estimate"
|
|
10531
10925
|
}
|
|
10532
10926
|
},
|
|
10533
10927
|
"x-displayname": "Infraprotect Firewall Rule Group.",
|
|
@@ -10751,6 +11145,13 @@
|
|
|
10751
11145
|
"latency": "low",
|
|
10752
11146
|
"resource_usage": "low"
|
|
10753
11147
|
}
|
|
11148
|
+
},
|
|
11149
|
+
"x-f5xc-discovered-response-time": {
|
|
11150
|
+
"p50_ms": 800,
|
|
11151
|
+
"p95_ms": 2500,
|
|
11152
|
+
"p99_ms": 6000,
|
|
11153
|
+
"sample_count": 0,
|
|
11154
|
+
"source": "estimate"
|
|
10754
11155
|
}
|
|
10755
11156
|
},
|
|
10756
11157
|
"x-displayname": "Infraprotect Firewall Rule Group.",
|
|
@@ -10979,6 +11380,13 @@
|
|
|
10979
11380
|
"latency": "moderate",
|
|
10980
11381
|
"resource_usage": "moderate"
|
|
10981
11382
|
}
|
|
11383
|
+
},
|
|
11384
|
+
"x-f5xc-discovered-response-time": {
|
|
11385
|
+
"p50_ms": 200,
|
|
11386
|
+
"p95_ms": 800,
|
|
11387
|
+
"p99_ms": 2000,
|
|
11388
|
+
"sample_count": 0,
|
|
11389
|
+
"source": "estimate"
|
|
10982
11390
|
}
|
|
10983
11391
|
},
|
|
10984
11392
|
"x-displayname": "Infraprotect Firewall Rule Group.",
|
|
@@ -11201,6 +11609,13 @@
|
|
|
11201
11609
|
"latency": "low",
|
|
11202
11610
|
"resource_usage": "low"
|
|
11203
11611
|
}
|
|
11612
|
+
},
|
|
11613
|
+
"x-f5xc-discovered-response-time": {
|
|
11614
|
+
"p50_ms": 200,
|
|
11615
|
+
"p95_ms": 800,
|
|
11616
|
+
"p99_ms": 2000,
|
|
11617
|
+
"sample_count": 0,
|
|
11618
|
+
"source": "estimate"
|
|
11204
11619
|
}
|
|
11205
11620
|
},
|
|
11206
11621
|
"delete": {
|
|
@@ -11421,6 +11836,13 @@
|
|
|
11421
11836
|
"latency": "high",
|
|
11422
11837
|
"resource_usage": "moderate"
|
|
11423
11838
|
}
|
|
11839
|
+
},
|
|
11840
|
+
"x-f5xc-discovered-response-time": {
|
|
11841
|
+
"p50_ms": 500,
|
|
11842
|
+
"p95_ms": 1500,
|
|
11843
|
+
"p99_ms": 4000,
|
|
11844
|
+
"sample_count": 0,
|
|
11845
|
+
"source": "estimate"
|
|
11424
11846
|
}
|
|
11425
11847
|
},
|
|
11426
11848
|
"x-displayname": "Infraprotect Firewall Rule Group.",
|
|
@@ -11644,6 +12066,13 @@
|
|
|
11644
12066
|
"latency": "low",
|
|
11645
12067
|
"resource_usage": "low"
|
|
11646
12068
|
}
|
|
12069
|
+
},
|
|
12070
|
+
"x-f5xc-discovered-response-time": {
|
|
12071
|
+
"p50_ms": 800,
|
|
12072
|
+
"p95_ms": 2500,
|
|
12073
|
+
"p99_ms": 6000,
|
|
12074
|
+
"sample_count": 0,
|
|
12075
|
+
"source": "estimate"
|
|
11647
12076
|
}
|
|
11648
12077
|
},
|
|
11649
12078
|
"x-displayname": "Infraprotect Firewall Ruleset.",
|
|
@@ -11872,6 +12301,13 @@
|
|
|
11872
12301
|
"latency": "moderate",
|
|
11873
12302
|
"resource_usage": "moderate"
|
|
11874
12303
|
}
|
|
12304
|
+
},
|
|
12305
|
+
"x-f5xc-discovered-response-time": {
|
|
12306
|
+
"p50_ms": 200,
|
|
12307
|
+
"p95_ms": 800,
|
|
12308
|
+
"p99_ms": 2000,
|
|
12309
|
+
"sample_count": 0,
|
|
12310
|
+
"source": "estimate"
|
|
11875
12311
|
}
|
|
11876
12312
|
},
|
|
11877
12313
|
"x-displayname": "Infraprotect Firewall Ruleset.",
|
|
@@ -12093,6 +12529,13 @@
|
|
|
12093
12529
|
"latency": "low",
|
|
12094
12530
|
"resource_usage": "low"
|
|
12095
12531
|
}
|
|
12532
|
+
},
|
|
12533
|
+
"x-f5xc-discovered-response-time": {
|
|
12534
|
+
"p50_ms": 200,
|
|
12535
|
+
"p95_ms": 800,
|
|
12536
|
+
"p99_ms": 2000,
|
|
12537
|
+
"sample_count": 0,
|
|
12538
|
+
"source": "estimate"
|
|
12096
12539
|
}
|
|
12097
12540
|
},
|
|
12098
12541
|
"x-displayname": "Infraprotect Firewall Ruleset.",
|
|
@@ -12312,6 +12755,13 @@
|
|
|
12312
12755
|
"latency": "low",
|
|
12313
12756
|
"resource_usage": "low"
|
|
12314
12757
|
}
|
|
12758
|
+
},
|
|
12759
|
+
"x-f5xc-discovered-response-time": {
|
|
12760
|
+
"p50_ms": 200,
|
|
12761
|
+
"p95_ms": 800,
|
|
12762
|
+
"p99_ms": 2000,
|
|
12763
|
+
"sample_count": 0,
|
|
12764
|
+
"source": "estimate"
|
|
12315
12765
|
}
|
|
12316
12766
|
},
|
|
12317
12767
|
"x-displayname": "Infraprotect Information.",
|
|
@@ -12526,6 +12976,13 @@
|
|
|
12526
12976
|
"latency": "low",
|
|
12527
12977
|
"resource_usage": "low"
|
|
12528
12978
|
}
|
|
12979
|
+
},
|
|
12980
|
+
"x-f5xc-discovered-response-time": {
|
|
12981
|
+
"p50_ms": 1000,
|
|
12982
|
+
"p95_ms": 3000,
|
|
12983
|
+
"p99_ms": 8000,
|
|
12984
|
+
"sample_count": 0,
|
|
12985
|
+
"source": "estimate"
|
|
12529
12986
|
}
|
|
12530
12987
|
},
|
|
12531
12988
|
"x-displayname": "Infraprotect Internet Prefix Advertisement.",
|
|
@@ -12748,6 +13205,13 @@
|
|
|
12748
13205
|
"latency": "low",
|
|
12749
13206
|
"resource_usage": "low"
|
|
12750
13207
|
}
|
|
13208
|
+
},
|
|
13209
|
+
"x-f5xc-discovered-response-time": {
|
|
13210
|
+
"p50_ms": 800,
|
|
13211
|
+
"p95_ms": 2500,
|
|
13212
|
+
"p99_ms": 6000,
|
|
13213
|
+
"sample_count": 0,
|
|
13214
|
+
"source": "estimate"
|
|
12751
13215
|
}
|
|
12752
13216
|
},
|
|
12753
13217
|
"x-displayname": "Infraprotect Internet Prefix Advertisement.",
|
|
@@ -12975,6 +13439,13 @@
|
|
|
12975
13439
|
"latency": "moderate",
|
|
12976
13440
|
"resource_usage": "moderate"
|
|
12977
13441
|
}
|
|
13442
|
+
},
|
|
13443
|
+
"x-f5xc-discovered-response-time": {
|
|
13444
|
+
"p50_ms": 200,
|
|
13445
|
+
"p95_ms": 800,
|
|
13446
|
+
"p99_ms": 2000,
|
|
13447
|
+
"sample_count": 0,
|
|
13448
|
+
"source": "estimate"
|
|
12978
13449
|
}
|
|
12979
13450
|
},
|
|
12980
13451
|
"x-displayname": "Infraprotect Internet Prefix Advertisement.",
|
|
@@ -13189,6 +13660,13 @@
|
|
|
13189
13660
|
"latency": "low",
|
|
13190
13661
|
"resource_usage": "low"
|
|
13191
13662
|
}
|
|
13663
|
+
},
|
|
13664
|
+
"x-f5xc-discovered-response-time": {
|
|
13665
|
+
"p50_ms": 1000,
|
|
13666
|
+
"p95_ms": 3000,
|
|
13667
|
+
"p99_ms": 8000,
|
|
13668
|
+
"sample_count": 0,
|
|
13669
|
+
"source": "estimate"
|
|
13192
13670
|
}
|
|
13193
13671
|
},
|
|
13194
13672
|
"x-displayname": "Infraprotect Internet Prefix Advertisement.",
|
|
@@ -13410,6 +13888,13 @@
|
|
|
13410
13888
|
"latency": "low",
|
|
13411
13889
|
"resource_usage": "low"
|
|
13412
13890
|
}
|
|
13891
|
+
},
|
|
13892
|
+
"x-f5xc-discovered-response-time": {
|
|
13893
|
+
"p50_ms": 200,
|
|
13894
|
+
"p95_ms": 800,
|
|
13895
|
+
"p99_ms": 2000,
|
|
13896
|
+
"sample_count": 0,
|
|
13897
|
+
"source": "estimate"
|
|
13413
13898
|
}
|
|
13414
13899
|
},
|
|
13415
13900
|
"delete": {
|
|
@@ -13629,6 +14114,13 @@
|
|
|
13629
14114
|
"latency": "high",
|
|
13630
14115
|
"resource_usage": "moderate"
|
|
13631
14116
|
}
|
|
14117
|
+
},
|
|
14118
|
+
"x-f5xc-discovered-response-time": {
|
|
14119
|
+
"p50_ms": 500,
|
|
14120
|
+
"p95_ms": 1500,
|
|
14121
|
+
"p99_ms": 4000,
|
|
14122
|
+
"sample_count": 0,
|
|
14123
|
+
"source": "estimate"
|
|
13632
14124
|
}
|
|
13633
14125
|
},
|
|
13634
14126
|
"x-displayname": "Infraprotect Internet Prefix Advertisement.",
|
|
@@ -13843,6 +14335,13 @@
|
|
|
13843
14335
|
"latency": "low",
|
|
13844
14336
|
"resource_usage": "low"
|
|
13845
14337
|
}
|
|
14338
|
+
},
|
|
14339
|
+
"x-f5xc-discovered-response-time": {
|
|
14340
|
+
"p50_ms": 1000,
|
|
14341
|
+
"p95_ms": 3000,
|
|
14342
|
+
"p99_ms": 8000,
|
|
14343
|
+
"sample_count": 0,
|
|
14344
|
+
"source": "estimate"
|
|
13846
14345
|
}
|
|
13847
14346
|
},
|
|
13848
14347
|
"x-displayname": "Tunnel",
|
|
@@ -14065,6 +14564,13 @@
|
|
|
14065
14564
|
"latency": "low",
|
|
14066
14565
|
"resource_usage": "low"
|
|
14067
14566
|
}
|
|
14567
|
+
},
|
|
14568
|
+
"x-f5xc-discovered-response-time": {
|
|
14569
|
+
"p50_ms": 800,
|
|
14570
|
+
"p95_ms": 2500,
|
|
14571
|
+
"p99_ms": 6000,
|
|
14572
|
+
"sample_count": 0,
|
|
14573
|
+
"source": "estimate"
|
|
14068
14574
|
}
|
|
14069
14575
|
},
|
|
14070
14576
|
"x-displayname": "Tunnel",
|
|
@@ -14292,6 +14798,13 @@
|
|
|
14292
14798
|
"latency": "moderate",
|
|
14293
14799
|
"resource_usage": "moderate"
|
|
14294
14800
|
}
|
|
14801
|
+
},
|
|
14802
|
+
"x-f5xc-discovered-response-time": {
|
|
14803
|
+
"p50_ms": 200,
|
|
14804
|
+
"p95_ms": 800,
|
|
14805
|
+
"p99_ms": 2000,
|
|
14806
|
+
"sample_count": 0,
|
|
14807
|
+
"source": "estimate"
|
|
14295
14808
|
}
|
|
14296
14809
|
},
|
|
14297
14810
|
"x-displayname": "Tunnel",
|
|
@@ -14506,6 +15019,13 @@
|
|
|
14506
15019
|
"latency": "low",
|
|
14507
15020
|
"resource_usage": "low"
|
|
14508
15021
|
}
|
|
15022
|
+
},
|
|
15023
|
+
"x-f5xc-discovered-response-time": {
|
|
15024
|
+
"p50_ms": 1000,
|
|
15025
|
+
"p95_ms": 3000,
|
|
15026
|
+
"p99_ms": 8000,
|
|
15027
|
+
"sample_count": 0,
|
|
15028
|
+
"source": "estimate"
|
|
14509
15029
|
}
|
|
14510
15030
|
},
|
|
14511
15031
|
"x-displayname": "Tunnel",
|
|
@@ -14727,6 +15247,13 @@
|
|
|
14727
15247
|
"latency": "low",
|
|
14728
15248
|
"resource_usage": "low"
|
|
14729
15249
|
}
|
|
15250
|
+
},
|
|
15251
|
+
"x-f5xc-discovered-response-time": {
|
|
15252
|
+
"p50_ms": 200,
|
|
15253
|
+
"p95_ms": 800,
|
|
15254
|
+
"p99_ms": 2000,
|
|
15255
|
+
"sample_count": 0,
|
|
15256
|
+
"source": "estimate"
|
|
14730
15257
|
}
|
|
14731
15258
|
},
|
|
14732
15259
|
"delete": {
|
|
@@ -14946,6 +15473,13 @@
|
|
|
14946
15473
|
"latency": "high",
|
|
14947
15474
|
"resource_usage": "moderate"
|
|
14948
15475
|
}
|
|
15476
|
+
},
|
|
15477
|
+
"x-f5xc-discovered-response-time": {
|
|
15478
|
+
"p50_ms": 500,
|
|
15479
|
+
"p95_ms": 1500,
|
|
15480
|
+
"p99_ms": 4000,
|
|
15481
|
+
"sample_count": 0,
|
|
15482
|
+
"source": "estimate"
|
|
14949
15483
|
}
|
|
14950
15484
|
},
|
|
14951
15485
|
"x-displayname": "Tunnel",
|
|
@@ -15086,7 +15620,7 @@
|
|
|
15086
15620
|
},
|
|
15087
15621
|
"x-original-maxLength": 1024,
|
|
15088
15622
|
"x-reconciled-from-discovery": true,
|
|
15089
|
-
"x-reconciled-at": "2026-01-
|
|
15623
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375808+00:00"
|
|
15090
15624
|
}
|
|
15091
15625
|
},
|
|
15092
15626
|
"x-f5xc-minimum-configuration": {
|
|
@@ -15158,7 +15692,7 @@
|
|
|
15158
15692
|
},
|
|
15159
15693
|
"x-original-maxLength": 1024,
|
|
15160
15694
|
"x-reconciled-from-discovery": true,
|
|
15161
|
-
"x-reconciled-at": "2026-01-
|
|
15695
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375817+00:00"
|
|
15162
15696
|
},
|
|
15163
15697
|
"event_id": {
|
|
15164
15698
|
"type": "string",
|
|
@@ -15194,7 +15728,7 @@
|
|
|
15194
15728
|
},
|
|
15195
15729
|
"x-original-maxLength": 1024,
|
|
15196
15730
|
"x-reconciled-from-discovery": true,
|
|
15197
|
-
"x-reconciled-at": "2026-01-
|
|
15731
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375823+00:00"
|
|
15198
15732
|
},
|
|
15199
15733
|
"time": {
|
|
15200
15734
|
"type": "string",
|
|
@@ -15230,7 +15764,7 @@
|
|
|
15230
15764
|
},
|
|
15231
15765
|
"x-original-maxLength": 1024,
|
|
15232
15766
|
"x-reconciled-from-discovery": true,
|
|
15233
|
-
"x-reconciled-at": "2026-01-
|
|
15767
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375829+00:00"
|
|
15234
15768
|
}
|
|
15235
15769
|
},
|
|
15236
15770
|
"x-f5xc-minimum-configuration": {
|
|
@@ -15523,7 +16057,7 @@
|
|
|
15523
16057
|
},
|
|
15524
16058
|
"x-original-maxLength": 1024,
|
|
15525
16059
|
"x-reconciled-from-discovery": true,
|
|
15526
|
-
"x-reconciled-at": "2026-01-
|
|
16060
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375856+00:00"
|
|
15527
16061
|
},
|
|
15528
16062
|
"number": {
|
|
15529
16063
|
"type": "integer",
|
|
@@ -15794,7 +16328,7 @@
|
|
|
15794
16328
|
},
|
|
15795
16329
|
"x-original-maxLength": 1024,
|
|
15796
16330
|
"x-reconciled-from-discovery": true,
|
|
15797
|
-
"x-reconciled-at": "2026-01-
|
|
16331
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375878+00:00"
|
|
15798
16332
|
},
|
|
15799
16333
|
"size_bytes": {
|
|
15800
16334
|
"type": "string",
|
|
@@ -15964,7 +16498,7 @@
|
|
|
15964
16498
|
},
|
|
15965
16499
|
"x-original-maxLength": 1024,
|
|
15966
16500
|
"x-reconciled-from-discovery": true,
|
|
15967
|
-
"x-reconciled-at": "2026-01-
|
|
16501
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375893+00:00"
|
|
15968
16502
|
},
|
|
15969
16503
|
"time": {
|
|
15970
16504
|
"type": "string",
|
|
@@ -16133,7 +16667,7 @@
|
|
|
16133
16667
|
},
|
|
16134
16668
|
"x-original-maxLength": 256,
|
|
16135
16669
|
"x-reconciled-from-discovery": true,
|
|
16136
|
-
"x-reconciled-at": "2026-01-
|
|
16670
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375904+00:00"
|
|
16137
16671
|
},
|
|
16138
16672
|
"zone1": {
|
|
16139
16673
|
"$ref": "#/components/schemas/schemaEmpty"
|
|
@@ -16195,7 +16729,7 @@
|
|
|
16195
16729
|
},
|
|
16196
16730
|
"x-original-maxLength": 1024,
|
|
16197
16731
|
"x-reconciled-from-discovery": true,
|
|
16198
|
-
"x-reconciled-at": "2026-01-
|
|
16732
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375912+00:00"
|
|
16199
16733
|
},
|
|
16200
16734
|
"event_detail_id": {
|
|
16201
16735
|
"type": "string",
|
|
@@ -16248,7 +16782,7 @@
|
|
|
16248
16782
|
},
|
|
16249
16783
|
"x-original-maxLength": 1024,
|
|
16250
16784
|
"x-reconciled-from-discovery": true,
|
|
16251
|
-
"x-reconciled-at": "2026-01-
|
|
16785
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375919+00:00"
|
|
16252
16786
|
},
|
|
16253
16787
|
"time": {
|
|
16254
16788
|
"type": "string",
|
|
@@ -16284,7 +16818,7 @@
|
|
|
16284
16818
|
},
|
|
16285
16819
|
"x-original-maxLength": 1024,
|
|
16286
16820
|
"x-reconciled-from-discovery": true,
|
|
16287
|
-
"x-reconciled-at": "2026-01-
|
|
16821
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375925+00:00"
|
|
16288
16822
|
}
|
|
16289
16823
|
},
|
|
16290
16824
|
"x-f5xc-minimum-configuration": {
|
|
@@ -16352,7 +16886,7 @@
|
|
|
16352
16886
|
},
|
|
16353
16887
|
"x-original-maxLength": 1024,
|
|
16354
16888
|
"x-reconciled-from-discovery": true,
|
|
16355
|
-
"x-reconciled-at": "2026-01-
|
|
16889
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375931+00:00"
|
|
16356
16890
|
},
|
|
16357
16891
|
"end_time": {
|
|
16358
16892
|
"type": "string",
|
|
@@ -16420,7 +16954,7 @@
|
|
|
16420
16954
|
},
|
|
16421
16955
|
"x-original-maxLength": 1024,
|
|
16422
16956
|
"x-reconciled-from-discovery": true,
|
|
16423
|
-
"x-reconciled-at": "2026-01-
|
|
16957
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375939+00:00"
|
|
16424
16958
|
},
|
|
16425
16959
|
"namespace": {
|
|
16426
16960
|
"type": "string",
|
|
@@ -16439,7 +16973,7 @@
|
|
|
16439
16973
|
},
|
|
16440
16974
|
"x-original-maxLength": 1024,
|
|
16441
16975
|
"x-reconciled-from-discovery": true,
|
|
16442
|
-
"x-reconciled-at": "2026-01-
|
|
16976
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375942+00:00"
|
|
16443
16977
|
}
|
|
16444
16978
|
},
|
|
16445
16979
|
"x-f5xc-minimum-configuration": {
|
|
@@ -16538,7 +17072,7 @@
|
|
|
16538
17072
|
},
|
|
16539
17073
|
"x-original-maxLength": 1024,
|
|
16540
17074
|
"x-reconciled-from-discovery": true,
|
|
16541
|
-
"x-reconciled-at": "2026-01-
|
|
17075
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375951+00:00"
|
|
16542
17076
|
},
|
|
16543
17077
|
"end_time": {
|
|
16544
17078
|
"type": "string",
|
|
@@ -16651,7 +17185,7 @@
|
|
|
16651
17185
|
},
|
|
16652
17186
|
"x-original-maxLength": 1024,
|
|
16653
17187
|
"x-reconciled-from-discovery": true,
|
|
16654
|
-
"x-reconciled-at": "2026-01-
|
|
17188
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375964+00:00"
|
|
16655
17189
|
},
|
|
16656
17190
|
"network_id": {
|
|
16657
17191
|
"type": "string",
|
|
@@ -16767,7 +17301,7 @@
|
|
|
16767
17301
|
},
|
|
16768
17302
|
"x-original-maxLength": 1024,
|
|
16769
17303
|
"x-reconciled-from-discovery": true,
|
|
16770
|
-
"x-reconciled-at": "2026-01-
|
|
17304
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375975+00:00"
|
|
16771
17305
|
},
|
|
16772
17306
|
"id": {
|
|
16773
17307
|
"type": "string",
|
|
@@ -16821,7 +17355,7 @@
|
|
|
16821
17355
|
},
|
|
16822
17356
|
"x-original-maxLength": 1024,
|
|
16823
17357
|
"x-reconciled-from-discovery": true,
|
|
16824
|
-
"x-reconciled-at": "2026-01-
|
|
17358
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375982+00:00"
|
|
16825
17359
|
}
|
|
16826
17360
|
},
|
|
16827
17361
|
"x-f5xc-minimum-configuration": {
|
|
@@ -16883,7 +17417,7 @@
|
|
|
16883
17417
|
},
|
|
16884
17418
|
"x-original-maxLength": 1024,
|
|
16885
17419
|
"x-reconciled-from-discovery": true,
|
|
16886
|
-
"x-reconciled-at": "2026-01-
|
|
17420
|
+
"x-reconciled-at": "2026-01-05T18:29:26.375988+00:00"
|
|
16887
17421
|
}
|
|
16888
17422
|
},
|
|
16889
17423
|
"x-f5xc-minimum-configuration": {
|
|
@@ -17108,7 +17642,7 @@
|
|
|
17108
17642
|
},
|
|
17109
17643
|
"x-original-maxLength": 1024,
|
|
17110
17644
|
"x-reconciled-from-discovery": true,
|
|
17111
|
-
"x-reconciled-at": "2026-01-
|
|
17645
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376005+00:00"
|
|
17112
17646
|
},
|
|
17113
17647
|
"network_id": {
|
|
17114
17648
|
"type": "string",
|
|
@@ -17394,7 +17928,7 @@
|
|
|
17394
17928
|
},
|
|
17395
17929
|
"x-original-maxLength": 1024,
|
|
17396
17930
|
"x-reconciled-from-discovery": true,
|
|
17397
|
-
"x-reconciled-at": "2026-01-
|
|
17931
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376023+00:00"
|
|
17398
17932
|
},
|
|
17399
17933
|
"network_id": {
|
|
17400
17934
|
"type": "string",
|
|
@@ -17647,7 +18181,7 @@
|
|
|
17647
18181
|
},
|
|
17648
18182
|
"x-original-maxLength": 1024,
|
|
17649
18183
|
"x-reconciled-from-discovery": true,
|
|
17650
|
-
"x-reconciled-at": "2026-01-
|
|
18184
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376052+00:00"
|
|
17651
18185
|
},
|
|
17652
18186
|
"network_id": {
|
|
17653
18187
|
"type": "string",
|
|
@@ -17811,7 +18345,7 @@
|
|
|
17811
18345
|
},
|
|
17812
18346
|
"x-original-maxLength": 1024,
|
|
17813
18347
|
"x-reconciled-from-discovery": true,
|
|
17814
|
-
"x-reconciled-at": "2026-01-
|
|
18348
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376065+00:00"
|
|
17815
18349
|
},
|
|
17816
18350
|
"start_time": {
|
|
17817
18351
|
"type": "string",
|
|
@@ -17984,7 +18518,7 @@
|
|
|
17984
18518
|
},
|
|
17985
18519
|
"x-original-maxLength": 1024,
|
|
17986
18520
|
"x-reconciled-from-discovery": true,
|
|
17987
|
-
"x-reconciled-at": "2026-01-
|
|
18521
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376080+00:00"
|
|
17988
18522
|
},
|
|
17989
18523
|
"network_id": {
|
|
17990
18524
|
"type": "string",
|
|
@@ -18259,7 +18793,7 @@
|
|
|
18259
18793
|
},
|
|
18260
18794
|
"x-original-maxLength": 1024,
|
|
18261
18795
|
"x-reconciled-from-discovery": true,
|
|
18262
|
-
"x-reconciled-at": "2026-01-
|
|
18796
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376101+00:00"
|
|
18263
18797
|
},
|
|
18264
18798
|
"prefixes": {
|
|
18265
18799
|
"$ref": "#/components/schemas/schemaPrefixListType"
|
|
@@ -18369,7 +18903,7 @@
|
|
|
18369
18903
|
},
|
|
18370
18904
|
"x-original-maxLength": 1024,
|
|
18371
18905
|
"x-reconciled-from-discovery": true,
|
|
18372
|
-
"x-reconciled-at": "2026-01-
|
|
18906
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376112+00:00"
|
|
18373
18907
|
},
|
|
18374
18908
|
"scheduled": {
|
|
18375
18909
|
"type": "boolean",
|
|
@@ -18433,7 +18967,7 @@
|
|
|
18433
18967
|
},
|
|
18434
18968
|
"x-original-maxLength": 1024,
|
|
18435
18969
|
"x-reconciled-from-discovery": true,
|
|
18436
|
-
"x-reconciled-at": "2026-01-
|
|
18970
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376120+00:00"
|
|
18437
18971
|
}
|
|
18438
18972
|
},
|
|
18439
18973
|
"x-f5xc-minimum-configuration": {
|
|
@@ -18523,7 +19057,7 @@
|
|
|
18523
19057
|
},
|
|
18524
19058
|
"x-original-maxLength": 1024,
|
|
18525
19059
|
"x-reconciled-from-discovery": true,
|
|
18526
|
-
"x-reconciled-at": "2026-01-
|
|
19060
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376127+00:00"
|
|
18527
19061
|
},
|
|
18528
19062
|
"request_body": {
|
|
18529
19063
|
"$ref": "#/components/schemas/protobufAny"
|
|
@@ -18717,7 +19251,7 @@
|
|
|
18717
19251
|
},
|
|
18718
19252
|
"x-original-maxLength": 1024,
|
|
18719
19253
|
"x-reconciled-from-discovery": true,
|
|
18720
|
-
"x-reconciled-at": "2026-01-
|
|
19254
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376143+00:00"
|
|
18721
19255
|
},
|
|
18722
19256
|
"range": {
|
|
18723
19257
|
"type": "string",
|
|
@@ -18907,7 +19441,7 @@
|
|
|
18907
19441
|
"maxLength": 16,
|
|
18908
19442
|
"minLength": 7,
|
|
18909
19443
|
"x-reconciled-from-discovery": true,
|
|
18910
|
-
"x-reconciled-at": "2026-01-
|
|
19444
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376156+00:00"
|
|
18911
19445
|
},
|
|
18912
19446
|
"value": {
|
|
18913
19447
|
"type": "array",
|
|
@@ -18926,7 +19460,7 @@
|
|
|
18926
19460
|
"maxLength": 15,
|
|
18927
19461
|
"minLength": 3,
|
|
18928
19462
|
"x-reconciled-from-discovery": true,
|
|
18929
|
-
"x-reconciled-at": "2026-01-
|
|
19463
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376163+00:00"
|
|
18930
19464
|
}
|
|
18931
19465
|
},
|
|
18932
19466
|
"x-f5xc-minimum-configuration": {
|
|
@@ -18972,7 +19506,7 @@
|
|
|
18972
19506
|
},
|
|
18973
19507
|
"x-original-maxLength": 1024,
|
|
18974
19508
|
"x-reconciled-from-discovery": true,
|
|
18975
|
-
"x-reconciled-at": "2026-01-
|
|
19509
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376170+00:00"
|
|
18976
19510
|
}
|
|
18977
19511
|
},
|
|
18978
19512
|
"x-f5xc-minimum-configuration": {
|
|
@@ -19159,7 +19693,7 @@
|
|
|
19159
19693
|
},
|
|
19160
19694
|
"x-original-maxLength": 1024,
|
|
19161
19695
|
"x-reconciled-from-discovery": true,
|
|
19162
|
-
"x-reconciled-at": "2026-01-
|
|
19696
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376185+00:00"
|
|
19163
19697
|
}
|
|
19164
19698
|
},
|
|
19165
19699
|
"x-f5xc-minimum-configuration": {
|
|
@@ -19268,7 +19802,7 @@
|
|
|
19268
19802
|
},
|
|
19269
19803
|
"x-original-maxLength": 1024,
|
|
19270
19804
|
"x-reconciled-from-discovery": true,
|
|
19271
|
-
"x-reconciled-at": "2026-01-
|
|
19805
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376192+00:00"
|
|
19272
19806
|
},
|
|
19273
19807
|
"previous_value": {
|
|
19274
19808
|
"type": "string",
|
|
@@ -19306,7 +19840,7 @@
|
|
|
19306
19840
|
},
|
|
19307
19841
|
"x-original-maxLength": 1024,
|
|
19308
19842
|
"x-reconciled-from-discovery": true,
|
|
19309
|
-
"x-reconciled-at": "2026-01-
|
|
19843
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376199+00:00"
|
|
19310
19844
|
}
|
|
19311
19845
|
},
|
|
19312
19846
|
"x-f5xc-minimum-configuration": {
|
|
@@ -19428,7 +19962,7 @@
|
|
|
19428
19962
|
},
|
|
19429
19963
|
"x-original-maxLength": 1024,
|
|
19430
19964
|
"x-reconciled-from-discovery": true,
|
|
19431
|
-
"x-reconciled-at": "2026-01-
|
|
19965
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376206+00:00"
|
|
19432
19966
|
},
|
|
19433
19967
|
"ref_value": {
|
|
19434
19968
|
"$ref": "#/components/schemas/schemaviewsObjectRefType"
|
|
@@ -19462,7 +19996,7 @@
|
|
|
19462
19996
|
},
|
|
19463
19997
|
"x-original-maxLength": 1024,
|
|
19464
19998
|
"x-reconciled-from-discovery": true,
|
|
19465
|
-
"x-reconciled-at": "2026-01-
|
|
19999
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376213+00:00"
|
|
19466
20000
|
}
|
|
19467
20001
|
},
|
|
19468
20002
|
"x-f5xc-minimum-configuration": {
|
|
@@ -19515,7 +20049,7 @@
|
|
|
19515
20049
|
},
|
|
19516
20050
|
"x-original-maxLength": 128,
|
|
19517
20051
|
"x-reconciled-from-discovery": true,
|
|
19518
|
-
"x-reconciled-at": "2026-01-
|
|
20052
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376218+00:00"
|
|
19519
20053
|
},
|
|
19520
20054
|
"namespace": {
|
|
19521
20055
|
"type": "string",
|
|
@@ -19540,7 +20074,7 @@
|
|
|
19540
20074
|
},
|
|
19541
20075
|
"x-original-maxLength": 64,
|
|
19542
20076
|
"x-reconciled-from-discovery": true,
|
|
19543
|
-
"x-reconciled-at": "2026-01-
|
|
20077
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376222+00:00"
|
|
19544
20078
|
},
|
|
19545
20079
|
"tenant": {
|
|
19546
20080
|
"type": "string",
|
|
@@ -19567,7 +20101,7 @@
|
|
|
19567
20101
|
"x-field-mutability": "read-only",
|
|
19568
20102
|
"x-original-maxLength": 64,
|
|
19569
20103
|
"x-reconciled-from-discovery": true,
|
|
19570
|
-
"x-reconciled-at": "2026-01-
|
|
20104
|
+
"x-reconciled-at": "2026-01-05T18:29:26.376226+00:00"
|
|
19571
20105
|
}
|
|
19572
20106
|
},
|
|
19573
20107
|
"x-f5xc-minimum-configuration": {
|
|
@@ -19732,7 +20266,7 @@
|
|
|
19732
20266
|
},
|
|
19733
20267
|
"x-original-maxLength": 1024,
|
|
19734
20268
|
"x-reconciled-from-discovery": true,
|
|
19735
|
-
"x-reconciled-at": "2026-01-
|
|
20269
|
+
"x-reconciled-at": "2026-01-05T18:29:26.707954+00:00"
|
|
19736
20270
|
},
|
|
19737
20271
|
"namespace": {
|
|
19738
20272
|
"type": "string",
|
|
@@ -19751,7 +20285,7 @@
|
|
|
19751
20285
|
},
|
|
19752
20286
|
"x-original-maxLength": 1024,
|
|
19753
20287
|
"x-reconciled-from-discovery": true,
|
|
19754
|
-
"x-reconciled-at": "2026-01-
|
|
20288
|
+
"x-reconciled-at": "2026-01-05T18:29:26.707961+00:00"
|
|
19755
20289
|
}
|
|
19756
20290
|
},
|
|
19757
20291
|
"x-f5xc-minimum-configuration": {
|
|
@@ -19849,7 +20383,7 @@
|
|
|
19849
20383
|
"maxLength": 17,
|
|
19850
20384
|
"minLength": 17,
|
|
19851
20385
|
"x-reconciled-from-discovery": true,
|
|
19852
|
-
"x-reconciled-at": "2026-01-
|
|
20386
|
+
"x-reconciled-at": "2026-01-05T18:29:26.707976+00:00"
|
|
19853
20387
|
},
|
|
19854
20388
|
"system_metadata": {
|
|
19855
20389
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -20053,7 +20587,7 @@
|
|
|
20053
20587
|
},
|
|
20054
20588
|
"x-original-maxLength": 1024,
|
|
20055
20589
|
"x-reconciled-from-discovery": true,
|
|
20056
|
-
"x-reconciled-at": "2026-01-
|
|
20590
|
+
"x-reconciled-at": "2026-01-05T18:29:26.707996+00:00"
|
|
20057
20591
|
},
|
|
20058
20592
|
"disabled": {
|
|
20059
20593
|
"type": "boolean",
|
|
@@ -20103,7 +20637,7 @@
|
|
|
20103
20637
|
},
|
|
20104
20638
|
"x-original-maxLength": 1024,
|
|
20105
20639
|
"x-reconciled-from-discovery": true,
|
|
20106
|
-
"x-reconciled-at": "2026-01-
|
|
20640
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708007+00:00"
|
|
20107
20641
|
},
|
|
20108
20642
|
"namespace": {
|
|
20109
20643
|
"type": "string",
|
|
@@ -20122,7 +20656,7 @@
|
|
|
20122
20656
|
},
|
|
20123
20657
|
"x-original-maxLength": 1024,
|
|
20124
20658
|
"x-reconciled-from-discovery": true,
|
|
20125
|
-
"x-reconciled-at": "2026-01-
|
|
20659
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708011+00:00"
|
|
20126
20660
|
},
|
|
20127
20661
|
"owner_view": {
|
|
20128
20662
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -20163,7 +20697,7 @@
|
|
|
20163
20697
|
"x-field-mutability": "read-only",
|
|
20164
20698
|
"x-original-maxLength": 1024,
|
|
20165
20699
|
"x-reconciled-from-discovery": true,
|
|
20166
|
-
"x-reconciled-at": "2026-01-
|
|
20700
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708019+00:00"
|
|
20167
20701
|
},
|
|
20168
20702
|
"uid": {
|
|
20169
20703
|
"type": "string",
|
|
@@ -20184,7 +20718,7 @@
|
|
|
20184
20718
|
"x-original-maxLength": 1024,
|
|
20185
20719
|
"format": "uuid",
|
|
20186
20720
|
"x-reconciled-from-discovery": true,
|
|
20187
|
-
"x-reconciled-at": "2026-01-
|
|
20721
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708025+00:00"
|
|
20188
20722
|
}
|
|
20189
20723
|
},
|
|
20190
20724
|
"x-f5xc-minimum-configuration": {
|
|
@@ -20346,7 +20880,7 @@
|
|
|
20346
20880
|
},
|
|
20347
20881
|
"x-original-maxLength": 1024,
|
|
20348
20882
|
"x-reconciled-from-discovery": true,
|
|
20349
|
-
"x-reconciled-at": "2026-01-
|
|
20883
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708050+00:00"
|
|
20350
20884
|
},
|
|
20351
20885
|
"namespace": {
|
|
20352
20886
|
"type": "string",
|
|
@@ -20372,7 +20906,7 @@
|
|
|
20372
20906
|
},
|
|
20373
20907
|
"x-original-maxLength": 1024,
|
|
20374
20908
|
"x-reconciled-from-discovery": true,
|
|
20375
|
-
"x-reconciled-at": "2026-01-
|
|
20909
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708055+00:00"
|
|
20376
20910
|
},
|
|
20377
20911
|
"review_type_approved": {
|
|
20378
20912
|
"$ref": "#/components/schemas/ioschemaEmpty"
|
|
@@ -20485,7 +21019,7 @@
|
|
|
20485
21019
|
},
|
|
20486
21020
|
"x-original-maxLength": 1024,
|
|
20487
21021
|
"x-reconciled-from-discovery": true,
|
|
20488
|
-
"x-reconciled-at": "2026-01-
|
|
21022
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708073+00:00"
|
|
20489
21023
|
},
|
|
20490
21024
|
"service_name": {
|
|
20491
21025
|
"type": "string",
|
|
@@ -20524,7 +21058,7 @@
|
|
|
20524
21058
|
},
|
|
20525
21059
|
"x-original-maxLength": 1024,
|
|
20526
21060
|
"x-reconciled-from-discovery": true,
|
|
20527
|
-
"x-reconciled-at": "2026-01-
|
|
21061
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708079+00:00"
|
|
20528
21062
|
},
|
|
20529
21063
|
"type": {
|
|
20530
21064
|
"type": "string",
|
|
@@ -20661,7 +21195,7 @@
|
|
|
20661
21195
|
},
|
|
20662
21196
|
"x-original-maxLength": 1024,
|
|
20663
21197
|
"x-reconciled-from-discovery": true,
|
|
20664
|
-
"x-reconciled-at": "2026-01-
|
|
21198
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708090+00:00"
|
|
20665
21199
|
}
|
|
20666
21200
|
},
|
|
20667
21201
|
"x-f5xc-minimum-configuration": {
|
|
@@ -20770,7 +21304,7 @@
|
|
|
20770
21304
|
},
|
|
20771
21305
|
"x-original-maxLength": 1200,
|
|
20772
21306
|
"x-reconciled-from-discovery": true,
|
|
20773
|
-
"x-reconciled-at": "2026-01-
|
|
21307
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708099+00:00"
|
|
20774
21308
|
},
|
|
20775
21309
|
"disable": {
|
|
20776
21310
|
"type": "boolean",
|
|
@@ -20823,7 +21357,7 @@
|
|
|
20823
21357
|
},
|
|
20824
21358
|
"x-original-maxLength": 1024,
|
|
20825
21359
|
"x-reconciled-from-discovery": true,
|
|
20826
|
-
"x-reconciled-at": "2026-01-
|
|
21360
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708106+00:00"
|
|
20827
21361
|
},
|
|
20828
21362
|
"namespace": {
|
|
20829
21363
|
"type": "string",
|
|
@@ -20842,7 +21376,7 @@
|
|
|
20842
21376
|
},
|
|
20843
21377
|
"x-original-maxLength": 1024,
|
|
20844
21378
|
"x-reconciled-from-discovery": true,
|
|
20845
|
-
"x-reconciled-at": "2026-01-
|
|
21379
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708111+00:00"
|
|
20846
21380
|
}
|
|
20847
21381
|
},
|
|
20848
21382
|
"x-f5xc-minimum-configuration": {
|
|
@@ -20918,7 +21452,7 @@
|
|
|
20918
21452
|
},
|
|
20919
21453
|
"x-original-maxLength": 1200,
|
|
20920
21454
|
"x-reconciled-from-discovery": true,
|
|
20921
|
-
"x-reconciled-at": "2026-01-
|
|
21455
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708118+00:00"
|
|
20922
21456
|
},
|
|
20923
21457
|
"disable": {
|
|
20924
21458
|
"type": "boolean",
|
|
@@ -20973,7 +21507,7 @@
|
|
|
20973
21507
|
},
|
|
20974
21508
|
"x-original-maxLength": 1024,
|
|
20975
21509
|
"x-reconciled-from-discovery": true,
|
|
20976
|
-
"x-reconciled-at": "2026-01-
|
|
21510
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708126+00:00"
|
|
20977
21511
|
},
|
|
20978
21512
|
"namespace": {
|
|
20979
21513
|
"type": "string",
|
|
@@ -20992,7 +21526,7 @@
|
|
|
20992
21526
|
},
|
|
20993
21527
|
"x-original-maxLength": 1024,
|
|
20994
21528
|
"x-reconciled-from-discovery": true,
|
|
20995
|
-
"x-reconciled-at": "2026-01-
|
|
21529
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708130+00:00"
|
|
20996
21530
|
}
|
|
20997
21531
|
},
|
|
20998
21532
|
"x-f5xc-minimum-configuration": {
|
|
@@ -21037,7 +21571,7 @@
|
|
|
21037
21571
|
"readOnly": true,
|
|
21038
21572
|
"x-original-maxLength": 1024,
|
|
21039
21573
|
"x-reconciled-from-discovery": true,
|
|
21040
|
-
"x-reconciled-at": "2026-01-
|
|
21574
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708135+00:00"
|
|
21041
21575
|
},
|
|
21042
21576
|
"name": {
|
|
21043
21577
|
"type": "string",
|
|
@@ -21056,7 +21590,7 @@
|
|
|
21056
21590
|
},
|
|
21057
21591
|
"x-original-maxLength": 1024,
|
|
21058
21592
|
"x-reconciled-from-discovery": true,
|
|
21059
|
-
"x-reconciled-at": "2026-01-
|
|
21593
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708139+00:00"
|
|
21060
21594
|
},
|
|
21061
21595
|
"namespace": {
|
|
21062
21596
|
"type": "string",
|
|
@@ -21075,7 +21609,7 @@
|
|
|
21075
21609
|
},
|
|
21076
21610
|
"x-original-maxLength": 1024,
|
|
21077
21611
|
"x-reconciled-from-discovery": true,
|
|
21078
|
-
"x-reconciled-at": "2026-01-
|
|
21612
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708143+00:00"
|
|
21079
21613
|
},
|
|
21080
21614
|
"tenant": {
|
|
21081
21615
|
"type": "string",
|
|
@@ -21096,7 +21630,7 @@
|
|
|
21096
21630
|
"x-field-mutability": "read-only",
|
|
21097
21631
|
"x-original-maxLength": 1024,
|
|
21098
21632
|
"x-reconciled-from-discovery": true,
|
|
21099
|
-
"x-reconciled-at": "2026-01-
|
|
21633
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708147+00:00"
|
|
21100
21634
|
},
|
|
21101
21635
|
"uid": {
|
|
21102
21636
|
"type": "string",
|
|
@@ -21118,7 +21652,7 @@
|
|
|
21118
21652
|
"x-original-maxLength": 1024,
|
|
21119
21653
|
"format": "uuid",
|
|
21120
21654
|
"x-reconciled-from-discovery": true,
|
|
21121
|
-
"x-reconciled-at": "2026-01-
|
|
21655
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708153+00:00"
|
|
21122
21656
|
}
|
|
21123
21657
|
},
|
|
21124
21658
|
"x-f5xc-minimum-configuration": {
|
|
@@ -21193,7 +21727,7 @@
|
|
|
21193
21727
|
},
|
|
21194
21728
|
"x-original-maxLength": 1200,
|
|
21195
21729
|
"x-reconciled-from-discovery": true,
|
|
21196
|
-
"x-reconciled-at": "2026-01-
|
|
21730
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708159+00:00"
|
|
21197
21731
|
},
|
|
21198
21732
|
"disable": {
|
|
21199
21733
|
"type": "boolean",
|
|
@@ -21246,7 +21780,7 @@
|
|
|
21246
21780
|
},
|
|
21247
21781
|
"x-original-maxLength": 1024,
|
|
21248
21782
|
"x-reconciled-from-discovery": true,
|
|
21249
|
-
"x-reconciled-at": "2026-01-
|
|
21783
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708166+00:00"
|
|
21250
21784
|
},
|
|
21251
21785
|
"namespace": {
|
|
21252
21786
|
"type": "string",
|
|
@@ -21265,7 +21799,7 @@
|
|
|
21265
21799
|
},
|
|
21266
21800
|
"x-original-maxLength": 1024,
|
|
21267
21801
|
"x-reconciled-from-discovery": true,
|
|
21268
|
-
"x-reconciled-at": "2026-01-
|
|
21802
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708171+00:00"
|
|
21269
21803
|
}
|
|
21270
21804
|
},
|
|
21271
21805
|
"x-f5xc-minimum-configuration": {
|
|
@@ -21379,7 +21913,7 @@
|
|
|
21379
21913
|
"x-original-maxLength": 1024,
|
|
21380
21914
|
"format": "uuid",
|
|
21381
21915
|
"x-reconciled-from-discovery": true,
|
|
21382
|
-
"x-reconciled-at": "2026-01-
|
|
21916
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708183+00:00"
|
|
21383
21917
|
},
|
|
21384
21918
|
"vtrp_id": {
|
|
21385
21919
|
"type": "string",
|
|
@@ -21491,7 +22025,7 @@
|
|
|
21491
22025
|
},
|
|
21492
22026
|
"x-original-maxLength": 1024,
|
|
21493
22027
|
"x-reconciled-from-discovery": true,
|
|
21494
|
-
"x-reconciled-at": "2026-01-
|
|
22028
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708193+00:00"
|
|
21495
22029
|
},
|
|
21496
22030
|
"status": {
|
|
21497
22031
|
"type": "string",
|
|
@@ -21510,7 +22044,7 @@
|
|
|
21510
22044
|
},
|
|
21511
22045
|
"x-original-maxLength": 1024,
|
|
21512
22046
|
"x-reconciled-from-discovery": true,
|
|
21513
|
-
"x-reconciled-at": "2026-01-
|
|
22047
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708198+00:00"
|
|
21514
22048
|
}
|
|
21515
22049
|
},
|
|
21516
22050
|
"x-f5xc-minimum-configuration": {
|
|
@@ -21688,7 +22222,7 @@
|
|
|
21688
22222
|
"x-field-mutability": "read-only",
|
|
21689
22223
|
"x-original-maxLength": 1024,
|
|
21690
22224
|
"x-reconciled-from-discovery": true,
|
|
21691
|
-
"x-reconciled-at": "2026-01-
|
|
22225
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708217+00:00"
|
|
21692
22226
|
},
|
|
21693
22227
|
"uid": {
|
|
21694
22228
|
"type": "string",
|
|
@@ -21709,7 +22243,7 @@
|
|
|
21709
22243
|
"x-original-maxLength": 1024,
|
|
21710
22244
|
"format": "uuid",
|
|
21711
22245
|
"x-reconciled-from-discovery": true,
|
|
21712
|
-
"x-reconciled-at": "2026-01-
|
|
22246
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708222+00:00"
|
|
21713
22247
|
}
|
|
21714
22248
|
},
|
|
21715
22249
|
"x-f5xc-minimum-configuration": {
|
|
@@ -21759,7 +22293,7 @@
|
|
|
21759
22293
|
},
|
|
21760
22294
|
"x-original-maxLength": 1024,
|
|
21761
22295
|
"x-reconciled-from-discovery": true,
|
|
21762
|
-
"x-reconciled-at": "2026-01-
|
|
22296
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708226+00:00"
|
|
21763
22297
|
},
|
|
21764
22298
|
"name": {
|
|
21765
22299
|
"type": "string",
|
|
@@ -21778,7 +22312,7 @@
|
|
|
21778
22312
|
},
|
|
21779
22313
|
"x-original-maxLength": 1024,
|
|
21780
22314
|
"x-reconciled-from-discovery": true,
|
|
21781
|
-
"x-reconciled-at": "2026-01-
|
|
22315
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708231+00:00"
|
|
21782
22316
|
},
|
|
21783
22317
|
"namespace": {
|
|
21784
22318
|
"type": "string",
|
|
@@ -21797,7 +22331,7 @@
|
|
|
21797
22331
|
},
|
|
21798
22332
|
"x-original-maxLength": 1024,
|
|
21799
22333
|
"x-reconciled-from-discovery": true,
|
|
21800
|
-
"x-reconciled-at": "2026-01-
|
|
22334
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708235+00:00"
|
|
21801
22335
|
},
|
|
21802
22336
|
"uid": {
|
|
21803
22337
|
"type": "string",
|
|
@@ -21818,7 +22352,7 @@
|
|
|
21818
22352
|
"x-original-maxLength": 1024,
|
|
21819
22353
|
"format": "uuid",
|
|
21820
22354
|
"x-reconciled-from-discovery": true,
|
|
21821
|
-
"x-reconciled-at": "2026-01-
|
|
22355
|
+
"x-reconciled-at": "2026-01-05T18:29:26.708240+00:00"
|
|
21822
22356
|
}
|
|
21823
22357
|
},
|
|
21824
22358
|
"x-f5xc-minimum-configuration": {
|
|
@@ -21976,7 +22510,7 @@
|
|
|
21976
22510
|
},
|
|
21977
22511
|
"x-original-maxLength": 1024,
|
|
21978
22512
|
"x-reconciled-from-discovery": true,
|
|
21979
|
-
"x-reconciled-at": "2026-01-
|
|
22513
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052011+00:00"
|
|
21980
22514
|
},
|
|
21981
22515
|
"namespace": {
|
|
21982
22516
|
"type": "string",
|
|
@@ -21995,7 +22529,7 @@
|
|
|
21995
22529
|
},
|
|
21996
22530
|
"x-original-maxLength": 1024,
|
|
21997
22531
|
"x-reconciled-from-discovery": true,
|
|
21998
|
-
"x-reconciled-at": "2026-01-
|
|
22532
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052018+00:00"
|
|
21999
22533
|
}
|
|
22000
22534
|
},
|
|
22001
22535
|
"x-f5xc-minimum-configuration": {
|
|
@@ -22093,7 +22627,7 @@
|
|
|
22093
22627
|
"maxLength": 17,
|
|
22094
22628
|
"minLength": 17,
|
|
22095
22629
|
"x-reconciled-from-discovery": true,
|
|
22096
|
-
"x-reconciled-at": "2026-01-
|
|
22630
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052048+00:00"
|
|
22097
22631
|
},
|
|
22098
22632
|
"system_metadata": {
|
|
22099
22633
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -22354,7 +22888,7 @@
|
|
|
22354
22888
|
},
|
|
22355
22889
|
"x-original-maxLength": 1024,
|
|
22356
22890
|
"x-reconciled-from-discovery": true,
|
|
22357
|
-
"x-reconciled-at": "2026-01-
|
|
22891
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052079+00:00"
|
|
22358
22892
|
},
|
|
22359
22893
|
"disabled": {
|
|
22360
22894
|
"type": "boolean",
|
|
@@ -22404,7 +22938,7 @@
|
|
|
22404
22938
|
},
|
|
22405
22939
|
"x-original-maxLength": 1024,
|
|
22406
22940
|
"x-reconciled-from-discovery": true,
|
|
22407
|
-
"x-reconciled-at": "2026-01-
|
|
22941
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052090+00:00"
|
|
22408
22942
|
},
|
|
22409
22943
|
"namespace": {
|
|
22410
22944
|
"type": "string",
|
|
@@ -22423,7 +22957,7 @@
|
|
|
22423
22957
|
},
|
|
22424
22958
|
"x-original-maxLength": 1024,
|
|
22425
22959
|
"x-reconciled-from-discovery": true,
|
|
22426
|
-
"x-reconciled-at": "2026-01-
|
|
22960
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052094+00:00"
|
|
22427
22961
|
},
|
|
22428
22962
|
"owner_view": {
|
|
22429
22963
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -22464,7 +22998,7 @@
|
|
|
22464
22998
|
"x-field-mutability": "read-only",
|
|
22465
22999
|
"x-original-maxLength": 1024,
|
|
22466
23000
|
"x-reconciled-from-discovery": true,
|
|
22467
|
-
"x-reconciled-at": "2026-01-
|
|
23001
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052102+00:00"
|
|
22468
23002
|
},
|
|
22469
23003
|
"uid": {
|
|
22470
23004
|
"type": "string",
|
|
@@ -22485,7 +23019,7 @@
|
|
|
22485
23019
|
"x-original-maxLength": 1024,
|
|
22486
23020
|
"format": "uuid",
|
|
22487
23021
|
"x-reconciled-from-discovery": true,
|
|
22488
|
-
"x-reconciled-at": "2026-01-
|
|
23022
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052108+00:00"
|
|
22489
23023
|
}
|
|
22490
23024
|
},
|
|
22491
23025
|
"x-f5xc-minimum-configuration": {
|
|
@@ -22647,7 +23181,7 @@
|
|
|
22647
23181
|
},
|
|
22648
23182
|
"x-original-maxLength": 1024,
|
|
22649
23183
|
"x-reconciled-from-discovery": true,
|
|
22650
|
-
"x-reconciled-at": "2026-01-
|
|
23184
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052122+00:00"
|
|
22651
23185
|
},
|
|
22652
23186
|
"namespace": {
|
|
22653
23187
|
"type": "string",
|
|
@@ -22673,7 +23207,7 @@
|
|
|
22673
23207
|
},
|
|
22674
23208
|
"x-original-maxLength": 1024,
|
|
22675
23209
|
"x-reconciled-from-discovery": true,
|
|
22676
|
-
"x-reconciled-at": "2026-01-
|
|
23210
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052127+00:00"
|
|
22677
23211
|
}
|
|
22678
23212
|
},
|
|
22679
23213
|
"x-f5xc-minimum-configuration": {
|
|
@@ -22730,7 +23264,7 @@
|
|
|
22730
23264
|
},
|
|
22731
23265
|
"x-original-maxLength": 1024,
|
|
22732
23266
|
"x-reconciled-from-discovery": true,
|
|
22733
|
-
"x-reconciled-at": "2026-01-
|
|
23267
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052132+00:00"
|
|
22734
23268
|
},
|
|
22735
23269
|
"namespace": {
|
|
22736
23270
|
"type": "string",
|
|
@@ -22756,7 +23290,7 @@
|
|
|
22756
23290
|
},
|
|
22757
23291
|
"x-original-maxLength": 1024,
|
|
22758
23292
|
"x-reconciled-from-discovery": true,
|
|
22759
|
-
"x-reconciled-at": "2026-01-
|
|
23293
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052137+00:00"
|
|
22760
23294
|
},
|
|
22761
23295
|
"review_type_approved": {
|
|
22762
23296
|
"$ref": "#/components/schemas/ioschemaEmpty"
|
|
@@ -22825,7 +23359,7 @@
|
|
|
22825
23359
|
"readOnly": true,
|
|
22826
23360
|
"x-original-maxLength": 1024,
|
|
22827
23361
|
"x-reconciled-from-discovery": true,
|
|
22828
|
-
"x-reconciled-at": "2026-01-
|
|
23362
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052146+00:00"
|
|
22829
23363
|
},
|
|
22830
23364
|
"name": {
|
|
22831
23365
|
"type": "string",
|
|
@@ -22844,7 +23378,7 @@
|
|
|
22844
23378
|
},
|
|
22845
23379
|
"x-original-maxLength": 1024,
|
|
22846
23380
|
"x-reconciled-from-discovery": true,
|
|
22847
|
-
"x-reconciled-at": "2026-01-
|
|
23381
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052150+00:00"
|
|
22848
23382
|
},
|
|
22849
23383
|
"namespace": {
|
|
22850
23384
|
"type": "string",
|
|
@@ -22863,7 +23397,7 @@
|
|
|
22863
23397
|
},
|
|
22864
23398
|
"x-original-maxLength": 1024,
|
|
22865
23399
|
"x-reconciled-from-discovery": true,
|
|
22866
|
-
"x-reconciled-at": "2026-01-
|
|
23400
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052155+00:00"
|
|
22867
23401
|
},
|
|
22868
23402
|
"tenant": {
|
|
22869
23403
|
"type": "string",
|
|
@@ -22884,7 +23418,7 @@
|
|
|
22884
23418
|
"x-field-mutability": "read-only",
|
|
22885
23419
|
"x-original-maxLength": 1024,
|
|
22886
23420
|
"x-reconciled-from-discovery": true,
|
|
22887
|
-
"x-reconciled-at": "2026-01-
|
|
23421
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052159+00:00"
|
|
22888
23422
|
},
|
|
22889
23423
|
"uid": {
|
|
22890
23424
|
"type": "string",
|
|
@@ -22906,7 +23440,7 @@
|
|
|
22906
23440
|
"x-original-maxLength": 1024,
|
|
22907
23441
|
"format": "uuid",
|
|
22908
23442
|
"x-reconciled-from-discovery": true,
|
|
22909
|
-
"x-reconciled-at": "2026-01-
|
|
23443
|
+
"x-reconciled-at": "2026-01-05T18:29:27.052165+00:00"
|
|
22910
23444
|
}
|
|
22911
23445
|
},
|
|
22912
23446
|
"x-f5xc-minimum-configuration": {
|
|
@@ -23097,7 +23631,7 @@
|
|
|
23097
23631
|
},
|
|
23098
23632
|
"x-original-maxLength": 1024,
|
|
23099
23633
|
"x-reconciled-from-discovery": true,
|
|
23100
|
-
"x-reconciled-at": "2026-01-
|
|
23634
|
+
"x-reconciled-at": "2026-01-05T18:29:27.381241+00:00"
|
|
23101
23635
|
},
|
|
23102
23636
|
"namespace": {
|
|
23103
23637
|
"type": "string",
|
|
@@ -23116,7 +23650,7 @@
|
|
|
23116
23650
|
},
|
|
23117
23651
|
"x-original-maxLength": 1024,
|
|
23118
23652
|
"x-reconciled-from-discovery": true,
|
|
23119
|
-
"x-reconciled-at": "2026-01-
|
|
23653
|
+
"x-reconciled-at": "2026-01-05T18:29:27.381247+00:00"
|
|
23120
23654
|
}
|
|
23121
23655
|
},
|
|
23122
23656
|
"x-f5xc-minimum-configuration": {
|
|
@@ -23214,7 +23748,7 @@
|
|
|
23214
23748
|
"maxLength": 17,
|
|
23215
23749
|
"minLength": 17,
|
|
23216
23750
|
"x-reconciled-from-discovery": true,
|
|
23217
|
-
"x-reconciled-at": "2026-01-
|
|
23751
|
+
"x-reconciled-at": "2026-01-05T18:29:27.381262+00:00"
|
|
23218
23752
|
},
|
|
23219
23753
|
"system_metadata": {
|
|
23220
23754
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -23413,7 +23947,7 @@
|
|
|
23413
23947
|
},
|
|
23414
23948
|
"x-original-maxLength": 1024,
|
|
23415
23949
|
"x-reconciled-from-discovery": true,
|
|
23416
|
-
"x-reconciled-at": "2026-01-
|
|
23950
|
+
"x-reconciled-at": "2026-01-05T18:29:27.381279+00:00"
|
|
23417
23951
|
},
|
|
23418
23952
|
"disabled": {
|
|
23419
23953
|
"type": "boolean",
|
|
@@ -23463,7 +23997,7 @@
|
|
|
23463
23997
|
},
|
|
23464
23998
|
"x-original-maxLength": 1024,
|
|
23465
23999
|
"x-reconciled-from-discovery": true,
|
|
23466
|
-
"x-reconciled-at": "2026-01-
|
|
24000
|
+
"x-reconciled-at": "2026-01-05T18:29:27.381289+00:00"
|
|
23467
24001
|
},
|
|
23468
24002
|
"namespace": {
|
|
23469
24003
|
"type": "string",
|
|
@@ -23482,7 +24016,7 @@
|
|
|
23482
24016
|
},
|
|
23483
24017
|
"x-original-maxLength": 1024,
|
|
23484
24018
|
"x-reconciled-from-discovery": true,
|
|
23485
|
-
"x-reconciled-at": "2026-01-
|
|
24019
|
+
"x-reconciled-at": "2026-01-05T18:29:27.381294+00:00"
|
|
23486
24020
|
},
|
|
23487
24021
|
"owner_view": {
|
|
23488
24022
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -23523,7 +24057,7 @@
|
|
|
23523
24057
|
"x-field-mutability": "read-only",
|
|
23524
24058
|
"x-original-maxLength": 1024,
|
|
23525
24059
|
"x-reconciled-from-discovery": true,
|
|
23526
|
-
"x-reconciled-at": "2026-01-
|
|
24060
|
+
"x-reconciled-at": "2026-01-05T18:29:27.381301+00:00"
|
|
23527
24061
|
},
|
|
23528
24062
|
"uid": {
|
|
23529
24063
|
"type": "string",
|
|
@@ -23544,7 +24078,7 @@
|
|
|
23544
24078
|
"x-original-maxLength": 1024,
|
|
23545
24079
|
"format": "uuid",
|
|
23546
24080
|
"x-reconciled-from-discovery": true,
|
|
23547
|
-
"x-reconciled-at": "2026-01-
|
|
24081
|
+
"x-reconciled-at": "2026-01-05T18:29:27.381307+00:00"
|
|
23548
24082
|
}
|
|
23549
24083
|
},
|
|
23550
24084
|
"x-f5xc-minimum-configuration": {
|
|
@@ -23979,7 +24513,7 @@
|
|
|
23979
24513
|
},
|
|
23980
24514
|
"x-original-maxLength": 1024,
|
|
23981
24515
|
"x-reconciled-from-discovery": true,
|
|
23982
|
-
"x-reconciled-at": "2026-01-
|
|
24516
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725147+00:00"
|
|
23983
24517
|
},
|
|
23984
24518
|
"namespace": {
|
|
23985
24519
|
"type": "string",
|
|
@@ -23998,7 +24532,7 @@
|
|
|
23998
24532
|
},
|
|
23999
24533
|
"x-original-maxLength": 1024,
|
|
24000
24534
|
"x-reconciled-from-discovery": true,
|
|
24001
|
-
"x-reconciled-at": "2026-01-
|
|
24535
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725154+00:00"
|
|
24002
24536
|
}
|
|
24003
24537
|
},
|
|
24004
24538
|
"x-f5xc-minimum-configuration": {
|
|
@@ -24096,7 +24630,7 @@
|
|
|
24096
24630
|
"maxLength": 17,
|
|
24097
24631
|
"minLength": 17,
|
|
24098
24632
|
"x-reconciled-from-discovery": true,
|
|
24099
|
-
"x-reconciled-at": "2026-01-
|
|
24633
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725171+00:00"
|
|
24100
24634
|
},
|
|
24101
24635
|
"system_metadata": {
|
|
24102
24636
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -24665,7 +25199,7 @@
|
|
|
24665
25199
|
},
|
|
24666
25200
|
"x-original-maxLength": 1024,
|
|
24667
25201
|
"x-reconciled-from-discovery": true,
|
|
24668
|
-
"x-reconciled-at": "2026-01-
|
|
25202
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725232+00:00"
|
|
24669
25203
|
},
|
|
24670
25204
|
"disabled": {
|
|
24671
25205
|
"type": "boolean",
|
|
@@ -24715,7 +25249,7 @@
|
|
|
24715
25249
|
},
|
|
24716
25250
|
"x-original-maxLength": 1024,
|
|
24717
25251
|
"x-reconciled-from-discovery": true,
|
|
24718
|
-
"x-reconciled-at": "2026-01-
|
|
25252
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725242+00:00"
|
|
24719
25253
|
},
|
|
24720
25254
|
"namespace": {
|
|
24721
25255
|
"type": "string",
|
|
@@ -24734,7 +25268,7 @@
|
|
|
24734
25268
|
},
|
|
24735
25269
|
"x-original-maxLength": 1024,
|
|
24736
25270
|
"x-reconciled-from-discovery": true,
|
|
24737
|
-
"x-reconciled-at": "2026-01-
|
|
25271
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725247+00:00"
|
|
24738
25272
|
},
|
|
24739
25273
|
"owner_view": {
|
|
24740
25274
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -24775,7 +25309,7 @@
|
|
|
24775
25309
|
"x-field-mutability": "read-only",
|
|
24776
25310
|
"x-original-maxLength": 1024,
|
|
24777
25311
|
"x-reconciled-from-discovery": true,
|
|
24778
|
-
"x-reconciled-at": "2026-01-
|
|
25312
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725254+00:00"
|
|
24779
25313
|
},
|
|
24780
25314
|
"uid": {
|
|
24781
25315
|
"type": "string",
|
|
@@ -24796,7 +25330,7 @@
|
|
|
24796
25330
|
"x-original-maxLength": 1024,
|
|
24797
25331
|
"format": "uuid",
|
|
24798
25332
|
"x-reconciled-from-discovery": true,
|
|
24799
|
-
"x-reconciled-at": "2026-01-
|
|
25333
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725260+00:00"
|
|
24800
25334
|
}
|
|
24801
25335
|
},
|
|
24802
25336
|
"x-f5xc-minimum-configuration": {
|
|
@@ -25083,7 +25617,7 @@
|
|
|
25083
25617
|
},
|
|
25084
25618
|
"x-original-maxLength": 1024,
|
|
25085
25619
|
"x-reconciled-from-discovery": true,
|
|
25086
|
-
"x-reconciled-at": "2026-01-
|
|
25620
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725299+00:00"
|
|
25087
25621
|
},
|
|
25088
25622
|
"destination_port_all": {
|
|
25089
25623
|
"$ref": "#/components/schemas/ioschemaEmpty"
|
|
@@ -25173,7 +25707,7 @@
|
|
|
25173
25707
|
},
|
|
25174
25708
|
"x-original-maxLength": 1024,
|
|
25175
25709
|
"x-reconciled-from-discovery": true,
|
|
25176
|
-
"x-reconciled-at": "2026-01-
|
|
25710
|
+
"x-reconciled-at": "2026-01-05T18:29:27.725310+00:00"
|
|
25177
25711
|
},
|
|
25178
25712
|
"destination_port_all": {
|
|
25179
25713
|
"$ref": "#/components/schemas/ioschemaEmpty"
|
|
@@ -25373,7 +25907,7 @@
|
|
|
25373
25907
|
},
|
|
25374
25908
|
"x-original-maxLength": 1024,
|
|
25375
25909
|
"x-reconciled-from-discovery": true,
|
|
25376
|
-
"x-reconciled-at": "2026-01-
|
|
25910
|
+
"x-reconciled-at": "2026-01-05T18:29:28.048654+00:00"
|
|
25377
25911
|
},
|
|
25378
25912
|
"namespace": {
|
|
25379
25913
|
"type": "string",
|
|
@@ -25392,7 +25926,7 @@
|
|
|
25392
25926
|
},
|
|
25393
25927
|
"x-original-maxLength": 1024,
|
|
25394
25928
|
"x-reconciled-from-discovery": true,
|
|
25395
|
-
"x-reconciled-at": "2026-01-
|
|
25929
|
+
"x-reconciled-at": "2026-01-05T18:29:28.048660+00:00"
|
|
25396
25930
|
}
|
|
25397
25931
|
},
|
|
25398
25932
|
"x-f5xc-minimum-configuration": {
|
|
@@ -25490,7 +26024,7 @@
|
|
|
25490
26024
|
"maxLength": 17,
|
|
25491
26025
|
"minLength": 17,
|
|
25492
26026
|
"x-reconciled-from-discovery": true,
|
|
25493
|
-
"x-reconciled-at": "2026-01-
|
|
26027
|
+
"x-reconciled-at": "2026-01-05T18:29:28.048676+00:00"
|
|
25494
26028
|
},
|
|
25495
26029
|
"system_metadata": {
|
|
25496
26030
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -25691,7 +26225,7 @@
|
|
|
25691
26225
|
},
|
|
25692
26226
|
"x-original-maxLength": 1024,
|
|
25693
26227
|
"x-reconciled-from-discovery": true,
|
|
25694
|
-
"x-reconciled-at": "2026-01-
|
|
26228
|
+
"x-reconciled-at": "2026-01-05T18:29:28.048692+00:00"
|
|
25695
26229
|
},
|
|
25696
26230
|
"disabled": {
|
|
25697
26231
|
"type": "boolean",
|
|
@@ -25741,7 +26275,7 @@
|
|
|
25741
26275
|
},
|
|
25742
26276
|
"x-original-maxLength": 1024,
|
|
25743
26277
|
"x-reconciled-from-discovery": true,
|
|
25744
|
-
"x-reconciled-at": "2026-01-
|
|
26278
|
+
"x-reconciled-at": "2026-01-05T18:29:28.048703+00:00"
|
|
25745
26279
|
},
|
|
25746
26280
|
"namespace": {
|
|
25747
26281
|
"type": "string",
|
|
@@ -25760,7 +26294,7 @@
|
|
|
25760
26294
|
},
|
|
25761
26295
|
"x-original-maxLength": 1024,
|
|
25762
26296
|
"x-reconciled-from-discovery": true,
|
|
25763
|
-
"x-reconciled-at": "2026-01-
|
|
26297
|
+
"x-reconciled-at": "2026-01-05T18:29:28.048707+00:00"
|
|
25764
26298
|
},
|
|
25765
26299
|
"owner_view": {
|
|
25766
26300
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -25801,7 +26335,7 @@
|
|
|
25801
26335
|
"x-field-mutability": "read-only",
|
|
25802
26336
|
"x-original-maxLength": 1024,
|
|
25803
26337
|
"x-reconciled-from-discovery": true,
|
|
25804
|
-
"x-reconciled-at": "2026-01-
|
|
26338
|
+
"x-reconciled-at": "2026-01-05T18:29:28.048716+00:00"
|
|
25805
26339
|
},
|
|
25806
26340
|
"uid": {
|
|
25807
26341
|
"type": "string",
|
|
@@ -25822,7 +26356,7 @@
|
|
|
25822
26356
|
"x-original-maxLength": 1024,
|
|
25823
26357
|
"format": "uuid",
|
|
25824
26358
|
"x-reconciled-from-discovery": true,
|
|
25825
|
-
"x-reconciled-at": "2026-01-
|
|
26359
|
+
"x-reconciled-at": "2026-01-05T18:29:28.048722+00:00"
|
|
25826
26360
|
}
|
|
25827
26361
|
},
|
|
25828
26362
|
"x-f5xc-minimum-configuration": {
|
|
@@ -26063,7 +26597,7 @@
|
|
|
26063
26597
|
"maxLength": 17,
|
|
26064
26598
|
"minLength": 17,
|
|
26065
26599
|
"x-reconciled-from-discovery": true,
|
|
26066
|
-
"x-reconciled-at": "2026-01-
|
|
26600
|
+
"x-reconciled-at": "2026-01-05T18:29:28.343791+00:00"
|
|
26067
26601
|
},
|
|
26068
26602
|
"system_metadata": {
|
|
26069
26603
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -26248,7 +26782,7 @@
|
|
|
26248
26782
|
},
|
|
26249
26783
|
"x-original-maxLength": 1024,
|
|
26250
26784
|
"x-reconciled-from-discovery": true,
|
|
26251
|
-
"x-reconciled-at": "2026-01-
|
|
26785
|
+
"x-reconciled-at": "2026-01-05T18:29:28.343811+00:00"
|
|
26252
26786
|
},
|
|
26253
26787
|
"disabled": {
|
|
26254
26788
|
"type": "boolean",
|
|
@@ -26298,7 +26832,7 @@
|
|
|
26298
26832
|
},
|
|
26299
26833
|
"x-original-maxLength": 1024,
|
|
26300
26834
|
"x-reconciled-from-discovery": true,
|
|
26301
|
-
"x-reconciled-at": "2026-01-
|
|
26835
|
+
"x-reconciled-at": "2026-01-05T18:29:28.343823+00:00"
|
|
26302
26836
|
},
|
|
26303
26837
|
"namespace": {
|
|
26304
26838
|
"type": "string",
|
|
@@ -26317,7 +26851,7 @@
|
|
|
26317
26851
|
},
|
|
26318
26852
|
"x-original-maxLength": 1024,
|
|
26319
26853
|
"x-reconciled-from-discovery": true,
|
|
26320
|
-
"x-reconciled-at": "2026-01-
|
|
26854
|
+
"x-reconciled-at": "2026-01-05T18:29:28.343827+00:00"
|
|
26321
26855
|
},
|
|
26322
26856
|
"owner_view": {
|
|
26323
26857
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -26358,7 +26892,7 @@
|
|
|
26358
26892
|
"x-field-mutability": "read-only",
|
|
26359
26893
|
"x-original-maxLength": 1024,
|
|
26360
26894
|
"x-reconciled-from-discovery": true,
|
|
26361
|
-
"x-reconciled-at": "2026-01-
|
|
26895
|
+
"x-reconciled-at": "2026-01-05T18:29:28.343835+00:00"
|
|
26362
26896
|
},
|
|
26363
26897
|
"uid": {
|
|
26364
26898
|
"type": "string",
|
|
@@ -26379,7 +26913,7 @@
|
|
|
26379
26913
|
"x-original-maxLength": 1024,
|
|
26380
26914
|
"format": "uuid",
|
|
26381
26915
|
"x-reconciled-from-discovery": true,
|
|
26382
|
-
"x-reconciled-at": "2026-01-
|
|
26916
|
+
"x-reconciled-at": "2026-01-05T18:29:28.343841+00:00"
|
|
26383
26917
|
}
|
|
26384
26918
|
},
|
|
26385
26919
|
"x-f5xc-minimum-configuration": {
|
|
@@ -26618,7 +27152,7 @@
|
|
|
26618
27152
|
"maxLength": 17,
|
|
26619
27153
|
"minLength": 17,
|
|
26620
27154
|
"x-reconciled-from-discovery": true,
|
|
26621
|
-
"x-reconciled-at": "2026-01-
|
|
27155
|
+
"x-reconciled-at": "2026-01-05T18:29:28.609915+00:00"
|
|
26622
27156
|
},
|
|
26623
27157
|
"system_metadata": {
|
|
26624
27158
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -26959,7 +27493,7 @@
|
|
|
26959
27493
|
},
|
|
26960
27494
|
"x-original-maxLength": 1024,
|
|
26961
27495
|
"x-reconciled-from-discovery": true,
|
|
26962
|
-
"x-reconciled-at": "2026-01-
|
|
27496
|
+
"x-reconciled-at": "2026-01-05T18:29:28.609956+00:00"
|
|
26963
27497
|
},
|
|
26964
27498
|
"store_provider": {
|
|
26965
27499
|
"type": "string",
|
|
@@ -27017,7 +27551,7 @@
|
|
|
27017
27551
|
},
|
|
27018
27552
|
"x-original-maxLength": 1024,
|
|
27019
27553
|
"x-reconciled-from-discovery": true,
|
|
27020
|
-
"x-reconciled-at": "2026-01-
|
|
27554
|
+
"x-reconciled-at": "2026-01-05T18:29:28.609964+00:00"
|
|
27021
27555
|
},
|
|
27022
27556
|
"url": {
|
|
27023
27557
|
"type": "string",
|
|
@@ -27128,7 +27662,7 @@
|
|
|
27128
27662
|
},
|
|
27129
27663
|
"x-original-maxLength": 1024,
|
|
27130
27664
|
"x-reconciled-from-discovery": true,
|
|
27131
|
-
"x-reconciled-at": "2026-01-
|
|
27665
|
+
"x-reconciled-at": "2026-01-05T18:29:28.610104+00:00"
|
|
27132
27666
|
},
|
|
27133
27667
|
"location": {
|
|
27134
27668
|
"type": "string",
|
|
@@ -27145,7 +27679,7 @@
|
|
|
27145
27679
|
},
|
|
27146
27680
|
"x-original-maxLength": 1024,
|
|
27147
27681
|
"x-reconciled-from-discovery": true,
|
|
27148
|
-
"x-reconciled-at": "2026-01-
|
|
27682
|
+
"x-reconciled-at": "2026-01-05T18:29:28.610109+00:00"
|
|
27149
27683
|
},
|
|
27150
27684
|
"provider": {
|
|
27151
27685
|
"type": "string",
|
|
@@ -27162,7 +27696,7 @@
|
|
|
27162
27696
|
},
|
|
27163
27697
|
"x-original-maxLength": 1024,
|
|
27164
27698
|
"x-reconciled-from-discovery": true,
|
|
27165
|
-
"x-reconciled-at": "2026-01-
|
|
27699
|
+
"x-reconciled-at": "2026-01-05T18:29:28.610113+00:00"
|
|
27166
27700
|
},
|
|
27167
27701
|
"secret_encoding": {
|
|
27168
27702
|
"$ref": "#/components/schemas/schemaSecretEncodingType"
|
|
@@ -27184,7 +27718,7 @@
|
|
|
27184
27718
|
"maxLength": 1,
|
|
27185
27719
|
"minLength": 1,
|
|
27186
27720
|
"x-reconciled-from-discovery": true,
|
|
27187
|
-
"x-reconciled-at": "2026-01-
|
|
27721
|
+
"x-reconciled-at": "2026-01-05T18:29:28.610120+00:00"
|
|
27188
27722
|
}
|
|
27189
27723
|
},
|
|
27190
27724
|
"x-f5xc-minimum-configuration": {
|
|
@@ -27223,7 +27757,7 @@
|
|
|
27223
27757
|
},
|
|
27224
27758
|
"x-original-maxLength": 1024,
|
|
27225
27759
|
"x-reconciled-from-discovery": true,
|
|
27226
|
-
"x-reconciled-at": "2026-01-
|
|
27760
|
+
"x-reconciled-at": "2026-01-05T18:29:28.610142+00:00"
|
|
27227
27761
|
}
|
|
27228
27762
|
},
|
|
27229
27763
|
"x-f5xc-minimum-configuration": {
|
|
@@ -27403,7 +27937,7 @@
|
|
|
27403
27937
|
},
|
|
27404
27938
|
"x-original-maxLength": 1024,
|
|
27405
27939
|
"x-reconciled-from-discovery": true,
|
|
27406
|
-
"x-reconciled-at": "2026-01-
|
|
27940
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943623+00:00"
|
|
27407
27941
|
},
|
|
27408
27942
|
"namespace": {
|
|
27409
27943
|
"type": "string",
|
|
@@ -27422,7 +27956,7 @@
|
|
|
27422
27956
|
},
|
|
27423
27957
|
"x-original-maxLength": 1024,
|
|
27424
27958
|
"x-reconciled-from-discovery": true,
|
|
27425
|
-
"x-reconciled-at": "2026-01-
|
|
27959
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943629+00:00"
|
|
27426
27960
|
}
|
|
27427
27961
|
},
|
|
27428
27962
|
"x-f5xc-minimum-configuration": {
|
|
@@ -27520,7 +28054,7 @@
|
|
|
27520
28054
|
"maxLength": 17,
|
|
27521
28055
|
"minLength": 17,
|
|
27522
28056
|
"x-reconciled-from-discovery": true,
|
|
27523
|
-
"x-reconciled-at": "2026-01-
|
|
28057
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943645+00:00"
|
|
27524
28058
|
},
|
|
27525
28059
|
"system_metadata": {
|
|
27526
28060
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -27728,7 +28262,7 @@
|
|
|
27728
28262
|
},
|
|
27729
28263
|
"x-original-maxLength": 1024,
|
|
27730
28264
|
"x-reconciled-from-discovery": true,
|
|
27731
|
-
"x-reconciled-at": "2026-01-
|
|
28265
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943664+00:00"
|
|
27732
28266
|
},
|
|
27733
28267
|
"disabled": {
|
|
27734
28268
|
"type": "boolean",
|
|
@@ -27778,7 +28312,7 @@
|
|
|
27778
28312
|
},
|
|
27779
28313
|
"x-original-maxLength": 1024,
|
|
27780
28314
|
"x-reconciled-from-discovery": true,
|
|
27781
|
-
"x-reconciled-at": "2026-01-
|
|
28315
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943674+00:00"
|
|
27782
28316
|
},
|
|
27783
28317
|
"namespace": {
|
|
27784
28318
|
"type": "string",
|
|
@@ -27797,7 +28331,7 @@
|
|
|
27797
28331
|
},
|
|
27798
28332
|
"x-original-maxLength": 1024,
|
|
27799
28333
|
"x-reconciled-from-discovery": true,
|
|
27800
|
-
"x-reconciled-at": "2026-01-
|
|
28334
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943679+00:00"
|
|
27801
28335
|
},
|
|
27802
28336
|
"owner_view": {
|
|
27803
28337
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -27838,7 +28372,7 @@
|
|
|
27838
28372
|
"x-field-mutability": "read-only",
|
|
27839
28373
|
"x-original-maxLength": 1024,
|
|
27840
28374
|
"x-reconciled-from-discovery": true,
|
|
27841
|
-
"x-reconciled-at": "2026-01-
|
|
28375
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943687+00:00"
|
|
27842
28376
|
},
|
|
27843
28377
|
"uid": {
|
|
27844
28378
|
"type": "string",
|
|
@@ -27859,7 +28393,7 @@
|
|
|
27859
28393
|
"x-original-maxLength": 1024,
|
|
27860
28394
|
"format": "uuid",
|
|
27861
28395
|
"x-reconciled-from-discovery": true,
|
|
27862
|
-
"x-reconciled-at": "2026-01-
|
|
28396
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943693+00:00"
|
|
27863
28397
|
}
|
|
27864
28398
|
},
|
|
27865
28399
|
"x-f5xc-minimum-configuration": {
|
|
@@ -28066,7 +28600,7 @@
|
|
|
28066
28600
|
},
|
|
28067
28601
|
"x-original-maxLength": 1024,
|
|
28068
28602
|
"x-reconciled-from-discovery": true,
|
|
28069
|
-
"x-reconciled-at": "2026-01-
|
|
28603
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943713+00:00"
|
|
28070
28604
|
},
|
|
28071
28605
|
"namespace": {
|
|
28072
28606
|
"type": "string",
|
|
@@ -28092,7 +28626,7 @@
|
|
|
28092
28626
|
},
|
|
28093
28627
|
"x-original-maxLength": 1024,
|
|
28094
28628
|
"x-reconciled-from-discovery": true,
|
|
28095
|
-
"x-reconciled-at": "2026-01-
|
|
28629
|
+
"x-reconciled-at": "2026-01-05T18:29:28.943717+00:00"
|
|
28096
28630
|
}
|
|
28097
28631
|
},
|
|
28098
28632
|
"x-f5xc-minimum-configuration": {
|
|
@@ -28373,7 +28907,7 @@
|
|
|
28373
28907
|
},
|
|
28374
28908
|
"x-original-maxLength": 1024,
|
|
28375
28909
|
"x-reconciled-from-discovery": true,
|
|
28376
|
-
"x-reconciled-at": "2026-01-
|
|
28910
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031372+00:00"
|
|
28377
28911
|
},
|
|
28378
28912
|
"namespace": {
|
|
28379
28913
|
"type": "string",
|
|
@@ -28392,7 +28926,7 @@
|
|
|
28392
28926
|
},
|
|
28393
28927
|
"x-original-maxLength": 1024,
|
|
28394
28928
|
"x-reconciled-from-discovery": true,
|
|
28395
|
-
"x-reconciled-at": "2026-01-
|
|
28929
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031379+00:00"
|
|
28396
28930
|
}
|
|
28397
28931
|
},
|
|
28398
28932
|
"x-f5xc-minimum-configuration": {
|
|
@@ -28490,7 +29024,7 @@
|
|
|
28490
29024
|
"maxLength": 17,
|
|
28491
29025
|
"minLength": 17,
|
|
28492
29026
|
"x-reconciled-from-discovery": true,
|
|
28493
|
-
"x-reconciled-at": "2026-01-
|
|
29027
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031395+00:00"
|
|
28494
29028
|
},
|
|
28495
29029
|
"system_metadata": {
|
|
28496
29030
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -29119,7 +29653,7 @@
|
|
|
29119
29653
|
},
|
|
29120
29654
|
"x-original-maxLength": 1024,
|
|
29121
29655
|
"x-reconciled-from-discovery": true,
|
|
29122
|
-
"x-reconciled-at": "2026-01-
|
|
29656
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031451+00:00"
|
|
29123
29657
|
},
|
|
29124
29658
|
"disabled": {
|
|
29125
29659
|
"type": "boolean",
|
|
@@ -29169,7 +29703,7 @@
|
|
|
29169
29703
|
},
|
|
29170
29704
|
"x-original-maxLength": 1024,
|
|
29171
29705
|
"x-reconciled-from-discovery": true,
|
|
29172
|
-
"x-reconciled-at": "2026-01-
|
|
29706
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031462+00:00"
|
|
29173
29707
|
},
|
|
29174
29708
|
"namespace": {
|
|
29175
29709
|
"type": "string",
|
|
@@ -29188,7 +29722,7 @@
|
|
|
29188
29722
|
},
|
|
29189
29723
|
"x-original-maxLength": 1024,
|
|
29190
29724
|
"x-reconciled-from-discovery": true,
|
|
29191
|
-
"x-reconciled-at": "2026-01-
|
|
29725
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031467+00:00"
|
|
29192
29726
|
},
|
|
29193
29727
|
"owner_view": {
|
|
29194
29728
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -29229,7 +29763,7 @@
|
|
|
29229
29763
|
"x-field-mutability": "read-only",
|
|
29230
29764
|
"x-original-maxLength": 1024,
|
|
29231
29765
|
"x-reconciled-from-discovery": true,
|
|
29232
|
-
"x-reconciled-at": "2026-01-
|
|
29766
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031475+00:00"
|
|
29233
29767
|
},
|
|
29234
29768
|
"uid": {
|
|
29235
29769
|
"type": "string",
|
|
@@ -29250,7 +29784,7 @@
|
|
|
29250
29784
|
"x-original-maxLength": 1024,
|
|
29251
29785
|
"format": "uuid",
|
|
29252
29786
|
"x-reconciled-from-discovery": true,
|
|
29253
|
-
"x-reconciled-at": "2026-01-
|
|
29787
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031480+00:00"
|
|
29254
29788
|
}
|
|
29255
29789
|
},
|
|
29256
29790
|
"x-f5xc-minimum-configuration": {
|
|
@@ -29449,7 +29983,7 @@
|
|
|
29449
29983
|
},
|
|
29450
29984
|
"x-original-maxLength": 256,
|
|
29451
29985
|
"x-reconciled-from-discovery": true,
|
|
29452
|
-
"x-reconciled-at": "2026-01-
|
|
29986
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031500+00:00"
|
|
29453
29987
|
},
|
|
29454
29988
|
"zone1": {
|
|
29455
29989
|
"$ref": "#/components/schemas/ioschemaEmpty"
|
|
@@ -29528,7 +30062,7 @@
|
|
|
29528
30062
|
},
|
|
29529
30063
|
"x-original-maxLength": 1024,
|
|
29530
30064
|
"x-reconciled-from-discovery": true,
|
|
29531
|
-
"x-reconciled-at": "2026-01-
|
|
30065
|
+
"x-reconciled-at": "2026-01-05T18:30:06.031508+00:00"
|
|
29532
30066
|
},
|
|
29533
30067
|
"tunnel_id": {
|
|
29534
30068
|
"type": "string",
|