com.pulumi.gcp.accesscontextmanager.kotlin.outputs.ServicePerimetersServicePerimeterStatusEgressPolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.accesscontextmanager.kotlin.outputs
import kotlin.Suppress
/**
*
* @property egressFrom Defines conditions on the source of a request causing this `EgressPolicy` to apply.
* Structure is documented below.
* @property egressTo Defines the conditions on the `ApiOperation` and destination resources that
* cause this `EgressPolicy` to apply.
* Structure is documented below.
*/
public data class ServicePerimetersServicePerimeterStatusEgressPolicy(
public val egressFrom: ServicePerimetersServicePerimeterStatusEgressPolicyEgressFrom? = null,
public val egressTo: ServicePerimetersServicePerimeterStatusEgressPolicyEgressTo? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.accesscontextmanager.outputs.ServicePerimetersServicePerimeterStatusEgressPolicy): ServicePerimetersServicePerimeterStatusEgressPolicy =
ServicePerimetersServicePerimeterStatusEgressPolicy(
egressFrom = javaType.egressFrom().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.accesscontextmanager.kotlin.outputs.ServicePerimetersServicePerimeterStatusEgressPolicyEgressFrom.Companion.toKotlin(args0)
})
}).orElse(null),
egressTo = javaType.egressTo().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.accesscontextmanager.kotlin.outputs.ServicePerimetersServicePerimeterStatusEgressPolicyEgressTo.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy