![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.hdinsight.kotlin.outputs.HadoopClusterRolesEdgeNodeHttpsEndpoint.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.hdinsight.kotlin.outputs
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property accessModes A list of access modes for the application.
* @property destinationPort The destination port to connect to.
* @property disableGatewayAuth The value indicates whether the gateway authentication is enabled or not.
* @property privateIpAddress The private ip address of the endpoint.
* @property subDomainSuffix The application's subdomain suffix.
*/
public data class HadoopClusterRolesEdgeNodeHttpsEndpoint(
public val accessModes: List? = null,
public val destinationPort: Int? = null,
public val disableGatewayAuth: Boolean? = null,
public val privateIpAddress: String? = null,
public val subDomainSuffix: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.hdinsight.outputs.HadoopClusterRolesEdgeNodeHttpsEndpoint): HadoopClusterRolesEdgeNodeHttpsEndpoint = HadoopClusterRolesEdgeNodeHttpsEndpoint(
accessModes = javaType.accessModes().map({ args0 -> args0 }),
destinationPort = javaType.destinationPort().map({ args0 -> args0 }).orElse(null),
disableGatewayAuth = javaType.disableGatewayAuth().map({ args0 -> args0 }).orElse(null),
privateIpAddress = javaType.privateIpAddress().map({ args0 -> args0 }).orElse(null),
subDomainSuffix = javaType.subDomainSuffix().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy