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

com.pulumi.azure.appservice.kotlin.outputs.GetAppServiceSiteConfigIpRestriction.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.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.appservice.kotlin.outputs

import kotlin.Int
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property action Allow or Deny access for this IP range. Defaults to Allow.
 * @property headers
 * @property ipAddress The IP Address used for this IP Restriction in CIDR notation.
 * @property name The name of the App Service.
 * @property priority The priority for this IP Restriction.
 * @property serviceTag The Service Tag used for this IP Restriction.
 * @property virtualNetworkSubnetId The Virtual Network Subnet ID used for this IP Restriction.
 */
public data class GetAppServiceSiteConfigIpRestriction(
    public val action: String,
    public val headers: GetAppServiceSiteConfigIpRestrictionHeaders,
    public val ipAddress: String,
    public val name: String,
    public val priority: Int,
    public val serviceTag: String,
    public val virtualNetworkSubnetId: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.appservice.outputs.GetAppServiceSiteConfigIpRestriction):
            GetAppServiceSiteConfigIpRestriction = GetAppServiceSiteConfigIpRestriction(
            action = javaType.action(),
            headers = javaType.headers().let({ args0 ->
                com.pulumi.azure.appservice.kotlin.outputs.GetAppServiceSiteConfigIpRestrictionHeaders.Companion.toKotlin(args0)
            }),
            ipAddress = javaType.ipAddress(),
            name = javaType.name(),
            priority = javaType.priority(),
            serviceTag = javaType.serviceTag(),
            virtualNetworkSubnetId = javaType.virtualNetworkSubnetId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy