com.pulumi.azure.redhatopenshift.kotlin.outputs.ClusterApiServerProfile.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.redhatopenshift.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property ipAddress The IP Address the Ingress Profile is associated with.
* @property url The URL the API Server Profile is associated with.
* @property visibility Cluster API server visibility. Supported values are `Public` and `Private`. Changing this forces a new resource to be created.
*/
public data class ClusterApiServerProfile(
public val ipAddress: String? = null,
public val url: String? = null,
public val visibility: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.redhatopenshift.outputs.ClusterApiServerProfile):
ClusterApiServerProfile = ClusterApiServerProfile(
ipAddress = javaType.ipAddress().map({ args0 -> args0 }).orElse(null),
url = javaType.url().map({ args0 -> args0 }).orElse(null),
visibility = javaType.visibility(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy