application_groups
Creates, updates, deletes, gets or lists a application_groups
resource.
Overview
Name | application_groups |
Type | Resource |
Id | azure.event_hubs.application_groups |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name | string | The name of the resource |
location | string | The geo-location where the resource lives |
properties | object | |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | applicationGroupName, namespaceName, resourceGroupName, subscriptionId | Gets an ApplicationGroup for a Namespace. |
list_by_namespace | SELECT | namespaceName, resourceGroupName, subscriptionId | Gets a list of application groups for a Namespace. |
delete | DELETE | applicationGroupName, namespaceName, resourceGroupName, subscriptionId | Deletes an ApplicationGroup for a Namespace. |
SELECT
examples
Gets a list of application groups for a Namespace.
SELECT
id,
name,
location,
properties,
systemData,
type
FROM azure.event_hubs.application_groups
WHERE namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified application_groups
resource.
/*+ delete */
DELETE FROM azure.event_hubs.application_groups
WHERE applicationGroupName = '{{ applicationGroupName }}'
AND namespaceName = '{{ namespaceName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';