Class BlobEventsTrigger
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.Trigger
-
- com.azure.resourcemanager.datafactory.models.MultiplePipelineTrigger
-
- com.azure.resourcemanager.datafactory.models.BlobEventsTrigger
-
public final class BlobEventsTrigger extends MultiplePipelineTrigger
Trigger that runs every time a Blob event occurs.
-
-
Constructor Summary
Constructors Constructor Description BlobEventsTrigger()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
blobPathBeginsWith()
Get the blobPathBeginsWith property: The blob path must begin with the pattern provided for trigger to fire.String
blobPathEndsWith()
Get the blobPathEndsWith property: The blob path must end with the pattern provided for trigger to fire.List<BlobEventTypes>
events()
Get the events property: The type of events that cause this trigger to fire.Boolean
ignoreEmptyBlobs()
Get the ignoreEmptyBlobs property: If set to true, blobs with zero bytes will be ignored.String
scope()
Get the scope property: The ARM resource ID of the Storage Account.void
validate()
Validates the instance.BlobEventsTrigger
withAnnotations(List<Object> annotations)
Set the annotations property: List of tags that can be used for describing the trigger.BlobEventsTrigger
withBlobPathBeginsWith(String blobPathBeginsWith)
Set the blobPathBeginsWith property: The blob path must begin with the pattern provided for trigger to fire.BlobEventsTrigger
withBlobPathEndsWith(String blobPathEndsWith)
Set the blobPathEndsWith property: The blob path must end with the pattern provided for trigger to fire.BlobEventsTrigger
withDescription(String description)
Set the description property: Trigger description.BlobEventsTrigger
withEvents(List<BlobEventTypes> events)
Set the events property: The type of events that cause this trigger to fire.BlobEventsTrigger
withIgnoreEmptyBlobs(Boolean ignoreEmptyBlobs)
Set the ignoreEmptyBlobs property: If set to true, blobs with zero bytes will be ignored.BlobEventsTrigger
withPipelines(List<TriggerPipelineReference> pipelines)
Set the pipelines property: Pipelines that need to be started.BlobEventsTrigger
withScope(String scope)
Set the scope property: The ARM resource ID of the Storage Account.-
Methods inherited from class com.azure.resourcemanager.datafactory.models.MultiplePipelineTrigger
pipelines
-
Methods inherited from class com.azure.resourcemanager.datafactory.models.Trigger
additionalProperties, annotations, description, runtimeState, withAdditionalProperties
-
-
-
-
Method Detail
-
withPipelines
public BlobEventsTrigger withPipelines(List<TriggerPipelineReference> pipelines)
Set the pipelines property: Pipelines that need to be started.- Overrides:
withPipelines
in classMultiplePipelineTrigger
- Parameters:
pipelines
- the pipelines value to set.- Returns:
- the MultiplePipelineTrigger object itself.
-
withDescription
public BlobEventsTrigger withDescription(String description)
Set the description property: Trigger description.- Overrides:
withDescription
in classMultiplePipelineTrigger
- Parameters:
description
- the description value to set.- Returns:
- the Trigger object itself.
-
withAnnotations
public BlobEventsTrigger withAnnotations(List<Object> annotations)
Set the annotations property: List of tags that can be used for describing the trigger.- Overrides:
withAnnotations
in classMultiplePipelineTrigger
- Parameters:
annotations
- the annotations value to set.- Returns:
- the Trigger object itself.
-
blobPathBeginsWith
public String blobPathBeginsWith()
Get the blobPathBeginsWith property: 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.- Returns:
- the blobPathBeginsWith value.
-
withBlobPathBeginsWith
public BlobEventsTrigger withBlobPathBeginsWith(String blobPathBeginsWith)
Set the blobPathBeginsWith property: 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.- Parameters:
blobPathBeginsWith
- the blobPathBeginsWith value to set.- Returns:
- the BlobEventsTrigger object itself.
-
blobPathEndsWith
public String blobPathEndsWith()
Get the blobPathEndsWith property: 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.- Returns:
- the blobPathEndsWith value.
-
withBlobPathEndsWith
public BlobEventsTrigger withBlobPathEndsWith(String blobPathEndsWith)
Set the blobPathEndsWith property: 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.- Parameters:
blobPathEndsWith
- the blobPathEndsWith value to set.- Returns:
- the BlobEventsTrigger object itself.
-
ignoreEmptyBlobs
public Boolean ignoreEmptyBlobs()
Get the ignoreEmptyBlobs property: If set to true, blobs with zero bytes will be ignored.- Returns:
- the ignoreEmptyBlobs value.
-
withIgnoreEmptyBlobs
public BlobEventsTrigger withIgnoreEmptyBlobs(Boolean ignoreEmptyBlobs)
Set the ignoreEmptyBlobs property: If set to true, blobs with zero bytes will be ignored.- Parameters:
ignoreEmptyBlobs
- the ignoreEmptyBlobs value to set.- Returns:
- the BlobEventsTrigger object itself.
-
events
public List<BlobEventTypes> events()
Get the events property: The type of events that cause this trigger to fire.- Returns:
- the events value.
-
withEvents
public BlobEventsTrigger withEvents(List<BlobEventTypes> events)
Set the events property: The type of events that cause this trigger to fire.- Parameters:
events
- the events value to set.- Returns:
- the BlobEventsTrigger object itself.
-
scope
public String scope()
Get the scope property: The ARM resource ID of the Storage Account.- Returns:
- the scope value.
-
withScope
public BlobEventsTrigger withScope(String scope)
Set the scope property: The ARM resource ID of the Storage Account.- Parameters:
scope
- the scope value to set.- Returns:
- the BlobEventsTrigger object itself.
-
validate
public void validate()
Validates the instance.- Overrides:
validate
in classMultiplePipelineTrigger
- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-