Azure Blob Storage

The Blob service stores text and binary data as objects in the cloud. The Blob service offers the following three resources: the storage account, containers, and blobs. Within your storage account, containers provide a way to organize sets of blobs. For more information about the service visit Azure Blob Storage API documentation. This page shows how to check for blobs in a particular container.

Wasb Blob Sensor

Waits for a blob to arrive on Azure Blob Storage. WasbBlobSensor

tests/system/providers/microsoft/azure/example_wasb_sensors.py[source]

azure_wasb_sensor = WasbBlobSensor(
    container_name=CONTAINER_NAME,
    blob_name=BLOB_NAME,
    task_id="wasb_sense_blob",
)

Wasb Prefix Sensor

Waits for blobs matching a prefix to arrive on Azure Blob Storage. WasbPrefixSensor

tests/system/providers/microsoft/azure/example_wasb_sensors.py[source]

azure_wasb_prefix_sensor = WasbPrefixSensor(
    container_name=CONTAINER_NAME,
    prefix=PREFIX,
    task_id="wasb_sense_prefix",
)

Was this entry helpful?