Merge "Added new policy types for native PDP policies"
authorJim Hahn <jrh3@att.com>
Fri, 22 Nov 2019 14:20:55 +0000 (14:20 +0000)
committerGerrit Code Review <gerrit@onap.org>
Fri, 22 Nov 2019 14:20:55 +0000 (14:20 +0000)
models-examples/src/main/resources/policytypes/onap.policies.drools.Controller.yaml [new file with mode: 0644]
models-examples/src/main/resources/policytypes/onap.policies.native.Drools.yaml [new file with mode: 0644]
models-examples/src/main/resources/policytypes/onap.policies.native.Xacml.yaml [new file with mode: 0644]

diff --git a/models-examples/src/main/resources/policytypes/onap.policies.drools.Controller.yaml b/models-examples/src/main/resources/policytypes/onap.policies.drools.Controller.yaml
new file mode 100644 (file)
index 0000000..74db202
--- /dev/null
@@ -0,0 +1,70 @@
+tosca_definitions_version: tosca_simple_yaml_1_0_0
+policy_types:
+    onap.policies.drools.Controller:
+        derived_from: tosca.policies.Root
+        description: a policy type for drools controller configuration
+        version: 1.0.0
+        properties:
+            controllerName:
+                type: string
+                required: true
+                description: the drools controller name
+            sourceTopics:
+                type: list
+                required: false
+                description: all the source topices and configurations needed for the events coming under each topic
+                entry_schema:
+                    type: onap.datatypes.dmaap.topic
+            sinkTopics:
+                type: list
+                required: false
+                description: all the sink topices and configurations needed for the events sending under each topic
+                entry_schema:
+                    type: onap.datatypes.dmaap.topic
+            customConfig:
+                type: map
+                required: false
+                description: any use case specific configurations relevant to the drools controller
+                entry_schema:
+                    type: string
+
+data_types:
+    onap.datatypes.dmaap.topic:
+        derived_from: tosca.datatypes.Root
+        properties:
+            topicName:
+                type: string
+                required: true
+                description: the dmaap topic name
+            serialization:
+                type: list
+                required: true
+                description: all the configurations needed for serializing all kinds of events under current topic
+                entry_schema:
+                    type: onap.datatypes.dmaap.serialization
+    onap.datatypes.dmaap.serialization:
+        derived_from: tosca.datatypes.Root
+        properties:
+            eventCanonicalName:
+                type: string
+                required: true
+                description: the event canonical class for serialization
+            eventFilter:
+                type: string
+                required: false
+                description: the JSONPath based condition to filter out the events to serialize
+            customSerializer:
+                type: onap.datatypes.dmaap.custom_serializer
+                required: false
+                description:  a custom serializer to use for serializing current event
+    onap.datatypes.dmaap.custom_serializer:
+        derived_from: tosca.datatypes.Root
+        properties:
+            customSerializerClass:
+                type: string
+                required: true
+                description: the class of custom serializer
+            jsonParser:
+                type: string
+                required: true
+                description: a json parser to use which is implemented in custom serializer class
\ No newline at end of file
diff --git a/models-examples/src/main/resources/policytypes/onap.policies.native.Drools.yaml b/models-examples/src/main/resources/policytypes/onap.policies.native.Drools.yaml
new file mode 100644 (file)
index 0000000..39b9c7f
--- /dev/null
@@ -0,0 +1,47 @@
+tosca_definitions_version: tosca_simple_yaml_1_0_0
+policy_types:
+    onap.policies.Native:
+        derived_from: tosca.policies.Root
+        description: a base policy type for all native PDP policies
+        version: 1.0.0
+    onap.policies.native.Drools:
+        derived_from: onap.policies.Native
+        description: a policy type for native drools policies
+        version: 1.0.0
+        properties:
+            rule_artifact:
+                type: onap.datatypes.native.rule_artifact
+                required: true
+                description: the GAV information of the maven artifact
+            controller:
+                type: onap.datatypes.drools.controller.relation
+                required: true
+                description: the drools controller to which the current native policy is assigned
+
+data_types:
+    onap.datatypes.native.rule_artifact:
+        derived_from: tosca.datatypes.Root
+        properties:
+            groupId:
+                type: string
+                required: true
+                description: the groupId of the maven artifact
+            artifactId:
+                type: string
+                required: true
+                description: the artifactId of the maven artifact
+            version:
+                type: string
+                required: true
+                description: the version of the maven artifact
+    onap.datatypes.drools.controller.relation:
+        derived_from: tosca.datatypes.Root
+        properties:
+            controllerPolicyName:
+                type: string
+                required: true
+                description: the name of drools controller policy
+            controllerPolicyVersion:
+                type: string
+                required: true
+                description: the version of drools controller policy
\ No newline at end of file
diff --git a/models-examples/src/main/resources/policytypes/onap.policies.native.Xacml.yaml b/models-examples/src/main/resources/policytypes/onap.policies.native.Xacml.yaml
new file mode 100644 (file)
index 0000000..d065f61
--- /dev/null
@@ -0,0 +1,17 @@
+tosca_definitions_version: tosca_simple_yaml_1_0_0
+policy_types:
+    onap.policies.Native:
+        derived_from: tosca.policies.Root
+        description: a base policy type for all native PDP policies
+        version: 1.0.0
+    onap.policies.native.Xacml:
+        derived_from: onap.policies.Native
+        description: a policy type for native xacml policies
+        version: 1.0.0
+        properties:
+            policy:
+                type: String
+                required: true
+                description: The XML XACML 3.0 PolicySet or Policy
+                metadata:
+                    encoding: URL
\ No newline at end of file