![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datalakeanalytics.kotlin.outputs.GetFirewallRuleResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.datalakeanalytics.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* Data Lake Analytics firewall rule information.
* @property endIpAddress The end IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.
* @property id The resource identifier.
* @property name The resource name.
* @property startIpAddress The start IP address for the firewall rule. This can be either ipv4 or ipv6. Start and End should be in the same protocol.
* @property type The resource type.
*/
public data class GetFirewallRuleResult(
public val endIpAddress: String,
public val id: String,
public val name: String,
public val startIpAddress: String,
public val type: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.datalakeanalytics.outputs.GetFirewallRuleResult): GetFirewallRuleResult = GetFirewallRuleResult(
endIpAddress = javaType.endIpAddress(),
id = javaType.id(),
name = javaType.name(),
startIpAddress = javaType.startIpAddress(),
type = javaType.type(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy