Skip to main content

event_subscriptions_global_by_resource_groups

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

Overview

Nameevent_subscriptions_global_by_resource_groups
TypeResource
Idazure.event_grid.event_subscriptions_global_by_resource_groups

Fields

NameDatatypeDescription
idstringFully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
namestringThe name of the resource
propertiesobjectProperties of the Event Subscription.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Methods

NameAccessible byRequired ParamsDescription
listSELECTresourceGroupName, subscriptionIdList all global event subscriptions under a specific Azure subscription and resource group.

SELECT examples

List all global event subscriptions under a specific Azure subscription and resource group.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.event_grid.event_subscriptions_global_by_resource_groups
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';