GetRoutineResult

data class GetRoutineResult(val arguments: List<ArgumentResponse>, val creationTime: String, val definitionBody: String, val description: String, val determinismLevel: String, val etag: String, val importedLibraries: List<String>, val language: String, val lastModifiedTime: String, val remoteFunctionOptions: RemoteFunctionOptionsResponse, val returnTableType: StandardSqlTableTypeResponse, val returnType: StandardSqlDataTypeResponse, val routineReference: RoutineReferenceResponse, val routineType: String, val sparkOptions: SparkOptionsResponse, val strictMode: Boolean)

Constructors

Link copied to clipboard
fun GetRoutineResult(arguments: List<ArgumentResponse>, creationTime: String, definitionBody: String, description: String, determinismLevel: String, etag: String, importedLibraries: List<String>, language: String, lastModifiedTime: String, remoteFunctionOptions: RemoteFunctionOptionsResponse, returnTableType: StandardSqlTableTypeResponse, returnType: StandardSqlDataTypeResponse, routineReference: RoutineReferenceResponse, routineType: String, sparkOptions: SparkOptionsResponse, strictMode: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard

The time when this routine was created, in milliseconds since the epoch.

Link copied to clipboard

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.

Link copied to clipboard

Optional. The description of the routine, if defined.

Link copied to clipboard

Optional. The determinism level of the JavaScript UDF, if defined.

Link copied to clipboard

A hash of this resource.

Link copied to clipboard

Optional. If language = "JAVASCRIPT", this field stores the path of the imported JAVASCRIPT libraries.

Link copied to clipboard

Optional. Defaults to "SQL" if remote_function_options field is absent, not set otherwise.

Link copied to clipboard

The time when this routine was last modified, in milliseconds since the epoch.

Link copied to clipboard

Optional. Remote function specific options.

Link copied to clipboard

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.

Link copied to clipboard

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.

Link copied to clipboard

Reference describing the ID of this routine.

Link copied to clipboard

The type of routine.

Link copied to clipboard

Optional. Spark specific options.

Link copied to clipboard

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.