src/onapsdk/sdc/vl.py
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# SPDX-License-Identifier: Apache-2.0
"""Vl module."""
from typing import Dict
from onapsdk.exceptions import ResourceNotFound
from .sdc_resource import SdcResource
class Vl(SdcResource):
"""ONAP Vl Object used for SDC operations."""
def __init__(self, name: str, version: str = None, sdc_values: Dict[str, str] = None):
"""Initialize Vl object.
Vl has to exists in SDC.
Args:
name (str): Vl name
version (str): Vl version
sdc_values (Dict[str, str], optional): Sdc values of existing Vl. Defaults to None.
Raises:
ResourceNotFound: Vl doesn't exist in SDC
"""
super().__init__(name=name, version=version, sdc_values=sdc_values)
if not sdc_values and not self.exists():
raise ResourceNotFound(
"This Vl has to exist prior to object initialization.")
def _really_submit(self) -> None:
"""Really submit the SDC in order to enable it."""
raise NotImplementedError("Vl don't need _really_submit")