All Products
Search
Document Center

Function Compute:ListTriggers

Last Updated:Sep 19, 2024

Queries the triggers of a function.

Debugging

OpenAPI Explorer automatically calculates the signature value. For your convenience, we recommend that you call this operation in OpenAPI Explorer.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
fc:ListTriggersget
  • All Resources
    *
    none
none

Request syntax

GET /2021-04-06/services/{serviceName}/functions/{functionName}/triggers

Request parameters

ParameterTypeRequiredDescriptionExample
serviceNamestringYes

The name of the service.

demo-service
functionNamestringYes

The name of the function.

demo-function
limitintegerNo

The maximum number of resources to return. Default value: 20. Maximum value: 100. The number of returned resources is less than or equal to the specified number.

20
nextTokenstringNo

The token required to obtain more results. You do not need to provide this parameter in the first call. The tokens for subsequent queries are obtained from the returned results.

f-trigger
prefixstringNo

The prefix that the names of returned resources must contain.

a
startKeystringNo

The returned resources are sorted in alphabetical order, and the resources that include and follow the resource specified by the startKey parameter are returned.

a-trigger
X-Fc-Account-IdstringNo

The ID of your Alibaba Cloud account.

188077086902****
X-Fc-DatestringNo

The time when the request is initiated on the client. The format of the value is: EEE,d MMM yyyy HH:mm:ss GMT.

Wed, 11 May 2022 09:00:00 GMT
X-Fc-Trace-IdstringNo

The custom request ID.

my-test-trace-id

Response parameters

ParameterTypeDescriptionExample
object

The returned data.

nextTokenstring

The token used to obtain more results. If this parameter is left empty, all the results are returned.

f-trigger
triggersarray<object>

The information about triggers.

object

The details of the trigger.

createdTimestring

The time when the trigger was created.

2016-08-15T15:00:00.000+0000
invocationRolestring

The Alibaba Cloud Resource Name (ARN) of the RAM role that is used by the event source to invoke the function.

acs:ram::123456xxxx:role/fc-test
lastModifiedTimestring

The time when the trigger was last modified.

016-08-15T17:00:00.000+0000
qualifierstring

The version or alias of the service.

LATEST
sourceArnstring

The ARN of the event source.

acs:oss:cn-shanghai:123456xxxx:mybucket
triggerConfigstring

The configurations of the trigger. The configurations vary based on the trigger type. For more information about the format, see the following topics:

{"events": ["oss:ObjectCreated:*"], "filter": {"key": {"prefix": "/prefix", "suffix": ".zip"}}}
triggerNamestring

The name of the trigger.

demoTrigger
triggerTypestring

The trigger type. Valid values: oss, log, tablestore, timer, http, cdn_events, mns_topic, and eventbridge.

oss
descriptionstring

The description of the trigger.

trigger for test
triggerIdstring

The unique ID of the trigger.

3e270f2f-cef2-421a-bc86-ff4e8088****
domainNamestring

The domain name used to invoke the function by using HTTP. You can add this domain name as the prefix to the endpoint of Function Compute. This way, you can invoke the function that corresponds to the trigger by using HTTP. Example: {domainName}.cn-shanghai.fc.aliyuncs.com.

demo-service-demo-function-jkhksh
urlInternetstring

The public endpoint. You can access HTTP triggers over the Internet by using HTTP or HTTPS.

https://svc-func-xxxxxxxx.cn-hangzhou.fcapp.run
urlIntranetstring

The private endpoint. In a VPC, you can access HTTP triggers by using HTTP or HTTPS.

https://svc-func-xxxxxxxx.cn-hangzhou-vpc.fcapp.run

Examples

Sample success responses

JSONformat

{
  "nextToken": "f-trigger",
  "triggers": [
    {
      "createdTime": "2016-08-15T15:00:00.000+0000",
      "invocationRole": "acs:ram::123456xxxx:role/fc-test",
      "lastModifiedTime": "016-08-15T17:00:00.000+0000",
      "qualifier": "LATEST",
      "sourceArn": "acs:oss:cn-shanghai:123456xxxx:mybucket",
      "triggerConfig": "{\"events\": [\"oss:ObjectCreated:*\"], \"filter\": {\"key\": {\"prefix\": \"/prefix\", \"suffix\": \".zip\"}}}",
      "triggerName": "demoTrigger",
      "triggerType": "oss",
      "description": "trigger for test",
      "triggerId": "3e270f2f-cef2-421a-bc86-ff4e8088****",
      "domainName": "demo-service-demo-function-jkhksh",
      "urlInternet": "https://svc-func-xxxxxxxx.cn-hangzhou.fcapp.run",
      "urlIntranet": "https://svc-func-xxxxxxxx.cn-hangzhou-vpc.fcapp.run"
    }
  ]
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2021-06-30The request parameters of the API has changedView Change Details
2021-06-30The request parameters of the API has changedView Change Details
2021-06-30The request parameters of the API has changed. The response structure of the API has changedView Change Details