X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=examples%2Fpolicies%2Fpolicy_types%2Fthreshold.json;fp=examples%2Fpolicies%2Fpolicy_types%2Fthreshold.json;h=60c73faee757eb437e1f8722b1e6d0dc53e1295c;hb=93997d04f30539b8947f3084d2397b34d9d75e27;hp=0000000000000000000000000000000000000000;hpb=a578dbb1e5ce1afd1fccbff42048eb320cd69e20;p=optf%2Fosdf.git diff --git a/examples/policies/policy_types/threshold.json b/examples/policies/policy_types/threshold.json new file mode 100644 index 0000000..60c73fa --- /dev/null +++ b/examples/policies/policy_types/threshold.json @@ -0,0 +1,56 @@ +{ + "tosca_definitions_version": "tosca_simple_yaml_1_1_0", + "policy_types": { + "onap.policies.optimization.resource.ThresholdPolicy": { + "derived_from": "onap.policies.optimization.Resource", + "version": "1.0.0", + "properties": { + "applicableResources": { + "type": "list", + "required": true, + "entry_schema": { + "type": "string", + "constraints": [ + { + "valid_values": [ + "any", + "all" + ] + } + ] + } + }, + "thresholdProperties": { + "type": "list", + "required": true, + "entry_schema": { + "type": "policy.data.thresholdProperties_properties" + } + } + } + } + }, + "data_types": { + "policy.data.thresholdProperties_properties": { + "derived_from": "tosca.nodes.Root", + "properties": { + "attribute": { + "type": "string", + "required": true + }, + "operator": { + "type": "string", + "required": true + }, + "threshold": { + "type": "float", + "required": true + }, + "unit": { + "type": "string", + "required": false + } + } + } + } +} \ No newline at end of file