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

com.pulumi.azure.network.kotlin.outputs.ApplicationGatewayPrivateLinkConfiguration.kt Maven / Gradle / Ivy

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

package com.pulumi.azure.network.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property id The ID of the Rewrite Rule Set
 * @property ipConfigurations One or more `ip_configuration` blocks as defined below.
 * > **Please Note**: The `AllowApplicationGatewayPrivateLink` feature must be registered on the subscription before enabling private link
 * ```bash
 * az feature register --name AllowApplicationGatewayPrivateLink --namespace Microsoft.Network
 * ```
 * @property name The name of the private link configuration.
 */
public data class ApplicationGatewayPrivateLinkConfiguration(
    public val id: String? = null,
    public val ipConfigurations: List,
    public val name: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.network.outputs.ApplicationGatewayPrivateLinkConfiguration):
            ApplicationGatewayPrivateLinkConfiguration = ApplicationGatewayPrivateLinkConfiguration(
            id = javaType.id().map({ args0 -> args0 }).orElse(null),
            ipConfigurations = javaType.ipConfigurations().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.network.kotlin.outputs.ApplicationGatewayPrivateLinkConfigurationIpConfiguration.Companion.toKotlin(args0)
                })
            }),
            name = javaType.name(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy