Skip to main content

extension_topics

Creates, updates, deletes, gets or lists an extension_topics resource.

Overview

Nameextension_topics
TypeResource
Idazure.event_grid.extension_topics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified identifier of the resource.
namestringName of the resource.
propertiesobjectProperties of the extension topic.
systemDataobjectThe system metadata relating to Extension Topic resource.
typestringType of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscopeGet the properties of an extension 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.

NameDatatypeDescription
scopestringThe identifier of the resource to which extension topic is queried. The scope can be a subscription, or a resource group, or a top level resource belonging to a resource provider namespace. For example, use '/subscriptions/{subscriptionId}/' for a subscription, '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a resource group, and '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}' for Azure resource.

SELECT examples

Get the properties of an extension topic.

SELECT
id,
name,
properties,
systemData,
type
FROM azure.event_grid.extension_topics
WHERE scope = '{{ scope }}' -- required
;