​
Select Service
- About F5 Distributed Cloud Services
- Services
- Concepts
- Quick Start
- How To
- Images
- Changelogs
- Reference
- Support
- FAQs
ves-io-schema-healthcheck-API-List
Published April 5, 2023 | Last modified March 20, 2025
Examples of listing healthcheck
Usecase:
List all healthcheck objects
Request using vesctl:
vesctl configuration list healthcheck --namespace documentation
vesctl yaml response:
errors: []
items:
- annotations: {}
labels: {}
name: healthcheck-details
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 23b80d91-aee9-4015-b366-fd6f5e47e4fc
- annotations: {}
labels: {}
name: healthcheck-productpage
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 7a9ea121-5aa0-4fe5-9367-1681a4f88208
- annotations: {}
labels: {}
name: healthcheck-ratings
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 592aa846-b31d-4f57-a178-8af5bcf1a8b6
- annotations: {}
labels: {}
name: healthcheck-reviews
namespace: documentation
statusSet: []
tenant: acmecorp
uid: 17f4b2a8-d9f8-4d2f-a809-beffd2a5036e
Copy to clipboard!
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build436303540_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/documentation/healthchecks'
Copy to clipboard!
curl response
HTTP/1.1 200 OK
Content-Type: application/json
Date: Tue, 11 Mar 2025 00:55:56 GMT
Vary: Accept-Encoding
{
"items": [
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "healthcheck-details",
"uid": "23b80d91-aee9-4015-b366-fd6f5e47e4fc",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "healthcheck-productpage",
"uid": "7a9ea121-5aa0-4fe5-9367-1681a4f88208",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "healthcheck-ratings",
"uid": "592aa846-b31d-4f57-a178-8af5bcf1a8b6",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "documentation",
"name": "healthcheck-reviews",
"uid": "17f4b2a8-d9f8-4d2f-a809-beffd2a5036e",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
}
],
"errors": [
]
}
Copy to clipboard!