Microsoft.EventGrid 網域 2019-02-01-preview
Bicep 資源定義
您可以使用以下欄目標作業部署網域資源類型:
- 資源群組 - 請參閱 資源群組部署命令
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.EventGrid/domains 資源,請將下列 Bicep 新增至您的範本。
resource symbolicname 'Microsoft.EventGrid/domains@2019-02-01-preview' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
properties: {
inputSchema: 'string'
inputSchemaMapping: {
inputSchemaMappingType: 'string'
// For remaining properties, see InputSchemaMapping objects
}
}
}
InputSchemaMapping 物件
設定 inputSchemaMappingType 屬性以指定物件的類型。
針對 Json,請使用:
inputSchemaMappingType: 'Json'
properties: {
dataVersion: {
defaultValue: 'string'
sourceField: 'string'
}
eventTime: {
sourceField: 'string'
}
eventType: {
defaultValue: 'string'
sourceField: 'string'
}
id: {
sourceField: 'string'
}
subject: {
defaultValue: 'string'
sourceField: 'string'
}
topic: {
sourceField: 'string'
}
}
屬性值
domains
名稱 | 描述 | 值 |
---|---|---|
NAME | 資源名稱 | 需要字串 () 字元限制:3-50 合法字元: 英數字元和連字號。 |
location | 資源的位置 | 需要字串 () |
tags | 資源的標記 | 標記名稱和值的字典。 請參閱 範本中的標籤 |
properties | 定義域的屬性 | DomainProperties |
DomainProperties
名稱 | 描述 | 值 |
---|---|---|
inputSchema | 這會決定事件方格應該預期發佈至網域之傳入事件的格式。 | 'CloudEventV01Schema' 'CustomEventSchema' 'EventGridSchema' |
inputSchemaMapping | InputSchemaMapping 的相關信息,指定對應事件承載的相關信息。 | InputSchemaMapping |
InputSchemaMapping
名稱 | 描述 | 值 |
---|---|---|
inputSchemaMappingType | 設定物件類型 | 需要 Json () |
JsonInputSchemaMapping
名稱 | 描述 | 值 |
---|---|---|
inputSchemaMappingType | 自定義對應的類型 | 'Json' (必要) |
properties | 輸入架構對應的 JSON 屬性 | JsonInputSchemaMappingProperties |
JsonInputSchemaMappingProperties
名稱 | 描述 | 值 |
---|---|---|
dataVersion | Event Grid 事件之 DataVersion 屬性的對應資訊。 | JsonFieldWithDefault |
eventTime | Event Grid 事件之 EventTime 屬性的對應資訊。 | JsonField |
eventType | Event Grid 事件之 EventType 屬性的對應資訊。 | JsonFieldWithDefault |
id | Event Grid 事件之 Id 屬性的對應資訊。 | JsonField |
主旨 | Event Grid 事件之 Subject 屬性的對應資訊。 | JsonFieldWithDefault |
主題 | Event Grid 事件之 Topic 屬性的對應資訊。 | JsonField |
JsonFieldWithDefault
名稱 | 描述 | 值 |
---|---|---|
defaultValue | 未提供SourceField時要用於對應的預設值,或在已發佈的 JSON 事件承載中沒有具有指定名稱的屬性時使用。 | 字串 |
sourceField | 輸入事件架構中要作為對應來源的功能變數名稱。 | 字串 |
JsonField
名稱 | 描述 | 值 |
---|---|---|
sourceField | 輸入事件架構中要作為對應來源的功能變數名稱。 | 字串 |
ARM 範本資源定義
網域資源類型可以使用目標作業進行部署:
- 資源群組 - 請參閱 資源群組部署命令
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄。
資源格式
若要建立 Microsoft.EventGrid/domains 資源,請將下列 JSON 新增至您的範本。
{
"type": "Microsoft.EventGrid/domains",
"apiVersion": "2019-02-01-preview",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"inputSchema": "string",
"inputSchemaMapping": {
"inputSchemaMappingType": "string"
// For remaining properties, see InputSchemaMapping objects
}
}
}
InputSchemaMapping 物件
設定 inputSchemaMappingType 屬性以指定物件的類型。
針對 Json,請使用:
"inputSchemaMappingType": "Json",
"properties": {
"dataVersion": {
"defaultValue": "string",
"sourceField": "string"
},
"eventTime": {
"sourceField": "string"
},
"eventType": {
"defaultValue": "string",
"sourceField": "string"
},
"id": {
"sourceField": "string"
},
"subject": {
"defaultValue": "string",
"sourceField": "string"
},
"topic": {
"sourceField": "string"
}
}
屬性值
domains
名稱 | 描述 | 值 |
---|---|---|
類型 | 資源類型 | 'Microsoft.EventGrid/domains' |
apiVersion | 資源 API 版本 | '2019-02-01-preview' |
NAME | 資源名稱 | 字串 (必要) 字元限制:3-50 合法字元: 英數字元和連字號。 |
location | 資源的位置 | 字串 (必要) |
tags | 資源的標記 | 標記名稱和值的字典。 請參閱 範本中的標記 |
properties | 定義域的屬性 | DomainProperties |
DomainProperties
名稱 | 描述 | 值 |
---|---|---|
inputSchema | 這會決定事件方格在發佈至網域的傳入事件時應該預期的格式。 | 'CloudEventV01Schema' 'CustomEventSchema' 'EventGridSchema' |
inputSchemaMapping | InputSchemaMapping 的相關信息,指定對應事件承載的相關信息。 | InputSchemaMapping |
InputSchemaMapping
名稱 | 描述 | 值 |
---|---|---|
inputSchemaMappingType | 設定物件類型 | 需要 json () |
JsonInputSchemaMapping
名稱 | 描述 | 值 |
---|---|---|
inputSchemaMappingType | 自定義對應的類型 | 需要 『Json』 () |
properties | 輸入架構對應的 JSON 屬性 | JsonInputSchemaMappingProperties |
JsonInputSchemaMappingProperties
名稱 | 描述 | 值 |
---|---|---|
dataVersion | Event Grid 事件之 DataVersion 屬性的對應資訊。 | JsonFieldWithDefault |
eventTime | Event Grid 事件之 EventTime 屬性的對應資訊。 | JsonField |
eventType | Event Grid 事件之 EventType 屬性的對應資訊。 | JsonFieldWithDefault |
id | Event Grid 事件之 Id 屬性的對應資訊。 | JsonField |
主旨 | Event Grid 事件之 Subject 屬性的對應資訊。 | JsonFieldWithDefault |
主題 | Event Grid 事件之 Topic 屬性的對應資訊。 | JsonField |
JsonFieldWithDefault
名稱 | 描述 | 值 |
---|---|---|
defaultValue | 未提供 SourceField 時要用於對應的預設值,或者如果已發布 JSON 事件承載中沒有具有指定名稱的屬性,則為 。 | 字串 |
sourceField | 輸入事件架構中要作為對應來源的功能變數名稱。 | 字串 |
JsonField
名稱 | 描述 | 值 |
---|---|---|
sourceField | 輸入事件架構中要作為對應來源的功能變數名稱。 | 字串 |
Terraform (AzAPI 提供者) 資源定義
您可以使用以下欄目標作業部署網域資源類型:
- 資源群組
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.EventGrid/domains 資源,請將下列 Terraform 新增至您的範本。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.EventGrid/domains@2019-02-01-preview"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
inputSchema = "string"
inputSchemaMapping = {
inputSchemaMappingType = "string"
// For remaining properties, see InputSchemaMapping objects
}
}
})
}
InputSchemaMapping 物件
設定 inputSchemaMappingType 屬性以指定物件的類型。
針對 Json,請使用:
inputSchemaMappingType = "Json"
properties = {
dataVersion = {
defaultValue = "string"
sourceField = "string"
}
eventTime = {
sourceField = "string"
}
eventType = {
defaultValue = "string"
sourceField = "string"
}
id = {
sourceField = "string"
}
subject = {
defaultValue = "string"
sourceField = "string"
}
topic = {
sourceField = "string"
}
}
屬性值
domains
名稱 | 描述 | 值 |
---|---|---|
類型 | 資源類型 | “Microsoft.EventGrid/domains@2019-02-01-preview” |
NAME | 資源名稱 | 需要字串 () 字元限制:3-50 合法字元: 英數字元和連字號。 |
location | 資源的位置 | 需要字串 () |
parent_id | 若要部署至資源群組,請使用該資源群組的標識碼。 | 需要字串 () |
tags | 資源的標記 | 標記名稱和值的字典。 |
properties | 定義域的屬性 | DomainProperties |
DomainProperties
名稱 | 描述 | 值 |
---|---|---|
inputSchema | 這會決定事件方格應該預期發佈至網域之傳入事件的格式。 | “CloudEventV01Schema” “CustomEventSchema” “EventGridSchema” |
inputSchemaMapping | InputSchemaMapping 的相關信息,指定對應事件承載的相關信息。 | InputSchemaMapping |
InputSchemaMapping
名稱 | 描述 | 值 |
---|---|---|
inputSchemaMappingType | 設定物件類型 | 需要 Json () |
JsonInputSchemaMapping
名稱 | 描述 | 值 |
---|---|---|
inputSchemaMappingType | 自定義對應的類型 | “Json” (必要) |
properties | 輸入架構對應的 JSON 屬性 | JsonInputSchemaMappingProperties |
JsonInputSchemaMappingProperties
名稱 | 描述 | 值 |
---|---|---|
dataVersion | Event Grid 事件之 DataVersion 屬性的對應資訊。 | JsonFieldWithDefault |
eventTime | Event Grid 事件之 EventTime 屬性的對應資訊。 | JsonField |
eventType | Event Grid 事件之 EventType 屬性的對應資訊。 | JsonFieldWithDefault |
id | Event Grid 事件之 Id 屬性的對應資訊。 | JsonField |
主旨 | Event Grid 事件之 Subject 屬性的對應資訊。 | JsonFieldWithDefault |
主題 | Event Grid 事件之 Topic 屬性的對應資訊。 | JsonField |
JsonFieldWithDefault
名稱 | 描述 | 值 |
---|---|---|
defaultValue | 未提供SourceField時要用於對應的預設值,或在已發佈的 JSON 事件承載中沒有具有指定名稱的屬性時使用。 | 字串 |
sourceField | 輸入事件架構中要作為對應來源的功能變數名稱。 | 字串 |
JsonField
名稱 | 描述 | 值 |
---|---|---|
sourceField | 輸入事件架構中要作為對應來源的功能變數名稱。 | 字串 |