Skip to main content

cloud_functions

Creates, updates, deletes, gets or lists a cloud_functions resource.

Overview

Namecloud_functions
TypeResource
Idgoogle.integrations.cloud_functions

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_products_cloud_functions_createinsertprojectsId, locationsId, productsIdCreates a cloud function project.
projects_locations_cloud_functions_createinsertprojectsId, locationsIdCreates a cloud function project.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
locationsIdstring
productsIdstring
projectsIdstring

INSERT examples

Creates a cloud function project.

INSERT INTO google.integrations.cloud_functions (
data__projectId,
data__functionName,
data__functionRegion,
data__gcfApiVersion,
projectsId,
locationsId,
productsId
)
SELECT
'{{ projectId }}',
'{{ functionName }}',
'{{ functionRegion }}',
'{{ gcfApiVersion }}',
'{{ projectsId }}',
'{{ locationsId }}',
'{{ productsId }}'
RETURNING
triggerUrl
;