次の方法で共有


Microsoft.EventGrid namespaces/clients 2023-12-15-preview

Bicep リソース定義

名前空間/クライアント リソースの種類は、次をターゲットとする操作と共にデプロイできます。

  • リソース グループの - リソース グループのデプロイ コマンド 参照

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.EventGrid/namespaces/clients リソースを作成するには、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.EventGrid/namespaces/clients@2023-12-15-preview' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    attributes: {
      {customized property}: any(Azure.Bicep.Types.Concrete.AnyType)
    }
    authenticationName: 'string'
    clientCertificateAuthentication: {
      allowedThumbprints: [
        'string'
      ]
      validationScheme: 'string'
    }
    description: 'string'
    state: 'string'
  }
}

プロパティ値

ClientCertificateAuthentication

名前 形容 価値
allowedThumbprints クライアント認証中に許可される拇印の一覧。 このプロパティは、validationScheme が 'ThumbprintMatch' の場合にのみ必要です。 string[]
validationScheme クライアントの認証に使用される検証スキーム。 既定値は SubjectMatchesAuthenticationName です。 'DnsMatchesAuthenticationName'
'EmailMatchesAuthenticationName'
'IpMatchesAuthenticationName'
'SubjectMatchesAuthenticationName'
'ThumbprintMatch'
'UriMatchesAuthenticationName'

ClientProperties

名前 形容 価値
属性 クライアントの属性。 サポートされる値は int、bool、string、string[] です。
例:
"attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
ClientPropertiesAttributes
authenticationName 認証のためにクライアントによって提示される名前。 既定値はリソースの名前です。
clientCertificateAuthentication クライアント証明書の認証情報。 ClientCertificateAuthentication
形容 クライアント リソースの説明。
状態 クライアントが有効かどうかを示します。 既定値は [有効] です。 'Disabled'
'Enabled'

ClientPropertiesAttributes

名前 形容 価値

Microsoft.EventGrid/namespaces/clients

名前 形容 価値
名前 リソース名

制約:
最小長 = 1
最大長 = 1
パターン = ^[-a-zA-Z0-9:\._]*$ (必須)
Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。

詳細については、「親リソースの外部 子リソース」を参照してください。
種類のリソースのシンボリック名: 名前空間
プロパティ クライアントのプロパティ。 ClientProperties

ARM テンプレート リソース定義

名前空間/クライアント リソースの種類は、次をターゲットとする操作と共にデプロイできます。

  • リソース グループの - リソース グループのデプロイ コマンド 参照

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.EventGrid/namespaces/clients リソースを作成するには、次の JSON をテンプレートに追加します。

{
  "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"
  }
}

プロパティ値

ClientCertificateAuthentication

名前 形容 価値
allowedThumbprints クライアント認証中に許可される拇印の一覧。 このプロパティは、validationScheme が 'ThumbprintMatch' の場合にのみ必要です。 string[]
validationScheme クライアントの認証に使用される検証スキーム。 既定値は SubjectMatchesAuthenticationName です。 'DnsMatchesAuthenticationName'
'EmailMatchesAuthenticationName'
'IpMatchesAuthenticationName'
'SubjectMatchesAuthenticationName'
'ThumbprintMatch'
'UriMatchesAuthenticationName'

ClientProperties

名前 形容 価値
属性 クライアントの属性。 サポートされる値は int、bool、string、string[] です。
例:
"attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
ClientPropertiesAttributes
authenticationName 認証のためにクライアントによって提示される名前。 既定値はリソースの名前です。
clientCertificateAuthentication クライアント証明書の認証情報。 ClientCertificateAuthentication
形容 クライアント リソースの説明。
状態 クライアントが有効かどうかを示します。 既定値は [有効] です。 'Disabled'
'Enabled'

ClientPropertiesAttributes

名前 形容 価値

Microsoft.EventGrid/namespaces/clients

名前 形容 価値
apiVersion API のバージョン '2023-12-15-preview'
名前 リソース名

制約:
最小長 = 1
最大長 = 1
パターン = ^[-a-zA-Z0-9:\._]*$ (必須)
プロパティ クライアントのプロパティ。 ClientProperties
種類 リソースの種類 'Microsoft.EventGrid/namespaces/clients'

Terraform (AzAPI プロバイダー) リソース定義

名前空間/クライアント リソースの種類は、次をターゲットとする操作と共にデプロイできます。

  • リソース グループの

各 API バージョンで変更されたプロパティの一覧については、変更ログの参照してください。

リソースの形式

Microsoft.EventGrid/namespaces/clients リソースを作成するには、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.EventGrid/namespaces/clients@2023-12-15-preview"
  name = "string"
  body = jsonencode({
    properties = {
      attributes = {
        {customized property} = ?
      }
      authenticationName = "string"
      clientCertificateAuthentication = {
        allowedThumbprints = [
          "string"
        ]
        validationScheme = "string"
      }
      description = "string"
      state = "string"
    }
  })
}

プロパティ値

ClientCertificateAuthentication

名前 形容 価値
allowedThumbprints クライアント認証中に許可される拇印の一覧。 このプロパティは、validationScheme が 'ThumbprintMatch' の場合にのみ必要です。 string[]
validationScheme クライアントの認証に使用される検証スキーム。 既定値は SubjectMatchesAuthenticationName です。 'DnsMatchesAuthenticationName'
'EmailMatchesAuthenticationName'
'IpMatchesAuthenticationName'
'SubjectMatchesAuthenticationName'
'ThumbprintMatch'
'UriMatchesAuthenticationName'

ClientProperties

名前 形容 価値
属性 クライアントの属性。 サポートされる値は int、bool、string、string[] です。
例:
"attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
ClientPropertiesAttributes
authenticationName 認証のためにクライアントによって提示される名前。 既定値はリソースの名前です。
clientCertificateAuthentication クライアント証明書の認証情報。 ClientCertificateAuthentication
形容 クライアント リソースの説明。
状態 クライアントが有効かどうかを示します。 既定値は [有効] です。 'Disabled'
'Enabled'

ClientPropertiesAttributes

名前 形容 価値

Microsoft.EventGrid/namespaces/clients

名前 形容 価値
名前 リソース名

制約:
最小長 = 1
最大長 = 1
パターン = ^[-a-zA-Z0-9:\._]*$ (必須)
parent_id このリソースの親であるリソースの ID。 種類のリソースの ID: 名前空間
プロパティ クライアントのプロパティ。 ClientProperties
種類 リソースの種類 "Microsoft.EventGrid/namespaces/clients@2023-12-15-preview"