blob: f5084d4b0391dc06b477b36930ddeca93bfb4f0d [file] [log] [blame]
Andy Bavier4a79ec82018-04-03 09:37:01 -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
17#!/usr/bin/env python
18
19SERVER_IP = 'xos-chameleon'
20SERVER_PORT = '9101'
21USER = 'admin@opencord.org'
22PASSWD = 'letmein'
23VOLT_SUBSCRIBER = '/xosapi/v1/rcord/cordsubscriberroots'
24VOLT_TENANT = '/xosapi/v1/volt/voltserviceinstances'
25CH_CORE_SERVICELINK = '/xosapi/v1/core/serviceinstancelinks'
26TENANT_SUBSCRIBER = '/api/tenant/cord/subscriber/'
27TENANT_VOLT = '/api/tenant/cord/volt/'
28UTILS_SYNCHRONIZER = '/api/utility/synchronizer/'
29UTILS_LOGIN = '/api/utility/login/'
30CORE_USERS = '/api/core/users/'
31CH_CORE_USERS = '/xosapi/v1/core/users'
32CORE_SERVICES = '/api/core/services/'
33CH_CORE_SERVICES = '/xosapi/v1/core/services'
34CORE_INSTANCES = '/api/core/instances/'
35CH_CORE_INSTANCES = '/xosapi/v1/core/instances'
36CORE_DEPLOYMENTS = '/api/core/deployments/'
37CH_CORE_DEPLOYMENTS = '/xosapi/v1/core/deployments'
38CORE_SANITY_INSTANCES = '/api/core/instances/?no_hyperlinks=1'
39CORE_SANITY_SLICES = '/api/core/slices/?no_hyperlinks=1'
40CORE_SLICES = '/api/core/slices/'
41CH_CORE_SLICES = '/xosapi/v1/core/slices'
42CORE_SANITY_NODES = '/api/core/nodes/?no_hyperlinks=1'
43CORE_NODES = '/api/core/nodes/'
44CH_CORE_NODES = '/xosapi/v1/core/nodes'
45CORE_FLAVORS = '/api/core/flavors/'
46CH_CORE_FLAVORS = '/xosapi/v1/core/flavors'
47CORE_SITES = '/api/core/sites/'
48CH_CORE_SITES = '/xosapi/v1/core/sites'
49CORE_IMAGES = '/api/core/images/'
50CH_CORE_IMAGES = '/xosapi/v1/core/images'
51CORE_SITEDEPLOYMENTS = '/api/core/sitedeployments'
52CH_CORE_NETWORKS = '/xosapi/v1/core/networks'
53CH_CORE_SLICES = '/xosapi/v1/core/slices'
54CH_CORE_NETWORK_SLICES = '/xosapi/v1/core/networkslices'
55CH_CORE_PORTS = '/xosapi/v1/core/ports'
56CH_CORE_SERVICES = '/xosapi/v1/core/services'
57CH_CORE_SITEDEPLOYMENTS = '/xosapi/v1/core/sitedeployments'
58CH_CORE_NETWORK_TEMPLATES = '/xosapi/v1/core/networktemplates'
59VSG_TENANT = '/xosapi/v1/vsg/vsgserviceinstances'
60VSGHW_TENANT = '/xosapi/v1/vsg-hw/vsghwserviceinstances'