Uses of Class
org.gitlab4j.api.models.Environment
Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
-
Uses of Environment in org.gitlab4j.api
Methods in org.gitlab4j.api that return Environment Modifier and Type Method Description Environment
EnvironmentsApi. createEnvironment(Object projectIdOrPath, Integer environmentId)
Stop an environment.Environment
EnvironmentsApi. createEnvironment(Object projectIdOrPath, String name, String externalUrl)
Create a new environment with the given name and external_url.Environment
EnvironmentsApi. getEnvironment(Object projectIdOrPath, Integer environmentId)
Get a specific environment.Environment
EnvironmentsApi. stopEnvironment(Object projectIdOrPath, Integer environmentId)
Stop an environment.Environment
EnvironmentsApi. updateEnvironment(Object projectIdOrPath, Integer environmentId, String name, String externalUrl)
Update an existing environment.Methods in org.gitlab4j.api that return types with arguments of type Environment Modifier and Type Method Description List<Environment>
EnvironmentsApi. getEnvironments(Object projectIdOrPath)
Get all environments for a given project.Pager<Environment>
EnvironmentsApi. getEnvironments(Object projectIdOrPath, int itemsPerPage)
Get a Pager of all environments for a given project.Stream<Environment>
EnvironmentsApi. getEnvironmentsStream(Object projectIdOrPath)
Get a Stream of all environments for a given project.Optional<Environment>
EnvironmentsApi. getOptionalEnvironment(Object projectIdOrPath, Integer environmentId)
Get a specific environment. as an Optional instance. -
Uses of Environment in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Environment Modifier and Type Method Description Environment
Deployment. getEnvironment()
Methods in org.gitlab4j.api.models with parameters of type Environment Modifier and Type Method Description void
Deployment. setEnvironment(Environment environment)