Skip to main content

topic_types_event_types

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

Overview

Nametopic_types_event_types
TypeResource
Idazure.event_grid.topic_types_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
listselecttopicTypeNameList event types for a topic type.

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
topicTypeNamestringName of the topic type.

SELECT examples

List event types for a topic type.

SELECT
id,
name,
properties,
type
FROM azure.event_grid.topic_types_event_types
WHERE topicTypeName = '{{ topicTypeName }}' -- required
;