ves-io-schema-infraprotect_network-CustomAPI-Mitigate

Examples of performing infraprotect_network CustomAPI Mitigate

Usecase:

Start or Stop a prefix mitigation

Request:

Request using vesctl:

vesctl request rpc infraprotect_network.CustomAPI.Mitigate -i request.yaml --uri /public/namespaces/system/infraprotect_networks/mitigate --http-method POST

where file request.yaml has following contents:

          namespace: system
prefix: 10.1.1.0/24
status: true

        

vesctl yaml response:

          prefixes:
- 10.1.1.0/24

        

Request using curl:

          curl -X 'POST' -d '{"namespace":"system","prefix":"10.1.1.0/24","status":true}' -H 'Content-Type: application/json' -H 'X-Volterra-Useragent: v1/pgm=_var_folders_2__8qnt6fwd5dvglr1xqq6l8b7w0000gp_T_go-build449658010_b001_apidocs.test/host=C02FN35BMD6R/svc=S:examplesvc/site=mytestce01' 'https://acmecorp.console.ves.volterra.io/api/infraprotect/namespaces/system/infraprotect_networks/mitigate'
        

curl response:

          HTTP/1.1 200 OK
Content-Length: 41
Content-Type: application/json
Date: Fri, 12 Jan 2024 12:06:28 GMT
Vary: Accept-Encoding

{
  "prefixes": [
    "10.1.1.0/24"
  ]
}