public interface EnvironmentService
Modifier and Type | Field and Description |
---|---|
static String |
DEFAULT_ARTIFACT_TASK_NAME |
Modifier and Type | Method and Description |
---|---|
Environment |
addEnvironment(long deploymentProjectId,
String name,
String description)
Creates a new environment in the specified deployment project.
|
void |
addNotification(long environmentId,
NotificationRule newRule)
Adds a new notification to the environment notifications
|
Environment |
cloneEnvironment(long deploymentProjectId,
long environmentId,
String name,
String description)
Create new environment as a clone of existing one
|
Environment |
createImmutableEnvironment(MutableEnvironment environment)
Converts mutable environment to immutable.
|
Environment |
createOperationsAwareImmutableEnvironment(MutableEnvironment environment)
Create operation aware immutable environment
|
void |
deleteNotification(long environmentId,
long notificationId)
Removes notification from the environment's notification set.
|
Environment |
editEnvironment(long environmentId,
String name,
String description)
Edit the details of an existing environment
|
Environment |
findEnvironmentByName(long deploymentProjectId,
String name)
Find environment with specified name in a deployment project
|
Set<RequirementDeploymentMapping> |
findEnvironmentsByRequirementKey(String requirementKey)
Find environments which rely on requirementKey
|
Iterable<Environment> |
getAllEnvironments()
Retrieve all
Environment defined in the system. |
Collection<Environment> |
getAllEnvironmentsForDashboard()
Retrieve all
Environment defined in the system. |
Iterable<Environment> |
getAllEnvironmentsNoUserContext()
Retrieve all
Environment defined in the system without filling in operations permitted for the user. |
Environment |
getEnvironment(long environmentId)
Get specific environment by ID.
|
int |
getEnvironmentCount() |
int |
getEnvironmentCountForProject(DeploymentProject deploymentProject) |
Function<Environment,DecoratedEnvironment> |
getEnvironmentDecorator()
Create environment decorator function object.
|
List<EnvironmentRepositoryLink> |
getEnvironmentRepositoryLinksForRepository(long repositoryId) |
RequirementSet |
getEnvironmentRequirementSet(long environmentId)
Retrieve Agent Requirement set for environment, if environment with id exists.
|
List<Environment> |
getEnvironmentsForDeploymentProject(long deploymentProjectId)
Get all environments for a particular deployment project.
|
List<EnvironmentStub> |
getEnvironmentStubsForDeploymentProject(long deploymentProjectId)
Get all environment stubs for a particular deployment project.
|
List<EnvironmentRepositoryLink> |
getEnvironmentsUsingRepository(long repositoryId)
Deprecated.
since 5.13, use
getEnvironmentRepositoryLinksForRepository(long) |
List<Environment> |
getEnvironmentsUsingRepositoryDataEntity(long repositoryId)
TODO 6.0 rename to getEnvironmentsUsingRepository
|
NotificationSet |
getNotificationSet(long environmentId)
Retrieve notification set for environment, if environment with id exists.
|
PaginatedEnvironmentsForDashboard |
getPaginatedEnvironmentsForDeploymentProject(long deploymentProjectId,
int start,
int limit,
String filter)
Get paginated environments for a particular deployment project ordered by position.
|
List<PlanRepositoryDefinition> |
getPlanRepositoryDefinitionsForEnvironment(Environment environment)
Deprecated.
|
List<PlanRepositoryDefinition> |
getPlanRepositoryDefinitionsForEnvironment(InternalEnvironment environment)
Retrieves all repositories used in environment source checkout tasks
|
List<RepositoryDefinition> |
getRepositoryDefinitionsForEnvironment(Environment environment)
Deprecated.
|
ErrorCollection |
moveEnvironment(MoveEnvironmentStrategy moveEnvironmentStrategy,
long deploymentProjectId,
long environmentId,
int currentPosition,
Optional<Long> relatedEnvId)
Move Environment in given deploymentProject with given strategy.
|
ErrorCollection |
moveEnvironmentDown(long deploymentProjectId,
long environmentId,
int currentPosition)
Deprecated.
|
ErrorCollection |
moveEnvironmentUp(long deploymentProjectId,
long environmentId,
int currentPosition)
Deprecated.
|
void |
removeRepositoryFromEnvironment(EnvironmentRepositoryLink environmentRepositoryLink)
Remove
EnvironmentRepositoryLink from environment |
void |
resetTriggersForDeployment(long deploymentProjectId)
Delete and recreate triggers for all environments for this deployment
|
void |
restartAllTriggeringForDeploymentProject(long deploymentProjectId)
Restart all automatic triggering on every
Environment related to a DeploymentProject . |
void |
startAllTriggers(Environment environment)
Start all automatic triggering on
InternalEnvironment |
void |
startAllTriggersForDeploymentProject(long deploymentProjectId)
Start all automatic triggering on every
Environment related to a DeploymentProject |
void |
stopAllTriggers(Environment environment)
Stop all automatic triggering on
InternalEnvironment |
void |
stopAllTriggersForDeploymentProject(long deploymentProjectId)
Stop all automatic triggering on every
Environment related to a DeploymentProject |
void |
updateEnvironmentConfigurationState(long environmentId,
ConfigurationState configurationState)
Update the configurationState of this environment
|
void |
updatePlanKey(long deploymentProjectId,
PlanKey originalPlanKey,
PlanKey newPlanKey)
Update planKey in Environment related configuration when plan key has changed (ie after moving plan).
|
RepositoryDefinition |
updateRepositoryLinkInEnvironment(EnvironmentRepositoryLink environmentRepositoryLink,
RepositoryDataEntity newRepositoryEntity)
Update
EnvironmentRepositoryLink data |
ErrorCollection |
validateAddEnvironment(long deploymentProjectId,
String name,
String description)
Validates values to be used for creating a new environment.
|
ErrorCollection |
validateEditEnvironment(long environmentId,
String name,
String description)
Validates values to be used when editing existing environment.
|
static final String DEFAULT_ARTIFACT_TASK_NAME
@NotNull List<Environment> getEnvironmentsForDeploymentProject(long deploymentProjectId)
deploymentProjectId
- of the deployment project to get environments for@NotNull List<EnvironmentStub> getEnvironmentStubsForDeploymentProject(long deploymentProjectId)
deploymentProjectId
- of the deployment project to get environments for@NotNull PaginatedEnvironmentsForDashboard getPaginatedEnvironmentsForDeploymentProject(long deploymentProjectId, int start, int limit, @Nullable String filter)
deploymentProjectId
- of the deployment project to get environments forstart
- start by indexlimit
- return no more entries than limitfilter
- filterInternalEnvironment.getPosition()
@Nullable Environment getEnvironment(long environmentId) throws org.acegisecurity.AccessDeniedException
environmentId
- ID to search fororg.acegisecurity.AccessDeniedException
- when user doesn't have permissions to view environment@NotNull ErrorCollection validateAddEnvironment(long deploymentProjectId, @Nullable String name, @Nullable String description)
deploymentProjectId
- name
- description
- @NotNull Environment addEnvironment(long deploymentProjectId, @Nullable String name, @Nullable String description) throws WebValidationException
deploymentProjectId
- to create environment inname
- of the environment.description
- of the environment.WebValidationException
Environment cloneEnvironment(long deploymentProjectId, long environmentId, @Nullable String name, @Nullable String description) throws WebValidationException
environmentId
- name
- description
- WebValidationException
@NotNull ErrorCollection validateEditEnvironment(long environmentId, @Nullable String name, @Nullable String description)
environmentId
- environment to editname
- of the environmentdescription
- of the environment@NotNull Environment editEnvironment(long environmentId, String name, String description) throws WebValidationException
environmentId
- environment to editname
- of the environmentdescription
- of the environmentWebValidationException
void updateEnvironmentConfigurationState(long environmentId, @NotNull ConfigurationState configurationState)
environmentId
- of environment to updateconfigurationState
- new configuration state@Nullable RequirementSet getEnvironmentRequirementSet(long environmentId)
environmentId
- of environment@NotNull Iterable<Environment> getAllEnvironments()
Environment
defined in the system. The result is filtered by environment permissions and
sorted by deployment project id and environment position. Environments belonging to inaccessible projects are
not currently filtered out, but their operations show them to be inaccessible.@NotNull Collection<Environment> getAllEnvironmentsForDashboard()
Environment
defined in the system. The result is filtered by environment permissions and
sorted by deployment project id and environment position. Environments belonging to inaccessible projects are
not currently filtered out, but their operations show them to be inaccessible. Some data inside the object may be
unavailable.@NotNull Iterable<Environment> getAllEnvironmentsNoUserContext()
Environment
defined in the system without filling in operations permitted for the user.@Deprecated @NotNull List<RepositoryDefinition> getRepositoryDefinitionsForEnvironment(@NotNull Environment environment)
getPlanRepositoryDefinitionsForEnvironment(InternalEnvironment)
environment
- @NotNull @Deprecated List<PlanRepositoryDefinition> getPlanRepositoryDefinitionsForEnvironment(@NotNull Environment environment)
getPlanRepositoryDefinitionsForEnvironment(InternalEnvironment)
environment
- @NotNull List<PlanRepositoryDefinition> getPlanRepositoryDefinitionsForEnvironment(@NotNull InternalEnvironment environment)
environment
- @Deprecated List<EnvironmentRepositoryLink> getEnvironmentsUsingRepository(long repositoryId)
getEnvironmentRepositoryLinksForRepository(long)
List<EnvironmentRepositoryLink> getEnvironmentRepositoryLinksForRepository(long repositoryId)
repositoryId
- repository idList<Environment> getEnvironmentsUsingRepositoryDataEntity(long repositoryId)
repositoryId
- repository idEnvironment
s that use given repositoryRepositoryDefinition updateRepositoryLinkInEnvironment(EnvironmentRepositoryLink environmentRepositoryLink, RepositoryDataEntity newRepositoryEntity)
EnvironmentRepositoryLink
dataenvironmentRepositoryLink
- newRepositoryEntity
- void removeRepositoryFromEnvironment(@NotNull EnvironmentRepositoryLink environmentRepositoryLink)
EnvironmentRepositoryLink
from environmentenvironmentRepositoryLink
- void addNotification(long environmentId, @NotNull NotificationRule newRule) throws WebValidationException
WebValidationException
@Nullable NotificationSet getNotificationSet(long environmentId)
environmentId
- of environmentvoid deleteNotification(long environmentId, long notificationId) throws WebValidationException
WebValidationException
void stopAllTriggers(@NotNull Environment environment)
InternalEnvironment
environment
- void startAllTriggers(@NotNull Environment environment)
InternalEnvironment
environment
- void stopAllTriggersForDeploymentProject(long deploymentProjectId)
Environment
related to a DeploymentProject
deploymentProjectId
- void startAllTriggersForDeploymentProject(long deploymentProjectId)
Environment
related to a DeploymentProject
deploymentProjectId
- void restartAllTriggeringForDeploymentProject(long deploymentProjectId)
Environment
related to a DeploymentProject
.
When using this method please keep in mind that triggers should be stopped before modifying their configuration
and restarted afterwards. Thus stopAllTriggersForDeploymentProject(long)
and
startAllTriggersForDeploymentProject(long)
might be more useful.@NotNull @Deprecated ErrorCollection moveEnvironmentUp(long deploymentProjectId, long environmentId, int currentPosition)
moveEnvironment(MoveEnvironmentStrategy, long, long, int, Optional)
with MoveEnvironmentStrategy.UP
@NotNull @Deprecated ErrorCollection moveEnvironmentDown(long deploymentProjectId, long environmentId, int currentPosition)
moveEnvironment(MoveEnvironmentStrategy, long, long, int, Optional)
with MoveEnvironmentStrategy.DOWN
int getEnvironmentCount()
int getEnvironmentCountForProject(DeploymentProject deploymentProject)
deploymentProject
- void updatePlanKey(long deploymentProjectId, @NotNull PlanKey originalPlanKey, @NotNull PlanKey newPlanKey)
DeploymentProjectService.updatePlanKey(PlanKey, PlanKey)
after DeploymentProject has been updated.deploymentProjectId
- id of deployment project which environments have to be checkedoriginalPlanKey
- original PlanKeynewPlanKey
- new PlanKeyvoid resetTriggersForDeployment(long deploymentProjectId)
deploymentProjectId
- Function<Environment,DecoratedEnvironment> getEnvironmentDecorator()
@NotNull Set<RequirementDeploymentMapping> findEnvironmentsByRequirementKey(@NotNull String requirementKey)
requirementKey
- on which environments rely@NotNull Environment createImmutableEnvironment(@NotNull MutableEnvironment environment)
@Nullable Environment findEnvironmentByName(long deploymentProjectId, String name)
deploymentProjectId
- name
- @NotNull Environment createOperationsAwareImmutableEnvironment(@NotNull MutableEnvironment environment)
Operations
ErrorCollection moveEnvironment(MoveEnvironmentStrategy moveEnvironmentStrategy, long deploymentProjectId, long environmentId, int currentPosition, Optional<Long> relatedEnvId)
MoveEnvironmentStrategy.AFTER
or MoveEnvironmentStrategy.BEFORE
moveEnvironmentStrategy
- deploymentProjectId
- environmentId
- currentPosition
- relatedEnvId
- Copyright © 2019 Atlassian Software Systems Pty Ltd. All rights reserved.