![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.networkcloud.kotlin.inputs.EgressEndpointArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.networkcloud.kotlin.inputs
import com.pulumi.azurenative.networkcloud.inputs.EgressEndpointArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property category The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
* @property endpoints The list of endpoint dependencies.
*/
public data class EgressEndpointArgs(
public val category: Output,
public val endpoints: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.networkcloud.inputs.EgressEndpointArgs =
com.pulumi.azurenative.networkcloud.inputs.EgressEndpointArgs.builder()
.category(category.applyValue({ args0 -> args0 }))
.endpoints(
endpoints.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [EgressEndpointArgs].
*/
@PulumiTagMarker
public class EgressEndpointArgsBuilder internal constructor() {
private var category: Output? = null
private var endpoints: Output>? = null
/**
* @param value The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
*/
@JvmName("yeucmgkneayknqef")
public suspend fun category(`value`: Output) {
this.category = value
}
/**
* @param value The list of endpoint dependencies.
*/
@JvmName("pttjewfyuokkitak")
public suspend fun endpoints(`value`: Output>) {
this.endpoints = value
}
@JvmName("lmpmlnwmgjnrbfff")
public suspend fun endpoints(vararg values: Output) {
this.endpoints = Output.all(values.asList())
}
/**
* @param values The list of endpoint dependencies.
*/
@JvmName("ejudummlgbjtlalt")
public suspend fun endpoints(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy