ConfigurationServiceGitRepositoryResponse

data class ConfigurationServiceGitRepositoryResponse(val caCertResourceId: String? = null, val gitImplementation: 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)

Git repository property payload for Application Configuration Service

Constructors

constructor(caCertResourceId: String? = null, gitImplementation: 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

Resource Id of CA certificate for https URL of Git repository.

Link copied to clipboard

Git libraries used to support various repository providers

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

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

Collection of patterns 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.