ves-io-schema-fast_acl-API-List
On This Page:
Examples of listing fast_acl
Usecase:
List all fast_acl from system namespace
Request using vesctl:
vesctl configuration list fast_acl --namespace system
vesctl yaml response:
items:
- annotations: {}
labels: {}
name: acmecorp-fast-acl
namespace: system
statusSet: []
tenant: acmecorp
uid: de2a5443-02a1-4cfc-a978-83ff23e6dc47
- annotations: {}
labels: {}
name: fast-acl-1234vip
namespace: system
statusSet: []
tenant: acmecorp
uid: d7f8dbce-fda0-4d41-bff0-5a64a7382303
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build318584715_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/fast_acls'
curl response
HTTP/1.1 200 OK
Content-Length: 866
Content-Type: application/json
Date: Wed, 31 Mar 2021 08:28:37 GMT
Vary: Accept-Encoding
{
"items": [
{
"tenant": "acmecorp",
"namespace": "system",
"name": "acmecorp-fast-acl",
"uid": "de2a5443-02a1-4cfc-a978-83ff23e6dc47",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"object": null,
"get_spec": null,
"status_set": [
]
},
{
"tenant": "acmecorp",
"namespace": "system",
"name": "fast-acl-1234vip",
"uid": "d7f8dbce-fda0-4d41-bff0-5a64a7382303",
"description": "",
"disabled": false,
"labels": {
},
"annotations": {
},
"owner_view": null,
"metadata": null,
"system_metadata": null,
"object": null,
"get_spec": null,
"status_set": [
]
}
]
}