ves-io-schema-known_label_key-CustomAPI-Create
Examples of performing knownlabelkey CustomAPI Create
Usecase:
Create knownlabelkey acmecorp/stroretype
Request:
Request using vesctl:
vesctl request rpc known_label_key.CustomAPI.Create -i request.yaml --uri /public/namespaces/shared/known_label_key/create --http-method POST
where file request.yaml has following contents:
description: Type of store where edge site will be located
key: acmecorp/storetype
namespace: shared
vesctl yaml response:
labelKey:
description: Type of store where edge site will be located
key: acmecorp/storetype
Request using curl:
curl -X 'POST' -d '{"namespace":"shared","key":"acmecorp/storetype","description":"Type of store where edge site will be located"}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build817539475_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/shared/known_label_key/create'
curl response:
HTTP/1.1 200 OK
Content-Length: 124
Content-Type: application/json
Date: Mon, 22 Feb 2021 15:44:11 GMT
Vary: Accept-Encoding
{
"label_key": {
"key": "acmecorp/storetype",
"description": "Type of store where edge site will be located"
}
}