@robinmordasiewicz/f5xc-api-mcp 2.0.5-2601050335 → 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 +162 -3
- package/dist/generator/domain-metadata.d.ts.map +1 -1
- package/dist/generator/domain-metadata.js +263 -20
- package/dist/generator/domain-metadata.js.map +1 -1
- package/dist/generator/naming/acronyms.d.ts +9 -2
- package/dist/generator/naming/acronyms.d.ts.map +1 -1
- package/dist/generator/naming/acronyms.js +35 -129
- package/dist/generator/naming/acronyms.js.map +1 -1
- package/dist/generator/naming/index.d.ts +1 -1
- package/dist/generator/naming/index.d.ts.map +1 -1
- package/dist/generator/naming/index.js +1 -1
- package/dist/generator/naming/index.js.map +1 -1
- package/dist/prompts/error-resolution.d.ts +7 -24
- package/dist/prompts/error-resolution.d.ts.map +1 -1
- package/dist/prompts/error-resolution.js +94 -296
- package/dist/prompts/error-resolution.js.map +1 -1
- package/dist/prompts/index.d.ts +2 -2
- package/dist/prompts/index.d.ts.map +1 -1
- package/dist/prompts/index.js +3 -3
- package/dist/prompts/index.js.map +1 -1
- package/dist/prompts/workflows.d.ts +8 -16
- package/dist/prompts/workflows.d.ts.map +1 -1
- package/dist/prompts/workflows.js +100 -306
- package/dist/prompts/workflows.js.map +1 -1
- package/dist/server.d.ts.map +1 -1
- package/dist/server.js +9 -7
- package/dist/server.js.map +1 -1
- package/dist/tools/discovery/best-practices.d.ts +1 -0
- package/dist/tools/discovery/best-practices.d.ts.map +1 -1
- package/dist/tools/discovery/best-practices.js +135 -226
- package/dist/tools/discovery/best-practices.js.map +1 -1
- package/dist/tools/discovery/cost-estimator.d.ts.map +1 -1
- package/dist/tools/discovery/cost-estimator.js +16 -4
- package/dist/tools/discovery/cost-estimator.js.map +1 -1
- package/dist/tools/generated/dependency-graph.json +1 -1
- package/dist/version.d.ts +2 -2
- package/dist/version.d.ts.map +1 -1
- package/dist/version.js +2 -2
- package/dist/version.js.map +1 -1
- 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 +1758 -5
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Bot And Threat Defense",
|
|
5
5
|
"description": "Behavioral fingerprinting identifies automated clients through request patterns, mouse movements, and JavaScript execution. Threat categories classify attacks by type including credential stuffing, scraping, and denial-of-service. Defense instances apply per-namespace policies with configurable sensitivity thresholds and challenge actions. Provisioning handles integration credentials for third-party threat intelligence feeds.",
|
|
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": "Threat classification with behavioral analysis and signature matching. Automated blocking for malicious traffic patterns.",
|
|
16
|
-
"x-f5xc-cli-domain": "bot_and_threat_defense"
|
|
16
|
+
"x-f5xc-cli-domain": "bot_and_threat_defense",
|
|
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": "Bot Defense App Infrastructure.",
|
|
@@ -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": "Bot Defense App Infrastructure.",
|
|
@@ -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": "Bot Defense App Infrastructure.",
|
|
@@ -945,6 +1016,13 @@
|
|
|
945
1016
|
"latency": "low",
|
|
946
1017
|
"resource_usage": "low"
|
|
947
1018
|
}
|
|
1019
|
+
},
|
|
1020
|
+
"x-f5xc-discovered-response-time": {
|
|
1021
|
+
"p50_ms": 200,
|
|
1022
|
+
"p95_ms": 800,
|
|
1023
|
+
"p99_ms": 2000,
|
|
1024
|
+
"sample_count": 0,
|
|
1025
|
+
"source": "estimate"
|
|
948
1026
|
}
|
|
949
1027
|
},
|
|
950
1028
|
"delete": {
|
|
@@ -1164,6 +1242,13 @@
|
|
|
1164
1242
|
"latency": "high",
|
|
1165
1243
|
"resource_usage": "moderate"
|
|
1166
1244
|
}
|
|
1245
|
+
},
|
|
1246
|
+
"x-f5xc-discovered-response-time": {
|
|
1247
|
+
"p50_ms": 500,
|
|
1248
|
+
"p95_ms": 1500,
|
|
1249
|
+
"p99_ms": 4000,
|
|
1250
|
+
"sample_count": 0,
|
|
1251
|
+
"source": "estimate"
|
|
1167
1252
|
}
|
|
1168
1253
|
},
|
|
1169
1254
|
"x-displayname": "Bot Defense App Infrastructure.",
|
|
@@ -1391,6 +1476,13 @@
|
|
|
1391
1476
|
"latency": "moderate",
|
|
1392
1477
|
"resource_usage": "moderate"
|
|
1393
1478
|
}
|
|
1479
|
+
},
|
|
1480
|
+
"x-f5xc-discovered-response-time": {
|
|
1481
|
+
"p50_ms": 200,
|
|
1482
|
+
"p95_ms": 800,
|
|
1483
|
+
"p99_ms": 2000,
|
|
1484
|
+
"sample_count": 0,
|
|
1485
|
+
"source": "estimate"
|
|
1394
1486
|
}
|
|
1395
1487
|
},
|
|
1396
1488
|
"x-displayname": "Shape Bot Defense Instance.",
|
|
@@ -1609,6 +1701,13 @@
|
|
|
1609
1701
|
"latency": "low",
|
|
1610
1702
|
"resource_usage": "low"
|
|
1611
1703
|
}
|
|
1704
|
+
},
|
|
1705
|
+
"x-f5xc-discovered-response-time": {
|
|
1706
|
+
"p50_ms": 200,
|
|
1707
|
+
"p95_ms": 800,
|
|
1708
|
+
"p99_ms": 2000,
|
|
1709
|
+
"sample_count": 0,
|
|
1710
|
+
"source": "estimate"
|
|
1612
1711
|
}
|
|
1613
1712
|
},
|
|
1614
1713
|
"x-displayname": "Shape Bot Defense Instance.",
|
|
@@ -1823,6 +1922,13 @@
|
|
|
1823
1922
|
"latency": "low",
|
|
1824
1923
|
"resource_usage": "low"
|
|
1825
1924
|
}
|
|
1925
|
+
},
|
|
1926
|
+
"x-f5xc-discovered-response-time": {
|
|
1927
|
+
"p50_ms": 1000,
|
|
1928
|
+
"p95_ms": 3000,
|
|
1929
|
+
"p99_ms": 8000,
|
|
1930
|
+
"sample_count": 0,
|
|
1931
|
+
"source": "estimate"
|
|
1826
1932
|
}
|
|
1827
1933
|
},
|
|
1828
1934
|
"x-displayname": "TPM API Key.",
|
|
@@ -2045,6 +2151,13 @@
|
|
|
2045
2151
|
"latency": "low",
|
|
2046
2152
|
"resource_usage": "low"
|
|
2047
2153
|
}
|
|
2154
|
+
},
|
|
2155
|
+
"x-f5xc-discovered-response-time": {
|
|
2156
|
+
"p50_ms": 800,
|
|
2157
|
+
"p95_ms": 2500,
|
|
2158
|
+
"p99_ms": 6000,
|
|
2159
|
+
"sample_count": 0,
|
|
2160
|
+
"source": "estimate"
|
|
2048
2161
|
}
|
|
2049
2162
|
},
|
|
2050
2163
|
"x-displayname": "TPM API Key.",
|
|
@@ -2272,6 +2385,13 @@
|
|
|
2272
2385
|
"latency": "moderate",
|
|
2273
2386
|
"resource_usage": "moderate"
|
|
2274
2387
|
}
|
|
2388
|
+
},
|
|
2389
|
+
"x-f5xc-discovered-response-time": {
|
|
2390
|
+
"p50_ms": 200,
|
|
2391
|
+
"p95_ms": 800,
|
|
2392
|
+
"p99_ms": 2000,
|
|
2393
|
+
"sample_count": 0,
|
|
2394
|
+
"source": "estimate"
|
|
2275
2395
|
}
|
|
2276
2396
|
},
|
|
2277
2397
|
"x-displayname": "TPM API Key.",
|
|
@@ -2493,6 +2613,13 @@
|
|
|
2493
2613
|
"latency": "low",
|
|
2494
2614
|
"resource_usage": "low"
|
|
2495
2615
|
}
|
|
2616
|
+
},
|
|
2617
|
+
"x-f5xc-discovered-response-time": {
|
|
2618
|
+
"p50_ms": 200,
|
|
2619
|
+
"p95_ms": 800,
|
|
2620
|
+
"p99_ms": 2000,
|
|
2621
|
+
"sample_count": 0,
|
|
2622
|
+
"source": "estimate"
|
|
2496
2623
|
}
|
|
2497
2624
|
},
|
|
2498
2625
|
"x-displayname": "TPM API Key.",
|
|
@@ -2707,6 +2834,13 @@
|
|
|
2707
2834
|
"latency": "low",
|
|
2708
2835
|
"resource_usage": "low"
|
|
2709
2836
|
}
|
|
2837
|
+
},
|
|
2838
|
+
"x-f5xc-discovered-response-time": {
|
|
2839
|
+
"p50_ms": 1000,
|
|
2840
|
+
"p95_ms": 3000,
|
|
2841
|
+
"p99_ms": 8000,
|
|
2842
|
+
"sample_count": 0,
|
|
2843
|
+
"source": "estimate"
|
|
2710
2844
|
}
|
|
2711
2845
|
},
|
|
2712
2846
|
"x-displayname": "TPM Category.",
|
|
@@ -2929,6 +3063,13 @@
|
|
|
2929
3063
|
"latency": "low",
|
|
2930
3064
|
"resource_usage": "low"
|
|
2931
3065
|
}
|
|
3066
|
+
},
|
|
3067
|
+
"x-f5xc-discovered-response-time": {
|
|
3068
|
+
"p50_ms": 800,
|
|
3069
|
+
"p95_ms": 2500,
|
|
3070
|
+
"p99_ms": 6000,
|
|
3071
|
+
"sample_count": 0,
|
|
3072
|
+
"source": "estimate"
|
|
2932
3073
|
}
|
|
2933
3074
|
},
|
|
2934
3075
|
"x-displayname": "TPM Category.",
|
|
@@ -3156,6 +3297,13 @@
|
|
|
3156
3297
|
"latency": "moderate",
|
|
3157
3298
|
"resource_usage": "moderate"
|
|
3158
3299
|
}
|
|
3300
|
+
},
|
|
3301
|
+
"x-f5xc-discovered-response-time": {
|
|
3302
|
+
"p50_ms": 200,
|
|
3303
|
+
"p95_ms": 800,
|
|
3304
|
+
"p99_ms": 2000,
|
|
3305
|
+
"sample_count": 0,
|
|
3306
|
+
"source": "estimate"
|
|
3159
3307
|
}
|
|
3160
3308
|
},
|
|
3161
3309
|
"x-displayname": "TPM Category.",
|
|
@@ -3377,6 +3525,13 @@
|
|
|
3377
3525
|
"latency": "low",
|
|
3378
3526
|
"resource_usage": "low"
|
|
3379
3527
|
}
|
|
3528
|
+
},
|
|
3529
|
+
"x-f5xc-discovered-response-time": {
|
|
3530
|
+
"p50_ms": 200,
|
|
3531
|
+
"p95_ms": 800,
|
|
3532
|
+
"p99_ms": 2000,
|
|
3533
|
+
"sample_count": 0,
|
|
3534
|
+
"source": "estimate"
|
|
3380
3535
|
}
|
|
3381
3536
|
},
|
|
3382
3537
|
"x-displayname": "TPM Category.",
|
|
@@ -3591,6 +3746,13 @@
|
|
|
3591
3746
|
"latency": "low",
|
|
3592
3747
|
"resource_usage": "low"
|
|
3593
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"
|
|
3594
3756
|
}
|
|
3595
3757
|
},
|
|
3596
3758
|
"x-displayname": "TPM Manager.",
|
|
@@ -3818,6 +3980,13 @@
|
|
|
3818
3980
|
"latency": "moderate",
|
|
3819
3981
|
"resource_usage": "moderate"
|
|
3820
3982
|
}
|
|
3983
|
+
},
|
|
3984
|
+
"x-f5xc-discovered-response-time": {
|
|
3985
|
+
"p50_ms": 200,
|
|
3986
|
+
"p95_ms": 800,
|
|
3987
|
+
"p99_ms": 2000,
|
|
3988
|
+
"sample_count": 0,
|
|
3989
|
+
"source": "estimate"
|
|
3821
3990
|
}
|
|
3822
3991
|
},
|
|
3823
3992
|
"x-displayname": "TPM Manager.",
|
|
@@ -4038,6 +4207,13 @@
|
|
|
4038
4207
|
"latency": "low",
|
|
4039
4208
|
"resource_usage": "low"
|
|
4040
4209
|
}
|
|
4210
|
+
},
|
|
4211
|
+
"x-f5xc-discovered-response-time": {
|
|
4212
|
+
"p50_ms": 200,
|
|
4213
|
+
"p95_ms": 800,
|
|
4214
|
+
"p99_ms": 2000,
|
|
4215
|
+
"sample_count": 0,
|
|
4216
|
+
"source": "estimate"
|
|
4041
4217
|
}
|
|
4042
4218
|
},
|
|
4043
4219
|
"x-displayname": "TPM Manager.",
|
|
@@ -4235,6 +4411,13 @@
|
|
|
4235
4411
|
"latency": "low",
|
|
4236
4412
|
"resource_usage": "low"
|
|
4237
4413
|
}
|
|
4414
|
+
},
|
|
4415
|
+
"x-f5xc-discovered-response-time": {
|
|
4416
|
+
"p50_ms": 1000,
|
|
4417
|
+
"p95_ms": 3000,
|
|
4418
|
+
"p99_ms": 8000,
|
|
4419
|
+
"sample_count": 0,
|
|
4420
|
+
"source": "estimate"
|
|
4238
4421
|
}
|
|
4239
4422
|
},
|
|
4240
4423
|
"x-displayname": "TPM Provisioning.",
|
|
@@ -4432,6 +4615,13 @@
|
|
|
4432
4615
|
"latency": "low",
|
|
4433
4616
|
"resource_usage": "low"
|
|
4434
4617
|
}
|
|
4618
|
+
},
|
|
4619
|
+
"x-f5xc-discovered-response-time": {
|
|
4620
|
+
"p50_ms": 1000,
|
|
4621
|
+
"p95_ms": 3000,
|
|
4622
|
+
"p99_ms": 8000,
|
|
4623
|
+
"sample_count": 0,
|
|
4624
|
+
"source": "estimate"
|
|
4435
4625
|
}
|
|
4436
4626
|
},
|
|
4437
4627
|
"x-displayname": "TPM Provisioning.",
|
|
@@ -4599,7 +4789,7 @@
|
|
|
4599
4789
|
},
|
|
4600
4790
|
"x-original-maxLength": 1024,
|
|
4601
4791
|
"x-reconciled-from-discovery": true,
|
|
4602
|
-
"x-reconciled-at": "2026-01-
|
|
4792
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147646+00:00"
|
|
4603
4793
|
},
|
|
4604
4794
|
"namespace": {
|
|
4605
4795
|
"type": "string",
|
|
@@ -4618,7 +4808,7 @@
|
|
|
4618
4808
|
},
|
|
4619
4809
|
"x-original-maxLength": 1024,
|
|
4620
4810
|
"x-reconciled-from-discovery": true,
|
|
4621
|
-
"x-reconciled-at": "2026-01-
|
|
4811
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147653+00:00"
|
|
4622
4812
|
}
|
|
4623
4813
|
},
|
|
4624
4814
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5111,7 +5301,7 @@
|
|
|
5111
5301
|
},
|
|
5112
5302
|
"x-original-maxLength": 1024,
|
|
5113
5303
|
"x-reconciled-from-discovery": true,
|
|
5114
|
-
"x-reconciled-at": "2026-01-
|
|
5304
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147695+00:00"
|
|
5115
5305
|
},
|
|
5116
5306
|
"disabled": {
|
|
5117
5307
|
"type": "boolean",
|
|
@@ -5161,7 +5351,7 @@
|
|
|
5161
5351
|
},
|
|
5162
5352
|
"x-original-maxLength": 1024,
|
|
5163
5353
|
"x-reconciled-from-discovery": true,
|
|
5164
|
-
"x-reconciled-at": "2026-01-
|
|
5354
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147705+00:00"
|
|
5165
5355
|
},
|
|
5166
5356
|
"namespace": {
|
|
5167
5357
|
"type": "string",
|
|
@@ -5180,7 +5370,7 @@
|
|
|
5180
5370
|
},
|
|
5181
5371
|
"x-original-maxLength": 1024,
|
|
5182
5372
|
"x-reconciled-from-discovery": true,
|
|
5183
|
-
"x-reconciled-at": "2026-01-
|
|
5373
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147710+00:00"
|
|
5184
5374
|
},
|
|
5185
5375
|
"owner_view": {
|
|
5186
5376
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -5206,7 +5396,7 @@
|
|
|
5206
5396
|
"x-field-mutability": "read-only",
|
|
5207
5397
|
"x-original-maxLength": 1024,
|
|
5208
5398
|
"x-reconciled-from-discovery": true,
|
|
5209
|
-
"x-reconciled-at": "2026-01-
|
|
5399
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147716+00:00"
|
|
5210
5400
|
},
|
|
5211
5401
|
"uid": {
|
|
5212
5402
|
"type": "string",
|
|
@@ -5227,7 +5417,7 @@
|
|
|
5227
5417
|
"x-original-maxLength": 1024,
|
|
5228
5418
|
"format": "uuid",
|
|
5229
5419
|
"x-reconciled-from-discovery": true,
|
|
5230
|
-
"x-reconciled-at": "2026-01-
|
|
5420
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147722+00:00"
|
|
5231
5421
|
}
|
|
5232
5422
|
},
|
|
5233
5423
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5375,7 +5565,7 @@
|
|
|
5375
5565
|
"readOnly": true,
|
|
5376
5566
|
"x-original-maxLength": 1024,
|
|
5377
5567
|
"x-reconciled-from-discovery": true,
|
|
5378
|
-
"x-reconciled-at": "2026-01-
|
|
5568
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147736+00:00"
|
|
5379
5569
|
},
|
|
5380
5570
|
"name": {
|
|
5381
5571
|
"type": "string",
|
|
@@ -5394,7 +5584,7 @@
|
|
|
5394
5584
|
},
|
|
5395
5585
|
"x-original-maxLength": 1024,
|
|
5396
5586
|
"x-reconciled-from-discovery": true,
|
|
5397
|
-
"x-reconciled-at": "2026-01-
|
|
5587
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147740+00:00"
|
|
5398
5588
|
},
|
|
5399
5589
|
"namespace": {
|
|
5400
5590
|
"type": "string",
|
|
@@ -5413,7 +5603,7 @@
|
|
|
5413
5603
|
},
|
|
5414
5604
|
"x-original-maxLength": 1024,
|
|
5415
5605
|
"x-reconciled-from-discovery": true,
|
|
5416
|
-
"x-reconciled-at": "2026-01-
|
|
5606
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147744+00:00"
|
|
5417
5607
|
},
|
|
5418
5608
|
"tenant": {
|
|
5419
5609
|
"type": "string",
|
|
@@ -5434,7 +5624,7 @@
|
|
|
5434
5624
|
"x-field-mutability": "read-only",
|
|
5435
5625
|
"x-original-maxLength": 1024,
|
|
5436
5626
|
"x-reconciled-from-discovery": true,
|
|
5437
|
-
"x-reconciled-at": "2026-01-
|
|
5627
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147748+00:00"
|
|
5438
5628
|
},
|
|
5439
5629
|
"uid": {
|
|
5440
5630
|
"type": "string",
|
|
@@ -5456,7 +5646,7 @@
|
|
|
5456
5646
|
"x-original-maxLength": 1024,
|
|
5457
5647
|
"format": "uuid",
|
|
5458
5648
|
"x-reconciled-from-discovery": true,
|
|
5459
|
-
"x-reconciled-at": "2026-01-
|
|
5649
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147753+00:00"
|
|
5460
5650
|
}
|
|
5461
5651
|
},
|
|
5462
5652
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5505,7 +5695,7 @@
|
|
|
5505
5695
|
},
|
|
5506
5696
|
"x-original-maxLength": 1024,
|
|
5507
5697
|
"x-reconciled-from-discovery": true,
|
|
5508
|
-
"x-reconciled-at": "2026-01-
|
|
5698
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147760+00:00"
|
|
5509
5699
|
}
|
|
5510
5700
|
},
|
|
5511
5701
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5616,7 +5806,7 @@
|
|
|
5616
5806
|
},
|
|
5617
5807
|
"x-original-maxLength": 1024,
|
|
5618
5808
|
"x-reconciled-from-discovery": true,
|
|
5619
|
-
"x-reconciled-at": "2026-01-
|
|
5809
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147770+00:00"
|
|
5620
5810
|
}
|
|
5621
5811
|
},
|
|
5622
5812
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5725,7 +5915,7 @@
|
|
|
5725
5915
|
},
|
|
5726
5916
|
"x-original-maxLength": 1200,
|
|
5727
5917
|
"x-reconciled-from-discovery": true,
|
|
5728
|
-
"x-reconciled-at": "2026-01-
|
|
5918
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147780+00:00"
|
|
5729
5919
|
},
|
|
5730
5920
|
"disable": {
|
|
5731
5921
|
"type": "boolean",
|
|
@@ -5778,7 +5968,7 @@
|
|
|
5778
5968
|
},
|
|
5779
5969
|
"x-original-maxLength": 1024,
|
|
5780
5970
|
"x-reconciled-from-discovery": true,
|
|
5781
|
-
"x-reconciled-at": "2026-01-
|
|
5971
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147787+00:00"
|
|
5782
5972
|
},
|
|
5783
5973
|
"namespace": {
|
|
5784
5974
|
"type": "string",
|
|
@@ -5797,7 +5987,7 @@
|
|
|
5797
5987
|
},
|
|
5798
5988
|
"x-original-maxLength": 1024,
|
|
5799
5989
|
"x-reconciled-from-discovery": true,
|
|
5800
|
-
"x-reconciled-at": "2026-01-
|
|
5990
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147791+00:00"
|
|
5801
5991
|
}
|
|
5802
5992
|
},
|
|
5803
5993
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5873,7 +6063,7 @@
|
|
|
5873
6063
|
},
|
|
5874
6064
|
"x-original-maxLength": 1200,
|
|
5875
6065
|
"x-reconciled-from-discovery": true,
|
|
5876
|
-
"x-reconciled-at": "2026-01-
|
|
6066
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147798+00:00"
|
|
5877
6067
|
},
|
|
5878
6068
|
"disable": {
|
|
5879
6069
|
"type": "boolean",
|
|
@@ -5928,7 +6118,7 @@
|
|
|
5928
6118
|
},
|
|
5929
6119
|
"x-original-maxLength": 1024,
|
|
5930
6120
|
"x-reconciled-from-discovery": true,
|
|
5931
|
-
"x-reconciled-at": "2026-01-
|
|
6121
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147805+00:00"
|
|
5932
6122
|
},
|
|
5933
6123
|
"namespace": {
|
|
5934
6124
|
"type": "string",
|
|
@@ -5947,7 +6137,7 @@
|
|
|
5947
6137
|
},
|
|
5948
6138
|
"x-original-maxLength": 1024,
|
|
5949
6139
|
"x-reconciled-from-discovery": true,
|
|
5950
|
-
"x-reconciled-at": "2026-01-
|
|
6140
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147809+00:00"
|
|
5951
6141
|
}
|
|
5952
6142
|
},
|
|
5953
6143
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6023,7 +6213,7 @@
|
|
|
6023
6213
|
},
|
|
6024
6214
|
"x-original-maxLength": 1200,
|
|
6025
6215
|
"x-reconciled-from-discovery": true,
|
|
6026
|
-
"x-reconciled-at": "2026-01-
|
|
6216
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147815+00:00"
|
|
6027
6217
|
},
|
|
6028
6218
|
"disable": {
|
|
6029
6219
|
"type": "boolean",
|
|
@@ -6076,7 +6266,7 @@
|
|
|
6076
6266
|
},
|
|
6077
6267
|
"x-original-maxLength": 1024,
|
|
6078
6268
|
"x-reconciled-from-discovery": true,
|
|
6079
|
-
"x-reconciled-at": "2026-01-
|
|
6269
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147822+00:00"
|
|
6080
6270
|
},
|
|
6081
6271
|
"namespace": {
|
|
6082
6272
|
"type": "string",
|
|
@@ -6095,7 +6285,7 @@
|
|
|
6095
6285
|
},
|
|
6096
6286
|
"x-original-maxLength": 1024,
|
|
6097
6287
|
"x-reconciled-from-discovery": true,
|
|
6098
|
-
"x-reconciled-at": "2026-01-
|
|
6288
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147826+00:00"
|
|
6099
6289
|
}
|
|
6100
6290
|
},
|
|
6101
6291
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6156,7 +6346,7 @@
|
|
|
6156
6346
|
},
|
|
6157
6347
|
"x-original-maxLength": 1024,
|
|
6158
6348
|
"x-reconciled-from-discovery": true,
|
|
6159
|
-
"x-reconciled-at": "2026-01-
|
|
6349
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147832+00:00"
|
|
6160
6350
|
},
|
|
6161
6351
|
"status": {
|
|
6162
6352
|
"type": "string",
|
|
@@ -6175,7 +6365,7 @@
|
|
|
6175
6365
|
},
|
|
6176
6366
|
"x-original-maxLength": 1024,
|
|
6177
6367
|
"x-reconciled-from-discovery": true,
|
|
6178
|
-
"x-reconciled-at": "2026-01-
|
|
6368
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147836+00:00"
|
|
6179
6369
|
}
|
|
6180
6370
|
},
|
|
6181
6371
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6353,7 +6543,7 @@
|
|
|
6353
6543
|
"x-field-mutability": "read-only",
|
|
6354
6544
|
"x-original-maxLength": 1024,
|
|
6355
6545
|
"x-reconciled-from-discovery": true,
|
|
6356
|
-
"x-reconciled-at": "2026-01-
|
|
6546
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147855+00:00"
|
|
6357
6547
|
},
|
|
6358
6548
|
"uid": {
|
|
6359
6549
|
"type": "string",
|
|
@@ -6374,7 +6564,7 @@
|
|
|
6374
6564
|
"x-original-maxLength": 1024,
|
|
6375
6565
|
"format": "uuid",
|
|
6376
6566
|
"x-reconciled-from-discovery": true,
|
|
6377
|
-
"x-reconciled-at": "2026-01-
|
|
6567
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147860+00:00"
|
|
6378
6568
|
}
|
|
6379
6569
|
},
|
|
6380
6570
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6424,7 +6614,7 @@
|
|
|
6424
6614
|
},
|
|
6425
6615
|
"x-original-maxLength": 1024,
|
|
6426
6616
|
"x-reconciled-from-discovery": true,
|
|
6427
|
-
"x-reconciled-at": "2026-01-
|
|
6617
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147865+00:00"
|
|
6428
6618
|
},
|
|
6429
6619
|
"name": {
|
|
6430
6620
|
"type": "string",
|
|
@@ -6443,7 +6633,7 @@
|
|
|
6443
6633
|
},
|
|
6444
6634
|
"x-original-maxLength": 1024,
|
|
6445
6635
|
"x-reconciled-from-discovery": true,
|
|
6446
|
-
"x-reconciled-at": "2026-01-
|
|
6636
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147869+00:00"
|
|
6447
6637
|
},
|
|
6448
6638
|
"namespace": {
|
|
6449
6639
|
"type": "string",
|
|
@@ -6462,7 +6652,7 @@
|
|
|
6462
6652
|
},
|
|
6463
6653
|
"x-original-maxLength": 1024,
|
|
6464
6654
|
"x-reconciled-from-discovery": true,
|
|
6465
|
-
"x-reconciled-at": "2026-01-
|
|
6655
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147874+00:00"
|
|
6466
6656
|
},
|
|
6467
6657
|
"uid": {
|
|
6468
6658
|
"type": "string",
|
|
@@ -6483,7 +6673,7 @@
|
|
|
6483
6673
|
"x-original-maxLength": 1024,
|
|
6484
6674
|
"format": "uuid",
|
|
6485
6675
|
"x-reconciled-from-discovery": true,
|
|
6486
|
-
"x-reconciled-at": "2026-01-
|
|
6676
|
+
"x-reconciled-at": "2026-01-05T18:28:49.147879+00:00"
|
|
6487
6677
|
}
|
|
6488
6678
|
},
|
|
6489
6679
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6758,7 +6948,7 @@
|
|
|
6758
6948
|
},
|
|
6759
6949
|
"x-original-maxLength": 1024,
|
|
6760
6950
|
"x-reconciled-from-discovery": true,
|
|
6761
|
-
"x-reconciled-at": "2026-01-
|
|
6951
|
+
"x-reconciled-at": "2026-01-05T18:29:53.822755+00:00"
|
|
6762
6952
|
},
|
|
6763
6953
|
"disabled": {
|
|
6764
6954
|
"type": "boolean",
|
|
@@ -6808,7 +6998,7 @@
|
|
|
6808
6998
|
},
|
|
6809
6999
|
"x-original-maxLength": 1024,
|
|
6810
7000
|
"x-reconciled-from-discovery": true,
|
|
6811
|
-
"x-reconciled-at": "2026-01-
|
|
7001
|
+
"x-reconciled-at": "2026-01-05T18:29:53.822765+00:00"
|
|
6812
7002
|
},
|
|
6813
7003
|
"namespace": {
|
|
6814
7004
|
"type": "string",
|
|
@@ -6827,7 +7017,7 @@
|
|
|
6827
7017
|
},
|
|
6828
7018
|
"x-original-maxLength": 1024,
|
|
6829
7019
|
"x-reconciled-from-discovery": true,
|
|
6830
|
-
"x-reconciled-at": "2026-01-
|
|
7020
|
+
"x-reconciled-at": "2026-01-05T18:29:53.822769+00:00"
|
|
6831
7021
|
},
|
|
6832
7022
|
"owner_view": {
|
|
6833
7023
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -6853,7 +7043,7 @@
|
|
|
6853
7043
|
"x-field-mutability": "read-only",
|
|
6854
7044
|
"x-original-maxLength": 1024,
|
|
6855
7045
|
"x-reconciled-from-discovery": true,
|
|
6856
|
-
"x-reconciled-at": "2026-01-
|
|
7046
|
+
"x-reconciled-at": "2026-01-05T18:29:53.822776+00:00"
|
|
6857
7047
|
},
|
|
6858
7048
|
"uid": {
|
|
6859
7049
|
"type": "string",
|
|
@@ -6874,7 +7064,7 @@
|
|
|
6874
7064
|
"x-original-maxLength": 1024,
|
|
6875
7065
|
"format": "uuid",
|
|
6876
7066
|
"x-reconciled-from-discovery": true,
|
|
6877
|
-
"x-reconciled-at": "2026-01-
|
|
7067
|
+
"x-reconciled-at": "2026-01-05T18:29:53.822780+00:00"
|
|
6878
7068
|
}
|
|
6879
7069
|
},
|
|
6880
7070
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6953,7 +7143,7 @@
|
|
|
6953
7143
|
},
|
|
6954
7144
|
"x-original-maxLength": 1024,
|
|
6955
7145
|
"x-reconciled-from-discovery": true,
|
|
6956
|
-
"x-reconciled-at": "2026-01-
|
|
7146
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247339+00:00"
|
|
6957
7147
|
},
|
|
6958
7148
|
"service_name": {
|
|
6959
7149
|
"type": "string",
|
|
@@ -6992,7 +7182,7 @@
|
|
|
6992
7182
|
},
|
|
6993
7183
|
"x-original-maxLength": 1024,
|
|
6994
7184
|
"x-reconciled-from-discovery": true,
|
|
6995
|
-
"x-reconciled-at": "2026-01-
|
|
7185
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247346+00:00"
|
|
6996
7186
|
},
|
|
6997
7187
|
"type": {
|
|
6998
7188
|
"type": "string",
|
|
@@ -7059,7 +7249,7 @@
|
|
|
7059
7249
|
"readOnly": true,
|
|
7060
7250
|
"x-original-maxLength": 1024,
|
|
7061
7251
|
"x-reconciled-from-discovery": true,
|
|
7062
|
-
"x-reconciled-at": "2026-01-
|
|
7252
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247402+00:00"
|
|
7063
7253
|
},
|
|
7064
7254
|
"name": {
|
|
7065
7255
|
"type": "string",
|
|
@@ -7078,7 +7268,7 @@
|
|
|
7078
7268
|
},
|
|
7079
7269
|
"x-original-maxLength": 1024,
|
|
7080
7270
|
"x-reconciled-from-discovery": true,
|
|
7081
|
-
"x-reconciled-at": "2026-01-
|
|
7271
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247406+00:00"
|
|
7082
7272
|
},
|
|
7083
7273
|
"namespace": {
|
|
7084
7274
|
"type": "string",
|
|
@@ -7097,7 +7287,7 @@
|
|
|
7097
7287
|
},
|
|
7098
7288
|
"x-original-maxLength": 1024,
|
|
7099
7289
|
"x-reconciled-from-discovery": true,
|
|
7100
|
-
"x-reconciled-at": "2026-01-
|
|
7290
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247410+00:00"
|
|
7101
7291
|
},
|
|
7102
7292
|
"tenant": {
|
|
7103
7293
|
"type": "string",
|
|
@@ -7118,7 +7308,7 @@
|
|
|
7118
7308
|
"x-field-mutability": "read-only",
|
|
7119
7309
|
"x-original-maxLength": 1024,
|
|
7120
7310
|
"x-reconciled-from-discovery": true,
|
|
7121
|
-
"x-reconciled-at": "2026-01-
|
|
7311
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247413+00:00"
|
|
7122
7312
|
},
|
|
7123
7313
|
"uid": {
|
|
7124
7314
|
"type": "string",
|
|
@@ -7140,7 +7330,7 @@
|
|
|
7140
7330
|
"x-original-maxLength": 1024,
|
|
7141
7331
|
"format": "uuid",
|
|
7142
7332
|
"x-reconciled-from-discovery": true,
|
|
7143
|
-
"x-reconciled-at": "2026-01-
|
|
7333
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247419+00:00"
|
|
7144
7334
|
}
|
|
7145
7335
|
},
|
|
7146
7336
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7253,7 +7443,7 @@
|
|
|
7253
7443
|
"x-original-maxLength": 1024,
|
|
7254
7444
|
"format": "uuid",
|
|
7255
7445
|
"x-reconciled-from-discovery": true,
|
|
7256
|
-
"x-reconciled-at": "2026-01-
|
|
7446
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247452+00:00"
|
|
7257
7447
|
},
|
|
7258
7448
|
"vtrp_id": {
|
|
7259
7449
|
"type": "string",
|
|
@@ -7524,7 +7714,7 @@
|
|
|
7524
7714
|
"maxLength": 17,
|
|
7525
7715
|
"minLength": 17,
|
|
7526
7716
|
"x-reconciled-from-discovery": true,
|
|
7527
|
-
"x-reconciled-at": "2026-01-
|
|
7717
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247532+00:00"
|
|
7528
7718
|
},
|
|
7529
7719
|
"system_metadata": {
|
|
7530
7720
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -7772,7 +7962,7 @@
|
|
|
7772
7962
|
},
|
|
7773
7963
|
"x-original-maxLength": 1024,
|
|
7774
7964
|
"x-reconciled-from-discovery": true,
|
|
7775
|
-
"x-reconciled-at": "2026-01-
|
|
7965
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247551+00:00"
|
|
7776
7966
|
},
|
|
7777
7967
|
"disabled": {
|
|
7778
7968
|
"type": "boolean",
|
|
@@ -7822,7 +8012,7 @@
|
|
|
7822
8012
|
},
|
|
7823
8013
|
"x-original-maxLength": 1024,
|
|
7824
8014
|
"x-reconciled-from-discovery": true,
|
|
7825
|
-
"x-reconciled-at": "2026-01-
|
|
8015
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247560+00:00"
|
|
7826
8016
|
},
|
|
7827
8017
|
"namespace": {
|
|
7828
8018
|
"type": "string",
|
|
@@ -7841,7 +8031,7 @@
|
|
|
7841
8031
|
},
|
|
7842
8032
|
"x-original-maxLength": 1024,
|
|
7843
8033
|
"x-reconciled-from-discovery": true,
|
|
7844
|
-
"x-reconciled-at": "2026-01-
|
|
8034
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247564+00:00"
|
|
7845
8035
|
},
|
|
7846
8036
|
"owner_view": {
|
|
7847
8037
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -7882,7 +8072,7 @@
|
|
|
7882
8072
|
"x-field-mutability": "read-only",
|
|
7883
8073
|
"x-original-maxLength": 1024,
|
|
7884
8074
|
"x-reconciled-from-discovery": true,
|
|
7885
|
-
"x-reconciled-at": "2026-01-
|
|
8075
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247572+00:00"
|
|
7886
8076
|
},
|
|
7887
8077
|
"uid": {
|
|
7888
8078
|
"type": "string",
|
|
@@ -7903,7 +8093,7 @@
|
|
|
7903
8093
|
"x-original-maxLength": 1024,
|
|
7904
8094
|
"format": "uuid",
|
|
7905
8095
|
"x-reconciled-from-discovery": true,
|
|
7906
|
-
"x-reconciled-at": "2026-01-
|
|
8096
|
+
"x-reconciled-at": "2026-01-05T18:30:01.247576+00:00"
|
|
7907
8097
|
}
|
|
7908
8098
|
},
|
|
7909
8099
|
"x-f5xc-minimum-configuration": {
|
|
@@ -8296,7 +8486,7 @@
|
|
|
8296
8486
|
"maxLength": 17,
|
|
8297
8487
|
"minLength": 17,
|
|
8298
8488
|
"x-reconciled-from-discovery": true,
|
|
8299
|
-
"x-reconciled-at": "2026-01-
|
|
8489
|
+
"x-reconciled-at": "2026-01-05T18:30:01.570834+00:00"
|
|
8300
8490
|
},
|
|
8301
8491
|
"system_metadata": {
|
|
8302
8492
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -8565,7 +8755,7 @@
|
|
|
8565
8755
|
},
|
|
8566
8756
|
"x-original-maxLength": 1024,
|
|
8567
8757
|
"x-reconciled-from-discovery": true,
|
|
8568
|
-
"x-reconciled-at": "2026-01-
|
|
8758
|
+
"x-reconciled-at": "2026-01-05T18:30:01.570854+00:00"
|
|
8569
8759
|
},
|
|
8570
8760
|
"disabled": {
|
|
8571
8761
|
"type": "boolean",
|
|
@@ -8615,7 +8805,7 @@
|
|
|
8615
8805
|
},
|
|
8616
8806
|
"x-original-maxLength": 1024,
|
|
8617
8807
|
"x-reconciled-from-discovery": true,
|
|
8618
|
-
"x-reconciled-at": "2026-01-
|
|
8808
|
+
"x-reconciled-at": "2026-01-05T18:30:01.570864+00:00"
|
|
8619
8809
|
},
|
|
8620
8810
|
"namespace": {
|
|
8621
8811
|
"type": "string",
|
|
@@ -8634,7 +8824,7 @@
|
|
|
8634
8824
|
},
|
|
8635
8825
|
"x-original-maxLength": 1024,
|
|
8636
8826
|
"x-reconciled-from-discovery": true,
|
|
8637
|
-
"x-reconciled-at": "2026-01-
|
|
8827
|
+
"x-reconciled-at": "2026-01-05T18:30:01.570868+00:00"
|
|
8638
8828
|
},
|
|
8639
8829
|
"owner_view": {
|
|
8640
8830
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -8675,7 +8865,7 @@
|
|
|
8675
8865
|
"x-field-mutability": "read-only",
|
|
8676
8866
|
"x-original-maxLength": 1024,
|
|
8677
8867
|
"x-reconciled-from-discovery": true,
|
|
8678
|
-
"x-reconciled-at": "2026-01-
|
|
8868
|
+
"x-reconciled-at": "2026-01-05T18:30:01.570875+00:00"
|
|
8679
8869
|
},
|
|
8680
8870
|
"uid": {
|
|
8681
8871
|
"type": "string",
|
|
@@ -8696,7 +8886,7 @@
|
|
|
8696
8886
|
"x-original-maxLength": 1024,
|
|
8697
8887
|
"format": "uuid",
|
|
8698
8888
|
"x-reconciled-from-discovery": true,
|
|
8699
|
-
"x-reconciled-at": "2026-01-
|
|
8889
|
+
"x-reconciled-at": "2026-01-05T18:30:01.570880+00:00"
|
|
8700
8890
|
}
|
|
8701
8891
|
},
|
|
8702
8892
|
"x-f5xc-minimum-configuration": {
|
|
@@ -9005,7 +9195,7 @@
|
|
|
9005
9195
|
"maxLength": 17,
|
|
9006
9196
|
"minLength": 17,
|
|
9007
9197
|
"x-reconciled-from-discovery": true,
|
|
9008
|
-
"x-reconciled-at": "2026-01-
|
|
9198
|
+
"x-reconciled-at": "2026-01-05T18:30:01.865467+00:00"
|
|
9009
9199
|
},
|
|
9010
9200
|
"system_metadata": {
|
|
9011
9201
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -9191,7 +9381,7 @@
|
|
|
9191
9381
|
},
|
|
9192
9382
|
"x-original-maxLength": 1024,
|
|
9193
9383
|
"x-reconciled-from-discovery": true,
|
|
9194
|
-
"x-reconciled-at": "2026-01-
|
|
9384
|
+
"x-reconciled-at": "2026-01-05T18:30:01.865482+00:00"
|
|
9195
9385
|
},
|
|
9196
9386
|
"disabled": {
|
|
9197
9387
|
"type": "boolean",
|
|
@@ -9241,7 +9431,7 @@
|
|
|
9241
9431
|
},
|
|
9242
9432
|
"x-original-maxLength": 1024,
|
|
9243
9433
|
"x-reconciled-from-discovery": true,
|
|
9244
|
-
"x-reconciled-at": "2026-01-
|
|
9434
|
+
"x-reconciled-at": "2026-01-05T18:30:01.865492+00:00"
|
|
9245
9435
|
},
|
|
9246
9436
|
"namespace": {
|
|
9247
9437
|
"type": "string",
|
|
@@ -9260,7 +9450,7 @@
|
|
|
9260
9450
|
},
|
|
9261
9451
|
"x-original-maxLength": 1024,
|
|
9262
9452
|
"x-reconciled-from-discovery": true,
|
|
9263
|
-
"x-reconciled-at": "2026-01-
|
|
9453
|
+
"x-reconciled-at": "2026-01-05T18:30:01.865496+00:00"
|
|
9264
9454
|
},
|
|
9265
9455
|
"owner_view": {
|
|
9266
9456
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -9301,7 +9491,7 @@
|
|
|
9301
9491
|
"x-field-mutability": "read-only",
|
|
9302
9492
|
"x-original-maxLength": 1024,
|
|
9303
9493
|
"x-reconciled-from-discovery": true,
|
|
9304
|
-
"x-reconciled-at": "2026-01-
|
|
9494
|
+
"x-reconciled-at": "2026-01-05T18:30:01.865504+00:00"
|
|
9305
9495
|
},
|
|
9306
9496
|
"uid": {
|
|
9307
9497
|
"type": "string",
|
|
@@ -9322,7 +9512,7 @@
|
|
|
9322
9512
|
"x-original-maxLength": 1024,
|
|
9323
9513
|
"format": "uuid",
|
|
9324
9514
|
"x-reconciled-from-discovery": true,
|
|
9325
|
-
"x-reconciled-at": "2026-01-
|
|
9515
|
+
"x-reconciled-at": "2026-01-05T18:30:01.865509+00:00"
|
|
9326
9516
|
}
|
|
9327
9517
|
},
|
|
9328
9518
|
"x-f5xc-minimum-configuration": {
|
|
@@ -9436,7 +9626,7 @@
|
|
|
9436
9626
|
},
|
|
9437
9627
|
"x-original-maxLength": 1024,
|
|
9438
9628
|
"x-reconciled-from-discovery": true,
|
|
9439
|
-
"x-reconciled-at": "2026-01-
|
|
9629
|
+
"x-reconciled-at": "2026-01-05T18:30:02.045561+00:00"
|
|
9440
9630
|
},
|
|
9441
9631
|
"serial": {
|
|
9442
9632
|
"type": "string",
|
|
@@ -9508,7 +9698,7 @@
|
|
|
9508
9698
|
},
|
|
9509
9699
|
"x-original-maxLength": 1024,
|
|
9510
9700
|
"x-reconciled-from-discovery": true,
|
|
9511
|
-
"x-reconciled-at": "2026-01-
|
|
9701
|
+
"x-reconciled-at": "2026-01-05T18:30:02.045571+00:00"
|
|
9512
9702
|
}
|
|
9513
9703
|
},
|
|
9514
9704
|
"x-f5xc-minimum-configuration": {
|