
com.pulumi.googlenative.bigquery.v2.kotlin.outputs.DatasetReferenceResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
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