Microsoft.EventGrid topicTypes
- Latest
- 2023-12-15-preview
- 2023-06-01-preview
- 2022-06-15
- 2021-12-01
- 2021-10-15-preview
- 2021-06-01-preview
- 2020-10-15-preview
- 2020-06-01
- 2020-04-01-preview
- 2020-01-01-preview
- 2019-06-01
- 2019-02-01-preview
- 2019-01-01
- 2018-09-15-preview
- 2018-05-01-preview
- 2018-01-01
- 2017-09-15-preview
- 2017-06-15-preview
Bicep resource definition
The topicTypes resource type can exist at: Tenants
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the existing
keyword.
Resource format
To create a Microsoft.EventGrid/topicTypes resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.EventGrid/topicTypes@2023-12-15-preview' existing = {
name: 'string'
}
Property values
topicTypes
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | string (required) |
ARM template resource definition
The topicTypes resource type can exist at: Tenants
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the reference
function.
Resource format
To create a Microsoft.EventGrid/topicTypes resource, add the following JSON to your template.
[reference(resourceId('Microsoft.EventGrid/topicTypes', '{name}'), '2023-12-15-preview')]
Property values
topicTypes
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | string (required) |
Terraform (AzAPI provider) resource definition
The topicTypes resource type can exist at: Tenants
Note
This resource type is read-only, which means it can't be deployed but an existing instance can be referenced. Typically, read-only resource types are automatically created by the service.
Use the data
keyword.
Resource format
To create a Microsoft.EventGrid/topicTypes resource, add the following Terraform to your template.
data "azapi_resource" "symbolicname" {
type = "Microsoft.EventGrid/topicTypes@2023-12-15-preview"
name = "string"
parent_id = "string"
}
Property values
topicTypes
Name | Description | Value |
---|---|---|
name | The name of the existing resource. | string (required) |
parent_id | To reference a tenant, use / . |
string (required) |