All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.documentdb.kotlin.inputs.ExcludedPathArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.documentdb.kotlin.inputs

import com.pulumi.azurenative.documentdb.inputs.ExcludedPathArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property path The path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)
 * */
 */
public data class ExcludedPathArgs(
    public val path: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.documentdb.inputs.ExcludedPathArgs =
        com.pulumi.azurenative.documentdb.inputs.ExcludedPathArgs.builder()
            .path(path?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ExcludedPathArgs].
 */
@PulumiTagMarker
public class ExcludedPathArgsBuilder internal constructor() {
    private var path: Output? = null

    /**
     * @param value The path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)
     * */
     */
    @JvmName("xbgutudwatiwsxmn")
    public suspend fun path(`value`: Output) {
        this.path = value
    }

    /**
     * @param value The path for which the indexing behavior applies to. Index paths typically start with root and end with wildcard (/path/*)
     * */
     */
    @JvmName("ywgidayxuorgqrmw")
    public suspend fun path(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.path = mapped
    }

    internal fun build(): ExcludedPathArgs = ExcludedPathArgs(
        path = path,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy