week06
This commit is contained in:
45
env/lib/python3.12/site-packages/gitlab/v4/objects/resource_groups.py
vendored
Normal file
45
env/lib/python3.12/site-packages/gitlab/v4/objects/resource_groups.py
vendored
Normal file
@ -0,0 +1,45 @@
|
||||
from typing import Any, cast, Union
|
||||
|
||||
from gitlab.base import RESTManager, RESTObject
|
||||
from gitlab.mixins import ListMixin, RetrieveMixin, SaveMixin, UpdateMixin
|
||||
from gitlab.types import RequiredOptional
|
||||
|
||||
__all__ = [
|
||||
"ProjectResourceGroup",
|
||||
"ProjectResourceGroupManager",
|
||||
"ProjectResourceGroupUpcomingJob",
|
||||
"ProjectResourceGroupUpcomingJobManager",
|
||||
]
|
||||
|
||||
|
||||
class ProjectResourceGroup(SaveMixin, RESTObject):
|
||||
_id_attr = "key"
|
||||
|
||||
upcoming_jobs: "ProjectResourceGroupUpcomingJobManager"
|
||||
|
||||
|
||||
class ProjectResourceGroupManager(RetrieveMixin, UpdateMixin, RESTManager):
|
||||
_path = "/projects/{project_id}/resource_groups"
|
||||
_obj_cls = ProjectResourceGroup
|
||||
_from_parent_attrs = {"project_id": "id"}
|
||||
_list_filters = (
|
||||
"order_by",
|
||||
"sort",
|
||||
"include_html_description",
|
||||
)
|
||||
_update_attrs = RequiredOptional(optional=("process_mode",))
|
||||
|
||||
def get(
|
||||
self, id: Union[str, int], lazy: bool = False, **kwargs: Any
|
||||
) -> ProjectResourceGroup:
|
||||
return cast(ProjectResourceGroup, super().get(id=id, lazy=lazy, **kwargs))
|
||||
|
||||
|
||||
class ProjectResourceGroupUpcomingJob(RESTObject):
|
||||
pass
|
||||
|
||||
|
||||
class ProjectResourceGroupUpcomingJobManager(ListMixin, RESTManager):
|
||||
_path = "/projects/{project_id}/resource_groups/{resource_group_key}/upcoming_jobs"
|
||||
_obj_cls = ProjectResourceGroupUpcomingJob
|
||||
_from_parent_attrs = {"project_id": "project_id", "resource_group_key": "key"}
|
Reference in New Issue
Block a user