aboutsummaryrefslogtreecommitdiffstats
path: root/models-examples/src/main/resources/policytypes/onap.policies.native.Drools.yaml
diff options
context:
space:
mode:
authorChenfei Gao <cgao@research.att.com>2019-11-13 10:45:21 -0500
committerChenfei Gao <cgao@research.att.com>2019-11-21 10:58:02 -0500
commit8b988c5ba1cb174fc942e347833a848bfba05d61 (patch)
tree8eb00a55b60456ad2700c03487964d55630ff2c6 /models-examples/src/main/resources/policytypes/onap.policies.native.Drools.yaml
parentc34a4b6b2e111462cde7f5663b8fbbc4ad86fc7e (diff)
Added new policy types for native PDP policies
Issue-ID: POLICY-2212 Change-Id: Ib29ad66994aa64a73f23bc36eebbc1bc03b2ac02 Signed-off-by: Chenfei Gao <cgao@research.att.com>
Diffstat (limited to 'models-examples/src/main/resources/policytypes/onap.policies.native.Drools.yaml')
-rw-r--r--models-examples/src/main/resources/policytypes/onap.policies.native.Drools.yaml47
1 files changed, 47 insertions, 0 deletions
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
index 000000000..39b9c7f28
--- /dev/null
+++ b/models-examples/src/main/resources/policytypes/onap.policies.native.Drools.yaml
@@ -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