​
Select Service
ves-io-schema-views-aws_tgw_site-API-List
Published April 5, 2023 | Last modified November 14, 2025
Examples of listing aws_tgw_site
Usecase:
List all aws_tgw_sites in current namespace
Request using vesctl:
vesctl configuration list aws_tgw_site --namespace system
vesctl yaml response:
errors: []
items:
- annotations: {}
labels: {}
name: tgw-site-1
namespace: system
statusSet: []
tenant: acmecorp
uid: 36623ec6-3e74-49b5-b241-33b335b842a0
- annotations: {}
labels: {}
name: tgw-site-2
namespace: system
statusSet: []
tenant: acmecorp
uid: 90be8b72-6000-4153-b80e-092b0a3d5a34
- annotations: {}
labels: {}
name: tgw-site-3
namespace: system
statusSet: []
tenant: acmecorp
uid: 5179f307-22b2-41d9-a35f-49a133a29991
- annotations: {}
labels: {}
name: tgw-site-4
namespace: system
statusSet: []
tenant: acmecorp
uid: 7a85d81f-d1ba-4cbb-982c-af5bdf9fd421
Copied!
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_q2_3kp8z3zs0x5_m7pk1bgb0_ph0000gp_T_go-build4194363419_b001_apidocs.test/host=MTY6VVHQPH/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/aws_tgw_sites'
Copied!
curl response
HTTP/1.1 200 OK
Content-Type: application/json
Date: Thu, 13 Nov 2025 23:08:14 GMT
Vary: Accept-Encoding
{
"items": [
{
"tenant": "acmecorp",
"namespace": "system",
"name": "tgw-site-1",
"uid": "36623ec6-3e74-49b5-b241-33b335b842a0",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "system",
"name": "tgw-site-2",
"uid": "90be8b72-6000-4153-b80e-092b0a3d5a34",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "system",
"name": "tgw-site-3",
"uid": "5179f307-22b2-41d9-a35f-49a133a29991",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "system",
"name": "tgw-site-4",
"uid": "7a85d81f-d1ba-4cbb-982c-af5bdf9fd421",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"get_spec": null,
"status_set": [
]
}
],
"errors": [
]
}
Copied!