-
Notifications
You must be signed in to change notification settings - Fork 675
Expand file tree
/
Copy pathtags.py
More file actions
47 lines (35 loc) · 1.41 KB
/
tags.py
File metadata and controls
47 lines (35 loc) · 1.41 KB
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
from typing import Any, cast, Union
from gitlab.base import RequiredOptional, RESTManager, RESTObject
from gitlab.mixins import NoUpdateMixin, ObjectDeleteMixin
__all__ = [
"ProjectTag",
"ProjectTagManager",
"ProjectProtectedTag",
"ProjectProtectedTagManager",
]
class ProjectTag(ObjectDeleteMixin, RESTObject):
_id_attr = "name"
_short_print_attr = "name"
class ProjectTagManager(NoUpdateMixin, RESTManager):
_path = "/projects/{project_id}/repository/tags"
_obj_cls = ProjectTag
_from_parent_attrs = {"project_id": "id"}
_create_attrs = RequiredOptional(
required=("tag_name", "ref"), optional=("message",)
)
def get(self, id: Union[str, int], lazy: bool = False, **kwargs: Any) -> ProjectTag:
return cast(ProjectTag, super().get(id=id, lazy=lazy, **kwargs))
class ProjectProtectedTag(ObjectDeleteMixin, RESTObject):
_id_attr = "name"
_short_print_attr = "name"
class ProjectProtectedTagManager(NoUpdateMixin, RESTManager):
_path = "/projects/{project_id}/protected_tags"
_obj_cls = ProjectProtectedTag
_from_parent_attrs = {"project_id": "id"}
_create_attrs = RequiredOptional(
required=("name",), optional=("create_access_level",)
)
def get(
self, id: Union[str, int], lazy: bool = False, **kwargs: Any
) -> ProjectProtectedTag:
return cast(ProjectProtectedTag, super().get(id=id, lazy=lazy, **kwargs))