Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
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.googlenative.bigquery.v2.kotlin
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.bigquery.v2.RoutineArgs.builder
import com.pulumi.googlenative.bigquery.v2.kotlin.enums.RoutineDeterminismLevel
import com.pulumi.googlenative.bigquery.v2.kotlin.enums.RoutineLanguage
import com.pulumi.googlenative.bigquery.v2.kotlin.enums.RoutineRoutineType
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.ArgumentArgs
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.ArgumentArgsBuilder
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.RemoteFunctionOptionsArgs
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.RemoteFunctionOptionsArgsBuilder
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.RoutineReferenceArgs
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.RoutineReferenceArgsBuilder
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.SparkOptionsArgs
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.SparkOptionsArgsBuilder
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.StandardSqlDataTypeArgs
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.StandardSqlDataTypeArgsBuilder
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.StandardSqlTableTypeArgs
import com.pulumi.googlenative.bigquery.v2.kotlin.inputs.StandardSqlTableTypeArgsBuilder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Creates a new routine in the dataset.
* Auto-naming is currently not supported for this resource.
* @property arguments Optional.
* @property datasetId
* @property definitionBody The body of the routine. For functions, this is the expression in the AS clause. If language=SQL, it is the substring inside (but excluding) the parentheses. For example, for the function created with the following statement: `CREATE FUNCTION JoinLines(x string, y string) as (concat(x, "\n", y))` The definition_body is `concat(x, "\n", y)` (\n is not replaced with linebreak). If language=JAVASCRIPT, it is the evaluated string in the AS clause. For example, for the function created with the following statement: `CREATE FUNCTION f() RETURNS STRING LANGUAGE js AS 'return "\n";\n'` The definition_body is `return "\n";\n` Note that both \n are replaced with linebreaks.
* @property description Optional. The description of the routine, if defined.
* @property determinismLevel Optional. The determinism level of the JavaScript UDF, if defined.
* @property importedLibraries Optional. If language = "JAVASCRIPT", this field stores the path of the imported JAVASCRIPT libraries.
* @property language Optional. Defaults to "SQL" if remote_function_options field is absent, not set otherwise.
* @property project
* @property remoteFunctionOptions Optional. Remote function specific options.
* @property returnTableType Optional. Can be set only if routine_type = "TABLE_VALUED_FUNCTION". If absent, the return table type is inferred from definition_body at query time in each query that references this routine. If present, then the columns in the evaluated table result will be cast to match the column types specified in return table type, at query time.
* @property returnType Optional if language = "SQL"; required otherwise. Cannot be set if routine_type = "TABLE_VALUED_FUNCTION". If absent, the return type is inferred from definition_body at query time in each query that references this routine. If present, then the evaluated result will be cast to the specified returned type at query time. For example, for the functions created with the following statements: * `CREATE FUNCTION Add(x FLOAT64, y FLOAT64) RETURNS FLOAT64 AS (x + y);` * `CREATE FUNCTION Increment(x FLOAT64) AS (Add(x, 1));` * `CREATE FUNCTION Decrement(x FLOAT64) RETURNS FLOAT64 AS (Add(x, -1));` The return_type is `{type_kind: "FLOAT64"}` for `Add` and `Decrement`, and is absent for `Increment` (inferred as FLOAT64 at query time). Suppose the function `Add` is replaced by `CREATE OR REPLACE FUNCTION Add(x INT64, y INT64) AS (x + y);` Then the inferred return type of `Increment` is automatically changed to INT64 at query time, while the return type of `Decrement` remains FLOAT64.
* @property routineReference Reference describing the ID of this routine.
* @property routineType The type of routine.
* @property sparkOptions Optional. Spark specific options.
* @property strictMode Optional. Can be set for procedures only. If true (default), the definition body will be validated in the creation and the updates of the procedure. For procedures with an argument of ANY TYPE, the definition body validtion is not supported at creation/update time, and thus this field must be set to false explicitly.
*/
public data class RoutineArgs(
public val arguments: Output>? = null,
public val datasetId: Output? = null,
public val definitionBody: Output? = null,
public val description: Output? = null,
public val determinismLevel: Output? = null,
public val importedLibraries: Output>? = null,
public val language: Output? = null,
public val project: Output? = null,
public val remoteFunctionOptions: Output? = null,
public val returnTableType: Output? = null,
public val returnType: Output? = null,
public val routineReference: Output? = null,
public val routineType: Output? = null,
public val sparkOptions: Output? = null,
public val strictMode: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.bigquery.v2.RoutineArgs =
com.pulumi.googlenative.bigquery.v2.RoutineArgs.builder()
.arguments(
arguments?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.datasetId(datasetId?.applyValue({ args0 -> args0 }))
.definitionBody(definitionBody?.applyValue({ args0 -> args0 }))
.description(description?.applyValue({ args0 -> args0 }))
.determinismLevel(determinismLevel?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.importedLibraries(importedLibraries?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.language(language?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.project(project?.applyValue({ args0 -> args0 }))
.remoteFunctionOptions(
remoteFunctionOptions?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.returnTableType(returnTableType?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.returnType(returnType?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.routineReference(routineReference?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.routineType(routineType?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.sparkOptions(sparkOptions?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.strictMode(strictMode?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [RoutineArgs].
*/
@PulumiTagMarker
public class RoutineArgsBuilder internal constructor() {
private var arguments: Output>? = null
private var datasetId: Output? = null
private var definitionBody: Output? = null
private var description: Output? = null
private var determinismLevel: Output? = null
private var importedLibraries: Output>? = null
private var language: Output? = null
private var project: Output? = null
private var remoteFunctionOptions: Output? = null
private var returnTableType: Output? = null
private var returnType: Output? = null
private var routineReference: Output? = null
private var routineType: Output? = null
private var sparkOptions: Output? = null
private var strictMode: Output? = null
/**
* @param value Optional.
*/
@JvmName("kdpyxodeprhswmdk")
public suspend fun arguments(`value`: Output>) {
this.arguments = value
}
@JvmName("bmfjbrvavpfwvojr")
public suspend fun arguments(vararg values: Output) {
this.arguments = Output.all(values.asList())
}
/**
* @param values Optional.
*/
@JvmName("tjrqksuowjkedlxy")
public suspend fun arguments(values: List