SpringCloudConfigurationServiceRepository

data class SpringCloudConfigurationServiceRepository(val caCertificateId: String? = null, val hostKey: String? = null, val hostKeyAlgorithm: String? = null, val label: String, val name: String, val password: String? = null, val patterns: List<String>, val privateKey: String? = null, val searchPaths: List<String>? = null, val strictHostKeyChecking: Boolean? = null, val uri: String, val username: String? = null)

Constructors

constructor(caCertificateId: String? = null, hostKey: String? = null, hostKeyAlgorithm: String? = null, label: String, name: String, password: String? = null, patterns: List<String>, privateKey: String? = null, searchPaths: List<String>? = null, strictHostKeyChecking: Boolean? = null, uri: String, username: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val caCertificateId: String? = null

Specifies the ID of the Certificate Authority used when retrieving the Git Repository via HTTPS.

Link copied to clipboard
val hostKey: String? = null

Specifies the SSH public key of git repository.

Link copied to clipboard

Specifies the SSH key algorithm of git repository.

Link copied to clipboard

Specifies the label of the repository.

Link copied to clipboard

Specifies the name which should be used for this repository.

Link copied to clipboard
val password: String? = null

Specifies the password of git repository basic auth.

Link copied to clipboard

Specifies the collection of patterns of the repository.

Link copied to clipboard
val privateKey: String? = null

Specifies the SSH private key of git repository.

Link copied to clipboard
val searchPaths: List<String>? = null

Specifies a list of searching path of the repository

Link copied to clipboard

Specifies whether enable the strict host key checking.

Link copied to clipboard
val uri: String

Specifies the URI of the repository.

Link copied to clipboard
val username: String? = null

Specifies the username of git repository basic auth.