providers/microsoft/azure/docs/sensors/wasb_sensors.rst
.. Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
.. http://www.apache.org/licenses/LICENSE-2.0
.. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
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 <https://docs.microsoft.com/en-us/rest/api/storageservices/blob-service-rest-api>_.
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.
:class:~airflow.providers.microsoft.azure.sensors.wasb.WasbBlobSensor
.. exampleinclude:: /../tests/system/microsoft/azure/example_wasb_sensors.py :language: python :dedent: 4 :start-after: [START wasb_blob_sensor] :end-before: [END wasb_blob_sensor]
Wasb Prefix Sensor ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Waits for blobs matching a prefix to arrive on Azure Blob Storage.
:class:~airflow.providers.microsoft.azure.sensors.wasb.WasbPrefixSensor
.. exampleinclude:: /../tests/system/microsoft/azure/example_wasb_sensors.py :language: python :dedent: 4 :start-after: [START wasb_prefix_sensor] :end-before: [END wasb_prefix_sensor]