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