aboutsummaryrefslogtreecommitdiffstats
path: root/src/onapsdk/so/catalog_cb_adapter.py
blob: f8c54e0f39254407716399b0ee6a0be4ba845b29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#   Copyright 2023 Deutsche Telekom AG
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.
"""SO ecomp module."""
from abc import ABC
from typing import Any, Dict

from onapsdk.configuration import settings
from onapsdk.onap_service import OnapService
from onapsdk.so.so_element import SoElement
from onapsdk.utils.headers_creator import headers_so_catelog_db_creator


class CatalogDbAdapter(SoElement, ABC):
    """SO catalog db adapter service class."""

    base_url = settings.SO_CATALOG_DB_ADAPTER_URL
    headers = headers_so_catelog_db_creator(OnapService.headers)

    @classmethod
    def get_service_info(cls, service_model_uuid: str) -> Dict[Any, Any]:
        """Get Service VNF and VF details.

        Returns:
            The response in a dict format

        """
        url = (f"{cls.base_url}/ecomp/mso/catalog/v2/serviceResources?"
               f"serviceModelUuid={service_model_uuid}")
        return cls.send_message_json("GET", "Get Service Details", url, headers=cls.headers)

    @classmethod
    def get_service_vnf_info(cls, service_model_uuid: str) -> Dict[Any, Any]:
        """Get Service VNF and VF details.

        Returns:
            The response in a dict format

        """
        url = (f"{cls.base_url}/ecomp/mso/catalog/v2/serviceVnfs?"
               f"serviceModelUuid={service_model_uuid}")
        return cls.send_message_json("GET", "Get Service Details", url, headers=cls.headers)