Skip to main content

event_subscriptions_regional_by_subscriptions

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

Overview

Nameevent_subscriptions_regional_by_subscriptions
TypeResource
Idazure.event_grid.event_subscriptions_regional_by_subscriptions

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
listSELECTlocation, subscriptionIdList all event subscriptions from the given location under a specific Azure subscription.

SELECT examples

List all event subscriptions from the given location under a specific Azure subscription.

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