Modify test scripts of F version and add instructions about it
[vfc/nfvo/lcm.git] / resources / testscripts / F-version / ns_instance / get_one.py
1 import requests
2 import sys
3
4 from testscripts.const import MSB_BASE_URL
5
6 id = sys.argv[1]
7 requests.packages.urllib3.disable_warnings()
8 resp = requests.get(MSB_BASE_URL + '/api/nslcm/v1/ns/' + id, verify=False)
9 print(resp.status_code, resp.json())