Skip to main content

apps_script_projects

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

Overview

Nameapps_script_projects
TypeResource
Idgoogle.integrations.apps_script_projects

Fields

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

Methods

NameAccessible byRequired ParamsDescription
projects_locations_apps_script_projects_createINSERTlocationsId, projectsIdCreates an Apps Script project.
projects_locations_apps_script_projects_linkEXEClocationsId, projectsIdLinks a existing Apps Script project.

INSERT example

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

/*+ create */
INSERT INTO google.integrations.apps_script_projects (
locationsId,
projectsId,
appsScriptProject,
authConfigId
)
SELECT
'{{ locationsId }}',
'{{ projectsId }}',
'{{ appsScriptProject }}',
'{{ authConfigId }}'
;