Azure Storage
46 sites
Security covered
This project integrates your Drupal site with Microsoft Azure Storage services, allowing you to manage blobs, tables, and queues. It provides a client interface to easily interact with Azure's storage features, including sending messages to storage queues.
This project provides an easy integration with Microsoft Azure Storage services (blobs, tables and queues)..
GitHub mirror: https://github.com/baikho/drupal-azure_storage
Usage
/** @var \Drupal\azure_storage\AzureStorageClientInterface $storage_client */
$storage_client = \Drupal::service('azure_storage.client');
Storage Queue Service examples
// Simple usage.
$storage_queue_service = $storage_client->getStorageQueueService();
// Or with a dedicated connection string.
$storage_queue_service = $storage_client
->setStorageQueueService($connection_string)
->getStorageQueueService();
// Send a message.
$storage_queue_service->createMessage('queue_name', 'message');