@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": "Nginx One",
|
|
5
5
|
"description": "Dataplane server registration with health status tracking and location awareness. Service discovery bindings for dynamic upstream resolution. Cloud service gateway integration for hybrid deployments. WAF policy attachment and instance-level security controls.",
|
|
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": "Instance discovery, WAF integration, and service mesh connectivity. Subscription lifecycle and configuration synchronization.",
|
|
16
|
-
"x-f5xc-cli-domain": "nginx_one"
|
|
16
|
+
"x-f5xc-cli-domain": "nginx_one",
|
|
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
|
{
|
|
@@ -293,6 +343,13 @@
|
|
|
293
343
|
"latency": "moderate",
|
|
294
344
|
"resource_usage": "moderate"
|
|
295
345
|
}
|
|
346
|
+
},
|
|
347
|
+
"x-f5xc-discovered-response-time": {
|
|
348
|
+
"p50_ms": 200,
|
|
349
|
+
"p95_ms": 800,
|
|
350
|
+
"p99_ms": 2000,
|
|
351
|
+
"sample_count": 0,
|
|
352
|
+
"source": "estimate"
|
|
296
353
|
}
|
|
297
354
|
},
|
|
298
355
|
"x-displayname": "NGINX One CSG Object configuration.",
|
|
@@ -511,6 +568,13 @@
|
|
|
511
568
|
"latency": "low",
|
|
512
569
|
"resource_usage": "low"
|
|
513
570
|
}
|
|
571
|
+
},
|
|
572
|
+
"x-f5xc-discovered-response-time": {
|
|
573
|
+
"p50_ms": 200,
|
|
574
|
+
"p95_ms": 800,
|
|
575
|
+
"p99_ms": 2000,
|
|
576
|
+
"sample_count": 0,
|
|
577
|
+
"source": "estimate"
|
|
514
578
|
}
|
|
515
579
|
},
|
|
516
580
|
"x-displayname": "NGINX One CSG Object configuration.",
|
|
@@ -738,6 +802,13 @@
|
|
|
738
802
|
"latency": "moderate",
|
|
739
803
|
"resource_usage": "moderate"
|
|
740
804
|
}
|
|
805
|
+
},
|
|
806
|
+
"x-f5xc-discovered-response-time": {
|
|
807
|
+
"p50_ms": 200,
|
|
808
|
+
"p95_ms": 800,
|
|
809
|
+
"p99_ms": 2000,
|
|
810
|
+
"sample_count": 0,
|
|
811
|
+
"source": "estimate"
|
|
741
812
|
}
|
|
742
813
|
},
|
|
743
814
|
"x-displayname": "NGINX One Instance Object configuration.",
|
|
@@ -956,6 +1027,13 @@
|
|
|
956
1027
|
"latency": "low",
|
|
957
1028
|
"resource_usage": "low"
|
|
958
1029
|
}
|
|
1030
|
+
},
|
|
1031
|
+
"x-f5xc-discovered-response-time": {
|
|
1032
|
+
"p50_ms": 200,
|
|
1033
|
+
"p95_ms": 800,
|
|
1034
|
+
"p99_ms": 2000,
|
|
1035
|
+
"sample_count": 0,
|
|
1036
|
+
"source": "estimate"
|
|
959
1037
|
}
|
|
960
1038
|
},
|
|
961
1039
|
"x-displayname": "NGINX One Instance Object configuration.",
|
|
@@ -1170,6 +1248,13 @@
|
|
|
1170
1248
|
"latency": "low",
|
|
1171
1249
|
"resource_usage": "low"
|
|
1172
1250
|
}
|
|
1251
|
+
},
|
|
1252
|
+
"x-f5xc-discovered-response-time": {
|
|
1253
|
+
"p50_ms": 1000,
|
|
1254
|
+
"p95_ms": 3000,
|
|
1255
|
+
"p99_ms": 8000,
|
|
1256
|
+
"sample_count": 0,
|
|
1257
|
+
"source": "estimate"
|
|
1173
1258
|
}
|
|
1174
1259
|
},
|
|
1175
1260
|
"x-displayname": "NGINX One Server APIs.",
|
|
@@ -1397,6 +1482,13 @@
|
|
|
1397
1482
|
"latency": "moderate",
|
|
1398
1483
|
"resource_usage": "moderate"
|
|
1399
1484
|
}
|
|
1485
|
+
},
|
|
1486
|
+
"x-f5xc-discovered-response-time": {
|
|
1487
|
+
"p50_ms": 200,
|
|
1488
|
+
"p95_ms": 800,
|
|
1489
|
+
"p99_ms": 2000,
|
|
1490
|
+
"sample_count": 0,
|
|
1491
|
+
"source": "estimate"
|
|
1400
1492
|
}
|
|
1401
1493
|
},
|
|
1402
1494
|
"x-displayname": "NGINX One Server APIs.",
|
|
@@ -1616,6 +1708,13 @@
|
|
|
1616
1708
|
"latency": "low",
|
|
1617
1709
|
"resource_usage": "low"
|
|
1618
1710
|
}
|
|
1711
|
+
},
|
|
1712
|
+
"x-f5xc-discovered-response-time": {
|
|
1713
|
+
"p50_ms": 200,
|
|
1714
|
+
"p95_ms": 800,
|
|
1715
|
+
"p99_ms": 2000,
|
|
1716
|
+
"sample_count": 0,
|
|
1717
|
+
"source": "estimate"
|
|
1619
1718
|
}
|
|
1620
1719
|
},
|
|
1621
1720
|
"x-displayname": "NGINX One Server APIs.",
|
|
@@ -1815,6 +1914,13 @@
|
|
|
1815
1914
|
"latency": "low",
|
|
1816
1915
|
"resource_usage": "low"
|
|
1817
1916
|
}
|
|
1917
|
+
},
|
|
1918
|
+
"x-f5xc-discovered-response-time": {
|
|
1919
|
+
"p50_ms": 1000,
|
|
1920
|
+
"p95_ms": 3000,
|
|
1921
|
+
"p99_ms": 8000,
|
|
1922
|
+
"sample_count": 0,
|
|
1923
|
+
"source": "estimate"
|
|
1818
1924
|
}
|
|
1819
1925
|
},
|
|
1820
1926
|
"x-displayname": "NGINX One Subscription API.",
|
|
@@ -2014,6 +2120,13 @@
|
|
|
2014
2120
|
"latency": "low",
|
|
2015
2121
|
"resource_usage": "low"
|
|
2016
2122
|
}
|
|
2123
|
+
},
|
|
2124
|
+
"x-f5xc-discovered-response-time": {
|
|
2125
|
+
"p50_ms": 1000,
|
|
2126
|
+
"p95_ms": 3000,
|
|
2127
|
+
"p99_ms": 8000,
|
|
2128
|
+
"sample_count": 0,
|
|
2129
|
+
"source": "estimate"
|
|
2017
2130
|
}
|
|
2018
2131
|
},
|
|
2019
2132
|
"x-displayname": "NGINX One Subscription API.",
|
|
@@ -2228,6 +2341,13 @@
|
|
|
2228
2341
|
"latency": "low",
|
|
2229
2342
|
"resource_usage": "low"
|
|
2230
2343
|
}
|
|
2344
|
+
},
|
|
2345
|
+
"x-f5xc-discovered-response-time": {
|
|
2346
|
+
"p50_ms": 1000,
|
|
2347
|
+
"p95_ms": 3000,
|
|
2348
|
+
"p99_ms": 8000,
|
|
2349
|
+
"sample_count": 0,
|
|
2350
|
+
"source": "estimate"
|
|
2231
2351
|
}
|
|
2232
2352
|
},
|
|
2233
2353
|
"x-displayname": "NGINX Service Discovery.",
|
|
@@ -2450,6 +2570,13 @@
|
|
|
2450
2570
|
"latency": "low",
|
|
2451
2571
|
"resource_usage": "low"
|
|
2452
2572
|
}
|
|
2573
|
+
},
|
|
2574
|
+
"x-f5xc-discovered-response-time": {
|
|
2575
|
+
"p50_ms": 800,
|
|
2576
|
+
"p95_ms": 2500,
|
|
2577
|
+
"p99_ms": 6000,
|
|
2578
|
+
"sample_count": 0,
|
|
2579
|
+
"source": "estimate"
|
|
2453
2580
|
}
|
|
2454
2581
|
},
|
|
2455
2582
|
"x-displayname": "NGINX Service Discovery.",
|
|
@@ -2677,6 +2804,13 @@
|
|
|
2677
2804
|
"latency": "moderate",
|
|
2678
2805
|
"resource_usage": "moderate"
|
|
2679
2806
|
}
|
|
2807
|
+
},
|
|
2808
|
+
"x-f5xc-discovered-response-time": {
|
|
2809
|
+
"p50_ms": 200,
|
|
2810
|
+
"p95_ms": 800,
|
|
2811
|
+
"p99_ms": 2000,
|
|
2812
|
+
"sample_count": 0,
|
|
2813
|
+
"source": "estimate"
|
|
2680
2814
|
}
|
|
2681
2815
|
},
|
|
2682
2816
|
"x-displayname": "NGINX Service Discovery.",
|
|
@@ -2898,6 +3032,13 @@
|
|
|
2898
3032
|
"latency": "low",
|
|
2899
3033
|
"resource_usage": "low"
|
|
2900
3034
|
}
|
|
3035
|
+
},
|
|
3036
|
+
"x-f5xc-discovered-response-time": {
|
|
3037
|
+
"p50_ms": 200,
|
|
3038
|
+
"p95_ms": 800,
|
|
3039
|
+
"p99_ms": 2000,
|
|
3040
|
+
"sample_count": 0,
|
|
3041
|
+
"source": "estimate"
|
|
2901
3042
|
}
|
|
2902
3043
|
},
|
|
2903
3044
|
"delete": {
|
|
@@ -3117,6 +3258,13 @@
|
|
|
3117
3258
|
"latency": "high",
|
|
3118
3259
|
"resource_usage": "moderate"
|
|
3119
3260
|
}
|
|
3261
|
+
},
|
|
3262
|
+
"x-f5xc-discovered-response-time": {
|
|
3263
|
+
"p50_ms": 500,
|
|
3264
|
+
"p95_ms": 1500,
|
|
3265
|
+
"p99_ms": 4000,
|
|
3266
|
+
"sample_count": 0,
|
|
3267
|
+
"source": "estimate"
|
|
3120
3268
|
}
|
|
3121
3269
|
},
|
|
3122
3270
|
"x-displayname": "NGINX Service Discovery.",
|
|
@@ -3175,7 +3323,7 @@
|
|
|
3175
3323
|
"readOnly": true,
|
|
3176
3324
|
"x-original-maxLength": 1024,
|
|
3177
3325
|
"x-reconciled-from-discovery": true,
|
|
3178
|
-
"x-reconciled-at": "2026-01-
|
|
3326
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842715+00:00"
|
|
3179
3327
|
},
|
|
3180
3328
|
"name": {
|
|
3181
3329
|
"type": "string",
|
|
@@ -3194,7 +3342,7 @@
|
|
|
3194
3342
|
},
|
|
3195
3343
|
"x-original-maxLength": 1024,
|
|
3196
3344
|
"x-reconciled-from-discovery": true,
|
|
3197
|
-
"x-reconciled-at": "2026-01-
|
|
3345
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842722+00:00"
|
|
3198
3346
|
},
|
|
3199
3347
|
"namespace": {
|
|
3200
3348
|
"type": "string",
|
|
@@ -3213,7 +3361,7 @@
|
|
|
3213
3361
|
},
|
|
3214
3362
|
"x-original-maxLength": 1024,
|
|
3215
3363
|
"x-reconciled-from-discovery": true,
|
|
3216
|
-
"x-reconciled-at": "2026-01-
|
|
3364
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842727+00:00"
|
|
3217
3365
|
},
|
|
3218
3366
|
"tenant": {
|
|
3219
3367
|
"type": "string",
|
|
@@ -3234,7 +3382,7 @@
|
|
|
3234
3382
|
"x-field-mutability": "read-only",
|
|
3235
3383
|
"x-original-maxLength": 1024,
|
|
3236
3384
|
"x-reconciled-from-discovery": true,
|
|
3237
|
-
"x-reconciled-at": "2026-01-
|
|
3385
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842731+00:00"
|
|
3238
3386
|
},
|
|
3239
3387
|
"uid": {
|
|
3240
3388
|
"type": "string",
|
|
@@ -3256,7 +3404,7 @@
|
|
|
3256
3404
|
"x-original-maxLength": 1024,
|
|
3257
3405
|
"format": "uuid",
|
|
3258
3406
|
"x-reconciled-from-discovery": true,
|
|
3259
|
-
"x-reconciled-at": "2026-01-
|
|
3407
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842737+00:00"
|
|
3260
3408
|
}
|
|
3261
3409
|
},
|
|
3262
3410
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3460,7 +3608,7 @@
|
|
|
3460
3608
|
},
|
|
3461
3609
|
"x-original-maxLength": 1024,
|
|
3462
3610
|
"x-reconciled-from-discovery": true,
|
|
3463
|
-
"x-reconciled-at": "2026-01-
|
|
3611
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842757+00:00"
|
|
3464
3612
|
},
|
|
3465
3613
|
"disabled": {
|
|
3466
3614
|
"type": "boolean",
|
|
@@ -3510,7 +3658,7 @@
|
|
|
3510
3658
|
},
|
|
3511
3659
|
"x-original-maxLength": 1024,
|
|
3512
3660
|
"x-reconciled-from-discovery": true,
|
|
3513
|
-
"x-reconciled-at": "2026-01-
|
|
3661
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842768+00:00"
|
|
3514
3662
|
},
|
|
3515
3663
|
"namespace": {
|
|
3516
3664
|
"type": "string",
|
|
@@ -3529,7 +3677,7 @@
|
|
|
3529
3677
|
},
|
|
3530
3678
|
"x-original-maxLength": 1024,
|
|
3531
3679
|
"x-reconciled-from-discovery": true,
|
|
3532
|
-
"x-reconciled-at": "2026-01-
|
|
3680
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842772+00:00"
|
|
3533
3681
|
},
|
|
3534
3682
|
"owner_view": {
|
|
3535
3683
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -3555,7 +3703,7 @@
|
|
|
3555
3703
|
"x-field-mutability": "read-only",
|
|
3556
3704
|
"x-original-maxLength": 1024,
|
|
3557
3705
|
"x-reconciled-from-discovery": true,
|
|
3558
|
-
"x-reconciled-at": "2026-01-
|
|
3706
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842779+00:00"
|
|
3559
3707
|
},
|
|
3560
3708
|
"uid": {
|
|
3561
3709
|
"type": "string",
|
|
@@ -3576,7 +3724,7 @@
|
|
|
3576
3724
|
"x-original-maxLength": 1024,
|
|
3577
3725
|
"format": "uuid",
|
|
3578
3726
|
"x-reconciled-from-discovery": true,
|
|
3579
|
-
"x-reconciled-at": "2026-01-
|
|
3727
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842784+00:00"
|
|
3580
3728
|
}
|
|
3581
3729
|
},
|
|
3582
3730
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3825,7 +3973,7 @@
|
|
|
3825
3973
|
},
|
|
3826
3974
|
"x-original-maxLength": 1024,
|
|
3827
3975
|
"x-reconciled-from-discovery": true,
|
|
3828
|
-
"x-reconciled-at": "2026-01-
|
|
3976
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842811+00:00"
|
|
3829
3977
|
}
|
|
3830
3978
|
},
|
|
3831
3979
|
"x-f5xc-minimum-configuration": {
|
|
@@ -3936,7 +4084,7 @@
|
|
|
3936
4084
|
},
|
|
3937
4085
|
"x-original-maxLength": 1024,
|
|
3938
4086
|
"x-reconciled-from-discovery": true,
|
|
3939
|
-
"x-reconciled-at": "2026-01-
|
|
4087
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842821+00:00"
|
|
3940
4088
|
}
|
|
3941
4089
|
},
|
|
3942
4090
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4046,7 +4194,7 @@
|
|
|
4046
4194
|
},
|
|
4047
4195
|
"x-original-maxLength": 1200,
|
|
4048
4196
|
"x-reconciled-from-discovery": true,
|
|
4049
|
-
"x-reconciled-at": "2026-01-
|
|
4197
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842832+00:00"
|
|
4050
4198
|
},
|
|
4051
4199
|
"disable": {
|
|
4052
4200
|
"type": "boolean",
|
|
@@ -4101,7 +4249,7 @@
|
|
|
4101
4249
|
},
|
|
4102
4250
|
"x-original-maxLength": 1024,
|
|
4103
4251
|
"x-reconciled-from-discovery": true,
|
|
4104
|
-
"x-reconciled-at": "2026-01-
|
|
4252
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842840+00:00"
|
|
4105
4253
|
},
|
|
4106
4254
|
"namespace": {
|
|
4107
4255
|
"type": "string",
|
|
@@ -4120,7 +4268,7 @@
|
|
|
4120
4268
|
},
|
|
4121
4269
|
"x-original-maxLength": 1024,
|
|
4122
4270
|
"x-reconciled-from-discovery": true,
|
|
4123
|
-
"x-reconciled-at": "2026-01-
|
|
4271
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842844+00:00"
|
|
4124
4272
|
}
|
|
4125
4273
|
},
|
|
4126
4274
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4181,7 +4329,7 @@
|
|
|
4181
4329
|
},
|
|
4182
4330
|
"x-original-maxLength": 1024,
|
|
4183
4331
|
"x-reconciled-from-discovery": true,
|
|
4184
|
-
"x-reconciled-at": "2026-01-
|
|
4332
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842851+00:00"
|
|
4185
4333
|
},
|
|
4186
4334
|
"status": {
|
|
4187
4335
|
"type": "string",
|
|
@@ -4200,7 +4348,7 @@
|
|
|
4200
4348
|
},
|
|
4201
4349
|
"x-original-maxLength": 1024,
|
|
4202
4350
|
"x-reconciled-from-discovery": true,
|
|
4203
|
-
"x-reconciled-at": "2026-01-
|
|
4351
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842855+00:00"
|
|
4204
4352
|
}
|
|
4205
4353
|
},
|
|
4206
4354
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4378,7 +4526,7 @@
|
|
|
4378
4526
|
"x-field-mutability": "read-only",
|
|
4379
4527
|
"x-original-maxLength": 1024,
|
|
4380
4528
|
"x-reconciled-from-discovery": true,
|
|
4381
|
-
"x-reconciled-at": "2026-01-
|
|
4529
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842874+00:00"
|
|
4382
4530
|
},
|
|
4383
4531
|
"uid": {
|
|
4384
4532
|
"type": "string",
|
|
@@ -4399,7 +4547,7 @@
|
|
|
4399
4547
|
"x-original-maxLength": 1024,
|
|
4400
4548
|
"format": "uuid",
|
|
4401
4549
|
"x-reconciled-from-discovery": true,
|
|
4402
|
-
"x-reconciled-at": "2026-01-
|
|
4550
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842879+00:00"
|
|
4403
4551
|
}
|
|
4404
4552
|
},
|
|
4405
4553
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4449,7 +4597,7 @@
|
|
|
4449
4597
|
},
|
|
4450
4598
|
"x-original-maxLength": 1024,
|
|
4451
4599
|
"x-reconciled-from-discovery": true,
|
|
4452
|
-
"x-reconciled-at": "2026-01-
|
|
4600
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842884+00:00"
|
|
4453
4601
|
},
|
|
4454
4602
|
"name": {
|
|
4455
4603
|
"type": "string",
|
|
@@ -4468,7 +4616,7 @@
|
|
|
4468
4616
|
},
|
|
4469
4617
|
"x-original-maxLength": 1024,
|
|
4470
4618
|
"x-reconciled-from-discovery": true,
|
|
4471
|
-
"x-reconciled-at": "2026-01-
|
|
4619
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842888+00:00"
|
|
4472
4620
|
},
|
|
4473
4621
|
"namespace": {
|
|
4474
4622
|
"type": "string",
|
|
@@ -4487,7 +4635,7 @@
|
|
|
4487
4635
|
},
|
|
4488
4636
|
"x-original-maxLength": 1024,
|
|
4489
4637
|
"x-reconciled-from-discovery": true,
|
|
4490
|
-
"x-reconciled-at": "2026-01-
|
|
4638
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842893+00:00"
|
|
4491
4639
|
},
|
|
4492
4640
|
"uid": {
|
|
4493
4641
|
"type": "string",
|
|
@@ -4508,7 +4656,7 @@
|
|
|
4508
4656
|
"x-original-maxLength": 1024,
|
|
4509
4657
|
"format": "uuid",
|
|
4510
4658
|
"x-reconciled-from-discovery": true,
|
|
4511
|
-
"x-reconciled-at": "2026-01-
|
|
4659
|
+
"x-reconciled-at": "2026-01-05T18:29:35.842898+00:00"
|
|
4512
4660
|
}
|
|
4513
4661
|
},
|
|
4514
4662
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4767,7 +4915,7 @@
|
|
|
4767
4915
|
},
|
|
4768
4916
|
"x-original-maxLength": 1024,
|
|
4769
4917
|
"x-reconciled-from-discovery": true,
|
|
4770
|
-
"x-reconciled-at": "2026-01-
|
|
4918
|
+
"x-reconciled-at": "2026-01-05T18:29:36.096732+00:00"
|
|
4771
4919
|
},
|
|
4772
4920
|
"disabled": {
|
|
4773
4921
|
"type": "boolean",
|
|
@@ -4817,7 +4965,7 @@
|
|
|
4817
4965
|
},
|
|
4818
4966
|
"x-original-maxLength": 1024,
|
|
4819
4967
|
"x-reconciled-from-discovery": true,
|
|
4820
|
-
"x-reconciled-at": "2026-01-
|
|
4968
|
+
"x-reconciled-at": "2026-01-05T18:29:36.096743+00:00"
|
|
4821
4969
|
},
|
|
4822
4970
|
"namespace": {
|
|
4823
4971
|
"type": "string",
|
|
@@ -4836,7 +4984,7 @@
|
|
|
4836
4984
|
},
|
|
4837
4985
|
"x-original-maxLength": 1024,
|
|
4838
4986
|
"x-reconciled-from-discovery": true,
|
|
4839
|
-
"x-reconciled-at": "2026-01-
|
|
4987
|
+
"x-reconciled-at": "2026-01-05T18:29:36.096747+00:00"
|
|
4840
4988
|
},
|
|
4841
4989
|
"owner_view": {
|
|
4842
4990
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -4862,7 +5010,7 @@
|
|
|
4862
5010
|
"x-field-mutability": "read-only",
|
|
4863
5011
|
"x-original-maxLength": 1024,
|
|
4864
5012
|
"x-reconciled-from-discovery": true,
|
|
4865
|
-
"x-reconciled-at": "2026-01-
|
|
5013
|
+
"x-reconciled-at": "2026-01-05T18:29:36.096754+00:00"
|
|
4866
5014
|
},
|
|
4867
5015
|
"uid": {
|
|
4868
5016
|
"type": "string",
|
|
@@ -4883,7 +5031,7 @@
|
|
|
4883
5031
|
"x-original-maxLength": 1024,
|
|
4884
5032
|
"format": "uuid",
|
|
4885
5033
|
"x-reconciled-from-discovery": true,
|
|
4886
|
-
"x-reconciled-at": "2026-01-
|
|
5034
|
+
"x-reconciled-at": "2026-01-05T18:29:36.096759+00:00"
|
|
4887
5035
|
}
|
|
4888
5036
|
},
|
|
4889
5037
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4991,7 +5139,7 @@
|
|
|
4991
5139
|
},
|
|
4992
5140
|
"x-original-maxLength": 1024,
|
|
4993
5141
|
"x-reconciled-from-discovery": true,
|
|
4994
|
-
"x-reconciled-at": "2026-01-
|
|
5142
|
+
"x-reconciled-at": "2026-01-05T18:29:36.402905+00:00"
|
|
4995
5143
|
}
|
|
4996
5144
|
},
|
|
4997
5145
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5124,7 +5272,7 @@
|
|
|
5124
5272
|
"maxLength": 17,
|
|
5125
5273
|
"minLength": 17,
|
|
5126
5274
|
"x-reconciled-from-discovery": true,
|
|
5127
|
-
"x-reconciled-at": "2026-01-
|
|
5275
|
+
"x-reconciled-at": "2026-01-05T18:29:36.402921+00:00"
|
|
5128
5276
|
},
|
|
5129
5277
|
"system_metadata": {
|
|
5130
5278
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -5255,7 +5403,7 @@
|
|
|
5255
5403
|
},
|
|
5256
5404
|
"x-original-maxLength": 1024,
|
|
5257
5405
|
"x-reconciled-from-discovery": true,
|
|
5258
|
-
"x-reconciled-at": "2026-01-
|
|
5406
|
+
"x-reconciled-at": "2026-01-05T18:29:36.402933+00:00"
|
|
5259
5407
|
},
|
|
5260
5408
|
"disabled": {
|
|
5261
5409
|
"type": "boolean",
|
|
@@ -5305,7 +5453,7 @@
|
|
|
5305
5453
|
},
|
|
5306
5454
|
"x-original-maxLength": 1024,
|
|
5307
5455
|
"x-reconciled-from-discovery": true,
|
|
5308
|
-
"x-reconciled-at": "2026-01-
|
|
5456
|
+
"x-reconciled-at": "2026-01-05T18:29:36.402943+00:00"
|
|
5309
5457
|
},
|
|
5310
5458
|
"namespace": {
|
|
5311
5459
|
"type": "string",
|
|
@@ -5324,7 +5472,7 @@
|
|
|
5324
5472
|
},
|
|
5325
5473
|
"x-original-maxLength": 1024,
|
|
5326
5474
|
"x-reconciled-from-discovery": true,
|
|
5327
|
-
"x-reconciled-at": "2026-01-
|
|
5475
|
+
"x-reconciled-at": "2026-01-05T18:29:36.402948+00:00"
|
|
5328
5476
|
},
|
|
5329
5477
|
"owner_view": {
|
|
5330
5478
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -5365,7 +5513,7 @@
|
|
|
5365
5513
|
"x-field-mutability": "read-only",
|
|
5366
5514
|
"x-original-maxLength": 1024,
|
|
5367
5515
|
"x-reconciled-from-discovery": true,
|
|
5368
|
-
"x-reconciled-at": "2026-01-
|
|
5516
|
+
"x-reconciled-at": "2026-01-05T18:29:36.402956+00:00"
|
|
5369
5517
|
},
|
|
5370
5518
|
"uid": {
|
|
5371
5519
|
"type": "string",
|
|
@@ -5386,7 +5534,7 @@
|
|
|
5386
5534
|
"x-original-maxLength": 1024,
|
|
5387
5535
|
"format": "uuid",
|
|
5388
5536
|
"x-reconciled-from-discovery": true,
|
|
5389
|
-
"x-reconciled-at": "2026-01-
|
|
5537
|
+
"x-reconciled-at": "2026-01-05T18:29:36.402961+00:00"
|
|
5390
5538
|
}
|
|
5391
5539
|
},
|
|
5392
5540
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5706,7 +5854,7 @@
|
|
|
5706
5854
|
},
|
|
5707
5855
|
"x-original-maxLength": 1024,
|
|
5708
5856
|
"x-reconciled-from-discovery": true,
|
|
5709
|
-
"x-reconciled-at": "2026-01-
|
|
5857
|
+
"x-reconciled-at": "2026-01-05T18:29:36.402989+00:00"
|
|
5710
5858
|
},
|
|
5711
5859
|
"waf_spec": {
|
|
5712
5860
|
"$ref": "#/components/schemas/nginx_instanceWAFSpec"
|
|
@@ -5780,7 +5928,7 @@
|
|
|
5780
5928
|
},
|
|
5781
5929
|
"x-original-maxLength": 1024,
|
|
5782
5930
|
"x-reconciled-from-discovery": true,
|
|
5783
|
-
"x-reconciled-at": "2026-01-
|
|
5931
|
+
"x-reconciled-at": "2026-01-05T18:29:36.403006+00:00"
|
|
5784
5932
|
},
|
|
5785
5933
|
"service_name": {
|
|
5786
5934
|
"type": "string",
|
|
@@ -5819,7 +5967,7 @@
|
|
|
5819
5967
|
},
|
|
5820
5968
|
"x-original-maxLength": 1024,
|
|
5821
5969
|
"x-reconciled-from-discovery": true,
|
|
5822
|
-
"x-reconciled-at": "2026-01-
|
|
5970
|
+
"x-reconciled-at": "2026-01-05T18:29:36.403014+00:00"
|
|
5823
5971
|
},
|
|
5824
5972
|
"type": {
|
|
5825
5973
|
"type": "string",
|
|
@@ -5955,7 +6103,7 @@
|
|
|
5955
6103
|
"x-original-maxLength": 1024,
|
|
5956
6104
|
"format": "uuid",
|
|
5957
6105
|
"x-reconciled-from-discovery": true,
|
|
5958
|
-
"x-reconciled-at": "2026-01-
|
|
6106
|
+
"x-reconciled-at": "2026-01-05T18:29:36.403076+00:00"
|
|
5959
6107
|
},
|
|
5960
6108
|
"vtrp_id": {
|
|
5961
6109
|
"type": "string",
|
|
@@ -6061,7 +6209,7 @@
|
|
|
6061
6209
|
},
|
|
6062
6210
|
"x-original-maxLength": 128,
|
|
6063
6211
|
"x-reconciled-from-discovery": true,
|
|
6064
|
-
"x-reconciled-at": "2026-01-
|
|
6212
|
+
"x-reconciled-at": "2026-01-05T18:29:36.403140+00:00"
|
|
6065
6213
|
},
|
|
6066
6214
|
"namespace": {
|
|
6067
6215
|
"type": "string",
|
|
@@ -6086,7 +6234,7 @@
|
|
|
6086
6234
|
},
|
|
6087
6235
|
"x-original-maxLength": 64,
|
|
6088
6236
|
"x-reconciled-from-discovery": true,
|
|
6089
|
-
"x-reconciled-at": "2026-01-
|
|
6237
|
+
"x-reconciled-at": "2026-01-05T18:29:36.403144+00:00"
|
|
6090
6238
|
},
|
|
6091
6239
|
"tenant": {
|
|
6092
6240
|
"type": "string",
|
|
@@ -6113,7 +6261,7 @@
|
|
|
6113
6261
|
"x-field-mutability": "read-only",
|
|
6114
6262
|
"x-original-maxLength": 64,
|
|
6115
6263
|
"x-reconciled-from-discovery": true,
|
|
6116
|
-
"x-reconciled-at": "2026-01-
|
|
6264
|
+
"x-reconciled-at": "2026-01-05T18:29:36.403148+00:00"
|
|
6117
6265
|
}
|
|
6118
6266
|
},
|
|
6119
6267
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6379,7 +6527,7 @@
|
|
|
6379
6527
|
},
|
|
6380
6528
|
"x-original-maxLength": 1024,
|
|
6381
6529
|
"x-reconciled-from-discovery": true,
|
|
6382
|
-
"x-reconciled-at": "2026-01-
|
|
6530
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899485+00:00"
|
|
6383
6531
|
},
|
|
6384
6532
|
"namespace": {
|
|
6385
6533
|
"type": "string",
|
|
@@ -6398,7 +6546,7 @@
|
|
|
6398
6546
|
},
|
|
6399
6547
|
"x-original-maxLength": 1024,
|
|
6400
6548
|
"x-reconciled-from-discovery": true,
|
|
6401
|
-
"x-reconciled-at": "2026-01-
|
|
6549
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899492+00:00"
|
|
6402
6550
|
}
|
|
6403
6551
|
},
|
|
6404
6552
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6523,7 +6671,7 @@
|
|
|
6523
6671
|
"maxLength": 17,
|
|
6524
6672
|
"minLength": 17,
|
|
6525
6673
|
"x-reconciled-from-discovery": true,
|
|
6526
|
-
"x-reconciled-at": "2026-01-
|
|
6674
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899512+00:00"
|
|
6527
6675
|
},
|
|
6528
6676
|
"system_metadata": {
|
|
6529
6677
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -6733,7 +6881,7 @@
|
|
|
6733
6881
|
},
|
|
6734
6882
|
"x-original-maxLength": 1024,
|
|
6735
6883
|
"x-reconciled-from-discovery": true,
|
|
6736
|
-
"x-reconciled-at": "2026-01-
|
|
6884
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899531+00:00"
|
|
6737
6885
|
},
|
|
6738
6886
|
"disabled": {
|
|
6739
6887
|
"type": "boolean",
|
|
@@ -6783,7 +6931,7 @@
|
|
|
6783
6931
|
},
|
|
6784
6932
|
"x-original-maxLength": 1024,
|
|
6785
6933
|
"x-reconciled-from-discovery": true,
|
|
6786
|
-
"x-reconciled-at": "2026-01-
|
|
6934
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899542+00:00"
|
|
6787
6935
|
},
|
|
6788
6936
|
"namespace": {
|
|
6789
6937
|
"type": "string",
|
|
@@ -6802,7 +6950,7 @@
|
|
|
6802
6950
|
},
|
|
6803
6951
|
"x-original-maxLength": 1024,
|
|
6804
6952
|
"x-reconciled-from-discovery": true,
|
|
6805
|
-
"x-reconciled-at": "2026-01-
|
|
6953
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899546+00:00"
|
|
6806
6954
|
},
|
|
6807
6955
|
"owner_view": {
|
|
6808
6956
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -6843,7 +6991,7 @@
|
|
|
6843
6991
|
"x-field-mutability": "read-only",
|
|
6844
6992
|
"x-original-maxLength": 1024,
|
|
6845
6993
|
"x-reconciled-from-discovery": true,
|
|
6846
|
-
"x-reconciled-at": "2026-01-
|
|
6994
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899554+00:00"
|
|
6847
6995
|
},
|
|
6848
6996
|
"uid": {
|
|
6849
6997
|
"type": "string",
|
|
@@ -6864,7 +7012,7 @@
|
|
|
6864
7012
|
"x-original-maxLength": 1024,
|
|
6865
7013
|
"format": "uuid",
|
|
6866
7014
|
"x-reconciled-from-discovery": true,
|
|
6867
|
-
"x-reconciled-at": "2026-01-
|
|
7015
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899560+00:00"
|
|
6868
7016
|
}
|
|
6869
7017
|
},
|
|
6870
7018
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7204,7 +7352,7 @@
|
|
|
7204
7352
|
},
|
|
7205
7353
|
"x-original-maxLength": 1200,
|
|
7206
7354
|
"x-reconciled-from-discovery": true,
|
|
7207
|
-
"x-reconciled-at": "2026-01-
|
|
7355
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899619+00:00"
|
|
7208
7356
|
},
|
|
7209
7357
|
"disable": {
|
|
7210
7358
|
"type": "boolean",
|
|
@@ -7257,7 +7405,7 @@
|
|
|
7257
7405
|
},
|
|
7258
7406
|
"x-original-maxLength": 1024,
|
|
7259
7407
|
"x-reconciled-from-discovery": true,
|
|
7260
|
-
"x-reconciled-at": "2026-01-
|
|
7408
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899627+00:00"
|
|
7261
7409
|
},
|
|
7262
7410
|
"namespace": {
|
|
7263
7411
|
"type": "string",
|
|
@@ -7276,7 +7424,7 @@
|
|
|
7276
7424
|
},
|
|
7277
7425
|
"x-original-maxLength": 1024,
|
|
7278
7426
|
"x-reconciled-from-discovery": true,
|
|
7279
|
-
"x-reconciled-at": "2026-01-
|
|
7427
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899631+00:00"
|
|
7280
7428
|
}
|
|
7281
7429
|
},
|
|
7282
7430
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7321,7 +7469,7 @@
|
|
|
7321
7469
|
"readOnly": true,
|
|
7322
7470
|
"x-original-maxLength": 1024,
|
|
7323
7471
|
"x-reconciled-from-discovery": true,
|
|
7324
|
-
"x-reconciled-at": "2026-01-
|
|
7472
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899654+00:00"
|
|
7325
7473
|
},
|
|
7326
7474
|
"name": {
|
|
7327
7475
|
"type": "string",
|
|
@@ -7340,7 +7488,7 @@
|
|
|
7340
7488
|
},
|
|
7341
7489
|
"x-original-maxLength": 1024,
|
|
7342
7490
|
"x-reconciled-from-discovery": true,
|
|
7343
|
-
"x-reconciled-at": "2026-01-
|
|
7491
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899658+00:00"
|
|
7344
7492
|
},
|
|
7345
7493
|
"namespace": {
|
|
7346
7494
|
"type": "string",
|
|
@@ -7359,7 +7507,7 @@
|
|
|
7359
7507
|
},
|
|
7360
7508
|
"x-original-maxLength": 1024,
|
|
7361
7509
|
"x-reconciled-from-discovery": true,
|
|
7362
|
-
"x-reconciled-at": "2026-01-
|
|
7510
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899662+00:00"
|
|
7363
7511
|
},
|
|
7364
7512
|
"tenant": {
|
|
7365
7513
|
"type": "string",
|
|
@@ -7380,7 +7528,7 @@
|
|
|
7380
7528
|
"x-field-mutability": "read-only",
|
|
7381
7529
|
"x-original-maxLength": 1024,
|
|
7382
7530
|
"x-reconciled-from-discovery": true,
|
|
7383
|
-
"x-reconciled-at": "2026-01-
|
|
7531
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899666+00:00"
|
|
7384
7532
|
},
|
|
7385
7533
|
"uid": {
|
|
7386
7534
|
"type": "string",
|
|
@@ -7402,7 +7550,7 @@
|
|
|
7402
7550
|
"x-original-maxLength": 1024,
|
|
7403
7551
|
"format": "uuid",
|
|
7404
7552
|
"x-reconciled-from-discovery": true,
|
|
7405
|
-
"x-reconciled-at": "2026-01-
|
|
7553
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899671+00:00"
|
|
7406
7554
|
}
|
|
7407
7555
|
},
|
|
7408
7556
|
"x-f5xc-minimum-configuration": {
|
|
@@ -7477,7 +7625,7 @@
|
|
|
7477
7625
|
},
|
|
7478
7626
|
"x-original-maxLength": 1200,
|
|
7479
7627
|
"x-reconciled-from-discovery": true,
|
|
7480
|
-
"x-reconciled-at": "2026-01-
|
|
7628
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899678+00:00"
|
|
7481
7629
|
},
|
|
7482
7630
|
"disable": {
|
|
7483
7631
|
"type": "boolean",
|
|
@@ -7530,7 +7678,7 @@
|
|
|
7530
7678
|
},
|
|
7531
7679
|
"x-original-maxLength": 1024,
|
|
7532
7680
|
"x-reconciled-from-discovery": true,
|
|
7533
|
-
"x-reconciled-at": "2026-01-
|
|
7681
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899686+00:00"
|
|
7534
7682
|
},
|
|
7535
7683
|
"namespace": {
|
|
7536
7684
|
"type": "string",
|
|
@@ -7549,7 +7697,7 @@
|
|
|
7549
7697
|
},
|
|
7550
7698
|
"x-original-maxLength": 1024,
|
|
7551
7699
|
"x-reconciled-from-discovery": true,
|
|
7552
|
-
"x-reconciled-at": "2026-01-
|
|
7700
|
+
"x-reconciled-at": "2026-01-05T18:29:36.899690+00:00"
|
|
7553
7701
|
}
|
|
7554
7702
|
},
|
|
7555
7703
|
"x-f5xc-minimum-configuration": {
|