diff options
author | jhh <jorge.hernandez-herrero@att.com> | 2020-11-17 14:40:16 -0600 |
---|---|---|
committer | jhh <jorge.hernandez-herrero@att.com> | 2020-11-17 14:53:22 -0600 |
commit | 6a429b8504cdd38cadb3ce9bb532d08cc5115da9 (patch) | |
tree | 480e4cdc3f4a5606792bc6f60435524b42d812e0 /feature-lifecycle/src/test/resources/tosca-policy-other.json | |
parent | dc6c4a21d46909dad59f4bd16cb6d4fc29fcce77 (diff) |
support for not validated policy types
Issue-ID: POLICY-2880
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Change-Id: Id816bb3edd44c34a342cd7ada95dd8f2f9d1b0a6
Signed-off-by: jhh <jorge.hernandez-herrero@att.com>
Diffstat (limited to 'feature-lifecycle/src/test/resources/tosca-policy-other.json')
-rw-r--r-- | feature-lifecycle/src/test/resources/tosca-policy-other.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/feature-lifecycle/src/test/resources/tosca-policy-other.json b/feature-lifecycle/src/test/resources/tosca-policy-other.json new file mode 100644 index 00000000..33aed19b --- /dev/null +++ b/feature-lifecycle/src/test/resources/tosca-policy-other.json @@ -0,0 +1,22 @@ +{ + "tosca_definitions_version": "tosca_simple_yaml_1_0_0", + "topology_template": { + "policies": [ + { + "other": { + "type": "onap.policies.type1.type2", + "type_version": "1.0.0", + "name": "other", + "version": "1.0.0", + "metadata": { + "policy-id": "other" + }, + "properties": { + "field1": "abc", + "field2": 2 + } + } + } + ] + } +} |