RegistryTaskSourceTrigger

data class RegistryTaskSourceTrigger(val authentication: RegistryTaskSourceTriggerAuthentication? = null, val branch: String? = null, val enabled: Boolean? = null, val events: List<String>, val name: String, val repositoryUrl: String, val sourceType: String)

Constructors

Link copied to clipboard
constructor(authentication: RegistryTaskSourceTriggerAuthentication? = null, branch: String? = null, enabled: Boolean? = null, events: List<String>, name: String, repositoryUrl: String, sourceType: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A authentication block as defined above.

Link copied to clipboard
val branch: String? = null

The branch name of the source code.

Link copied to clipboard
val enabled: Boolean? = null

Should the trigger be enabled? Defaults to true.

Link copied to clipboard

Specifies a list of source events corresponding to the trigger. Possible values are commit and pullrequest.

Link copied to clipboard

The name which should be used for this trigger.

Link copied to clipboard

The full URL to the source code repository.

Link copied to clipboard

The type of the source control service. Possible values are Github and VisualStudioTeamService.