airflow.providers.microsoft.azure.triggers.wasb
¶
Module Contents¶
Classes¶
WasbBlobSensorTrigger is fired as deferred class with params to run the task in |
- class airflow.providers.microsoft.azure.triggers.wasb.WasbBlobSensorTrigger(container_name, blob_name, wasb_conn_id='wasb_default', public_read=False, poke_interval=5.0)[source]¶
Bases:
airflow.triggers.base.BaseTrigger
WasbBlobSensorTrigger is fired as deferred class with params to run the task in trigger worker to check for existence of the given blob in the provided container.
- Parameters
container_name (str) – name of the container in which the blob should be searched for
blob_name (str) – name of the blob to check existence for
wasb_conn_id (str) – the connection identifier for connecting to Azure WASB
poke_interval (float) – polling period in seconds to check for the status
public_read (bool) – whether an anonymous public read access should be used. Default is False