application_groups
Creates, updates, deletes, gets or lists an application_groups
resource.
Overview
Name | application_groups |
Type | Resource |
Id | azure.event_hubs.application_groups |
Fields
The following fields are returned by SELECT
queries:
- get
- list_by_namespace
Namespace ApplicationGroup returned successfully.
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 | The system meta data relating to this resource. |
type | string | The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" |
Namespace ApplicationGroups successfully returned.
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 | The system meta data relating to this resource. |
type | string | The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , namespaceName , applicationGroupName , subscriptionId | Gets an ApplicationGroup for a Namespace. | |
list_by_namespace | select | resourceGroupName , namespaceName , subscriptionId | Gets a list of application groups for a Namespace. | |
delete | delete | resourceGroupName , namespaceName , applicationGroupName , subscriptionId | Deletes an ApplicationGroup for a Namespace. |
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 |
---|---|---|
applicationGroupName | string | The Application Group name |
namespaceName | string | The Namespace name |
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
- get
- list_by_namespace
Gets an ApplicationGroup for a Namespace.
SELECT
id,
name,
location,
properties,
systemData,
type
FROM azure.event_hubs.application_groups
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND applicationGroupName = '{{ applicationGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
Gets a list of application groups for a Namespace.
SELECT
id,
name,
location,
properties,
systemData,
type
FROM azure.event_hubs.application_groups
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND namespaceName = '{{ namespaceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
DELETE
examples
- delete
Deletes an ApplicationGroup for a Namespace.
DELETE FROM azure.event_hubs.application_groups
WHERE resourceGroupName = '{{ resourceGroupName }}' --required
AND namespaceName = '{{ namespaceName }}' --required
AND applicationGroupName = '{{ applicationGroupName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
;