@robinmordasiewicz/f5xc-api-mcp 2.0.10-2601051503 → 2.0.13-2601051957
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -14
- package/README.md +9 -5
- package/dist/generator/domain-metadata.d.ts +1 -3
- package/dist/generator/domain-metadata.d.ts.map +1 -1
- package/dist/generator/domain-metadata.js +0 -20
- package/dist/generator/domain-metadata.js.map +1 -1
- package/dist/generator/naming/acronyms.d.ts +1 -1
- package/dist/generator/naming/acronyms.js +1 -1
- package/dist/tools/generated/dependency-graph.json +1 -1
- package/dist/version.d.ts +2 -2
- package/dist/version.js +2 -2
- package/manifest.json +1 -1
- package/package.json +1 -1
- package/specs/domains/admin_console_and_ui.json +90 -26
- package/specs/domains/ai_services.json +149 -22
- package/specs/domains/api.json +598 -179
- package/specs/domains/authentication.json +198 -46
- package/specs/domains/bigip.json +326 -98
- package/specs/domains/billing_and_usage.json +289 -64
- package/specs/domains/blindfold.json +384 -110
- package/specs/domains/bot_and_threat_defense.json +256 -66
- package/specs/domains/cdn.json +477 -181
- package/specs/domains/ce_management.json +398 -118
- package/specs/domains/certificates.json +253 -78
- package/specs/domains/cloud_infrastructure.json +412 -115
- package/specs/domains/container_services.json +260 -95
- package/specs/domains/data_and_privacy_security.json +210 -68
- package/specs/domains/data_intelligence.json +225 -63
- package/specs/domains/ddos.json +690 -156
- package/specs/domains/dns.json +614 -149
- package/specs/domains/managed_kubernetes.json +317 -89
- package/specs/domains/marketplace.json +427 -104
- package/specs/domains/network.json +950 -231
- package/specs/domains/network_security.json +749 -188
- package/specs/domains/nginx_one.json +211 -63
- package/specs/domains/object_storage.json +126 -13
- package/specs/domains/observability.json +622 -103
- package/specs/domains/rate_limiting.json +208 -53
- package/specs/domains/secops_and_incident_response.json +122 -37
- package/specs/domains/service_mesh.json +484 -123
- package/specs/domains/shape.json +2359 -314
- package/specs/domains/sites.json +1572 -390
- package/specs/domains/statistics.json +892 -226
- package/specs/domains/support.json +544 -109
- package/specs/domains/telemetry_and_insights.json +312 -73
- package/specs/domains/tenant_and_identity.json +1881 -273
- package/specs/domains/threat_campaign.json +124 -67
- package/specs/domains/users.json +225 -72
- package/specs/domains/virtual.json +1157 -245
- package/specs/domains/vpm_and_node_management.json +59 -2
- package/specs/domains/waf.json +565 -140
- package/specs/index.json +99 -4
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Managed Kubernetes",
|
|
5
5
|
"description": "Role-based access controls with cluster-scoped permissions and namespace bindings. Pod security admission levels enforce baseline, restricted, or privileged profiles. Container registry credentials support private image pulls across hybrid deployments. Policy rules define resource verbs, groups, and non-resource URL access patterns.",
|
|
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": "Kubernetes role bindings and admission policies. Registry integration for EKS, AKS, and GKE workloads.",
|
|
16
|
-
"x-f5xc-cli-domain": "managed_kubernetes"
|
|
16
|
+
"x-f5xc-cli-domain": "managed_kubernetes",
|
|
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
|
{
|
|
@@ -276,6 +326,13 @@
|
|
|
276
326
|
"latency": "low",
|
|
277
327
|
"resource_usage": "low"
|
|
278
328
|
}
|
|
329
|
+
},
|
|
330
|
+
"x-f5xc-discovered-response-time": {
|
|
331
|
+
"p50_ms": 1000,
|
|
332
|
+
"p95_ms": 3000,
|
|
333
|
+
"p99_ms": 8000,
|
|
334
|
+
"sample_count": 0,
|
|
335
|
+
"source": "estimate"
|
|
279
336
|
}
|
|
280
337
|
},
|
|
281
338
|
"x-displayname": "Container Registry.",
|
|
@@ -498,6 +555,13 @@
|
|
|
498
555
|
"latency": "low",
|
|
499
556
|
"resource_usage": "low"
|
|
500
557
|
}
|
|
558
|
+
},
|
|
559
|
+
"x-f5xc-discovered-response-time": {
|
|
560
|
+
"p50_ms": 800,
|
|
561
|
+
"p95_ms": 2500,
|
|
562
|
+
"p99_ms": 6000,
|
|
563
|
+
"sample_count": 0,
|
|
564
|
+
"source": "estimate"
|
|
501
565
|
}
|
|
502
566
|
},
|
|
503
567
|
"x-displayname": "Container Registry.",
|
|
@@ -725,6 +789,13 @@
|
|
|
725
789
|
"latency": "moderate",
|
|
726
790
|
"resource_usage": "moderate"
|
|
727
791
|
}
|
|
792
|
+
},
|
|
793
|
+
"x-f5xc-discovered-response-time": {
|
|
794
|
+
"p50_ms": 200,
|
|
795
|
+
"p95_ms": 800,
|
|
796
|
+
"p99_ms": 2000,
|
|
797
|
+
"sample_count": 0,
|
|
798
|
+
"source": "estimate"
|
|
728
799
|
}
|
|
729
800
|
},
|
|
730
801
|
"x-displayname": "Container Registry.",
|
|
@@ -946,6 +1017,13 @@
|
|
|
946
1017
|
"latency": "low",
|
|
947
1018
|
"resource_usage": "low"
|
|
948
1019
|
}
|
|
1020
|
+
},
|
|
1021
|
+
"x-f5xc-discovered-response-time": {
|
|
1022
|
+
"p50_ms": 200,
|
|
1023
|
+
"p95_ms": 800,
|
|
1024
|
+
"p99_ms": 2000,
|
|
1025
|
+
"sample_count": 0,
|
|
1026
|
+
"source": "estimate"
|
|
949
1027
|
}
|
|
950
1028
|
},
|
|
951
1029
|
"delete": {
|
|
@@ -1165,6 +1243,13 @@
|
|
|
1165
1243
|
"latency": "high",
|
|
1166
1244
|
"resource_usage": "moderate"
|
|
1167
1245
|
}
|
|
1246
|
+
},
|
|
1247
|
+
"x-f5xc-discovered-response-time": {
|
|
1248
|
+
"p50_ms": 500,
|
|
1249
|
+
"p95_ms": 1500,
|
|
1250
|
+
"p99_ms": 4000,
|
|
1251
|
+
"sample_count": 0,
|
|
1252
|
+
"source": "estimate"
|
|
1168
1253
|
}
|
|
1169
1254
|
},
|
|
1170
1255
|
"x-displayname": "Container Registry.",
|
|
@@ -1379,6 +1464,13 @@
|
|
|
1379
1464
|
"latency": "low",
|
|
1380
1465
|
"resource_usage": "low"
|
|
1381
1466
|
}
|
|
1467
|
+
},
|
|
1468
|
+
"x-f5xc-discovered-response-time": {
|
|
1469
|
+
"p50_ms": 1000,
|
|
1470
|
+
"p95_ms": 3000,
|
|
1471
|
+
"p99_ms": 8000,
|
|
1472
|
+
"sample_count": 0,
|
|
1473
|
+
"source": "estimate"
|
|
1382
1474
|
}
|
|
1383
1475
|
},
|
|
1384
1476
|
"x-displayname": "K8s Cluster Role.",
|
|
@@ -1601,6 +1693,13 @@
|
|
|
1601
1693
|
"latency": "low",
|
|
1602
1694
|
"resource_usage": "low"
|
|
1603
1695
|
}
|
|
1696
|
+
},
|
|
1697
|
+
"x-f5xc-discovered-response-time": {
|
|
1698
|
+
"p50_ms": 800,
|
|
1699
|
+
"p95_ms": 2500,
|
|
1700
|
+
"p99_ms": 6000,
|
|
1701
|
+
"sample_count": 0,
|
|
1702
|
+
"source": "estimate"
|
|
1604
1703
|
}
|
|
1605
1704
|
},
|
|
1606
1705
|
"x-displayname": "K8s Cluster Role.",
|
|
@@ -1830,7 +1929,15 @@
|
|
|
1830
1929
|
}
|
|
1831
1930
|
},
|
|
1832
1931
|
"x-discovered-response-time-ms": 153.1,
|
|
1833
|
-
"x-discovered-sample-size": 1
|
|
1932
|
+
"x-discovered-sample-size": 1,
|
|
1933
|
+
"x-f5xc-discovered-response-time": {
|
|
1934
|
+
"p50_ms": 153.1,
|
|
1935
|
+
"p95_ms": 306.2,
|
|
1936
|
+
"p99_ms": 459.3,
|
|
1937
|
+
"sample_count": 1,
|
|
1938
|
+
"source": "discovery",
|
|
1939
|
+
"last_measured": "2025-12-20T19:39:20.211392+00:00"
|
|
1940
|
+
}
|
|
1834
1941
|
},
|
|
1835
1942
|
"x-displayname": "K8s Cluster Role.",
|
|
1836
1943
|
"x-ves-proto-service": "ves.io.schema.k8s_cluster_role.API",
|
|
@@ -2051,6 +2158,13 @@
|
|
|
2051
2158
|
"latency": "low",
|
|
2052
2159
|
"resource_usage": "low"
|
|
2053
2160
|
}
|
|
2161
|
+
},
|
|
2162
|
+
"x-f5xc-discovered-response-time": {
|
|
2163
|
+
"p50_ms": 200,
|
|
2164
|
+
"p95_ms": 800,
|
|
2165
|
+
"p99_ms": 2000,
|
|
2166
|
+
"sample_count": 0,
|
|
2167
|
+
"source": "estimate"
|
|
2054
2168
|
}
|
|
2055
2169
|
},
|
|
2056
2170
|
"delete": {
|
|
@@ -2270,6 +2384,13 @@
|
|
|
2270
2384
|
"latency": "high",
|
|
2271
2385
|
"resource_usage": "moderate"
|
|
2272
2386
|
}
|
|
2387
|
+
},
|
|
2388
|
+
"x-f5xc-discovered-response-time": {
|
|
2389
|
+
"p50_ms": 500,
|
|
2390
|
+
"p95_ms": 1500,
|
|
2391
|
+
"p99_ms": 4000,
|
|
2392
|
+
"sample_count": 0,
|
|
2393
|
+
"source": "estimate"
|
|
2273
2394
|
}
|
|
2274
2395
|
},
|
|
2275
2396
|
"x-displayname": "K8s Cluster Role.",
|
|
@@ -2484,6 +2605,13 @@
|
|
|
2484
2605
|
"latency": "low",
|
|
2485
2606
|
"resource_usage": "low"
|
|
2486
2607
|
}
|
|
2608
|
+
},
|
|
2609
|
+
"x-f5xc-discovered-response-time": {
|
|
2610
|
+
"p50_ms": 1000,
|
|
2611
|
+
"p95_ms": 3000,
|
|
2612
|
+
"p99_ms": 8000,
|
|
2613
|
+
"sample_count": 0,
|
|
2614
|
+
"source": "estimate"
|
|
2487
2615
|
}
|
|
2488
2616
|
},
|
|
2489
2617
|
"x-displayname": "K8s Cluster Role Binding.",
|
|
@@ -2706,6 +2834,13 @@
|
|
|
2706
2834
|
"latency": "low",
|
|
2707
2835
|
"resource_usage": "low"
|
|
2708
2836
|
}
|
|
2837
|
+
},
|
|
2838
|
+
"x-f5xc-discovered-response-time": {
|
|
2839
|
+
"p50_ms": 800,
|
|
2840
|
+
"p95_ms": 2500,
|
|
2841
|
+
"p99_ms": 6000,
|
|
2842
|
+
"sample_count": 0,
|
|
2843
|
+
"source": "estimate"
|
|
2709
2844
|
}
|
|
2710
2845
|
},
|
|
2711
2846
|
"x-displayname": "K8s Cluster Role Binding.",
|
|
@@ -2935,7 +3070,15 @@
|
|
|
2935
3070
|
}
|
|
2936
3071
|
},
|
|
2937
3072
|
"x-discovered-response-time-ms": 161.41,
|
|
2938
|
-
"x-discovered-sample-size": 1
|
|
3073
|
+
"x-discovered-sample-size": 1,
|
|
3074
|
+
"x-f5xc-discovered-response-time": {
|
|
3075
|
+
"p50_ms": 161.41,
|
|
3076
|
+
"p95_ms": 322.82,
|
|
3077
|
+
"p99_ms": 484.23,
|
|
3078
|
+
"sample_count": 1,
|
|
3079
|
+
"source": "discovery",
|
|
3080
|
+
"last_measured": "2025-12-20T19:39:20.211392+00:00"
|
|
3081
|
+
}
|
|
2939
3082
|
},
|
|
2940
3083
|
"x-displayname": "K8s Cluster Role Binding.",
|
|
2941
3084
|
"x-ves-proto-service": "ves.io.schema.k8s_cluster_role_binding.API",
|
|
@@ -3156,6 +3299,13 @@
|
|
|
3156
3299
|
"latency": "low",
|
|
3157
3300
|
"resource_usage": "low"
|
|
3158
3301
|
}
|
|
3302
|
+
},
|
|
3303
|
+
"x-f5xc-discovered-response-time": {
|
|
3304
|
+
"p50_ms": 200,
|
|
3305
|
+
"p95_ms": 800,
|
|
3306
|
+
"p99_ms": 2000,
|
|
3307
|
+
"sample_count": 0,
|
|
3308
|
+
"source": "estimate"
|
|
3159
3309
|
}
|
|
3160
3310
|
},
|
|
3161
3311
|
"delete": {
|
|
@@ -3375,6 +3525,13 @@
|
|
|
3375
3525
|
"latency": "high",
|
|
3376
3526
|
"resource_usage": "moderate"
|
|
3377
3527
|
}
|
|
3528
|
+
},
|
|
3529
|
+
"x-f5xc-discovered-response-time": {
|
|
3530
|
+
"p50_ms": 500,
|
|
3531
|
+
"p95_ms": 1500,
|
|
3532
|
+
"p99_ms": 4000,
|
|
3533
|
+
"sample_count": 0,
|
|
3534
|
+
"source": "estimate"
|
|
3378
3535
|
}
|
|
3379
3536
|
},
|
|
3380
3537
|
"x-displayname": "K8s Cluster Role Binding.",
|
|
@@ -3589,6 +3746,13 @@
|
|
|
3589
3746
|
"latency": "low",
|
|
3590
3747
|
"resource_usage": "low"
|
|
3591
3748
|
}
|
|
3749
|
+
},
|
|
3750
|
+
"x-f5xc-discovered-response-time": {
|
|
3751
|
+
"p50_ms": 1000,
|
|
3752
|
+
"p95_ms": 3000,
|
|
3753
|
+
"p99_ms": 8000,
|
|
3754
|
+
"sample_count": 0,
|
|
3755
|
+
"source": "estimate"
|
|
3592
3756
|
}
|
|
3593
3757
|
},
|
|
3594
3758
|
"x-displayname": "K8s Pod Security Admission.",
|
|
@@ -3811,6 +3975,13 @@
|
|
|
3811
3975
|
"latency": "low",
|
|
3812
3976
|
"resource_usage": "low"
|
|
3813
3977
|
}
|
|
3978
|
+
},
|
|
3979
|
+
"x-f5xc-discovered-response-time": {
|
|
3980
|
+
"p50_ms": 800,
|
|
3981
|
+
"p95_ms": 2500,
|
|
3982
|
+
"p99_ms": 6000,
|
|
3983
|
+
"sample_count": 0,
|
|
3984
|
+
"source": "estimate"
|
|
3814
3985
|
}
|
|
3815
3986
|
},
|
|
3816
3987
|
"x-displayname": "K8s Pod Security Admission.",
|
|
@@ -4040,7 +4211,15 @@
|
|
|
4040
4211
|
}
|
|
4041
4212
|
},
|
|
4042
4213
|
"x-discovered-response-time-ms": 155.68,
|
|
4043
|
-
"x-discovered-sample-size": 1
|
|
4214
|
+
"x-discovered-sample-size": 1,
|
|
4215
|
+
"x-f5xc-discovered-response-time": {
|
|
4216
|
+
"p50_ms": 155.68,
|
|
4217
|
+
"p95_ms": 311.36,
|
|
4218
|
+
"p99_ms": 467.04,
|
|
4219
|
+
"sample_count": 1,
|
|
4220
|
+
"source": "discovery",
|
|
4221
|
+
"last_measured": "2025-12-20T19:39:20.211392+00:00"
|
|
4222
|
+
}
|
|
4044
4223
|
},
|
|
4045
4224
|
"x-displayname": "K8s Pod Security Admission.",
|
|
4046
4225
|
"x-ves-proto-service": "ves.io.schema.k8s_pod_security_admission.API",
|
|
@@ -4261,6 +4440,13 @@
|
|
|
4261
4440
|
"latency": "low",
|
|
4262
4441
|
"resource_usage": "low"
|
|
4263
4442
|
}
|
|
4443
|
+
},
|
|
4444
|
+
"x-f5xc-discovered-response-time": {
|
|
4445
|
+
"p50_ms": 200,
|
|
4446
|
+
"p95_ms": 800,
|
|
4447
|
+
"p99_ms": 2000,
|
|
4448
|
+
"sample_count": 0,
|
|
4449
|
+
"source": "estimate"
|
|
4264
4450
|
}
|
|
4265
4451
|
},
|
|
4266
4452
|
"delete": {
|
|
@@ -4480,6 +4666,13 @@
|
|
|
4480
4666
|
"latency": "high",
|
|
4481
4667
|
"resource_usage": "moderate"
|
|
4482
4668
|
}
|
|
4669
|
+
},
|
|
4670
|
+
"x-f5xc-discovered-response-time": {
|
|
4671
|
+
"p50_ms": 500,
|
|
4672
|
+
"p95_ms": 1500,
|
|
4673
|
+
"p99_ms": 4000,
|
|
4674
|
+
"sample_count": 0,
|
|
4675
|
+
"source": "estimate"
|
|
4483
4676
|
}
|
|
4484
4677
|
},
|
|
4485
4678
|
"x-displayname": "K8s Pod Security Admission.",
|
|
@@ -4695,6 +4888,13 @@
|
|
|
4695
4888
|
"latency": "low",
|
|
4696
4889
|
"resource_usage": "low"
|
|
4697
4890
|
}
|
|
4891
|
+
},
|
|
4892
|
+
"x-f5xc-discovered-response-time": {
|
|
4893
|
+
"p50_ms": 1000,
|
|
4894
|
+
"p95_ms": 3000,
|
|
4895
|
+
"p99_ms": 8000,
|
|
4896
|
+
"sample_count": 0,
|
|
4897
|
+
"source": "estimate"
|
|
4698
4898
|
}
|
|
4699
4899
|
},
|
|
4700
4900
|
"x-displayname": "K8s Pod Security Policy.",
|
|
@@ -4918,6 +5118,13 @@
|
|
|
4918
5118
|
"latency": "low",
|
|
4919
5119
|
"resource_usage": "low"
|
|
4920
5120
|
}
|
|
5121
|
+
},
|
|
5122
|
+
"x-f5xc-discovered-response-time": {
|
|
5123
|
+
"p50_ms": 800,
|
|
5124
|
+
"p95_ms": 2500,
|
|
5125
|
+
"p99_ms": 6000,
|
|
5126
|
+
"sample_count": 0,
|
|
5127
|
+
"source": "estimate"
|
|
4921
5128
|
}
|
|
4922
5129
|
},
|
|
4923
5130
|
"x-displayname": "K8s Pod Security Policy.",
|
|
@@ -5146,6 +5353,13 @@
|
|
|
5146
5353
|
"latency": "moderate",
|
|
5147
5354
|
"resource_usage": "moderate"
|
|
5148
5355
|
}
|
|
5356
|
+
},
|
|
5357
|
+
"x-f5xc-discovered-response-time": {
|
|
5358
|
+
"p50_ms": 200,
|
|
5359
|
+
"p95_ms": 800,
|
|
5360
|
+
"p99_ms": 2000,
|
|
5361
|
+
"sample_count": 0,
|
|
5362
|
+
"source": "estimate"
|
|
5149
5363
|
}
|
|
5150
5364
|
},
|
|
5151
5365
|
"x-displayname": "K8s Pod Security Policy.",
|
|
@@ -5368,6 +5582,13 @@
|
|
|
5368
5582
|
"latency": "low",
|
|
5369
5583
|
"resource_usage": "low"
|
|
5370
5584
|
}
|
|
5585
|
+
},
|
|
5586
|
+
"x-f5xc-discovered-response-time": {
|
|
5587
|
+
"p50_ms": 200,
|
|
5588
|
+
"p95_ms": 800,
|
|
5589
|
+
"p99_ms": 2000,
|
|
5590
|
+
"sample_count": 0,
|
|
5591
|
+
"source": "estimate"
|
|
5371
5592
|
}
|
|
5372
5593
|
},
|
|
5373
5594
|
"delete": {
|
|
@@ -5588,6 +5809,13 @@
|
|
|
5588
5809
|
"latency": "high",
|
|
5589
5810
|
"resource_usage": "moderate"
|
|
5590
5811
|
}
|
|
5812
|
+
},
|
|
5813
|
+
"x-f5xc-discovered-response-time": {
|
|
5814
|
+
"p50_ms": 500,
|
|
5815
|
+
"p95_ms": 1500,
|
|
5816
|
+
"p99_ms": 4000,
|
|
5817
|
+
"sample_count": 0,
|
|
5818
|
+
"source": "estimate"
|
|
5591
5819
|
}
|
|
5592
5820
|
},
|
|
5593
5821
|
"x-displayname": "K8s Pod Security Policy.",
|
|
@@ -5794,7 +6022,7 @@
|
|
|
5794
6022
|
},
|
|
5795
6023
|
"x-original-maxLength": 1024,
|
|
5796
6024
|
"x-reconciled-from-discovery": true,
|
|
5797
|
-
"x-reconciled-at": "2026-01-
|
|
6025
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119745+00:00"
|
|
5798
6026
|
},
|
|
5799
6027
|
"namespace": {
|
|
5800
6028
|
"type": "string",
|
|
@@ -5813,7 +6041,7 @@
|
|
|
5813
6041
|
},
|
|
5814
6042
|
"x-original-maxLength": 1024,
|
|
5815
6043
|
"x-reconciled-from-discovery": true,
|
|
5816
|
-
"x-reconciled-at": "2026-01-
|
|
6044
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119756+00:00"
|
|
5817
6045
|
}
|
|
5818
6046
|
},
|
|
5819
6047
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5911,7 +6139,7 @@
|
|
|
5911
6139
|
"maxLength": 17,
|
|
5912
6140
|
"minLength": 17,
|
|
5913
6141
|
"x-reconciled-from-discovery": true,
|
|
5914
|
-
"x-reconciled-at": "2026-01-
|
|
6142
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119772+00:00"
|
|
5915
6143
|
},
|
|
5916
6144
|
"system_metadata": {
|
|
5917
6145
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -6143,7 +6371,7 @@
|
|
|
6143
6371
|
},
|
|
6144
6372
|
"x-original-maxLength": 1024,
|
|
6145
6373
|
"x-reconciled-from-discovery": true,
|
|
6146
|
-
"x-reconciled-at": "2026-01-
|
|
6374
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119792+00:00"
|
|
6147
6375
|
},
|
|
6148
6376
|
"disabled": {
|
|
6149
6377
|
"type": "boolean",
|
|
@@ -6193,7 +6421,7 @@
|
|
|
6193
6421
|
},
|
|
6194
6422
|
"x-original-maxLength": 1024,
|
|
6195
6423
|
"x-reconciled-from-discovery": true,
|
|
6196
|
-
"x-reconciled-at": "2026-01-
|
|
6424
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119803+00:00"
|
|
6197
6425
|
},
|
|
6198
6426
|
"namespace": {
|
|
6199
6427
|
"type": "string",
|
|
@@ -6212,7 +6440,7 @@
|
|
|
6212
6440
|
},
|
|
6213
6441
|
"x-original-maxLength": 1024,
|
|
6214
6442
|
"x-reconciled-from-discovery": true,
|
|
6215
|
-
"x-reconciled-at": "2026-01-
|
|
6443
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119808+00:00"
|
|
6216
6444
|
},
|
|
6217
6445
|
"owner_view": {
|
|
6218
6446
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -6253,7 +6481,7 @@
|
|
|
6253
6481
|
"x-field-mutability": "read-only",
|
|
6254
6482
|
"x-original-maxLength": 1024,
|
|
6255
6483
|
"x-reconciled-from-discovery": true,
|
|
6256
|
-
"x-reconciled-at": "2026-01-
|
|
6484
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119816+00:00"
|
|
6257
6485
|
},
|
|
6258
6486
|
"uid": {
|
|
6259
6487
|
"type": "string",
|
|
@@ -6274,7 +6502,7 @@
|
|
|
6274
6502
|
"x-original-maxLength": 1024,
|
|
6275
6503
|
"format": "uuid",
|
|
6276
6504
|
"x-reconciled-from-discovery": true,
|
|
6277
|
-
"x-reconciled-at": "2026-01-
|
|
6505
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119822+00:00"
|
|
6278
6506
|
}
|
|
6279
6507
|
},
|
|
6280
6508
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6523,7 +6751,7 @@
|
|
|
6523
6751
|
},
|
|
6524
6752
|
"x-original-maxLength": 1024,
|
|
6525
6753
|
"x-reconciled-from-discovery": true,
|
|
6526
|
-
"x-reconciled-at": "2026-01-
|
|
6754
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119844+00:00"
|
|
6527
6755
|
}
|
|
6528
6756
|
},
|
|
6529
6757
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6589,7 +6817,7 @@
|
|
|
6589
6817
|
},
|
|
6590
6818
|
"x-original-maxLength": 1024,
|
|
6591
6819
|
"x-reconciled-from-discovery": true,
|
|
6592
|
-
"x-reconciled-at": "2026-01-
|
|
6820
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119852+00:00"
|
|
6593
6821
|
},
|
|
6594
6822
|
"store_provider": {
|
|
6595
6823
|
"type": "string",
|
|
@@ -6647,7 +6875,7 @@
|
|
|
6647
6875
|
},
|
|
6648
6876
|
"x-original-maxLength": 1024,
|
|
6649
6877
|
"x-reconciled-from-discovery": true,
|
|
6650
|
-
"x-reconciled-at": "2026-01-
|
|
6878
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119859+00:00"
|
|
6651
6879
|
},
|
|
6652
6880
|
"url": {
|
|
6653
6881
|
"type": "string",
|
|
@@ -6744,7 +6972,7 @@
|
|
|
6744
6972
|
},
|
|
6745
6973
|
"x-original-maxLength": 1024,
|
|
6746
6974
|
"x-reconciled-from-discovery": true,
|
|
6747
|
-
"x-reconciled-at": "2026-01-
|
|
6975
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119868+00:00"
|
|
6748
6976
|
},
|
|
6749
6977
|
"service_name": {
|
|
6750
6978
|
"type": "string",
|
|
@@ -6783,7 +7011,7 @@
|
|
|
6783
7011
|
},
|
|
6784
7012
|
"x-original-maxLength": 1024,
|
|
6785
7013
|
"x-reconciled-from-discovery": true,
|
|
6786
|
-
"x-reconciled-at": "2026-01-
|
|
7014
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119874+00:00"
|
|
6787
7015
|
},
|
|
6788
7016
|
"type": {
|
|
6789
7017
|
"type": "string",
|
|
@@ -6920,7 +7148,7 @@
|
|
|
6920
7148
|
},
|
|
6921
7149
|
"x-original-maxLength": 1024,
|
|
6922
7150
|
"x-reconciled-from-discovery": true,
|
|
6923
|
-
"x-reconciled-at": "2026-01-
|
|
7151
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119885+00:00"
|
|
6924
7152
|
}
|
|
6925
7153
|
},
|
|
6926
7154
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7029,7 +7257,7 @@
|
|
|
7029
7257
|
},
|
|
7030
7258
|
"x-original-maxLength": 1200,
|
|
7031
7259
|
"x-reconciled-from-discovery": true,
|
|
7032
|
-
"x-reconciled-at": "2026-01-
|
|
7260
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119895+00:00"
|
|
7033
7261
|
},
|
|
7034
7262
|
"disable": {
|
|
7035
7263
|
"type": "boolean",
|
|
@@ -7082,7 +7310,7 @@
|
|
|
7082
7310
|
},
|
|
7083
7311
|
"x-original-maxLength": 1024,
|
|
7084
7312
|
"x-reconciled-from-discovery": true,
|
|
7085
|
-
"x-reconciled-at": "2026-01-
|
|
7313
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119903+00:00"
|
|
7086
7314
|
},
|
|
7087
7315
|
"namespace": {
|
|
7088
7316
|
"type": "string",
|
|
@@ -7101,7 +7329,7 @@
|
|
|
7101
7329
|
},
|
|
7102
7330
|
"x-original-maxLength": 1024,
|
|
7103
7331
|
"x-reconciled-from-discovery": true,
|
|
7104
|
-
"x-reconciled-at": "2026-01-
|
|
7332
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119907+00:00"
|
|
7105
7333
|
}
|
|
7106
7334
|
},
|
|
7107
7335
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7177,7 +7405,7 @@
|
|
|
7177
7405
|
},
|
|
7178
7406
|
"x-original-maxLength": 1200,
|
|
7179
7407
|
"x-reconciled-from-discovery": true,
|
|
7180
|
-
"x-reconciled-at": "2026-01-
|
|
7408
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119914+00:00"
|
|
7181
7409
|
},
|
|
7182
7410
|
"disable": {
|
|
7183
7411
|
"type": "boolean",
|
|
@@ -7232,7 +7460,7 @@
|
|
|
7232
7460
|
},
|
|
7233
7461
|
"x-original-maxLength": 1024,
|
|
7234
7462
|
"x-reconciled-from-discovery": true,
|
|
7235
|
-
"x-reconciled-at": "2026-01-
|
|
7463
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119921+00:00"
|
|
7236
7464
|
},
|
|
7237
7465
|
"namespace": {
|
|
7238
7466
|
"type": "string",
|
|
@@ -7251,7 +7479,7 @@
|
|
|
7251
7479
|
},
|
|
7252
7480
|
"x-original-maxLength": 1024,
|
|
7253
7481
|
"x-reconciled-from-discovery": true,
|
|
7254
|
-
"x-reconciled-at": "2026-01-
|
|
7482
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119925+00:00"
|
|
7255
7483
|
}
|
|
7256
7484
|
},
|
|
7257
7485
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7296,7 +7524,7 @@
|
|
|
7296
7524
|
"readOnly": true,
|
|
7297
7525
|
"x-original-maxLength": 1024,
|
|
7298
7526
|
"x-reconciled-from-discovery": true,
|
|
7299
|
-
"x-reconciled-at": "2026-01-
|
|
7527
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119930+00:00"
|
|
7300
7528
|
},
|
|
7301
7529
|
"name": {
|
|
7302
7530
|
"type": "string",
|
|
@@ -7315,7 +7543,7 @@
|
|
|
7315
7543
|
},
|
|
7316
7544
|
"x-original-maxLength": 1024,
|
|
7317
7545
|
"x-reconciled-from-discovery": true,
|
|
7318
|
-
"x-reconciled-at": "2026-01-
|
|
7546
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119934+00:00"
|
|
7319
7547
|
},
|
|
7320
7548
|
"namespace": {
|
|
7321
7549
|
"type": "string",
|
|
@@ -7334,7 +7562,7 @@
|
|
|
7334
7562
|
},
|
|
7335
7563
|
"x-original-maxLength": 1024,
|
|
7336
7564
|
"x-reconciled-from-discovery": true,
|
|
7337
|
-
"x-reconciled-at": "2026-01-
|
|
7565
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119938+00:00"
|
|
7338
7566
|
},
|
|
7339
7567
|
"tenant": {
|
|
7340
7568
|
"type": "string",
|
|
@@ -7355,7 +7583,7 @@
|
|
|
7355
7583
|
"x-field-mutability": "read-only",
|
|
7356
7584
|
"x-original-maxLength": 1024,
|
|
7357
7585
|
"x-reconciled-from-discovery": true,
|
|
7358
|
-
"x-reconciled-at": "2026-01-
|
|
7586
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119942+00:00"
|
|
7359
7587
|
},
|
|
7360
7588
|
"uid": {
|
|
7361
7589
|
"type": "string",
|
|
@@ -7377,7 +7605,7 @@
|
|
|
7377
7605
|
"x-original-maxLength": 1024,
|
|
7378
7606
|
"format": "uuid",
|
|
7379
7607
|
"x-reconciled-from-discovery": true,
|
|
7380
|
-
"x-reconciled-at": "2026-01-
|
|
7608
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119948+00:00"
|
|
7381
7609
|
}
|
|
7382
7610
|
},
|
|
7383
7611
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7452,7 +7680,7 @@
|
|
|
7452
7680
|
},
|
|
7453
7681
|
"x-original-maxLength": 1200,
|
|
7454
7682
|
"x-reconciled-from-discovery": true,
|
|
7455
|
-
"x-reconciled-at": "2026-01-
|
|
7683
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119955+00:00"
|
|
7456
7684
|
},
|
|
7457
7685
|
"disable": {
|
|
7458
7686
|
"type": "boolean",
|
|
@@ -7505,7 +7733,7 @@
|
|
|
7505
7733
|
},
|
|
7506
7734
|
"x-original-maxLength": 1024,
|
|
7507
7735
|
"x-reconciled-from-discovery": true,
|
|
7508
|
-
"x-reconciled-at": "2026-01-
|
|
7736
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119963+00:00"
|
|
7509
7737
|
},
|
|
7510
7738
|
"namespace": {
|
|
7511
7739
|
"type": "string",
|
|
@@ -7524,7 +7752,7 @@
|
|
|
7524
7752
|
},
|
|
7525
7753
|
"x-original-maxLength": 1024,
|
|
7526
7754
|
"x-reconciled-from-discovery": true,
|
|
7527
|
-
"x-reconciled-at": "2026-01-
|
|
7755
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119967+00:00"
|
|
7528
7756
|
}
|
|
7529
7757
|
},
|
|
7530
7758
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7685,7 +7913,7 @@
|
|
|
7685
7913
|
"x-original-maxLength": 1024,
|
|
7686
7914
|
"format": "uuid",
|
|
7687
7915
|
"x-reconciled-from-discovery": true,
|
|
7688
|
-
"x-reconciled-at": "2026-01-
|
|
7916
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119983+00:00"
|
|
7689
7917
|
},
|
|
7690
7918
|
"vtrp_id": {
|
|
7691
7919
|
"type": "string",
|
|
@@ -7797,7 +8025,7 @@
|
|
|
7797
8025
|
},
|
|
7798
8026
|
"x-original-maxLength": 1024,
|
|
7799
8027
|
"x-reconciled-from-discovery": true,
|
|
7800
|
-
"x-reconciled-at": "2026-01-
|
|
8028
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119993+00:00"
|
|
7801
8029
|
},
|
|
7802
8030
|
"status": {
|
|
7803
8031
|
"type": "string",
|
|
@@ -7816,7 +8044,7 @@
|
|
|
7816
8044
|
},
|
|
7817
8045
|
"x-original-maxLength": 1024,
|
|
7818
8046
|
"x-reconciled-from-discovery": true,
|
|
7819
|
-
"x-reconciled-at": "2026-01-
|
|
8047
|
+
"x-reconciled-at": "2026-01-05T18:29:10.119997+00:00"
|
|
7820
8048
|
}
|
|
7821
8049
|
},
|
|
7822
8050
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7994,7 +8222,7 @@
|
|
|
7994
8222
|
"x-field-mutability": "read-only",
|
|
7995
8223
|
"x-original-maxLength": 1024,
|
|
7996
8224
|
"x-reconciled-from-discovery": true,
|
|
7997
|
-
"x-reconciled-at": "2026-01-
|
|
8225
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120016+00:00"
|
|
7998
8226
|
},
|
|
7999
8227
|
"uid": {
|
|
8000
8228
|
"type": "string",
|
|
@@ -8015,7 +8243,7 @@
|
|
|
8015
8243
|
"x-original-maxLength": 1024,
|
|
8016
8244
|
"format": "uuid",
|
|
8017
8245
|
"x-reconciled-from-discovery": true,
|
|
8018
|
-
"x-reconciled-at": "2026-01-
|
|
8246
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120021+00:00"
|
|
8019
8247
|
}
|
|
8020
8248
|
},
|
|
8021
8249
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8061,7 +8289,7 @@
|
|
|
8061
8289
|
},
|
|
8062
8290
|
"x-original-maxLength": 1024,
|
|
8063
8291
|
"x-reconciled-from-discovery": true,
|
|
8064
|
-
"x-reconciled-at": "2026-01-
|
|
8292
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120026+00:00"
|
|
8065
8293
|
},
|
|
8066
8294
|
"location": {
|
|
8067
8295
|
"type": "string",
|
|
@@ -8078,7 +8306,7 @@
|
|
|
8078
8306
|
},
|
|
8079
8307
|
"x-original-maxLength": 1024,
|
|
8080
8308
|
"x-reconciled-from-discovery": true,
|
|
8081
|
-
"x-reconciled-at": "2026-01-
|
|
8309
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120030+00:00"
|
|
8082
8310
|
},
|
|
8083
8311
|
"provider": {
|
|
8084
8312
|
"type": "string",
|
|
@@ -8095,7 +8323,7 @@
|
|
|
8095
8323
|
},
|
|
8096
8324
|
"x-original-maxLength": 1024,
|
|
8097
8325
|
"x-reconciled-from-discovery": true,
|
|
8098
|
-
"x-reconciled-at": "2026-01-
|
|
8326
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120047+00:00"
|
|
8099
8327
|
},
|
|
8100
8328
|
"secret_encoding": {
|
|
8101
8329
|
"$ref": "#/components/schemas/schemaSecretEncodingType"
|
|
@@ -8117,7 +8345,7 @@
|
|
|
8117
8345
|
"maxLength": 1,
|
|
8118
8346
|
"minLength": 1,
|
|
8119
8347
|
"x-reconciled-from-discovery": true,
|
|
8120
|
-
"x-reconciled-at": "2026-01-
|
|
8348
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120054+00:00"
|
|
8121
8349
|
}
|
|
8122
8350
|
},
|
|
8123
8351
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8160,7 +8388,7 @@
|
|
|
8160
8388
|
},
|
|
8161
8389
|
"x-original-maxLength": 1024,
|
|
8162
8390
|
"x-reconciled-from-discovery": true,
|
|
8163
|
-
"x-reconciled-at": "2026-01-
|
|
8391
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120059+00:00"
|
|
8164
8392
|
},
|
|
8165
8393
|
"name": {
|
|
8166
8394
|
"type": "string",
|
|
@@ -8179,7 +8407,7 @@
|
|
|
8179
8407
|
},
|
|
8180
8408
|
"x-original-maxLength": 1024,
|
|
8181
8409
|
"x-reconciled-from-discovery": true,
|
|
8182
|
-
"x-reconciled-at": "2026-01-
|
|
8410
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120063+00:00"
|
|
8183
8411
|
},
|
|
8184
8412
|
"namespace": {
|
|
8185
8413
|
"type": "string",
|
|
@@ -8198,7 +8426,7 @@
|
|
|
8198
8426
|
},
|
|
8199
8427
|
"x-original-maxLength": 1024,
|
|
8200
8428
|
"x-reconciled-from-discovery": true,
|
|
8201
|
-
"x-reconciled-at": "2026-01-
|
|
8429
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120068+00:00"
|
|
8202
8430
|
},
|
|
8203
8431
|
"uid": {
|
|
8204
8432
|
"type": "string",
|
|
@@ -8219,7 +8447,7 @@
|
|
|
8219
8447
|
"x-original-maxLength": 1024,
|
|
8220
8448
|
"format": "uuid",
|
|
8221
8449
|
"x-reconciled-from-discovery": true,
|
|
8222
|
-
"x-reconciled-at": "2026-01-
|
|
8450
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120073+00:00"
|
|
8223
8451
|
}
|
|
8224
8452
|
},
|
|
8225
8453
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8257,7 +8485,7 @@
|
|
|
8257
8485
|
},
|
|
8258
8486
|
"x-original-maxLength": 1024,
|
|
8259
8487
|
"x-reconciled-from-discovery": true,
|
|
8260
|
-
"x-reconciled-at": "2026-01-
|
|
8488
|
+
"x-reconciled-at": "2026-01-05T18:29:10.120078+00:00"
|
|
8261
8489
|
}
|
|
8262
8490
|
},
|
|
8263
8491
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8414,7 +8642,7 @@
|
|
|
8414
8642
|
},
|
|
8415
8643
|
"x-original-maxLength": 1024,
|
|
8416
8644
|
"x-reconciled-from-discovery": true,
|
|
8417
|
-
"x-reconciled-at": "2026-01-
|
|
8645
|
+
"x-reconciled-at": "2026-01-05T18:29:29.826016+00:00"
|
|
8418
8646
|
},
|
|
8419
8647
|
"namespace": {
|
|
8420
8648
|
"type": "string",
|
|
@@ -8433,7 +8661,7 @@
|
|
|
8433
8661
|
},
|
|
8434
8662
|
"x-original-maxLength": 1024,
|
|
8435
8663
|
"x-reconciled-from-discovery": true,
|
|
8436
|
-
"x-reconciled-at": "2026-01-
|
|
8664
|
+
"x-reconciled-at": "2026-01-05T18:29:29.826023+00:00"
|
|
8437
8665
|
}
|
|
8438
8666
|
},
|
|
8439
8667
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8531,7 +8759,7 @@
|
|
|
8531
8759
|
"maxLength": 17,
|
|
8532
8760
|
"minLength": 17,
|
|
8533
8761
|
"x-reconciled-from-discovery": true,
|
|
8534
|
-
"x-reconciled-at": "2026-01-
|
|
8762
|
+
"x-reconciled-at": "2026-01-05T18:29:29.826050+00:00"
|
|
8535
8763
|
},
|
|
8536
8764
|
"system_metadata": {
|
|
8537
8765
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -8716,7 +8944,7 @@
|
|
|
8716
8944
|
},
|
|
8717
8945
|
"x-original-maxLength": 1024,
|
|
8718
8946
|
"x-reconciled-from-discovery": true,
|
|
8719
|
-
"x-reconciled-at": "2026-01-
|
|
8947
|
+
"x-reconciled-at": "2026-01-05T18:29:29.826068+00:00"
|
|
8720
8948
|
},
|
|
8721
8949
|
"disabled": {
|
|
8722
8950
|
"type": "boolean",
|
|
@@ -8766,7 +8994,7 @@
|
|
|
8766
8994
|
},
|
|
8767
8995
|
"x-original-maxLength": 1024,
|
|
8768
8996
|
"x-reconciled-from-discovery": true,
|
|
8769
|
-
"x-reconciled-at": "2026-01-
|
|
8997
|
+
"x-reconciled-at": "2026-01-05T18:29:29.826078+00:00"
|
|
8770
8998
|
},
|
|
8771
8999
|
"namespace": {
|
|
8772
9000
|
"type": "string",
|
|
@@ -8785,7 +9013,7 @@
|
|
|
8785
9013
|
},
|
|
8786
9014
|
"x-original-maxLength": 1024,
|
|
8787
9015
|
"x-reconciled-from-discovery": true,
|
|
8788
|
-
"x-reconciled-at": "2026-01-
|
|
9016
|
+
"x-reconciled-at": "2026-01-05T18:29:29.826083+00:00"
|
|
8789
9017
|
},
|
|
8790
9018
|
"owner_view": {
|
|
8791
9019
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -8826,7 +9054,7 @@
|
|
|
8826
9054
|
"x-field-mutability": "read-only",
|
|
8827
9055
|
"x-original-maxLength": 1024,
|
|
8828
9056
|
"x-reconciled-from-discovery": true,
|
|
8829
|
-
"x-reconciled-at": "2026-01-
|
|
9057
|
+
"x-reconciled-at": "2026-01-05T18:29:29.826090+00:00"
|
|
8830
9058
|
},
|
|
8831
9059
|
"uid": {
|
|
8832
9060
|
"type": "string",
|
|
@@ -8847,7 +9075,7 @@
|
|
|
8847
9075
|
"x-original-maxLength": 1024,
|
|
8848
9076
|
"format": "uuid",
|
|
8849
9077
|
"x-reconciled-from-discovery": true,
|
|
8850
|
-
"x-reconciled-at": "2026-01-
|
|
9078
|
+
"x-reconciled-at": "2026-01-05T18:29:29.826096+00:00"
|
|
8851
9079
|
}
|
|
8852
9080
|
},
|
|
8853
9081
|
"x-f5xc-minimum-configuration": {
|
|
@@ -9425,7 +9653,7 @@
|
|
|
9425
9653
|
"readOnly": true,
|
|
9426
9654
|
"x-original-maxLength": 1024,
|
|
9427
9655
|
"x-reconciled-from-discovery": true,
|
|
9428
|
-
"x-reconciled-at": "2026-01-
|
|
9656
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162377+00:00"
|
|
9429
9657
|
},
|
|
9430
9658
|
"name": {
|
|
9431
9659
|
"type": "string",
|
|
@@ -9444,7 +9672,7 @@
|
|
|
9444
9672
|
},
|
|
9445
9673
|
"x-original-maxLength": 1024,
|
|
9446
9674
|
"x-reconciled-from-discovery": true,
|
|
9447
|
-
"x-reconciled-at": "2026-01-
|
|
9675
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162384+00:00"
|
|
9448
9676
|
},
|
|
9449
9677
|
"namespace": {
|
|
9450
9678
|
"type": "string",
|
|
@@ -9463,7 +9691,7 @@
|
|
|
9463
9691
|
},
|
|
9464
9692
|
"x-original-maxLength": 1024,
|
|
9465
9693
|
"x-reconciled-from-discovery": true,
|
|
9466
|
-
"x-reconciled-at": "2026-01-
|
|
9694
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162389+00:00"
|
|
9467
9695
|
},
|
|
9468
9696
|
"tenant": {
|
|
9469
9697
|
"type": "string",
|
|
@@ -9484,7 +9712,7 @@
|
|
|
9484
9712
|
"x-field-mutability": "read-only",
|
|
9485
9713
|
"x-original-maxLength": 1024,
|
|
9486
9714
|
"x-reconciled-from-discovery": true,
|
|
9487
|
-
"x-reconciled-at": "2026-01-
|
|
9715
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162394+00:00"
|
|
9488
9716
|
},
|
|
9489
9717
|
"uid": {
|
|
9490
9718
|
"type": "string",
|
|
@@ -9506,7 +9734,7 @@
|
|
|
9506
9734
|
"x-original-maxLength": 1024,
|
|
9507
9735
|
"format": "uuid",
|
|
9508
9736
|
"x-reconciled-from-discovery": true,
|
|
9509
|
-
"x-reconciled-at": "2026-01-
|
|
9737
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162400+00:00"
|
|
9510
9738
|
}
|
|
9511
9739
|
},
|
|
9512
9740
|
"x-f5xc-minimum-configuration": {
|
|
@@ -9670,7 +9898,7 @@
|
|
|
9670
9898
|
},
|
|
9671
9899
|
"x-original-maxLength": 1024,
|
|
9672
9900
|
"x-reconciled-from-discovery": true,
|
|
9673
|
-
"x-reconciled-at": "2026-01-
|
|
9901
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162418+00:00"
|
|
9674
9902
|
},
|
|
9675
9903
|
"namespace": {
|
|
9676
9904
|
"type": "string",
|
|
@@ -9689,7 +9917,7 @@
|
|
|
9689
9917
|
},
|
|
9690
9918
|
"x-original-maxLength": 1024,
|
|
9691
9919
|
"x-reconciled-from-discovery": true,
|
|
9692
|
-
"x-reconciled-at": "2026-01-
|
|
9920
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162423+00:00"
|
|
9693
9921
|
}
|
|
9694
9922
|
},
|
|
9695
9923
|
"x-f5xc-minimum-configuration": {
|
|
@@ -9787,7 +10015,7 @@
|
|
|
9787
10015
|
"maxLength": 17,
|
|
9788
10016
|
"minLength": 17,
|
|
9789
10017
|
"x-reconciled-from-discovery": true,
|
|
9790
|
-
"x-reconciled-at": "2026-01-
|
|
10018
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162438+00:00"
|
|
9791
10019
|
},
|
|
9792
10020
|
"system_metadata": {
|
|
9793
10021
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -9975,7 +10203,7 @@
|
|
|
9975
10203
|
},
|
|
9976
10204
|
"x-original-maxLength": 1024,
|
|
9977
10205
|
"x-reconciled-from-discovery": true,
|
|
9978
|
-
"x-reconciled-at": "2026-01-
|
|
10206
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162453+00:00"
|
|
9979
10207
|
},
|
|
9980
10208
|
"disabled": {
|
|
9981
10209
|
"type": "boolean",
|
|
@@ -10025,7 +10253,7 @@
|
|
|
10025
10253
|
},
|
|
10026
10254
|
"x-original-maxLength": 1024,
|
|
10027
10255
|
"x-reconciled-from-discovery": true,
|
|
10028
|
-
"x-reconciled-at": "2026-01-
|
|
10256
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162463+00:00"
|
|
10029
10257
|
},
|
|
10030
10258
|
"namespace": {
|
|
10031
10259
|
"type": "string",
|
|
@@ -10044,7 +10272,7 @@
|
|
|
10044
10272
|
},
|
|
10045
10273
|
"x-original-maxLength": 1024,
|
|
10046
10274
|
"x-reconciled-from-discovery": true,
|
|
10047
|
-
"x-reconciled-at": "2026-01-
|
|
10275
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162468+00:00"
|
|
10048
10276
|
},
|
|
10049
10277
|
"owner_view": {
|
|
10050
10278
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -10085,7 +10313,7 @@
|
|
|
10085
10313
|
"x-field-mutability": "read-only",
|
|
10086
10314
|
"x-original-maxLength": 1024,
|
|
10087
10315
|
"x-reconciled-from-discovery": true,
|
|
10088
|
-
"x-reconciled-at": "2026-01-
|
|
10316
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162476+00:00"
|
|
10089
10317
|
},
|
|
10090
10318
|
"uid": {
|
|
10091
10319
|
"type": "string",
|
|
@@ -10106,7 +10334,7 @@
|
|
|
10106
10334
|
"x-original-maxLength": 1024,
|
|
10107
10335
|
"format": "uuid",
|
|
10108
10336
|
"x-reconciled-from-discovery": true,
|
|
10109
|
-
"x-reconciled-at": "2026-01-
|
|
10337
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162481+00:00"
|
|
10110
10338
|
}
|
|
10111
10339
|
},
|
|
10112
10340
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10260,7 +10488,7 @@
|
|
|
10260
10488
|
},
|
|
10261
10489
|
"x-original-maxLength": 64,
|
|
10262
10490
|
"x-reconciled-from-discovery": true,
|
|
10263
|
-
"x-reconciled-at": "2026-01-
|
|
10491
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162493+00:00"
|
|
10264
10492
|
},
|
|
10265
10493
|
"namespace": {
|
|
10266
10494
|
"type": "string",
|
|
@@ -10290,7 +10518,7 @@
|
|
|
10290
10518
|
},
|
|
10291
10519
|
"x-original-maxLength": 64,
|
|
10292
10520
|
"x-reconciled-from-discovery": true,
|
|
10293
|
-
"x-reconciled-at": "2026-01-
|
|
10521
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162497+00:00"
|
|
10294
10522
|
}
|
|
10295
10523
|
},
|
|
10296
10524
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10470,7 +10698,7 @@
|
|
|
10470
10698
|
},
|
|
10471
10699
|
"x-original-maxLength": 128,
|
|
10472
10700
|
"x-reconciled-from-discovery": true,
|
|
10473
|
-
"x-reconciled-at": "2026-01-
|
|
10701
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162666+00:00"
|
|
10474
10702
|
},
|
|
10475
10703
|
"namespace": {
|
|
10476
10704
|
"type": "string",
|
|
@@ -10495,7 +10723,7 @@
|
|
|
10495
10723
|
},
|
|
10496
10724
|
"x-original-maxLength": 64,
|
|
10497
10725
|
"x-reconciled-from-discovery": true,
|
|
10498
|
-
"x-reconciled-at": "2026-01-
|
|
10726
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162670+00:00"
|
|
10499
10727
|
},
|
|
10500
10728
|
"tenant": {
|
|
10501
10729
|
"type": "string",
|
|
@@ -10522,7 +10750,7 @@
|
|
|
10522
10750
|
"x-field-mutability": "read-only",
|
|
10523
10751
|
"x-original-maxLength": 64,
|
|
10524
10752
|
"x-reconciled-from-discovery": true,
|
|
10525
|
-
"x-reconciled-at": "2026-01-
|
|
10753
|
+
"x-reconciled-at": "2026-01-05T18:29:30.162673+00:00"
|
|
10526
10754
|
}
|
|
10527
10755
|
},
|
|
10528
10756
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10696,7 +10924,7 @@
|
|
|
10696
10924
|
},
|
|
10697
10925
|
"x-original-maxLength": 1024,
|
|
10698
10926
|
"x-reconciled-from-discovery": true,
|
|
10699
|
-
"x-reconciled-at": "2026-01-
|
|
10927
|
+
"x-reconciled-at": "2026-01-05T18:29:30.488996+00:00"
|
|
10700
10928
|
},
|
|
10701
10929
|
"namespace": {
|
|
10702
10930
|
"type": "string",
|
|
@@ -10715,7 +10943,7 @@
|
|
|
10715
10943
|
},
|
|
10716
10944
|
"x-original-maxLength": 1024,
|
|
10717
10945
|
"x-reconciled-from-discovery": true,
|
|
10718
|
-
"x-reconciled-at": "2026-01-
|
|
10946
|
+
"x-reconciled-at": "2026-01-05T18:29:30.489001+00:00"
|
|
10719
10947
|
}
|
|
10720
10948
|
},
|
|
10721
10949
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10813,7 +11041,7 @@
|
|
|
10813
11041
|
"maxLength": 17,
|
|
10814
11042
|
"minLength": 17,
|
|
10815
11043
|
"x-reconciled-from-discovery": true,
|
|
10816
|
-
"x-reconciled-at": "2026-01-
|
|
11044
|
+
"x-reconciled-at": "2026-01-05T18:29:30.489016+00:00"
|
|
10817
11045
|
},
|
|
10818
11046
|
"system_metadata": {
|
|
10819
11047
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -10997,7 +11225,7 @@
|
|
|
10997
11225
|
},
|
|
10998
11226
|
"x-original-maxLength": 1024,
|
|
10999
11227
|
"x-reconciled-from-discovery": true,
|
|
11000
|
-
"x-reconciled-at": "2026-01-
|
|
11228
|
+
"x-reconciled-at": "2026-01-05T18:29:30.489030+00:00"
|
|
11001
11229
|
},
|
|
11002
11230
|
"disabled": {
|
|
11003
11231
|
"type": "boolean",
|
|
@@ -11047,7 +11275,7 @@
|
|
|
11047
11275
|
},
|
|
11048
11276
|
"x-original-maxLength": 1024,
|
|
11049
11277
|
"x-reconciled-from-discovery": true,
|
|
11050
|
-
"x-reconciled-at": "2026-01-
|
|
11278
|
+
"x-reconciled-at": "2026-01-05T18:29:30.489058+00:00"
|
|
11051
11279
|
},
|
|
11052
11280
|
"namespace": {
|
|
11053
11281
|
"type": "string",
|
|
@@ -11066,7 +11294,7 @@
|
|
|
11066
11294
|
},
|
|
11067
11295
|
"x-original-maxLength": 1024,
|
|
11068
11296
|
"x-reconciled-from-discovery": true,
|
|
11069
|
-
"x-reconciled-at": "2026-01-
|
|
11297
|
+
"x-reconciled-at": "2026-01-05T18:29:30.489063+00:00"
|
|
11070
11298
|
},
|
|
11071
11299
|
"owner_view": {
|
|
11072
11300
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -11107,7 +11335,7 @@
|
|
|
11107
11335
|
"x-field-mutability": "read-only",
|
|
11108
11336
|
"x-original-maxLength": 1024,
|
|
11109
11337
|
"x-reconciled-from-discovery": true,
|
|
11110
|
-
"x-reconciled-at": "2026-01-
|
|
11338
|
+
"x-reconciled-at": "2026-01-05T18:29:30.489072+00:00"
|
|
11111
11339
|
},
|
|
11112
11340
|
"uid": {
|
|
11113
11341
|
"type": "string",
|
|
@@ -11128,7 +11356,7 @@
|
|
|
11128
11356
|
"x-original-maxLength": 1024,
|
|
11129
11357
|
"format": "uuid",
|
|
11130
11358
|
"x-reconciled-from-discovery": true,
|
|
11131
|
-
"x-reconciled-at": "2026-01-
|
|
11359
|
+
"x-reconciled-at": "2026-01-05T18:29:30.489078+00:00"
|
|
11132
11360
|
}
|
|
11133
11361
|
},
|
|
11134
11362
|
"x-f5xc-minimum-configuration": {
|
|
@@ -11534,7 +11762,7 @@
|
|
|
11534
11762
|
},
|
|
11535
11763
|
"x-original-maxLength": 1024,
|
|
11536
11764
|
"x-reconciled-from-discovery": true,
|
|
11537
|
-
"x-reconciled-at": "2026-01-
|
|
11765
|
+
"x-reconciled-at": "2026-01-05T18:29:30.849654+00:00"
|
|
11538
11766
|
},
|
|
11539
11767
|
"namespace": {
|
|
11540
11768
|
"type": "string",
|
|
@@ -11553,7 +11781,7 @@
|
|
|
11553
11781
|
},
|
|
11554
11782
|
"x-original-maxLength": 1024,
|
|
11555
11783
|
"x-reconciled-from-discovery": true,
|
|
11556
|
-
"x-reconciled-at": "2026-01-
|
|
11784
|
+
"x-reconciled-at": "2026-01-05T18:29:30.849661+00:00"
|
|
11557
11785
|
}
|
|
11558
11786
|
},
|
|
11559
11787
|
"x-f5xc-minimum-configuration": {
|
|
@@ -11651,7 +11879,7 @@
|
|
|
11651
11879
|
"maxLength": 17,
|
|
11652
11880
|
"minLength": 17,
|
|
11653
11881
|
"x-reconciled-from-discovery": true,
|
|
11654
|
-
"x-reconciled-at": "2026-01-
|
|
11882
|
+
"x-reconciled-at": "2026-01-05T18:29:30.849677+00:00"
|
|
11655
11883
|
},
|
|
11656
11884
|
"system_metadata": {
|
|
11657
11885
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -12038,7 +12266,7 @@
|
|
|
12038
12266
|
},
|
|
12039
12267
|
"x-original-maxLength": 1024,
|
|
12040
12268
|
"x-reconciled-from-discovery": true,
|
|
12041
|
-
"x-reconciled-at": "2026-01-
|
|
12269
|
+
"x-reconciled-at": "2026-01-05T18:29:30.849703+00:00"
|
|
12042
12270
|
},
|
|
12043
12271
|
"disabled": {
|
|
12044
12272
|
"type": "boolean",
|
|
@@ -12088,7 +12316,7 @@
|
|
|
12088
12316
|
},
|
|
12089
12317
|
"x-original-maxLength": 1024,
|
|
12090
12318
|
"x-reconciled-from-discovery": true,
|
|
12091
|
-
"x-reconciled-at": "2026-01-
|
|
12319
|
+
"x-reconciled-at": "2026-01-05T18:29:30.849715+00:00"
|
|
12092
12320
|
},
|
|
12093
12321
|
"namespace": {
|
|
12094
12322
|
"type": "string",
|
|
@@ -12107,7 +12335,7 @@
|
|
|
12107
12335
|
},
|
|
12108
12336
|
"x-original-maxLength": 1024,
|
|
12109
12337
|
"x-reconciled-from-discovery": true,
|
|
12110
|
-
"x-reconciled-at": "2026-01-
|
|
12338
|
+
"x-reconciled-at": "2026-01-05T18:29:30.849720+00:00"
|
|
12111
12339
|
},
|
|
12112
12340
|
"owner_view": {
|
|
12113
12341
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -12148,7 +12376,7 @@
|
|
|
12148
12376
|
"x-field-mutability": "read-only",
|
|
12149
12377
|
"x-original-maxLength": 1024,
|
|
12150
12378
|
"x-reconciled-from-discovery": true,
|
|
12151
|
-
"x-reconciled-at": "2026-01-
|
|
12379
|
+
"x-reconciled-at": "2026-01-05T18:29:30.849728+00:00"
|
|
12152
12380
|
},
|
|
12153
12381
|
"uid": {
|
|
12154
12382
|
"type": "string",
|
|
@@ -12169,7 +12397,7 @@
|
|
|
12169
12397
|
"x-original-maxLength": 1024,
|
|
12170
12398
|
"format": "uuid",
|
|
12171
12399
|
"x-reconciled-from-discovery": true,
|
|
12172
|
-
"x-reconciled-at": "2026-01-
|
|
12400
|
+
"x-reconciled-at": "2026-01-05T18:29:30.849735+00:00"
|
|
12173
12401
|
}
|
|
12174
12402
|
},
|
|
12175
12403
|
"x-f5xc-minimum-configuration": {
|