topic_types_event_types
Creates, updates, deletes, gets or lists a topic_types_event_types
resource.
Overview
Name | topic_types_event_types |
Type | Resource |
Id | azure.event_grid.topic_types_event_types |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource. |
name | string | Name of the resource. |
properties | object | Properties of the event type. |
type | string | Type of the resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | topicTypeName | List 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.
Name | Datatype | Description |
---|---|---|
topicTypeName | string | Name of the topic type. |
SELECT
examples
- list
List event types for a topic type.
SELECT
id,
name,
properties,
type
FROM azure.event_grid.topic_types_event_types
WHERE topicTypeName = '{{ topicTypeName }}' -- required
;