diff options
author | Ezhilarasi <ezhrajam@in.ibm.com> | 2019-04-04 21:06:09 +0530 |
---|---|---|
committer | Ezhilarasi R <ezhrajam@in.ibm.com> | 2019-04-05 07:10:12 +0000 |
commit | e4b82f76f386a1aad395951e5c5d2cf2ba688c6b (patch) | |
tree | 736ab254e6053aeb1b0eeb0ccd86f4eae10f442c /cds-ui/server/src/datasources/blueprint.datasource.json | |
parent | 41af46c85eafe85b20833c99def94ab530afa01b (diff) |
Service for get and post Blueprint
Change-Id: Ie99f2ae09e65754e5da5384501f4f8574399da42
Issue-ID: CCSDK-1068
Signed-off-by: Ezhilarasi <ezhrajam@in.ibm.com>
Diffstat (limited to 'cds-ui/server/src/datasources/blueprint.datasource.json')
-rw-r--r-- | cds-ui/server/src/datasources/blueprint.datasource.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cds-ui/server/src/datasources/blueprint.datasource.json b/cds-ui/server/src/datasources/blueprint.datasource.json new file mode 100644 index 000000000..86b1c2c15 --- /dev/null +++ b/cds-ui/server/src/datasources/blueprint.datasource.json @@ -0,0 +1,22 @@ +{ + "name": "blueprint", + "connector": "rest", + "baseURL": "http://localhost:8080/api/v1/", + "crud": false, + "operations": [{ + "template": { + "method": "GET", + "url": "http://localhost:8080/api/v1/blueprint-model/", + "headers": { + "accepts": "application/json", + "content-type": "application/json", + "authorization": "{authtoken}" + }, + "responsePath": "$.*" + }, + "functions": { + "getAllblueprints": ["authtoken"] + + } + }] +}
\ No newline at end of file |