@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": "Rate Limiting",
|
|
5
5
|
"description": "Threshold-based request blocking using sliding window calculations. Burst smoothing algorithms maintain sustained throughput without exceeding defined maximums. Per-connection controls apply granular restrictions by protocol type. Automatic block actions trigger when request counts surpass configured limits within specified intervals.",
|
|
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": "Time-based quota enforcement with configurable windows in hours, minutes, or seconds. Protocol-specific controls for traffic shaping.",
|
|
16
|
-
"x-f5xc-cli-domain": "rate_limiting"
|
|
16
|
+
"x-f5xc-cli-domain": "rate_limiting",
|
|
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": "Policer",
|
|
@@ -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": "Policer",
|
|
@@ -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": "Policer",
|
|
@@ -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": "Policer",
|
|
@@ -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": "Protocol Policer.",
|
|
@@ -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": "Protocol Policer.",
|
|
@@ -1828,6 +1927,13 @@
|
|
|
1828
1927
|
"latency": "moderate",
|
|
1829
1928
|
"resource_usage": "moderate"
|
|
1830
1929
|
}
|
|
1930
|
+
},
|
|
1931
|
+
"x-f5xc-discovered-response-time": {
|
|
1932
|
+
"p50_ms": 200,
|
|
1933
|
+
"p95_ms": 800,
|
|
1934
|
+
"p99_ms": 2000,
|
|
1935
|
+
"sample_count": 0,
|
|
1936
|
+
"source": "estimate"
|
|
1831
1937
|
}
|
|
1832
1938
|
},
|
|
1833
1939
|
"x-displayname": "Protocol Policer.",
|
|
@@ -2049,6 +2155,13 @@
|
|
|
2049
2155
|
"latency": "low",
|
|
2050
2156
|
"resource_usage": "low"
|
|
2051
2157
|
}
|
|
2158
|
+
},
|
|
2159
|
+
"x-f5xc-discovered-response-time": {
|
|
2160
|
+
"p50_ms": 200,
|
|
2161
|
+
"p95_ms": 800,
|
|
2162
|
+
"p99_ms": 2000,
|
|
2163
|
+
"sample_count": 0,
|
|
2164
|
+
"source": "estimate"
|
|
2052
2165
|
}
|
|
2053
2166
|
},
|
|
2054
2167
|
"delete": {
|
|
@@ -2268,6 +2381,13 @@
|
|
|
2268
2381
|
"latency": "high",
|
|
2269
2382
|
"resource_usage": "moderate"
|
|
2270
2383
|
}
|
|
2384
|
+
},
|
|
2385
|
+
"x-f5xc-discovered-response-time": {
|
|
2386
|
+
"p50_ms": 500,
|
|
2387
|
+
"p95_ms": 1500,
|
|
2388
|
+
"p99_ms": 4000,
|
|
2389
|
+
"sample_count": 0,
|
|
2390
|
+
"source": "estimate"
|
|
2271
2391
|
}
|
|
2272
2392
|
},
|
|
2273
2393
|
"x-displayname": "Protocol Policer.",
|
|
@@ -2482,6 +2602,13 @@
|
|
|
2482
2602
|
"latency": "low",
|
|
2483
2603
|
"resource_usage": "low"
|
|
2484
2604
|
}
|
|
2605
|
+
},
|
|
2606
|
+
"x-f5xc-discovered-response-time": {
|
|
2607
|
+
"p50_ms": 1000,
|
|
2608
|
+
"p95_ms": 3000,
|
|
2609
|
+
"p99_ms": 8000,
|
|
2610
|
+
"sample_count": 0,
|
|
2611
|
+
"source": "estimate"
|
|
2485
2612
|
}
|
|
2486
2613
|
},
|
|
2487
2614
|
"x-displayname": "Rate Limiter.",
|
|
@@ -2704,6 +2831,13 @@
|
|
|
2704
2831
|
"latency": "low",
|
|
2705
2832
|
"resource_usage": "low"
|
|
2706
2833
|
}
|
|
2834
|
+
},
|
|
2835
|
+
"x-f5xc-discovered-response-time": {
|
|
2836
|
+
"p50_ms": 800,
|
|
2837
|
+
"p95_ms": 2500,
|
|
2838
|
+
"p99_ms": 6000,
|
|
2839
|
+
"sample_count": 0,
|
|
2840
|
+
"source": "estimate"
|
|
2707
2841
|
}
|
|
2708
2842
|
},
|
|
2709
2843
|
"x-displayname": "Rate Limiter.",
|
|
@@ -2931,6 +3065,13 @@
|
|
|
2931
3065
|
"latency": "moderate",
|
|
2932
3066
|
"resource_usage": "moderate"
|
|
2933
3067
|
}
|
|
3068
|
+
},
|
|
3069
|
+
"x-f5xc-discovered-response-time": {
|
|
3070
|
+
"p50_ms": 200,
|
|
3071
|
+
"p95_ms": 800,
|
|
3072
|
+
"p99_ms": 2000,
|
|
3073
|
+
"sample_count": 0,
|
|
3074
|
+
"source": "estimate"
|
|
2934
3075
|
}
|
|
2935
3076
|
},
|
|
2936
3077
|
"x-displayname": "Rate Limiter.",
|
|
@@ -3152,6 +3293,13 @@
|
|
|
3152
3293
|
"latency": "low",
|
|
3153
3294
|
"resource_usage": "low"
|
|
3154
3295
|
}
|
|
3296
|
+
},
|
|
3297
|
+
"x-f5xc-discovered-response-time": {
|
|
3298
|
+
"p50_ms": 200,
|
|
3299
|
+
"p95_ms": 800,
|
|
3300
|
+
"p99_ms": 2000,
|
|
3301
|
+
"sample_count": 0,
|
|
3302
|
+
"source": "estimate"
|
|
3155
3303
|
}
|
|
3156
3304
|
},
|
|
3157
3305
|
"delete": {
|
|
@@ -3371,6 +3519,13 @@
|
|
|
3371
3519
|
"latency": "high",
|
|
3372
3520
|
"resource_usage": "moderate"
|
|
3373
3521
|
}
|
|
3522
|
+
},
|
|
3523
|
+
"x-f5xc-discovered-response-time": {
|
|
3524
|
+
"p50_ms": 500,
|
|
3525
|
+
"p95_ms": 1500,
|
|
3526
|
+
"p99_ms": 4000,
|
|
3527
|
+
"sample_count": 0,
|
|
3528
|
+
"source": "estimate"
|
|
3374
3529
|
}
|
|
3375
3530
|
},
|
|
3376
3531
|
"x-displayname": "Rate Limiter.",
|
|
@@ -3562,7 +3717,7 @@
|
|
|
3562
3717
|
},
|
|
3563
3718
|
"x-original-maxLength": 1024,
|
|
3564
3719
|
"x-reconciled-from-discovery": true,
|
|
3565
|
-
"x-reconciled-at": "2026-01-
|
|
3720
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290052+00:00"
|
|
3566
3721
|
},
|
|
3567
3722
|
"namespace": {
|
|
3568
3723
|
"type": "string",
|
|
@@ -3581,7 +3736,7 @@
|
|
|
3581
3736
|
},
|
|
3582
3737
|
"x-original-maxLength": 1024,
|
|
3583
3738
|
"x-reconciled-from-discovery": true,
|
|
3584
|
-
"x-reconciled-at": "2026-01-
|
|
3739
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290059+00:00"
|
|
3585
3740
|
}
|
|
3586
3741
|
},
|
|
3587
3742
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3679,7 +3834,7 @@
|
|
|
3679
3834
|
"maxLength": 17,
|
|
3680
3835
|
"minLength": 17,
|
|
3681
3836
|
"x-reconciled-from-discovery": true,
|
|
3682
|
-
"x-reconciled-at": "2026-01-
|
|
3837
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290075+00:00"
|
|
3683
3838
|
},
|
|
3684
3839
|
"system_metadata": {
|
|
3685
3840
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -3896,7 +4051,7 @@
|
|
|
3896
4051
|
},
|
|
3897
4052
|
"x-original-maxLength": 1024,
|
|
3898
4053
|
"x-reconciled-from-discovery": true,
|
|
3899
|
-
"x-reconciled-at": "2026-01-
|
|
4054
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290094+00:00"
|
|
3900
4055
|
},
|
|
3901
4056
|
"disabled": {
|
|
3902
4057
|
"type": "boolean",
|
|
@@ -3946,7 +4101,7 @@
|
|
|
3946
4101
|
},
|
|
3947
4102
|
"x-original-maxLength": 1024,
|
|
3948
4103
|
"x-reconciled-from-discovery": true,
|
|
3949
|
-
"x-reconciled-at": "2026-01-
|
|
4104
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290104+00:00"
|
|
3950
4105
|
},
|
|
3951
4106
|
"namespace": {
|
|
3952
4107
|
"type": "string",
|
|
@@ -3965,7 +4120,7 @@
|
|
|
3965
4120
|
},
|
|
3966
4121
|
"x-original-maxLength": 1024,
|
|
3967
4122
|
"x-reconciled-from-discovery": true,
|
|
3968
|
-
"x-reconciled-at": "2026-01-
|
|
4123
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290109+00:00"
|
|
3969
4124
|
},
|
|
3970
4125
|
"owner_view": {
|
|
3971
4126
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -4006,7 +4161,7 @@
|
|
|
4006
4161
|
"x-field-mutability": "read-only",
|
|
4007
4162
|
"x-original-maxLength": 1024,
|
|
4008
4163
|
"x-reconciled-from-discovery": true,
|
|
4009
|
-
"x-reconciled-at": "2026-01-
|
|
4164
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290116+00:00"
|
|
4010
4165
|
},
|
|
4011
4166
|
"uid": {
|
|
4012
4167
|
"type": "string",
|
|
@@ -4027,7 +4182,7 @@
|
|
|
4027
4182
|
"x-original-maxLength": 1024,
|
|
4028
4183
|
"format": "uuid",
|
|
4029
4184
|
"x-reconciled-from-discovery": true,
|
|
4030
|
-
"x-reconciled-at": "2026-01-
|
|
4185
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290122+00:00"
|
|
4031
4186
|
}
|
|
4032
4187
|
},
|
|
4033
4188
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4303,7 +4458,7 @@
|
|
|
4303
4458
|
},
|
|
4304
4459
|
"x-original-maxLength": 1024,
|
|
4305
4460
|
"x-reconciled-from-discovery": true,
|
|
4306
|
-
"x-reconciled-at": "2026-01-
|
|
4461
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290144+00:00"
|
|
4307
4462
|
}
|
|
4308
4463
|
},
|
|
4309
4464
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4372,7 +4527,7 @@
|
|
|
4372
4527
|
},
|
|
4373
4528
|
"x-original-maxLength": 1024,
|
|
4374
4529
|
"x-reconciled-from-discovery": true,
|
|
4375
|
-
"x-reconciled-at": "2026-01-
|
|
4530
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290152+00:00"
|
|
4376
4531
|
},
|
|
4377
4532
|
"service_name": {
|
|
4378
4533
|
"type": "string",
|
|
@@ -4411,7 +4566,7 @@
|
|
|
4411
4566
|
},
|
|
4412
4567
|
"x-original-maxLength": 1024,
|
|
4413
4568
|
"x-reconciled-from-discovery": true,
|
|
4414
|
-
"x-reconciled-at": "2026-01-
|
|
4569
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290158+00:00"
|
|
4415
4570
|
},
|
|
4416
4571
|
"type": {
|
|
4417
4572
|
"type": "string",
|
|
@@ -4548,7 +4703,7 @@
|
|
|
4548
4703
|
},
|
|
4549
4704
|
"x-original-maxLength": 1024,
|
|
4550
4705
|
"x-reconciled-from-discovery": true,
|
|
4551
|
-
"x-reconciled-at": "2026-01-
|
|
4706
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290169+00:00"
|
|
4552
4707
|
}
|
|
4553
4708
|
},
|
|
4554
4709
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4657,7 +4812,7 @@
|
|
|
4657
4812
|
},
|
|
4658
4813
|
"x-original-maxLength": 1200,
|
|
4659
4814
|
"x-reconciled-from-discovery": true,
|
|
4660
|
-
"x-reconciled-at": "2026-01-
|
|
4815
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290179+00:00"
|
|
4661
4816
|
},
|
|
4662
4817
|
"disable": {
|
|
4663
4818
|
"type": "boolean",
|
|
@@ -4710,7 +4865,7 @@
|
|
|
4710
4865
|
},
|
|
4711
4866
|
"x-original-maxLength": 1024,
|
|
4712
4867
|
"x-reconciled-from-discovery": true,
|
|
4713
|
-
"x-reconciled-at": "2026-01-
|
|
4868
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290186+00:00"
|
|
4714
4869
|
},
|
|
4715
4870
|
"namespace": {
|
|
4716
4871
|
"type": "string",
|
|
@@ -4729,7 +4884,7 @@
|
|
|
4729
4884
|
},
|
|
4730
4885
|
"x-original-maxLength": 1024,
|
|
4731
4886
|
"x-reconciled-from-discovery": true,
|
|
4732
|
-
"x-reconciled-at": "2026-01-
|
|
4887
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290190+00:00"
|
|
4733
4888
|
}
|
|
4734
4889
|
},
|
|
4735
4890
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4805,7 +4960,7 @@
|
|
|
4805
4960
|
},
|
|
4806
4961
|
"x-original-maxLength": 1200,
|
|
4807
4962
|
"x-reconciled-from-discovery": true,
|
|
4808
|
-
"x-reconciled-at": "2026-01-
|
|
4963
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290197+00:00"
|
|
4809
4964
|
},
|
|
4810
4965
|
"disable": {
|
|
4811
4966
|
"type": "boolean",
|
|
@@ -4860,7 +5015,7 @@
|
|
|
4860
5015
|
},
|
|
4861
5016
|
"x-original-maxLength": 1024,
|
|
4862
5017
|
"x-reconciled-from-discovery": true,
|
|
4863
|
-
"x-reconciled-at": "2026-01-
|
|
5018
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290204+00:00"
|
|
4864
5019
|
},
|
|
4865
5020
|
"namespace": {
|
|
4866
5021
|
"type": "string",
|
|
@@ -4879,7 +5034,7 @@
|
|
|
4879
5034
|
},
|
|
4880
5035
|
"x-original-maxLength": 1024,
|
|
4881
5036
|
"x-reconciled-from-discovery": true,
|
|
4882
|
-
"x-reconciled-at": "2026-01-
|
|
5037
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290208+00:00"
|
|
4883
5038
|
}
|
|
4884
5039
|
},
|
|
4885
5040
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4924,7 +5079,7 @@
|
|
|
4924
5079
|
"readOnly": true,
|
|
4925
5080
|
"x-original-maxLength": 1024,
|
|
4926
5081
|
"x-reconciled-from-discovery": true,
|
|
4927
|
-
"x-reconciled-at": "2026-01-
|
|
5082
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290212+00:00"
|
|
4928
5083
|
},
|
|
4929
5084
|
"name": {
|
|
4930
5085
|
"type": "string",
|
|
@@ -4943,7 +5098,7 @@
|
|
|
4943
5098
|
},
|
|
4944
5099
|
"x-original-maxLength": 1024,
|
|
4945
5100
|
"x-reconciled-from-discovery": true,
|
|
4946
|
-
"x-reconciled-at": "2026-01-
|
|
5101
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290216+00:00"
|
|
4947
5102
|
},
|
|
4948
5103
|
"namespace": {
|
|
4949
5104
|
"type": "string",
|
|
@@ -4962,7 +5117,7 @@
|
|
|
4962
5117
|
},
|
|
4963
5118
|
"x-original-maxLength": 1024,
|
|
4964
5119
|
"x-reconciled-from-discovery": true,
|
|
4965
|
-
"x-reconciled-at": "2026-01-
|
|
5120
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290220+00:00"
|
|
4966
5121
|
},
|
|
4967
5122
|
"tenant": {
|
|
4968
5123
|
"type": "string",
|
|
@@ -4983,7 +5138,7 @@
|
|
|
4983
5138
|
"x-field-mutability": "read-only",
|
|
4984
5139
|
"x-original-maxLength": 1024,
|
|
4985
5140
|
"x-reconciled-from-discovery": true,
|
|
4986
|
-
"x-reconciled-at": "2026-01-
|
|
5141
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290224+00:00"
|
|
4987
5142
|
},
|
|
4988
5143
|
"uid": {
|
|
4989
5144
|
"type": "string",
|
|
@@ -5005,7 +5160,7 @@
|
|
|
5005
5160
|
"x-original-maxLength": 1024,
|
|
5006
5161
|
"format": "uuid",
|
|
5007
5162
|
"x-reconciled-from-discovery": true,
|
|
5008
|
-
"x-reconciled-at": "2026-01-
|
|
5163
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290230+00:00"
|
|
5009
5164
|
}
|
|
5010
5165
|
},
|
|
5011
5166
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5080,7 +5235,7 @@
|
|
|
5080
5235
|
},
|
|
5081
5236
|
"x-original-maxLength": 1200,
|
|
5082
5237
|
"x-reconciled-from-discovery": true,
|
|
5083
|
-
"x-reconciled-at": "2026-01-
|
|
5238
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290237+00:00"
|
|
5084
5239
|
},
|
|
5085
5240
|
"disable": {
|
|
5086
5241
|
"type": "boolean",
|
|
@@ -5133,7 +5288,7 @@
|
|
|
5133
5288
|
},
|
|
5134
5289
|
"x-original-maxLength": 1024,
|
|
5135
5290
|
"x-reconciled-from-discovery": true,
|
|
5136
|
-
"x-reconciled-at": "2026-01-
|
|
5291
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290245+00:00"
|
|
5137
5292
|
},
|
|
5138
5293
|
"namespace": {
|
|
5139
5294
|
"type": "string",
|
|
@@ -5152,7 +5307,7 @@
|
|
|
5152
5307
|
},
|
|
5153
5308
|
"x-original-maxLength": 1024,
|
|
5154
5309
|
"x-reconciled-from-discovery": true,
|
|
5155
|
-
"x-reconciled-at": "2026-01-
|
|
5310
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290249+00:00"
|
|
5156
5311
|
}
|
|
5157
5312
|
},
|
|
5158
5313
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5266,7 +5421,7 @@
|
|
|
5266
5421
|
"x-original-maxLength": 1024,
|
|
5267
5422
|
"format": "uuid",
|
|
5268
5423
|
"x-reconciled-from-discovery": true,
|
|
5269
|
-
"x-reconciled-at": "2026-01-
|
|
5424
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290262+00:00"
|
|
5270
5425
|
},
|
|
5271
5426
|
"vtrp_id": {
|
|
5272
5427
|
"type": "string",
|
|
@@ -5378,7 +5533,7 @@
|
|
|
5378
5533
|
},
|
|
5379
5534
|
"x-original-maxLength": 1024,
|
|
5380
5535
|
"x-reconciled-from-discovery": true,
|
|
5381
|
-
"x-reconciled-at": "2026-01-
|
|
5536
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290273+00:00"
|
|
5382
5537
|
},
|
|
5383
5538
|
"status": {
|
|
5384
5539
|
"type": "string",
|
|
@@ -5397,7 +5552,7 @@
|
|
|
5397
5552
|
},
|
|
5398
5553
|
"x-original-maxLength": 1024,
|
|
5399
5554
|
"x-reconciled-from-discovery": true,
|
|
5400
|
-
"x-reconciled-at": "2026-01-
|
|
5555
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290277+00:00"
|
|
5401
5556
|
}
|
|
5402
5557
|
},
|
|
5403
5558
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5575,7 +5730,7 @@
|
|
|
5575
5730
|
"x-field-mutability": "read-only",
|
|
5576
5731
|
"x-original-maxLength": 1024,
|
|
5577
5732
|
"x-reconciled-from-discovery": true,
|
|
5578
|
-
"x-reconciled-at": "2026-01-
|
|
5733
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290298+00:00"
|
|
5579
5734
|
},
|
|
5580
5735
|
"uid": {
|
|
5581
5736
|
"type": "string",
|
|
@@ -5596,7 +5751,7 @@
|
|
|
5596
5751
|
"x-original-maxLength": 1024,
|
|
5597
5752
|
"format": "uuid",
|
|
5598
5753
|
"x-reconciled-from-discovery": true,
|
|
5599
|
-
"x-reconciled-at": "2026-01-
|
|
5754
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290303+00:00"
|
|
5600
5755
|
}
|
|
5601
5756
|
},
|
|
5602
5757
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5646,7 +5801,7 @@
|
|
|
5646
5801
|
},
|
|
5647
5802
|
"x-original-maxLength": 1024,
|
|
5648
5803
|
"x-reconciled-from-discovery": true,
|
|
5649
|
-
"x-reconciled-at": "2026-01-
|
|
5804
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290308+00:00"
|
|
5650
5805
|
},
|
|
5651
5806
|
"name": {
|
|
5652
5807
|
"type": "string",
|
|
@@ -5665,7 +5820,7 @@
|
|
|
5665
5820
|
},
|
|
5666
5821
|
"x-original-maxLength": 1024,
|
|
5667
5822
|
"x-reconciled-from-discovery": true,
|
|
5668
|
-
"x-reconciled-at": "2026-01-
|
|
5823
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290313+00:00"
|
|
5669
5824
|
},
|
|
5670
5825
|
"namespace": {
|
|
5671
5826
|
"type": "string",
|
|
@@ -5684,7 +5839,7 @@
|
|
|
5684
5839
|
},
|
|
5685
5840
|
"x-original-maxLength": 1024,
|
|
5686
5841
|
"x-reconciled-from-discovery": true,
|
|
5687
|
-
"x-reconciled-at": "2026-01-
|
|
5842
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290317+00:00"
|
|
5688
5843
|
},
|
|
5689
5844
|
"uid": {
|
|
5690
5845
|
"type": "string",
|
|
@@ -5705,7 +5860,7 @@
|
|
|
5705
5860
|
"x-original-maxLength": 1024,
|
|
5706
5861
|
"format": "uuid",
|
|
5707
5862
|
"x-reconciled-from-discovery": true,
|
|
5708
|
-
"x-reconciled-at": "2026-01-
|
|
5863
|
+
"x-reconciled-at": "2026-01-05T18:29:42.290322+00:00"
|
|
5709
5864
|
}
|
|
5710
5865
|
},
|
|
5711
5866
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5859,7 +6014,7 @@
|
|
|
5859
6014
|
},
|
|
5860
6015
|
"x-original-maxLength": 1024,
|
|
5861
6016
|
"x-reconciled-from-discovery": true,
|
|
5862
|
-
"x-reconciled-at": "2026-01-
|
|
6017
|
+
"x-reconciled-at": "2026-01-05T18:29:43.529453+00:00"
|
|
5863
6018
|
},
|
|
5864
6019
|
"namespace": {
|
|
5865
6020
|
"type": "string",
|
|
@@ -5878,7 +6033,7 @@
|
|
|
5878
6033
|
},
|
|
5879
6034
|
"x-original-maxLength": 1024,
|
|
5880
6035
|
"x-reconciled-from-discovery": true,
|
|
5881
|
-
"x-reconciled-at": "2026-01-
|
|
6036
|
+
"x-reconciled-at": "2026-01-05T18:29:43.529458+00:00"
|
|
5882
6037
|
}
|
|
5883
6038
|
},
|
|
5884
6039
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5992,7 +6147,7 @@
|
|
|
5992
6147
|
"maxLength": 17,
|
|
5993
6148
|
"minLength": 17,
|
|
5994
6149
|
"x-reconciled-from-discovery": true,
|
|
5995
|
-
"x-reconciled-at": "2026-01-
|
|
6150
|
+
"x-reconciled-at": "2026-01-05T18:29:43.529474+00:00"
|
|
5996
6151
|
},
|
|
5997
6152
|
"system_metadata": {
|
|
5998
6153
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -6228,7 +6383,7 @@
|
|
|
6228
6383
|
},
|
|
6229
6384
|
"x-original-maxLength": 1024,
|
|
6230
6385
|
"x-reconciled-from-discovery": true,
|
|
6231
|
-
"x-reconciled-at": "2026-01-
|
|
6386
|
+
"x-reconciled-at": "2026-01-05T18:29:43.529490+00:00"
|
|
6232
6387
|
},
|
|
6233
6388
|
"disabled": {
|
|
6234
6389
|
"type": "boolean",
|
|
@@ -6278,7 +6433,7 @@
|
|
|
6278
6433
|
},
|
|
6279
6434
|
"x-original-maxLength": 1024,
|
|
6280
6435
|
"x-reconciled-from-discovery": true,
|
|
6281
|
-
"x-reconciled-at": "2026-01-
|
|
6436
|
+
"x-reconciled-at": "2026-01-05T18:29:43.529502+00:00"
|
|
6282
6437
|
},
|
|
6283
6438
|
"namespace": {
|
|
6284
6439
|
"type": "string",
|
|
@@ -6297,7 +6452,7 @@
|
|
|
6297
6452
|
},
|
|
6298
6453
|
"x-original-maxLength": 1024,
|
|
6299
6454
|
"x-reconciled-from-discovery": true,
|
|
6300
|
-
"x-reconciled-at": "2026-01-
|
|
6455
|
+
"x-reconciled-at": "2026-01-05T18:29:43.529507+00:00"
|
|
6301
6456
|
},
|
|
6302
6457
|
"owner_view": {
|
|
6303
6458
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -6338,7 +6493,7 @@
|
|
|
6338
6493
|
"x-field-mutability": "read-only",
|
|
6339
6494
|
"x-original-maxLength": 1024,
|
|
6340
6495
|
"x-reconciled-from-discovery": true,
|
|
6341
|
-
"x-reconciled-at": "2026-01-
|
|
6496
|
+
"x-reconciled-at": "2026-01-05T18:29:43.529515+00:00"
|
|
6342
6497
|
},
|
|
6343
6498
|
"uid": {
|
|
6344
6499
|
"type": "string",
|
|
@@ -6359,7 +6514,7 @@
|
|
|
6359
6514
|
"x-original-maxLength": 1024,
|
|
6360
6515
|
"format": "uuid",
|
|
6361
6516
|
"x-reconciled-from-discovery": true,
|
|
6362
|
-
"x-reconciled-at": "2026-01-
|
|
6517
|
+
"x-reconciled-at": "2026-01-05T18:29:43.529520+00:00"
|
|
6363
6518
|
}
|
|
6364
6519
|
},
|
|
6365
6520
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6867,7 +7022,7 @@
|
|
|
6867
7022
|
},
|
|
6868
7023
|
"x-original-maxLength": 1024,
|
|
6869
7024
|
"x-reconciled-from-discovery": true,
|
|
6870
|
-
"x-reconciled-at": "2026-01-
|
|
7025
|
+
"x-reconciled-at": "2026-01-05T18:29:45.279182+00:00"
|
|
6871
7026
|
},
|
|
6872
7027
|
"namespace": {
|
|
6873
7028
|
"type": "string",
|
|
@@ -6886,7 +7041,7 @@
|
|
|
6886
7041
|
},
|
|
6887
7042
|
"x-original-maxLength": 1024,
|
|
6888
7043
|
"x-reconciled-from-discovery": true,
|
|
6889
|
-
"x-reconciled-at": "2026-01-
|
|
7044
|
+
"x-reconciled-at": "2026-01-05T18:29:45.279187+00:00"
|
|
6890
7045
|
}
|
|
6891
7046
|
},
|
|
6892
7047
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6984,7 +7139,7 @@
|
|
|
6984
7139
|
"maxLength": 17,
|
|
6985
7140
|
"minLength": 17,
|
|
6986
7141
|
"x-reconciled-from-discovery": true,
|
|
6987
|
-
"x-reconciled-at": "2026-01-
|
|
7142
|
+
"x-reconciled-at": "2026-01-05T18:29:45.279203+00:00"
|
|
6988
7143
|
},
|
|
6989
7144
|
"system_metadata": {
|
|
6990
7145
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -7331,7 +7486,7 @@
|
|
|
7331
7486
|
},
|
|
7332
7487
|
"x-original-maxLength": 1024,
|
|
7333
7488
|
"x-reconciled-from-discovery": true,
|
|
7334
|
-
"x-reconciled-at": "2026-01-
|
|
7489
|
+
"x-reconciled-at": "2026-01-05T18:29:45.279225+00:00"
|
|
7335
7490
|
},
|
|
7336
7491
|
"disabled": {
|
|
7337
7492
|
"type": "boolean",
|
|
@@ -7381,7 +7536,7 @@
|
|
|
7381
7536
|
},
|
|
7382
7537
|
"x-original-maxLength": 1024,
|
|
7383
7538
|
"x-reconciled-from-discovery": true,
|
|
7384
|
-
"x-reconciled-at": "2026-01-
|
|
7539
|
+
"x-reconciled-at": "2026-01-05T18:29:45.279235+00:00"
|
|
7385
7540
|
},
|
|
7386
7541
|
"namespace": {
|
|
7387
7542
|
"type": "string",
|
|
@@ -7400,7 +7555,7 @@
|
|
|
7400
7555
|
},
|
|
7401
7556
|
"x-original-maxLength": 1024,
|
|
7402
7557
|
"x-reconciled-from-discovery": true,
|
|
7403
|
-
"x-reconciled-at": "2026-01-
|
|
7558
|
+
"x-reconciled-at": "2026-01-05T18:29:45.279239+00:00"
|
|
7404
7559
|
},
|
|
7405
7560
|
"owner_view": {
|
|
7406
7561
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -7441,7 +7596,7 @@
|
|
|
7441
7596
|
"x-field-mutability": "read-only",
|
|
7442
7597
|
"x-original-maxLength": 1024,
|
|
7443
7598
|
"x-reconciled-from-discovery": true,
|
|
7444
|
-
"x-reconciled-at": "2026-01-
|
|
7599
|
+
"x-reconciled-at": "2026-01-05T18:29:45.279247+00:00"
|
|
7445
7600
|
},
|
|
7446
7601
|
"uid": {
|
|
7447
7602
|
"type": "string",
|
|
@@ -7462,7 +7617,7 @@
|
|
|
7462
7617
|
"x-original-maxLength": 1024,
|
|
7463
7618
|
"format": "uuid",
|
|
7464
7619
|
"x-reconciled-from-discovery": true,
|
|
7465
|
-
"x-reconciled-at": "2026-01-
|
|
7620
|
+
"x-reconciled-at": "2026-01-05T18:29:45.279252+00:00"
|
|
7466
7621
|
}
|
|
7467
7622
|
},
|
|
7468
7623
|
"x-f5xc-minimum-configuration": {
|