com.pulumi.gcp.securesourcemanager.kotlin.outputs.InstanceHostConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.securesourcemanager.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property api (Output)
* API hostname.
* @property gitHttp (Output)
* Git HTTP hostname.
* @property gitSsh (Output)
* Git SSH hostname.
* @property html (Output)
* HTML hostname.
*/
public data class InstanceHostConfig(
public val api: String? = null,
public val gitHttp: String? = null,
public val gitSsh: String? = null,
public val html: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.securesourcemanager.outputs.InstanceHostConfig): InstanceHostConfig = InstanceHostConfig(
api = javaType.api().map({ args0 -> args0 }).orElse(null),
gitHttp = javaType.gitHttp().map({ args0 -> args0 }).orElse(null),
gitSsh = javaType.gitSsh().map({ args0 -> args0 }).orElse(null),
html = javaType.html().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy