aboutsummaryrefslogtreecommitdiffstats
path: root/examples/policies/policy_types
diff options
context:
space:
mode:
Diffstat (limited to 'examples/policies/policy_types')
-rw-r--r--examples/policies/policy_types/optimization_v2.json61
-rw-r--r--examples/policies/policy_types/threshold.json56
2 files changed, 117 insertions, 0 deletions
diff --git a/examples/policies/policy_types/optimization_v2.json b/examples/policies/policy_types/optimization_v2.json
new file mode 100644
index 0000000..ea5ca6f
--- /dev/null
+++ b/examples/policies/policy_types/optimization_v2.json
@@ -0,0 +1,61 @@
+{
+ "tosca_definitions_version": "tosca_simple_yaml_1_1_0",
+ "policy_types": {
+ "onap.policies.optimization.resource.OptimizationPolicy": {
+ "derived_from": "onap.policies.optimization.Resource",
+ "version": "2.0.0",
+ "name": "onap.policies.optimization.resource.OptimizationPolicy",
+ "properties": {
+ "goal": {
+ "type": "list",
+ "required": true,
+ "entry_schema": {
+ "type": "string",
+ "constraints": [
+ {
+ "valid_values": [
+ "minimize",
+ "maximize"
+ ]
+ }
+ ]
+ }
+ },
+ "operation_function": {
+ "type": "policy.data.operation_function_properties",
+ "required": true
+ }
+ }
+ }
+ },
+ "data_types": {
+ "policy.data.operation_function_properties": {
+ "derived_from": "tosca.nodes.Root",
+ "properties": {
+ "operands": {
+ "type": "list",
+ "required": true,
+ "entry_schema": {
+ "type": "map"
+ }
+ },
+ "operator": {
+ "type": "string",
+ "required": true,
+ "entry_schema": {
+ "type": "string",
+ "constraints": [
+ {
+ "valid_values": [
+ "sum",
+ "min",
+ "max"
+ ]
+ }
+ ]
+ }
+ }
+ }
+ }
+ }
+} \ No newline at end of file
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