ves-io-schema-namespace-NamespaceCustomAPI-SetActiveServicePolicies
Examples of performing namespace NamespaceCustomAPI SetActiveServicePolicies
Usecase:
Set Active Service Policies
Request:
Request using vesctl:
vesctl request rpc namespace.NamespaceCustomAPI.SetActiveServicePolicies -i request.yaml --uri /public/namespaces/foobar/active_service_policies --http-method POST
where file request.yaml has following contents:
namespace: foobar
servicePolicies:
- name: sp-1
namespace: foobar
tenant: acmecorp
- name: sp-2
namespace: shared
tenant: acmecorp
vesctl yaml response:
{}
Request using curl:
curl -X 'POST' -d '{"namespace":"foobar","service_policies":[{"tenant":"acmecorp","namespace":"foobar","name":"sp-1"},{"tenant":"acmecorp","namespace":"shared","name":"sp-2"}]}' -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/config/namespaces/foobar/active_service_policies'
curl response:
HTTP/1.1 200 OK
Content-Length: 4
Content-Type: application/json
Date: Thu, 28 Jul 2022 12:10:57 GMT
Vary: Accept-Encoding
{
}