diff options
author | Pamela Dragosh <pdragosh@research.att.com> | 2020-08-21 10:53:44 -0400 |
---|---|---|
committer | Pamela Dragosh <pdragosh@research.att.com> | 2020-08-21 11:30:38 -0400 |
commit | cc6265ef38c277559d5bee6695f0353b15f87b37 (patch) | |
tree | 60de12923f77b40d6f6f501eb4027acc50186df1 /docs/xacml/example.guard.limiter.yaml | |
parent | 20358938559866a5937ee7af68678aabdf3a3c39 (diff) |
Add guard filter documentation
Added guard filter to documentation and expanded doc on the other
filters.
Issue-ID: POLICY-2590
Change-Id: I5683b1f8d6a1999f411c9eab5b538b8f2fb82664
Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'docs/xacml/example.guard.limiter.yaml')
-rw-r--r-- | docs/xacml/example.guard.limiter.yaml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/xacml/example.guard.limiter.yaml b/docs/xacml/example.guard.limiter.yaml new file mode 100644 index 00000000..703be4f7 --- /dev/null +++ b/docs/xacml/example.guard.limiter.yaml @@ -0,0 +1,19 @@ +tosca_definitions_version: tosca_simple_yaml_1_1_0 +topology_template: + policies: + - + guard.frequency.scaleout: + type: onap.policies.controlloop.guard.common.FrequencyLimiter + type_version: 1.0.0 + version: 1.0.0 + name: guard.frequency.scaleout + description: Here we limit the number of Restarts for my-controlloop to 3 in a ten minute period. + metadata: + policy-id : guard.frequency.scaleout + properties: + actor: APPC + operation: Restart + id: my-controlloop + timeWindow: 10 + timeUnits: minute + limit: 3
\ No newline at end of file |