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

com.pulumi.gcp.logging.kotlin.inputs.LinkedDatasetBigqueryDatasetArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.logging.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.logging.inputs.LinkedDatasetBigqueryDatasetArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property datasetId (Output)
 * Output only. The full resource name of the BigQuery dataset. The DATASET_ID will match the ID
 * of the link, so the link must match the naming restrictions of BigQuery datasets
 * (alphanumeric characters and underscores only). The dataset will have a resource path of
 * "bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET_ID]"
 */
public data class LinkedDatasetBigqueryDatasetArgs(
    public val datasetId: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.logging.inputs.LinkedDatasetBigqueryDatasetArgs =
        com.pulumi.gcp.logging.inputs.LinkedDatasetBigqueryDatasetArgs.builder()
            .datasetId(datasetId?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [LinkedDatasetBigqueryDatasetArgs].
 */
@PulumiTagMarker
public class LinkedDatasetBigqueryDatasetArgsBuilder internal constructor() {
    private var datasetId: Output? = null

    /**
     * @param value (Output)
     * Output only. The full resource name of the BigQuery dataset. The DATASET_ID will match the ID
     * of the link, so the link must match the naming restrictions of BigQuery datasets
     * (alphanumeric characters and underscores only). The dataset will have a resource path of
     * "bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET_ID]"
     */
    @JvmName("mmhbdntrwjmiudis")
    public suspend fun datasetId(`value`: Output) {
        this.datasetId = value
    }

    /**
     * @param value (Output)
     * Output only. The full resource name of the BigQuery dataset. The DATASET_ID will match the ID
     * of the link, so the link must match the naming restrictions of BigQuery datasets
     * (alphanumeric characters and underscores only). The dataset will have a resource path of
     * "bigquery.googleapis.com/projects/[PROJECT_ID]/datasets/[DATASET_ID]"
     */
    @JvmName("lbtxbkhgyxkkdmqa")
    public suspend fun datasetId(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.datasetId = mapped
    }

    internal fun build(): LinkedDatasetBigqueryDatasetArgs = LinkedDatasetBigqueryDatasetArgs(
        datasetId = datasetId,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy