-
Notifications
You must be signed in to change notification settings - Fork 676
Expand file tree
/
Copy pathtags.py
More file actions
39 lines (30 loc) · 1.08 KB
/
tags.py
File metadata and controls
39 lines (30 loc) · 1.08 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
from gitlab.base import RESTObject
from gitlab.mixins import NoUpdateMixin, ObjectDeleteMixin
from gitlab.types import RequiredOptional
__all__ = [
"ProjectTag",
"ProjectTagManager",
"ProjectProtectedTag",
"ProjectProtectedTagManager",
]
class ProjectTag(ObjectDeleteMixin, RESTObject):
_id_attr = "name"
_repr_attr = "name"
class ProjectTagManager(NoUpdateMixin[ProjectTag]):
_path = "/projects/{project_id}/repository/tags"
_obj_cls = ProjectTag
_from_parent_attrs = {"project_id": "id"}
_list_filters = ("order_by", "sort", "search")
_create_attrs = RequiredOptional(
required=("tag_name", "ref"), optional=("message",)
)
class ProjectProtectedTag(ObjectDeleteMixin, RESTObject):
_id_attr = "name"
_repr_attr = "name"
class ProjectProtectedTagManager(NoUpdateMixin[ProjectProtectedTag]):
_path = "/projects/{project_id}/protected_tags"
_obj_cls = ProjectProtectedTag
_from_parent_attrs = {"project_id": "id"}
_create_attrs = RequiredOptional(
required=("name",), optional=("create_access_level",)
)