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

com.pulumi.googlenative.bigquery.v2.kotlin.outputs.DatasetReferenceResponse.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.bigquery.v2.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property datasetId [Required] A unique ID for this dataset, without the project name. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.
 * @property project [Optional] The ID of the project containing this dataset.
 */
public data class DatasetReferenceResponse(
    public val datasetId: String,
    public val project: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.bigquery.v2.outputs.DatasetReferenceResponse): DatasetReferenceResponse = DatasetReferenceResponse(
            datasetId = javaType.datasetId(),
            project = javaType.project(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy