Keboola · Schema

UpdateTriggerRequest

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
runWithTokenId integer Token ID to run the trigger with.
component string Component ID.
configurationId string Configuration ID.
coolDownPeriodMinutes integer Minimum minutes between trigger runs.
tableIds array Table IDs to watch for changes.
View JSON Schema on GitHub

JSON Schema

keboola-updatetriggerrequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UpdateTriggerRequest",
  "required": [
    "runWithTokenId",
    "component",
    "configurationId",
    "coolDownPeriodMinutes",
    "tableIds"
  ],
  "properties": {
    "runWithTokenId": {
      "description": "Token ID to run the trigger with.",
      "type": "integer"
    },
    "component": {
      "description": "Component ID.",
      "type": "string"
    },
    "configurationId": {
      "description": "Configuration ID.",
      "type": "string"
    },
    "coolDownPeriodMinutes": {
      "description": "Minimum minutes between trigger runs.",
      "type": "integer",
      "minimum": 1
    },
    "tableIds": {
      "description": "Table IDs to watch for changes.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "type": "object"
}