com.pulumi.azure.appplatform.kotlin.outputs.GetSpringCloudServiceConfigServerGitSettingSshAuth.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appplatform.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property hostKey The host key of the Git repository server.
* @property hostKeyAlgorithm The host key algorithm.
* @property privateKey The SSH private key to access the Git repository, needed when the URI starts with `git@` or `ssh://`.
* @property strictHostKeyCheckingEnabled Indicates whether the Config Server instance will fail to start if the host_key does not match.
*/
public data class GetSpringCloudServiceConfigServerGitSettingSshAuth(
public val hostKey: String,
public val hostKeyAlgorithm: String,
public val privateKey: String,
public val strictHostKeyCheckingEnabled: Boolean,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appplatform.outputs.GetSpringCloudServiceConfigServerGitSettingSshAuth):
GetSpringCloudServiceConfigServerGitSettingSshAuth =
GetSpringCloudServiceConfigServerGitSettingSshAuth(
hostKey = javaType.hostKey(),
hostKeyAlgorithm = javaType.hostKeyAlgorithm(),
privateKey = javaType.privateKey(),
strictHostKeyCheckingEnabled = javaType.strictHostKeyCheckingEnabled(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy