Skip to main content

application_group_application_groups

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

Overview

Nameapplication_group_application_groups
TypeResource
Idazure.event_hubs.application_group_application_groups

Fields

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

Methods

NameAccessible byRequired ParamsDescription
create_or_updateINSERTapplicationGroupName, namespaceName, resourceGroupName, subscriptionIdCreates or updates an ApplicationGroup for a Namespace.

INSERT example

Use the following StackQL query and manifest file to create a new application_group_application_groups resource.

/*+ create */
INSERT INTO azure.event_hubs.application_group_application_groups (
applicationGroupName,
namespaceName,
resourceGroupName,
subscriptionId,
properties
)
SELECT
'{{ applicationGroupName }}',
'{{ namespaceName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ properties }}'
;