All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.appplatform.kotlin.outputs.GetSpringCloudServiceConfigServerGitSettingSshAuth.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.14.0.0
Show newest version
@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