blob: d252ea26d3db542bd5af02b81bcec07193278f85 [file] [log] [blame]
Matteo Scandolo48d3d2d2017-08-08 13:05:27 -07001
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16
Suchitra.Vemurifdb220a2016-10-19 14:09:53 -070017#!/usr/bin/env python
Suchitra Vemuri5f157722017-05-19 16:08:13 -070018
Suchitra Vemuridaeb2472017-08-15 11:58:21 -070019SERVER_IP = 'ms0925.utah.cloudlab.us'
20#SERVER_IP = '10.201.101.11'
21#SERVER_PORT = '9101'
Suchitra Vemuri91951612017-05-19 16:00:06 -070022SERVER_PORT = '8080'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070023USER = 'xosadmin@opencord.org'
Suchitra Vemuridaeb2472017-08-15 11:58:21 -070024PASSWD = 'wfjaPUOSD0nZiWe3LN8M'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070025VOLT_SUBSCRIBER = '/xosapi/v1/rcord/cordsubscriberroots'
26VOLT_TENANT = '/xosapi/v1/volt/volttenants'
Suchitra Vemuridaeb2472017-08-15 11:58:21 -070027CH_CORE_SERVICELINK = '/xosapi/v1/core/serviceinstancelinks'
You Wang2e97a012016-10-21 16:09:52 -070028TENANT_SUBSCRIBER = '/api/tenant/cord/subscriber/'
Suchitra.Vemurid2035342016-11-22 17:44:40 -080029TENANT_VOLT = '/api/tenant/cord/volt/'
Suchitra.Vemuri32e03c22016-11-03 11:57:53 -070030UTILS_SYNCHRONIZER = '/api/utility/synchronizer/'
Suchitra.Vemuri8be18802016-11-16 16:59:54 -080031UTILS_LOGIN = '/api/utility/login/'
32CORE_USERS = '/api/core/users/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070033CH_CORE_USERS = '/xosapi/v1/core/users'
You Wang0869a322016-12-05 16:55:51 -080034CORE_SERVICES = '/api/core/services/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070035CH_CORE_SERVICES = '/xosapi/v1/core/services'
Suchitra.Vemuri0c8024a2016-12-07 16:31:21 -080036CORE_INSTANCES = '/api/core/instances/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070037CH_CORE_INSTANCES = '/xosapi/v1/core/instances'
You Wangf462ee92016-12-16 13:11:43 -080038CORE_DEPLOYMENTS = '/api/core/deployments/'
Suchitra Vemurid40db412017-05-19 15:45:09 -070039CH_CORE_DEPLOYMENTS = '/xosapi/v1/core/deployments'
Suchitra.Vemuri75dffd42016-12-20 15:35:25 -080040CORE_SANITY_INSTANCES = '/api/core/instances/?no_hyperlinks=1'
41CORE_SANITY_SLICES = '/api/core/slices/?no_hyperlinks=1'
42CORE_SLICES = '/api/core/slices/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070043CH_CORE_SLICES = '/xosapi/v1/core/slices'
You Wang6f0fd1f2016-12-21 14:55:56 -080044CORE_SANITY_NODES = '/api/core/nodes/?no_hyperlinks=1'
45CORE_NODES = '/api/core/nodes/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070046CH_CORE_NODES = '/xosapi/v1/core/nodes'
Suchitra.Vemuri65900f02016-12-22 15:26:10 -080047CORE_FLAVORS = '/api/core/flavors/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070048CH_CORE_FLAVORS = '/xosapi/v1/core/flavors'
You Wang65aa7ef2017-01-03 16:23:44 -080049CORE_SITES = '/api/core/sites/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070050CH_CORE_SITES = '/xosapi/v1/core/sites'
Suchitra.Vemurifc4a2082017-02-06 11:57:35 -080051CORE_IMAGES = '/api/core/images/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070052CH_CORE_IMAGES = '/xosapi/v1/core/images'
You Wang123d6942017-03-01 12:33:02 -080053CORE_SITEDEPLOYMENTS = '/api/core/sitedeployments'
Kailash Khalasi2adbad82017-05-15 14:53:40 -070054CH_CORE_NETWORKS = '/xosapi/v1/core/networks'
55CH_CORE_SLICES = '/xosapi/v1/core/slices'
56CH_CORE_NETWORK_SLICES = '/xosapi/v1/core/networkslices'
57CH_CORE_PORTS = '/xosapi/v1/core/ports'
58CH_CORE_SERVICES = '/xosapi/v1/core/services'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070059CH_CORE_SITEDEPLOYMENTS = '/xosapi/v1/core/sitedeployments'
Kailash Khalasi2adbad82017-05-15 14:53:40 -070060CH_CORE_NETWORK_TEMPLATES = '/xosapi/v1/core/networktemplates'
61VSG_TENANT = '/xosapi/v1/vsg/vsgtenants'