Skip to content

Commit 87a2105

Browse files
feat: add get to saml group links
1 parent 0e173e4 commit 87a2105

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gitlab/v4/objects/groups.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,3 +480,8 @@ class GroupSAMLGroupLinkManager(NoUpdateMixin, RESTManager):
480480
_obj_cls: Type[GroupSAMLGroupLink] = GroupSAMLGroupLink
481481
_from_parent_attrs = {"group_id": "id"}
482482
_create_attrs = RequiredOptional(required=("saml_group_name", "access_level"))
483+
484+
def get(
485+
self, id: Union[str, int], lazy: bool = False, **kwargs: Any
486+
) -> GroupSAMLGroupLink:
487+
return cast(GroupSAMLGroupLink, super().get(id=id, lazy=lazy, **kwargs))

0 commit comments

Comments
 (0)