aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/test/resources/policytypes
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@est.tech>2020-02-13 13:42:27 +0000
committerliamfallon <liam.fallon@est.tech>2020-02-13 13:42:32 +0000
commit86571f2d2b289edad0210d16ff7815578a118190 (patch)
treec95b5701a332e0a2d7e422bdf19ae9af3428316e /main/src/test/resources/policytypes
parentc7bd8dbbfc3427485bbc6a69262de3b46079467e (diff)
Update API for changes in TOSCA provider
Knock on changes and some simplification of the code because the TOSCA provider now does some of the checks that were in API, so those checks are not needed in API any more. Various JUnit fixes. Issue-ID: POLICY-1402 Change-Id: Ic3a08e415c8cce4f2aad4b5da2623e41280c4e66 Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'main/src/test/resources/policytypes')
-rw-r--r--main/src/test/resources/policytypes/onap.policies.Test.yaml31
1 files changed, 31 insertions, 0 deletions
diff --git a/main/src/test/resources/policytypes/onap.policies.Test.yaml b/main/src/test/resources/policytypes/onap.policies.Test.yaml
new file mode 100644
index 00000000..c8850a13
--- /dev/null
+++ b/main/src/test/resources/policytypes/onap.policies.Test.yaml
@@ -0,0 +1,31 @@
+tosca_definitions_version: tosca_simple_yaml_1_0_0
+policy_types:
+ onap.policies.Test:
+ derived_from: tosca.policies.Root
+ version: 1.0.0
+ description: The base policy type for all policies that govern optimization
+ properties:
+ scope:
+ description: Scope for the policy - could be for a specific release.
+ type: list
+ metadata:
+ matchable: true
+ required: true
+ entry_schema:
+ type: string
+ geography:
+ description: One or more geographic regions
+ type: list
+ metadata:
+ matchable: true
+ required: true
+ entry_schema:
+ type: string
+ constraints:
+ - valid_values:
+ - US
+ - International
+ identity:
+ description: Used internally for identification
+ type: string
+ required: true \ No newline at end of file