-
Notifications
You must be signed in to change notification settings - Fork 5.6k
[DataFactory] blob events trigger #3008
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -275,6 +275,65 @@ | |
| "typeProperties" | ||
| ] | ||
| }, | ||
| "BlobEventsTrigger": | ||
| { | ||
| "description": "Trigger that runs everytime a Blob event occurs.", | ||
| "type": "object", | ||
| "allOf": [ | ||
| { | ||
| "$ref": "#/definitions/MultiplePipelineTrigger" | ||
| } | ||
| ], | ||
| "properties": { | ||
| "typeProperties": | ||
| { | ||
| "description": "Blob Events Trigger properties", | ||
| "x-ms-client-flatten": true, | ||
| "properties": { | ||
| "blobPath": { | ||
|
||
| "description": "path to container, folder, blob, or file extension for which events can trigger the pipeline.", | ||
|
||
| "type": "string" | ||
| }, | ||
| "events": { | ||
| "description": "the type of events for which we want to trigger the pipeline.", | ||
|
||
| "$ref": "#/definitions/BlobEventTypes" | ||
| }, | ||
| "scope": { | ||
| "description": "the resource id of the Storage Account.", | ||
|
||
| "type": "string" | ||
| }, | ||
| "maxConcurrency": { | ||
|
||
| "description": "the max number of parallel events to handle when it is triggered.", | ||
|
||
| "type": "integer" | ||
| } | ||
| }, | ||
| "required": [ | ||
| "blobPath", | ||
| "events", | ||
| "scope", | ||
| "maxConcurrency" | ||
| ] | ||
| } | ||
| }, | ||
| "required": [ | ||
| "typeProperties" | ||
| ] | ||
| }, | ||
| "BlobEventTypes": { | ||
| "type": "array", | ||
| "items": { | ||
| "type": "string", | ||
| "enum": [ | ||
| "blobCreated", | ||
| "blobDeleted" | ||
| ], | ||
| "x-ms-enum": { | ||
| "name": "BlobEventTypes", | ||
| "modelAsString": true | ||
| } | ||
| }, | ||
| "description": "blob event types" | ||
|
||
| }, | ||
| "TumblingWindowTrigger": { | ||
| "description": "Trigger that schedules pipeline runs for all fixed time interval windows from a start time without gaps and also supports backfill scenarios (when start time is in the past).", | ||
| "type": "object", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add dot at the end of description. The linter catches these as errors.