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 resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}.
namestringThe name of the resource.
descriptionstringDescription of the extension topic.
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.
systemTopicstringSystem topic resource id which is mapped to the source.
typestringThe type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts".

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectscopeGet properties of an extension topic. Get 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 fully qualified Azure Resource manager identifier of the resource. Required.

SELECT examples

Get properties of an extension topic. Get the properties of an extension topic.

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