Modifies a trigger.
Debugging
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.
Operation | Access level | Resource type | Condition key | Associated operation |
---|---|---|---|---|
fc:UpdateTrigger | update |
|
| none |
Request syntax
PUT /2021-04-06/services/{serviceName}/functions/{functionName}/triggers/{triggerName} HTTP/1.1
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
If-Match | string | No | This parameter is used to ensure that the modified resource is consistent with the resource to be modified. You can obtain the parameter value from the responses of CreateTrigger , GetTrigger , and UpdateTrigger operations. | e19d5cd5af0378da05f63f891c7467af |
serviceName | string | Yes | The name of the service. | demoService |
functionName | string | Yes | The name of the function. | demoFunction |
triggerName | string | Yes | The name of the trigger. | demoTrigger |
body | object | No | The definition of the trigger. | |
invocationRole | string | No | The role that is used by the event source such as Object Storage Service (OSS) to invoke the function. For more information, see Overview . | acs:ram::123456xxxx:role/fc-test |
qualifier | string | No | The version or alias of the service. | LATEST |
triggerConfig | string | No | 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"}}} |
description | string | No | The description of the trigger. | trigger for test |
X-Fc-Account-Id | string | No | The ID of your Alibaba Cloud account. | 188077086902**** |
X-Fc-Date | string | No | 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-Id | string | No | The custom request ID. | my-test-trace-id |
Response parameters
Examples
Sample success responses
JSON
format
{
"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:12345xxxx: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",
"status": "RUNNING",
"targetArn": "acs:fc::123456xxxx:services/my-test-service.LATEST/functions/my-test-function"
}
Error codes
For a list of error codes, visit the Service error codes.
Change history
Change time | Summary of changes | Operation |
---|---|---|
2023-12-29 | The response structure of the API has changed | View Change Details |
2021-06-30 | The request parameters of the API has changed | View Change Details |
2021-06-30 | The response structure of the API has changed | View Change Details |