extension_topics
Creates, updates, deletes, gets or lists a extension_topics
resource.
Overview
Name | extension_topics |
Type | Resource |
Id | azure.event_grid.extension_topics |
Fields
- vw_extension_topics
- extension_topics
Name | Datatype | Description |
---|---|---|
id | text | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | text | The name of the resource |
description | text | field from the properties object |
scope | text | field from the properties object |
system_data | text | field from the properties object |
system_topic | text | field from the properties object |
type | text | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Properties of the Extension Topic |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | scope | Get the properties of an extension topic. |
SELECT
examples
Get the properties of an extension topic.
- vw_extension_topics
- extension_topics
SELECT
id,
name,
description,
scope,
system_data,
system_topic,
type
FROM azure.event_grid.vw_extension_topics
WHERE scope = '{{ scope }}';
SELECT
id,
name,
properties,
systemData,
type
FROM azure.event_grid.extension_topics
WHERE scope = '{{ scope }}';