com.pulumi.azure.appservice.kotlin.outputs.GetEnvironmentV3InboundNetworkDependency.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.appservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property description A short description of the purpose of the network traffic.
* @property ipAddresses A list of IP addresses that network traffic will originate from in CIDR notation.
* @property ports The ports that network traffic will arrive to the App Service Environment V3 on.
*/
public data class GetEnvironmentV3InboundNetworkDependency(
public val description: String,
public val ipAddresses: List,
public val ports: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetEnvironmentV3InboundNetworkDependency): GetEnvironmentV3InboundNetworkDependency = GetEnvironmentV3InboundNetworkDependency(
description = javaType.description(),
ipAddresses = javaType.ipAddresses().map({ args0 -> args0 }),
ports = javaType.ports().map({ args0 -> args0 }),
)
}
}