@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": "Object Storage",
|
|
5
5
|
"description": "Blob management for application component delivery across namespaces. Time-limited download links with cryptographic signing protect asset retrieval. Version-controlled packages organized by operating system type support artifact discovery. Query filtering by name, type, and release number enables programmatic access to integrator libraries and protection modules for mobile deployments.",
|
|
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": "Versioned library distribution for mobile app integrators. Presigned URLs enable secure downloads with OS-specific builds for iOS and Android.",
|
|
16
|
-
"x-f5xc-cli-domain": "object_storage"
|
|
16
|
+
"x-f5xc-cli-domain": "object_storage",
|
|
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
|
{
|
|
@@ -298,6 +348,13 @@
|
|
|
298
348
|
"latency": "moderate",
|
|
299
349
|
"resource_usage": "moderate"
|
|
300
350
|
}
|
|
351
|
+
},
|
|
352
|
+
"x-f5xc-discovered-response-time": {
|
|
353
|
+
"p50_ms": 200,
|
|
354
|
+
"p95_ms": 800,
|
|
355
|
+
"p99_ms": 2000,
|
|
356
|
+
"sample_count": 0,
|
|
357
|
+
"source": "estimate"
|
|
301
358
|
}
|
|
302
359
|
},
|
|
303
360
|
"x-displayname": "Stored Object.",
|
|
@@ -523,6 +580,13 @@
|
|
|
523
580
|
"latency": "low",
|
|
524
581
|
"resource_usage": "low"
|
|
525
582
|
}
|
|
583
|
+
},
|
|
584
|
+
"x-f5xc-discovered-response-time": {
|
|
585
|
+
"p50_ms": 200,
|
|
586
|
+
"p95_ms": 800,
|
|
587
|
+
"p99_ms": 2000,
|
|
588
|
+
"sample_count": 0,
|
|
589
|
+
"source": "estimate"
|
|
526
590
|
}
|
|
527
591
|
},
|
|
528
592
|
"x-displayname": "Stored Object.",
|
|
@@ -759,6 +823,13 @@
|
|
|
759
823
|
"latency": "moderate",
|
|
760
824
|
"resource_usage": "moderate"
|
|
761
825
|
}
|
|
826
|
+
},
|
|
827
|
+
"x-f5xc-discovered-response-time": {
|
|
828
|
+
"p50_ms": 200,
|
|
829
|
+
"p95_ms": 800,
|
|
830
|
+
"p99_ms": 2000,
|
|
831
|
+
"sample_count": 0,
|
|
832
|
+
"source": "estimate"
|
|
762
833
|
}
|
|
763
834
|
},
|
|
764
835
|
"x-displayname": "Stored Object.",
|
|
@@ -984,6 +1055,13 @@
|
|
|
984
1055
|
"latency": "low",
|
|
985
1056
|
"resource_usage": "low"
|
|
986
1057
|
}
|
|
1058
|
+
},
|
|
1059
|
+
"x-f5xc-discovered-response-time": {
|
|
1060
|
+
"p50_ms": 200,
|
|
1061
|
+
"p95_ms": 800,
|
|
1062
|
+
"p99_ms": 2000,
|
|
1063
|
+
"sample_count": 0,
|
|
1064
|
+
"source": "estimate"
|
|
987
1065
|
}
|
|
988
1066
|
},
|
|
989
1067
|
"x-displayname": "Stored Object.",
|
|
@@ -1222,6 +1300,13 @@
|
|
|
1222
1300
|
"latency": "low",
|
|
1223
1301
|
"resource_usage": "low"
|
|
1224
1302
|
}
|
|
1303
|
+
},
|
|
1304
|
+
"x-f5xc-discovered-response-time": {
|
|
1305
|
+
"p50_ms": 200,
|
|
1306
|
+
"p95_ms": 800,
|
|
1307
|
+
"p99_ms": 2000,
|
|
1308
|
+
"sample_count": 0,
|
|
1309
|
+
"source": "estimate"
|
|
1225
1310
|
}
|
|
1226
1311
|
},
|
|
1227
1312
|
"x-displayname": "Stored Object.",
|
|
@@ -1474,6 +1559,13 @@
|
|
|
1474
1559
|
"latency": "high",
|
|
1475
1560
|
"resource_usage": "moderate"
|
|
1476
1561
|
}
|
|
1562
|
+
},
|
|
1563
|
+
"x-f5xc-discovered-response-time": {
|
|
1564
|
+
"p50_ms": 500,
|
|
1565
|
+
"p95_ms": 1500,
|
|
1566
|
+
"p99_ms": 4000,
|
|
1567
|
+
"sample_count": 0,
|
|
1568
|
+
"source": "estimate"
|
|
1477
1569
|
}
|
|
1478
1570
|
},
|
|
1479
1571
|
"put": {
|
|
@@ -1704,6 +1796,13 @@
|
|
|
1704
1796
|
"latency": "low",
|
|
1705
1797
|
"resource_usage": "low"
|
|
1706
1798
|
}
|
|
1799
|
+
},
|
|
1800
|
+
"x-f5xc-discovered-response-time": {
|
|
1801
|
+
"p50_ms": 800,
|
|
1802
|
+
"p95_ms": 2500,
|
|
1803
|
+
"p99_ms": 6000,
|
|
1804
|
+
"sample_count": 0,
|
|
1805
|
+
"source": "estimate"
|
|
1707
1806
|
}
|
|
1708
1807
|
},
|
|
1709
1808
|
"x-displayname": "Stored Object.",
|
|
@@ -1931,6 +2030,13 @@
|
|
|
1931
2030
|
"latency": "low",
|
|
1932
2031
|
"resource_usage": "low"
|
|
1933
2032
|
}
|
|
2033
|
+
},
|
|
2034
|
+
"x-f5xc-discovered-response-time": {
|
|
2035
|
+
"p50_ms": 200,
|
|
2036
|
+
"p95_ms": 800,
|
|
2037
|
+
"p99_ms": 2000,
|
|
2038
|
+
"sample_count": 0,
|
|
2039
|
+
"source": "estimate"
|
|
1934
2040
|
}
|
|
1935
2041
|
},
|
|
1936
2042
|
"delete": {
|
|
@@ -2180,6 +2286,13 @@
|
|
|
2180
2286
|
"latency": "high",
|
|
2181
2287
|
"resource_usage": "moderate"
|
|
2182
2288
|
}
|
|
2289
|
+
},
|
|
2290
|
+
"x-f5xc-discovered-response-time": {
|
|
2291
|
+
"p50_ms": 500,
|
|
2292
|
+
"p95_ms": 1500,
|
|
2293
|
+
"p99_ms": 4000,
|
|
2294
|
+
"sample_count": 0,
|
|
2295
|
+
"source": "estimate"
|
|
2183
2296
|
}
|
|
2184
2297
|
},
|
|
2185
2298
|
"x-displayname": "Stored Object.",
|
|
@@ -2319,7 +2432,7 @@
|
|
|
2319
2432
|
},
|
|
2320
2433
|
"x-original-maxLength": 512,
|
|
2321
2434
|
"x-reconciled-from-discovery": true,
|
|
2322
|
-
"x-reconciled-at": "2026-01-
|
|
2435
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394718+00:00"
|
|
2323
2436
|
},
|
|
2324
2437
|
"mobile_app_shield": {
|
|
2325
2438
|
"$ref": "#/components/schemas/stored_objectMobileAppShieldAttributes"
|
|
@@ -2360,7 +2473,7 @@
|
|
|
2360
2473
|
},
|
|
2361
2474
|
"x-original-maxLength": 512,
|
|
2362
2475
|
"x-reconciled-from-discovery": true,
|
|
2363
|
-
"x-reconciled-at": "2026-01-
|
|
2476
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394729+00:00"
|
|
2364
2477
|
},
|
|
2365
2478
|
"namespace": {
|
|
2366
2479
|
"type": "string",
|
|
@@ -2386,7 +2499,7 @@
|
|
|
2386
2499
|
},
|
|
2387
2500
|
"x-original-maxLength": 1024,
|
|
2388
2501
|
"x-reconciled-from-discovery": true,
|
|
2389
|
-
"x-reconciled-at": "2026-01-
|
|
2502
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394734+00:00"
|
|
2390
2503
|
},
|
|
2391
2504
|
"no_attributes": {
|
|
2392
2505
|
"$ref": "#/components/schemas/schemaEmpty"
|
|
@@ -2656,7 +2769,7 @@
|
|
|
2656
2769
|
},
|
|
2657
2770
|
"x-original-maxLength": 1024,
|
|
2658
2771
|
"x-reconciled-from-discovery": true,
|
|
2659
|
-
"x-reconciled-at": "2026-01-
|
|
2772
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394763+00:00"
|
|
2660
2773
|
},
|
|
2661
2774
|
"no_attributes": {
|
|
2662
2775
|
"$ref": "#/components/schemas/schemaEmpty"
|
|
@@ -2679,7 +2792,7 @@
|
|
|
2679
2792
|
"x-field-mutability": "read-only",
|
|
2680
2793
|
"x-original-maxLength": 1024,
|
|
2681
2794
|
"x-reconciled-from-discovery": true,
|
|
2682
|
-
"x-reconciled-at": "2026-01-
|
|
2795
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394769+00:00"
|
|
2683
2796
|
},
|
|
2684
2797
|
"versions": {
|
|
2685
2798
|
"type": "array",
|
|
@@ -3042,7 +3155,7 @@
|
|
|
3042
3155
|
},
|
|
3043
3156
|
"x-original-maxLength": 512,
|
|
3044
3157
|
"x-reconciled-from-discovery": true,
|
|
3045
|
-
"x-reconciled-at": "2026-01-
|
|
3158
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394794+00:00"
|
|
3046
3159
|
},
|
|
3047
3160
|
"mobile_app_shield": {
|
|
3048
3161
|
"$ref": "#/components/schemas/stored_objectMobileAppShieldAttributes"
|
|
@@ -3076,7 +3189,7 @@
|
|
|
3076
3189
|
},
|
|
3077
3190
|
"x-original-maxLength": 1024,
|
|
3078
3191
|
"x-reconciled-from-discovery": true,
|
|
3079
|
-
"x-reconciled-at": "2026-01-
|
|
3192
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394802+00:00"
|
|
3080
3193
|
},
|
|
3081
3194
|
"namespace": {
|
|
3082
3195
|
"type": "string",
|
|
@@ -3100,7 +3213,7 @@
|
|
|
3100
3213
|
},
|
|
3101
3214
|
"x-original-maxLength": 1024,
|
|
3102
3215
|
"x-reconciled-from-discovery": true,
|
|
3103
|
-
"x-reconciled-at": "2026-01-
|
|
3216
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394807+00:00"
|
|
3104
3217
|
},
|
|
3105
3218
|
"no_attributes": {
|
|
3106
3219
|
"$ref": "#/components/schemas/schemaEmpty"
|
|
@@ -3150,7 +3263,7 @@
|
|
|
3150
3263
|
},
|
|
3151
3264
|
"x-original-maxLength": 1024,
|
|
3152
3265
|
"x-reconciled-from-discovery": true,
|
|
3153
|
-
"x-reconciled-at": "2026-01-
|
|
3266
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394814+00:00"
|
|
3154
3267
|
}
|
|
3155
3268
|
},
|
|
3156
3269
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3248,7 +3361,7 @@
|
|
|
3248
3361
|
},
|
|
3249
3362
|
"x-original-maxLength": 512,
|
|
3250
3363
|
"x-reconciled-from-discovery": true,
|
|
3251
|
-
"x-reconciled-at": "2026-01-
|
|
3364
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394821+00:00"
|
|
3252
3365
|
},
|
|
3253
3366
|
"latest_version": {
|
|
3254
3367
|
"type": "boolean",
|
|
@@ -3301,7 +3414,7 @@
|
|
|
3301
3414
|
},
|
|
3302
3415
|
"x-original-maxLength": 1024,
|
|
3303
3416
|
"x-reconciled-from-discovery": true,
|
|
3304
|
-
"x-reconciled-at": "2026-01-
|
|
3417
|
+
"x-reconciled-at": "2026-01-05T18:29:59.394828+00:00"
|
|
3305
3418
|
}
|
|
3306
3419
|
},
|
|
3307
3420
|
"x-f5xc-minimum-configuration": {
|