blob: db4af80117797256575ed5e8bcedb12448e9d724 [file] [log] [blame]
Suchitra.Vemurifdb220a2016-10-19 14:09:53 -07001#!/usr/bin/env python
Suchitra Vemuri5f157722017-05-19 16:08:13 -07002
Kailash Khalasiade57fa2017-06-05 14:26:40 -07003SERVER_IP = 'localhost'
Suchitra Vemuri91951612017-05-19 16:00:06 -07004SERVER_PORT = '8080'
Suchitra Vemurif7410a92017-05-16 17:04:05 -07005USER = 'xosadmin@opencord.org'
Suchitra Vemuri9acc8832017-05-30 15:39:39 -07006PASSWD = 'y7vibol8lK67TLXLVWN2'
Suchitra Vemurif7410a92017-05-16 17:04:05 -07007VOLT_SUBSCRIBER = '/xosapi/v1/rcord/cordsubscriberroots'
8VOLT_TENANT = '/xosapi/v1/volt/volttenants'
You Wang2e97a012016-10-21 16:09:52 -07009TENANT_SUBSCRIBER = '/api/tenant/cord/subscriber/'
Suchitra.Vemurid2035342016-11-22 17:44:40 -080010TENANT_VOLT = '/api/tenant/cord/volt/'
Suchitra.Vemuri32e03c22016-11-03 11:57:53 -070011UTILS_SYNCHRONIZER = '/api/utility/synchronizer/'
Suchitra.Vemuri8be18802016-11-16 16:59:54 -080012UTILS_LOGIN = '/api/utility/login/'
13CORE_USERS = '/api/core/users/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070014CH_CORE_USERS = '/xosapi/v1/core/users'
You Wang0869a322016-12-05 16:55:51 -080015CORE_SERVICES = '/api/core/services/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070016CH_CORE_SERVICES = '/xosapi/v1/core/services'
Suchitra.Vemuri0c8024a2016-12-07 16:31:21 -080017CORE_INSTANCES = '/api/core/instances/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070018CH_CORE_INSTANCES = '/xosapi/v1/core/instances'
You Wangf462ee92016-12-16 13:11:43 -080019CORE_DEPLOYMENTS = '/api/core/deployments/'
Suchitra Vemurid40db412017-05-19 15:45:09 -070020CH_CORE_DEPLOYMENTS = '/xosapi/v1/core/deployments'
Suchitra.Vemuri75dffd42016-12-20 15:35:25 -080021CORE_SANITY_INSTANCES = '/api/core/instances/?no_hyperlinks=1'
22CORE_SANITY_SLICES = '/api/core/slices/?no_hyperlinks=1'
23CORE_SLICES = '/api/core/slices/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070024CH_CORE_SLICES = '/xosapi/v1/core/slices'
You Wang6f0fd1f2016-12-21 14:55:56 -080025CORE_SANITY_NODES = '/api/core/nodes/?no_hyperlinks=1'
26CORE_NODES = '/api/core/nodes/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070027CH_CORE_NODES = '/xosapi/v1/core/nodes'
Suchitra.Vemuri65900f02016-12-22 15:26:10 -080028CORE_FLAVORS = '/api/core/flavors/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070029CH_CORE_FLAVORS = '/xosapi/v1/core/flavors'
You Wang65aa7ef2017-01-03 16:23:44 -080030CORE_SITES = '/api/core/sites/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070031CH_CORE_SITES = '/xosapi/v1/core/sites'
Suchitra.Vemurifc4a2082017-02-06 11:57:35 -080032CORE_IMAGES = '/api/core/images/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070033CH_CORE_IMAGES = '/xosapi/v1/core/images'
You Wang123d6942017-03-01 12:33:02 -080034CORE_SITEDEPLOYMENTS = '/api/core/sitedeployments'
Kailash Khalasi2adbad82017-05-15 14:53:40 -070035CH_CORE_NETWORKS = '/xosapi/v1/core/networks'
36CH_CORE_SLICES = '/xosapi/v1/core/slices'
37CH_CORE_NETWORK_SLICES = '/xosapi/v1/core/networkslices'
38CH_CORE_PORTS = '/xosapi/v1/core/ports'
39CH_CORE_SERVICES = '/xosapi/v1/core/services'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070040CH_CORE_SITEDEPLOYMENTS = '/xosapi/v1/core/sitedeployments'
Kailash Khalasi2adbad82017-05-15 14:53:40 -070041CH_CORE_NETWORK_TEMPLATES = '/xosapi/v1/core/networktemplates'
42VSG_TENANT = '/xosapi/v1/vsg/vsgtenants'