update link to upper-constraints.txt
[vfc/nfvo/lcm.git] / resources / testscripts / F-version / ns_instance / del.py
1 import requests
2 import sys
3
4 from testscripts.const import MSB_BASE_URL
5
6 requests.packages.urllib3.disable_warnings()
7 id = sys.argv[1]
8 resp = requests.delete(MSB_BASE_URL + '/api/nslcm/v1/ns/' + id, verify=False)
9 print(resp.status_code)