com.pulumi.azure.appservice.kotlin.outputs.GetAppServiceSiteConfigIpRestriction.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.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