cc7f875bce3fe75536096b434630d362ddd2c8f0
[cli.git] /
1 open_cli_schema_version: 1.0
2 name: microservice-delete
3 description: Deletes the micro service from Onap
4
5 info:
6   product: onap-amsterdam
7   service: msb
8   author: ONAP CLI Team onap-discuss@lists.onap.org
9
10 parameters:
11   - name: service-name
12     description: Onap service name
13     type: string
14     short_option: x
15     long_option: service-name
16     is_optional: false
17   - name: service-version
18     description: Onap service version
19     type: string
20     short_option: y
21     long_option: service-version
22     is_optional: false
23   - name: node-ip
24     description: Onap service running node IP
25     type: string
26     short_option: i
27     long_option: node-ip
28     is_optional: false
29   - name: node-port
30     description: Onap service running node port
31     type: string
32     short_option: r
33     long_option: node-port
34     is_optional: false
35 http:
36   service:
37     auth: none
38     mode: direct
39   request:
40     uri: /services/${service-name}/version/${service-version}/nodes/${node-ip}/${node-port}
41     method: DELETE
42   success_codes:
43     - 201
44     - 200
45     - 204
46     - 500
47
48
49