Package | Description |
---|---|
org.gitlab.api |
Modifier and Type | Method and Description |
---|---|
GitlabBuildVariable |
GitlabAPI.createBuildVariable(Integer projectId,
GitlabBuildVariable variable)
Creates a new variable.
|
GitlabBuildVariable |
GitlabAPI.createBuildVariable(Integer projectId,
String key,
String value)
Creates a new build variable.
|
GitlabBuildVariable |
GitlabAPI.getBuildVariable(GitlabProject project,
String key)
Gets build variable associated with a project and key.
|
GitlabBuildVariable |
GitlabAPI.getBuildVariable(Integer projectId,
String key)
Gets build variable associated with a project and key.
|
GitlabBuildVariable |
GitlabAPI.updateBuildVariable(Integer projectId,
String key,
String newValue)
Updates an existing variable.
|
Modifier and Type | Method and Description |
---|---|
List<GitlabBuildVariable> |
GitlabAPI.getBuildVariables(GitlabProject project)
Gets build variables associated with a project.
|
List<GitlabBuildVariable> |
GitlabAPI.getBuildVariables(Integer projectId)
Gets build variables associated with a project.
|
Modifier and Type | Method and Description |
---|---|
GitlabBuildVariable |
GitlabAPI.createBuildVariable(Integer projectId,
GitlabBuildVariable variable)
Creates a new variable.
|
void |
GitlabAPI.deleteBuildVariable(Integer projectId,
GitlabBuildVariable variable)
Deletes an existing variable.
|
Modifier and Type | Method and Description |
---|---|
GitlabPipeline |
GitlabAPI.runPipeline(GitlabProject project,
String ref,
List<GitlabBuildVariable> variables)
Run pipeline for selected project and branch
|
GitlabPipeline |
GitlabAPI.runPipeline(Integer projectId,
String ref,
List<GitlabBuildVariable> variables)
Run pipeline for selected project and branch
|
Copyright © 2019. All rights reserved.