action digitalocean_functions_list_triggers { label: "List Triggers" description: "Returns a list of triggers associated with the current user and namespace. To get all triggers, send a GET request to `/v2/functions/namespaces/$NAMESPACE_ID/triggers`." provider: digitalocean method: GET path: "/v2/functions/namespaces/{namespace_id}/triggers" encoding: json input: { type: "object" properties: { namespace_id: { type: "string" } } required: ["namespace_id"] additionalProperties: false } output: { type: "object" } }