com.pulumi.azure.hdinsight.kotlin.inputs.HadoopClusterRolesEdgeNodeHttpsEndpointArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.hdinsight.kotlin.inputs
import com.pulumi.azure.hdinsight.inputs.HadoopClusterRolesEdgeNodeHttpsEndpointArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @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 HadoopClusterRolesEdgeNodeHttpsEndpointArgs(
public val accessModes: Output>? = null,
public val destinationPort: Output? = null,
public val disableGatewayAuth: Output? = null,
public val privateIpAddress: Output? = null,
public val subDomainSuffix: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.hdinsight.inputs.HadoopClusterRolesEdgeNodeHttpsEndpointArgs =
com.pulumi.azure.hdinsight.inputs.HadoopClusterRolesEdgeNodeHttpsEndpointArgs.builder()
.accessModes(accessModes?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.destinationPort(destinationPort?.applyValue({ args0 -> args0 }))
.disableGatewayAuth(disableGatewayAuth?.applyValue({ args0 -> args0 }))
.privateIpAddress(privateIpAddress?.applyValue({ args0 -> args0 }))
.subDomainSuffix(subDomainSuffix?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HadoopClusterRolesEdgeNodeHttpsEndpointArgs].
*/
@PulumiTagMarker
public class HadoopClusterRolesEdgeNodeHttpsEndpointArgsBuilder internal constructor() {
private var accessModes: Output>? = null
private var destinationPort: Output? = null
private var disableGatewayAuth: Output? = null
private var privateIpAddress: Output? = null
private var subDomainSuffix: Output? = null
/**
* @param value A list of access modes for the application.
*/
@JvmName("ggssvsjfcpghdxdb")
public suspend fun accessModes(`value`: Output>) {
this.accessModes = value
}
@JvmName("nwmpxmmfwvpqmkeb")
public suspend fun accessModes(vararg values: Output) {
this.accessModes = Output.all(values.asList())
}
/**
* @param values A list of access modes for the application.
*/
@JvmName("xmdipocntxpccjct")
public suspend fun accessModes(values: List