The namespaces/clients resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.EventGrid/namespaces/clients resource, add the following JSON to your template.
{
"type": "Microsoft.EventGrid/namespaces/clients",
"apiVersion": "2023-12-15-preview",
"name": "string",
"properties": {
"attributes": {
"{customized property}": {}
},
"authenticationName": "string",
"clientCertificateAuthentication": {
"allowedThumbprints": [ "string" ],
"validationScheme": "string"
},
"description": "string",
"state": "string"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.EventGrid/namespaces/clients' |
apiVersion | The resource api version | '2023-12-15-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
properties | The properties of client. | ClientProperties |
Name | Description | Value |
---|---|---|
attributes | Attributes for the client. Supported values are int, bool, string, string[]. Example: "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] } |
ClientPropertiesAttributes |
authenticationName | The name presented by the client for authentication. The default value is the name of the resource. | string |
clientCertificateAuthentication | The client certificate authentication information. | ClientCertificateAuthentication |
description | Description for the Client resource. | string |
state | Indicates if the client is enabled or not. Default value is Enabled. | 'Disabled' 'Enabled' |
Name | Description | Value |
---|---|---|
{customized property} |
Name | Description | Value |
---|---|---|
allowedThumbprints | The list of thumbprints that are allowed during client authentication. This property is required only if the validationScheme is 'ThumbprintMatch'. | string[] |
validationScheme | The validation scheme used to authenticate the client. Default value is SubjectMatchesAuthenticationName. | 'DnsMatchesAuthenticationName' 'EmailMatchesAuthenticationName' 'IpMatchesAuthenticationName' 'SubjectMatchesAuthenticationName' 'ThumbprintMatch' 'UriMatchesAuthenticationName' |