![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logic.kotlin.inputs.FlowEndpointsArgs.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.logic.kotlin.inputs
import com.pulumi.azurenative.logic.inputs.FlowEndpointsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The flow endpoints configuration.
* @property accessEndpointIpAddresses The access endpoint ip address.
* @property outgoingIpAddresses The outgoing ip address.
*/
public data class FlowEndpointsArgs(
public val accessEndpointIpAddresses: Output>? = null,
public val outgoingIpAddresses: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.logic.inputs.FlowEndpointsArgs =
com.pulumi.azurenative.logic.inputs.FlowEndpointsArgs.builder()
.accessEndpointIpAddresses(
accessEndpointIpAddresses?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.outgoingIpAddresses(
outgoingIpAddresses?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
).build()
}
/**
* Builder for [FlowEndpointsArgs].
*/
@PulumiTagMarker
public class FlowEndpointsArgsBuilder internal constructor() {
private var accessEndpointIpAddresses: Output>? = null
private var outgoingIpAddresses: Output>? = null
/**
* @param value The access endpoint ip address.
*/
@JvmName("ygwguwcfvotvqrjm")
public suspend fun accessEndpointIpAddresses(`value`: Output>) {
this.accessEndpointIpAddresses = value
}
@JvmName("jrfklnjgufbkbrrr")
public suspend fun accessEndpointIpAddresses(vararg values: Output) {
this.accessEndpointIpAddresses = Output.all(values.asList())
}
/**
* @param values The access endpoint ip address.
*/
@JvmName("asppvewymkoyawxo")
public suspend fun accessEndpointIpAddresses(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy