
com.pulumi.azurenative.documentdb.kotlin.outputs.FirewallRulePropertiesResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.documentdb.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The properties of a mongo cluster firewall rule.
* @property endIpAddress The end IP address of the mongo cluster firewall rule. Must be IPv4 format.
* @property provisioningState The provisioning state of the firewall rule.
* @property startIpAddress The start IP address of the mongo cluster firewall rule. Must be IPv4 format.
*/
public data class FirewallRulePropertiesResponse(
public val endIpAddress: String,
public val provisioningState: String,
public val startIpAddress: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.documentdb.outputs.FirewallRulePropertiesResponse): FirewallRulePropertiesResponse = FirewallRulePropertiesResponse(
endIpAddress = javaType.endIpAddress(),
provisioningState = javaType.provisioningState(),
startIpAddress = javaType.startIpAddress(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy