diff options
author | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-27 10:58:53 +0530 |
---|---|---|
committer | Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com> | 2017-10-27 11:16:39 +0530 |
commit | 9e1077bc1cd11ef8bb38a33b3db36003ebef1a03 (patch) | |
tree | d404766fe3a6b3623d0a6c630a188f85e6720ec0 /plugins/msb/src/test/resources/onap-cli-sample/microservice-create-schema-moco.json | |
parent | 154c21167c5edbe0f0c0143113577a2fb93f2ec2 (diff) |
Add sample for microservice-create
CLI-57
Change-Id: I755eb53f68680ccc0aaa0b2952a7202ee817d522
Signed-off-by: Kanagaraj Manickam k00365106 <kanagaraj.manickam@huawei.com>
Diffstat (limited to 'plugins/msb/src/test/resources/onap-cli-sample/microservice-create-schema-moco.json')
-rw-r--r-- | plugins/msb/src/test/resources/onap-cli-sample/microservice-create-schema-moco.json | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/plugins/msb/src/test/resources/onap-cli-sample/microservice-create-schema-moco.json b/plugins/msb/src/test/resources/onap-cli-sample/microservice-create-schema-moco.json new file mode 100644 index 00000000..d2b703d0 --- /dev/null +++ b/plugins/msb/src/test/resources/onap-cli-sample/microservice-create-schema-moco.json @@ -0,0 +1,55 @@ +[ { + "request" : { + "method" : "post", + "uri" : "/api/microservices/v1/services", + "headers" : { + "Accept" : "application/json", + "Content-Type" : "application/json" + }, + "json" : { + "serviceName" : "test", + "version" : "v1", + "path" : "/test", + "url" : "/test", + "protocol" : "REST", + "enable_ssl" : "", + "visualRange" : "1", + "lb_policy" : "ip_hash", + "nodes" : [ { + "ip" : "10.0.0.1", + "port" : "8080", + "ttl" : 0 + } ] + } + }, + "response" : { + "status" : 201, + "json" : { + "serviceName" : "test", + "version" : "v1", + "url" : "/test", + "protocol" : "REST", + "visualRange" : "1", + "lb_policy" : "ip_hash", + "publish_port" : "", + "namespace" : "", + "network_plane_type" : "", + "host" : "", + "path" : "/test", + "enable_ssl" : false, + "nodes" : [ { + "ip" : "10.0.0.1", + "port" : "8080", + "checkType" : "", + "checkUrl" : "", + "ha_role" : "", + "nodeId" : "_test_10.0.0.1_8080", + "status" : "passing" + } ], + "metadata" : [ ], + "labels" : [ ], + "status" : "1", + "is_manual" : false + } + } +} ]
\ No newline at end of file |