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

com.pulumi.azure.containerapp.kotlin.outputs.GetAppIngressIpSecurityRestriction.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@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