ves-io-schema-protocol_policer-API-Get
On This Page:
Examples of getting protocol_policer
Usecase:
Get protocol-policer-1
Request using vesctl:
vesctl configuration get protocol_policer protocol-policer-1 --namespace system
vesctl yaml response:
metadata:
annotations: {}
labels: {}
name: protocol-policer-1
namespace: system
resourceVersion: "651"
spec:
protocolPolicer:
- policer:
- kind: policer
name: policer-1
namespace: system
tenant: acmecorp
protocol:
icmp:
type:
- ALL_ICMP_MSG
status: []
systemMetadata:
creationTimestamp: "2021-03-31T08:29:40.639599500Z"
creatorClass: examplesvc
creatorId: examplesvc
finalizers: []
tenant: acmecorp
uid: 155d8c13-b454-4735-ae50-3bca4aeb54e2
Request using curl:
curl -X 'GET' -H 'X-Volterra-Useragent: v1/pgm=_tmp_go-build318584715_b001_apidocs.test/host=docker-desktop' 'https://acmecorp.console.ves.volterra.io/api/config/namespaces/system/protocol_policers/protocol-policer-1?response_format=0'
curl response:
HTTP/1.1 200 OK
Content-Length: 1096
Content-Type: application/json
Date: Wed, 31 Mar 2021 08:29:40 GMT
Vary: Accept-Encoding
{
"object": null,
"create_form": null,
"replace_form": null,
"resource_version": "651",
"metadata": {
"name": "protocol-policer-1",
"namespace": "system",
"labels": {
},
"annotations": {
},
"description": "",
"disable": false
},
"system_metadata": {
"uid": "155d8c13-b454-4735-ae50-3bca4aeb54e2",
"creation_timestamp": "2021-03-31T08:29:40.639599500Z",
"deletion_timestamp": null,
"modification_timestamp": null,
"initializers": null,
"finalizers": [
],
"tenant": "acmecorp",
"creator_class": "examplesvc",
"creator_id": "examplesvc",
"object_index": 0,
"owner_view": null
},
"spec": {
"protocol_policer": [
{
"protocol": {
"icmp": {
"type": [
"ALL_ICMP_MSG"
]
}
},
"policer": [
{
"kind": "policer",
"uid": "",
"tenant": "acmecorp",
"namespace": "system",
"name": "policer-1"
}
]
}
]
},
"status": [
]
}