@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": "Marketplace",
|
|
5
5
|
"description": "External connector infrastructure supporting direct, GRE, and encrypted tunnel modes with IKE parameter configuration and dead peer detection intervals. Cloud provider instances for Terraform automation and vendor partnerships. Service catalog entries with per-namespace activation flags, resource quotas, and administrative dashboard tile arrangement for operational workflows.",
|
|
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": "Third-party GRE and IPSec tunnel provisioning with DPD timers. Shared resource allocation across namespaces with tile placement controls.",
|
|
16
|
-
"x-f5xc-cli-domain": "marketplace"
|
|
16
|
+
"x-f5xc-cli-domain": "marketplace",
|
|
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
|
{
|
|
@@ -254,6 +304,13 @@
|
|
|
254
304
|
"latency": "low",
|
|
255
305
|
"resource_usage": "low"
|
|
256
306
|
}
|
|
307
|
+
},
|
|
308
|
+
"x-f5xc-discovered-response-time": {
|
|
309
|
+
"p50_ms": 200,
|
|
310
|
+
"p95_ms": 800,
|
|
311
|
+
"p99_ms": 2000,
|
|
312
|
+
"sample_count": 0,
|
|
313
|
+
"source": "estimate"
|
|
257
314
|
}
|
|
258
315
|
},
|
|
259
316
|
"x-displayname": "Addon Service.",
|
|
@@ -442,6 +499,13 @@
|
|
|
442
499
|
"latency": "moderate",
|
|
443
500
|
"resource_usage": "moderate"
|
|
444
501
|
}
|
|
502
|
+
},
|
|
503
|
+
"x-f5xc-discovered-response-time": {
|
|
504
|
+
"p50_ms": 200,
|
|
505
|
+
"p95_ms": 800,
|
|
506
|
+
"p99_ms": 2000,
|
|
507
|
+
"sample_count": 0,
|
|
508
|
+
"source": "estimate"
|
|
445
509
|
}
|
|
446
510
|
},
|
|
447
511
|
"x-displayname": "Addon Service.",
|
|
@@ -630,6 +694,13 @@
|
|
|
630
694
|
"latency": "moderate",
|
|
631
695
|
"resource_usage": "moderate"
|
|
632
696
|
}
|
|
697
|
+
},
|
|
698
|
+
"x-f5xc-discovered-response-time": {
|
|
699
|
+
"p50_ms": 200,
|
|
700
|
+
"p95_ms": 800,
|
|
701
|
+
"p99_ms": 2000,
|
|
702
|
+
"sample_count": 0,
|
|
703
|
+
"source": "estimate"
|
|
633
704
|
}
|
|
634
705
|
},
|
|
635
706
|
"x-displayname": "Addon Service.",
|
|
@@ -857,6 +928,13 @@
|
|
|
857
928
|
"latency": "moderate",
|
|
858
929
|
"resource_usage": "moderate"
|
|
859
930
|
}
|
|
931
|
+
},
|
|
932
|
+
"x-f5xc-discovered-response-time": {
|
|
933
|
+
"p50_ms": 200,
|
|
934
|
+
"p95_ms": 800,
|
|
935
|
+
"p99_ms": 2000,
|
|
936
|
+
"sample_count": 0,
|
|
937
|
+
"source": "estimate"
|
|
860
938
|
}
|
|
861
939
|
},
|
|
862
940
|
"x-displayname": "Addon Service.",
|
|
@@ -1076,6 +1154,13 @@
|
|
|
1076
1154
|
"latency": "low",
|
|
1077
1155
|
"resource_usage": "low"
|
|
1078
1156
|
}
|
|
1157
|
+
},
|
|
1158
|
+
"x-f5xc-discovered-response-time": {
|
|
1159
|
+
"p50_ms": 200,
|
|
1160
|
+
"p95_ms": 800,
|
|
1161
|
+
"p99_ms": 2000,
|
|
1162
|
+
"sample_count": 0,
|
|
1163
|
+
"source": "estimate"
|
|
1079
1164
|
}
|
|
1080
1165
|
},
|
|
1081
1166
|
"x-displayname": "Addon Service.",
|
|
@@ -1290,6 +1375,13 @@
|
|
|
1290
1375
|
"latency": "low",
|
|
1291
1376
|
"resource_usage": "low"
|
|
1292
1377
|
}
|
|
1378
|
+
},
|
|
1379
|
+
"x-f5xc-discovered-response-time": {
|
|
1380
|
+
"p50_ms": 1000,
|
|
1381
|
+
"p95_ms": 3000,
|
|
1382
|
+
"p99_ms": 8000,
|
|
1383
|
+
"sample_count": 0,
|
|
1384
|
+
"source": "estimate"
|
|
1293
1385
|
}
|
|
1294
1386
|
},
|
|
1295
1387
|
"x-displayname": "Addon Subscrption.",
|
|
@@ -1512,6 +1604,13 @@
|
|
|
1512
1604
|
"latency": "low",
|
|
1513
1605
|
"resource_usage": "low"
|
|
1514
1606
|
}
|
|
1607
|
+
},
|
|
1608
|
+
"x-f5xc-discovered-response-time": {
|
|
1609
|
+
"p50_ms": 800,
|
|
1610
|
+
"p95_ms": 2500,
|
|
1611
|
+
"p99_ms": 6000,
|
|
1612
|
+
"sample_count": 0,
|
|
1613
|
+
"source": "estimate"
|
|
1515
1614
|
}
|
|
1516
1615
|
},
|
|
1517
1616
|
"x-displayname": "Addon Subscrption.",
|
|
@@ -1739,6 +1838,13 @@
|
|
|
1739
1838
|
"latency": "moderate",
|
|
1740
1839
|
"resource_usage": "moderate"
|
|
1741
1840
|
}
|
|
1841
|
+
},
|
|
1842
|
+
"x-f5xc-discovered-response-time": {
|
|
1843
|
+
"p50_ms": 200,
|
|
1844
|
+
"p95_ms": 800,
|
|
1845
|
+
"p99_ms": 2000,
|
|
1846
|
+
"sample_count": 0,
|
|
1847
|
+
"source": "estimate"
|
|
1742
1848
|
}
|
|
1743
1849
|
},
|
|
1744
1850
|
"x-displayname": "Addon Subscrption.",
|
|
@@ -1959,6 +2065,13 @@
|
|
|
1959
2065
|
"latency": "low",
|
|
1960
2066
|
"resource_usage": "low"
|
|
1961
2067
|
}
|
|
2068
|
+
},
|
|
2069
|
+
"x-f5xc-discovered-response-time": {
|
|
2070
|
+
"p50_ms": 200,
|
|
2071
|
+
"p95_ms": 800,
|
|
2072
|
+
"p99_ms": 2000,
|
|
2073
|
+
"sample_count": 0,
|
|
2074
|
+
"source": "estimate"
|
|
1962
2075
|
}
|
|
1963
2076
|
},
|
|
1964
2077
|
"delete": {
|
|
@@ -2178,6 +2291,13 @@
|
|
|
2178
2291
|
"latency": "high",
|
|
2179
2292
|
"resource_usage": "moderate"
|
|
2180
2293
|
}
|
|
2294
|
+
},
|
|
2295
|
+
"x-f5xc-discovered-response-time": {
|
|
2296
|
+
"p50_ms": 500,
|
|
2297
|
+
"p95_ms": 1500,
|
|
2298
|
+
"p99_ms": 4000,
|
|
2299
|
+
"sample_count": 0,
|
|
2300
|
+
"source": "estimate"
|
|
2181
2301
|
}
|
|
2182
2302
|
},
|
|
2183
2303
|
"x-displayname": "Addon Subscrption.",
|
|
@@ -2392,6 +2512,13 @@
|
|
|
2392
2512
|
"latency": "low",
|
|
2393
2513
|
"resource_usage": "low"
|
|
2394
2514
|
}
|
|
2515
|
+
},
|
|
2516
|
+
"x-f5xc-discovered-response-time": {
|
|
2517
|
+
"p50_ms": 1000,
|
|
2518
|
+
"p95_ms": 3000,
|
|
2519
|
+
"p99_ms": 8000,
|
|
2520
|
+
"sample_count": 0,
|
|
2521
|
+
"source": "estimate"
|
|
2395
2522
|
}
|
|
2396
2523
|
},
|
|
2397
2524
|
"x-displayname": "Central Manager Instance.",
|
|
@@ -2614,6 +2741,13 @@
|
|
|
2614
2741
|
"latency": "low",
|
|
2615
2742
|
"resource_usage": "low"
|
|
2616
2743
|
}
|
|
2744
|
+
},
|
|
2745
|
+
"x-f5xc-discovered-response-time": {
|
|
2746
|
+
"p50_ms": 800,
|
|
2747
|
+
"p95_ms": 2500,
|
|
2748
|
+
"p99_ms": 6000,
|
|
2749
|
+
"sample_count": 0,
|
|
2750
|
+
"source": "estimate"
|
|
2617
2751
|
}
|
|
2618
2752
|
},
|
|
2619
2753
|
"x-displayname": "Central Manager Instance.",
|
|
@@ -2841,6 +2975,13 @@
|
|
|
2841
2975
|
"latency": "moderate",
|
|
2842
2976
|
"resource_usage": "moderate"
|
|
2843
2977
|
}
|
|
2978
|
+
},
|
|
2979
|
+
"x-f5xc-discovered-response-time": {
|
|
2980
|
+
"p50_ms": 200,
|
|
2981
|
+
"p95_ms": 800,
|
|
2982
|
+
"p99_ms": 2000,
|
|
2983
|
+
"sample_count": 0,
|
|
2984
|
+
"source": "estimate"
|
|
2844
2985
|
}
|
|
2845
2986
|
},
|
|
2846
2987
|
"x-displayname": "Central Manager Instance.",
|
|
@@ -3062,6 +3203,13 @@
|
|
|
3062
3203
|
"latency": "low",
|
|
3063
3204
|
"resource_usage": "low"
|
|
3064
3205
|
}
|
|
3206
|
+
},
|
|
3207
|
+
"x-f5xc-discovered-response-time": {
|
|
3208
|
+
"p50_ms": 200,
|
|
3209
|
+
"p95_ms": 800,
|
|
3210
|
+
"p99_ms": 2000,
|
|
3211
|
+
"sample_count": 0,
|
|
3212
|
+
"source": "estimate"
|
|
3065
3213
|
}
|
|
3066
3214
|
},
|
|
3067
3215
|
"delete": {
|
|
@@ -3281,6 +3429,13 @@
|
|
|
3281
3429
|
"latency": "high",
|
|
3282
3430
|
"resource_usage": "moderate"
|
|
3283
3431
|
}
|
|
3432
|
+
},
|
|
3433
|
+
"x-f5xc-discovered-response-time": {
|
|
3434
|
+
"p50_ms": 500,
|
|
3435
|
+
"p95_ms": 1500,
|
|
3436
|
+
"p99_ms": 4000,
|
|
3437
|
+
"sample_count": 0,
|
|
3438
|
+
"source": "estimate"
|
|
3284
3439
|
}
|
|
3285
3440
|
},
|
|
3286
3441
|
"x-displayname": "Central Manager Instance.",
|
|
@@ -3495,6 +3650,13 @@
|
|
|
3495
3650
|
"latency": "low",
|
|
3496
3651
|
"resource_usage": "low"
|
|
3497
3652
|
}
|
|
3653
|
+
},
|
|
3654
|
+
"x-f5xc-discovered-response-time": {
|
|
3655
|
+
"p50_ms": 1000,
|
|
3656
|
+
"p95_ms": 3000,
|
|
3657
|
+
"p99_ms": 8000,
|
|
3658
|
+
"sample_count": 0,
|
|
3659
|
+
"source": "estimate"
|
|
3498
3660
|
}
|
|
3499
3661
|
},
|
|
3500
3662
|
"x-displayname": "External Connector Configuration.",
|
|
@@ -3717,6 +3879,13 @@
|
|
|
3717
3879
|
"latency": "low",
|
|
3718
3880
|
"resource_usage": "low"
|
|
3719
3881
|
}
|
|
3882
|
+
},
|
|
3883
|
+
"x-f5xc-discovered-response-time": {
|
|
3884
|
+
"p50_ms": 800,
|
|
3885
|
+
"p95_ms": 2500,
|
|
3886
|
+
"p99_ms": 6000,
|
|
3887
|
+
"sample_count": 0,
|
|
3888
|
+
"source": "estimate"
|
|
3720
3889
|
}
|
|
3721
3890
|
},
|
|
3722
3891
|
"x-displayname": "External Connector Configuration.",
|
|
@@ -3944,6 +4113,13 @@
|
|
|
3944
4113
|
"latency": "moderate",
|
|
3945
4114
|
"resource_usage": "moderate"
|
|
3946
4115
|
}
|
|
4116
|
+
},
|
|
4117
|
+
"x-f5xc-discovered-response-time": {
|
|
4118
|
+
"p50_ms": 200,
|
|
4119
|
+
"p95_ms": 800,
|
|
4120
|
+
"p99_ms": 2000,
|
|
4121
|
+
"sample_count": 0,
|
|
4122
|
+
"source": "estimate"
|
|
3947
4123
|
}
|
|
3948
4124
|
},
|
|
3949
4125
|
"x-displayname": "External Connector Configuration.",
|
|
@@ -4165,6 +4341,13 @@
|
|
|
4165
4341
|
"latency": "low",
|
|
4166
4342
|
"resource_usage": "low"
|
|
4167
4343
|
}
|
|
4344
|
+
},
|
|
4345
|
+
"x-f5xc-discovered-response-time": {
|
|
4346
|
+
"p50_ms": 200,
|
|
4347
|
+
"p95_ms": 800,
|
|
4348
|
+
"p99_ms": 2000,
|
|
4349
|
+
"sample_count": 0,
|
|
4350
|
+
"source": "estimate"
|
|
4168
4351
|
}
|
|
4169
4352
|
},
|
|
4170
4353
|
"delete": {
|
|
@@ -4384,6 +4567,13 @@
|
|
|
4384
4567
|
"latency": "high",
|
|
4385
4568
|
"resource_usage": "moderate"
|
|
4386
4569
|
}
|
|
4570
|
+
},
|
|
4571
|
+
"x-f5xc-discovered-response-time": {
|
|
4572
|
+
"p50_ms": 500,
|
|
4573
|
+
"p95_ms": 1500,
|
|
4574
|
+
"p99_ms": 4000,
|
|
4575
|
+
"sample_count": 0,
|
|
4576
|
+
"source": "estimate"
|
|
4387
4577
|
}
|
|
4388
4578
|
},
|
|
4389
4579
|
"x-displayname": "External Connector Configuration.",
|
|
@@ -4611,6 +4801,13 @@
|
|
|
4611
4801
|
"latency": "moderate",
|
|
4612
4802
|
"resource_usage": "moderate"
|
|
4613
4803
|
}
|
|
4804
|
+
},
|
|
4805
|
+
"x-f5xc-discovered-response-time": {
|
|
4806
|
+
"p50_ms": 200,
|
|
4807
|
+
"p95_ms": 800,
|
|
4808
|
+
"p99_ms": 2000,
|
|
4809
|
+
"sample_count": 0,
|
|
4810
|
+
"source": "estimate"
|
|
4614
4811
|
}
|
|
4615
4812
|
},
|
|
4616
4813
|
"x-displayname": "Navigation Tile.",
|
|
@@ -4830,6 +5027,13 @@
|
|
|
4830
5027
|
"latency": "low",
|
|
4831
5028
|
"resource_usage": "low"
|
|
4832
5029
|
}
|
|
5030
|
+
},
|
|
5031
|
+
"x-f5xc-discovered-response-time": {
|
|
5032
|
+
"p50_ms": 200,
|
|
5033
|
+
"p95_ms": 800,
|
|
5034
|
+
"p99_ms": 2000,
|
|
5035
|
+
"sample_count": 0,
|
|
5036
|
+
"source": "estimate"
|
|
4833
5037
|
}
|
|
4834
5038
|
},
|
|
4835
5039
|
"x-displayname": "Navigation Tile.",
|
|
@@ -5029,6 +5233,13 @@
|
|
|
5029
5233
|
"latency": "low",
|
|
5030
5234
|
"resource_usage": "low"
|
|
5031
5235
|
}
|
|
5236
|
+
},
|
|
5237
|
+
"x-f5xc-discovered-response-time": {
|
|
5238
|
+
"p50_ms": 1000,
|
|
5239
|
+
"p95_ms": 3000,
|
|
5240
|
+
"p99_ms": 8000,
|
|
5241
|
+
"sample_count": 0,
|
|
5242
|
+
"source": "estimate"
|
|
5032
5243
|
}
|
|
5033
5244
|
},
|
|
5034
5245
|
"x-displayname": "Onboard AWS SaaS PAYG account.",
|
|
@@ -5228,6 +5439,13 @@
|
|
|
5228
5439
|
"latency": "low",
|
|
5229
5440
|
"resource_usage": "low"
|
|
5230
5441
|
}
|
|
5442
|
+
},
|
|
5443
|
+
"x-f5xc-discovered-response-time": {
|
|
5444
|
+
"p50_ms": 1000,
|
|
5445
|
+
"p95_ms": 3000,
|
|
5446
|
+
"p99_ms": 8000,
|
|
5447
|
+
"sample_count": 0,
|
|
5448
|
+
"source": "estimate"
|
|
5231
5449
|
}
|
|
5232
5450
|
},
|
|
5233
5451
|
"x-displayname": "Onboard AWS SaaS PAYG account.",
|
|
@@ -5455,6 +5673,13 @@
|
|
|
5455
5673
|
"latency": "moderate",
|
|
5456
5674
|
"resource_usage": "moderate"
|
|
5457
5675
|
}
|
|
5676
|
+
},
|
|
5677
|
+
"x-f5xc-discovered-response-time": {
|
|
5678
|
+
"p50_ms": 200,
|
|
5679
|
+
"p95_ms": 800,
|
|
5680
|
+
"p99_ms": 2000,
|
|
5681
|
+
"sample_count": 0,
|
|
5682
|
+
"source": "estimate"
|
|
5458
5683
|
}
|
|
5459
5684
|
},
|
|
5460
5685
|
"x-displayname": "Plan",
|
|
@@ -5674,6 +5899,13 @@
|
|
|
5674
5899
|
"latency": "low",
|
|
5675
5900
|
"resource_usage": "low"
|
|
5676
5901
|
}
|
|
5902
|
+
},
|
|
5903
|
+
"x-f5xc-discovered-response-time": {
|
|
5904
|
+
"p50_ms": 200,
|
|
5905
|
+
"p95_ms": 800,
|
|
5906
|
+
"p99_ms": 2000,
|
|
5907
|
+
"sample_count": 0,
|
|
5908
|
+
"source": "estimate"
|
|
5677
5909
|
}
|
|
5678
5910
|
},
|
|
5679
5911
|
"x-displayname": "Plan",
|
|
@@ -5896,6 +6128,13 @@
|
|
|
5896
6128
|
"latency": "low",
|
|
5897
6129
|
"resource_usage": "low"
|
|
5898
6130
|
}
|
|
6131
|
+
},
|
|
6132
|
+
"x-f5xc-discovered-response-time": {
|
|
6133
|
+
"p50_ms": 800,
|
|
6134
|
+
"p95_ms": 2500,
|
|
6135
|
+
"p99_ms": 6000,
|
|
6136
|
+
"sample_count": 0,
|
|
6137
|
+
"source": "estimate"
|
|
5899
6138
|
}
|
|
5900
6139
|
},
|
|
5901
6140
|
"x-displayname": "Third Party Application.",
|
|
@@ -6110,6 +6349,13 @@
|
|
|
6110
6349
|
"latency": "low",
|
|
6111
6350
|
"resource_usage": "low"
|
|
6112
6351
|
}
|
|
6352
|
+
},
|
|
6353
|
+
"x-f5xc-discovered-response-time": {
|
|
6354
|
+
"p50_ms": 1000,
|
|
6355
|
+
"p95_ms": 3000,
|
|
6356
|
+
"p99_ms": 8000,
|
|
6357
|
+
"sample_count": 0,
|
|
6358
|
+
"source": "estimate"
|
|
6113
6359
|
}
|
|
6114
6360
|
},
|
|
6115
6361
|
"x-displayname": "Third Party Application.",
|
|
@@ -6337,6 +6583,13 @@
|
|
|
6337
6583
|
"latency": "moderate",
|
|
6338
6584
|
"resource_usage": "moderate"
|
|
6339
6585
|
}
|
|
6586
|
+
},
|
|
6587
|
+
"x-f5xc-discovered-response-time": {
|
|
6588
|
+
"p50_ms": 200,
|
|
6589
|
+
"p95_ms": 800,
|
|
6590
|
+
"p99_ms": 2000,
|
|
6591
|
+
"sample_count": 0,
|
|
6592
|
+
"source": "estimate"
|
|
6340
6593
|
}
|
|
6341
6594
|
},
|
|
6342
6595
|
"x-displayname": "Third Party Application.",
|
|
@@ -6557,6 +6810,13 @@
|
|
|
6557
6810
|
"latency": "low",
|
|
6558
6811
|
"resource_usage": "low"
|
|
6559
6812
|
}
|
|
6813
|
+
},
|
|
6814
|
+
"x-f5xc-discovered-response-time": {
|
|
6815
|
+
"p50_ms": 200,
|
|
6816
|
+
"p95_ms": 800,
|
|
6817
|
+
"p99_ms": 2000,
|
|
6818
|
+
"sample_count": 0,
|
|
6819
|
+
"source": "estimate"
|
|
6560
6820
|
}
|
|
6561
6821
|
},
|
|
6562
6822
|
"x-displayname": "Third Party Application.",
|
|
@@ -6758,6 +7018,13 @@
|
|
|
6758
7018
|
"latency": "moderate",
|
|
6759
7019
|
"resource_usage": "moderate"
|
|
6760
7020
|
}
|
|
7021
|
+
},
|
|
7022
|
+
"x-f5xc-discovered-response-time": {
|
|
7023
|
+
"p50_ms": 200,
|
|
7024
|
+
"p95_ms": 800,
|
|
7025
|
+
"p99_ms": 2000,
|
|
7026
|
+
"sample_count": 0,
|
|
7027
|
+
"source": "estimate"
|
|
6761
7028
|
}
|
|
6762
7029
|
},
|
|
6763
7030
|
"x-displayname": "Third Party Application.",
|
|
@@ -6972,6 +7239,13 @@
|
|
|
6972
7239
|
"latency": "low",
|
|
6973
7240
|
"resource_usage": "low"
|
|
6974
7241
|
}
|
|
7242
|
+
},
|
|
7243
|
+
"x-f5xc-discovered-response-time": {
|
|
7244
|
+
"p50_ms": 200,
|
|
7245
|
+
"p95_ms": 800,
|
|
7246
|
+
"p99_ms": 2000,
|
|
7247
|
+
"sample_count": 0,
|
|
7248
|
+
"source": "estimate"
|
|
6975
7249
|
}
|
|
6976
7250
|
},
|
|
6977
7251
|
"x-displayname": "View Internal.",
|
|
@@ -7212,6 +7486,13 @@
|
|
|
7212
7486
|
"latency": "low",
|
|
7213
7487
|
"resource_usage": "low"
|
|
7214
7488
|
}
|
|
7489
|
+
},
|
|
7490
|
+
"x-f5xc-discovered-response-time": {
|
|
7491
|
+
"p50_ms": 1000,
|
|
7492
|
+
"p95_ms": 3000,
|
|
7493
|
+
"p99_ms": 8000,
|
|
7494
|
+
"sample_count": 0,
|
|
7495
|
+
"source": "estimate"
|
|
7215
7496
|
}
|
|
7216
7497
|
},
|
|
7217
7498
|
"x-displayname": "View Terraform Parameters.",
|
|
@@ -7452,6 +7733,13 @@
|
|
|
7452
7733
|
"latency": "low",
|
|
7453
7734
|
"resource_usage": "low"
|
|
7454
7735
|
}
|
|
7736
|
+
},
|
|
7737
|
+
"x-f5xc-discovered-response-time": {
|
|
7738
|
+
"p50_ms": 1000,
|
|
7739
|
+
"p95_ms": 3000,
|
|
7740
|
+
"p99_ms": 8000,
|
|
7741
|
+
"sample_count": 0,
|
|
7742
|
+
"source": "estimate"
|
|
7455
7743
|
}
|
|
7456
7744
|
},
|
|
7457
7745
|
"x-displayname": "View Terraform Parameters.",
|
|
@@ -7666,6 +7954,13 @@
|
|
|
7666
7954
|
"latency": "low",
|
|
7667
7955
|
"resource_usage": "low"
|
|
7668
7956
|
}
|
|
7957
|
+
},
|
|
7958
|
+
"x-f5xc-discovered-response-time": {
|
|
7959
|
+
"p50_ms": 200,
|
|
7960
|
+
"p95_ms": 800,
|
|
7961
|
+
"p99_ms": 2000,
|
|
7962
|
+
"sample_count": 0,
|
|
7963
|
+
"source": "estimate"
|
|
7669
7964
|
}
|
|
7670
7965
|
},
|
|
7671
7966
|
"x-displayname": "View Terraform Parameters.",
|
|
@@ -7880,6 +8175,13 @@
|
|
|
7880
8175
|
"latency": "moderate",
|
|
7881
8176
|
"resource_usage": "moderate"
|
|
7882
8177
|
}
|
|
8178
|
+
},
|
|
8179
|
+
"x-f5xc-discovered-response-time": {
|
|
8180
|
+
"p50_ms": 200,
|
|
8181
|
+
"p95_ms": 800,
|
|
8182
|
+
"p99_ms": 2000,
|
|
8183
|
+
"sample_count": 0,
|
|
8184
|
+
"source": "estimate"
|
|
7883
8185
|
}
|
|
7884
8186
|
},
|
|
7885
8187
|
"x-displayname": "View Terraform Parameters.",
|
|
@@ -8079,6 +8381,13 @@
|
|
|
8079
8381
|
"latency": "low",
|
|
8080
8382
|
"resource_usage": "low"
|
|
8081
8383
|
}
|
|
8384
|
+
},
|
|
8385
|
+
"x-f5xc-discovered-response-time": {
|
|
8386
|
+
"p50_ms": 1000,
|
|
8387
|
+
"p95_ms": 3000,
|
|
8388
|
+
"p99_ms": 8000,
|
|
8389
|
+
"sample_count": 0,
|
|
8390
|
+
"source": "estimate"
|
|
8082
8391
|
}
|
|
8083
8392
|
},
|
|
8084
8393
|
"x-displayname": "XC SaaS Onboarding.",
|
|
@@ -8262,6 +8571,13 @@
|
|
|
8262
8571
|
"latency": "moderate",
|
|
8263
8572
|
"resource_usage": "moderate"
|
|
8264
8573
|
}
|
|
8574
|
+
},
|
|
8575
|
+
"x-f5xc-discovered-response-time": {
|
|
8576
|
+
"p50_ms": 200,
|
|
8577
|
+
"p95_ms": 800,
|
|
8578
|
+
"p99_ms": 2000,
|
|
8579
|
+
"sample_count": 0,
|
|
8580
|
+
"source": "estimate"
|
|
8265
8581
|
}
|
|
8266
8582
|
},
|
|
8267
8583
|
"x-displayname": "XC SaaS Onboarding.",
|
|
@@ -8461,6 +8777,13 @@
|
|
|
8461
8777
|
"latency": "low",
|
|
8462
8778
|
"resource_usage": "low"
|
|
8463
8779
|
}
|
|
8780
|
+
},
|
|
8781
|
+
"x-f5xc-discovered-response-time": {
|
|
8782
|
+
"p50_ms": 1000,
|
|
8783
|
+
"p95_ms": 3000,
|
|
8784
|
+
"p99_ms": 8000,
|
|
8785
|
+
"sample_count": 0,
|
|
8786
|
+
"source": "estimate"
|
|
8464
8787
|
}
|
|
8465
8788
|
},
|
|
8466
8789
|
"x-displayname": "XC SaaS Onboarding.",
|
|
@@ -8518,7 +8841,7 @@
|
|
|
8518
8841
|
},
|
|
8519
8842
|
"x-original-maxLength": 1024,
|
|
8520
8843
|
"x-reconciled-from-discovery": true,
|
|
8521
|
-
"x-reconciled-at": "2026-01-
|
|
8844
|
+
"x-reconciled-at": "2026-01-05T18:28:39.192988+00:00"
|
|
8522
8845
|
},
|
|
8523
8846
|
"tier": {
|
|
8524
8847
|
"$ref": "#/components/schemas/schemaAddonServiceTierType"
|
|
@@ -8562,7 +8885,7 @@
|
|
|
8562
8885
|
},
|
|
8563
8886
|
"x-original-maxLength": 1024,
|
|
8564
8887
|
"x-reconciled-from-discovery": true,
|
|
8565
|
-
"x-reconciled-at": "2026-01-
|
|
8888
|
+
"x-reconciled-at": "2026-01-05T18:28:39.192998+00:00"
|
|
8566
8889
|
},
|
|
8567
8890
|
"subject": {
|
|
8568
8891
|
"type": "string",
|
|
@@ -8867,7 +9190,7 @@
|
|
|
8867
9190
|
"maxLength": 17,
|
|
8868
9191
|
"minLength": 17,
|
|
8869
9192
|
"x-reconciled-from-discovery": true,
|
|
8870
|
-
"x-reconciled-at": "2026-01-
|
|
9193
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193044+00:00"
|
|
8871
9194
|
},
|
|
8872
9195
|
"system_metadata": {
|
|
8873
9196
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -8998,7 +9321,7 @@
|
|
|
8998
9321
|
},
|
|
8999
9322
|
"x-original-maxLength": 1024,
|
|
9000
9323
|
"x-reconciled-from-discovery": true,
|
|
9001
|
-
"x-reconciled-at": "2026-01-
|
|
9324
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193058+00:00"
|
|
9002
9325
|
},
|
|
9003
9326
|
"disabled": {
|
|
9004
9327
|
"type": "boolean",
|
|
@@ -9048,7 +9371,7 @@
|
|
|
9048
9371
|
},
|
|
9049
9372
|
"x-original-maxLength": 1024,
|
|
9050
9373
|
"x-reconciled-from-discovery": true,
|
|
9051
|
-
"x-reconciled-at": "2026-01-
|
|
9374
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193068+00:00"
|
|
9052
9375
|
},
|
|
9053
9376
|
"namespace": {
|
|
9054
9377
|
"type": "string",
|
|
@@ -9067,7 +9390,7 @@
|
|
|
9067
9390
|
},
|
|
9068
9391
|
"x-original-maxLength": 1024,
|
|
9069
9392
|
"x-reconciled-from-discovery": true,
|
|
9070
|
-
"x-reconciled-at": "2026-01-
|
|
9393
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193073+00:00"
|
|
9071
9394
|
},
|
|
9072
9395
|
"owner_view": {
|
|
9073
9396
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -9108,7 +9431,7 @@
|
|
|
9108
9431
|
"x-field-mutability": "read-only",
|
|
9109
9432
|
"x-original-maxLength": 1024,
|
|
9110
9433
|
"x-reconciled-from-discovery": true,
|
|
9111
|
-
"x-reconciled-at": "2026-01-
|
|
9434
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193081+00:00"
|
|
9112
9435
|
},
|
|
9113
9436
|
"uid": {
|
|
9114
9437
|
"type": "string",
|
|
@@ -9129,7 +9452,7 @@
|
|
|
9129
9452
|
"x-original-maxLength": 1024,
|
|
9130
9453
|
"format": "uuid",
|
|
9131
9454
|
"x-reconciled-from-discovery": true,
|
|
9132
|
-
"x-reconciled-at": "2026-01-
|
|
9455
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193087+00:00"
|
|
9133
9456
|
}
|
|
9134
9457
|
},
|
|
9135
9458
|
"x-f5xc-minimum-configuration": {
|
|
@@ -9639,7 +9962,7 @@
|
|
|
9639
9962
|
},
|
|
9640
9963
|
"x-original-maxLength": 1024,
|
|
9641
9964
|
"x-reconciled-from-discovery": true,
|
|
9642
|
-
"x-reconciled-at": "2026-01-
|
|
9965
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193122+00:00"
|
|
9643
9966
|
}
|
|
9644
9967
|
},
|
|
9645
9968
|
"x-f5xc-minimum-configuration": {
|
|
@@ -9778,7 +10101,7 @@
|
|
|
9778
10101
|
},
|
|
9779
10102
|
"x-original-maxLength": 1024,
|
|
9780
10103
|
"x-reconciled-from-discovery": true,
|
|
9781
|
-
"x-reconciled-at": "2026-01-
|
|
10104
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193132+00:00"
|
|
9782
10105
|
},
|
|
9783
10106
|
"service_name": {
|
|
9784
10107
|
"type": "string",
|
|
@@ -9817,7 +10140,7 @@
|
|
|
9817
10140
|
},
|
|
9818
10141
|
"x-original-maxLength": 1024,
|
|
9819
10142
|
"x-reconciled-from-discovery": true,
|
|
9820
|
-
"x-reconciled-at": "2026-01-
|
|
10143
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193138+00:00"
|
|
9821
10144
|
},
|
|
9822
10145
|
"type": {
|
|
9823
10146
|
"type": "string",
|
|
@@ -9977,7 +10300,7 @@
|
|
|
9977
10300
|
},
|
|
9978
10301
|
"x-original-maxLength": 1024,
|
|
9979
10302
|
"x-reconciled-from-discovery": true,
|
|
9980
|
-
"x-reconciled-at": "2026-01-
|
|
10303
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193149+00:00"
|
|
9981
10304
|
}
|
|
9982
10305
|
},
|
|
9983
10306
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10087,7 +10410,7 @@
|
|
|
10087
10410
|
},
|
|
10088
10411
|
"x-original-maxLength": 1200,
|
|
10089
10412
|
"x-reconciled-from-discovery": true,
|
|
10090
|
-
"x-reconciled-at": "2026-01-
|
|
10413
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193159+00:00"
|
|
10091
10414
|
},
|
|
10092
10415
|
"disable": {
|
|
10093
10416
|
"type": "boolean",
|
|
@@ -10142,7 +10465,7 @@
|
|
|
10142
10465
|
},
|
|
10143
10466
|
"x-original-maxLength": 1024,
|
|
10144
10467
|
"x-reconciled-from-discovery": true,
|
|
10145
|
-
"x-reconciled-at": "2026-01-
|
|
10468
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193167+00:00"
|
|
10146
10469
|
},
|
|
10147
10470
|
"namespace": {
|
|
10148
10471
|
"type": "string",
|
|
@@ -10161,7 +10484,7 @@
|
|
|
10161
10484
|
},
|
|
10162
10485
|
"x-original-maxLength": 1024,
|
|
10163
10486
|
"x-reconciled-from-discovery": true,
|
|
10164
|
-
"x-reconciled-at": "2026-01-
|
|
10487
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193171+00:00"
|
|
10165
10488
|
}
|
|
10166
10489
|
},
|
|
10167
10490
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10206,7 +10529,7 @@
|
|
|
10206
10529
|
"readOnly": true,
|
|
10207
10530
|
"x-original-maxLength": 1024,
|
|
10208
10531
|
"x-reconciled-from-discovery": true,
|
|
10209
|
-
"x-reconciled-at": "2026-01-
|
|
10532
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193176+00:00"
|
|
10210
10533
|
},
|
|
10211
10534
|
"name": {
|
|
10212
10535
|
"type": "string",
|
|
@@ -10225,7 +10548,7 @@
|
|
|
10225
10548
|
},
|
|
10226
10549
|
"x-original-maxLength": 1024,
|
|
10227
10550
|
"x-reconciled-from-discovery": true,
|
|
10228
|
-
"x-reconciled-at": "2026-01-
|
|
10551
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193180+00:00"
|
|
10229
10552
|
},
|
|
10230
10553
|
"namespace": {
|
|
10231
10554
|
"type": "string",
|
|
@@ -10244,7 +10567,7 @@
|
|
|
10244
10567
|
},
|
|
10245
10568
|
"x-original-maxLength": 1024,
|
|
10246
10569
|
"x-reconciled-from-discovery": true,
|
|
10247
|
-
"x-reconciled-at": "2026-01-
|
|
10570
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193184+00:00"
|
|
10248
10571
|
},
|
|
10249
10572
|
"tenant": {
|
|
10250
10573
|
"type": "string",
|
|
@@ -10265,7 +10588,7 @@
|
|
|
10265
10588
|
"x-field-mutability": "read-only",
|
|
10266
10589
|
"x-original-maxLength": 1024,
|
|
10267
10590
|
"x-reconciled-from-discovery": true,
|
|
10268
|
-
"x-reconciled-at": "2026-01-
|
|
10591
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193189+00:00"
|
|
10269
10592
|
},
|
|
10270
10593
|
"uid": {
|
|
10271
10594
|
"type": "string",
|
|
@@ -10287,7 +10610,7 @@
|
|
|
10287
10610
|
"x-original-maxLength": 1024,
|
|
10288
10611
|
"format": "uuid",
|
|
10289
10612
|
"x-reconciled-from-discovery": true,
|
|
10290
|
-
"x-reconciled-at": "2026-01-
|
|
10613
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193194+00:00"
|
|
10291
10614
|
}
|
|
10292
10615
|
},
|
|
10293
10616
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10400,7 +10723,7 @@
|
|
|
10400
10723
|
"x-original-maxLength": 1024,
|
|
10401
10724
|
"format": "uuid",
|
|
10402
10725
|
"x-reconciled-from-discovery": true,
|
|
10403
|
-
"x-reconciled-at": "2026-01-
|
|
10726
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193208+00:00"
|
|
10404
10727
|
},
|
|
10405
10728
|
"vtrp_id": {
|
|
10406
10729
|
"type": "string",
|
|
@@ -10512,7 +10835,7 @@
|
|
|
10512
10835
|
},
|
|
10513
10836
|
"x-original-maxLength": 1024,
|
|
10514
10837
|
"x-reconciled-from-discovery": true,
|
|
10515
|
-
"x-reconciled-at": "2026-01-
|
|
10838
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193218+00:00"
|
|
10516
10839
|
},
|
|
10517
10840
|
"status": {
|
|
10518
10841
|
"type": "string",
|
|
@@ -10531,7 +10854,7 @@
|
|
|
10531
10854
|
},
|
|
10532
10855
|
"x-original-maxLength": 1024,
|
|
10533
10856
|
"x-reconciled-from-discovery": true,
|
|
10534
|
-
"x-reconciled-at": "2026-01-
|
|
10857
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193222+00:00"
|
|
10535
10858
|
}
|
|
10536
10859
|
},
|
|
10537
10860
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10709,7 +11032,7 @@
|
|
|
10709
11032
|
"x-field-mutability": "read-only",
|
|
10710
11033
|
"x-original-maxLength": 1024,
|
|
10711
11034
|
"x-reconciled-from-discovery": true,
|
|
10712
|
-
"x-reconciled-at": "2026-01-
|
|
11035
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193241+00:00"
|
|
10713
11036
|
},
|
|
10714
11037
|
"uid": {
|
|
10715
11038
|
"type": "string",
|
|
@@ -10730,7 +11053,7 @@
|
|
|
10730
11053
|
"x-original-maxLength": 1024,
|
|
10731
11054
|
"format": "uuid",
|
|
10732
11055
|
"x-reconciled-from-discovery": true,
|
|
10733
|
-
"x-reconciled-at": "2026-01-
|
|
11056
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193246+00:00"
|
|
10734
11057
|
}
|
|
10735
11058
|
},
|
|
10736
11059
|
"x-f5xc-minimum-configuration": {
|
|
@@ -10780,7 +11103,7 @@
|
|
|
10780
11103
|
},
|
|
10781
11104
|
"x-original-maxLength": 1024,
|
|
10782
11105
|
"x-reconciled-from-discovery": true,
|
|
10783
|
-
"x-reconciled-at": "2026-01-
|
|
11106
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193251+00:00"
|
|
10784
11107
|
},
|
|
10785
11108
|
"name": {
|
|
10786
11109
|
"type": "string",
|
|
@@ -10799,7 +11122,7 @@
|
|
|
10799
11122
|
},
|
|
10800
11123
|
"x-original-maxLength": 1024,
|
|
10801
11124
|
"x-reconciled-from-discovery": true,
|
|
10802
|
-
"x-reconciled-at": "2026-01-
|
|
11125
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193255+00:00"
|
|
10803
11126
|
},
|
|
10804
11127
|
"namespace": {
|
|
10805
11128
|
"type": "string",
|
|
@@ -10818,7 +11141,7 @@
|
|
|
10818
11141
|
},
|
|
10819
11142
|
"x-original-maxLength": 1024,
|
|
10820
11143
|
"x-reconciled-from-discovery": true,
|
|
10821
|
-
"x-reconciled-at": "2026-01-
|
|
11144
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193260+00:00"
|
|
10822
11145
|
},
|
|
10823
11146
|
"uid": {
|
|
10824
11147
|
"type": "string",
|
|
@@ -10839,7 +11162,7 @@
|
|
|
10839
11162
|
"x-original-maxLength": 1024,
|
|
10840
11163
|
"format": "uuid",
|
|
10841
11164
|
"x-reconciled-from-discovery": true,
|
|
10842
|
-
"x-reconciled-at": "2026-01-
|
|
11165
|
+
"x-reconciled-at": "2026-01-05T18:28:39.193264+00:00"
|
|
10843
11166
|
}
|
|
10844
11167
|
},
|
|
10845
11168
|
"x-f5xc-minimum-configuration": {
|
|
@@ -11004,7 +11327,7 @@
|
|
|
11004
11327
|
},
|
|
11005
11328
|
"x-original-maxLength": 1024,
|
|
11006
11329
|
"x-reconciled-from-discovery": true,
|
|
11007
|
-
"x-reconciled-at": "2026-01-
|
|
11330
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511106+00:00"
|
|
11008
11331
|
},
|
|
11009
11332
|
"namespace": {
|
|
11010
11333
|
"type": "string",
|
|
@@ -11023,7 +11346,7 @@
|
|
|
11023
11346
|
},
|
|
11024
11347
|
"x-original-maxLength": 1024,
|
|
11025
11348
|
"x-reconciled-from-discovery": true,
|
|
11026
|
-
"x-reconciled-at": "2026-01-
|
|
11349
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511113+00:00"
|
|
11027
11350
|
}
|
|
11028
11351
|
},
|
|
11029
11352
|
"x-f5xc-minimum-configuration": {
|
|
@@ -11267,7 +11590,7 @@
|
|
|
11267
11590
|
},
|
|
11268
11591
|
"x-original-maxLength": 1024,
|
|
11269
11592
|
"x-reconciled-from-discovery": true,
|
|
11270
|
-
"x-reconciled-at": "2026-01-
|
|
11593
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511138+00:00"
|
|
11271
11594
|
},
|
|
11272
11595
|
"disabled": {
|
|
11273
11596
|
"type": "boolean",
|
|
@@ -11317,7 +11640,7 @@
|
|
|
11317
11640
|
},
|
|
11318
11641
|
"x-original-maxLength": 1024,
|
|
11319
11642
|
"x-reconciled-from-discovery": true,
|
|
11320
|
-
"x-reconciled-at": "2026-01-
|
|
11643
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511148+00:00"
|
|
11321
11644
|
},
|
|
11322
11645
|
"namespace": {
|
|
11323
11646
|
"type": "string",
|
|
@@ -11336,7 +11659,7 @@
|
|
|
11336
11659
|
},
|
|
11337
11660
|
"x-original-maxLength": 1024,
|
|
11338
11661
|
"x-reconciled-from-discovery": true,
|
|
11339
|
-
"x-reconciled-at": "2026-01-
|
|
11662
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511152+00:00"
|
|
11340
11663
|
},
|
|
11341
11664
|
"owner_view": {
|
|
11342
11665
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -11362,7 +11685,7 @@
|
|
|
11362
11685
|
"x-field-mutability": "read-only",
|
|
11363
11686
|
"x-original-maxLength": 1024,
|
|
11364
11687
|
"x-reconciled-from-discovery": true,
|
|
11365
|
-
"x-reconciled-at": "2026-01-
|
|
11688
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511159+00:00"
|
|
11366
11689
|
},
|
|
11367
11690
|
"uid": {
|
|
11368
11691
|
"type": "string",
|
|
@@ -11383,7 +11706,7 @@
|
|
|
11383
11706
|
"x-original-maxLength": 1024,
|
|
11384
11707
|
"format": "uuid",
|
|
11385
11708
|
"x-reconciled-from-discovery": true,
|
|
11386
|
-
"x-reconciled-at": "2026-01-
|
|
11709
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511165+00:00"
|
|
11387
11710
|
}
|
|
11388
11711
|
},
|
|
11389
11712
|
"x-f5xc-minimum-configuration": {
|
|
@@ -11586,7 +11909,7 @@
|
|
|
11586
11909
|
"readOnly": true,
|
|
11587
11910
|
"x-original-maxLength": 1024,
|
|
11588
11911
|
"x-reconciled-from-discovery": true,
|
|
11589
|
-
"x-reconciled-at": "2026-01-
|
|
11912
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511183+00:00"
|
|
11590
11913
|
},
|
|
11591
11914
|
"name": {
|
|
11592
11915
|
"type": "string",
|
|
@@ -11605,7 +11928,7 @@
|
|
|
11605
11928
|
},
|
|
11606
11929
|
"x-original-maxLength": 1024,
|
|
11607
11930
|
"x-reconciled-from-discovery": true,
|
|
11608
|
-
"x-reconciled-at": "2026-01-
|
|
11931
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511187+00:00"
|
|
11609
11932
|
},
|
|
11610
11933
|
"namespace": {
|
|
11611
11934
|
"type": "string",
|
|
@@ -11624,7 +11947,7 @@
|
|
|
11624
11947
|
},
|
|
11625
11948
|
"x-original-maxLength": 1024,
|
|
11626
11949
|
"x-reconciled-from-discovery": true,
|
|
11627
|
-
"x-reconciled-at": "2026-01-
|
|
11950
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511191+00:00"
|
|
11628
11951
|
},
|
|
11629
11952
|
"tenant": {
|
|
11630
11953
|
"type": "string",
|
|
@@ -11645,7 +11968,7 @@
|
|
|
11645
11968
|
"x-field-mutability": "read-only",
|
|
11646
11969
|
"x-original-maxLength": 1024,
|
|
11647
11970
|
"x-reconciled-from-discovery": true,
|
|
11648
|
-
"x-reconciled-at": "2026-01-
|
|
11971
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511195+00:00"
|
|
11649
11972
|
},
|
|
11650
11973
|
"uid": {
|
|
11651
11974
|
"type": "string",
|
|
@@ -11667,7 +11990,7 @@
|
|
|
11667
11990
|
"x-original-maxLength": 1024,
|
|
11668
11991
|
"format": "uuid",
|
|
11669
11992
|
"x-reconciled-from-discovery": true,
|
|
11670
|
-
"x-reconciled-at": "2026-01-
|
|
11993
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511201+00:00"
|
|
11671
11994
|
}
|
|
11672
11995
|
},
|
|
11673
11996
|
"x-f5xc-minimum-configuration": {
|
|
@@ -11741,7 +12064,7 @@
|
|
|
11741
12064
|
},
|
|
11742
12065
|
"x-original-maxLength": 1200,
|
|
11743
12066
|
"x-reconciled-from-discovery": true,
|
|
11744
|
-
"x-reconciled-at": "2026-01-
|
|
12067
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511229+00:00"
|
|
11745
12068
|
},
|
|
11746
12069
|
"disable": {
|
|
11747
12070
|
"type": "boolean",
|
|
@@ -11794,7 +12117,7 @@
|
|
|
11794
12117
|
},
|
|
11795
12118
|
"x-original-maxLength": 1024,
|
|
11796
12119
|
"x-reconciled-from-discovery": true,
|
|
11797
|
-
"x-reconciled-at": "2026-01-
|
|
12120
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511237+00:00"
|
|
11798
12121
|
},
|
|
11799
12122
|
"namespace": {
|
|
11800
12123
|
"type": "string",
|
|
@@ -11813,7 +12136,7 @@
|
|
|
11813
12136
|
},
|
|
11814
12137
|
"x-original-maxLength": 1024,
|
|
11815
12138
|
"x-reconciled-from-discovery": true,
|
|
11816
|
-
"x-reconciled-at": "2026-01-
|
|
12139
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511241+00:00"
|
|
11817
12140
|
}
|
|
11818
12141
|
},
|
|
11819
12142
|
"x-f5xc-minimum-configuration": {
|
|
@@ -11889,7 +12212,7 @@
|
|
|
11889
12212
|
},
|
|
11890
12213
|
"x-original-maxLength": 1200,
|
|
11891
12214
|
"x-reconciled-from-discovery": true,
|
|
11892
|
-
"x-reconciled-at": "2026-01-
|
|
12215
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511266+00:00"
|
|
11893
12216
|
},
|
|
11894
12217
|
"disable": {
|
|
11895
12218
|
"type": "boolean",
|
|
@@ -11942,7 +12265,7 @@
|
|
|
11942
12265
|
},
|
|
11943
12266
|
"x-original-maxLength": 1024,
|
|
11944
12267
|
"x-reconciled-from-discovery": true,
|
|
11945
|
-
"x-reconciled-at": "2026-01-
|
|
12268
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511273+00:00"
|
|
11946
12269
|
},
|
|
11947
12270
|
"namespace": {
|
|
11948
12271
|
"type": "string",
|
|
@@ -11961,7 +12284,7 @@
|
|
|
11961
12284
|
},
|
|
11962
12285
|
"x-original-maxLength": 1024,
|
|
11963
12286
|
"x-reconciled-from-discovery": true,
|
|
11964
|
-
"x-reconciled-at": "2026-01-
|
|
12287
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511277+00:00"
|
|
11965
12288
|
}
|
|
11966
12289
|
},
|
|
11967
12290
|
"x-f5xc-minimum-configuration": {
|
|
@@ -12016,7 +12339,7 @@
|
|
|
12016
12339
|
},
|
|
12017
12340
|
"x-original-maxLength": 128,
|
|
12018
12341
|
"x-reconciled-from-discovery": true,
|
|
12019
|
-
"x-reconciled-at": "2026-01-
|
|
12342
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511336+00:00"
|
|
12020
12343
|
},
|
|
12021
12344
|
"namespace": {
|
|
12022
12345
|
"type": "string",
|
|
@@ -12041,7 +12364,7 @@
|
|
|
12041
12364
|
},
|
|
12042
12365
|
"x-original-maxLength": 64,
|
|
12043
12366
|
"x-reconciled-from-discovery": true,
|
|
12044
|
-
"x-reconciled-at": "2026-01-
|
|
12367
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511340+00:00"
|
|
12045
12368
|
},
|
|
12046
12369
|
"tenant": {
|
|
12047
12370
|
"type": "string",
|
|
@@ -12068,7 +12391,7 @@
|
|
|
12068
12391
|
"x-field-mutability": "read-only",
|
|
12069
12392
|
"x-original-maxLength": 64,
|
|
12070
12393
|
"x-reconciled-from-discovery": true,
|
|
12071
|
-
"x-reconciled-at": "2026-01-
|
|
12394
|
+
"x-reconciled-at": "2026-01-05T18:28:39.511345+00:00"
|
|
12072
12395
|
}
|
|
12073
12396
|
},
|
|
12074
12397
|
"x-f5xc-minimum-configuration": {
|
|
@@ -12263,7 +12586,7 @@
|
|
|
12263
12586
|
},
|
|
12264
12587
|
"x-original-maxLength": 1024,
|
|
12265
12588
|
"x-reconciled-from-discovery": true,
|
|
12266
|
-
"x-reconciled-at": "2026-01-
|
|
12589
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997599+00:00"
|
|
12267
12590
|
},
|
|
12268
12591
|
"namespace": {
|
|
12269
12592
|
"type": "string",
|
|
@@ -12282,7 +12605,7 @@
|
|
|
12282
12605
|
},
|
|
12283
12606
|
"x-original-maxLength": 1024,
|
|
12284
12607
|
"x-reconciled-from-discovery": true,
|
|
12285
|
-
"x-reconciled-at": "2026-01-
|
|
12608
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997606+00:00"
|
|
12286
12609
|
}
|
|
12287
12610
|
},
|
|
12288
12611
|
"x-f5xc-minimum-configuration": {
|
|
@@ -12380,7 +12703,7 @@
|
|
|
12380
12703
|
"maxLength": 17,
|
|
12381
12704
|
"minLength": 17,
|
|
12382
12705
|
"x-reconciled-from-discovery": true,
|
|
12383
|
-
"x-reconciled-at": "2026-01-
|
|
12706
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997623+00:00"
|
|
12384
12707
|
},
|
|
12385
12708
|
"system_metadata": {
|
|
12386
12709
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -12601,7 +12924,7 @@
|
|
|
12601
12924
|
},
|
|
12602
12925
|
"x-original-maxLength": 1024,
|
|
12603
12926
|
"x-reconciled-from-discovery": true,
|
|
12604
|
-
"x-reconciled-at": "2026-01-
|
|
12927
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997643+00:00"
|
|
12605
12928
|
},
|
|
12606
12929
|
"disabled": {
|
|
12607
12930
|
"type": "boolean",
|
|
@@ -12651,7 +12974,7 @@
|
|
|
12651
12974
|
},
|
|
12652
12975
|
"x-original-maxLength": 1024,
|
|
12653
12976
|
"x-reconciled-from-discovery": true,
|
|
12654
|
-
"x-reconciled-at": "2026-01-
|
|
12977
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997655+00:00"
|
|
12655
12978
|
},
|
|
12656
12979
|
"namespace": {
|
|
12657
12980
|
"type": "string",
|
|
@@ -12670,7 +12993,7 @@
|
|
|
12670
12993
|
},
|
|
12671
12994
|
"x-original-maxLength": 1024,
|
|
12672
12995
|
"x-reconciled-from-discovery": true,
|
|
12673
|
-
"x-reconciled-at": "2026-01-
|
|
12996
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997659+00:00"
|
|
12674
12997
|
},
|
|
12675
12998
|
"owner_view": {
|
|
12676
12999
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -12711,7 +13034,7 @@
|
|
|
12711
13034
|
"x-field-mutability": "read-only",
|
|
12712
13035
|
"x-original-maxLength": 1024,
|
|
12713
13036
|
"x-reconciled-from-discovery": true,
|
|
12714
|
-
"x-reconciled-at": "2026-01-
|
|
13037
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997667+00:00"
|
|
12715
13038
|
},
|
|
12716
13039
|
"uid": {
|
|
12717
13040
|
"type": "string",
|
|
@@ -12732,7 +13055,7 @@
|
|
|
12732
13055
|
"x-original-maxLength": 1024,
|
|
12733
13056
|
"format": "uuid",
|
|
12734
13057
|
"x-reconciled-from-discovery": true,
|
|
12735
|
-
"x-reconciled-at": "2026-01-
|
|
13058
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997673+00:00"
|
|
12736
13059
|
}
|
|
12737
13060
|
},
|
|
12738
13061
|
"x-f5xc-minimum-configuration": {
|
|
@@ -12990,7 +13313,7 @@
|
|
|
12990
13313
|
},
|
|
12991
13314
|
"x-original-maxLength": 1024,
|
|
12992
13315
|
"x-reconciled-from-discovery": true,
|
|
12993
|
-
"x-reconciled-at": "2026-01-
|
|
13316
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997702+00:00"
|
|
12994
13317
|
},
|
|
12995
13318
|
"store_provider": {
|
|
12996
13319
|
"type": "string",
|
|
@@ -13048,7 +13371,7 @@
|
|
|
13048
13371
|
},
|
|
13049
13372
|
"x-original-maxLength": 1024,
|
|
13050
13373
|
"x-reconciled-from-discovery": true,
|
|
13051
|
-
"x-reconciled-at": "2026-01-
|
|
13374
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997709+00:00"
|
|
13052
13375
|
},
|
|
13053
13376
|
"url": {
|
|
13054
13377
|
"type": "string",
|
|
@@ -13201,7 +13524,7 @@
|
|
|
13201
13524
|
},
|
|
13202
13525
|
"x-original-maxLength": 1024,
|
|
13203
13526
|
"x-reconciled-from-discovery": true,
|
|
13204
|
-
"x-reconciled-at": "2026-01-
|
|
13527
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997888+00:00"
|
|
13205
13528
|
},
|
|
13206
13529
|
"location": {
|
|
13207
13530
|
"type": "string",
|
|
@@ -13218,7 +13541,7 @@
|
|
|
13218
13541
|
},
|
|
13219
13542
|
"x-original-maxLength": 1024,
|
|
13220
13543
|
"x-reconciled-from-discovery": true,
|
|
13221
|
-
"x-reconciled-at": "2026-01-
|
|
13544
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997893+00:00"
|
|
13222
13545
|
},
|
|
13223
13546
|
"provider": {
|
|
13224
13547
|
"type": "string",
|
|
@@ -13235,7 +13558,7 @@
|
|
|
13235
13558
|
},
|
|
13236
13559
|
"x-original-maxLength": 1024,
|
|
13237
13560
|
"x-reconciled-from-discovery": true,
|
|
13238
|
-
"x-reconciled-at": "2026-01-
|
|
13561
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997897+00:00"
|
|
13239
13562
|
},
|
|
13240
13563
|
"secret_encoding": {
|
|
13241
13564
|
"$ref": "#/components/schemas/schemaSecretEncodingType"
|
|
@@ -13257,7 +13580,7 @@
|
|
|
13257
13580
|
"maxLength": 1,
|
|
13258
13581
|
"minLength": 1,
|
|
13259
13582
|
"x-reconciled-from-discovery": true,
|
|
13260
|
-
"x-reconciled-at": "2026-01-
|
|
13583
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997904+00:00"
|
|
13261
13584
|
}
|
|
13262
13585
|
},
|
|
13263
13586
|
"x-f5xc-minimum-configuration": {
|
|
@@ -13296,7 +13619,7 @@
|
|
|
13296
13619
|
},
|
|
13297
13620
|
"x-original-maxLength": 1024,
|
|
13298
13621
|
"x-reconciled-from-discovery": true,
|
|
13299
|
-
"x-reconciled-at": "2026-01-
|
|
13622
|
+
"x-reconciled-at": "2026-01-05T18:28:53.997929+00:00"
|
|
13300
13623
|
}
|
|
13301
13624
|
},
|
|
13302
13625
|
"x-f5xc-minimum-configuration": {
|
|
@@ -13494,7 +13817,7 @@
|
|
|
13494
13817
|
},
|
|
13495
13818
|
"x-original-maxLength": 1024,
|
|
13496
13819
|
"x-reconciled-from-discovery": true,
|
|
13497
|
-
"x-reconciled-at": "2026-01-
|
|
13820
|
+
"x-reconciled-at": "2026-01-05T18:29:17.720991+00:00"
|
|
13498
13821
|
},
|
|
13499
13822
|
"namespace": {
|
|
13500
13823
|
"type": "string",
|
|
@@ -13513,7 +13836,7 @@
|
|
|
13513
13836
|
},
|
|
13514
13837
|
"x-original-maxLength": 1024,
|
|
13515
13838
|
"x-reconciled-from-discovery": true,
|
|
13516
|
-
"x-reconciled-at": "2026-01-
|
|
13839
|
+
"x-reconciled-at": "2026-01-05T18:29:17.720999+00:00"
|
|
13517
13840
|
}
|
|
13518
13841
|
},
|
|
13519
13842
|
"x-f5xc-minimum-configuration": {
|
|
@@ -13716,7 +14039,7 @@
|
|
|
13716
14039
|
"maxLength": 17,
|
|
13717
14040
|
"minLength": 17,
|
|
13718
14041
|
"x-reconciled-from-discovery": true,
|
|
13719
|
-
"x-reconciled-at": "2026-01-
|
|
14042
|
+
"x-reconciled-at": "2026-01-05T18:29:17.721025+00:00"
|
|
13720
14043
|
},
|
|
13721
14044
|
"system_metadata": {
|
|
13722
14045
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -13954,7 +14277,7 @@
|
|
|
13954
14277
|
},
|
|
13955
14278
|
"x-original-maxLength": 1024,
|
|
13956
14279
|
"x-reconciled-from-discovery": true,
|
|
13957
|
-
"x-reconciled-at": "2026-01-
|
|
14280
|
+
"x-reconciled-at": "2026-01-05T18:29:17.721064+00:00"
|
|
13958
14281
|
},
|
|
13959
14282
|
"disabled": {
|
|
13960
14283
|
"type": "boolean",
|
|
@@ -14004,7 +14327,7 @@
|
|
|
14004
14327
|
},
|
|
14005
14328
|
"x-original-maxLength": 1024,
|
|
14006
14329
|
"x-reconciled-from-discovery": true,
|
|
14007
|
-
"x-reconciled-at": "2026-01-
|
|
14330
|
+
"x-reconciled-at": "2026-01-05T18:29:17.721075+00:00"
|
|
14008
14331
|
},
|
|
14009
14332
|
"namespace": {
|
|
14010
14333
|
"type": "string",
|
|
@@ -14023,7 +14346,7 @@
|
|
|
14023
14346
|
},
|
|
14024
14347
|
"x-original-maxLength": 1024,
|
|
14025
14348
|
"x-reconciled-from-discovery": true,
|
|
14026
|
-
"x-reconciled-at": "2026-01-
|
|
14349
|
+
"x-reconciled-at": "2026-01-05T18:29:17.721079+00:00"
|
|
14027
14350
|
},
|
|
14028
14351
|
"owner_view": {
|
|
14029
14352
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -14064,7 +14387,7 @@
|
|
|
14064
14387
|
"x-field-mutability": "read-only",
|
|
14065
14388
|
"x-original-maxLength": 1024,
|
|
14066
14389
|
"x-reconciled-from-discovery": true,
|
|
14067
|
-
"x-reconciled-at": "2026-01-
|
|
14390
|
+
"x-reconciled-at": "2026-01-05T18:29:17.721087+00:00"
|
|
14068
14391
|
},
|
|
14069
14392
|
"uid": {
|
|
14070
14393
|
"type": "string",
|
|
@@ -14085,7 +14408,7 @@
|
|
|
14085
14408
|
"x-original-maxLength": 1024,
|
|
14086
14409
|
"format": "uuid",
|
|
14087
14410
|
"x-reconciled-from-discovery": true,
|
|
14088
|
-
"x-reconciled-at": "2026-01-
|
|
14411
|
+
"x-reconciled-at": "2026-01-05T18:29:17.721093+00:00"
|
|
14089
14412
|
}
|
|
14090
14413
|
},
|
|
14091
14414
|
"x-f5xc-minimum-configuration": {
|
|
@@ -14657,7 +14980,7 @@
|
|
|
14657
14980
|
"maxLength": 17,
|
|
14658
14981
|
"minLength": 17,
|
|
14659
14982
|
"x-reconciled-from-discovery": true,
|
|
14660
|
-
"x-reconciled-at": "2026-01-
|
|
14983
|
+
"x-reconciled-at": "2026-01-05T18:29:38.110555+00:00"
|
|
14661
14984
|
},
|
|
14662
14985
|
"system_metadata": {
|
|
14663
14986
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -14952,7 +15275,7 @@
|
|
|
14952
15275
|
},
|
|
14953
15276
|
"x-original-maxLength": 1024,
|
|
14954
15277
|
"x-reconciled-from-discovery": true,
|
|
14955
|
-
"x-reconciled-at": "2026-01-
|
|
15278
|
+
"x-reconciled-at": "2026-01-05T18:29:38.110581+00:00"
|
|
14956
15279
|
},
|
|
14957
15280
|
"disabled": {
|
|
14958
15281
|
"type": "boolean",
|
|
@@ -15002,7 +15325,7 @@
|
|
|
15002
15325
|
},
|
|
15003
15326
|
"x-original-maxLength": 1024,
|
|
15004
15327
|
"x-reconciled-from-discovery": true,
|
|
15005
|
-
"x-reconciled-at": "2026-01-
|
|
15328
|
+
"x-reconciled-at": "2026-01-05T18:29:38.110593+00:00"
|
|
15006
15329
|
},
|
|
15007
15330
|
"namespace": {
|
|
15008
15331
|
"type": "string",
|
|
@@ -15021,7 +15344,7 @@
|
|
|
15021
15344
|
},
|
|
15022
15345
|
"x-original-maxLength": 1024,
|
|
15023
15346
|
"x-reconciled-from-discovery": true,
|
|
15024
|
-
"x-reconciled-at": "2026-01-
|
|
15347
|
+
"x-reconciled-at": "2026-01-05T18:29:38.110598+00:00"
|
|
15025
15348
|
},
|
|
15026
15349
|
"owner_view": {
|
|
15027
15350
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -15062,7 +15385,7 @@
|
|
|
15062
15385
|
"x-field-mutability": "read-only",
|
|
15063
15386
|
"x-original-maxLength": 1024,
|
|
15064
15387
|
"x-reconciled-from-discovery": true,
|
|
15065
|
-
"x-reconciled-at": "2026-01-
|
|
15388
|
+
"x-reconciled-at": "2026-01-05T18:29:38.110606+00:00"
|
|
15066
15389
|
},
|
|
15067
15390
|
"uid": {
|
|
15068
15391
|
"type": "string",
|
|
@@ -15083,7 +15406,7 @@
|
|
|
15083
15406
|
"x-original-maxLength": 1024,
|
|
15084
15407
|
"format": "uuid",
|
|
15085
15408
|
"x-reconciled-from-discovery": true,
|
|
15086
|
-
"x-reconciled-at": "2026-01-
|
|
15409
|
+
"x-reconciled-at": "2026-01-05T18:29:38.110612+00:00"
|
|
15087
15410
|
}
|
|
15088
15411
|
},
|
|
15089
15412
|
"x-f5xc-minimum-configuration": {
|
|
@@ -15351,7 +15674,7 @@
|
|
|
15351
15674
|
},
|
|
15352
15675
|
"format": "hostname",
|
|
15353
15676
|
"x-reconciled-from-discovery": true,
|
|
15354
|
-
"x-reconciled-at": "2026-01-
|
|
15677
|
+
"x-reconciled-at": "2026-01-05T18:29:40.674724+00:00"
|
|
15355
15678
|
},
|
|
15356
15679
|
"locale": {
|
|
15357
15680
|
"type": "string",
|
|
@@ -15462,7 +15785,7 @@
|
|
|
15462
15785
|
},
|
|
15463
15786
|
"x-original-maxLength": 256,
|
|
15464
15787
|
"x-reconciled-from-discovery": true,
|
|
15465
|
-
"x-reconciled-at": "2026-01-
|
|
15788
|
+
"x-reconciled-at": "2026-01-05T18:29:40.674738+00:00"
|
|
15466
15789
|
}
|
|
15467
15790
|
},
|
|
15468
15791
|
"x-f5xc-minimum-configuration": {
|
|
@@ -15837,7 +16160,7 @@
|
|
|
15837
16160
|
"maxLength": 17,
|
|
15838
16161
|
"minLength": 17,
|
|
15839
16162
|
"x-reconciled-from-discovery": true,
|
|
15840
|
-
"x-reconciled-at": "2026-01-
|
|
16163
|
+
"x-reconciled-at": "2026-01-05T18:29:41.768824+00:00"
|
|
15841
16164
|
},
|
|
15842
16165
|
"system_metadata": {
|
|
15843
16166
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -16060,7 +16383,7 @@
|
|
|
16060
16383
|
},
|
|
16061
16384
|
"x-original-maxLength": 1024,
|
|
16062
16385
|
"x-reconciled-from-discovery": true,
|
|
16063
|
-
"x-reconciled-at": "2026-01-
|
|
16386
|
+
"x-reconciled-at": "2026-01-05T18:29:41.768844+00:00"
|
|
16064
16387
|
},
|
|
16065
16388
|
"disabled": {
|
|
16066
16389
|
"type": "boolean",
|
|
@@ -16110,7 +16433,7 @@
|
|
|
16110
16433
|
},
|
|
16111
16434
|
"x-original-maxLength": 1024,
|
|
16112
16435
|
"x-reconciled-from-discovery": true,
|
|
16113
|
-
"x-reconciled-at": "2026-01-
|
|
16436
|
+
"x-reconciled-at": "2026-01-05T18:29:41.768855+00:00"
|
|
16114
16437
|
},
|
|
16115
16438
|
"namespace": {
|
|
16116
16439
|
"type": "string",
|
|
@@ -16129,7 +16452,7 @@
|
|
|
16129
16452
|
},
|
|
16130
16453
|
"x-original-maxLength": 1024,
|
|
16131
16454
|
"x-reconciled-from-discovery": true,
|
|
16132
|
-
"x-reconciled-at": "2026-01-
|
|
16455
|
+
"x-reconciled-at": "2026-01-05T18:29:41.768860+00:00"
|
|
16133
16456
|
},
|
|
16134
16457
|
"owner_view": {
|
|
16135
16458
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -16170,7 +16493,7 @@
|
|
|
16170
16493
|
"x-field-mutability": "read-only",
|
|
16171
16494
|
"x-original-maxLength": 1024,
|
|
16172
16495
|
"x-reconciled-from-discovery": true,
|
|
16173
|
-
"x-reconciled-at": "2026-01-
|
|
16496
|
+
"x-reconciled-at": "2026-01-05T18:29:41.768868+00:00"
|
|
16174
16497
|
},
|
|
16175
16498
|
"uid": {
|
|
16176
16499
|
"type": "string",
|
|
@@ -16191,7 +16514,7 @@
|
|
|
16191
16514
|
"x-original-maxLength": 1024,
|
|
16192
16515
|
"format": "uuid",
|
|
16193
16516
|
"x-reconciled-from-discovery": true,
|
|
16194
|
-
"x-reconciled-at": "2026-01-
|
|
16517
|
+
"x-reconciled-at": "2026-01-05T18:29:41.768874+00:00"
|
|
16195
16518
|
}
|
|
16196
16519
|
},
|
|
16197
16520
|
"x-f5xc-minimum-configuration": {
|
|
@@ -16343,7 +16666,7 @@
|
|
|
16343
16666
|
},
|
|
16344
16667
|
"x-original-maxLength": 1024,
|
|
16345
16668
|
"x-reconciled-from-discovery": true,
|
|
16346
|
-
"x-reconciled-at": "2026-01-
|
|
16669
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893056+00:00"
|
|
16347
16670
|
}
|
|
16348
16671
|
},
|
|
16349
16672
|
"x-f5xc-example": "[EMAIL, CC]",
|
|
@@ -17361,7 +17684,7 @@
|
|
|
17361
17684
|
"x-original-maxLength": 256,
|
|
17362
17685
|
"format": "hostname",
|
|
17363
17686
|
"x-reconciled-from-discovery": true,
|
|
17364
|
-
"x-reconciled-at": "2026-01-
|
|
17687
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893146+00:00"
|
|
17365
17688
|
},
|
|
17366
17689
|
"simple_login": {
|
|
17367
17690
|
"$ref": "#/components/schemas/common_wafSimpleLogin"
|
|
@@ -18092,7 +18415,7 @@
|
|
|
18092
18415
|
},
|
|
18093
18416
|
"x-original-maxLength": 256,
|
|
18094
18417
|
"x-reconciled-from-discovery": true,
|
|
18095
|
-
"x-reconciled-at": "2026-01-
|
|
18418
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893285+00:00"
|
|
18096
18419
|
},
|
|
18097
18420
|
"name": {
|
|
18098
18421
|
"type": "string",
|
|
@@ -18122,7 +18445,7 @@
|
|
|
18122
18445
|
},
|
|
18123
18446
|
"x-original-maxLength": 1024,
|
|
18124
18447
|
"x-reconciled-from-discovery": true,
|
|
18125
|
-
"x-reconciled-at": "2026-01-
|
|
18448
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893290+00:00"
|
|
18126
18449
|
}
|
|
18127
18450
|
},
|
|
18128
18451
|
"x-f5xc-minimum-configuration": {
|
|
@@ -18277,7 +18600,7 @@
|
|
|
18277
18600
|
"maxLength": 17,
|
|
18278
18601
|
"minLength": 17,
|
|
18279
18602
|
"x-reconciled-from-discovery": true,
|
|
18280
|
-
"x-reconciled-at": "2026-01-
|
|
18603
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893450+00:00"
|
|
18281
18604
|
},
|
|
18282
18605
|
"system_metadata": {
|
|
18283
18606
|
"$ref": "#/components/schemas/schemaSystemObjectGetMetaType"
|
|
@@ -18360,7 +18683,7 @@
|
|
|
18360
18683
|
},
|
|
18361
18684
|
"x-original-maxLength": 1024,
|
|
18362
18685
|
"x-reconciled-from-discovery": true,
|
|
18363
|
-
"x-reconciled-at": "2026-01-
|
|
18686
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893458+00:00"
|
|
18364
18687
|
},
|
|
18365
18688
|
"third_party_applications_list": {
|
|
18366
18689
|
"$ref": "#/components/schemas/third_party_applicationThirdPartyApplicationList"
|
|
@@ -18465,7 +18788,7 @@
|
|
|
18465
18788
|
},
|
|
18466
18789
|
"x-original-maxLength": 1024,
|
|
18467
18790
|
"x-reconciled-from-discovery": true,
|
|
18468
|
-
"x-reconciled-at": "2026-01-
|
|
18791
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893469+00:00"
|
|
18469
18792
|
},
|
|
18470
18793
|
"disabled": {
|
|
18471
18794
|
"type": "boolean",
|
|
@@ -18515,7 +18838,7 @@
|
|
|
18515
18838
|
},
|
|
18516
18839
|
"x-original-maxLength": 1024,
|
|
18517
18840
|
"x-reconciled-from-discovery": true,
|
|
18518
|
-
"x-reconciled-at": "2026-01-
|
|
18841
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893479+00:00"
|
|
18519
18842
|
},
|
|
18520
18843
|
"namespace": {
|
|
18521
18844
|
"type": "string",
|
|
@@ -18534,7 +18857,7 @@
|
|
|
18534
18857
|
},
|
|
18535
18858
|
"x-original-maxLength": 1024,
|
|
18536
18859
|
"x-reconciled-from-discovery": true,
|
|
18537
|
-
"x-reconciled-at": "2026-01-
|
|
18860
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893483+00:00"
|
|
18538
18861
|
},
|
|
18539
18862
|
"owner_view": {
|
|
18540
18863
|
"$ref": "#/components/schemas/schemaViewRefType"
|
|
@@ -18575,7 +18898,7 @@
|
|
|
18575
18898
|
"x-field-mutability": "read-only",
|
|
18576
18899
|
"x-original-maxLength": 1024,
|
|
18577
18900
|
"x-reconciled-from-discovery": true,
|
|
18578
|
-
"x-reconciled-at": "2026-01-
|
|
18901
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893491+00:00"
|
|
18579
18902
|
},
|
|
18580
18903
|
"uid": {
|
|
18581
18904
|
"type": "string",
|
|
@@ -18596,7 +18919,7 @@
|
|
|
18596
18919
|
"x-original-maxLength": 1024,
|
|
18597
18920
|
"format": "uuid",
|
|
18598
18921
|
"x-reconciled-from-discovery": true,
|
|
18599
|
-
"x-reconciled-at": "2026-01-
|
|
18922
|
+
"x-reconciled-at": "2026-01-05T18:30:03.893496+00:00"
|
|
18600
18923
|
}
|
|
18601
18924
|
},
|
|
18602
18925
|
"x-f5xc-minimum-configuration": {
|
|
@@ -19175,7 +19498,7 @@
|
|
|
19175
19498
|
},
|
|
19176
19499
|
"x-original-maxLength": 1024,
|
|
19177
19500
|
"x-reconciled-from-discovery": true,
|
|
19178
|
-
"x-reconciled-at": "2026-01-
|
|
19501
|
+
"x-reconciled-at": "2026-01-05T18:30:09.526308+00:00"
|
|
19179
19502
|
},
|
|
19180
19503
|
"view_kind": {
|
|
19181
19504
|
"type": "string",
|
|
@@ -19495,7 +19818,7 @@
|
|
|
19495
19818
|
},
|
|
19496
19819
|
"x-original-maxLength": 1024,
|
|
19497
19820
|
"x-reconciled-from-discovery": true,
|
|
19498
|
-
"x-reconciled-at": "2026-01-
|
|
19821
|
+
"x-reconciled-at": "2026-01-05T18:30:09.526331+00:00"
|
|
19499
19822
|
},
|
|
19500
19823
|
"view_kind": {
|
|
19501
19824
|
"type": "string",
|
|
@@ -19749,7 +20072,7 @@
|
|
|
19749
20072
|
"x-original-maxLength": 1024,
|
|
19750
20073
|
"format": "hostname",
|
|
19751
20074
|
"x-reconciled-from-discovery": true,
|
|
19752
|
-
"x-reconciled-at": "2026-01-
|
|
20075
|
+
"x-reconciled-at": "2026-01-05T18:30:14.471571+00:00"
|
|
19753
20076
|
},
|
|
19754
20077
|
"email": {
|
|
19755
20078
|
"type": "string",
|
|
@@ -19917,7 +20240,7 @@
|
|
|
19917
20240
|
},
|
|
19918
20241
|
"format": "hostname",
|
|
19919
20242
|
"x-reconciled-from-discovery": true,
|
|
19920
|
-
"x-reconciled-at": "2026-01-
|
|
20243
|
+
"x-reconciled-at": "2026-01-05T18:30:14.471589+00:00"
|
|
19921
20244
|
},
|
|
19922
20245
|
"token": {
|
|
19923
20246
|
"type": "string",
|