Available in Classic and VPC
Create or edit a Cloud Functions trigger.
Request
This section describes the request format. The method and URI are as follows:
| Method | URI |
|---|---|
| PUT | /ncf/api/v2/triggers/{triggerName} |
Request headers
For information about the headers common to all Cloud Functions APIs, see Cloud Functions request headers.
Request path parameters
You can use the following path parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
triggerName |
String | Required | Trigger name
|
Request query parameters
You can use the following query parameters with your request:
| Field | Type | Required | Description |
|---|---|---|---|
platform |
String | Optional | Platform type
|
type |
String | Required | Trigger type
|
Request body
You can include the following data in the body of your request: If there are no fields in the request body, it should be requested as {} empty JSON object.
Common
The following describes the common request body.
| Field | Type | Required | Description |
|---|---|---|---|
description |
String | Optional | Trigger description (byte)
|
parameters |
Object | Optional | Default parameters of the trigger
|
cron trigger
The following describes the request body for cron triggers.
| Field | Type | Required | Description |
|---|---|---|---|
cronOption |
String | Required | cron execution option |
GitHub trigger
The following describes the request body for GitHub triggers.
| Field | Type | Required | Description |
|---|---|---|---|
credential |
Object | Required | GitHub information |
credential.username |
String | Required | GitHub username |
credential.accessToken |
String | Required | GitHub access token |
credential.repository |
String | Required | GitHub repository
|
events |
String[] | Required | Event to trigger
|
link |
Object | Conditional | API Gateway information
|
link.productName |
String | Conditional | API Gateway's product name |
link.apiName |
String | Conditional | API Gateway API name |
link.stageName |
String | Conditional | API Gateway's stage name |
Cloud Insight trigger
The following describes the request body for Cloud Insight triggers.
| Field | Type | Required | Description |
|---|---|---|---|
insightLink |
Array | Optional | Event rule information of the Cloud Insight to connect: insightLink |
insightLink
The following describes insightLink.
| Field | Type | Required | Description |
|---|---|---|---|
prodKey |
String | Conditional | Cloud Insight event rule's prodKey
|
ruleGrpId |
String | Conditional | Cloud Insight event rule's ruleGrpId
|
| reminderTime` | Integer | Optional | Cloud Insight event rule's reminder notification frequency (minute)
|
enableNotiWhenEventClose |
Boolean | Optional | Whether to call Cloud Insight event rules at the end of an event
|
Object Storage trigger
The following describes the request body for Object Storage triggers.
If an action attached to an Object Storage trigger uses the same bucket as an Object Storage event rule, recursive calls can result in increased usage and excessive costs.
| Field | Type | Required | Description |
|---|---|---|---|
objectStorageLink |
Array | Required | Event rule information of the Object Storage to connect: objectStorageLink |
objectStorageLink
The following describes objectStorageLink.
| Field | Type | Required | Description |
|---|---|---|---|
bucketName |
String | Required | Object Storage's bucket name |
eventRuleName |
String | Required | Object Storage's event rule name |
SourceCommit trigger
The following describes the request body for SourceCommit triggers.
SourceCommit triggers are supported only on the VPC platform of the Korea Region.
| Field | Type | Required | Description |
|---|---|---|---|
sourceCommitLink |
Array | Required | Webhook information for the SourceCommit repository to connect: sourceCommitLink |
sourceCommitLink
The following describes sourceCommitLink.
| Field | Type | Required | Description |
|---|---|---|---|
enable |
Boolean | Optional | Webhook activation status of SourceCommit
|
repositoryName |
String | Required | SourceCommit repository name |
webhookName |
String | Required | SourceCommit webhook name |
Secret Manager trigger
The following describes the request body for Secret Manager triggers.
- Secret Manager triggers are supported only on the VPC platform of the Korea Region.
- A trigger can have multiple secrets associated with it, but only one trigger can be associated with a secret.
| Field | Type | Required | Description |
|---|---|---|---|
secretManagerLink |
Array | Required | Secret Manager secret information to connect to: secretManagerLink |
secretManagerLink
The following describes secretManagerLink.
| Field | Type | Required | Description |
|---|---|---|---|
secretName |
String | Required | Secret Manager's secret name |
Request example
The request example is as follows:
curl --location --request PUT 'https://cloudfunctions.apigw.ntruss.com/ncf/api/v2/triggers/trigger001?platform=vpc&type=cron' \
--header 'Content-Type: application/json' \
--header 'x-ncp-apigw-timestamp: {Timestamp}' \
--header 'x-ncp-iam-access-key: {Sub Account Access Key}' \
--header 'x-ncp-apigw-signature-v2: {API Gateway Signature}' \
--data '{
"description": "Cron Trigger",
"parameters": {
"period": "daily"
},
"cronOption": "30 1 * * *"
}'
Response
This section describes the response format.
Response body
The response body includes the following data:
Common
The common response body includes the following data:
| Field | Type | Required | Description |
|---|---|---|---|
content.name |
String | - | Trigger name |
content.resourceId |
String | - | Trigger's resource ID |
content.triggerType |
String | - | Trigger type |
content.namespace |
String | - | Namespace of the user |
content.description |
String | - | Trigger description |
content.parameters |
Object | - | Default parameters of the trigger |
content.rules |
Object | - | Trigger action connection information |
cron trigger
The following describes the response body for cron triggers.
| Field | Type | Required | Description |
|---|---|---|---|
content.cronOption |
String | - | Cron execution option |
GitHub trigger
The following describes the response body for GitHub triggers.
| Field | Type | Required | Description |
|---|---|---|---|
content.credential |
Object | - | GitHub information |
content.credential.username |
String | - | GitHub username |
content.credential.accessToken |
String | - | GitHub access token |
content.namespace |
String | - | Namespace of the user |
content.credential.repository |
String | - | GitHub repository |
content.events |
String[] | - | Type of events to trigger |
Cloud Insight trigger
The following describes the response body for Cloud Insight triggers.
| Field | Type | Required | Description |
|---|---|---|---|
content.insightLink |
Array | - | Event rule information of the connected Cloud Insight: insightLink |
insightLink
The following describes insightLink.
| Field | Type | Required | Description |
|---|---|---|---|
prodKey |
String | - | Cloud Insight event rule's prodKey |
ruleGrpId |
String | - | Cloud Insight event's ruleGrpId |
reminderTime |
Integer | - | Cloud Insight event's reminder notification frequency (minute) |
enableNotiWhenEventClose |
Boolean | - | Whether to call Cloud Insight event rules at the end of an event |
Object Storage trigger
The following describes the response body for Object Storage triggers.
| Field | Type | Required | Description |
|---|---|---|---|
content.objectStorageLink |
Array | - | Event rule information of the connected Object Storage: objectStorageLink |
objectStorageLink
The following describes objectStorageLink.
| Field | Type | Required | Description |
|---|---|---|---|
bucketName |
String | - | Object Storage's bucket name |
eventRuleName |
String | - | Object Storage's event rule name |
SourceCommit trigger
The following describes the response body for SourceCommit triggers.
| Field | Type | Required | Description |
|---|---|---|---|
content.sourceCommitLink |
Array | - | Webhook information for the connected SourceCommit repository: sourceCommitLink |
sourceCommitLink
The following describes sourceCommitLink.
| Field | Type | Required | Description |
|---|---|---|---|
enable |
Boolean | - | SourceCommit webhook activation status |
repositoryName |
String | - | SourceCommit repository name |
webhookName |
String | - | SourceCommit webhook name |
Secret Manager trigger
The following describes the response body for Secret Manager triggers.
| Field | Type | Required | Description |
|---|---|---|---|
content.secretManagerLink |
Array | - | Connected Secret Manager secret information: secretManagerLink |
secretManagerLink
The following describes secretManagerLink.
| Field | Type | Required | Description |
|---|---|---|---|
secretId |
String | - | Secret Manager's secret ID |
Response status codes
For information about the HTTP status codes common to all Cloud Functions APIs, see Cloud Functions response status codes.
Response example
The response example is as follows:
{
"content": {
"description": "",
"name": "trigger001",
"namespace": "****YBNz****",
"parameters": {
"period": "daily"
},
"resourceId": "4ci**",
"rules": {
"****YBNz****/qr98**: {
"action": {
"name": "action001",
"path": "****YBNz****"
},
"status": "active"
},
"triggerType": "cron"
}
}