com.pulumi.gcp.bigquery.kotlin.outputs.JobQueryScriptOptions.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
/**
*
* @property keyResultStatement Determines which statement in the script represents the "key result",
* used to populate the schema and query results of the script job.
* Possible values are: `LAST`, `FIRST_SELECT`.
* @property statementByteBudget Limit on the number of bytes billed per statement. Exceeding this budget results in an error.
* @property statementTimeoutMs Timeout period for each statement in a script.
*/
public data class JobQueryScriptOptions(
public val keyResultStatement: String? = null,
public val statementByteBudget: String? = null,
public val statementTimeoutMs: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.bigquery.outputs.JobQueryScriptOptions): JobQueryScriptOptions = JobQueryScriptOptions(
keyResultStatement = javaType.keyResultStatement().map({ args0 -> args0 }).orElse(null),
statementByteBudget = javaType.statementByteBudget().map({ args0 -> args0 }).orElse(null),
statementTimeoutMs = javaType.statementTimeoutMs().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy