BlobTrigger Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BlobTrigger() |
Initializes a new instance of the BlobTrigger class. |
BlobTrigger(String, Int32, LinkedServiceReference, IDictionary<String,Object>, String, String, IList<Object>, IList<TriggerPipelineReference>) |
Initializes a new instance of the BlobTrigger class. |
BlobTrigger()
Initializes a new instance of the BlobTrigger class.
public BlobTrigger ();
Public Sub New ()
Applies to
BlobTrigger(String, Int32, LinkedServiceReference, IDictionary<String,Object>, String, String, IList<Object>, IList<TriggerPipelineReference>)
Initializes a new instance of the BlobTrigger class.
public BlobTrigger (string folderPath, int maxConcurrency, Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference linkedService, System.Collections.Generic.IDictionary<string,object> additionalProperties = default, string description = default, string runtimeState = default, System.Collections.Generic.IList<object> annotations = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.TriggerPipelineReference> pipelines = default);
new Microsoft.Azure.Management.DataFactory.Models.BlobTrigger : string * int * Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference * System.Collections.Generic.IDictionary<string, obj> * string * string * System.Collections.Generic.IList<obj> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.TriggerPipelineReference> -> Microsoft.Azure.Management.DataFactory.Models.BlobTrigger
Public Sub New (folderPath As String, maxConcurrency As Integer, linkedService As LinkedServiceReference, Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional description As String = Nothing, Optional runtimeState As String = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional pipelines As IList(Of TriggerPipelineReference) = Nothing)
Parameters
- folderPath
- String
The path of the container/folder that will trigger the pipeline.
- maxConcurrency
- Int32
The max number of parallel files to handle when it is triggered.
- linkedService
- LinkedServiceReference
The Azure Storage linked service reference.
- additionalProperties
- IDictionary<String,Object>
Unmatched properties from the message are deserialized this collection
- description
- String
Trigger description.
- runtimeState
- String
Indicates if trigger is running or not. Updated when Start/Stop APIs are called on the Trigger. Possible values include: 'Started', 'Stopped', 'Disabled'
- pipelines
- IList<TriggerPipelineReference>
Pipelines that need to be started.
Applies to
Azure SDK for .NET