All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.network.kotlin.inputs.PrivateEndpointIPConfigurationArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.network.kotlin.inputs

import com.pulumi.azurenative.network.inputs.PrivateEndpointIPConfigurationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * An IP Configuration of the private endpoint.
 * @property groupId The ID of a group obtained from the remote resource that this private endpoint should connect to.
 * @property memberName The member name of a group obtained from the remote resource that this private endpoint should connect to.
 * @property name The name of the resource that is unique within a resource group.
 * @property privateIPAddress A private ip address obtained from the private endpoint's subnet.
 */
public data class PrivateEndpointIPConfigurationArgs(
    public val groupId: Output? = null,
    public val memberName: Output? = null,
    public val name: Output? = null,
    public val privateIPAddress: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.network.inputs.PrivateEndpointIPConfigurationArgs =
        com.pulumi.azurenative.network.inputs.PrivateEndpointIPConfigurationArgs.builder()
            .groupId(groupId?.applyValue({ args0 -> args0 }))
            .memberName(memberName?.applyValue({ args0 -> args0 }))
            .name(name?.applyValue({ args0 -> args0 }))
            .privateIPAddress(privateIPAddress?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [PrivateEndpointIPConfigurationArgs].
 */
@PulumiTagMarker
public class PrivateEndpointIPConfigurationArgsBuilder internal constructor() {
    private var groupId: Output? = null

    private var memberName: Output? = null

    private var name: Output? = null

    private var privateIPAddress: Output? = null

    /**
     * @param value The ID of a group obtained from the remote resource that this private endpoint should connect to.
     */
    @JvmName("knnxfgtdeyixiykw")
    public suspend fun groupId(`value`: Output) {
        this.groupId = value
    }

    /**
     * @param value The member name of a group obtained from the remote resource that this private endpoint should connect to.
     */
    @JvmName("oglkjardgtpqvmvj")
    public suspend fun memberName(`value`: Output) {
        this.memberName = value
    }

    /**
     * @param value The name of the resource that is unique within a resource group.
     */
    @JvmName("avnnyycljjkmervd")
    public suspend fun name(`value`: Output) {
        this.name = value
    }

    /**
     * @param value A private ip address obtained from the private endpoint's subnet.
     */
    @JvmName("rmeeuegydpqscprl")
    public suspend fun privateIPAddress(`value`: Output) {
        this.privateIPAddress = value
    }

    /**
     * @param value The ID of a group obtained from the remote resource that this private endpoint should connect to.
     */
    @JvmName("hjumjiuyenekshjn")
    public suspend fun groupId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.groupId = mapped
    }

    /**
     * @param value The member name of a group obtained from the remote resource that this private endpoint should connect to.
     */
    @JvmName("ympqthxhlhdpytrr")
    public suspend fun memberName(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.memberName = mapped
    }

    /**
     * @param value The name of the resource that is unique within a resource group.
     */
    @JvmName("wslobpaajxuyygkv")
    public suspend fun name(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.name = mapped
    }

    /**
     * @param value A private ip address obtained from the private endpoint's subnet.
     */
    @JvmName("jbfacgwnnvwafaxk")
    public suspend fun privateIPAddress(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.privateIPAddress = mapped
    }

    internal fun build(): PrivateEndpointIPConfigurationArgs = PrivateEndpointIPConfigurationArgs(
        groupId = groupId,
        memberName = memberName,
        name = name,
        privateIPAddress = privateIPAddress,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy