Uses of Class
org.gitlab4j.api.models.Deployment
Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
-
Uses of Deployment in org.gitlab4j.api
Methods in org.gitlab4j.api that return Deployment Modifier and Type Method Description Deployment
DeploymentsApi. addDeployment(Object projectIdOrPath, String environment, String sha, String ref, Boolean tag, Constants.DeploymentStatus status)
Creates a new deployment for a project.Deployment
DeploymentsApi. getDeployment(Object projectIdOrPath, Integer deploymentId)
Get a specific deployment.Deployment
DeploymentsApi. updateDeployment(Object projectIdOrPath, Integer deploymentId, Constants.DeploymentStatus status)
Updates an existing project deploy key.Methods in org.gitlab4j.api that return types with arguments of type Deployment Modifier and Type Method Description Optional<Deployment>
DeploymentsApi. getOptionalDeployment(Object projectIdOrPath, Integer deploymentId)
Get a specific deployment as an Optional instance.List<Deployment>
DeploymentsApi. getProjectDeployments(Object projectIdOrPath)
Get a list of deployments for the specified project.Pager<Deployment>
DeploymentsApi. getProjectDeployments(Object projectIdOrPath, int itemsPerPage)
Get a Pager of all deployments for the specified project.Pager<Deployment>
DeploymentsApi. getProjectDeployments(Object projectIdOrPath, DeploymentFilter filter)
Get a Pager of all deployments for the specified project.Pager<Deployment>
DeploymentsApi. getProjectDeployments(Object projectIdOrPath, DeploymentFilter filter, int itemsPerPage)
Get a Pager of all deployments for the specified project.Stream<Deployment>
DeploymentsApi. getProjectDeploymentsStream(Object projectIdOrPath)
Get a Stream of all deployments for the specified project.Stream<Deployment>
DeploymentsApi. getProjectDeploymentsStream(Object projectIdOrPath, DeploymentFilter filter)
Get a Stream of all deployments for the specified project. -
Uses of Deployment in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Deployment Modifier and Type Method Description Deployment
Environment. getLastDeployment()
Methods in org.gitlab4j.api.models with parameters of type Deployment Modifier and Type Method Description void
Environment. setLastDeployment(Deployment lastDeployment)