vFW CNF CDS usecase automation scripts update
[demo.git] / heat / vFW_CNF_CDS / automation / onap_settings.py
1 # ============LICENSE_START=======================================================
2 # Copyright (C) 2021 Orange
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 # ============LICENSE_END=========================================================
17
18 """Global settings module."""  # pylint: disable=bad-whitespace
19 # uncomment if socks is used
20 #from onapsdk.onap_service import OnapService
21
22 ######################
23 #                    #
24 # ONAP SERVICES URLS #
25 #                    #
26 ######################
27
28 AAI_URL     = "https://aai.api.sparky.simpledemo.onap.org:30233"
29 AAI_API_VERSION = "v20"
30 CDS_URL     = "http://portal.api.simpledemo.onap.org:30449"
31 MSB_URL     = "https://msb.api.simpledemo.onap.org:30283"
32 SDC_BE_URL  = "https://sdc.api.be.simpledemo.onap.org:30204"
33 SDC_FE_URL  = "https://sdc.api.fe.simpledemo.onap.org:30207"
34 SDNC_URL    = "https://sdnc.api.simpledemo.onap.org:30267"
35 SO_URL      = "http://so.api.simpledemo.onap.org:30277"
36 SO_API_VERSION = "v7"
37 VID_URL     = "https://vid.api.simpledemo.onap.org:30200"
38 VID_API_VERSION = "/vid"
39 CLAMP_URL   = "https://clamp.api.simpledemo.onap.org:30258"
40 VES_URL = "https://ves.api.simpledemo.onap.org:30417"
41 DMAAP_URL = "http://dmaap.api.simpledemo.onap.org:3904"
42
43 # uncomment if socks is used
44 #OnapService.set_proxy({'http': 'socks5h://127.0.0.1:8081', 'https': 'socks5h://127.0.0.1:8081'})
45
46 # execute in the shell to apply these settings
47 # export ONAP_PYTHON_SDK_SETTINGS="onap_settings"