Azure Blob Storage integration
Azure Blob Storage is supported through the Mach5 connector framework. This page lists every supported operation and where it can be used.
Connection

- Connector kind:
object_store - Configuration:
backend: "abs",bucket, optionalroot, optionaltest_prefix.
How to use this integration
For Axon concepts, safety classes, idempotency, and outcomes, see Axon workflows.
Axon
Axon is the controlled action path for connector reads, enrichments, and side effects. Use Axon when a workflow needs to call Azure Blob Storage directly, enrich an investigation, or take an approved action. Invoke the connector kind object_store with the operation name and JSON input.
connector: object_store
operation: list_objects
input: { ... }
Ingest Pipelines
Use ingest pipelines for operations exposed as sources. These operations can checkpoint and stream records into Mach5-managed data.
source.connector: object_store
source.operation: read_object
source.config: { ... }
SQL
Use SQL for read operations exposed as table or scalar functions. Query the connector operation with JSON input and join the result with Mach5 data.
SELECT *
FROM connector_table('object_store', 'list_objects', JSON '{}');
Supported operations
| Operation | What it does | Axon | Ingest Pipelines | SQL |
|---|---|---|---|---|
validate | Validate access to an object-store connection. | — | — | — |
list_objects | List object metadata from an object-store connection. | Yes | — | Yes |
read_object | Stream bytes or parsed records from an object-store object. | — | Yes | — |
read_object_preview | Read bounded preview bytes and metadata from an object-store object. | Yes | — | — |