jetbrains.buildServer.configs.kotlin.v2017_2.projectFeatures / DockerRegistryConnection

DockerRegistryConnection

open class DockerRegistryConnection : ProjectFeature

This connection is used in Docker Support build feature.

See Also

DockerSupportFeature

dockerRegistry

Constructors

<init>

DockerRegistryConnection(init: DockerRegistryConnection.() -> Unit)DockerRegistryConnection()

This connection is used in Docker Support build feature.

Properties

name

var name: String?

Docker registry connection display name

password

var password: String?

url

var url: String?

Docker registry URL, like 'https://docker.io'

userName

var userName: String?

Inherited Properties

id

var id: String?

Project feature id, if not specified will be generated

type

var type: String

Project feature type

Functions

validate

open fun validate(consumer: ErrorConsumer): Unit

Validates this object and reports found errors to the provided consumer

Inherited Functions

create

open fun create(): ProjectFeature

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.

toString

open fun toString(): String