topics_event_types
Creates, updates, deletes, gets or lists a topics_event_types
resource.
Overview
Name | topics_event_types |
Type | Resource |
Id | azure.event_grid.topics_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 | subscriptionId , resourceGroupName , providerNamespace , resourceTypeName , resourceName | List 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.
Name | Datatype | Description |
---|---|---|
providerNamespace | string | Namespace of the provider of the topic. |
resourceGroupName | string | The name of the resource group within the user's subscription. |
resourceName | string | Name of the topic. |
resourceTypeName | string | Name of the topic type. |
subscriptionId | string | Subscription credentials that uniquely identify a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
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
;