@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": "Authentication",
|
|
5
5
|
"description": "F5 Distributed Cloud Authentication API specifications",
|
|
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"
|
|
@@ -12,7 +12,33 @@
|
|
|
12
12
|
"name": "Proprietary",
|
|
13
13
|
"url": "https://www.f5.com/company/policies/eula"
|
|
14
14
|
},
|
|
15
|
-
"x-f5xc-cli-domain": "authentication"
|
|
15
|
+
"x-f5xc-cli-domain": "authentication",
|
|
16
|
+
"x-f5xc-best-practices": {
|
|
17
|
+
"common_errors": [
|
|
18
|
+
{
|
|
19
|
+
"code": 401,
|
|
20
|
+
"message": "Token expired",
|
|
21
|
+
"resolution": "Refresh token or re-authenticate",
|
|
22
|
+
"prevention": "Implement automatic token refresh"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"code": 403,
|
|
26
|
+
"message": "Insufficient permissions",
|
|
27
|
+
"resolution": "Request additional role assignments",
|
|
28
|
+
"prevention": "Verify permissions before operations"
|
|
29
|
+
}
|
|
30
|
+
],
|
|
31
|
+
"security_notes": [
|
|
32
|
+
"Use short-lived tokens with refresh capability",
|
|
33
|
+
"Enable MFA for administrative access",
|
|
34
|
+
"Implement least privilege access policies"
|
|
35
|
+
],
|
|
36
|
+
"performance_tips": [
|
|
37
|
+
"Cache authentication tokens appropriately",
|
|
38
|
+
"Use service accounts for automation",
|
|
39
|
+
"Implement token pooling for high-volume scenarios"
|
|
40
|
+
]
|
|
41
|
+
}
|
|
16
42
|
},
|
|
17
43
|
"servers": [
|
|
18
44
|
{
|
|
@@ -253,6 +279,13 @@
|
|
|
253
279
|
"latency": "high",
|
|
254
280
|
"resource_usage": "high"
|
|
255
281
|
}
|
|
282
|
+
},
|
|
283
|
+
"x-f5xc-discovered-response-time": {
|
|
284
|
+
"p50_ms": 1000,
|
|
285
|
+
"p95_ms": 3000,
|
|
286
|
+
"p99_ms": 8000,
|
|
287
|
+
"sample_count": 0,
|
|
288
|
+
"source": "estimate"
|
|
256
289
|
}
|
|
257
290
|
},
|
|
258
291
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -445,6 +478,13 @@
|
|
|
445
478
|
"latency": "high",
|
|
446
479
|
"resource_usage": "high"
|
|
447
480
|
}
|
|
481
|
+
},
|
|
482
|
+
"x-f5xc-discovered-response-time": {
|
|
483
|
+
"p50_ms": 1000,
|
|
484
|
+
"p95_ms": 3000,
|
|
485
|
+
"p99_ms": 8000,
|
|
486
|
+
"sample_count": 0,
|
|
487
|
+
"source": "estimate"
|
|
448
488
|
}
|
|
449
489
|
},
|
|
450
490
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -652,6 +692,13 @@
|
|
|
652
692
|
"latency": "low",
|
|
653
693
|
"resource_usage": "low"
|
|
654
694
|
}
|
|
695
|
+
},
|
|
696
|
+
"x-f5xc-discovered-response-time": {
|
|
697
|
+
"p50_ms": 1000,
|
|
698
|
+
"p95_ms": 3000,
|
|
699
|
+
"p99_ms": 8000,
|
|
700
|
+
"sample_count": 0,
|
|
701
|
+
"source": "estimate"
|
|
655
702
|
}
|
|
656
703
|
},
|
|
657
704
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -859,6 +906,13 @@
|
|
|
859
906
|
"latency": "low",
|
|
860
907
|
"resource_usage": "low"
|
|
861
908
|
}
|
|
909
|
+
},
|
|
910
|
+
"x-f5xc-discovered-response-time": {
|
|
911
|
+
"p50_ms": 1000,
|
|
912
|
+
"p95_ms": 3000,
|
|
913
|
+
"p99_ms": 8000,
|
|
914
|
+
"sample_count": 0,
|
|
915
|
+
"source": "estimate"
|
|
862
916
|
}
|
|
863
917
|
},
|
|
864
918
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -1047,6 +1101,13 @@
|
|
|
1047
1101
|
"latency": "moderate",
|
|
1048
1102
|
"resource_usage": "moderate"
|
|
1049
1103
|
}
|
|
1104
|
+
},
|
|
1105
|
+
"x-f5xc-discovered-response-time": {
|
|
1106
|
+
"p50_ms": 200,
|
|
1107
|
+
"p95_ms": 800,
|
|
1108
|
+
"p99_ms": 2000,
|
|
1109
|
+
"sample_count": 0,
|
|
1110
|
+
"source": "estimate"
|
|
1050
1111
|
}
|
|
1051
1112
|
},
|
|
1052
1113
|
"post": {
|
|
@@ -1256,6 +1317,13 @@
|
|
|
1256
1317
|
"latency": "low",
|
|
1257
1318
|
"resource_usage": "low"
|
|
1258
1319
|
}
|
|
1320
|
+
},
|
|
1321
|
+
"x-f5xc-discovered-response-time": {
|
|
1322
|
+
"p50_ms": 1000,
|
|
1323
|
+
"p95_ms": 3000,
|
|
1324
|
+
"p99_ms": 8000,
|
|
1325
|
+
"sample_count": 0,
|
|
1326
|
+
"source": "estimate"
|
|
1259
1327
|
}
|
|
1260
1328
|
},
|
|
1261
1329
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -1457,6 +1525,13 @@
|
|
|
1457
1525
|
"latency": "low",
|
|
1458
1526
|
"resource_usage": "low"
|
|
1459
1527
|
}
|
|
1528
|
+
},
|
|
1529
|
+
"x-f5xc-discovered-response-time": {
|
|
1530
|
+
"p50_ms": 200,
|
|
1531
|
+
"p95_ms": 800,
|
|
1532
|
+
"p99_ms": 2000,
|
|
1533
|
+
"sample_count": 0,
|
|
1534
|
+
"source": "estimate"
|
|
1460
1535
|
}
|
|
1461
1536
|
},
|
|
1462
1537
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -1664,6 +1739,13 @@
|
|
|
1664
1739
|
"latency": "low",
|
|
1665
1740
|
"resource_usage": "low"
|
|
1666
1741
|
}
|
|
1742
|
+
},
|
|
1743
|
+
"x-f5xc-discovered-response-time": {
|
|
1744
|
+
"p50_ms": 1000,
|
|
1745
|
+
"p95_ms": 3000,
|
|
1746
|
+
"p99_ms": 8000,
|
|
1747
|
+
"sample_count": 0,
|
|
1748
|
+
"source": "estimate"
|
|
1667
1749
|
}
|
|
1668
1750
|
},
|
|
1669
1751
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -1871,6 +1953,13 @@
|
|
|
1871
1953
|
"latency": "low",
|
|
1872
1954
|
"resource_usage": "low"
|
|
1873
1955
|
}
|
|
1956
|
+
},
|
|
1957
|
+
"x-f5xc-discovered-response-time": {
|
|
1958
|
+
"p50_ms": 1000,
|
|
1959
|
+
"p95_ms": 3000,
|
|
1960
|
+
"p99_ms": 8000,
|
|
1961
|
+
"sample_count": 0,
|
|
1962
|
+
"source": "estimate"
|
|
1874
1963
|
}
|
|
1875
1964
|
},
|
|
1876
1965
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -2078,6 +2167,13 @@
|
|
|
2078
2167
|
"latency": "low",
|
|
2079
2168
|
"resource_usage": "low"
|
|
2080
2169
|
}
|
|
2170
|
+
},
|
|
2171
|
+
"x-f5xc-discovered-response-time": {
|
|
2172
|
+
"p50_ms": 1000,
|
|
2173
|
+
"p95_ms": 3000,
|
|
2174
|
+
"p99_ms": 8000,
|
|
2175
|
+
"sample_count": 0,
|
|
2176
|
+
"source": "estimate"
|
|
2081
2177
|
}
|
|
2082
2178
|
},
|
|
2083
2179
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -2292,6 +2388,13 @@
|
|
|
2292
2388
|
"latency": "low",
|
|
2293
2389
|
"resource_usage": "low"
|
|
2294
2390
|
}
|
|
2391
|
+
},
|
|
2392
|
+
"x-f5xc-discovered-response-time": {
|
|
2393
|
+
"p50_ms": 1000,
|
|
2394
|
+
"p95_ms": 3000,
|
|
2395
|
+
"p99_ms": 8000,
|
|
2396
|
+
"sample_count": 0,
|
|
2397
|
+
"source": "estimate"
|
|
2295
2398
|
}
|
|
2296
2399
|
},
|
|
2297
2400
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -2499,6 +2602,13 @@
|
|
|
2499
2602
|
"latency": "low",
|
|
2500
2603
|
"resource_usage": "low"
|
|
2501
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"
|
|
2502
2612
|
}
|
|
2503
2613
|
},
|
|
2504
2614
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -2687,6 +2797,13 @@
|
|
|
2687
2797
|
"latency": "moderate",
|
|
2688
2798
|
"resource_usage": "moderate"
|
|
2689
2799
|
}
|
|
2800
|
+
},
|
|
2801
|
+
"x-f5xc-discovered-response-time": {
|
|
2802
|
+
"p50_ms": 200,
|
|
2803
|
+
"p95_ms": 800,
|
|
2804
|
+
"p99_ms": 2000,
|
|
2805
|
+
"sample_count": 0,
|
|
2806
|
+
"source": "estimate"
|
|
2690
2807
|
}
|
|
2691
2808
|
},
|
|
2692
2809
|
"post": {
|
|
@@ -2896,6 +3013,13 @@
|
|
|
2896
3013
|
"latency": "low",
|
|
2897
3014
|
"resource_usage": "low"
|
|
2898
3015
|
}
|
|
3016
|
+
},
|
|
3017
|
+
"x-f5xc-discovered-response-time": {
|
|
3018
|
+
"p50_ms": 1000,
|
|
3019
|
+
"p95_ms": 3000,
|
|
3020
|
+
"p99_ms": 8000,
|
|
3021
|
+
"sample_count": 0,
|
|
3022
|
+
"source": "estimate"
|
|
2899
3023
|
}
|
|
2900
3024
|
},
|
|
2901
3025
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -3084,6 +3208,13 @@
|
|
|
3084
3208
|
"latency": "moderate",
|
|
3085
3209
|
"resource_usage": "moderate"
|
|
3086
3210
|
}
|
|
3211
|
+
},
|
|
3212
|
+
"x-f5xc-discovered-response-time": {
|
|
3213
|
+
"p50_ms": 200,
|
|
3214
|
+
"p95_ms": 800,
|
|
3215
|
+
"p99_ms": 2000,
|
|
3216
|
+
"sample_count": 0,
|
|
3217
|
+
"source": "estimate"
|
|
3087
3218
|
}
|
|
3088
3219
|
},
|
|
3089
3220
|
"post": {
|
|
@@ -3293,6 +3424,13 @@
|
|
|
3293
3424
|
"latency": "low",
|
|
3294
3425
|
"resource_usage": "low"
|
|
3295
3426
|
}
|
|
3427
|
+
},
|
|
3428
|
+
"x-f5xc-discovered-response-time": {
|
|
3429
|
+
"p50_ms": 1000,
|
|
3430
|
+
"p95_ms": 3000,
|
|
3431
|
+
"p99_ms": 8000,
|
|
3432
|
+
"sample_count": 0,
|
|
3433
|
+
"source": "estimate"
|
|
3296
3434
|
}
|
|
3297
3435
|
},
|
|
3298
3436
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -3494,6 +3632,13 @@
|
|
|
3494
3632
|
"latency": "low",
|
|
3495
3633
|
"resource_usage": "low"
|
|
3496
3634
|
}
|
|
3635
|
+
},
|
|
3636
|
+
"x-f5xc-discovered-response-time": {
|
|
3637
|
+
"p50_ms": 200,
|
|
3638
|
+
"p95_ms": 800,
|
|
3639
|
+
"p99_ms": 2000,
|
|
3640
|
+
"sample_count": 0,
|
|
3641
|
+
"source": "estimate"
|
|
3497
3642
|
}
|
|
3498
3643
|
},
|
|
3499
3644
|
"put": {
|
|
@@ -3711,6 +3856,13 @@
|
|
|
3711
3856
|
"latency": "low",
|
|
3712
3857
|
"resource_usage": "low"
|
|
3713
3858
|
}
|
|
3859
|
+
},
|
|
3860
|
+
"x-f5xc-discovered-response-time": {
|
|
3861
|
+
"p50_ms": 800,
|
|
3862
|
+
"p95_ms": 2500,
|
|
3863
|
+
"p99_ms": 6000,
|
|
3864
|
+
"sample_count": 0,
|
|
3865
|
+
"source": "estimate"
|
|
3714
3866
|
}
|
|
3715
3867
|
},
|
|
3716
3868
|
"x-displayname": "API/Service Credentials.",
|
|
@@ -3939,7 +4091,7 @@
|
|
|
3939
4091
|
},
|
|
3940
4092
|
"x-original-maxLength": 1024,
|
|
3941
4093
|
"x-reconciled-from-discovery": true,
|
|
3942
|
-
"x-reconciled-at": "2026-01-
|
|
4094
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860666+00:00"
|
|
3943
4095
|
},
|
|
3944
4096
|
"namespace": {
|
|
3945
4097
|
"type": "string",
|
|
@@ -3958,7 +4110,7 @@
|
|
|
3958
4110
|
},
|
|
3959
4111
|
"x-original-maxLength": 1024,
|
|
3960
4112
|
"x-reconciled-from-discovery": true,
|
|
3961
|
-
"x-reconciled-at": "2026-01-
|
|
4113
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860673+00:00"
|
|
3962
4114
|
},
|
|
3963
4115
|
"spec": {
|
|
3964
4116
|
"$ref": "#/components/schemas/api_credentialCustomCreateSpecType"
|
|
@@ -4039,7 +4191,7 @@
|
|
|
4039
4191
|
},
|
|
4040
4192
|
"x-original-maxLength": 1024,
|
|
4041
4193
|
"x-reconciled-from-discovery": true,
|
|
4042
|
-
"x-reconciled-at": "2026-01-
|
|
4194
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860686+00:00"
|
|
4043
4195
|
}
|
|
4044
4196
|
},
|
|
4045
4197
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4105,7 +4257,7 @@
|
|
|
4105
4257
|
},
|
|
4106
4258
|
"x-original-maxLength": 1024,
|
|
4107
4259
|
"x-reconciled-from-discovery": true,
|
|
4108
|
-
"x-reconciled-at": "2026-01-
|
|
4260
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860696+00:00"
|
|
4109
4261
|
},
|
|
4110
4262
|
"namespace": {
|
|
4111
4263
|
"type": "string",
|
|
@@ -4124,7 +4276,7 @@
|
|
|
4124
4276
|
},
|
|
4125
4277
|
"x-original-maxLength": 1024,
|
|
4126
4278
|
"x-reconciled-from-discovery": true,
|
|
4127
|
-
"x-reconciled-at": "2026-01-
|
|
4279
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860700+00:00"
|
|
4128
4280
|
},
|
|
4129
4281
|
"namespace_roles": {
|
|
4130
4282
|
"type": "array",
|
|
@@ -4390,7 +4542,7 @@
|
|
|
4390
4542
|
},
|
|
4391
4543
|
"x-original-maxLength": 1024,
|
|
4392
4544
|
"x-reconciled-from-discovery": true,
|
|
4393
|
-
"x-reconciled-at": "2026-01-
|
|
4545
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860725+00:00"
|
|
4394
4546
|
},
|
|
4395
4547
|
"namespace": {
|
|
4396
4548
|
"type": "string",
|
|
@@ -4416,7 +4568,7 @@
|
|
|
4416
4568
|
},
|
|
4417
4569
|
"x-original-maxLength": 1024,
|
|
4418
4570
|
"x-reconciled-from-discovery": true,
|
|
4419
|
-
"x-reconciled-at": "2026-01-
|
|
4571
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860729+00:00"
|
|
4420
4572
|
}
|
|
4421
4573
|
},
|
|
4422
4574
|
"x-f5xc-minimum-configuration": {
|
|
@@ -4524,7 +4676,7 @@
|
|
|
4524
4676
|
},
|
|
4525
4677
|
"x-original-maxLength": 1024,
|
|
4526
4678
|
"x-reconciled-from-discovery": true,
|
|
4527
|
-
"x-reconciled-at": "2026-01-
|
|
4679
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860740+00:00"
|
|
4528
4680
|
},
|
|
4529
4681
|
"namespace": {
|
|
4530
4682
|
"type": "string",
|
|
@@ -4543,7 +4695,7 @@
|
|
|
4543
4695
|
},
|
|
4544
4696
|
"x-original-maxLength": 1024,
|
|
4545
4697
|
"x-reconciled-from-discovery": true,
|
|
4546
|
-
"x-reconciled-at": "2026-01-
|
|
4698
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860744+00:00"
|
|
4547
4699
|
},
|
|
4548
4700
|
"namespace_access": {
|
|
4549
4701
|
"$ref": "#/components/schemas/schemaNamespaceAccessType"
|
|
@@ -4570,7 +4722,7 @@
|
|
|
4570
4722
|
"x-original-maxLength": 1024,
|
|
4571
4723
|
"format": "uuid",
|
|
4572
4724
|
"x-reconciled-from-discovery": true,
|
|
4573
|
-
"x-reconciled-at": "2026-01-
|
|
4725
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860752+00:00"
|
|
4574
4726
|
},
|
|
4575
4727
|
"user_email": {
|
|
4576
4728
|
"type": "string",
|
|
@@ -4904,7 +5056,7 @@
|
|
|
4904
5056
|
},
|
|
4905
5057
|
"x-original-maxLength": 1024,
|
|
4906
5058
|
"x-reconciled-from-discovery": true,
|
|
4907
|
-
"x-reconciled-at": "2026-01-
|
|
5059
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860781+00:00"
|
|
4908
5060
|
},
|
|
4909
5061
|
"namespace": {
|
|
4910
5062
|
"type": "string",
|
|
@@ -4923,7 +5075,7 @@
|
|
|
4923
5075
|
},
|
|
4924
5076
|
"x-original-maxLength": 1024,
|
|
4925
5077
|
"x-reconciled-from-discovery": true,
|
|
4926
|
-
"x-reconciled-at": "2026-01-
|
|
5078
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860785+00:00"
|
|
4927
5079
|
},
|
|
4928
5080
|
"type": {
|
|
4929
5081
|
"$ref": "#/components/schemas/api_credentialAPICredentialType"
|
|
@@ -4947,7 +5099,7 @@
|
|
|
4947
5099
|
"x-original-maxLength": 1024,
|
|
4948
5100
|
"format": "uuid",
|
|
4949
5101
|
"x-reconciled-from-discovery": true,
|
|
4950
|
-
"x-reconciled-at": "2026-01-
|
|
5102
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860791+00:00"
|
|
4951
5103
|
},
|
|
4952
5104
|
"user_email": {
|
|
4953
5105
|
"type": "string",
|
|
@@ -5089,7 +5241,7 @@
|
|
|
5089
5241
|
},
|
|
5090
5242
|
"x-original-maxLength": 1024,
|
|
5091
5243
|
"x-reconciled-from-discovery": true,
|
|
5092
|
-
"x-reconciled-at": "2026-01-
|
|
5244
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860804+00:00"
|
|
5093
5245
|
},
|
|
5094
5246
|
"namespace": {
|
|
5095
5247
|
"type": "string",
|
|
@@ -5108,7 +5260,7 @@
|
|
|
5108
5260
|
},
|
|
5109
5261
|
"x-original-maxLength": 1024,
|
|
5110
5262
|
"x-reconciled-from-discovery": true,
|
|
5111
|
-
"x-reconciled-at": "2026-01-
|
|
5263
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860808+00:00"
|
|
5112
5264
|
},
|
|
5113
5265
|
"namespace_access": {
|
|
5114
5266
|
"$ref": "#/components/schemas/schemaNamespaceAccessType"
|
|
@@ -5135,7 +5287,7 @@
|
|
|
5135
5287
|
"x-original-maxLength": 1024,
|
|
5136
5288
|
"format": "uuid",
|
|
5137
5289
|
"x-reconciled-from-discovery": true,
|
|
5138
|
-
"x-reconciled-at": "2026-01-
|
|
5290
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860814+00:00"
|
|
5139
5291
|
},
|
|
5140
5292
|
"user_email": {
|
|
5141
5293
|
"type": "string",
|
|
@@ -5322,7 +5474,7 @@
|
|
|
5322
5474
|
},
|
|
5323
5475
|
"x-original-maxLength": 1024,
|
|
5324
5476
|
"x-reconciled-from-discovery": true,
|
|
5325
|
-
"x-reconciled-at": "2026-01-
|
|
5477
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860830+00:00"
|
|
5326
5478
|
}
|
|
5327
5479
|
},
|
|
5328
5480
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5386,7 +5538,7 @@
|
|
|
5386
5538
|
},
|
|
5387
5539
|
"x-original-maxLength": 1024,
|
|
5388
5540
|
"x-reconciled-from-discovery": true,
|
|
5389
|
-
"x-reconciled-at": "2026-01-
|
|
5541
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860836+00:00"
|
|
5390
5542
|
},
|
|
5391
5543
|
"namespace": {
|
|
5392
5544
|
"type": "string",
|
|
@@ -5412,7 +5564,7 @@
|
|
|
5412
5564
|
},
|
|
5413
5565
|
"x-original-maxLength": 1024,
|
|
5414
5566
|
"x-reconciled-from-discovery": true,
|
|
5415
|
-
"x-reconciled-at": "2026-01-
|
|
5567
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860840+00:00"
|
|
5416
5568
|
}
|
|
5417
5569
|
},
|
|
5418
5570
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5460,7 +5612,7 @@
|
|
|
5460
5612
|
},
|
|
5461
5613
|
"x-original-maxLength": 1024,
|
|
5462
5614
|
"x-reconciled-from-discovery": true,
|
|
5463
|
-
"x-reconciled-at": "2026-01-
|
|
5615
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860845+00:00"
|
|
5464
5616
|
},
|
|
5465
5617
|
"namespace": {
|
|
5466
5618
|
"type": "string",
|
|
@@ -5479,7 +5631,7 @@
|
|
|
5479
5631
|
},
|
|
5480
5632
|
"x-original-maxLength": 1024,
|
|
5481
5633
|
"x-reconciled-from-discovery": true,
|
|
5482
|
-
"x-reconciled-at": "2026-01-
|
|
5634
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860849+00:00"
|
|
5483
5635
|
},
|
|
5484
5636
|
"namespace_access": {
|
|
5485
5637
|
"$ref": "#/components/schemas/schemaNamespaceAccessType"
|
|
@@ -5571,7 +5723,7 @@
|
|
|
5571
5723
|
},
|
|
5572
5724
|
"x-original-maxLength": 1024,
|
|
5573
5725
|
"x-reconciled-from-discovery": true,
|
|
5574
|
-
"x-reconciled-at": "2026-01-
|
|
5726
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860859+00:00"
|
|
5575
5727
|
}
|
|
5576
5728
|
},
|
|
5577
5729
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5619,7 +5771,7 @@
|
|
|
5619
5771
|
},
|
|
5620
5772
|
"x-original-maxLength": 1024,
|
|
5621
5773
|
"x-reconciled-from-discovery": true,
|
|
5622
|
-
"x-reconciled-at": "2026-01-
|
|
5774
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860864+00:00"
|
|
5623
5775
|
}
|
|
5624
5776
|
},
|
|
5625
5777
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5728,7 +5880,7 @@
|
|
|
5728
5880
|
"maxLength": 17,
|
|
5729
5881
|
"minLength": 17,
|
|
5730
5882
|
"x-reconciled-from-discovery": true,
|
|
5731
|
-
"x-reconciled-at": "2026-01-
|
|
5883
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860873+00:00"
|
|
5732
5884
|
}
|
|
5733
5885
|
},
|
|
5734
5886
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5847,7 +5999,7 @@
|
|
|
5847
5999
|
},
|
|
5848
6000
|
"x-original-maxLength": 1024,
|
|
5849
6001
|
"x-reconciled-from-discovery": true,
|
|
5850
|
-
"x-reconciled-at": "2026-01-
|
|
6002
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860883+00:00"
|
|
5851
6003
|
}
|
|
5852
6004
|
},
|
|
5853
6005
|
"x-f5xc-minimum-configuration": {
|
|
@@ -5976,7 +6128,7 @@
|
|
|
5976
6128
|
},
|
|
5977
6129
|
"x-original-maxLength": 256,
|
|
5978
6130
|
"x-reconciled-from-discovery": true,
|
|
5979
|
-
"x-reconciled-at": "2026-01-
|
|
6131
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860893+00:00"
|
|
5980
6132
|
},
|
|
5981
6133
|
"role": {
|
|
5982
6134
|
"type": "string",
|
|
@@ -6075,7 +6227,7 @@
|
|
|
6075
6227
|
},
|
|
6076
6228
|
"x-original-maxLength": 1200,
|
|
6077
6229
|
"x-reconciled-from-discovery": true,
|
|
6078
|
-
"x-reconciled-at": "2026-01-
|
|
6230
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860901+00:00"
|
|
6079
6231
|
},
|
|
6080
6232
|
"disable": {
|
|
6081
6233
|
"type": "boolean",
|
|
@@ -6130,7 +6282,7 @@
|
|
|
6130
6282
|
},
|
|
6131
6283
|
"x-original-maxLength": 1024,
|
|
6132
6284
|
"x-reconciled-from-discovery": true,
|
|
6133
|
-
"x-reconciled-at": "2026-01-
|
|
6285
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860908+00:00"
|
|
6134
6286
|
},
|
|
6135
6287
|
"namespace": {
|
|
6136
6288
|
"type": "string",
|
|
@@ -6149,7 +6301,7 @@
|
|
|
6149
6301
|
},
|
|
6150
6302
|
"x-original-maxLength": 1024,
|
|
6151
6303
|
"x-reconciled-from-discovery": true,
|
|
6152
|
-
"x-reconciled-at": "2026-01-
|
|
6304
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860913+00:00"
|
|
6153
6305
|
},
|
|
6154
6306
|
"uid": {
|
|
6155
6307
|
"type": "string",
|
|
@@ -6171,7 +6323,7 @@
|
|
|
6171
6323
|
"x-original-maxLength": 1024,
|
|
6172
6324
|
"format": "uuid",
|
|
6173
6325
|
"x-reconciled-from-discovery": true,
|
|
6174
|
-
"x-reconciled-at": "2026-01-
|
|
6326
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860918+00:00"
|
|
6175
6327
|
}
|
|
6176
6328
|
},
|
|
6177
6329
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6217,7 +6369,7 @@
|
|
|
6217
6369
|
"readOnly": true,
|
|
6218
6370
|
"x-original-maxLength": 1024,
|
|
6219
6371
|
"x-reconciled-from-discovery": true,
|
|
6220
|
-
"x-reconciled-at": "2026-01-
|
|
6372
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860922+00:00"
|
|
6221
6373
|
},
|
|
6222
6374
|
"name": {
|
|
6223
6375
|
"type": "string",
|
|
@@ -6236,7 +6388,7 @@
|
|
|
6236
6388
|
},
|
|
6237
6389
|
"x-original-maxLength": 1024,
|
|
6238
6390
|
"x-reconciled-from-discovery": true,
|
|
6239
|
-
"x-reconciled-at": "2026-01-
|
|
6391
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860927+00:00"
|
|
6240
6392
|
},
|
|
6241
6393
|
"namespace": {
|
|
6242
6394
|
"type": "string",
|
|
@@ -6255,7 +6407,7 @@
|
|
|
6255
6407
|
},
|
|
6256
6408
|
"x-original-maxLength": 1024,
|
|
6257
6409
|
"x-reconciled-from-discovery": true,
|
|
6258
|
-
"x-reconciled-at": "2026-01-
|
|
6410
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860931+00:00"
|
|
6259
6411
|
},
|
|
6260
6412
|
"tenant": {
|
|
6261
6413
|
"type": "string",
|
|
@@ -6276,7 +6428,7 @@
|
|
|
6276
6428
|
"x-field-mutability": "read-only",
|
|
6277
6429
|
"x-original-maxLength": 1024,
|
|
6278
6430
|
"x-reconciled-from-discovery": true,
|
|
6279
|
-
"x-reconciled-at": "2026-01-
|
|
6431
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860935+00:00"
|
|
6280
6432
|
},
|
|
6281
6433
|
"uid": {
|
|
6282
6434
|
"type": "string",
|
|
@@ -6298,7 +6450,7 @@
|
|
|
6298
6450
|
"x-original-maxLength": 1024,
|
|
6299
6451
|
"format": "uuid",
|
|
6300
6452
|
"x-reconciled-from-discovery": true,
|
|
6301
|
-
"x-reconciled-at": "2026-01-
|
|
6453
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860940+00:00"
|
|
6302
6454
|
}
|
|
6303
6455
|
},
|
|
6304
6456
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6390,7 +6542,7 @@
|
|
|
6390
6542
|
},
|
|
6391
6543
|
"x-original-maxLength": 1024,
|
|
6392
6544
|
"x-reconciled-from-discovery": true,
|
|
6393
|
-
"x-reconciled-at": "2026-01-
|
|
6545
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860948+00:00"
|
|
6394
6546
|
},
|
|
6395
6547
|
"status": {
|
|
6396
6548
|
"type": "string",
|
|
@@ -6409,7 +6561,7 @@
|
|
|
6409
6561
|
},
|
|
6410
6562
|
"x-original-maxLength": 1024,
|
|
6411
6563
|
"x-reconciled-from-discovery": true,
|
|
6412
|
-
"x-reconciled-at": "2026-01-
|
|
6564
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860952+00:00"
|
|
6413
6565
|
}
|
|
6414
6566
|
},
|
|
6415
6567
|
"x-f5xc-minimum-configuration": {
|
|
@@ -6607,7 +6759,7 @@
|
|
|
6607
6759
|
"maxLength": 6,
|
|
6608
6760
|
"minLength": 6,
|
|
6609
6761
|
"x-reconciled-from-discovery": true,
|
|
6610
|
-
"x-reconciled-at": "2026-01-
|
|
6762
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860972+00:00"
|
|
6611
6763
|
},
|
|
6612
6764
|
"object_index": {
|
|
6613
6765
|
"type": "integer",
|
|
@@ -6680,7 +6832,7 @@
|
|
|
6680
6832
|
"x-field-mutability": "read-only",
|
|
6681
6833
|
"x-original-maxLength": 1024,
|
|
6682
6834
|
"x-reconciled-from-discovery": true,
|
|
6683
|
-
"x-reconciled-at": "2026-01-
|
|
6835
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860981+00:00"
|
|
6684
6836
|
},
|
|
6685
6837
|
"trace_info": {
|
|
6686
6838
|
"type": "string",
|
|
@@ -6718,7 +6870,7 @@
|
|
|
6718
6870
|
"x-original-maxLength": 1024,
|
|
6719
6871
|
"format": "uuid",
|
|
6720
6872
|
"x-reconciled-from-discovery": true,
|
|
6721
|
-
"x-reconciled-at": "2026-01-
|
|
6873
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860987+00:00"
|
|
6722
6874
|
},
|
|
6723
6875
|
"vtrp_id": {
|
|
6724
6876
|
"type": "string",
|
|
@@ -6804,7 +6956,7 @@
|
|
|
6804
6956
|
},
|
|
6805
6957
|
"x-original-maxLength": 1024,
|
|
6806
6958
|
"x-reconciled-from-discovery": true,
|
|
6807
|
-
"x-reconciled-at": "2026-01-
|
|
6959
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860995+00:00"
|
|
6808
6960
|
},
|
|
6809
6961
|
"name": {
|
|
6810
6962
|
"type": "string",
|
|
@@ -6823,7 +6975,7 @@
|
|
|
6823
6975
|
},
|
|
6824
6976
|
"x-original-maxLength": 1024,
|
|
6825
6977
|
"x-reconciled-from-discovery": true,
|
|
6826
|
-
"x-reconciled-at": "2026-01-
|
|
6978
|
+
"x-reconciled-at": "2026-01-05T18:28:38.860999+00:00"
|
|
6827
6979
|
},
|
|
6828
6980
|
"namespace": {
|
|
6829
6981
|
"type": "string",
|
|
@@ -6842,7 +6994,7 @@
|
|
|
6842
6994
|
},
|
|
6843
6995
|
"x-original-maxLength": 1024,
|
|
6844
6996
|
"x-reconciled-from-discovery": true,
|
|
6845
|
-
"x-reconciled-at": "2026-01-
|
|
6997
|
+
"x-reconciled-at": "2026-01-05T18:28:38.861003+00:00"
|
|
6846
6998
|
},
|
|
6847
6999
|
"uid": {
|
|
6848
7000
|
"type": "string",
|
|
@@ -6863,7 +7015,7 @@
|
|
|
6863
7015
|
"x-original-maxLength": 1024,
|
|
6864
7016
|
"format": "uuid",
|
|
6865
7017
|
"x-reconciled-from-discovery": true,
|
|
6866
|
-
"x-reconciled-at": "2026-01-
|
|
7018
|
+
"x-reconciled-at": "2026-01-05T18:28:38.861008+00:00"
|
|
6867
7019
|
}
|
|
6868
7020
|
},
|
|
6869
7021
|
"x-f5xc-minimum-configuration": {
|