summaryrefslogtreecommitdiff
path: root/gitlab/v4/objects/runners.py
diff options
context:
space:
mode:
Diffstat (limited to 'gitlab/v4/objects/runners.py')
-rw-r--r--gitlab/v4/objects/runners.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/gitlab/v4/objects/runners.py b/gitlab/v4/objects/runners.py
index ec8153f..fac9100 100644
--- a/gitlab/v4/objects/runners.py
+++ b/gitlab/v4/objects/runners.py
@@ -1,3 +1,5 @@
+from typing import Any, cast, List, Optional, Union
+
from gitlab import cli
from gitlab import exceptions as exc
from gitlab import types
@@ -70,7 +72,7 @@ class RunnerManager(CRUDMixin, RESTManager):
@cli.register_custom_action("RunnerManager", tuple(), ("scope",))
@exc.on_http_error(exc.GitlabListError)
- def all(self, scope=None, **kwargs):
+ def all(self, scope: Optional[str] = None, **kwargs: Any) -> List[Runner]:
"""List all the runners.
Args:
@@ -99,7 +101,7 @@ class RunnerManager(CRUDMixin, RESTManager):
@cli.register_custom_action("RunnerManager", ("token",))
@exc.on_http_error(exc.GitlabVerifyError)
- def verify(self, token, **kwargs):
+ def verify(self, token: str, **kwargs: Any) -> None:
"""Validates authentication credentials for a registered Runner.
Args:
@@ -114,6 +116,9 @@ class RunnerManager(CRUDMixin, RESTManager):
post_data = {"token": token}
self.gitlab.http_post(path, post_data=post_data, **kwargs)
+ def get(self, id: Union[str, int], lazy: bool = False, **kwargs: Any) -> Runner:
+ return cast(Runner, super().get(id=id, lazy=lazy, **kwargs))
+
class GroupRunner(RESTObject):
pass