pyoaev.apis.cve =============== .. py:module:: pyoaev.apis.cve Module Contents --------------- .. py:class:: Cve(manager: RESTManager, attrs: Dict[str, Any], *, created_from_list: bool = False) Bases: :py:obj:`pyoaev.base.RESTObject` .. py:attribute:: _id_attr :value: 'cve_id' .. py:class:: CveManager(openaev: pyoaev.client.OpenAEV, parent: Optional[RESTObject] = None) Bases: :py:obj:`pyoaev.base.RESTManager` Base class for CRUD operations on objects. Derived class must define ``_path`` and ``_obj_cls``. ``_path``: Base URL path on which requests will be sent (e.g. '/projects') ``_obj_cls``: The class of objects that will be created .. py:attribute:: _path :value: '/cves' .. py:method:: upsert(data: Dict[str, Any], **kwargs: Any) -> Dict[str, Any]