Packages

class ZSttpGitlabAPI extends GitlabRestAPIV2[UIO] with LazyLogging

Linear Supertypes
GitlabRestAPIV2[UIO], CommitsAPIV2[UIO], ProjectsAPIV2[UIO], PipelinesAPIV2[UIO], JobsAPIV2[UIO], DeploymentsAPIV2[UIO], EventsAPIV2[UIO], MergeRequestsAPIV2[UIO], TagsAPIV2[UIO], EmojiAwardsAPIV2[UIO], Gitlab4SMarshalling, LazyLogging, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ZSttpGitlabAPI
  2. GitlabRestAPIV2
  3. CommitsAPIV2
  4. ProjectsAPIV2
  5. PipelinesAPIV2
  6. JobsAPIV2
  7. DeploymentsAPIV2
  8. EventsAPIV2
  9. MergeRequestsAPIV2
  10. TagsAPIV2
  11. EmojiAwardsAPIV2
  12. Gitlab4SMarshalling
  13. LazyLogging
  14. AnyRef
  15. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ZSttpGitlabAPI(config: GitlabConfig, apiConfig: GitlabRestAPIConfig, backend: Task[SttpBackend[Task, Any]])

Type Members

  1. implicit class unmarshallEitherGitlabT[F[_]] extends AnyRef
    Definition Classes
    Gitlab4SMarshalling
  2. implicit class unmarshallEitherT[F[_]] extends AnyRef
    Definition Classes
    Gitlab4SMarshalling
  3. implicit class unmarshallF[F[_]] extends AnyRef
    Definition Classes
    Gitlab4SMarshalling
  4. implicit class unmarshallFF[F[_]] extends AnyRef
    Definition Classes
    Gitlab4SMarshalling

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val API: String
    Definition Classes
    GitlabRestAPIV2
  5. val AuthHeaderName: String
    Definition Classes
    GitlabRestAPIV2
  6. def approveMergeRequest(mergeRequest: MergeRequestID, headSha: Option[String]): UIO[Either[GitlabError, MergeRequestApprovals]]
    Definition Classes
    MergeRequestsAPIV2
  7. def approveMergeRequest(projectId: EntityId, mergeRequestIId: BigInt, headSha: Option[String]): UIO[Either[GitlabError, MergeRequestApprovals]]
    Definition Classes
    MergeRequestsAPIV2
  8. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  9. def authHeader(req: GitlabRequest): String
    Definition Classes
    GitlabRestAPIV2
  10. def awardEmoji(mergeRequest: MergeRequestInfo, emojiName: String): UIO[Either[GitlabError, EmojiAward]]
    Definition Classes
    EmojiAwardsAPIV2
  11. def awardEmoji(projectID: EntityId, scope: AwardableScope, awardableId: BigInt, emojiName: String): UIO[Either[GitlabError, EmojiAward]]
    Definition Classes
    EmojiAwardsAPIV2
  12. def awardMergeRequestEmoji(projectID: EntityId, mergeRequestIID: BigInt, emojiName: String): UIO[Either[GitlabError, EmojiAward]]
    Definition Classes
    EmojiAwardsAPIV2
  13. def byteRequest(requestData: GitlabRequest)(implicit requestId: RequestId): UIO[Either[GitlabError, GitlabResponse[Array[Byte]]]]
    Definition Classes
    ZSttpGitlabAPI → GitlabRestAPIV2
  14. def cancelJob(projectId: EntityId, jobId: BigInt): UIO[Either[GitlabError, JobFullInfo]]
    Definition Classes
    JobsAPIV2
  15. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  16. val config: GitlabConfig
    Definition Classes
    ZSttpGitlabAPI → GitlabRestAPIV2
  17. def createApprovalRule(projectId: EntityId, mergeRequestIId: BigInt, name: String, userIds: Vector[BigInt]): UIO[Either[GitlabError, MergeRequestApprovalRule]]
    Definition Classes
    MergeRequestsAPIV2
  18. def createApprovalRule(projectId: EntityId, mergeRequestIId: BigInt, payload: CreateMergeRequestApprovalRule): UIO[Either[GitlabError, MergeRequestApprovalRule]]
    Definition Classes
    MergeRequestsAPIV2
  19. def createMergeRequestDiscussion(projectId: EntityId, mergeRequestIId: BigInt, payload: CreateMRDiscussion): UIO[Either[GitlabError, MergeRequestDiscussion]]
    Definition Classes
    MergeRequestsAPIV2
  20. def createMergeRequestDiscussionNote(projectId: EntityId, mergeRequestIId: BigInt, discussionId: String, body: String): UIO[Either[GitlabError, MergeRequestNote]]
    Definition Classes
    MergeRequestsAPIV2
  21. def createMergeRequestNote(projectId: EntityId, mergeRequestIId: BigInt, body: String): UIO[Either[GitlabError, MergeRequestNote]]
    Definition Classes
    MergeRequestsAPIV2
  22. def createProjectApprovalRule(projectId: EntityId, payload: UpsertProjectApprovalRule): UIO[Either[GitlabError, ProjectApprovalRule]]
    Definition Classes
    ProjectsAPIV2
  23. def createPushRules(projectId: EntityId, pushRules: EditPushRuleRequest): UIO[Either[GitlabError, PushRules]]
    Definition Classes
    ProjectsAPIV2
  24. def createTag(projectId: EntityId, tagName: String, refToTag: String, message: Option[String], description: Option[String]): UIO[Either[GitlabError, TagInfo]]
    Definition Classes
    TagsAPIV2
  25. def deleteApprovalRule(projectId: EntityId, mergeRequestIId: BigInt, approvalRule: MergeRequestApprovalRule): UIO[Either[GitlabError, String]]
    Definition Classes
    MergeRequestsAPIV2
  26. def deleteApprovalRule(projectId: EntityId, mergeRequestIId: BigInt, approvalRuleId: BigInt): UIO[Either[GitlabError, String]]
    Definition Classes
    MergeRequestsAPIV2
  27. def deleteMergeRequest(projectID: EntityId, mrIid: BigInt): UIO[Either[GitlabError, Unit]]
    Definition Classes
    MergeRequestsAPIV2
  28. def deleteMergeRequestNote(projectId: EntityId, mergeRequestIId: BigInt, noteId: BigInt): UIO[Either[GitlabError, Unit]]
    Definition Classes
    MergeRequestsAPIV2
  29. def deleteTag(projectId: EntityId, tagName: String): Any
    Definition Classes
    TagsAPIV2
  30. def downloadJobArtifacts(projectId: EntityId, jobId: BigInt): UIO[Either[GitlabError, RawResponse]]
    Definition Classes
    JobsAPIV2
  31. def downloadJobLog(projectId: EntityId, jobId: BigInt): UIO[Either[GitlabError, String]]
    Definition Classes
    JobsAPIV2
  32. def downloadSingleFileFromJobArtifact(projectId: EntityId, jobId: BigInt, artifactPath: String): UIO[Either[GitlabError, RawResponse]]
    Definition Classes
    JobsAPIV2
  33. def editProject(projectId: EntityId, updates: EditProjectRequest): UIO[Either[GitlabError, ProjectInfo]]
    Definition Classes
    ProjectsAPIV2
  34. def editPushRules(projectId: EntityId, updates: EditPushRuleRequest): UIO[Either[GitlabError, PushRules]]
    Definition Classes
    ProjectsAPIV2
  35. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  36. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  37. def getAllPaginatedResponse[A](req: GitlabRequest, kind: String, paging: Paging)(implicit arg0: Decoder[A]): UIO[Either[GitlabError, Vector[A]]]
    Attributes
    protected
    Definition Classes
    GitlabRestAPIV2
  38. def getApprovals(mergeRequest: MergeRequestID): UIO[Either[GitlabError, MergeRequestApprovals]]
    Definition Classes
    MergeRequestsAPIV2
  39. def getApprovals(projectId: EntityId, mergeRequestIId: BigInt): UIO[Either[GitlabError, MergeRequestApprovals]]
    Definition Classes
    MergeRequestsAPIV2
  40. def getBranches(projectID: EntityId, searchTerm: Option[String]): UIO[Either[GitlabError, Vector[GitlabBranchInfo]]]
    Definition Classes
    GitlabRestAPIV2
  41. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  42. def getCommit(projectId: EntityId, ref: String): UIO[Either[GitlabError, Commit]]
    Definition Classes
    CommitsAPIV2
  43. def getCommitRefs(projectId: EntityId, commitId: String): UIO[Either[GitlabError, Vector[RefSimpleInfo]]]
    Definition Classes
    CommitsAPIV2
  44. def getCommits(projectId: EntityId, path: String, ref: String, since: ZonedDateTime, until: ZonedDateTime, paging: Paging): UIO[Either[GitlabError, Vector[CommitSimple]]]
    Definition Classes
    CommitsAPIV2
  45. def getCommitsReferences(projectId: EntityId, commitSha: String): UIO[Either[GitlabError, Vector[CommitReference]]]
    Definition Classes
    CommitsAPIV2
  46. def getCurrentUser: UIO[Either[GitlabError, GitlabFullUser]]
    Definition Classes
    GitlabRestAPIV2
  47. def getDiffOfACommit(projectId: EntityId, ref: String): UIO[Either[GitlabError, Vector[FileDiff]]]
    Definition Classes
    CommitsAPIV2
  48. def getEmojiAwards(mergeRequest: MergeRequestInfo): UIO[Either[GitlabError, Vector[EmojiAward]]]
    Definition Classes
    EmojiAwardsAPIV2
  49. def getEmojiAwards(projectID: EntityId, scope: AwardableScope, awardableId: BigInt): UIO[Either[GitlabError, Vector[EmojiAward]]]
    Definition Classes
    EmojiAwardsAPIV2
  50. def getEvents(since: UtcDate, until: UtcDate, targetType: TargetType, action: ActionType, paging: Paging, sort: Sorting[EventsSort]): UIO[Either[GitlabError, Vector[EventInfo]]]
    Definition Classes
    EventsAPIV2
  51. def getGroupMergeRequests(groupId: EntityId, states: Iterable[MergeRequestState]): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Definition Classes
    MergeRequestsAPIV2
  52. def getGroupMergeRequests(groupId: EntityId, state: MergeRequestState, search: NullableField[String], author: NullableField[EntityId], myReaction: NullableField[String], updatedBefore: NullableField[ZonedDateTime], updatedAfter: NullableField[ZonedDateTime], createdBefore: NullableField[ZonedDateTime], createdAfter: NullableField[ZonedDateTime], withMergeStatusRecheck: NullableField[Boolean], paging: Paging, sort: NullableField[Sorting[MergeRequestsSort]]): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Definition Classes
    MergeRequestsAPIV2
  53. def getJob(projectId: EntityId, jobId: BigInt): UIO[Either[GitlabError, JobFullInfo]]
    Definition Classes
    JobsAPIV2
  54. def getMergeRequest(projectID: EntityId, mrId: BigInt): UIO[Either[GitlabError, MergeRequestFull]]
    Definition Classes
    MergeRequestsAPIV2
  55. def getMergeRequestApprovalRules(projectId: EntityId, mergeRequestIId: BigInt): UIO[Either[GitlabError, Vector[MergeRequestApprovalRule]]]
    Definition Classes
    MergeRequestsAPIV2
  56. def getMergeRequestDiff(projectID: EntityId, mrId: BigInt): UIO[Either[GitlabError, MergeRequestFull]]
    Definition Classes
    MergeRequestsAPIV2
  57. def getMergeRequestDiscussion(projectId: EntityId, mergeRequestIId: BigInt, discussionId: String): UIO[Either[GitlabError, MergeRequestDiscussion]]
    Definition Classes
    MergeRequestsAPIV2
  58. def getMergeRequestDiscussions(projectId: EntityId, mergeRequestIId: BigInt): UIO[Either[GitlabError, Vector[MergeRequestDiscussion]]]
    Definition Classes
    MergeRequestsAPIV2
  59. def getMergeRequestEmoji(projectID: EntityId, mergeRequestIID: BigInt): UIO[Either[GitlabError, Vector[EmojiAward]]]
    Definition Classes
    EmojiAwardsAPIV2
  60. def getMergeRequestNote(projectId: EntityId, mergeRequestIId: BigInt, noteId: BigInt): UIO[Either[GitlabError, MergeRequestNote]]
    Definition Classes
    MergeRequestsAPIV2
  61. def getMergeRequestNotes(mr: MergeRequestID, paging: Paging, sort: Option[Sorting[MergeRequestNotesSort]]): UIO[Either[GitlabError, Vector[MergeRequestNote]]]
    Definition Classes
    MergeRequestsAPIV2
  62. def getMergeRequestNotes(mr: MergeRequestID): UIO[Either[GitlabError, Vector[MergeRequestNote]]]
    Definition Classes
    MergeRequestsAPIV2
  63. def getMergeRequestNotes(projectId: EntityId, mergeRequestIId: BigInt, paging: Paging, sort: Option[Sorting[MergeRequestNotesSort]]): UIO[Either[GitlabError, Vector[MergeRequestNote]]]
    Definition Classes
    MergeRequestsAPIV2
  64. def getMergeRequests(projectID: EntityId, states: Iterable[MergeRequestState]): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Definition Classes
    MergeRequestsAPIV2
  65. def getMergeRequests(projectID: EntityId, state: MergeRequestState, author: NullableField[EntityId], search: NullableField[String], myReaction: NullableField[String], createdBefore: NullableField[ZonedDateTime], createdAfter: NullableField[ZonedDateTime], updatedBefore: NullableField[ZonedDateTime], updatedAfter: NullableField[ZonedDateTime], withMergeStatusRecheck: NullableField[Boolean], paging: Paging, sort: NullableField[Sorting[MergeRequestsSort]]): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Definition Classes
    MergeRequestsAPIV2
  66. def getMergeRequestsOfCommit(projectId: EntityId, commitSha: String): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Definition Classes
    CommitsAPIV2
  67. def getPipeline(projectId: EntityId, pipelineId: BigInt): UIO[Either[GitlabError, PipelineFullInfo]]
    Definition Classes
    PipelinesAPIV2
  68. def getPipelineBridges(projectId: EntityId, pipelineId: BigInt, scopes: Seq[PipelineStatus]): UIO[Either[GitlabError, Vector[PipelineBridgeJob]]]
    Definition Classes
    JobsAPIV2
  69. def getPipelineJobs(projectId: EntityId, pipelineId: BigInt, scope: Set[JobScope]): UIO[Either[GitlabError, Vector[JobFullInfo]]]
    Definition Classes
    PipelinesAPIV2
  70. def getPipelineVariables(projectId: EntityId, pipelineId: BigInt): UIO[Either[GitlabError, Vector[PipelineVar]]]
    Definition Classes
    PipelinesAPIV2
  71. def getProject(projectId: EntityId): UIO[Either[GitlabError, ProjectInfo]]
    Definition Classes
    ProjectsAPIV2
  72. def getProjectApprovalRules(projectId: EntityId): UIO[Either[GitlabError, Vector[ProjectApprovalRule]]]
    Definition Classes
    ProjectsAPIV2
  73. def getProjectDeployments(projectId: EntityId, environment: String, updatedAfter: ZonedDateTime, updatedBefore: ZonedDateTime, status: String, paging: Paging, sort: Sorting[DeploymentsSort]): UIO[Either[GitlabError, Vector[DeploymentInfo]]]
    Definition Classes
    DeploymentsAPIV2
  74. def getProjectPipelines(projectId: EntityId, ref: String, sha: String, scope: PipelineScope, status: PipelineStatus, yamlErrors: Option[Boolean], name: String, username: String, updatedAfter: ZonedDateTime, updatedBefore: ZonedDateTime, sort: Sorting[PipelinesSort], paging: Paging): UIO[Either[GitlabError, Vector[PipelineShort]]]
    Definition Classes
    PipelinesAPIV2
  75. def getProjectTags(projectId: EntityId, search: String, paging: Paging, sort: Sorting[TagsSort]): UIO[Either[GitlabError, Vector[TagInfo]]]
    Definition Classes
    TagsAPIV2
  76. def getProjects(paging: Paging, sort: Sorting[ProjectsSort]): UIO[Either[GitlabError, Vector[ZonedDateTime]]]
    Definition Classes
    ProjectsAPIV2
  77. def getProjects(ids: Iterable[BigInt]): UIO[Either[GitlabError, Vector[ProjectInfo]]]
    Definition Classes
    ProjectsAPIV2
  78. def getPushRules(projectId: EntityId): UIO[Either[GitlabError, PushRules]]
    Definition Classes
    ProjectsAPIV2
  79. def getTag(projectId: EntityId, tagName: String): UIO[Either[GitlabError, TagInfo]]
    Definition Classes
    TagsAPIV2
  80. def getUserContributionEvents(userId: EntityId, since: UtcDate, until: UtcDate, targetType: TargetType, action: ActionType, paging: Paging, sort: Sorting[EventsSort]): UIO[Either[GitlabError, Vector[EventInfo]]]
    Definition Classes
    EventsAPIV2
  81. def globalMRsSearch(phrase: String): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Definition Classes
    MergeRequestsAPIV2
  82. def globalMergeRequestSearch(state: NullableField[MergeRequestState], author: NullableField[EntityId], scope: NullableField[MergeRequestSearchScope], titleOrDescriptionText: NullableField[String], createdBefore: NullableField[ZonedDateTime], createdAfter: NullableField[ZonedDateTime], updatedBefore: NullableField[ZonedDateTime], updatedAfter: NullableField[ZonedDateTime], withMergeStatusRecheck: NullableField[Boolean], sort: NullableField[Sorting[MergeRequestsSort]]): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Definition Classes
    MergeRequestsAPIV2
  83. def globalSearch(scope: SearchScope, phrase: String): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Attributes
    protected
    Definition Classes
    GitlabRestAPIV2
  84. def groupSearchCommits(groupId: EntityId, phrase: String): UIO[Either[GitlabError, String]]
    Definition Classes
    GitlabRestAPIV2
  85. def groupSearchMrs(groupId: EntityId, phrase: String): UIO[Either[GitlabError, Vector[MergeRequestInfo]]]
    Definition Classes
    MergeRequestsAPIV2
  86. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  87. def invokeRequest(request: GitlabRequest)(implicit requestId: RequestId): UIO[Either[GitlabError, String]]
    Attributes
    protected
    Definition Classes
    GitlabRestAPIV2
  88. def invokeRequestRaw(requestData: GitlabRequest)(implicit requestId: RequestId): UIO[Either[GitlabError, GitlabResponse[String]]]
    Definition Classes
    ZSttpGitlabAPI → GitlabRestAPIV2
  89. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  90. lazy val logger: Logger
    Attributes
    protected
    Definition Classes
    LazyLogging
    Annotations
    @transient()
  91. implicit def m: GitlabApiT[UIO]
    Definition Classes
    ZSttpGitlabAPI → GitlabRestAPIV2
  92. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  93. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  94. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  95. implicit val printer: Printer
    Definition Classes
    Gitlab4SMarshalling
  96. def renderParams(myReaction: NullableField[String], author: NullableField[EntityId], search: NullableField[String], state: MergeRequestState, updatedBefore: NullableField[ZonedDateTime], updatedAfter: NullableField[ZonedDateTime], createdBefore: NullableField[ZonedDateTime], createdAfter: NullableField[ZonedDateTime], withMergeStatusRecheck: NullableField[Boolean], sort: NullableField[Sorting[MergeRequestsSort]]): Vector[ParamQuery]
    Attributes
    protected
    Definition Classes
    GitlabRestAPIV2
  97. val reqGen: RequestGenerator
    Attributes
    protected
    Definition Classes
    GitlabRestAPIV2
  98. def resolveMergeRequestDiscussion(projectId: EntityId, mergeRequestIId: BigInt, discussionId: String, resolved: Boolean): UIO[Either[GitlabError, MergeRequestDiscussion]]
    Definition Classes
    MergeRequestsAPIV2
  99. def retryJob(projectId: EntityId, jobId: BigInt): UIO[Either[GitlabError, JobFullInfo]]
    Definition Classes
    JobsAPIV2
  100. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  101. def toString(): String
    Definition Classes
    AnyRef → Any
  102. def triggerPipeline(projectId: EntityId, branch: String, vars: Vector[PipelineVar]): UIO[Either[GitlabError, PipelineFullInfo]]
    Definition Classes
    PipelinesAPIV2
  103. def unapproveMergeRequest(projectId: EntityId, mergeRequestIId: BigInt): UIO[Either[GitlabError, MergeRequestApprovals]]
    Definition Classes
    MergeRequestsAPIV2
  104. def unawardEmoji(mergeRequest: MergeRequestInfo, emojiAward: EmojiAward): UIO[Either[GitlabError, Unit]]
    Definition Classes
    EmojiAwardsAPIV2
  105. def unawardEmoji(projectID: EntityId, scope: AwardableScope, awardableId: BigInt, awardId: BigInt): UIO[Either[GitlabError, Unit]]
    Definition Classes
    EmojiAwardsAPIV2
  106. def updateMergeRequest(projectID: EntityId, mrId: BigInt, updateMrPayload: UpdateMRPayload): UIO[Either[GitlabError, MergeRequestFull]]
    Definition Classes
    MergeRequestsAPIV2
  107. def updateMergeRequestDiscussionNote(projectId: EntityId, mergeRequestIId: BigInt, discussionId: String, noteId: BigInt, payload: MRDiscussionUpdate): UIO[Either[GitlabError, MergeRequestNote]]
    Definition Classes
    MergeRequestsAPIV2
  108. def updateMergeRequestNote(projectId: EntityId, mergeRequestIId: BigInt, noteId: BigInt, newBody: String): UIO[Either[GitlabError, MergeRequestNote]]
    Definition Classes
    MergeRequestsAPIV2
  109. def updateProjectApprovalRule(projectId: EntityId, approvalRuleId: BigInt, payload: UpsertProjectApprovalRule): UIO[Either[GitlabError, ProjectApprovalRule]]
    Definition Classes
    ProjectsAPIV2
  110. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  111. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  112. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  113. def wrap[T](value: T): List[T]
    Definition Classes
    GitlabRestAPIV2
  114. implicit val zonedDateTimeCodec: Codec[ZonedDateTime]
    Definition Classes
    Gitlab4SMarshalling

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from GitlabRestAPIV2[UIO]

Inherited from CommitsAPIV2[UIO]

Inherited from ProjectsAPIV2[UIO]

Inherited from PipelinesAPIV2[UIO]

Inherited from JobsAPIV2[UIO]

Inherited from DeploymentsAPIV2[UIO]

Inherited from EventsAPIV2[UIO]

Inherited from MergeRequestsAPIV2[UIO]

Inherited from TagsAPIV2[UIO]

Inherited from EmojiAwardsAPIV2[UIO]

Inherited from Gitlab4SMarshalling

Inherited from LazyLogging

Inherited from AnyRef

Inherited from Any

Ungrouped