com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessPolicyConnectionRules.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-cloudflare-kotlin Show documentation
Show all versions of pulumi-cloudflare-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.cloudflare.kotlin.outputs
import kotlin.Suppress
/**
*
* @property ssh The SSH-specific rules that define how users may connect to the targets secured by your application.
*/
public data class ZeroTrustAccessPolicyConnectionRules(
public val ssh: ZeroTrustAccessPolicyConnectionRulesSsh,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.cloudflare.outputs.ZeroTrustAccessPolicyConnectionRules): ZeroTrustAccessPolicyConnectionRules = ZeroTrustAccessPolicyConnectionRules(
ssh = javaType.ssh().let({ args0 ->
com.pulumi.cloudflare.kotlin.outputs.ZeroTrustAccessPolicyConnectionRulesSsh.Companion.toKotlin(args0)
}),
)
}
}