Skip to main content

topic_types

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

Overview

Nametopic_types
TypeResource
Idazure.event_grid.topic_types

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselecttopicTypeNameGet information about a topic type.
listselectList all registered topic types.

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

Get information about a topic type.

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