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

com.pulumi.gcp.securesourcemanager.kotlin.outputs.InstanceHostConfig.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: 8.10.0.0
Show newest version
@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