topic_types
Creates, updates, deletes, gets or lists a topic_types
resource.
Overview
Name | topic_types |
Type | Resource |
Id | azure.event_grid.topic_types |
Fields
- vw_topic_types
- topic_types
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 |
additional_enforced_permissions | text | field from the properties object |
are_regional_and_global_sources_supported | text | field from the properties object |
display_name | text | field from the properties object |
provider | text | field from the properties object |
provisioning_state | text | field from the properties object |
resource_region_type | text | field from the properties object |
source_resource_format | text | field from the properties object |
supported_locations | text | field from the properties object |
supported_scopes_for_source | text | field from the properties object |
system_data | text | field from the properties object |
topicTypeName | 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 a topic type. |
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 | topicTypeName | Get information about a topic type. |
list | SELECT |
| List all registered topic types. |
SELECT
examples
List all registered topic types.
- vw_topic_types
- topic_types
SELECT
id,
name,
description,
additional_enforced_permissions,
are_regional_and_global_sources_supported,
display_name,
provider,
provisioning_state,
resource_region_type,
source_resource_format,
supported_locations,
supported_scopes_for_source,
system_data,
topicTypeName,
type
FROM azure.event_grid.vw_topic_types
;
SELECT
id,
name,
properties,
systemData,
type
FROM azure.event_grid.topic_types
;