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

com.pulumi.azurenative.datashare.kotlin.inputs.TableLevelSharingPropertiesArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.azurenative.datashare.kotlin.inputs

import com.pulumi.azurenative.datashare.inputs.TableLevelSharingPropertiesArgs.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.collections.List
import kotlin.jvm.JvmName

/**
 * Table level sharing properties dto for kusto data set properties
 * @property externalTablesToExclude External tables to be excluded in the data set
 * @property externalTablesToInclude External tables to be included in the data set
 * @property materializedViewsToExclude Materialized views to be excluded in the data set
 * @property materializedViewsToInclude Materialized views to be included in the data set
 * @property tablesToExclude Tables to be excluded in the data set
 * @property tablesToInclude Tables to be included in the data set
 */
public data class TableLevelSharingPropertiesArgs(
    public val externalTablesToExclude: Output>? = null,
    public val externalTablesToInclude: Output>? = null,
    public val materializedViewsToExclude: Output>? = null,
    public val materializedViewsToInclude: Output>? = null,
    public val tablesToExclude: Output>? = null,
    public val tablesToInclude: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azurenative.datashare.inputs.TableLevelSharingPropertiesArgs =
        com.pulumi.azurenative.datashare.inputs.TableLevelSharingPropertiesArgs.builder()
            .externalTablesToExclude(
                externalTablesToExclude?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0
                    })
                }),
            )
            .externalTablesToInclude(
                externalTablesToInclude?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0
                    })
                }),
            )
            .materializedViewsToExclude(
                materializedViewsToExclude?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0
                    })
                }),
            )
            .materializedViewsToInclude(
                materializedViewsToInclude?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0
                    })
                }),
            )
            .tablesToExclude(tablesToExclude?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .tablesToInclude(tablesToInclude?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}

/**
 * Builder for [TableLevelSharingPropertiesArgs].
 */
@PulumiTagMarker
public class TableLevelSharingPropertiesArgsBuilder internal constructor() {
    private var externalTablesToExclude: Output>? = null

    private var externalTablesToInclude: Output>? = null

    private var materializedViewsToExclude: Output>? = null

    private var materializedViewsToInclude: Output>? = null

    private var tablesToExclude: Output>? = null

    private var tablesToInclude: Output>? = null

    /**
     * @param value External tables to be excluded in the data set
     */
    @JvmName("uvrewursevresess")
    public suspend fun externalTablesToExclude(`value`: Output>) {
        this.externalTablesToExclude = value
    }

    @JvmName("wnqgiyogtabmdjah")
    public suspend fun externalTablesToExclude(vararg values: Output) {
        this.externalTablesToExclude = Output.all(values.asList())
    }

    /**
     * @param values External tables to be excluded in the data set
     */
    @JvmName("sdvjaisodtriviie")
    public suspend fun externalTablesToExclude(values: List>) {
        this.externalTablesToExclude = Output.all(values)
    }

    /**
     * @param value External tables to be included in the data set
     */
    @JvmName("qikiuwscpaumlxjm")
    public suspend fun externalTablesToInclude(`value`: Output>) {
        this.externalTablesToInclude = value
    }

    @JvmName("kqtmsjxmusncsgfc")
    public suspend fun externalTablesToInclude(vararg values: Output) {
        this.externalTablesToInclude = Output.all(values.asList())
    }

    /**
     * @param values External tables to be included in the data set
     */
    @JvmName("wwqevveqbkjqxvho")
    public suspend fun externalTablesToInclude(values: List>) {
        this.externalTablesToInclude = Output.all(values)
    }

    /**
     * @param value Materialized views to be excluded in the data set
     */
    @JvmName("muoajsajralolacs")
    public suspend fun materializedViewsToExclude(`value`: Output>) {
        this.materializedViewsToExclude = value
    }

    @JvmName("ycqbndseirnyyawv")
    public suspend fun materializedViewsToExclude(vararg values: Output) {
        this.materializedViewsToExclude = Output.all(values.asList())
    }

    /**
     * @param values Materialized views to be excluded in the data set
     */
    @JvmName("tvopfjonstosaqql")
    public suspend fun materializedViewsToExclude(values: List>) {
        this.materializedViewsToExclude = Output.all(values)
    }

    /**
     * @param value Materialized views to be included in the data set
     */
    @JvmName("mxxudacsaiminwep")
    public suspend fun materializedViewsToInclude(`value`: Output>) {
        this.materializedViewsToInclude = value
    }

    @JvmName("xfvoqiejrdjobouw")
    public suspend fun materializedViewsToInclude(vararg values: Output) {
        this.materializedViewsToInclude = Output.all(values.asList())
    }

    /**
     * @param values Materialized views to be included in the data set
     */
    @JvmName("akgcbiuanikoutlo")
    public suspend fun materializedViewsToInclude(values: List>) {
        this.materializedViewsToInclude = Output.all(values)
    }

    /**
     * @param value Tables to be excluded in the data set
     */
    @JvmName("wbyvmorvuvtdandf")
    public suspend fun tablesToExclude(`value`: Output>) {
        this.tablesToExclude = value
    }

    @JvmName("sxbafdqsilkijbqp")
    public suspend fun tablesToExclude(vararg values: Output) {
        this.tablesToExclude = Output.all(values.asList())
    }

    /**
     * @param values Tables to be excluded in the data set
     */
    @JvmName("uwsqusgwvfcvspxd")
    public suspend fun tablesToExclude(values: List>) {
        this.tablesToExclude = Output.all(values)
    }

    /**
     * @param value Tables to be included in the data set
     */
    @JvmName("bsharwojpgbthvvq")
    public suspend fun tablesToInclude(`value`: Output>) {
        this.tablesToInclude = value
    }

    @JvmName("rmltbkvhheqttyji")
    public suspend fun tablesToInclude(vararg values: Output) {
        this.tablesToInclude = Output.all(values.asList())
    }

    /**
     * @param values Tables to be included in the data set
     */
    @JvmName("pnnuagwernqjmrna")
    public suspend fun tablesToInclude(values: List>) {
        this.tablesToInclude = Output.all(values)
    }

    /**
     * @param value External tables to be excluded in the data set
     */
    @JvmName("rsdqrgmcxwswspkp")
    public suspend fun externalTablesToExclude(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.externalTablesToExclude = mapped
    }

    /**
     * @param values External tables to be excluded in the data set
     */
    @JvmName("oeeovnyjbbddpkea")
    public suspend fun externalTablesToExclude(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.externalTablesToExclude = mapped
    }

    /**
     * @param value External tables to be included in the data set
     */
    @JvmName("kcnppxsdvbjtmwnc")
    public suspend fun externalTablesToInclude(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.externalTablesToInclude = mapped
    }

    /**
     * @param values External tables to be included in the data set
     */
    @JvmName("eakgsmpntwespdsv")
    public suspend fun externalTablesToInclude(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.externalTablesToInclude = mapped
    }

    /**
     * @param value Materialized views to be excluded in the data set
     */
    @JvmName("jcghgxphukoxyudy")
    public suspend fun materializedViewsToExclude(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.materializedViewsToExclude = mapped
    }

    /**
     * @param values Materialized views to be excluded in the data set
     */
    @JvmName("plmkcghtvskieuov")
    public suspend fun materializedViewsToExclude(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.materializedViewsToExclude = mapped
    }

    /**
     * @param value Materialized views to be included in the data set
     */
    @JvmName("ffkasmomjtomhxtw")
    public suspend fun materializedViewsToInclude(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.materializedViewsToInclude = mapped
    }

    /**
     * @param values Materialized views to be included in the data set
     */
    @JvmName("lwnwdkswrsjfsesa")
    public suspend fun materializedViewsToInclude(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.materializedViewsToInclude = mapped
    }

    /**
     * @param value Tables to be excluded in the data set
     */
    @JvmName("nkegqmkfogpjskba")
    public suspend fun tablesToExclude(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tablesToExclude = mapped
    }

    /**
     * @param values Tables to be excluded in the data set
     */
    @JvmName("secjbgfistggldtb")
    public suspend fun tablesToExclude(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tablesToExclude = mapped
    }

    /**
     * @param value Tables to be included in the data set
     */
    @JvmName("epsqgtbaoondxqjx")
    public suspend fun tablesToInclude(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.tablesToInclude = mapped
    }

    /**
     * @param values Tables to be included in the data set
     */
    @JvmName("tyhtgwkcnhkifgkd")
    public suspend fun tablesToInclude(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.tablesToInclude = mapped
    }

    internal fun build(): TableLevelSharingPropertiesArgs = TableLevelSharingPropertiesArgs(
        externalTablesToExclude = externalTablesToExclude,
        externalTablesToInclude = externalTablesToInclude,
        materializedViewsToExclude = materializedViewsToExclude,
        materializedViewsToInclude = materializedViewsToInclude,
        tablesToExclude = tablesToExclude,
        tablesToInclude = tablesToInclude,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy