Skip to main content

application_group_application_groups

Creates, updates, deletes, gets or lists an application_group_application_groups resource.

Overview

Nameapplication_group_application_groups
TypeResource
Idazure.event_hubs.application_group_application_groups

Fields

The following fields are returned by SELECT queries:

SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
create_or_updateinsertresourceGroupName, namespaceName, applicationGroupName, subscriptionIdCreates or updates 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.

NameDatatypeDescription
applicationGroupNamestringThe Application Group name
namespaceNamestringThe Namespace name
resourceGroupNamestringName of the resource group within the azure subscription.
subscriptionIdstringSubscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

INSERT examples

Creates or updates an ApplicationGroup for a Namespace.

INSERT INTO azure.event_hubs.application_group_application_groups (
data__properties,
resourceGroupName,
namespaceName,
applicationGroupName,
subscriptionId
)
SELECT
'{{ properties }}',
'{{ resourceGroupName }}',
'{{ namespaceName }}',
'{{ applicationGroupName }}',
'{{ subscriptionId }}'
RETURNING
id,
name,
location,
properties,
systemData,
type
;