blob: 072c1eca65c8004ca529b18c7a9832fc839fc0be [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 Vemurid4891862018-05-22 11:08:16 -070019SERVER_IP = ''
Suchitra Vemurib73ec6f2018-05-10 13:34:00 -070020SERVER_PORT = '30006'
21XOS_USER = 'admin@opencord.org'
Suchitra Vemurid4891862018-05-22 11:08:16 -070022XOS_PASSWD = ''
23VOLT_SUBSCRIBER = '/xosapi/v1/rcord/rcordsubscribers'
Matteo Scandolo246fae42018-03-01 17:47:53 -080024VOLT_TENANT = '/xosapi/v1/volt/voltserviceinstances'
Suchitra Vemuri7dbf03c2018-04-25 23:06:23 -070025VOLT_DEVICE = '/xosapi/v1/volt/oltdevices'
Suchitra Vemurid4891862018-05-22 11:08:16 -070026ONU_DEVICE = '/xosapi/v1/volt/onudevices'
Suchitra Vemuri7dbf03c2018-04-25 23:06:23 -070027VOLT_SERVICE = '/xosapi/v1/volt/voltservices'
28PON_PORT = '/xosapi/v1/volt/ponports'
Suchitra Vemuridaeb2472017-08-15 11:58:21 -070029CH_CORE_SERVICELINK = '/xosapi/v1/core/serviceinstancelinks'
You Wang2e97a012016-10-21 16:09:52 -070030TENANT_SUBSCRIBER = '/api/tenant/cord/subscriber/'
Suchitra.Vemurid2035342016-11-22 17:44:40 -080031TENANT_VOLT = '/api/tenant/cord/volt/'
Suchitra.Vemuri32e03c22016-11-03 11:57:53 -070032UTILS_SYNCHRONIZER = '/api/utility/synchronizer/'
Suchitra.Vemuri8be18802016-11-16 16:59:54 -080033UTILS_LOGIN = '/api/utility/login/'
34CORE_USERS = '/api/core/users/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070035CH_CORE_USERS = '/xosapi/v1/core/users'
You Wang0869a322016-12-05 16:55:51 -080036CORE_SERVICES = '/api/core/services/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070037CH_CORE_SERVICES = '/xosapi/v1/core/services'
Suchitra.Vemuri0c8024a2016-12-07 16:31:21 -080038CORE_INSTANCES = '/api/core/instances/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070039CH_CORE_INSTANCES = '/xosapi/v1/core/instances'
You Wangf462ee92016-12-16 13:11:43 -080040CORE_DEPLOYMENTS = '/api/core/deployments/'
Suchitra Vemurid40db412017-05-19 15:45:09 -070041CH_CORE_DEPLOYMENTS = '/xosapi/v1/core/deployments'
Suchitra.Vemuri75dffd42016-12-20 15:35:25 -080042CORE_SANITY_INSTANCES = '/api/core/instances/?no_hyperlinks=1'
43CORE_SANITY_SLICES = '/api/core/slices/?no_hyperlinks=1'
44CORE_SLICES = '/api/core/slices/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070045CH_CORE_SLICES = '/xosapi/v1/core/slices'
You Wang6f0fd1f2016-12-21 14:55:56 -080046CORE_SANITY_NODES = '/api/core/nodes/?no_hyperlinks=1'
47CORE_NODES = '/api/core/nodes/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070048CH_CORE_NODES = '/xosapi/v1/core/nodes'
Suchitra.Vemuri65900f02016-12-22 15:26:10 -080049CORE_FLAVORS = '/api/core/flavors/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070050CH_CORE_FLAVORS = '/xosapi/v1/core/flavors'
You Wang65aa7ef2017-01-03 16:23:44 -080051CORE_SITES = '/api/core/sites/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070052CH_CORE_SITES = '/xosapi/v1/core/sites'
Suchitra.Vemurifc4a2082017-02-06 11:57:35 -080053CORE_IMAGES = '/api/core/images/'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070054CH_CORE_IMAGES = '/xosapi/v1/core/images'
You Wang123d6942017-03-01 12:33:02 -080055CORE_SITEDEPLOYMENTS = '/api/core/sitedeployments'
Kailash Khalasi2adbad82017-05-15 14:53:40 -070056CH_CORE_NETWORKS = '/xosapi/v1/core/networks'
57CH_CORE_SLICES = '/xosapi/v1/core/slices'
58CH_CORE_NETWORK_SLICES = '/xosapi/v1/core/networkslices'
59CH_CORE_PORTS = '/xosapi/v1/core/ports'
60CH_CORE_SERVICES = '/xosapi/v1/core/services'
Suchitra Vemurif7410a92017-05-16 17:04:05 -070061CH_CORE_SITEDEPLOYMENTS = '/xosapi/v1/core/sitedeployments'
Kailash Khalasi2adbad82017-05-15 14:53:40 -070062CH_CORE_NETWORK_TEMPLATES = '/xosapi/v1/core/networktemplates'
Suchitra Vemurifbe6edc2018-01-05 12:50:57 -080063VSG_TENANT = '/xosapi/v1/vsg/vsgserviceinstances'
Suchitra Vemurib73ec6f2018-05-10 13:34:00 -070064HWVSG_TENANT = '/xosapi/v1/vsg-hw/vsghwserviceinstances'
Suchitra Vemuricc9c0f32018-06-15 17:13:29 -070065FABRIC_SWITCH = '/xosapi/v1/fabric/switches'
66SWITCH_PORT = '/xosapi/v1/fabric/switchports'
67PORT_INTERFACE = '/xosapi/v1/fabric/portinterfaces'
Suchitra Vemuri5ef5ae62018-07-18 18:16:42 -070068OSS_SERVICE = '/xosapi/v1/hippie-oss/hippieossservices'
Suchitra Vemuri65556762018-08-22 13:52:38 -070069OSS_SERVICEINSTANCE = '/xosapi/v1/hippie-oss/hippieossserviceinstances'
Suchitra Vemuri5ef5ae62018-07-18 18:16:42 -070070OSS_VOLT = '/xosapi/v1/core/servicedependencys'
Suchitra Vemuri65556762018-08-22 13:52:38 -070071BNG_MAP = '/xosapi/v1/fabric-crossconnect/bngportmappings'
72ATT_SERVICE = '/xosapi/v1/att-workflow-driver/attworkflowdriverservices'
73ATT_WHITELIST = '/xosapi/v1/att-workflow-driver/attworkflowdriverwhitelistentries'