Trigger

AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL

Properties

Name Type Description
type string Trigger type.
description string
runtimeState string
annotations array
pipelines array
View JSON Schema on GitHub

JSON Schema

microsoft-azure-synapse-analytics-trigger-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Trigger",
  "title": "Trigger",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "type": "string",
      "description": "Trigger type."
    },
    "description": {
      "type": "string"
    },
    "runtimeState": {
      "type": "string",
      "readOnly": true,
      "enum": [
        "Started",
        "Stopped",
        "Disabled"
      ]
    },
    "annotations": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "pipelines": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "pipelineReference": {
            "type": "object",
            "properties": {
              "referenceName": {
                "type": "string"
              },
              "type": {
                "type": "string"
              }
            }
          },
          "parameters": {
            "type": "object",
            "additionalProperties": true
          }
        }
      }
    }
  }
}