@robinmordasiewicz/f5xc-api-mcp 2.0.10-2601051503 → 2.0.19-2601071557

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.
Files changed (55) hide show
  1. package/CHANGELOG.md +25 -14
  2. package/README.md +9 -5
  3. package/dist/generator/domain-metadata.d.ts +1 -3
  4. package/dist/generator/domain-metadata.d.ts.map +1 -1
  5. package/dist/generator/domain-metadata.js +0 -20
  6. package/dist/generator/domain-metadata.js.map +1 -1
  7. package/dist/generator/naming/acronyms.d.ts +1 -1
  8. package/dist/generator/naming/acronyms.js +1 -1
  9. package/dist/tools/generated/ce_management/index.d.ts.map +1 -1
  10. package/dist/tools/generated/ce_management/index.js +179 -1582
  11. package/dist/tools/generated/ce_management/index.js.map +1 -1
  12. package/dist/tools/generated/dependency-graph.json +2 -265
  13. package/dist/version.d.ts +2 -2
  14. package/dist/version.js +2 -2
  15. package/manifest.json +1 -1
  16. package/package.json +1 -1
  17. package/specs/domains/admin_console_and_ui.json +176 -26
  18. package/specs/domains/ai_services.json +242 -36
  19. package/specs/domains/api.json +1507 -183
  20. package/specs/domains/authentication.json +358 -46
  21. package/specs/domains/bigip.json +825 -105
  22. package/specs/domains/billing_and_usage.json +666 -83
  23. package/specs/domains/blindfold.json +988 -111
  24. package/specs/domains/bot_and_threat_defense.json +550 -66
  25. package/specs/domains/cdn.json +2431 -198
  26. package/specs/domains/ce_management.json +9272 -15726
  27. package/specs/domains/certificates.json +540 -78
  28. package/specs/domains/cloud_infrastructure.json +1102 -122
  29. package/specs/domains/container_services.json +782 -99
  30. package/specs/domains/data_and_privacy_security.json +508 -68
  31. package/specs/domains/data_intelligence.json +487 -64
  32. package/specs/domains/ddos.json +1302 -161
  33. package/specs/domains/dns.json +1286 -162
  34. package/specs/domains/managed_kubernetes.json +687 -89
  35. package/specs/domains/marketplace.json +994 -105
  36. package/specs/domains/network.json +2340 -239
  37. package/specs/domains/network_security.json +1963 -192
  38. package/specs/domains/nginx_one.json +475 -63
  39. package/specs/domains/object_storage.json +163 -16
  40. package/specs/domains/observability.json +1519 -148
  41. package/specs/domains/rate_limiting.json +456 -56
  42. package/specs/domains/secops_and_incident_response.json +275 -37
  43. package/specs/domains/service_mesh.json +1320 -128
  44. package/specs/domains/shape.json +4196 -398
  45. package/specs/domains/sites.json +5053 -405
  46. package/specs/domains/statistics.json +2784 -236
  47. package/specs/domains/support.json +1038 -109
  48. package/specs/domains/telemetry_and_insights.json +993 -80
  49. package/specs/domains/tenant_and_identity.json +3487 -313
  50. package/specs/domains/threat_campaign.json +695 -72
  51. package/specs/domains/users.json +437 -72
  52. package/specs/domains/virtual.json +3716 -261
  53. package/specs/domains/vpm_and_node_management.json +61 -2
  54. package/specs/domains/waf.json +1551 -149
  55. package/specs/index.json +121 -26
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "title": "Admin Console And Ui",
5
5
  "description": "Dashboard customization through namespace-bounded asset libraries. Storage systems for branding resources, layout templates, and interactive widgets. Catalog organization with system object references tracking modification history and deployment status. Schema enforcement ensuring configuration validity across tenant hierarchies and environment boundaries.",
6
- "version": "2.0.10",
6
+ "version": "2.0.19",
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": "Namespace-scoped visual elements with versioning. Custom widget deployment and catalog management for portal surfaces.",
16
- "x-f5xc-cli-domain": "admin_console_and_ui"
16
+ "x-f5xc-cli-domain": "admin_console_and_ui",
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
  {
@@ -289,6 +339,13 @@
289
339
  "latency": "moderate",
290
340
  "resource_usage": "moderate"
291
341
  }
342
+ },
343
+ "x-f5xc-discovered-response-time": {
344
+ "p50_ms": 200,
345
+ "p95_ms": 800,
346
+ "p99_ms": 2000,
347
+ "sample_count": 0,
348
+ "source": "estimate"
292
349
  }
293
350
  },
294
351
  "x-displayname": "UI Static Component.",
@@ -507,6 +564,13 @@
507
564
  "latency": "low",
508
565
  "resource_usage": "low"
509
566
  }
567
+ },
568
+ "x-f5xc-discovered-response-time": {
569
+ "p50_ms": 200,
570
+ "p95_ms": 800,
571
+ "p99_ms": 2000,
572
+ "sample_count": 0,
573
+ "source": "estimate"
510
574
  }
511
575
  },
512
576
  "x-displayname": "UI Static Component.",
@@ -531,6 +595,8 @@
531
595
  "type_url": {
532
596
  "type": "string",
533
597
  "description": "A URL/resource name that uniquely identifies the type of the serialized\nprotocol buffer message. This string must contain at least\none \"/\" character. The last segment of the URL's path must represent\nthe fully qualified name of the type (as in\n`path/google.protobuf.duration`). The name should be in a canonical form\n(e.g., leading \".\" is not accepted).\n\nIn practice, teams usually precompile into the binary all types that they\nexpect it to use in the context of Any. However, for URLs which use the\nscheme `HTTP`, `HTTPS`, or no scheme, one can optionally set up a type\nserver that maps type URLs to message definitions as follows:\n\n* If no scheme is provided, `HTTPS` is assumed.\n* An HTTP GET on the URL must yield a [google.protobuf.type][]\nvalue in binary format, or produce an error.\n* Applications are allowed to cache lookup results based on the\nURL, or have them precompiled into a binary to avoid any\nlookup. Therefore, binary compatibility needs to be preserved\non changes to types. (Use versioned type names to manage\nbreaking changes.)\n\nNote: this functionality is not currently available in the official\nprotobuf release, and it is not used for type URLs beginning with\ntype.googleapis.com.\n\nSchemes other than `HTTP`, `HTTPS` (or the empty scheme) might be\nused with implementation specific semantics.",
598
+ "x-f5xc-description-short": "URL identifying the protocol buffer message type.",
599
+ "x-f5xc-description-medium": "URL/resource name that uniquely identifies the type of the serialized protocol buffer message. This string must contain at least one \"/\" character. The last segment of the URL's path must represent the fully qualified name of the type (as in ).",
534
600
  "minLength": 0,
535
601
  "maxLength": 1024,
536
602
  "x-f5xc-required-for": {
@@ -554,9 +620,11 @@
554
620
  },
555
621
  "x-original-maxLength": 1024,
556
622
  "x-reconciled-from-discovery": true,
557
- "x-reconciled-at": "2026-01-05T14:39:12.958961+00:00"
623
+ "x-reconciled-at": "2026-01-07T15:29:37.374019+00:00"
558
624
  }
559
625
  },
626
+ "x-f5xc-description-short": "Contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message.",
627
+ "x-f5xc-description-medium": "Contains an arbitrary serialized protocol buffer message along with a URL that describes the type of the serialized message. Protobuf library provides support to pack/unpack Any values in the form of utility functions or additional generated methods of the Any type. Example 1: Pack and unpack a...",
560
628
  "x-f5xc-minimum-configuration": {
561
629
  "description": "Minimum configuration for protobufAny",
562
630
  "required_fields": [
@@ -577,6 +645,8 @@
577
645
  "NULL_VALUE"
578
646
  ],
579
647
  "default": "NULL_VALUE",
648
+ "x-f5xc-description-short": "Is a singleton enumeration to represent the null value for the type union. The JSON representation for is JSON . - NULL_VALUE: Null value.",
649
+ "x-f5xc-description-medium": "Is a singleton enumeration to represent the null value for the type union. The JSON representation for is JSON . - NULL_VALUE: Null value.",
580
650
  "x-f5xc-minimum-configuration": {
581
651
  "description": "Minimum configuration for protobufNullValue",
582
652
  "required_fields": [],
@@ -605,6 +675,8 @@
605
675
  "default": "EOK",
606
676
  "x-displayname": "Error Code.",
607
677
  "x-ves-proto-enum": "ves.io.schema.ErrorCode",
678
+ "x-f5xc-description-short": "Union of all possible error-codes from system - EOK: No error - EPERMS: Permissions error - EBADINPUT: Input is not correct - ENOTFOUND: Not found...",
679
+ "x-f5xc-description-medium": "Union of all possible error-codes from system - EOK: No error - EPERMS: Permissions error - EBADINPUT: Input is not correct - ENOTFOUND: Not found - EEXISTS: Already exists - EUNKNOWN: Unknown/catchall error - ESERIALIZE: Error in serializing/de-serializing - EINTERNAL: Server error - EPARTIAL...",
608
680
  "x-f5xc-minimum-configuration": {
609
681
  "description": "Minimum configuration for schemaErrorCode",
610
682
  "required_fields": [],
@@ -645,6 +717,7 @@
645
717
  }
646
718
  }
647
719
  },
720
+ "x-f5xc-description-short": "Information about a error in API operation.",
648
721
  "x-f5xc-minimum-configuration": {
649
722
  "description": "Minimum configuration for schemaErrorType",
650
723
  "required_fields": [
@@ -672,6 +745,7 @@
672
745
  "title": "Name",
673
746
  "x-displayname": "Name",
674
747
  "x-f5xc-example": "example-resource",
748
+ "x-f5xc-description-short": "Name of the service that is responsible for initializing this object.",
675
749
  "minLength": 0,
676
750
  "maxLength": 16,
677
751
  "x-f5xc-required-for": {
@@ -682,9 +756,10 @@
682
756
  },
683
757
  "x-original-maxLength": 1024,
684
758
  "x-reconciled-from-discovery": true,
685
- "x-reconciled-at": "2026-01-05T14:39:12.958976+00:00"
759
+ "x-reconciled-at": "2026-01-07T15:29:37.374034+00:00"
686
760
  }
687
761
  },
762
+ "x-f5xc-description-short": "Initializer is information about an initializer that has not yet completed.",
688
763
  "x-f5xc-minimum-configuration": {
689
764
  "description": "Minimum configuration for schemaInitializerType",
690
765
  "required_fields": [
@@ -712,6 +787,8 @@
712
787
  "$ref": "#/components/schemas/schemaInitializerType"
713
788
  },
714
789
  "x-displayname": "Pending",
790
+ "x-f5xc-description-short": "Pending is a list of initializers that must execute in order before this object is initialized.",
791
+ "x-f5xc-description-medium": "Pending is a list of initializers that must execute in order before this object is initialized. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.",
715
792
  "x-f5xc-required-for": {
716
793
  "minimum_config": false,
717
794
  "create": false,
@@ -723,6 +800,7 @@
723
800
  "$ref": "#/components/schemas/schemaStatusType"
724
801
  }
725
802
  },
803
+ "x-f5xc-description-short": "Initializers tracks the progress of initialization of a configuration object.",
726
804
  "x-f5xc-minimum-configuration": {
727
805
  "description": "Minimum configuration for schemaInitializersType",
728
806
  "required_fields": [
@@ -762,6 +840,8 @@
762
840
  "ves.io.schema.rules.map.values.string.max_len": "1024",
763
841
  "ves.io.schema.rules.map.values.string.min_len": "1"
764
842
  },
843
+ "x-f5xc-description-short": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata.",
844
+ "x-f5xc-description-medium": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects.",
765
845
  "x-f5xc-required-for": {
766
846
  "minimum_config": false,
767
847
  "create": false,
@@ -783,6 +863,7 @@
783
863
  "x-validation-rules": {
784
864
  "ves.io.schema.rules.string.max_bytes": "1200"
785
865
  },
866
+ "x-f5xc-description-short": "Human readable description for the object.",
786
867
  "minLength": 0,
787
868
  "x-f5xc-required-for": {
788
869
  "minimum_config": false,
@@ -792,7 +873,7 @@
792
873
  },
793
874
  "x-original-maxLength": 1200,
794
875
  "x-reconciled-from-discovery": true,
795
- "x-reconciled-at": "2026-01-05T14:39:12.958987+00:00"
876
+ "x-reconciled-at": "2026-01-07T15:29:37.374045+00:00"
796
877
  },
797
878
  "disable": {
798
879
  "type": "boolean",
@@ -802,6 +883,7 @@
802
883
  "x-displayname": "Disable",
803
884
  "x-ves-example": "True",
804
885
  "x-f5xc-example": "true",
886
+ "x-f5xc-description-short": "Value of true will administratively disable the object.",
805
887
  "x-f5xc-required-for": {
806
888
  "minimum_config": false,
807
889
  "create": false,
@@ -816,6 +898,8 @@
816
898
  "x-displayname": "Labels",
817
899
  "x-ves-example": "Value",
818
900
  "x-f5xc-example": "value",
901
+ "x-f5xc-description-short": "Map of string keys and values that can be used to organize and categorize (scope and select) objects as chosen by the user.",
902
+ "x-f5xc-description-medium": "Map of string keys and values that can be used to organize and categorize (scope and select) objects as chosen by the user. Values specified here will be used by selector expression.",
819
903
  "x-f5xc-required-for": {
820
904
  "minimum_config": false,
821
905
  "create": false,
@@ -837,6 +921,8 @@
837
921
  "x-validation-rules": {
838
922
  "ves.io.schema.rules.message.required": "true"
839
923
  },
924
+ "x-f5xc-description-short": "Name of configuration object. It has to be unique within the namespace.",
925
+ "x-f5xc-description-medium": "Name of configuration object. It has to be unique within the namespace. It can only be specified during create API and cannot be changed during replace API.",
840
926
  "minLength": 0,
841
927
  "maxLength": 16,
842
928
  "x-f5xc-required-for": {
@@ -847,7 +933,7 @@
847
933
  },
848
934
  "x-original-maxLength": 1024,
849
935
  "x-reconciled-from-discovery": true,
850
- "x-reconciled-at": "2026-01-05T14:39:12.958996+00:00"
936
+ "x-reconciled-at": "2026-01-07T15:29:37.374053+00:00"
851
937
  },
852
938
  "namespace": {
853
939
  "type": "string",
@@ -856,6 +942,8 @@
856
942
  "x-displayname": "Namespace",
857
943
  "x-ves-example": "Staging",
858
944
  "x-f5xc-example": "staging",
945
+ "x-f5xc-description-short": "Defines the workspace within which each the configuration object is to be created.",
946
+ "x-f5xc-description-medium": "Defines the workspace within which each the configuration object is to be created. Must be a DNS_LABEL format. For a namespace object itself, namespace value will be \"\".",
859
947
  "minLength": 0,
860
948
  "maxLength": 6,
861
949
  "x-f5xc-required-for": {
@@ -866,9 +954,10 @@
866
954
  },
867
955
  "x-original-maxLength": 1024,
868
956
  "x-reconciled-from-discovery": true,
869
- "x-reconciled-at": "2026-01-05T14:39:12.959000+00:00"
957
+ "x-reconciled-at": "2026-01-07T15:29:37.374057+00:00"
870
958
  }
871
959
  },
960
+ "x-f5xc-description-short": "ObjectGetMetaType is metadata that can be specified in GET/Create response of an object.",
872
961
  "x-f5xc-minimum-configuration": {
873
962
  "description": "Minimum configuration for schemaObjectGetMetaType",
874
963
  "required_fields": [
@@ -900,6 +989,8 @@
900
989
  "x-displayname": "Kind",
901
990
  "x-ves-example": "Virtual_site.",
902
991
  "x-f5xc-example": "virtual_site",
992
+ "x-f5xc-description-short": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then kind will hold the referred object's kind (e.g. \"route\")",
993
+ "x-f5xc-description-medium": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then kind will hold the referred object's kind (e.g. \"route\").",
903
994
  "minLength": 0,
904
995
  "maxLength": 14,
905
996
  "x-f5xc-required-for": {
@@ -911,7 +1002,7 @@
911
1002
  "readOnly": true,
912
1003
  "x-original-maxLength": 1024,
913
1004
  "x-reconciled-from-discovery": true,
914
- "x-reconciled-at": "2026-01-05T14:39:12.959005+00:00"
1005
+ "x-reconciled-at": "2026-01-07T15:29:37.374062+00:00"
915
1006
  },
916
1007
  "name": {
917
1008
  "type": "string",
@@ -920,6 +1011,8 @@
920
1011
  "x-displayname": "Name",
921
1012
  "x-ves-example": "Contactus-route.",
922
1013
  "x-f5xc-example": "contactus-route",
1014
+ "x-f5xc-description-short": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g.",
1015
+ "x-f5xc-description-medium": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g. Route's) name.",
923
1016
  "minLength": 0,
924
1017
  "maxLength": 16,
925
1018
  "x-f5xc-required-for": {
@@ -930,7 +1023,7 @@
930
1023
  },
931
1024
  "x-original-maxLength": 1024,
932
1025
  "x-reconciled-from-discovery": true,
933
- "x-reconciled-at": "2026-01-05T14:39:12.959009+00:00"
1026
+ "x-reconciled-at": "2026-01-07T15:29:37.374066+00:00"
934
1027
  },
935
1028
  "namespace": {
936
1029
  "type": "string",
@@ -939,6 +1032,8 @@
939
1032
  "x-displayname": "Namespace",
940
1033
  "x-ves-example": "Ns1",
941
1034
  "x-f5xc-example": "ns1",
1035
+ "x-f5xc-description-short": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g.",
1036
+ "x-f5xc-description-medium": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g. Route's) namespace.",
942
1037
  "minLength": 0,
943
1038
  "maxLength": 6,
944
1039
  "x-f5xc-required-for": {
@@ -949,7 +1044,7 @@
949
1044
  },
950
1045
  "x-original-maxLength": 1024,
951
1046
  "x-reconciled-from-discovery": true,
952
- "x-reconciled-at": "2026-01-05T14:39:12.959014+00:00"
1047
+ "x-reconciled-at": "2026-01-07T15:29:37.374070+00:00"
953
1048
  },
954
1049
  "tenant": {
955
1050
  "type": "string",
@@ -958,6 +1053,8 @@
958
1053
  "x-displayname": "Tenant",
959
1054
  "x-ves-example": "Example-corp.",
960
1055
  "x-f5xc-example": "example-corp",
1056
+ "x-f5xc-description-short": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then tenant will hold the referred object's(e.g.",
1057
+ "x-f5xc-description-medium": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then tenant will hold the referred object's(e.g. Route's) tenant.",
961
1058
  "minLength": 0,
962
1059
  "maxLength": 18,
963
1060
  "x-f5xc-required-for": {
@@ -970,7 +1067,7 @@
970
1067
  "x-field-mutability": "read-only",
971
1068
  "x-original-maxLength": 1024,
972
1069
  "x-reconciled-from-discovery": true,
973
- "x-reconciled-at": "2026-01-05T14:39:12.959018+00:00"
1070
+ "x-reconciled-at": "2026-01-07T15:29:37.374074+00:00"
974
1071
  },
975
1072
  "uid": {
976
1073
  "type": "string",
@@ -979,6 +1076,8 @@
979
1076
  "x-displayname": "UID",
980
1077
  "x-ves-example": "D15f1fad-4d37-48c0-8706-df1824d76d31.",
981
1078
  "x-f5xc-example": "d15f1fad-4d37-48c0-8706-df1824d76d31",
1079
+ "x-f5xc-description-short": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then uid will hold the referred object's(e.g.",
1080
+ "x-f5xc-description-medium": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then uid will hold the referred object's(e.g. Route's) uid.",
982
1081
  "minLength": 0,
983
1082
  "maxLength": 36,
984
1083
  "x-f5xc-required-for": {
@@ -992,9 +1091,11 @@
992
1091
  "x-original-maxLength": 1024,
993
1092
  "format": "uuid",
994
1093
  "x-reconciled-from-discovery": true,
995
- "x-reconciled-at": "2026-01-05T14:39:12.959024+00:00"
1094
+ "x-reconciled-at": "2026-01-07T15:29:37.374080+00:00"
996
1095
  }
997
1096
  },
1097
+ "x-f5xc-description-short": "Type establishes a 'direct reference' from one object(the referrer) to another(the referred).",
1098
+ "x-f5xc-description-medium": "Type establishes a 'direct reference' from one object(the referrer) to another(the referred). Such a reference is in form of tenant/namespace/name for public API and Uid for private API This type of reference is called direct because the relation is explicit and concrete (as opposed to selector...",
998
1099
  "x-f5xc-minimum-configuration": {
999
1100
  "description": "Minimum configuration for schemaObjectRefType",
1000
1101
  "required_fields": [
@@ -1026,6 +1127,7 @@
1026
1127
  "x-displayname": "Code",
1027
1128
  "x-ves-example": "0",
1028
1129
  "x-f5xc-example": "0",
1130
+ "x-f5xc-description-short": "Suggested HTTP return code for this status, 0 if not set.",
1029
1131
  "minimum": 0,
1030
1132
  "maximum": 2147483647,
1031
1133
  "x-f5xc-required-for": {
@@ -1042,6 +1144,8 @@
1042
1144
  "x-displayname": "Reason",
1043
1145
  "x-ves-example": "Value",
1044
1146
  "x-f5xc-example": "value",
1147
+ "x-f5xc-description-short": "Human-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available.",
1148
+ "x-f5xc-description-medium": "Human-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available.",
1045
1149
  "minLength": 0,
1046
1150
  "maxLength": 43,
1047
1151
  "x-f5xc-required-for": {
@@ -1052,7 +1156,7 @@
1052
1156
  },
1053
1157
  "x-original-maxLength": 1024,
1054
1158
  "x-reconciled-from-discovery": true,
1055
- "x-reconciled-at": "2026-01-05T14:39:12.959031+00:00"
1159
+ "x-reconciled-at": "2026-01-07T15:29:37.374087+00:00"
1056
1160
  },
1057
1161
  "status": {
1058
1162
  "type": "string",
@@ -1061,6 +1165,7 @@
1061
1165
  "x-displayname": "Status",
1062
1166
  "x-ves-example": "Value",
1063
1167
  "x-f5xc-example": "value",
1168
+ "x-f5xc-description-short": "Status of the operation. One of: \"Success\" or \"Failure\".",
1064
1169
  "minLength": 0,
1065
1170
  "maxLength": 17,
1066
1171
  "x-f5xc-required-for": {
@@ -1071,9 +1176,10 @@
1071
1176
  },
1072
1177
  "x-original-maxLength": 1024,
1073
1178
  "x-reconciled-from-discovery": true,
1074
- "x-reconciled-at": "2026-01-05T14:39:12.959036+00:00"
1179
+ "x-reconciled-at": "2026-01-07T15:29:37.374091+00:00"
1075
1180
  }
1076
1181
  },
1182
+ "x-f5xc-description-short": "Status is a return value for calls that don't return other objects.",
1077
1183
  "x-f5xc-minimum-configuration": {
1078
1184
  "description": "Minimum configuration for schemaStatusType",
1079
1185
  "required_fields": [
@@ -1101,6 +1207,8 @@
1101
1207
  "title": "Creation_timestamp.",
1102
1208
  "format": "date-time",
1103
1209
  "x-displayname": "Creation Timestamp.",
1210
+ "x-f5xc-description-short": "CreationTimestamp is a timestamp representing the server time when this object was created.",
1211
+ "x-f5xc-description-medium": "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value.",
1104
1212
  "minLength": 0,
1105
1213
  "maxLength": 1024,
1106
1214
  "x-f5xc-required-for": {
@@ -1118,6 +1226,7 @@
1118
1226
  "x-displayname": "Creator Class.",
1119
1227
  "x-ves-example": "Prism",
1120
1228
  "x-f5xc-example": "value",
1229
+ "x-f5xc-description-short": "Value identifying the class of the user or service which created this configuration object.",
1121
1230
  "minLength": 0,
1122
1231
  "maxLength": 1024,
1123
1232
  "x-f5xc-required-for": {
@@ -1135,6 +1244,7 @@
1135
1244
  "x-displayname": "Creator ID.",
1136
1245
  "x-ves-example": "Admin@example-corp.com.",
1137
1246
  "x-f5xc-example": "value",
1247
+ "x-f5xc-description-short": "Value identifying the exact user or service that created this configuration object.",
1138
1248
  "minLength": 0,
1139
1249
  "maxLength": 1024,
1140
1250
  "x-f5xc-required-for": {
@@ -1151,6 +1261,8 @@
1151
1261
  "title": "Deletion_timestamp.",
1152
1262
  "format": "date-time",
1153
1263
  "x-displayname": "Deletion Timestamp.",
1264
+ "x-f5xc-description-short": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted.",
1265
+ "x-f5xc-description-medium": "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not...",
1154
1266
  "minLength": 0,
1155
1267
  "maxLength": 1024,
1156
1268
  "x-f5xc-required-for": {
@@ -1170,6 +1282,8 @@
1170
1282
  "x-displayname": "Finalizers.",
1171
1283
  "x-ves-example": "Value",
1172
1284
  "x-f5xc-example": "value",
1285
+ "x-f5xc-description-short": "Must be empty before the object is deleted from the registry.",
1286
+ "x-f5xc-description-medium": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.",
1173
1287
  "x-f5xc-required-for": {
1174
1288
  "minimum_config": false,
1175
1289
  "create": false,
@@ -1187,6 +1301,8 @@
1187
1301
  "x-displayname": "Labels",
1188
1302
  "x-ves-example": "'VES.I/O/soft-deleted': 'true'",
1189
1303
  "x-f5xc-example": "'F5 XC/soft-deleted''true'",
1304
+ "x-f5xc-description-short": "Map of string keys and values that can be used to organize and categorize (scope and select) objects as chosen by the operator or software.",
1305
+ "x-f5xc-description-medium": "Map of string keys and values that can be used to organize and categorize (scope and select) objects as chosen by the operator or software. Values here can be interpreted by software(backend or frontend) to enable certain behavior e.g. Things marked as soft-deleted(restorable).",
1190
1306
  "x-f5xc-required-for": {
1191
1307
  "minimum_config": false,
1192
1308
  "create": false,
@@ -1200,6 +1316,8 @@
1200
1316
  "title": "Modification_timestamp.",
1201
1317
  "format": "date-time",
1202
1318
  "x-displayname": "Modification Timestamp.",
1319
+ "x-f5xc-description-short": "ModificationTimestamp is a timestamp representing the server time when this object was last modified.",
1320
+ "x-f5xc-description-medium": "ModificationTimestamp is a timestamp representing the server time when this object was last modified.",
1203
1321
  "minLength": 0,
1204
1322
  "maxLength": 1024,
1205
1323
  "x-f5xc-required-for": {
@@ -1218,6 +1336,8 @@
1218
1336
  "x-displayname": "Object Index.",
1219
1337
  "x-ves-example": "0",
1220
1338
  "x-f5xc-example": "0",
1339
+ "x-f5xc-description-short": "Unique index for the object. Some objects need a unique integer index to be allocated for each object type.",
1340
+ "x-f5xc-description-medium": "Unique index for the object. Some objects need a unique integer index to be allocated for each object type. This field will be populated for all objects that need it and will be zero otherwise.",
1221
1341
  "minimum": 0,
1222
1342
  "maximum": 2147483647,
1223
1343
  "x-f5xc-required-for": {
@@ -1238,6 +1358,8 @@
1238
1358
  "x-displayname": "Tenant",
1239
1359
  "x-ves-example": "Example-corp.",
1240
1360
  "x-f5xc-example": "example-corp",
1361
+ "x-f5xc-description-short": "Tenant to which this configuration object belongs to. The value for this is found from presented credentials.",
1362
+ "x-f5xc-description-medium": "Tenant to which this configuration object belongs to. The value for this is found from presented credentials.",
1241
1363
  "minLength": 0,
1242
1364
  "maxLength": 18,
1243
1365
  "x-f5xc-required-for": {
@@ -1249,7 +1371,7 @@
1249
1371
  "x-field-mutability": "read-only",
1250
1372
  "x-original-maxLength": 1024,
1251
1373
  "x-reconciled-from-discovery": true,
1252
- "x-reconciled-at": "2026-01-05T14:39:12.959056+00:00"
1374
+ "x-reconciled-at": "2026-01-07T15:29:37.374110+00:00"
1253
1375
  },
1254
1376
  "uid": {
1255
1377
  "type": "string",
@@ -1258,6 +1380,8 @@
1258
1380
  "x-displayname": "UID",
1259
1381
  "x-ves-example": "D15f1fad-4d37-48c0-8706-df1824d76d31.",
1260
1382
  "x-f5xc-example": "d15f1fad-4d37-48c0-8706-df1824d76d31",
1383
+ "x-f5xc-description-short": "Uid is the unique in time and space value for this object.",
1384
+ "x-f5xc-description-medium": "Uid is the unique in time and space value for this object. It is generated by the server on successful creation of an object and is not allowed to change on Replace API. The value of is taken from uid field of ObjectMetaType, if provided.",
1261
1385
  "minLength": 0,
1262
1386
  "maxLength": 36,
1263
1387
  "x-f5xc-required-for": {
@@ -1270,9 +1394,11 @@
1270
1394
  "x-original-maxLength": 1024,
1271
1395
  "format": "uuid",
1272
1396
  "x-reconciled-from-discovery": true,
1273
- "x-reconciled-at": "2026-01-05T14:39:12.959062+00:00"
1397
+ "x-reconciled-at": "2026-01-07T15:29:37.374115+00:00"
1274
1398
  }
1275
1399
  },
1400
+ "x-f5xc-description-short": "SystemObjectGetMetaType is metadata generated or populated by the system for all persisted objects and cannot be updated directly by users.",
1401
+ "x-f5xc-description-medium": "SystemObjectGetMetaType is metadata generated or populated by the system for all persisted objects and cannot be updated directly by users.",
1276
1402
  "x-f5xc-minimum-configuration": {
1277
1403
  "description": "Minimum configuration for schemaSystemObjectGetMetaType",
1278
1404
  "required_fields": [
@@ -1320,7 +1446,7 @@
1320
1446
  },
1321
1447
  "x-original-maxLength": 1024,
1322
1448
  "x-reconciled-from-discovery": true,
1323
- "x-reconciled-at": "2026-01-05T14:39:12.959067+00:00"
1449
+ "x-reconciled-at": "2026-01-07T15:29:37.374120+00:00"
1324
1450
  },
1325
1451
  "name": {
1326
1452
  "type": "string",
@@ -1329,6 +1455,8 @@
1329
1455
  "x-displayname": "Name",
1330
1456
  "x-ves-example": "Contactus-route.",
1331
1457
  "x-f5xc-example": "contactus-route",
1458
+ "x-f5xc-description-short": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g.",
1459
+ "x-f5xc-description-medium": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g. Route's) name.",
1332
1460
  "minLength": 0,
1333
1461
  "maxLength": 16,
1334
1462
  "x-f5xc-required-for": {
@@ -1339,7 +1467,7 @@
1339
1467
  },
1340
1468
  "x-original-maxLength": 1024,
1341
1469
  "x-reconciled-from-discovery": true,
1342
- "x-reconciled-at": "2026-01-05T14:39:12.959071+00:00"
1470
+ "x-reconciled-at": "2026-01-07T15:29:37.374124+00:00"
1343
1471
  },
1344
1472
  "namespace": {
1345
1473
  "type": "string",
@@ -1348,6 +1476,8 @@
1348
1476
  "x-displayname": "Namespace",
1349
1477
  "x-ves-example": "Ns1",
1350
1478
  "x-f5xc-example": "ns1",
1479
+ "x-f5xc-description-short": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g.",
1480
+ "x-f5xc-description-medium": "When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g. Route's) namespace.",
1351
1481
  "minLength": 0,
1352
1482
  "maxLength": 6,
1353
1483
  "x-f5xc-required-for": {
@@ -1358,7 +1488,7 @@
1358
1488
  },
1359
1489
  "x-original-maxLength": 1024,
1360
1490
  "x-reconciled-from-discovery": true,
1361
- "x-reconciled-at": "2026-01-05T14:39:12.959075+00:00"
1491
+ "x-reconciled-at": "2026-01-07T15:29:37.374128+00:00"
1362
1492
  },
1363
1493
  "uid": {
1364
1494
  "type": "string",
@@ -1379,9 +1509,10 @@
1379
1509
  "x-original-maxLength": 1024,
1380
1510
  "format": "uuid",
1381
1511
  "x-reconciled-from-discovery": true,
1382
- "x-reconciled-at": "2026-01-05T14:39:12.959080+00:00"
1512
+ "x-reconciled-at": "2026-01-07T15:29:37.374133+00:00"
1383
1513
  }
1384
1514
  },
1515
+ "x-f5xc-description-short": "ViewRefType represents a reference to a view.",
1385
1516
  "x-f5xc-minimum-configuration": {
1386
1517
  "description": "Minimum configuration for schemaViewRefType",
1387
1518
  "required_fields": [
@@ -1412,6 +1543,7 @@
1412
1543
  "$ref": "#/components/schemas/schemaObjectRefType"
1413
1544
  },
1414
1545
  "x-displayname": "Deleted Referred Objects.",
1546
+ "x-f5xc-description-short": "The set of deleted objects that are referred by this object.",
1415
1547
  "x-f5xc-required-for": {
1416
1548
  "minimum_config": false,
1417
1549
  "create": false,
@@ -1427,6 +1559,7 @@
1427
1559
  "$ref": "#/components/schemas/schemaObjectRefType"
1428
1560
  },
1429
1561
  "x-displayname": "Disabled Referred Objects.",
1562
+ "x-f5xc-description-short": "The set of deleted objects that are referred by this object.",
1430
1563
  "x-f5xc-required-for": {
1431
1564
  "minimum_config": false,
1432
1565
  "create": false,
@@ -1445,6 +1578,7 @@
1445
1578
  "$ref": "#/components/schemas/schemaObjectRefType"
1446
1579
  },
1447
1580
  "x-displayname": "Referring Objects.",
1581
+ "x-f5xc-description-short": "The set of objects that are referring to this object in their spec.",
1448
1582
  "x-f5xc-required-for": {
1449
1583
  "minimum_config": false,
1450
1584
  "create": false,
@@ -1487,6 +1621,8 @@
1487
1621
  "GET_RSP_FORMAT_BROKEN_REFERENCES"
1488
1622
  ],
1489
1623
  "default": "GET_RSP_FORMAT_DEFAULT",
1624
+ "x-f5xc-description-short": "X-displayName: \"GET Response Format\" This is the various forms that can be requested to be sent in the GetResponse - GET_RSP_FORMAT_DEFAULT...",
1625
+ "x-f5xc-description-medium": "X-displayName: \"GET Response Format\" This is the various forms that can be requested to be sent in the GetResponse - GET_RSP_FORMAT_DEFAULT: x-displayName: \"Default Format\" Default format of returned resource - GET_RSP_FORMAT_READ: x-displayName: \"GetSpecType format\" Response should be in format...",
1490
1626
  "x-f5xc-minimum-configuration": {
1491
1627
  "description": "Minimum configuration for static_componentGetResponseFormatCode",
1492
1628
  "required_fields": [],
@@ -1515,6 +1651,7 @@
1515
1651
  "x-validation-rules": {
1516
1652
  "ves.io.schema.rules.message.required": "true"
1517
1653
  },
1654
+ "x-f5xc-description-short": "Information of the UI component Required: YES.",
1518
1655
  "x-f5xc-required-for": {
1519
1656
  "minimum_config": false,
1520
1657
  "create": false,
@@ -1524,7 +1661,7 @@
1524
1661
  "maxLength": 15,
1525
1662
  "minLength": 3,
1526
1663
  "x-reconciled-from-discovery": true,
1527
- "x-reconciled-at": "2026-01-05T14:39:12.959095+00:00"
1664
+ "x-reconciled-at": "2026-01-07T15:29:37.374147+00:00"
1528
1665
  }
1529
1666
  },
1530
1667
  "x-f5xc-minimum-configuration": {
@@ -1554,6 +1691,7 @@
1554
1691
  "$ref": "#/components/schemas/schemaErrorType"
1555
1692
  },
1556
1693
  "x-displayname": "Errors",
1694
+ "x-f5xc-description-short": "Errors(if any) while listing items from collection.",
1557
1695
  "x-f5xc-required-for": {
1558
1696
  "minimum_config": false,
1559
1697
  "create": false,
@@ -1569,6 +1707,8 @@
1569
1707
  "$ref": "#/components/schemas/static_componentListResponseItem"
1570
1708
  },
1571
1709
  "x-displayname": "Items",
1710
+ "x-f5xc-example": "[\"item1\", \"item2\", \"item3\"]",
1711
+ "x-f5xc-description-short": "Items represents the collection in response.",
1572
1712
  "x-f5xc-required-for": {
1573
1713
  "minimum_config": false,
1574
1714
  "create": false,
@@ -1602,6 +1742,8 @@
1602
1742
  "description": "The set of annotations present on this static_component.",
1603
1743
  "title": "Annotations.",
1604
1744
  "x-displayname": "Annotations.",
1745
+ "x-f5xc-example": "{\"key\": \"value\"}",
1746
+ "x-f5xc-description-short": "The set of annotations present on this static_component.",
1605
1747
  "x-f5xc-required-for": {
1606
1748
  "minimum_config": false,
1607
1749
  "create": false,
@@ -1614,6 +1756,7 @@
1614
1756
  "description": "The description set for this static_component.",
1615
1757
  "title": "Description.",
1616
1758
  "x-displayname": "Description.",
1759
+ "x-f5xc-description-short": "The description set for this static_component.",
1617
1760
  "minLength": 0,
1618
1761
  "maxLength": 0,
1619
1762
  "x-f5xc-required-for": {
@@ -1624,7 +1767,7 @@
1624
1767
  },
1625
1768
  "x-original-maxLength": 1024,
1626
1769
  "x-reconciled-from-discovery": true,
1627
- "x-reconciled-at": "2026-01-05T14:39:12.959107+00:00"
1770
+ "x-reconciled-at": "2026-01-07T15:29:37.374159+00:00"
1628
1771
  },
1629
1772
  "disabled": {
1630
1773
  "type": "boolean",
@@ -1632,6 +1775,8 @@
1632
1775
  "title": "Disabled",
1633
1776
  "format": "boolean",
1634
1777
  "x-displayname": "Disabled",
1778
+ "x-f5xc-example": "True",
1779
+ "x-f5xc-description-short": "Value of true indicates static_component is administratively disabled.",
1635
1780
  "x-f5xc-required-for": {
1636
1781
  "minimum_config": false,
1637
1782
  "create": false,
@@ -1647,6 +1792,8 @@
1647
1792
  "description": "The set of labels present on this static_component.",
1648
1793
  "title": "Labels",
1649
1794
  "x-displayname": "Labels",
1795
+ "x-f5xc-example": "{\"key\": \"value\"}",
1796
+ "x-f5xc-description-short": "The set of labels present on this static_component.",
1650
1797
  "x-f5xc-required-for": {
1651
1798
  "minimum_config": false,
1652
1799
  "create": false,
@@ -1674,7 +1821,7 @@
1674
1821
  },
1675
1822
  "x-original-maxLength": 1024,
1676
1823
  "x-reconciled-from-discovery": true,
1677
- "x-reconciled-at": "2026-01-05T14:39:12.959117+00:00"
1824
+ "x-reconciled-at": "2026-01-07T15:29:37.374168+00:00"
1678
1825
  },
1679
1826
  "namespace": {
1680
1827
  "type": "string",
@@ -1693,7 +1840,7 @@
1693
1840
  },
1694
1841
  "x-original-maxLength": 1024,
1695
1842
  "x-reconciled-from-discovery": true,
1696
- "x-reconciled-at": "2026-01-05T14:39:12.959121+00:00"
1843
+ "x-reconciled-at": "2026-01-07T15:29:37.374173+00:00"
1697
1844
  },
1698
1845
  "owner_view": {
1699
1846
  "$ref": "#/components/schemas/schemaViewRefType"
@@ -1719,7 +1866,7 @@
1719
1866
  "x-field-mutability": "read-only",
1720
1867
  "x-original-maxLength": 1024,
1721
1868
  "x-reconciled-from-discovery": true,
1722
- "x-reconciled-at": "2026-01-05T14:39:12.959128+00:00"
1869
+ "x-reconciled-at": "2026-01-07T15:29:37.374179+00:00"
1723
1870
  },
1724
1871
  "uid": {
1725
1872
  "type": "string",
@@ -1728,6 +1875,7 @@
1728
1875
  "x-displayname": "UID",
1729
1876
  "x-ves-example": "D27938ba-967e-40a7-9709-57b8627f9f75.",
1730
1877
  "x-f5xc-example": "d27938ba-967e-40a7-9709-57b8627f9f75",
1878
+ "x-f5xc-description-short": "The unique uid of this static_component.",
1731
1879
  "minLength": 0,
1732
1880
  "maxLength": 36,
1733
1881
  "x-f5xc-required-for": {
@@ -1740,9 +1888,11 @@
1740
1888
  "x-original-maxLength": 1024,
1741
1889
  "format": "uuid",
1742
1890
  "x-reconciled-from-discovery": true,
1743
- "x-reconciled-at": "2026-01-05T14:39:12.959133+00:00"
1891
+ "x-reconciled-at": "2026-01-07T15:29:37.374184+00:00"
1744
1892
  }
1745
1893
  },
1894
+ "x-f5xc-description-short": "By default a summary of static_component is returned in 'List'. By setting 'report_fields' in the ListRequest more details of each item can be got.",
1895
+ "x-f5xc-description-medium": "By default a summary of static_component is returned in 'List'. By setting 'report_fields' in the ListRequest more details of each item can be got.",
1746
1896
  "x-f5xc-minimum-configuration": {
1747
1897
  "description": "Minimum configuration for static_componentListResponseItem",
1748
1898
  "required_fields": [