com.pulumi.digitalocean.kotlin.outputs.GetAppSpecIngressRuleMatchPath.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.digitalocean.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property prefix The `Access-Control-Allow-Origin` header will be set to the client's origin if the beginning of the client's origin matches the value you provide.
*/
public data class GetAppSpecIngressRuleMatchPath(
public val prefix: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.digitalocean.outputs.GetAppSpecIngressRuleMatchPath): GetAppSpecIngressRuleMatchPath = GetAppSpecIngressRuleMatchPath(
prefix = javaType.prefix(),
)
}
}