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

com.pulumi.gitlab.kotlin.outputs.GetMetadataKas.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.4.2.0
Show newest version
@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 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 externalUrl: String,
    public val version: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetMetadataKas): GetMetadataKas =
            GetMetadataKas(
                enabled = javaType.enabled(),
                externalUrl = javaType.externalUrl(),
                version = javaType.version(),
            )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy