com.pulumi.gcp.vertex.kotlin.outputs.AiEndpointPredictRequestResponseLoggingConfigBigqueryDestination.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.vertex.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property outputUri BigQuery URI to a project or table, up to 2000 characters long. When only the project is specified, the Dataset and Table is created. When the full table reference is specified, the Dataset must exist and table must not exist. Accepted forms: - BigQuery path. For example: `bq://projectId` or `bq://projectId.bqDatasetId` or `bq://projectId.bqDatasetId.bqTableId`.
*/
public data class AiEndpointPredictRequestResponseLoggingConfigBigqueryDestination(
public val outputUri: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vertex.outputs.AiEndpointPredictRequestResponseLoggingConfigBigqueryDestination): AiEndpointPredictRequestResponseLoggingConfigBigqueryDestination =
AiEndpointPredictRequestResponseLoggingConfigBigqueryDestination(
outputUri = javaType.outputUri().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy