Azure Synapse Analytics · Schema
Azure Synapse Analytics Trigger
A trigger resource that orchestrates pipeline execution through schedule-based, tumbling window, or event-based mechanisms.
AnalyticsApache SparkBig DataData IntegrationData WarehouseETLSQL
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| type | string | |
| etag | string | |
| properties | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/api-search/azure-synapse-analytics/json-schema/azure-synapse-analytics-trigger-schema.json",
"title": "Azure Synapse Analytics Trigger",
"description": "A trigger resource that orchestrates pipeline execution through schedule-based, tumbling window, or event-based mechanisms.",
"type": "object",
"properties": {
"id": {
"type": "string",
"readOnly": true
},
"name": {
"type": "string"
},
"type": {
"type": "string",
"readOnly": true
},
"etag": {
"type": "string",
"readOnly": true
},
"properties": {
"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
}
}
}
}
}
}
}
}