BigQueryRoutine
| Property | Value |
|---|---|
| Google Cloud Service Name | BigQuery |
| Google Cloud Service Documentation | /bigquery/docs/ |
| Google Cloud REST Resource Name | bigquery/v2/routines |
| Google Cloud REST Resource Documentation | /bigquery/docs/reference/rest/v2/routines |
| Config Connector Resource Short Names | gcpbigqueryroutine gcpbigqueryroutines bigqueryroutine |
| Config Connector Service Name | bigquery.googleapis.com |
| Config Connector Resource Fully Qualified Name | bigqueryroutines.bigquery.cnrm.cloud.google.com |
| Can Be Referenced by IAMPolicy/IAMPolicyMember | No |
| Config Connector Default Average Reconcile Interval In Seconds | 600 |
Custom Resource Definition Properties
Annotations
| Fields | |
|---|---|
cnrm.cloud.google.com/project-id |
|
Spec
Schema
arguments:
- argumentKind: string
dataType: string
mode: string
name: string
datasetRef:
external: string
name: string
namespace: string
definitionBody: string
description: string
determinismLevel: string
importedLibraries:
- string
language: string
projectRef:
external: string
name: string
namespace: string
resourceID: string
returnTableType: string
returnType: string
routineType: string
| Fields | |
|---|---|
|
Optional |
Input/output argument of a function or a stored procedure. |
|
Optional |
|
|
Optional |
Defaults to FIXED_TYPE. Default value: "FIXED_TYPE" Possible values: ["FIXED_TYPE", "ANY_TYPE"]. |
|
Optional |
A JSON schema for the data type. Required unless argumentKind = ANY_TYPE. NOTE: Because this field expects a JSON string, any changes to the string will create a diff, even if the JSON itself hasn't changed. If the API returns a different value for the same schema, for example, the API returns a value that switched the order of values or replaced STRUCT field type with RECORD field type, we cannot suppress the recurring diff this causes. As a workaround, we recommend using the schema as returned by the API. |
|
Optional |
Specifies whether the argument is input or output. Can be set for procedures only. Possible values: ["IN", "OUT", "INOUT"]. |
|
Optional |
The name of this argument. Can be absent for function return argument. |
|
Required |
The ID of the dataset containing this routine. |
|
Optional |
Allowed value: The `name` field of a `BigQueryDataset` resource. |
|
Optional |
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
|
Optional |
Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ |
|
Required |
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. |
|
Optional |
The description of the routine if defined. |
|
Optional |
The determinism level of the JavaScript UDF if defined. Possible values: ["DETERMINISM_LEVEL_UNSPECIFIED", "DETERMINISTIC", "NOT_DETERMINISTIC"]. |
|
Optional |
Optional. If language = "JAVASCRIPT", this field stores the path of the imported JAVASCRIPT libraries. |
|
Optional |
|
|
Optional |
The language of the routine. Possible values: ["SQL", "JAVASCRIPT"]. |
|
Required |
The project that this resource belongs to. |
|
Optional |
Allowed value: The `name` field of a `Project` resource. |
|
Optional |
Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names |
|
Optional |
Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ |
|
Optional |
Immutable. Optional. The routineId of the resource. Used for creation and acquisition. When unset, the value of `metadata.name` is used as the default. |
|
Optional |
Optional. Can be set only if routineType = "TABLE_VALUED_FUNCTION". If absent, the return table type is inferred from definitionBody at query time in each query that references this routine. If present, the columns in the evaluated table result will be cast to match the column types specified in return table type, at query time. |
|
Optional |
A JSON schema for the return type. Optional if language = "SQL"; required otherwise. If absent, the return type is inferred from definitionBody 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. NOTE: Because this field expects a JSON string, any changes to the string will create a diff, even if the JSON itself hasn't changed. If the API returns a different value for the same schema, for example, the value that the API returns switche d the order of values or replaced STRUCT field type with RECORD field type, we currently cannot suppress the recurring diff this causes. As a workaround, we recommend using the schema as returned by the API. |
|
Optional |
Immutable. The type of routine. Possible values: ["SCALAR_FUNCTION", "PROCEDURE", "TABLE_VALUED_FUNCTION"]. |
Status
Schema
conditions:
- lastTransitionTime: string
message: string
reason: string
status: string
type: string
creationTime: integer
lastModifiedTime: integer
observedGeneration: integer
| Fields | |
|---|---|
conditions |
Conditions represent the latest available observation of the resource's current state. |
conditions[] |
|
conditions[].lastTransitionTime |
Last time the condition transitioned from one status to another. |
conditions[].message |
Human-readable message indicating details about last transition. |
conditions[].reason |
Unique, one-word, CamelCase reason for the condition's last transition. |
conditions[].status |
Status is the status of the condition. Can be True, False, Unknown. |
conditions[].type |
Type is the type of the condition. |
creationTime |
The time when this routine was created, in milliseconds since the epoch. |
lastModifiedTime |
The time when this routine was modified, in milliseconds since the epoch. |
observedGeneration |
ObservedGeneration is the generation of the resource that was most recently observed by the Config Connector controller. If this is equal to metadata.generation, then that means that the current reported status reflects the most recent desired state of the resource. |
Sample YAML(s)
Typical Use Case
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
apiVersion: bigquery.cnrm.cloud.google.com/v1beta1
kind: BigQueryRoutine
metadata:
name: bigqueryroutine-${uniqueId}
spec:
datasetRef:
name: bigquerydataset${uniqueId}
definitionBody: CREATE FUNCTION Add(x FLOAT64, y FLOAT64) RETURNS FLOAT64 AS (x
+ y);
projectRef:
external: ${projectId}
resourceID: bigqueryroutine${uniqueId}
routineType: PROCEDURE