AI-generated Key Takeaways
-
This document describes the resource configurations for web apps and API executables.
-
The web app configuration, used when a project is deployed as a web app, defines access permissions and the execution identity.
-
The API executable configuration, used when a project is deployed for API execution, defines access permissions.
-
Both web app and API executable configurations use a string field named
access
to specify permission levels for running the script. -
The web app configuration includes an additional string field
executeAs
to determine the identity under which the web app runs.
The resource configurations used to define web apps and API executables.
Webapp
The script project's web app configuration, which is only used if the project is deployed as a web app.
JSON representation |
---|
{ "access": string, "executeAs": string } |
Fields | |
---|---|
access |
The levels of permission for running the web app. The valid settings are the following:
|
executeAs |
The identity under which the web app executes. The valid settings are the following:
|
ExecutionApi
The script project's API executable configuration. This is only used if the project is deployed for API execution.
JSON representation |
---|
{ "access": string } |
Fields | |
---|---|
access |
Determines who has permission to run the script from the API. The valid settings are the following:
|