blob: 032bf6b17c684981ed0e09437386e2687fbe0227 [file] [log] [blame]
Suchitra.Vemurifdb220a2016-10-19 14:09:53 -07001#!/usr/bin/env python
Suchitra Vemuri0265fae2017-05-19 15:45:09 -07002SERVER_IP = '10.128.15.11'
3SERVER_PORT = '9101'
Suchitra Vemuri09f64472017-05-16 17:04:05 -07004USER = 'xosadmin@opencord.org'
Suchitra Vemuri0265fae2017-05-19 15:45:09 -07005PASSWD = 'SV3577fIRsdSMUgxpemM'
Suchitra Vemuri09f64472017-05-16 17:04:05 -07006VOLT_SUBSCRIBER = '/xosapi/v1/rcord/cordsubscriberroots'
7VOLT_TENANT = '/xosapi/v1/volt/volttenants'
You Wang2e97a012016-10-21 16:09:52 -07008TENANT_SUBSCRIBER = '/api/tenant/cord/subscriber/'
Suchitra.Vemurid2035342016-11-22 17:44:40 -08009TENANT_VOLT = '/api/tenant/cord/volt/'
Suchitra.Vemuri32e03c22016-11-03 11:57:53 -070010UTILS_SYNCHRONIZER = '/api/utility/synchronizer/'
Suchitra.Vemuri8be18802016-11-16 16:59:54 -080011UTILS_LOGIN = '/api/utility/login/'
12CORE_USERS = '/api/core/users/'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070013CH_CORE_USERS = '/xosapi/v1/core/users'
You Wang0869a322016-12-05 16:55:51 -080014CORE_SERVICES = '/api/core/services/'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070015CH_CORE_SERVICES = '/xosapi/v1/core/services'
Suchitra.Vemuri0c8024a2016-12-07 16:31:21 -080016CORE_INSTANCES = '/api/core/instances/'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070017CH_CORE_INSTANCES = '/xosapi/v1/core/instances'
You Wangf462ee92016-12-16 13:11:43 -080018CORE_DEPLOYMENTS = '/api/core/deployments/'
Suchitra Vemuri0265fae2017-05-19 15:45:09 -070019CH_CORE_DEPLOYMENTS = '/xosapi/v1/core/deployments'
Suchitra.Vemuri75dffd42016-12-20 15:35:25 -080020CORE_SANITY_INSTANCES = '/api/core/instances/?no_hyperlinks=1'
21CORE_SANITY_SLICES = '/api/core/slices/?no_hyperlinks=1'
22CORE_SLICES = '/api/core/slices/'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070023CH_CORE_SLICES = '/xosapi/v1/core/slices'
You Wang6f0fd1f2016-12-21 14:55:56 -080024CORE_SANITY_NODES = '/api/core/nodes/?no_hyperlinks=1'
25CORE_NODES = '/api/core/nodes/'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070026CH_CORE_NODES = '/xosapi/v1/core/nodes'
Suchitra.Vemuri65900f02016-12-22 15:26:10 -080027CORE_FLAVORS = '/api/core/flavors/'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070028CH_CORE_FLAVORS = '/xosapi/v1/core/flavors'
You Wang65aa7ef2017-01-03 16:23:44 -080029CORE_SITES = '/api/core/sites/'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070030CH_CORE_SITES = '/xosapi/v1/core/sites'
Suchitra.Vemurifc4a2082017-02-06 11:57:35 -080031CORE_IMAGES = '/api/core/images/'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070032CH_CORE_IMAGES = '/xosapi/v1/core/images'
You Wang123d6942017-03-01 12:33:02 -080033CORE_SITEDEPLOYMENTS = '/api/core/sitedeployments'
Kailash Khalasi643aea32017-05-15 14:53:40 -070034CH_CORE_NETWORKS = '/xosapi/v1/core/networks'
35CH_CORE_SLICES = '/xosapi/v1/core/slices'
36CH_CORE_NETWORK_SLICES = '/xosapi/v1/core/networkslices'
37CH_CORE_PORTS = '/xosapi/v1/core/ports'
38CH_CORE_SERVICES = '/xosapi/v1/core/services'
Suchitra Vemuri09f64472017-05-16 17:04:05 -070039CH_CORE_SITEDEPLOYMENTS = '/xosapi/v1/core/sitedeployments'
Kailash Khalasi643aea32017-05-15 14:53:40 -070040CH_CORE_NETWORK_TEMPLATES = '/xosapi/v1/core/networktemplates'
41VSG_TENANT = '/xosapi/v1/vsg/vsgtenants'