Google Functions Deploy with YAML
Learn more about:
YAML parameters for Google Functions Deploy
Name | Type | Description |
---|---|---|
action Required | String | The name of the action. |
type Required | String | The type of the action. Should be set to GOOGLE_FUNCTION_DEPLOY . |
function_name Required | String | The name of the Google function. |
integration_hash Required | String | The ID of the integration. |
application_id Required | String | The id of the Google Cloud project. |
region | String | Region in which function can be found or will be created. |
runtime | String | The Cloud Functions execution environment. Options: nodejs6 , nodejs8 , nodejs10 , nodejs12 , python37 , go111 . |
command_args | String | Additional arguments sent upon deploying the function. |
local_path | String | The path in the repository. |
YAML example for Google Functions Deploy
actions:
- action: "Deploy function hello-world"
type: "GOOGLE_FUNCTION_DEPLOY"
local_path: "/"
application_id: "hello-world"
region: "europe-west3"
function_name: "hello-world-0"
runtime: "nodejs12"
command_args: "--trigger-http"
integration_hash: "5ddb7c180fb38be67bd78a88a"
Last modified on April 26, 2022