com.pulumi.googlenative.bigquery.v2.kotlin.outputs.TableReferenceResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.bigquery.v2.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property datasetId [Required] The ID of the dataset containing this table.
* @property project [Required] The ID of the project containing this table.
* @property tableId [Required] The ID of the table. The ID must contain only letters (a-z, A-Z), numbers (0-9), or underscores (_). The maximum length is 1,024 characters.
*/
public data class TableReferenceResponse(
public val datasetId: String,
public val project: String,
public val tableId: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.bigquery.v2.outputs.TableReferenceResponse): TableReferenceResponse = TableReferenceResponse(
datasetId = javaType.datasetId(),
project = javaType.project(),
tableId = javaType.tableId(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy