GitPatternRepositoryResponse

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

Git repository property payload for config server

Constructors

Link copied to clipboard
constructor(hostKey: String? = null, hostKeyAlgorithm: String? = null, label: String? = null, name: String, password: String? = null, pattern: List<String>? = null, 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 hostKey: String? = null

Public sshKey of git repository.

Link copied to clipboard

SshKey algorithm of git repository.

Link copied to clipboard
val label: String? = null

Label of the repository

Link copied to clipboard

Name of the repository

Link copied to clipboard
val password: String? = null

Password of git repository basic auth.

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

Collection of pattern of the repository

Link copied to clipboard
val privateKey: String? = null

Private sshKey algorithm of git repository.

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

Searching path of the repository

Link copied to clipboard

Strict host key checking or not.

Link copied to clipboard
val uri: String

URI of the repository

Link copied to clipboard
val username: String? = null

Username of git repository basic auth.