diff options
author | Dan Timoney <dt5972@att.com> | 2018-09-04 15:14:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-04 15:14:26 +0000 |
commit | 4a4a23823e3faa8872b86ae5cd3b0882b3b7899b (patch) | |
tree | 1b4357ea7da541fe4e222ec52fe29ff20cc84ff4 /ms/controllerblueprints/modules/resource-dict/src/test/resources/enrich/simple-enrich.json | |
parent | 96dca33469863ebd96c5a8c9dfa3020720117e04 (diff) | |
parent | 5dbc79162b53a0e97be4561719ae0e181944d2c8 (diff) |
Merge "Controller Blueprints Microservice"
Diffstat (limited to 'ms/controllerblueprints/modules/resource-dict/src/test/resources/enrich/simple-enrich.json')
-rw-r--r-- | ms/controllerblueprints/modules/resource-dict/src/test/resources/enrich/simple-enrich.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/ms/controllerblueprints/modules/resource-dict/src/test/resources/enrich/simple-enrich.json b/ms/controllerblueprints/modules/resource-dict/src/test/resources/enrich/simple-enrich.json new file mode 100644 index 000000000..641da80a2 --- /dev/null +++ b/ms/controllerblueprints/modules/resource-dict/src/test/resources/enrich/simple-enrich.json @@ -0,0 +1,37 @@ +[
+ {
+ "name": "rs-db-source",
+ "input-param": true,
+ "property": {
+ "type": "string",
+ "required": true
+ },
+ "dictionary-name": "db-source",
+ "dictionary-source": "db",
+ "dependencies": [
+ "input-source"
+ ]
+ },
+ {
+ "name": "ra-default-source",
+ "input-param": true,
+ "property": {
+ "type": "string",
+ "required": true
+ },
+ "dictionary-name": "default-source",
+ "dictionary-source": "default",
+ "dependencies": []
+ },
+ {
+ "name": "ra-input-source",
+ "input-param": true,
+ "property": {
+ "type": "string",
+ "required": true
+ },
+ "dictionary-name": "input-source",
+ "dictionary-source": "input",
+ "dependencies": []
+ }
+]
|