Interface SAgentType
-
- All Superinterfaces:
AgentBuildHistory,AgentDescription,AgentType
- All Known Implementing Classes:
AgentTypeImpl,DummyAgentType,MockAgentType,SecuredAgentType
public interface SAgentType extends AgentType, AgentBuildHistory
- Author:
- Eugene Petrenko Created: 10.03.2010 14:57:53
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description booleancontainsAgentDescriptionData()AgentPoolgetAgentPool()AgentTypeDetailsgetDetails()SBuildAgentgetRealAgent()For real agent types returns the corresponding agent or null if it does not exist anymore.default booleanisCloud()-
Methods inherited from interface jetbrains.buildServer.serverSide.AgentBuildHistory
getBuildHistory
-
Methods inherited from interface jetbrains.buildServer.serverSide.AgentDescription
getAvailableParameters, getAvailableParameterValue, getAvailableRunTypeIds, getAvailableRunTypes, getAvailableVcsPlugins, getBuildParameters, getConfigurationParameters, getCpuBenchmarkIndex, getCpuCount, getDefinedParameters, getOperatingSystemName, isCaseInsensitiveEnvironment
-
Methods inherited from interface jetbrains.buildServer.serverSide.agentTypes.AgentType
getAgentPoolId, getAgentTypeId, getAgentTypeKey, getPolicy
-
-
-
-
Method Detail
-
getAgentPool
@NotNull AgentPool getAgentPool()
-
getDetails
@NotNull AgentTypeDetails getDetails()
- Returns:
- runtime details of the associated agent type
-
getRealAgent
@Nullable SBuildAgent getRealAgent()
For real agent types returns the corresponding agent or null if it does not exist anymore. For cloud agent types returns null always.- Returns:
- see above
-
containsAgentDescriptionData
boolean containsAgentDescriptionData()
- Returns:
- true if agent contains AgentDescription from some connected agent
- Since:
- 7.0
-
isCloud
default boolean isCloud()
-
-