BlobEventsTrigger 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
BlobEventsTrigger() |
Initializes a new instance of the BlobEventsTrigger class. |
BlobEventsTrigger(IList<String>, String, IDictionary<String,Object>, String, String, IList<Object>, IList<TriggerPipelineReference>, String, String, Nullable<Boolean>) |
Initializes a new instance of the BlobEventsTrigger class. |
BlobEventsTrigger()
Initializes a new instance of the BlobEventsTrigger class.
public BlobEventsTrigger ();
Public Sub New ()
Applies to
BlobEventsTrigger(IList<String>, String, IDictionary<String,Object>, String, String, IList<Object>, IList<TriggerPipelineReference>, String, String, Nullable<Boolean>)
Initializes a new instance of the BlobEventsTrigger class.
public BlobEventsTrigger (System.Collections.Generic.IList<string> events, string scope, 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, string blobPathBeginsWith = default, string blobPathEndsWith = default, bool? ignoreEmptyBlobs = default);
new Microsoft.Azure.Management.DataFactory.Models.BlobEventsTrigger : System.Collections.Generic.IList<string> * string * System.Collections.Generic.IDictionary<string, obj> * string * string * System.Collections.Generic.IList<obj> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.TriggerPipelineReference> * string * string * Nullable<bool> -> Microsoft.Azure.Management.DataFactory.Models.BlobEventsTrigger
Public Sub New (events As IList(Of String), scope As String, 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, Optional blobPathBeginsWith As String = Nothing, Optional blobPathEndsWith As String = Nothing, Optional ignoreEmptyBlobs As Nullable(Of Boolean) = Nothing)
Parameters
- scope
- String
The ARM resource ID of the Storage Account.
- 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.
- blobPathBeginsWith
- String
The blob path must begin with the pattern provided for trigger to fire. For example, '/records/blobs/december/' will only fire the trigger for blobs in the december folder under the records container. At least one of these must be provided: blobPathBeginsWith, blobPathEndsWith.
- blobPathEndsWith
- String
The blob path must end with the pattern provided for trigger to fire. For example, 'december/boxes.csv' will only fire the trigger for blobs named boxes in a december folder. At least one of these must be provided: blobPathBeginsWith, blobPathEndsWith.
Applies to
Azure SDK for .NET