@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": "Container Services",
|
|
5
5
|
"description": "Namespaced isolation with configurable limits and autoscaling policies. vK8s abstracts operational overhead while providing scheduling, persistent storage, and service mesh integration. Compute profiles specify CPU, memory, and GPU allocations for reproducible environments. Telemetry tracks consumption patterns across geographically distributed infrastructure nodes.",
|
|
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": "Pod orchestration without full cluster complexity. Edge site execution, quota enforcement, and standardized compute profiles for distributed apps.",
|
|
16
|
-
"x-f5xc-cli-domain": "container_services"
|
|
16
|
+
"x-f5xc-cli-domain": "container_services",
|
|
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
|
{
|
|
@@ -280,6 +330,13 @@
|
|
|
280
330
|
"latency": "low",
|
|
281
331
|
"resource_usage": "low"
|
|
282
332
|
}
|
|
333
|
+
},
|
|
334
|
+
"x-f5xc-discovered-response-time": {
|
|
335
|
+
"p50_ms": 1000,
|
|
336
|
+
"p95_ms": 3000,
|
|
337
|
+
"p99_ms": 8000,
|
|
338
|
+
"sample_count": 0,
|
|
339
|
+
"source": "estimate"
|
|
283
340
|
}
|
|
284
341
|
},
|
|
285
342
|
"x-displayname": "Virtual Kubernetes.",
|
|
@@ -502,6 +559,13 @@
|
|
|
502
559
|
"latency": "low",
|
|
503
560
|
"resource_usage": "low"
|
|
504
561
|
}
|
|
562
|
+
},
|
|
563
|
+
"x-f5xc-discovered-response-time": {
|
|
564
|
+
"p50_ms": 800,
|
|
565
|
+
"p95_ms": 2500,
|
|
566
|
+
"p99_ms": 6000,
|
|
567
|
+
"sample_count": 0,
|
|
568
|
+
"source": "estimate"
|
|
505
569
|
}
|
|
506
570
|
},
|
|
507
571
|
"x-displayname": "Virtual Kubernetes.",
|
|
@@ -731,7 +795,15 @@
|
|
|
731
795
|
}
|
|
732
796
|
},
|
|
733
797
|
"x-discovered-response-time-ms": 158.53,
|
|
734
|
-
"x-discovered-sample-size": 1
|
|
798
|
+
"x-discovered-sample-size": 1,
|
|
799
|
+
"x-f5xc-discovered-response-time": {
|
|
800
|
+
"p50_ms": 158.53,
|
|
801
|
+
"p95_ms": 317.06,
|
|
802
|
+
"p99_ms": 475.59,
|
|
803
|
+
"sample_count": 1,
|
|
804
|
+
"source": "discovery",
|
|
805
|
+
"last_measured": "2025-12-20T19:39:20.211392+00:00"
|
|
806
|
+
}
|
|
735
807
|
},
|
|
736
808
|
"x-displayname": "Virtual Kubernetes.",
|
|
737
809
|
"x-ves-proto-service": "ves.io.schema.virtual_k8s.API",
|
|
@@ -952,6 +1024,13 @@
|
|
|
952
1024
|
"latency": "low",
|
|
953
1025
|
"resource_usage": "low"
|
|
954
1026
|
}
|
|
1027
|
+
},
|
|
1028
|
+
"x-f5xc-discovered-response-time": {
|
|
1029
|
+
"p50_ms": 200,
|
|
1030
|
+
"p95_ms": 800,
|
|
1031
|
+
"p99_ms": 2000,
|
|
1032
|
+
"sample_count": 0,
|
|
1033
|
+
"source": "estimate"
|
|
955
1034
|
}
|
|
956
1035
|
},
|
|
957
1036
|
"delete": {
|
|
@@ -1171,6 +1250,13 @@
|
|
|
1171
1250
|
"latency": "high",
|
|
1172
1251
|
"resource_usage": "moderate"
|
|
1173
1252
|
}
|
|
1253
|
+
},
|
|
1254
|
+
"x-f5xc-discovered-response-time": {
|
|
1255
|
+
"p50_ms": 500,
|
|
1256
|
+
"p95_ms": 1500,
|
|
1257
|
+
"p99_ms": 4000,
|
|
1258
|
+
"sample_count": 0,
|
|
1259
|
+
"source": "estimate"
|
|
1174
1260
|
}
|
|
1175
1261
|
},
|
|
1176
1262
|
"x-displayname": "Virtual Kubernetes.",
|
|
@@ -1385,6 +1471,13 @@
|
|
|
1385
1471
|
"latency": "low",
|
|
1386
1472
|
"resource_usage": "low"
|
|
1387
1473
|
}
|
|
1474
|
+
},
|
|
1475
|
+
"x-f5xc-discovered-response-time": {
|
|
1476
|
+
"p50_ms": 1000,
|
|
1477
|
+
"p95_ms": 3000,
|
|
1478
|
+
"p99_ms": 8000,
|
|
1479
|
+
"sample_count": 0,
|
|
1480
|
+
"source": "estimate"
|
|
1388
1481
|
}
|
|
1389
1482
|
},
|
|
1390
1483
|
"x-displayname": "Workload",
|
|
@@ -1607,6 +1700,13 @@
|
|
|
1607
1700
|
"latency": "low",
|
|
1608
1701
|
"resource_usage": "low"
|
|
1609
1702
|
}
|
|
1703
|
+
},
|
|
1704
|
+
"x-f5xc-discovered-response-time": {
|
|
1705
|
+
"p50_ms": 800,
|
|
1706
|
+
"p95_ms": 2500,
|
|
1707
|
+
"p99_ms": 6000,
|
|
1708
|
+
"sample_count": 0,
|
|
1709
|
+
"source": "estimate"
|
|
1610
1710
|
}
|
|
1611
1711
|
},
|
|
1612
1712
|
"x-displayname": "Workload",
|
|
@@ -1836,7 +1936,15 @@
|
|
|
1836
1936
|
}
|
|
1837
1937
|
},
|
|
1838
1938
|
"x-discovered-response-time-ms": 153.13,
|
|
1839
|
-
"x-discovered-sample-size": 1
|
|
1939
|
+
"x-discovered-sample-size": 1,
|
|
1940
|
+
"x-f5xc-discovered-response-time": {
|
|
1941
|
+
"p50_ms": 153.13,
|
|
1942
|
+
"p95_ms": 306.26,
|
|
1943
|
+
"p99_ms": 459.39,
|
|
1944
|
+
"sample_count": 1,
|
|
1945
|
+
"source": "discovery",
|
|
1946
|
+
"last_measured": "2025-12-20T19:39:20.211392+00:00"
|
|
1947
|
+
}
|
|
1840
1948
|
},
|
|
1841
1949
|
"x-displayname": "Workload",
|
|
1842
1950
|
"x-ves-proto-service": "ves.io.schema.views.workload.API",
|
|
@@ -2050,6 +2158,13 @@
|
|
|
2050
2158
|
"latency": "low",
|
|
2051
2159
|
"resource_usage": "low"
|
|
2052
2160
|
}
|
|
2161
|
+
},
|
|
2162
|
+
"x-f5xc-discovered-response-time": {
|
|
2163
|
+
"p50_ms": 1000,
|
|
2164
|
+
"p95_ms": 3000,
|
|
2165
|
+
"p99_ms": 8000,
|
|
2166
|
+
"sample_count": 0,
|
|
2167
|
+
"source": "estimate"
|
|
2053
2168
|
}
|
|
2054
2169
|
},
|
|
2055
2170
|
"x-displayname": "Workload",
|
|
@@ -2271,6 +2386,13 @@
|
|
|
2271
2386
|
"latency": "low",
|
|
2272
2387
|
"resource_usage": "low"
|
|
2273
2388
|
}
|
|
2389
|
+
},
|
|
2390
|
+
"x-f5xc-discovered-response-time": {
|
|
2391
|
+
"p50_ms": 200,
|
|
2392
|
+
"p95_ms": 800,
|
|
2393
|
+
"p99_ms": 2000,
|
|
2394
|
+
"sample_count": 0,
|
|
2395
|
+
"source": "estimate"
|
|
2274
2396
|
}
|
|
2275
2397
|
},
|
|
2276
2398
|
"delete": {
|
|
@@ -2490,6 +2612,13 @@
|
|
|
2490
2612
|
"latency": "high",
|
|
2491
2613
|
"resource_usage": "moderate"
|
|
2492
2614
|
}
|
|
2615
|
+
},
|
|
2616
|
+
"x-f5xc-discovered-response-time": {
|
|
2617
|
+
"p50_ms": 500,
|
|
2618
|
+
"p95_ms": 1500,
|
|
2619
|
+
"p99_ms": 4000,
|
|
2620
|
+
"sample_count": 0,
|
|
2621
|
+
"source": "estimate"
|
|
2493
2622
|
}
|
|
2494
2623
|
},
|
|
2495
2624
|
"x-displayname": "Workload",
|
|
@@ -2704,6 +2833,13 @@
|
|
|
2704
2833
|
"latency": "low",
|
|
2705
2834
|
"resource_usage": "low"
|
|
2706
2835
|
}
|
|
2836
|
+
},
|
|
2837
|
+
"x-f5xc-discovered-response-time": {
|
|
2838
|
+
"p50_ms": 1000,
|
|
2839
|
+
"p95_ms": 3000,
|
|
2840
|
+
"p99_ms": 8000,
|
|
2841
|
+
"sample_count": 0,
|
|
2842
|
+
"source": "estimate"
|
|
2707
2843
|
}
|
|
2708
2844
|
},
|
|
2709
2845
|
"x-displayname": "Workload Flavor.",
|
|
@@ -2926,6 +3062,13 @@
|
|
|
2926
3062
|
"latency": "low",
|
|
2927
3063
|
"resource_usage": "low"
|
|
2928
3064
|
}
|
|
3065
|
+
},
|
|
3066
|
+
"x-f5xc-discovered-response-time": {
|
|
3067
|
+
"p50_ms": 800,
|
|
3068
|
+
"p95_ms": 2500,
|
|
3069
|
+
"p99_ms": 6000,
|
|
3070
|
+
"sample_count": 0,
|
|
3071
|
+
"source": "estimate"
|
|
2929
3072
|
}
|
|
2930
3073
|
},
|
|
2931
3074
|
"x-displayname": "Workload Flavor.",
|
|
@@ -3155,7 +3298,15 @@
|
|
|
3155
3298
|
}
|
|
3156
3299
|
},
|
|
3157
3300
|
"x-discovered-response-time-ms": 155.73,
|
|
3158
|
-
"x-discovered-sample-size": 1
|
|
3301
|
+
"x-discovered-sample-size": 1,
|
|
3302
|
+
"x-f5xc-discovered-response-time": {
|
|
3303
|
+
"p50_ms": 155.73,
|
|
3304
|
+
"p95_ms": 311.46,
|
|
3305
|
+
"p99_ms": 467.19,
|
|
3306
|
+
"sample_count": 1,
|
|
3307
|
+
"source": "discovery",
|
|
3308
|
+
"last_measured": "2025-12-20T19:39:20.211392+00:00"
|
|
3309
|
+
}
|
|
3159
3310
|
},
|
|
3160
3311
|
"x-displayname": "Workload Flavor.",
|
|
3161
3312
|
"x-ves-proto-service": "ves.io.schema.workload_flavor.API",
|
|
@@ -3376,6 +3527,13 @@
|
|
|
3376
3527
|
"latency": "low",
|
|
3377
3528
|
"resource_usage": "low"
|
|
3378
3529
|
}
|
|
3530
|
+
},
|
|
3531
|
+
"x-f5xc-discovered-response-time": {
|
|
3532
|
+
"p50_ms": 200,
|
|
3533
|
+
"p95_ms": 800,
|
|
3534
|
+
"p99_ms": 2000,
|
|
3535
|
+
"sample_count": 0,
|
|
3536
|
+
"source": "estimate"
|
|
3379
3537
|
}
|
|
3380
3538
|
},
|
|
3381
3539
|
"delete": {
|
|
@@ -3595,6 +3753,13 @@
|
|
|
3595
3753
|
"latency": "high",
|
|
3596
3754
|
"resource_usage": "moderate"
|
|
3597
3755
|
}
|
|
3756
|
+
},
|
|
3757
|
+
"x-f5xc-discovered-response-time": {
|
|
3758
|
+
"p50_ms": 500,
|
|
3759
|
+
"p95_ms": 1500,
|
|
3760
|
+
"p99_ms": 4000,
|
|
3761
|
+
"sample_count": 0,
|
|
3762
|
+
"source": "estimate"
|
|
3598
3763
|
}
|
|
3599
3764
|
},
|
|
3600
3765
|
"x-displayname": "Workload Flavor.",
|
|
@@ -3653,7 +3818,7 @@
|
|
|
3653
3818
|
"readOnly": true,
|
|
3654
3819
|
"x-original-maxLength": 1024,
|
|
3655
3820
|
"x-reconciled-from-discovery": true,
|
|
3656
|
-
"x-reconciled-at": "2026-01-
|
|
3821
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065678+00:00"
|
|
3657
3822
|
},
|
|
3658
3823
|
"name": {
|
|
3659
3824
|
"type": "string",
|
|
@@ -3672,7 +3837,7 @@
|
|
|
3672
3837
|
},
|
|
3673
3838
|
"x-original-maxLength": 1024,
|
|
3674
3839
|
"x-reconciled-from-discovery": true,
|
|
3675
|
-
"x-reconciled-at": "2026-01-
|
|
3840
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065685+00:00"
|
|
3676
3841
|
},
|
|
3677
3842
|
"namespace": {
|
|
3678
3843
|
"type": "string",
|
|
@@ -3691,7 +3856,7 @@
|
|
|
3691
3856
|
},
|
|
3692
3857
|
"x-original-maxLength": 1024,
|
|
3693
3858
|
"x-reconciled-from-discovery": true,
|
|
3694
|
-
"x-reconciled-at": "2026-01-
|
|
3859
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065690+00:00"
|
|
3695
3860
|
},
|
|
3696
3861
|
"tenant": {
|
|
3697
3862
|
"type": "string",
|
|
@@ -3712,7 +3877,7 @@
|
|
|
3712
3877
|
"x-field-mutability": "read-only",
|
|
3713
3878
|
"x-original-maxLength": 1024,
|
|
3714
3879
|
"x-reconciled-from-discovery": true,
|
|
3715
|
-
"x-reconciled-at": "2026-01-
|
|
3880
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065694+00:00"
|
|
3716
3881
|
},
|
|
3717
3882
|
"uid": {
|
|
3718
3883
|
"type": "string",
|
|
@@ -3734,7 +3899,7 @@
|
|
|
3734
3899
|
"x-original-maxLength": 1024,
|
|
3735
3900
|
"format": "uuid",
|
|
3736
3901
|
"x-reconciled-from-discovery": true,
|
|
3737
|
-
"x-reconciled-at": "2026-01-
|
|
3902
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065701+00:00"
|
|
3738
3903
|
}
|
|
3739
3904
|
},
|
|
3740
3905
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3783,7 +3948,7 @@
|
|
|
3783
3948
|
},
|
|
3784
3949
|
"x-original-maxLength": 1024,
|
|
3785
3950
|
"x-reconciled-from-discovery": true,
|
|
3786
|
-
"x-reconciled-at": "2026-01-
|
|
3951
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065709+00:00"
|
|
3787
3952
|
}
|
|
3788
3953
|
},
|
|
3789
3954
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3852,7 +4017,7 @@
|
|
|
3852
4017
|
},
|
|
3853
4018
|
"x-original-maxLength": 1024,
|
|
3854
4019
|
"x-reconciled-from-discovery": true,
|
|
3855
|
-
"x-reconciled-at": "2026-01-
|
|
4020
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065718+00:00"
|
|
3856
4021
|
},
|
|
3857
4022
|
"service_name": {
|
|
3858
4023
|
"type": "string",
|
|
@@ -3891,7 +4056,7 @@
|
|
|
3891
4056
|
},
|
|
3892
4057
|
"x-original-maxLength": 1024,
|
|
3893
4058
|
"x-reconciled-from-discovery": true,
|
|
3894
|
-
"x-reconciled-at": "2026-01-
|
|
4059
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065724+00:00"
|
|
3895
4060
|
},
|
|
3896
4061
|
"type": {
|
|
3897
4062
|
"type": "string",
|
|
@@ -4028,7 +4193,7 @@
|
|
|
4028
4193
|
},
|
|
4029
4194
|
"x-original-maxLength": 1024,
|
|
4030
4195
|
"x-reconciled-from-discovery": true,
|
|
4031
|
-
"x-reconciled-at": "2026-01-
|
|
4196
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065736+00:00"
|
|
4032
4197
|
}
|
|
4033
4198
|
},
|
|
4034
4199
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4124,7 +4289,7 @@
|
|
|
4124
4289
|
},
|
|
4125
4290
|
"x-original-maxLength": 1024,
|
|
4126
4291
|
"x-reconciled-from-discovery": true,
|
|
4127
|
-
"x-reconciled-at": "2026-01-
|
|
4292
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065746+00:00"
|
|
4128
4293
|
}
|
|
4129
4294
|
},
|
|
4130
4295
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4196,7 +4361,7 @@
|
|
|
4196
4361
|
},
|
|
4197
4362
|
"x-original-maxLength": 1200,
|
|
4198
4363
|
"x-reconciled-from-discovery": true,
|
|
4199
|
-
"x-reconciled-at": "2026-01-
|
|
4364
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065753+00:00"
|
|
4200
4365
|
},
|
|
4201
4366
|
"disable": {
|
|
4202
4367
|
"type": "boolean",
|
|
@@ -4249,7 +4414,7 @@
|
|
|
4249
4414
|
},
|
|
4250
4415
|
"x-original-maxLength": 1024,
|
|
4251
4416
|
"x-reconciled-from-discovery": true,
|
|
4252
|
-
"x-reconciled-at": "2026-01-
|
|
4417
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065761+00:00"
|
|
4253
4418
|
},
|
|
4254
4419
|
"namespace": {
|
|
4255
4420
|
"type": "string",
|
|
@@ -4268,7 +4433,7 @@
|
|
|
4268
4433
|
},
|
|
4269
4434
|
"x-original-maxLength": 1024,
|
|
4270
4435
|
"x-reconciled-from-discovery": true,
|
|
4271
|
-
"x-reconciled-at": "2026-01-
|
|
4436
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065765+00:00"
|
|
4272
4437
|
}
|
|
4273
4438
|
},
|
|
4274
4439
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4344,7 +4509,7 @@
|
|
|
4344
4509
|
},
|
|
4345
4510
|
"x-original-maxLength": 1200,
|
|
4346
4511
|
"x-reconciled-from-discovery": true,
|
|
4347
|
-
"x-reconciled-at": "2026-01-
|
|
4512
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065771+00:00"
|
|
4348
4513
|
},
|
|
4349
4514
|
"disable": {
|
|
4350
4515
|
"type": "boolean",
|
|
@@ -4399,7 +4564,7 @@
|
|
|
4399
4564
|
},
|
|
4400
4565
|
"x-original-maxLength": 1024,
|
|
4401
4566
|
"x-reconciled-from-discovery": true,
|
|
4402
|
-
"x-reconciled-at": "2026-01-
|
|
4567
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065778+00:00"
|
|
4403
4568
|
},
|
|
4404
4569
|
"namespace": {
|
|
4405
4570
|
"type": "string",
|
|
@@ -4418,7 +4583,7 @@
|
|
|
4418
4583
|
},
|
|
4419
4584
|
"x-original-maxLength": 1024,
|
|
4420
4585
|
"x-reconciled-from-discovery": true,
|
|
4421
|
-
"x-reconciled-at": "2026-01-
|
|
4586
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065782+00:00"
|
|
4422
4587
|
}
|
|
4423
4588
|
},
|
|
4424
4589
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4494,7 +4659,7 @@
|
|
|
4494
4659
|
},
|
|
4495
4660
|
"x-original-maxLength": 1200,
|
|
4496
4661
|
"x-reconciled-from-discovery": true,
|
|
4497
|
-
"x-reconciled-at": "2026-01-
|
|
4662
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065789+00:00"
|
|
4498
4663
|
},
|
|
4499
4664
|
"disable": {
|
|
4500
4665
|
"type": "boolean",
|
|
@@ -4547,7 +4712,7 @@
|
|
|
4547
4712
|
},
|
|
4548
4713
|
"x-original-maxLength": 1024,
|
|
4549
4714
|
"x-reconciled-from-discovery": true,
|
|
4550
|
-
"x-reconciled-at": "2026-01-
|
|
4715
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065796+00:00"
|
|
4551
4716
|
},
|
|
4552
4717
|
"namespace": {
|
|
4553
4718
|
"type": "string",
|
|
@@ -4566,7 +4731,7 @@
|
|
|
4566
4731
|
},
|
|
4567
4732
|
"x-original-maxLength": 1024,
|
|
4568
4733
|
"x-reconciled-from-discovery": true,
|
|
4569
|
-
"x-reconciled-at": "2026-01-
|
|
4734
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065800+00:00"
|
|
4570
4735
|
}
|
|
4571
4736
|
},
|
|
4572
4737
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4680,7 +4845,7 @@
|
|
|
4680
4845
|
"x-original-maxLength": 1024,
|
|
4681
4846
|
"format": "uuid",
|
|
4682
4847
|
"x-reconciled-from-discovery": true,
|
|
4683
|
-
"x-reconciled-at": "2026-01-
|
|
4848
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065812+00:00"
|
|
4684
4849
|
},
|
|
4685
4850
|
"vtrp_id": {
|
|
4686
4851
|
"type": "string",
|
|
@@ -4792,7 +4957,7 @@
|
|
|
4792
4957
|
},
|
|
4793
4958
|
"x-original-maxLength": 1024,
|
|
4794
4959
|
"x-reconciled-from-discovery": true,
|
|
4795
|
-
"x-reconciled-at": "2026-01-
|
|
4960
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065822+00:00"
|
|
4796
4961
|
},
|
|
4797
4962
|
"status": {
|
|
4798
4963
|
"type": "string",
|
|
@@ -4811,7 +4976,7 @@
|
|
|
4811
4976
|
},
|
|
4812
4977
|
"x-original-maxLength": 1024,
|
|
4813
4978
|
"x-reconciled-from-discovery": true,
|
|
4814
|
-
"x-reconciled-at": "2026-01-
|
|
4979
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065826+00:00"
|
|
4815
4980
|
}
|
|
4816
4981
|
},
|
|
4817
4982
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4989,7 +5154,7 @@
|
|
|
4989
5154
|
"x-field-mutability": "read-only",
|
|
4990
5155
|
"x-original-maxLength": 1024,
|
|
4991
5156
|
"x-reconciled-from-discovery": true,
|
|
4992
|
-
"x-reconciled-at": "2026-01-
|
|
5157
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065845+00:00"
|
|
4993
5158
|
},
|
|
4994
5159
|
"uid": {
|
|
4995
5160
|
"type": "string",
|
|
@@ -5010,7 +5175,7 @@
|
|
|
5010
5175
|
"x-original-maxLength": 1024,
|
|
5011
5176
|
"format": "uuid",
|
|
5012
5177
|
"x-reconciled-from-discovery": true,
|
|
5013
|
-
"x-reconciled-at": "2026-01-
|
|
5178
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065850+00:00"
|
|
5014
5179
|
}
|
|
5015
5180
|
},
|
|
5016
5181
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5082,7 +5247,7 @@
|
|
|
5082
5247
|
},
|
|
5083
5248
|
"x-original-maxLength": 1024,
|
|
5084
5249
|
"x-reconciled-from-discovery": true,
|
|
5085
|
-
"x-reconciled-at": "2026-01-
|
|
5250
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065855+00:00"
|
|
5086
5251
|
},
|
|
5087
5252
|
"previous_value": {
|
|
5088
5253
|
"type": "string",
|
|
@@ -5120,7 +5285,7 @@
|
|
|
5120
5285
|
},
|
|
5121
5286
|
"x-original-maxLength": 1024,
|
|
5122
5287
|
"x-reconciled-from-discovery": true,
|
|
5123
|
-
"x-reconciled-at": "2026-01-
|
|
5288
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065861+00:00"
|
|
5124
5289
|
}
|
|
5125
5290
|
},
|
|
5126
5291
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5208,7 +5373,7 @@
|
|
|
5208
5373
|
},
|
|
5209
5374
|
"x-original-maxLength": 1024,
|
|
5210
5375
|
"x-reconciled-from-discovery": true,
|
|
5211
|
-
"x-reconciled-at": "2026-01-
|
|
5376
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065866+00:00"
|
|
5212
5377
|
},
|
|
5213
5378
|
"name": {
|
|
5214
5379
|
"type": "string",
|
|
@@ -5227,7 +5392,7 @@
|
|
|
5227
5392
|
},
|
|
5228
5393
|
"x-original-maxLength": 1024,
|
|
5229
5394
|
"x-reconciled-from-discovery": true,
|
|
5230
|
-
"x-reconciled-at": "2026-01-
|
|
5395
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065870+00:00"
|
|
5231
5396
|
},
|
|
5232
5397
|
"namespace": {
|
|
5233
5398
|
"type": "string",
|
|
@@ -5246,7 +5411,7 @@
|
|
|
5246
5411
|
},
|
|
5247
5412
|
"x-original-maxLength": 1024,
|
|
5248
5413
|
"x-reconciled-from-discovery": true,
|
|
5249
|
-
"x-reconciled-at": "2026-01-
|
|
5414
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065874+00:00"
|
|
5250
5415
|
},
|
|
5251
5416
|
"uid": {
|
|
5252
5417
|
"type": "string",
|
|
@@ -5267,7 +5432,7 @@
|
|
|
5267
5432
|
"x-original-maxLength": 1024,
|
|
5268
5433
|
"format": "uuid",
|
|
5269
5434
|
"x-reconciled-from-discovery": true,
|
|
5270
|
-
"x-reconciled-at": "2026-01-
|
|
5435
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065879+00:00"
|
|
5271
5436
|
}
|
|
5272
5437
|
},
|
|
5273
5438
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5320,7 +5485,7 @@
|
|
|
5320
5485
|
},
|
|
5321
5486
|
"x-original-maxLength": 128,
|
|
5322
5487
|
"x-reconciled-from-discovery": true,
|
|
5323
|
-
"x-reconciled-at": "2026-01-
|
|
5488
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065884+00:00"
|
|
5324
5489
|
},
|
|
5325
5490
|
"namespace": {
|
|
5326
5491
|
"type": "string",
|
|
@@ -5345,7 +5510,7 @@
|
|
|
5345
5510
|
},
|
|
5346
5511
|
"x-original-maxLength": 64,
|
|
5347
5512
|
"x-reconciled-from-discovery": true,
|
|
5348
|
-
"x-reconciled-at": "2026-01-
|
|
5513
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065889+00:00"
|
|
5349
5514
|
},
|
|
5350
5515
|
"tenant": {
|
|
5351
5516
|
"type": "string",
|
|
@@ -5372,7 +5537,7 @@
|
|
|
5372
5537
|
"x-field-mutability": "read-only",
|
|
5373
5538
|
"x-original-maxLength": 64,
|
|
5374
5539
|
"x-reconciled-from-discovery": true,
|
|
5375
|
-
"x-reconciled-at": "2026-01-
|
|
5540
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065893+00:00"
|
|
5376
5541
|
}
|
|
5377
5542
|
},
|
|
5378
5543
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5535,7 +5700,7 @@
|
|
|
5535
5700
|
},
|
|
5536
5701
|
"x-original-maxLength": 1024,
|
|
5537
5702
|
"x-reconciled-from-discovery": true,
|
|
5538
|
-
"x-reconciled-at": "2026-01-
|
|
5703
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065910+00:00"
|
|
5539
5704
|
},
|
|
5540
5705
|
"namespace": {
|
|
5541
5706
|
"type": "string",
|
|
@@ -5554,7 +5719,7 @@
|
|
|
5554
5719
|
},
|
|
5555
5720
|
"x-original-maxLength": 1024,
|
|
5556
5721
|
"x-reconciled-from-discovery": true,
|
|
5557
|
-
"x-reconciled-at": "2026-01-
|
|
5722
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065914+00:00"
|
|
5558
5723
|
}
|
|
5559
5724
|
},
|
|
5560
5725
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5652,7 +5817,7 @@
|
|
|
5652
5817
|
"maxLength": 17,
|
|
5653
5818
|
"minLength": 17,
|
|
5654
5819
|
"x-reconciled-from-discovery": true,
|
|
5655
|
-
"x-reconciled-at": "2026-01-
|
|
5820
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065929+00:00"
|
|
5656
5821
|
},
|
|
5657
5822
|
"system_metadata": {
|
|
5658
5823
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -5841,7 +6006,7 @@
|
|
|
5841
6006
|
},
|
|
5842
6007
|
"x-original-maxLength": 1024,
|
|
5843
6008
|
"x-reconciled-from-discovery": true,
|
|
5844
|
-
"x-reconciled-at": "2026-01-
|
|
6009
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065945+00:00"
|
|
5845
6010
|
},
|
|
5846
6011
|
"disabled": {
|
|
5847
6012
|
"type": "boolean",
|
|
@@ -5891,7 +6056,7 @@
|
|
|
5891
6056
|
},
|
|
5892
6057
|
"x-original-maxLength": 1024,
|
|
5893
6058
|
"x-reconciled-from-discovery": true,
|
|
5894
|
-
"x-reconciled-at": "2026-01-
|
|
6059
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065956+00:00"
|
|
5895
6060
|
},
|
|
5896
6061
|
"namespace": {
|
|
5897
6062
|
"type": "string",
|
|
@@ -5910,7 +6075,7 @@
|
|
|
5910
6075
|
},
|
|
5911
6076
|
"x-original-maxLength": 1024,
|
|
5912
6077
|
"x-reconciled-from-discovery": true,
|
|
5913
|
-
"x-reconciled-at": "2026-01-
|
|
6078
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065960+00:00"
|
|
5914
6079
|
},
|
|
5915
6080
|
"owner_view": {
|
|
5916
6081
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -5951,7 +6116,7 @@
|
|
|
5951
6116
|
"x-field-mutability": "read-only",
|
|
5952
6117
|
"x-original-maxLength": 1024,
|
|
5953
6118
|
"x-reconciled-from-discovery": true,
|
|
5954
|
-
"x-reconciled-at": "2026-01-
|
|
6119
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065968+00:00"
|
|
5955
6120
|
},
|
|
5956
6121
|
"uid": {
|
|
5957
6122
|
"type": "string",
|
|
@@ -5972,7 +6137,7 @@
|
|
|
5972
6137
|
"x-original-maxLength": 1024,
|
|
5973
6138
|
"format": "uuid",
|
|
5974
6139
|
"x-reconciled-from-discovery": true,
|
|
5975
|
-
"x-reconciled-at": "2026-01-
|
|
6140
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065973+00:00"
|
|
5976
6141
|
}
|
|
5977
6142
|
},
|
|
5978
6143
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6106,7 +6271,7 @@
|
|
|
6106
6271
|
"maxLength": 16,
|
|
6107
6272
|
"minLength": 7,
|
|
6108
6273
|
"x-reconciled-from-discovery": true,
|
|
6109
|
-
"x-reconciled-at": "2026-01-
|
|
6274
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065984+00:00"
|
|
6110
6275
|
},
|
|
6111
6276
|
"value": {
|
|
6112
6277
|
"type": "array",
|
|
@@ -6125,7 +6290,7 @@
|
|
|
6125
6290
|
"maxLength": 15,
|
|
6126
6291
|
"minLength": 3,
|
|
6127
6292
|
"x-reconciled-from-discovery": true,
|
|
6128
|
-
"x-reconciled-at": "2026-01-
|
|
6293
|
+
"x-reconciled-at": "2026-01-05T18:30:11.065989+00:00"
|
|
6129
6294
|
}
|
|
6130
6295
|
},
|
|
6131
6296
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6248,7 +6413,7 @@
|
|
|
6248
6413
|
},
|
|
6249
6414
|
"x-original-maxLength": 1024,
|
|
6250
6415
|
"x-reconciled-from-discovery": true,
|
|
6251
|
-
"x-reconciled-at": "2026-01-
|
|
6416
|
+
"x-reconciled-at": "2026-01-05T18:30:11.066000+00:00"
|
|
6252
6417
|
},
|
|
6253
6418
|
"range": {
|
|
6254
6419
|
"type": "string",
|
|
@@ -7426,7 +7591,7 @@
|
|
|
7426
7591
|
},
|
|
7427
7592
|
"x-original-maxLength": 256,
|
|
7428
7593
|
"x-reconciled-from-discovery": true,
|
|
7429
|
-
"x-reconciled-at": "2026-01-
|
|
7594
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960535+00:00"
|
|
7430
7595
|
},
|
|
7431
7596
|
"presence": {
|
|
7432
7597
|
"type": "boolean",
|
|
@@ -7974,7 +8139,7 @@
|
|
|
7974
8139
|
},
|
|
7975
8140
|
"x-original-maxLength": 1024,
|
|
7976
8141
|
"x-reconciled-from-discovery": true,
|
|
7977
|
-
"x-reconciled-at": "2026-01-
|
|
8142
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960606+00:00"
|
|
7978
8143
|
},
|
|
7979
8144
|
"store_provider": {
|
|
7980
8145
|
"type": "string",
|
|
@@ -8032,7 +8197,7 @@
|
|
|
8032
8197
|
},
|
|
8033
8198
|
"x-original-maxLength": 1024,
|
|
8034
8199
|
"x-reconciled-from-discovery": true,
|
|
8035
|
-
"x-reconciled-at": "2026-01-
|
|
8200
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960612+00:00"
|
|
8036
8201
|
},
|
|
8037
8202
|
"url": {
|
|
8038
8203
|
"type": "string",
|
|
@@ -8239,7 +8404,7 @@
|
|
|
8239
8404
|
},
|
|
8240
8405
|
"x-original-maxLength": 1024,
|
|
8241
8406
|
"x-reconciled-from-discovery": true,
|
|
8242
|
-
"x-reconciled-at": "2026-01-
|
|
8407
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960654+00:00"
|
|
8243
8408
|
},
|
|
8244
8409
|
"name": {
|
|
8245
8410
|
"type": "string",
|
|
@@ -8258,7 +8423,7 @@
|
|
|
8258
8423
|
},
|
|
8259
8424
|
"x-original-maxLength": 1024,
|
|
8260
8425
|
"x-reconciled-from-discovery": true,
|
|
8261
|
-
"x-reconciled-at": "2026-01-
|
|
8426
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960658+00:00"
|
|
8262
8427
|
},
|
|
8263
8428
|
"namespace": {
|
|
8264
8429
|
"type": "string",
|
|
@@ -8277,7 +8442,7 @@
|
|
|
8277
8442
|
},
|
|
8278
8443
|
"x-original-maxLength": 1024,
|
|
8279
8444
|
"x-reconciled-from-discovery": true,
|
|
8280
|
-
"x-reconciled-at": "2026-01-
|
|
8445
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960662+00:00"
|
|
8281
8446
|
}
|
|
8282
8447
|
},
|
|
8283
8448
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8426,7 +8591,7 @@
|
|
|
8426
8591
|
},
|
|
8427
8592
|
"x-original-maxLength": 1024,
|
|
8428
8593
|
"x-reconciled-from-discovery": true,
|
|
8429
|
-
"x-reconciled-at": "2026-01-
|
|
8594
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960789+00:00"
|
|
8430
8595
|
},
|
|
8431
8596
|
"disable_ocsp_stapling": {
|
|
8432
8597
|
"$ref": "#/components/schemas/ioschemaEmpty"
|
|
@@ -8499,7 +8664,7 @@
|
|
|
8499
8664
|
},
|
|
8500
8665
|
"x-original-maxLength": 1024,
|
|
8501
8666
|
"x-reconciled-from-discovery": true,
|
|
8502
|
-
"x-reconciled-at": "2026-01-
|
|
8667
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960809+00:00"
|
|
8503
8668
|
},
|
|
8504
8669
|
"location": {
|
|
8505
8670
|
"type": "string",
|
|
@@ -8516,7 +8681,7 @@
|
|
|
8516
8681
|
},
|
|
8517
8682
|
"x-original-maxLength": 1024,
|
|
8518
8683
|
"x-reconciled-from-discovery": true,
|
|
8519
|
-
"x-reconciled-at": "2026-01-
|
|
8684
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960814+00:00"
|
|
8520
8685
|
},
|
|
8521
8686
|
"provider": {
|
|
8522
8687
|
"type": "string",
|
|
@@ -8533,7 +8698,7 @@
|
|
|
8533
8698
|
},
|
|
8534
8699
|
"x-original-maxLength": 1024,
|
|
8535
8700
|
"x-reconciled-from-discovery": true,
|
|
8536
|
-
"x-reconciled-at": "2026-01-
|
|
8701
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960818+00:00"
|
|
8537
8702
|
},
|
|
8538
8703
|
"secret_encoding": {
|
|
8539
8704
|
"$ref": "#/components/schemas/schemaSecretEncodingType"
|
|
@@ -8555,7 +8720,7 @@
|
|
|
8555
8720
|
"maxLength": 1,
|
|
8556
8721
|
"minLength": 1,
|
|
8557
8722
|
"x-reconciled-from-discovery": true,
|
|
8558
|
-
"x-reconciled-at": "2026-01-
|
|
8723
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960825+00:00"
|
|
8559
8724
|
}
|
|
8560
8725
|
},
|
|
8561
8726
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8594,7 +8759,7 @@
|
|
|
8594
8759
|
},
|
|
8595
8760
|
"x-original-maxLength": 1024,
|
|
8596
8761
|
"x-reconciled-from-discovery": true,
|
|
8597
|
-
"x-reconciled-at": "2026-01-
|
|
8762
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960848+00:00"
|
|
8598
8763
|
}
|
|
8599
8764
|
},
|
|
8600
8765
|
"x-f5xc-minimum-configuration": {
|
|
@@ -9909,7 +10074,7 @@
|
|
|
9909
10074
|
},
|
|
9910
10075
|
"x-original-maxLength": 256,
|
|
9911
10076
|
"x-reconciled-from-discovery": true,
|
|
9912
|
-
"x-reconciled-at": "2026-01-
|
|
10077
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960971+00:00"
|
|
9913
10078
|
},
|
|
9914
10079
|
"volume_name": {
|
|
9915
10080
|
"type": "string",
|
|
@@ -10156,7 +10321,7 @@
|
|
|
10156
10321
|
},
|
|
10157
10322
|
"x-original-maxLength": 256,
|
|
10158
10323
|
"x-reconciled-from-discovery": true,
|
|
10159
|
-
"x-reconciled-at": "2026-01-
|
|
10324
|
+
"x-reconciled-at": "2026-01-05T18:30:13.960991+00:00"
|
|
10160
10325
|
},
|
|
10161
10326
|
"readiness_check": {
|
|
10162
10327
|
"$ref": "#/components/schemas/workloadHealthCheckType"
|
|
@@ -10275,7 +10440,7 @@
|
|
|
10275
10440
|
},
|
|
10276
10441
|
"x-original-maxLength": 1024,
|
|
10277
10442
|
"x-reconciled-from-discovery": true,
|
|
10278
|
-
"x-reconciled-at": "2026-01-
|
|
10443
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961005+00:00"
|
|
10279
10444
|
},
|
|
10280
10445
|
"namespace": {
|
|
10281
10446
|
"type": "string",
|
|
@@ -10294,7 +10459,7 @@
|
|
|
10294
10459
|
},
|
|
10295
10460
|
"x-original-maxLength": 1024,
|
|
10296
10461
|
"x-reconciled-from-discovery": true,
|
|
10297
|
-
"x-reconciled-at": "2026-01-
|
|
10462
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961009+00:00"
|
|
10298
10463
|
}
|
|
10299
10464
|
},
|
|
10300
10465
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10633,7 +10798,7 @@
|
|
|
10633
10798
|
},
|
|
10634
10799
|
"x-original-maxLength": 256,
|
|
10635
10800
|
"x-reconciled-from-discovery": true,
|
|
10636
|
-
"x-reconciled-at": "2026-01-
|
|
10801
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961042+00:00"
|
|
10637
10802
|
},
|
|
10638
10803
|
"value": {
|
|
10639
10804
|
"type": "string",
|
|
@@ -10658,7 +10823,7 @@
|
|
|
10658
10823
|
},
|
|
10659
10824
|
"x-original-maxLength": 256,
|
|
10660
10825
|
"x-reconciled-from-discovery": true,
|
|
10661
|
-
"x-reconciled-at": "2026-01-
|
|
10826
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961048+00:00"
|
|
10662
10827
|
}
|
|
10663
10828
|
},
|
|
10664
10829
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10711,7 +10876,7 @@
|
|
|
10711
10876
|
},
|
|
10712
10877
|
"x-original-maxLength": 1024,
|
|
10713
10878
|
"x-reconciled-from-discovery": true,
|
|
10714
|
-
"x-reconciled-at": "2026-01-
|
|
10879
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961055+00:00"
|
|
10715
10880
|
}
|
|
10716
10881
|
},
|
|
10717
10882
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10875,7 +11040,7 @@
|
|
|
10875
11040
|
"maxLength": 17,
|
|
10876
11041
|
"minLength": 17,
|
|
10877
11042
|
"x-reconciled-from-discovery": true,
|
|
10878
|
-
"x-reconciled-at": "2026-01-
|
|
11043
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961072+00:00"
|
|
10879
11044
|
},
|
|
10880
11045
|
"system_metadata": {
|
|
10881
11046
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -11440,7 +11605,7 @@
|
|
|
11440
11605
|
},
|
|
11441
11606
|
"x-original-maxLength": 256,
|
|
11442
11607
|
"x-reconciled-from-discovery": true,
|
|
11443
|
-
"x-reconciled-at": "2026-01-
|
|
11608
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961113+00:00"
|
|
11444
11609
|
},
|
|
11445
11610
|
"public": {
|
|
11446
11611
|
"$ref": "#/components/schemas/ioschemaEmpty"
|
|
@@ -11649,7 +11814,7 @@
|
|
|
11649
11814
|
},
|
|
11650
11815
|
"x-original-maxLength": 1024,
|
|
11651
11816
|
"x-reconciled-from-discovery": true,
|
|
11652
|
-
"x-reconciled-at": "2026-01-
|
|
11817
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961133+00:00"
|
|
11653
11818
|
},
|
|
11654
11819
|
"disabled": {
|
|
11655
11820
|
"type": "boolean",
|
|
@@ -11699,7 +11864,7 @@
|
|
|
11699
11864
|
},
|
|
11700
11865
|
"x-original-maxLength": 1024,
|
|
11701
11866
|
"x-reconciled-from-discovery": true,
|
|
11702
|
-
"x-reconciled-at": "2026-01-
|
|
11867
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961143+00:00"
|
|
11703
11868
|
},
|
|
11704
11869
|
"namespace": {
|
|
11705
11870
|
"type": "string",
|
|
@@ -11718,7 +11883,7 @@
|
|
|
11718
11883
|
},
|
|
11719
11884
|
"x-original-maxLength": 1024,
|
|
11720
11885
|
"x-reconciled-from-discovery": true,
|
|
11721
|
-
"x-reconciled-at": "2026-01-
|
|
11886
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961147+00:00"
|
|
11722
11887
|
},
|
|
11723
11888
|
"owner_view": {
|
|
11724
11889
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -11759,7 +11924,7 @@
|
|
|
11759
11924
|
"x-field-mutability": "read-only",
|
|
11760
11925
|
"x-original-maxLength": 1024,
|
|
11761
11926
|
"x-reconciled-from-discovery": true,
|
|
11762
|
-
"x-reconciled-at": "2026-01-
|
|
11927
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961155+00:00"
|
|
11763
11928
|
},
|
|
11764
11929
|
"uid": {
|
|
11765
11930
|
"type": "string",
|
|
@@ -11780,7 +11945,7 @@
|
|
|
11780
11945
|
"x-original-maxLength": 1024,
|
|
11781
11946
|
"format": "uuid",
|
|
11782
11947
|
"x-reconciled-from-discovery": true,
|
|
11783
|
-
"x-reconciled-at": "2026-01-
|
|
11948
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961161+00:00"
|
|
11784
11949
|
}
|
|
11785
11950
|
},
|
|
11786
11951
|
"x-f5xc-minimum-configuration": {
|
|
@@ -12062,7 +12227,7 @@
|
|
|
12062
12227
|
},
|
|
12063
12228
|
"x-original-maxLength": 1024,
|
|
12064
12229
|
"x-reconciled-from-discovery": true,
|
|
12065
|
-
"x-reconciled-at": "2026-01-
|
|
12230
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961180+00:00"
|
|
12066
12231
|
},
|
|
12067
12232
|
"persistent_volume": {
|
|
12068
12233
|
"$ref": "#/components/schemas/workloadPersistentStorageVolumeType"
|
|
@@ -12111,7 +12276,7 @@
|
|
|
12111
12276
|
},
|
|
12112
12277
|
"x-original-maxLength": 1024,
|
|
12113
12278
|
"x-reconciled-from-discovery": true,
|
|
12114
|
-
"x-reconciled-at": "2026-01-
|
|
12279
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961186+00:00"
|
|
12115
12280
|
},
|
|
12116
12281
|
"num": {
|
|
12117
12282
|
"type": "integer",
|
|
@@ -12269,7 +12434,7 @@
|
|
|
12269
12434
|
},
|
|
12270
12435
|
"x-original-maxLength": 1024,
|
|
12271
12436
|
"x-reconciled-from-discovery": true,
|
|
12272
|
-
"x-reconciled-at": "2026-01-
|
|
12437
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961199+00:00"
|
|
12273
12438
|
}
|
|
12274
12439
|
},
|
|
12275
12440
|
"x-f5xc-minimum-configuration": {
|
|
@@ -12688,7 +12853,7 @@
|
|
|
12688
12853
|
},
|
|
12689
12854
|
"x-original-maxLength": 1024,
|
|
12690
12855
|
"x-reconciled-from-discovery": true,
|
|
12691
|
-
"x-reconciled-at": "2026-01-
|
|
12856
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961240+00:00"
|
|
12692
12857
|
},
|
|
12693
12858
|
"persistent_volume": {
|
|
12694
12859
|
"$ref": "#/components/schemas/workloadPersistentStorageVolumeType"
|
|
@@ -12994,7 +13159,7 @@
|
|
|
12994
13159
|
},
|
|
12995
13160
|
"x-original-maxLength": 1024,
|
|
12996
13161
|
"x-reconciled-from-discovery": true,
|
|
12997
|
-
"x-reconciled-at": "2026-01-
|
|
13162
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961263+00:00"
|
|
12998
13163
|
},
|
|
12999
13164
|
"range": {
|
|
13000
13165
|
"type": "string",
|
|
@@ -13185,7 +13350,7 @@
|
|
|
13185
13350
|
"maxLength": 16,
|
|
13186
13351
|
"minLength": 7,
|
|
13187
13352
|
"x-reconciled-from-discovery": true,
|
|
13188
|
-
"x-reconciled-at": "2026-01-
|
|
13353
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961276+00:00"
|
|
13189
13354
|
},
|
|
13190
13355
|
"value": {
|
|
13191
13356
|
"type": "array",
|
|
@@ -13204,7 +13369,7 @@
|
|
|
13204
13369
|
"maxLength": 15,
|
|
13205
13370
|
"minLength": 3,
|
|
13206
13371
|
"x-reconciled-from-discovery": true,
|
|
13207
|
-
"x-reconciled-at": "2026-01-
|
|
13372
|
+
"x-reconciled-at": "2026-01-05T18:30:13.961282+00:00"
|
|
13208
13373
|
}
|
|
13209
13374
|
},
|
|
13210
13375
|
"x-f5xc-minimum-configuration": {
|
|
@@ -13340,7 +13505,7 @@
|
|
|
13340
13505
|
"readOnly": true,
|
|
13341
13506
|
"x-original-maxLength": 1024,
|
|
13342
13507
|
"x-reconciled-from-discovery": true,
|
|
13343
|
-
"x-reconciled-at": "2026-01-
|
|
13508
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288113+00:00"
|
|
13344
13509
|
},
|
|
13345
13510
|
"name": {
|
|
13346
13511
|
"type": "string",
|
|
@@ -13359,7 +13524,7 @@
|
|
|
13359
13524
|
},
|
|
13360
13525
|
"x-original-maxLength": 1024,
|
|
13361
13526
|
"x-reconciled-from-discovery": true,
|
|
13362
|
-
"x-reconciled-at": "2026-01-
|
|
13527
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288117+00:00"
|
|
13363
13528
|
},
|
|
13364
13529
|
"namespace": {
|
|
13365
13530
|
"type": "string",
|
|
@@ -13378,7 +13543,7 @@
|
|
|
13378
13543
|
},
|
|
13379
13544
|
"x-original-maxLength": 1024,
|
|
13380
13545
|
"x-reconciled-from-discovery": true,
|
|
13381
|
-
"x-reconciled-at": "2026-01-
|
|
13546
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288121+00:00"
|
|
13382
13547
|
},
|
|
13383
13548
|
"tenant": {
|
|
13384
13549
|
"type": "string",
|
|
@@ -13399,7 +13564,7 @@
|
|
|
13399
13564
|
"x-field-mutability": "read-only",
|
|
13400
13565
|
"x-original-maxLength": 1024,
|
|
13401
13566
|
"x-reconciled-from-discovery": true,
|
|
13402
|
-
"x-reconciled-at": "2026-01-
|
|
13567
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288125+00:00"
|
|
13403
13568
|
},
|
|
13404
13569
|
"uid": {
|
|
13405
13570
|
"type": "string",
|
|
@@ -13421,7 +13586,7 @@
|
|
|
13421
13586
|
"x-original-maxLength": 1024,
|
|
13422
13587
|
"format": "uuid",
|
|
13423
13588
|
"x-reconciled-from-discovery": true,
|
|
13424
|
-
"x-reconciled-at": "2026-01-
|
|
13589
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288131+00:00"
|
|
13425
13590
|
}
|
|
13426
13591
|
},
|
|
13427
13592
|
"x-f5xc-minimum-configuration": {
|
|
@@ -13620,7 +13785,7 @@
|
|
|
13620
13785
|
},
|
|
13621
13786
|
"x-original-maxLength": 1024,
|
|
13622
13787
|
"x-reconciled-from-discovery": true,
|
|
13623
|
-
"x-reconciled-at": "2026-01-
|
|
13788
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288240+00:00"
|
|
13624
13789
|
},
|
|
13625
13790
|
"namespace": {
|
|
13626
13791
|
"type": "string",
|
|
@@ -13639,7 +13804,7 @@
|
|
|
13639
13804
|
},
|
|
13640
13805
|
"x-original-maxLength": 1024,
|
|
13641
13806
|
"x-reconciled-from-discovery": true,
|
|
13642
|
-
"x-reconciled-at": "2026-01-
|
|
13807
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288245+00:00"
|
|
13643
13808
|
}
|
|
13644
13809
|
},
|
|
13645
13810
|
"x-f5xc-minimum-configuration": {
|
|
@@ -13737,7 +13902,7 @@
|
|
|
13737
13902
|
"maxLength": 17,
|
|
13738
13903
|
"minLength": 17,
|
|
13739
13904
|
"x-reconciled-from-discovery": true,
|
|
13740
|
-
"x-reconciled-at": "2026-01-
|
|
13905
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288259+00:00"
|
|
13741
13906
|
},
|
|
13742
13907
|
"system_metadata": {
|
|
13743
13908
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -13960,7 +14125,7 @@
|
|
|
13960
14125
|
},
|
|
13961
14126
|
"x-original-maxLength": 1024,
|
|
13962
14127
|
"x-reconciled-from-discovery": true,
|
|
13963
|
-
"x-reconciled-at": "2026-01-
|
|
14128
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288276+00:00"
|
|
13964
14129
|
},
|
|
13965
14130
|
"disabled": {
|
|
13966
14131
|
"type": "boolean",
|
|
@@ -14010,7 +14175,7 @@
|
|
|
14010
14175
|
},
|
|
14011
14176
|
"x-original-maxLength": 1024,
|
|
14012
14177
|
"x-reconciled-from-discovery": true,
|
|
14013
|
-
"x-reconciled-at": "2026-01-
|
|
14178
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288286+00:00"
|
|
14014
14179
|
},
|
|
14015
14180
|
"namespace": {
|
|
14016
14181
|
"type": "string",
|
|
@@ -14029,7 +14194,7 @@
|
|
|
14029
14194
|
},
|
|
14030
14195
|
"x-original-maxLength": 1024,
|
|
14031
14196
|
"x-reconciled-from-discovery": true,
|
|
14032
|
-
"x-reconciled-at": "2026-01-
|
|
14197
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288290+00:00"
|
|
14033
14198
|
},
|
|
14034
14199
|
"owner_view": {
|
|
14035
14200
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -14070,7 +14235,7 @@
|
|
|
14070
14235
|
"x-field-mutability": "read-only",
|
|
14071
14236
|
"x-original-maxLength": 1024,
|
|
14072
14237
|
"x-reconciled-from-discovery": true,
|
|
14073
|
-
"x-reconciled-at": "2026-01-
|
|
14238
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288298+00:00"
|
|
14074
14239
|
},
|
|
14075
14240
|
"uid": {
|
|
14076
14241
|
"type": "string",
|
|
@@ -14091,7 +14256,7 @@
|
|
|
14091
14256
|
"x-original-maxLength": 1024,
|
|
14092
14257
|
"format": "uuid",
|
|
14093
14258
|
"x-reconciled-from-discovery": true,
|
|
14094
|
-
"x-reconciled-at": "2026-01-
|
|
14259
|
+
"x-reconciled-at": "2026-01-05T18:30:14.288303+00:00"
|
|
14095
14260
|
}
|
|
14096
14261
|
},
|
|
14097
14262
|
"x-f5xc-minimum-configuration": {
|