ves-io-schema-operate-usb-CustomPublicAPI-GetConfig
Examples of performing operate_usb CustomPublicAPI GetConfig
Usecase:
Get USB config from the node
Request:
Request using vesctl:
vesctl request rpc operate_usb.CustomPublicAPI.GetConfig -i request.yaml --uri /public/namespaces/system/sites/site1/vpm/usb/master-0/config --http-method GET
where file request.yaml has following contents:
namespace: system
node: master-0
site: site1
vesctl yaml response:
config:
usbAllowListEnable: true
Request using curl:
curl -X 'GET' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build1372770011_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/operate/namespaces/system/sites/site1/vpm/usb/master-0/config?namespace=system&node=master-0&site=site1'
curl response:
HTTP/1.1 200 OK
Content-Length: 55
Content-Type: application/json
Date: Thu, 28 Jul 2022 12:11:21 GMT
Vary: Accept-Encoding
{
"config": {
"usb_allow_list_enable": true
}
}