Microsoft.EventGrid namespaces 2023-12-15-preview
Bicep resource definition
The namespaces resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.EventGrid/namespaces resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.EventGrid/namespaces@2023-12-15-preview' = {
identity: {
principalId: 'string'
tenantId: 'string'
type: 'string'
userAssignedIdentities: {
{customized property}: {
clientId: 'string'
principalId: 'string'
}
}
}
location: 'string'
name: 'string'
properties: {
inboundIpRules: [
{
action: 'string'
ipMask: 'string'
}
]
isZoneRedundant: bool
minimumTlsVersionAllowed: 'string'
privateEndpointConnections: [
{
properties: {
groupIds: [
'string'
]
privateEndpoint: {
id: 'string'
}
privateLinkServiceConnectionState: {
actionsRequired: 'string'
description: 'string'
status: 'string'
}
provisioningState: 'string'
}
}
]
publicNetworkAccess: 'string'
topicsConfiguration: {}
topicSpacesConfiguration: {
clientAuthentication: {
alternativeAuthenticationNameSources: [
'string'
]
}
maximumClientSessionsPerAuthenticationName: int
maximumSessionExpiryInHours: int
routeTopicResourceId: 'string'
routingEnrichments: {
dynamic: [
{
key: 'string'
value: 'string'
}
]
static: [
{
key: 'string'
valueType: 'string'
// For remaining properties, see StaticRoutingEnrichment objects
}
]
}
routingIdentityInfo: {
type: 'string'
userAssignedIdentity: 'string'
}
state: 'string'
}
}
sku: {
capacity: int
name: 'string'
}
tags: {
{customized property}: 'string'
}
}
StaticRoutingEnrichment objects
Set the valueType property to specify the type of object.
For String, use:
{
value: 'string'
valueType: 'String'
}
Property Values
ClientAuthenticationSettings
Name | Description | Value |
---|---|---|
alternativeAuthenticationNameSources | Alternative authentication name sources related to client authentication settings for namespace resource. | String array containing any of: 'ClientCertificateDns' 'ClientCertificateEmail' 'ClientCertificateIp' 'ClientCertificateSubject' 'ClientCertificateUri' |
ConnectionState
Name | Description | Value |
---|---|---|
actionsRequired | Actions required (if any). | string |
description | Description of the connection state. | string |
status | Status of the connection. | 'Approved' 'Disconnected' 'Pending' 'Rejected' |
DynamicRoutingEnrichment
Name | Description | Value |
---|---|---|
key | Dynamic routing enrichment key. | string |
value | Dynamic routing enrichment value. | string |
IdentityInfo
Name | Description | Value |
---|---|---|
principalId | The principal ID of resource identity. | string |
tenantId | The tenant ID of resource. | string |
type | The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity. | 'None' 'SystemAssigned' 'SystemAssigned, UserAssigned' 'UserAssigned' |
userAssignedIdentities | The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage. |
IdentityInfoUserAssignedIdentities |
IdentityInfoUserAssignedIdentities
Name | Description | Value |
---|
InboundIpRule
Name | Description | Value |
---|---|---|
action | Action to perform based on the match or no match of the IpMask. | 'Allow' |
ipMask | IP Address in CIDR notation e.g., 10.0.0.0/8. | string |
Microsoft.EventGrid/namespaces
Name | Description | Value |
---|---|---|
identity | Identity information for the Namespace resource. | IdentityInfo |
location | Location of the resource. | string (required) |
name | The resource name | string Constraints: Min length = 3 Max length = 50 Pattern = ^[a-zA-Z0-9-]*$ (required) |
properties | Properties of the Namespace resource. | NamespaceProperties |
sku | Represents available Sku pricing tiers. | NamespaceSku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
NamespaceProperties
Name | Description | Value |
---|---|---|
inboundIpRules | This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled. | InboundIpRule[] |
isZoneRedundant | This is an optional property and it allows the user to specify if the namespace resource supports zone-redundancy capability or not. If this property is not specified explicitly by the user, its default value depends on the following conditions: a. For Availability Zones enabled regions - The default property value would be true. b. For non-Availability Zones enabled regions - The default property value would be false. Once specified, this property cannot be updated. |
bool |
minimumTlsVersionAllowed | Minimum TLS version of the publisher allowed to publish to this namespace. Only TLS version 1.2 is supported. | '1.0' '1.1' '1.2' |
privateEndpointConnections | PrivateEndpointConnection[] | |
publicNetworkAccess | This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.PubSub.NamespaceProperties.InboundIpRules" /> |
'Disabled' 'Enabled' 'SecuredByPerimeter' |
topicsConfiguration | Topics configuration information for the namespace resource | TopicsConfiguration |
topicSpacesConfiguration | Topic spaces configuration information for the namespace resource | TopicSpacesConfiguration |
NamespaceSku
Name | Description | Value |
---|---|---|
capacity | Specifies the number of Throughput Units that defines the capacity for the namespace. The property default value is 1 which signifies 1 Throughput Unit = 1MB/s ingress and 2MB/s egress per namespace. Min capacity is 1 and max allowed capacity is 20. |
int |
name | The name of the SKU. | 'Standard' |
PrivateEndpoint
Name | Description | Value |
---|---|---|
id | The ARM identifier for Private Endpoint. | string |
PrivateEndpointConnection
Name | Description | Value |
---|---|---|
properties | Properties of the PrivateEndpointConnection. | PrivateEndpointConnectionProperties |
PrivateEndpointConnectionProperties
Name | Description | Value |
---|---|---|
groupIds | GroupIds from the private link service resource. | string[] |
privateEndpoint | The Private Endpoint resource for this Connection. | PrivateEndpoint |
privateLinkServiceConnectionState | Details about the state of the connection. | ConnectionState |
provisioningState | Provisioning state of the Private Endpoint Connection. | 'Canceled' 'Creating' 'Deleting' 'Failed' 'Succeeded' 'Updating' |
RoutingEnrichments
Name | Description | Value |
---|---|---|
dynamic | DynamicRoutingEnrichment[] | |
static | StaticRoutingEnrichment[] |
RoutingIdentityInfo
Name | Description | Value |
---|---|---|
type | 'None' 'SystemAssigned' 'UserAssigned' |
|
userAssignedIdentity | string |
StaticRoutingEnrichment
Name | Description | Value |
---|---|---|
key | Static routing enrichment key. | string |
valueType | Set to 'String' for type StaticStringRoutingEnrichment. | 'String' (required) |
StaticStringRoutingEnrichment
Name | Description | Value |
---|---|---|
value | String type routing enrichment value. | string |
valueType | Static routing enrichment value type. For e.g. this property value can be 'String'. | 'String' (required) |
TopicsConfiguration
Name | Description | Value |
---|
TopicSpacesConfiguration
Name | Description | Value |
---|---|---|
clientAuthentication | Client authentication settings for topic spaces configuration. | ClientAuthenticationSettings |
maximumClientSessionsPerAuthenticationName | The maximum number of sessions per authentication name. The property default value is 1. Min allowed value is 1 and max allowed value is 100. |
int |
maximumSessionExpiryInHours | The maximum session expiry in hours. The property default value is 1 hour. Min allowed value is 1 hour and max allowed value is 8 hours. |
int |
routeTopicResourceId | Fully qualified Azure Resource Id for the Event Grid Topic to which events will be routed to from TopicSpaces under a namespace. This property should be in the following format '/subscriptions/{subId}/resourcegroups/{resourceGroupName}/providers/microsoft.EventGrid/topics/{topicName}'. This topic should reside in the same region where namespace is located. |
string |
routingEnrichments | Routing enrichments for topic spaces configuration | RoutingEnrichments |
routingIdentityInfo | Routing identity info for topic spaces configuration. | RoutingIdentityInfo |
state | Indicate if Topic Spaces Configuration is enabled for the namespace. Default is Disabled. | 'Disabled' 'Enabled' |
TrackedResourceTags
Name | Description | Value |
---|
UserIdentityProperties
Name | Description | Value |
---|---|---|
clientId | The client id of user assigned identity. | string |
principalId | The principal id of user assigned identity. | string |
Usage Examples
Azure Verified Modules
The following Azure Verified Modules can be used to deploy this resource type.
Module | Description |
---|---|
Event Grid Namespace | AVM Resource Module for Event Grid Namespace |
ARM template resource definition
The namespaces resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.EventGrid/namespaces resource, add the following JSON to your template.
{
"type": "Microsoft.EventGrid/namespaces",
"apiVersion": "2023-12-15-preview",
"name": "string",
"identity": {
"principalId": "string",
"tenantId": "string",
"type": "string",
"userAssignedIdentities": {
"{customized property}": {
"clientId": "string",
"principalId": "string"
}
}
},
"location": "string",
"properties": {
"inboundIpRules": [
{
"action": "string",
"ipMask": "string"
}
],
"isZoneRedundant": "bool",
"minimumTlsVersionAllowed": "string",
"privateEndpointConnections": [
{
"properties": {
"groupIds": [ "string" ],
"privateEndpoint": {
"id": "string"
},
"privateLinkServiceConnectionState": {
"actionsRequired": "string",
"description": "string",
"status": "string"
},
"provisioningState": "string"
}
}
],
"publicNetworkAccess": "string",
"topicsConfiguration": {
},
"topicSpacesConfiguration": {
"clientAuthentication": {
"alternativeAuthenticationNameSources": [ "string" ]
},
"maximumClientSessionsPerAuthenticationName": "int",
"maximumSessionExpiryInHours": "int",
"routeTopicResourceId": "string",
"routingEnrichments": {
"dynamic": [
{
"key": "string",
"value": "string"
}
],
"static": [ {
"key": "string",
"valueType": "string"
// For remaining properties, see StaticRoutingEnrichment objects
} ]
},
"routingIdentityInfo": {
"type": "string",
"userAssignedIdentity": "string"
},
"state": "string"
}
},
"sku": {
"capacity": "int",
"name": "string"
},
"tags": {
"{customized property}": "string"
}
}
StaticRoutingEnrichment objects
Set the valueType property to specify the type of object.
For String, use:
{
"value": "string",
"valueType": "String"
}
Property Values
ClientAuthenticationSettings
Name | Description | Value |
---|---|---|
alternativeAuthenticationNameSources | Alternative authentication name sources related to client authentication settings for namespace resource. | String array containing any of: 'ClientCertificateDns' 'ClientCertificateEmail' 'ClientCertificateIp' 'ClientCertificateSubject' 'ClientCertificateUri' |
ConnectionState
Name | Description | Value |
---|---|---|
actionsRequired | Actions required (if any). | string |
description | Description of the connection state. | string |
status | Status of the connection. | 'Approved' 'Disconnected' 'Pending' 'Rejected' |
DynamicRoutingEnrichment
Name | Description | Value |
---|---|---|
key | Dynamic routing enrichment key. | string |
value | Dynamic routing enrichment value. | string |
IdentityInfo
Name | Description | Value |
---|---|---|
principalId | The principal ID of resource identity. | string |
tenantId | The tenant ID of resource. | string |
type | The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity. | 'None' 'SystemAssigned' 'SystemAssigned, UserAssigned' 'UserAssigned' |
userAssignedIdentities | The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage. |
IdentityInfoUserAssignedIdentities |
IdentityInfoUserAssignedIdentities
Name | Description | Value |
---|
InboundIpRule
Name | Description | Value |
---|---|---|
action | Action to perform based on the match or no match of the IpMask. | 'Allow' |
ipMask | IP Address in CIDR notation e.g., 10.0.0.0/8. | string |
Microsoft.EventGrid/namespaces
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2023-12-15-preview' |
identity | Identity information for the Namespace resource. | IdentityInfo |
location | Location of the resource. | string (required) |
name | The resource name | string Constraints: Min length = 3 Max length = 50 Pattern = ^[a-zA-Z0-9-]*$ (required) |
properties | Properties of the Namespace resource. | NamespaceProperties |
sku | Represents available Sku pricing tiers. | NamespaceSku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.EventGrid/namespaces' |
NamespaceProperties
Name | Description | Value |
---|---|---|
inboundIpRules | This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled. | InboundIpRule[] |
isZoneRedundant | This is an optional property and it allows the user to specify if the namespace resource supports zone-redundancy capability or not. If this property is not specified explicitly by the user, its default value depends on the following conditions: a. For Availability Zones enabled regions - The default property value would be true. b. For non-Availability Zones enabled regions - The default property value would be false. Once specified, this property cannot be updated. |
bool |
minimumTlsVersionAllowed | Minimum TLS version of the publisher allowed to publish to this namespace. Only TLS version 1.2 is supported. | '1.0' '1.1' '1.2' |
privateEndpointConnections | PrivateEndpointConnection[] | |
publicNetworkAccess | This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.PubSub.NamespaceProperties.InboundIpRules" /> |
'Disabled' 'Enabled' 'SecuredByPerimeter' |
topicsConfiguration | Topics configuration information for the namespace resource | TopicsConfiguration |
topicSpacesConfiguration | Topic spaces configuration information for the namespace resource | TopicSpacesConfiguration |
NamespaceSku
Name | Description | Value |
---|---|---|
capacity | Specifies the number of Throughput Units that defines the capacity for the namespace. The property default value is 1 which signifies 1 Throughput Unit = 1MB/s ingress and 2MB/s egress per namespace. Min capacity is 1 and max allowed capacity is 20. |
int |
name | The name of the SKU. | 'Standard' |
PrivateEndpoint
Name | Description | Value |
---|---|---|
id | The ARM identifier for Private Endpoint. | string |
PrivateEndpointConnection
Name | Description | Value |
---|---|---|
properties | Properties of the PrivateEndpointConnection. | PrivateEndpointConnectionProperties |
PrivateEndpointConnectionProperties
Name | Description | Value |
---|---|---|
groupIds | GroupIds from the private link service resource. | string[] |
privateEndpoint | The Private Endpoint resource for this Connection. | PrivateEndpoint |
privateLinkServiceConnectionState | Details about the state of the connection. | ConnectionState |
provisioningState | Provisioning state of the Private Endpoint Connection. | 'Canceled' 'Creating' 'Deleting' 'Failed' 'Succeeded' 'Updating' |
RoutingEnrichments
Name | Description | Value |
---|---|---|
dynamic | DynamicRoutingEnrichment[] | |
static | StaticRoutingEnrichment[] |
RoutingIdentityInfo
Name | Description | Value |
---|---|---|
type | 'None' 'SystemAssigned' 'UserAssigned' |
|
userAssignedIdentity | string |
StaticRoutingEnrichment
Name | Description | Value |
---|---|---|
key | Static routing enrichment key. | string |
valueType | Set to 'String' for type StaticStringRoutingEnrichment. | 'String' (required) |
StaticStringRoutingEnrichment
Name | Description | Value |
---|---|---|
value | String type routing enrichment value. | string |
valueType | Static routing enrichment value type. For e.g. this property value can be 'String'. | 'String' (required) |
TopicsConfiguration
Name | Description | Value |
---|
TopicSpacesConfiguration
Name | Description | Value |
---|---|---|
clientAuthentication | Client authentication settings for topic spaces configuration. | ClientAuthenticationSettings |
maximumClientSessionsPerAuthenticationName | The maximum number of sessions per authentication name. The property default value is 1. Min allowed value is 1 and max allowed value is 100. |
int |
maximumSessionExpiryInHours | The maximum session expiry in hours. The property default value is 1 hour. Min allowed value is 1 hour and max allowed value is 8 hours. |
int |
routeTopicResourceId | Fully qualified Azure Resource Id for the Event Grid Topic to which events will be routed to from TopicSpaces under a namespace. This property should be in the following format '/subscriptions/{subId}/resourcegroups/{resourceGroupName}/providers/microsoft.EventGrid/topics/{topicName}'. This topic should reside in the same region where namespace is located. |
string |
routingEnrichments | Routing enrichments for topic spaces configuration | RoutingEnrichments |
routingIdentityInfo | Routing identity info for topic spaces configuration. | RoutingIdentityInfo |
state | Indicate if Topic Spaces Configuration is enabled for the namespace. Default is Disabled. | 'Disabled' 'Enabled' |
TrackedResourceTags
Name | Description | Value |
---|
UserIdentityProperties
Name | Description | Value |
---|---|---|
clientId | The client id of user assigned identity. | string |
principalId | The principal id of user assigned identity. | string |
Usage Examples
Terraform (AzAPI provider) resource definition
The namespaces resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.EventGrid/namespaces resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.EventGrid/namespaces@2023-12-15-preview"
name = "string"
identity = {
principalId = "string"
tenantId = "string"
type = "string"
userAssignedIdentities = {
{customized property} = {
clientId = "string"
principalId = "string"
}
}
}
location = "string"
sku = {
capacity = int
name = "string"
}
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
inboundIpRules = [
{
action = "string"
ipMask = "string"
}
]
isZoneRedundant = bool
minimumTlsVersionAllowed = "string"
privateEndpointConnections = [
{
properties = {
groupIds = [
"string"
]
privateEndpoint = {
id = "string"
}
privateLinkServiceConnectionState = {
actionsRequired = "string"
description = "string"
status = "string"
}
provisioningState = "string"
}
}
]
publicNetworkAccess = "string"
topicsConfiguration = {
}
topicSpacesConfiguration = {
clientAuthentication = {
alternativeAuthenticationNameSources = [
"string"
]
}
maximumClientSessionsPerAuthenticationName = int
maximumSessionExpiryInHours = int
routeTopicResourceId = "string"
routingEnrichments = {
dynamic = [
{
key = "string"
value = "string"
}
]
static = [
{
key = "string"
valueType = "string"
// For remaining properties, see StaticRoutingEnrichment objects
}
]
}
routingIdentityInfo = {
type = "string"
userAssignedIdentity = "string"
}
state = "string"
}
}
})
}
StaticRoutingEnrichment objects
Set the valueType property to specify the type of object.
For String, use:
{
value = "string"
valueType = "String"
}
Property Values
ClientAuthenticationSettings
Name | Description | Value |
---|---|---|
alternativeAuthenticationNameSources | Alternative authentication name sources related to client authentication settings for namespace resource. | String array containing any of: 'ClientCertificateDns' 'ClientCertificateEmail' 'ClientCertificateIp' 'ClientCertificateSubject' 'ClientCertificateUri' |
ConnectionState
Name | Description | Value |
---|---|---|
actionsRequired | Actions required (if any). | string |
description | Description of the connection state. | string |
status | Status of the connection. | 'Approved' 'Disconnected' 'Pending' 'Rejected' |
DynamicRoutingEnrichment
Name | Description | Value |
---|---|---|
key | Dynamic routing enrichment key. | string |
value | Dynamic routing enrichment value. | string |
IdentityInfo
Name | Description | Value |
---|---|---|
principalId | The principal ID of resource identity. | string |
tenantId | The tenant ID of resource. | string |
type | The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identity. | 'None' 'SystemAssigned' 'SystemAssigned, UserAssigned' 'UserAssigned' |
userAssignedIdentities | The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'. This property is currently not used and reserved for future usage. |
IdentityInfoUserAssignedIdentities |
IdentityInfoUserAssignedIdentities
Name | Description | Value |
---|
InboundIpRule
Name | Description | Value |
---|---|---|
action | Action to perform based on the match or no match of the IpMask. | 'Allow' |
ipMask | IP Address in CIDR notation e.g., 10.0.0.0/8. | string |
Microsoft.EventGrid/namespaces
Name | Description | Value |
---|---|---|
identity | Identity information for the Namespace resource. | IdentityInfo |
location | Location of the resource. | string (required) |
name | The resource name | string Constraints: Min length = 3 Max length = 50 Pattern = ^[a-zA-Z0-9-]*$ (required) |
properties | Properties of the Namespace resource. | NamespaceProperties |
sku | Represents available Sku pricing tiers. | NamespaceSku |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.EventGrid/namespaces@2023-12-15-preview" |
NamespaceProperties
Name | Description | Value |
---|---|---|
inboundIpRules | This can be used to restrict traffic from specific IPs instead of all IPs. Note: These are considered only if PublicNetworkAccess is enabled. | InboundIpRule[] |
isZoneRedundant | This is an optional property and it allows the user to specify if the namespace resource supports zone-redundancy capability or not. If this property is not specified explicitly by the user, its default value depends on the following conditions: a. For Availability Zones enabled regions - The default property value would be true. b. For non-Availability Zones enabled regions - The default property value would be false. Once specified, this property cannot be updated. |
bool |
minimumTlsVersionAllowed | Minimum TLS version of the publisher allowed to publish to this namespace. Only TLS version 1.2 is supported. | '1.0' '1.1' '1.2' |
privateEndpointConnections | PrivateEndpointConnection[] | |
publicNetworkAccess | This determines if traffic is allowed over public network. By default it is enabled. You can further restrict to specific IPs by configuring <seealso cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.PubSub.NamespaceProperties.InboundIpRules" /> |
'Disabled' 'Enabled' 'SecuredByPerimeter' |
topicsConfiguration | Topics configuration information for the namespace resource | TopicsConfiguration |
topicSpacesConfiguration | Topic spaces configuration information for the namespace resource | TopicSpacesConfiguration |
NamespaceSku
Name | Description | Value |
---|---|---|
capacity | Specifies the number of Throughput Units that defines the capacity for the namespace. The property default value is 1 which signifies 1 Throughput Unit = 1MB/s ingress and 2MB/s egress per namespace. Min capacity is 1 and max allowed capacity is 20. |
int |
name | The name of the SKU. | 'Standard' |
PrivateEndpoint
Name | Description | Value |
---|---|---|
id | The ARM identifier for Private Endpoint. | string |
PrivateEndpointConnection
Name | Description | Value |
---|---|---|
properties | Properties of the PrivateEndpointConnection. | PrivateEndpointConnectionProperties |
PrivateEndpointConnectionProperties
Name | Description | Value |
---|---|---|
groupIds | GroupIds from the private link service resource. | string[] |
privateEndpoint | The Private Endpoint resource for this Connection. | PrivateEndpoint |
privateLinkServiceConnectionState | Details about the state of the connection. | ConnectionState |
provisioningState | Provisioning state of the Private Endpoint Connection. | 'Canceled' 'Creating' 'Deleting' 'Failed' 'Succeeded' 'Updating' |
RoutingEnrichments
Name | Description | Value |
---|---|---|
dynamic | DynamicRoutingEnrichment[] | |
static | StaticRoutingEnrichment[] |
RoutingIdentityInfo
Name | Description | Value |
---|---|---|
type | 'None' 'SystemAssigned' 'UserAssigned' |
|
userAssignedIdentity | string |
StaticRoutingEnrichment
Name | Description | Value |
---|---|---|
key | Static routing enrichment key. | string |
valueType | Set to 'String' for type StaticStringRoutingEnrichment. | 'String' (required) |
StaticStringRoutingEnrichment
Name | Description | Value |
---|---|---|
value | String type routing enrichment value. | string |
valueType | Static routing enrichment value type. For e.g. this property value can be 'String'. | 'String' (required) |
TopicsConfiguration
Name | Description | Value |
---|
TopicSpacesConfiguration
Name | Description | Value |
---|---|---|
clientAuthentication | Client authentication settings for topic spaces configuration. | ClientAuthenticationSettings |
maximumClientSessionsPerAuthenticationName | The maximum number of sessions per authentication name. The property default value is 1. Min allowed value is 1 and max allowed value is 100. |
int |
maximumSessionExpiryInHours | The maximum session expiry in hours. The property default value is 1 hour. Min allowed value is 1 hour and max allowed value is 8 hours. |
int |
routeTopicResourceId | Fully qualified Azure Resource Id for the Event Grid Topic to which events will be routed to from TopicSpaces under a namespace. This property should be in the following format '/subscriptions/{subId}/resourcegroups/{resourceGroupName}/providers/microsoft.EventGrid/topics/{topicName}'. This topic should reside in the same region where namespace is located. |
string |
routingEnrichments | Routing enrichments for topic spaces configuration | RoutingEnrichments |
routingIdentityInfo | Routing identity info for topic spaces configuration. | RoutingIdentityInfo |
state | Indicate if Topic Spaces Configuration is enabled for the namespace. Default is Disabled. | 'Disabled' 'Enabled' |
TrackedResourceTags
Name | Description | Value |
---|
UserIdentityProperties
Name | Description | Value |
---|---|---|
clientId | The client id of user assigned identity. | string |
principalId | The principal id of user assigned identity. | string |
Usage Examples
Azure Verified Modules
The following Azure Verified Modules can be used to deploy this resource type.
Module | Description |
---|---|
Event Grid Namespace | AVM Resource Module for Event Grid Namespace |