event_subscriptions_regional_by_subscriptions
Creates, updates, deletes, gets or lists a event_subscriptions_regional_by_subscriptions
resource.
Overview
Name | event_subscriptions_regional_by_subscriptions |
Type | Resource |
Id | azure.event_grid.event_subscriptions_regional_by_subscriptions |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Properties of the Event Subscription. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | List 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 }}';