mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
1.9 KiB
1.9 KiB
Read this on the main serverless docs site
Tencent-SCF - Invoke
Invokes deployed function. It allows to send event data to the function, read logs and display other important information of the function invocation.
serverless invoke --function functionName
Options
--functionor-fThe name of the function in your service that you want to invoke. Required.--stageor-sThe stage in your service you want to invoke your function in.--regionor-rThe region in your stage that you want to invoke your function in.--dataor-dString data to be passed as an event to your function.--pathor-pThe path to a json file with input data to be passed to the invoked function. This path is relative to the root directory of the service.
Examples
serverless invoke --function functionName --stage dev --region ap-guangzhou
This example will invoke your deployed function named functionName in region ap-guangzhou in stage dev. This will
output the result of the invocation in your terminal.
Function invocation with data
serverless invoke --function functionName --stage dev --region ap-guangzhou --data "hello world"
Function invocation with data passing
serverless invoke --function functionName --stage dev --region ap-guangzhou --path lib/event.json
This example will pass the json data in the lib/event.json file (relative to the root of the service) while invoking
the specified/deployed function.
Example of event.json
{
"resource": "/",
"path": "/",
"httpMethod": "GET"
}