![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.appservice.kotlin.outputs.EnvironmentV3InboundNetworkDependency.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.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 EnvironmentV3InboundNetworkDependency(
public val description: String? = null,
public val ipAddresses: List? = null,
public val ports: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.EnvironmentV3InboundNetworkDependency): EnvironmentV3InboundNetworkDependency = EnvironmentV3InboundNetworkDependency(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
ipAddresses = javaType.ipAddresses().map({ args0 -> args0 }),
ports = javaType.ports().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy