Uses of Class
org.gitlab4j.api.models.ProtectedTag
| Package | Description |
|---|---|
| org.gitlab4j.api |
-
Uses of ProtectedTag in org.gitlab4j.api
Methods in org.gitlab4j.api that return ProtectedTag Modifier and Type Method Description ProtectedTagTagsApi. getProtectedTag(Object projectIdOrPath, String name)Gets a single protected tag or wildcard protected tagProtectedTagTagsApi. protectTag(Object projectIdOrPath, String name, AccessLevel createAccessLevel)Protects a single repository tag or several project repository tags using a wildcard protected tag.Methods in org.gitlab4j.api that return types with arguments of type ProtectedTag Modifier and Type Method Description Optional<ProtectedTag>TagsApi. getOptionalProtectedTag(Object projectIdOrPath, String name)Get an Optional instance holding a protected tag or wildcard protected tag.List<ProtectedTag>TagsApi. getProtectedTags(Object projectIdOrPath)Gets a list of protected tags from a project.Pager<ProtectedTag>TagsApi. getProtectedTags(Object projectIdOrPath, int itemsPerPage)Get a Pager of protected tags for a project.List<ProtectedTag>TagsApi. getProtectedTags(Object projectIdOrPath, int page, int perPage)Gets a list of protected tags from a project and in the specified page range.Stream<ProtectedTag>TagsApi. getProtectedTagsStream(Object projectIdOrPath)Get a Stream of protected tags for a project.