ves-io-schema-fast_acl-API-List

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:

          errors: []
items:
- annotations: {}
  labels: {}
  name: acmecorp-fast-acl
  namespace: system
  statusSet: []
  tenant: acmecorp
  uid: 63237b49-a060-4aea-bb00-c0b90b249bdb
- annotations: {}
  labels: {}
  name: fast-acl-1234vip
  namespace: system
  statusSet: []
  tenant: acmecorp
  uid: 05ef6180-9144-4efc-ba8f-147f8a6c0ed1

        

Request using curl:

          curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_2__8qnt6fwd5dvglr1xqq6l8b7w0000gp_T_go-build3109416560_b001_apidocs.test/host=C02FN35BMD6R/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/fast_acls'
        

curl response

          HTTP/1.1 200 OK
Content-Length: 841
Content-Type: application/json
Date: Thu, 21 Mar 2024 14:05:20 GMT
Vary: Accept-Encoding

{
  "items": [
    {
      "tenant": "acmecorp",
      "namespace": "system",
      "name": "acmecorp-fast-acl",
      "uid": "63237b49-a060-4aea-bb00-c0b90b249bdb",
      "description": "",
      "disabled": false,
      "labels": {
      },
      "annotations": {
      },
      "owner_view": null,
      "metadata": null,
      "system_metadata": null,
      "get_spec": null,
      "status_set": [
      ]
    },
    {
      "tenant": "acmecorp",
      "namespace": "system",
      "name": "fast-acl-1234vip",
      "uid": "05ef6180-9144-4efc-ba8f-147f8a6c0ed1",
      "description": "",
      "disabled": false,
      "labels": {
      },
      "annotations": {
      },
      "owner_view": null,
      "metadata": null,
      "system_metadata": null,
      "get_spec": null,
      "status_set": [
      ]
    }
  ],
  "errors": [
  ]
}