com.pulumi.gitlab.kotlin.outputs.GetMetadataKas.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gitlab-kotlin Show documentation
Show all versions of pulumi-gitlab-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.gitlab.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property enabled Indicates whether KAS is enabled.
* @property externalK8sProxyUrl URL used by the Kubernetes tooling to communicate with the KAS Kubernetes API proxy. It’s null if kas.enabled is false.
* @property externalUrl URL used by the agents to communicate with KAS. It’s null if kas.enabled is false.
* @property version Version of KAS. It’s null if kas.enabled is false.
*/
public data class GetMetadataKas(
public val enabled: Boolean,
public val externalK8sProxyUrl: String,
public val externalUrl: String,
public val version: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetMetadataKas): GetMetadataKas =
GetMetadataKas(
enabled = javaType.enabled(),
externalK8sProxyUrl = javaType.externalK8sProxyUrl(),
externalUrl = javaType.externalUrl(),
version = javaType.version(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy