open class SshAgent : BuildFeature
A build feature which runs SSH agent during a build with the specified SSH key loaded
See Also
SshAgent(init: SshAgent.() -> Unit) SshAgent()
A build feature which runs SSH agent during a build with the specified SSH key loaded |
var teamcitySshKey: String?
Uploaded SSH key name to load into an SSH agent |
var enabled: Boolean
Specifies whether the feature is enabled, true by default |
|
var id: String?
Build feature id, if not specified will be generated |
|
var type: String
Build feature type |
open fun validate(consumer: ErrorConsumer): Unit
Validates this object and reports found errors to the provided consumer |
open fun create(): BuildFeature
Creates an instance of this build feature via reflection using a no argument constructor, used during copying. Throws an error if this class doesn't have a default constructor. Subclasses can override it to create an instance without using a default constructor. |
|
open fun toString(): String |