Azure Event Hubs · Arazzo Workflow
Microsoft Azure Event Hubs Provision a Namespace with an Event Hub
Version 1.0.0
Create an Event Hubs namespace, wait for it to finish provisioning, then create an event hub inside it.
View Spec
View on GitHub
Big DataEvent StreamingIoTMessage IngestionReal-Time ProcessingArazzoWorkflows
Provider
Workflows
provision-namespace-with-event-hub
Create a namespace, wait for provisioning, and add an event hub.
Creates an Event Hubs namespace with the supplied SKU and location, polls the namespace Get operation until provisioningState is Succeeded, and then creates an event hub with the requested partition count and retention.
1
createNamespace
Namespaces_CreateOrUpdate
Create or update the Event Hubs namespace with the supplied location and SKU. ARM accepts the request immediately and provisions asynchronously.
2
pollNamespace
Namespaces_Get
Poll the namespace until Azure reports the provisioning state as Succeeded so dependent resources can be created safely.
3
createEventHub
EventHubs_CreateOrUpdate
Create the event hub inside the provisioned namespace with the requested partition count and message retention.