aboutsummaryrefslogtreecommitdiffstats
path: root/docs/xacml/tutorial/tutorial-policy-type.yaml
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2020-10-29 08:57:09 -0400
committerPamela Dragosh <pdragosh@research.att.com>2020-10-29 16:07:03 -0400
commit027d34b558876f78681c79715466b5b612004339 (patch)
tree615dae3949037447fd7f776df35205303a16e34f /docs/xacml/tutorial/tutorial-policy-type.yaml
parent2ce5df63e5a192f0c09d547ce7ab44ad82f1dddb (diff)
Update Tutorial Documentation
Point to actual code and remove the eclipse instructions as developers should look elsewhere for these instructions. Adding enforcement tutorial. Issue-ID: POLICY-2876 Change-Id: I793c1fae72f832afe7098be57a94f4929e9deb9a Signed-off-by: Pamela Dragosh <pdragosh@research.att.com>
Diffstat (limited to 'docs/xacml/tutorial/tutorial-policy-type.yaml')
-rw-r--r--docs/xacml/tutorial/tutorial-policy-type.yaml32
1 files changed, 32 insertions, 0 deletions
diff --git a/docs/xacml/tutorial/tutorial-policy-type.yaml b/docs/xacml/tutorial/tutorial-policy-type.yaml
new file mode 100644
index 00000000..7948bd28
--- /dev/null
+++ b/docs/xacml/tutorial/tutorial-policy-type.yaml
@@ -0,0 +1,32 @@
+tosca_definitions_version: tosca_simple_yaml_1_1_0
+policy_types:
+ onap.policies.Authorization:
+ derived_from: tosca.policies.Root
+ version: 1.0.0
+ description: Example tutorial policy type for doing user authorization
+ properties:
+ user:
+ type: string
+ required: true
+ description: The unique user name
+ permissions:
+ type: list
+ required: true
+ description: A list of resource permissions
+ entry_schema:
+ type: onap.datatypes.Tutorial
+data_types:
+ onap.datatypes.Tutorial:
+ derived_from: tosca.datatypes.Root
+ version: 1.0.0
+ properties:
+ entity:
+ type: string
+ required: true
+ description: The resource
+ permission:
+ type: string
+ required: true
+ description: The permission level
+ constraints:
+ - valid_values: [read, write, delete]