![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerapp.kotlin.outputs.GetAppIngressIpSecurityRestriction.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.containerapp.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property action The IP-filter action.
* @property description Description of the IP restriction rule that is being sent to the container-app.
* @property ipAddressRange CIDR notation that matches the incoming IP address.
* @property name The name of the Container App.
*/
public data class GetAppIngressIpSecurityRestriction(
public val action: String,
public val description: String,
public val ipAddressRange: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerapp.outputs.GetAppIngressIpSecurityRestriction): GetAppIngressIpSecurityRestriction = GetAppIngressIpSecurityRestriction(
action = javaType.action(),
description = javaType.description(),
ipAddressRange = javaType.ipAddressRange(),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy