UntrustedBuildsSettings

Project feature for Untrusted Builds Settings

Example. Untrusted Settings that require approval for all untrusted builds in the project. The builds will be canceled in 60 minutes if not approved

project {
// Other Project settings ...
features {
// Other Project Features ...
        untrustedBuildsSettings {
id = "<Connection id>" // arbitrary ID that can be later used to refer to the project feature
defaultAction = UntrustedBuildsSettings.DefaultAction.APPROVE
approvalRules = "user:teamcity_user"
enableLog = false
timeoutMinutes = 60
}





}
}




Example. Untrusted Settings that force all detected untrusted builds to be canceled and enable logging of untrusted builds

project {
// Other Project settings ...
features {
// Other Project Features ...
        untrustedBuildsSettings {
id = "<Connection id>" // arbitrary ID that can be later used to refer to the project feature
defaultAction = UntrustedBuildsSettings.DefaultAction.CANCEL
enableLog = true
}



}
}




See also

Constructors

Link copied to clipboard
constructor(init: UntrustedBuildsSettings.() -> Unit)
constructor()

Properties

Link copied to clipboard
var approvalRules: <Error class: unknown class>

Approval rules for untrusted builds. Should be specified only if APPROVE is set as a defaultAction

Link copied to clipboard
var defaultAction: <Error class: unknown class>

If APPROVE action is choosen, then approvalRules field should be specified

Link copied to clipboard
var enableLog: <Error class: unknown class>

Indicates that logging of untrusted builds in the server log and build log should be enabled

Link copied to clipboard
var id: String?

Project feature id, if not specified will be generated

Link copied to clipboard
var manualRunsApproved: <Error class: unknown class>

If started by user with sufficient permissions, mark build as approved by user

Link copied to clipboard
Link copied to clipboard
var timeoutMinutes: <Error class: unknown class>

Time (in minutes) before the build is cancelled, defaults to 360 minutes. Should be specified only if APPROVE is set as a defaultAction

Link copied to clipboard

Project feature type

Functions

Link copied to clipboard
fun booleanParameter(customName: String? = null, trueValue: String? = "true", falseValue: String? = "false"): <Error class: unknown class><Parametrized, <Error class: unknown class><Parametrized, T?>>
Link copied to clipboard
fun clear()
Link copied to clipboard
fun <T : CompoundParam<T>> compoundParameter(customName: String? = null): <Error class: unknown class><Parametrized, <Error class: unknown class><Parametrized, T?>>
Link copied to clipboard
fun <T : Parametrized> copyParamsTo(target: T): T

Copies parameters of this object to the specified target

Link copied to clipboard

Creates an instance of this project 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.

Link copied to clipboard
fun doubleParameter(customName: String? = null): <Error class: unknown class><Parametrized, <Error class: unknown class><Parametrized, T?>>
Link copied to clipboard
fun <E : Enum<E>> enumParameter(customName: String? = null, mapping: Map<E, String?>? = null): <Error class: unknown class><Parametrized, <Error class: unknown class><Parametrized, T?>>
Link copied to clipboard
fun findRawParam(paramName: String): Parameter?
Link copied to clipboard
fun hasParam(paramName: String): Boolean
Link copied to clipboard
fun intParameter(customName: String? = null): <Error class: unknown class><Parametrized, <Error class: unknown class><Parametrized, T?>>
Link copied to clipboard
fun param(name: String, value: String)

Adds parameter with specified name and value

Link copied to clipboard
fun removeRawParam(paramName: String)
Link copied to clipboard
open fun stringParameter(customName: String? = null): <Error class: unknown class><Parametrized, <Error class: unknown class><Parametrized, T?>>
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
open override fun validate(consumer: ErrorConsumer)

Validates this object and reports found errors to the provided consumer