Skip to main content

topics_event_types

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

Overview

Nametopics_event_types
TypeResource
Idazure.event_grid.topics_event_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified identifier of the resource.
namestringName of the resource.
propertiesobjectProperties of the event type.
typestringType of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, providerNamespace, resourceTypeName, resourceNameList event types for a topic.

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
providerNamespacestringNamespace of the provider of the topic.
resourceGroupNamestringThe name of the resource group within the user's subscription.
resourceNamestringName of the topic.
resourceTypeNamestringName of the topic type.
subscriptionIdstringSubscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

List event types for a topic.

SELECT
id,
name,
properties,
type
FROM azure.event_grid.topics_event_types
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND providerNamespace = '{{ providerNamespace }}' -- required
AND resourceTypeName = '{{ resourceTypeName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
;