com.pulumi.digitalocean.kotlin.outputs.AppSpecIngressRuleMatchPath.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.digitalocean.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property prefix Prefix-based match.
*/
public data class AppSpecIngressRuleMatchPath(
public val prefix: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.AppSpecIngressRuleMatchPath): AppSpecIngressRuleMatchPath = AppSpecIngressRuleMatchPath(
prefix = javaType.prefix().map({ args0 -> args0 }).orElse(null),
)
}
}