
com.pulumi.gcp.bigquery.kotlin.outputs.GetTablesResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.bigquery.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* A collection of values returned by getTables.
* @property datasetId
* @property id The provider-assigned unique ID for this managed resource.
* @property project
* @property tables A list of all retrieved BigQuery tables. Structure is defined below.
*/
public data class GetTablesResult(
public val datasetId: String,
public val id: String,
public val project: String? = null,
public val tables: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.bigquery.outputs.GetTablesResult): GetTablesResult = GetTablesResult(
datasetId = javaType.datasetId(),
id = javaType.id(),
project = javaType.project().map({ args0 -> args0 }).orElse(null),
tables = javaType.tables().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.bigquery.kotlin.outputs.GetTablesTable.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy