Package | Description |
---|---|
org.gitlab4j.api |
Modifier and Type | Method and Description |
---|---|
DeployToken |
DeployTokensApi.addGroupDeployToken(Object groupIdOrPath,
String name,
Date expiresAt,
String username,
List<Constants.DeployTokenScope> scopes)
Creates a new deploy token for a group.
|
DeployToken |
DeployTokensApi.addProjectDeployToken(Object projectIdOrPath,
String name,
Date expiresAt,
String username,
List<Constants.DeployTokenScope> scopes)
Creates a new deploy token for a project.
|
Modifier and Type | Method and Description |
---|---|
List<DeployToken> |
DeployTokensApi.getDeployTokens()
Get a list of all deploy tokens across the GitLab instance.
|
Pager<DeployToken> |
DeployTokensApi.getDeployTokens(int itemsPerPage)
Get a Pager of all deploy tokens across all projects of the GitLab instance.
|
Stream<DeployToken> |
DeployTokensApi.getDeployTokensStream()
Get a Stream of all deploy tokens across all projects of the GitLab instance.
|
List<DeployToken> |
DeployTokensApi.getGroupDeployTokens(Object groupIdOrPath)
Get a list of the deploy tokens for the specified group.
|
Pager<DeployToken> |
DeployTokensApi.getGroupDeployTokens(Object groupIdOrPath,
int itemsPerPage)
Get a Pager of the deploy tokens for the specified group.
|
Stream<DeployToken> |
DeployTokensApi.getGroupDeployTokensStream(Object groupIdOrPath)
Get a list of the deploy tokens for the specified group.
|
List<DeployToken> |
DeployTokensApi.getProjectDeployTokens(Object projectIdOrPath)
Get a list of the deploy tokens for the specified project.
|
Pager<DeployToken> |
DeployTokensApi.getProjectDeployTokens(Object projectIdOrPath,
int itemsPerPage)
Get a Pager of the deploy tokens for the specified project.
|
Stream<DeployToken> |
DeployTokensApi.getProjectDeployTokensStream(Object projectIdOrPath)
Get a list of the deploy tokens for the specified project.
|
Copyright © 2020. All rights reserved.