clusters_namespaces
Creates, updates, deletes, gets or lists a clusters_namespaces
resource.
Overview
Name | clusters_namespaces |
Type | Resource |
Id | azure.event_hubs.clusters_namespaces |
Fields
The following fields are returned by SELECT
queries:
- list
List of Namespace IDs in Cluster successfully delivered.
Name | Datatype | Description |
---|---|---|
id | string | id parameter |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , clusterName | List all Event Hubs Namespace IDs in an Event Hubs Dedicated Cluster. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
clusterName | string | The name of the Event Hubs Cluster. |
resourceGroupName | string | Name of the resource group within the azure subscription. |
subscriptionId | string | Subscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
List all Event Hubs Namespace IDs in an Event Hubs Dedicated Cluster.
SELECT
id
FROM azure.event_hubs.clusters_namespaces
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND clusterName = '{{ clusterName }}' -- required
;