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

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

Methods

NameAccessible byRequired ParamsDescription
projects_locations_cloud_functions_createINSERTlocationsId, projectsIdCreates a cloud function project.
projects_locations_products_cloud_functions_createINSERTlocationsId, productsId, projectsIdCreates a cloud function project.

INSERT example

Use the following StackQL query and manifest file to create a new cloud_functions resource.

/*+ create */
INSERT INTO google.integrations.cloud_functions (
locationsId,
projectsId,
functionName,
functionRegion,
projectId
)
SELECT
'{{ locationsId }}',
'{{ projectsId }}',
'{{ functionName }}',
'{{ functionRegion }}',
'{{ projectId }}'
;