com.pulumi.azure.network.kotlin.outputs.GetApplicationGatewayPrivateEndpointConnection.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.network.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property id The ID of the Rewrite Rule Set
* @property name The name of this Application Gateway.
*/
public data class GetApplicationGatewayPrivateEndpointConnection(
public val id: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.network.outputs.GetApplicationGatewayPrivateEndpointConnection): GetApplicationGatewayPrivateEndpointConnection =
GetApplicationGatewayPrivateEndpointConnection(
id = javaType.id(),
name = javaType.name(),
)
}
}