extension_topics
Creates, updates, deletes, gets or lists an extension_topics
resource.
Overview
Name | extension_topics |
Type | Resource |
Id | azure.event_grid.extension_topics |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified identifier of the resource. |
name | string | Name of the resource. |
properties | object | Properties of the extension topic. |
systemData | object | The system metadata relating to Extension Topic resource. |
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 | scope | 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.
Name | Datatype | Description |
---|---|---|
scope | string | The 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
Get the properties of an extension topic.
SELECT
id,
name,
properties,
systemData,
type
FROM azure.event_grid.extension_topics
WHERE scope = '{{ scope }}' -- required
;