Skip to content

Commit be68738

Browse files
feat: add get to saml group links
1 parent f90ae7e commit be68738

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
@@ -420,3 +420,8 @@ class GroupSAMLGroupLinkManager(NoUpdateMixin, RESTManager):
420420
_obj_cls: Type[GroupSAMLGroupLink] = GroupSAMLGroupLink
421421
_from_parent_attrs = {"group_id": "id"}
422422
_create_attrs = RequiredOptional(required=("saml_group_name", "access_level"))
423+
424+
def get(
425+
self, id: Union[str, int], lazy: bool = False, **kwargs: Any
426+
) -> GroupSAMLGroupLink:
427+
return cast(GroupSAMLGroupLink, super().get(id=id, lazy=lazy, **kwargs))

0 commit comments

Comments
 (0)