Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2259,8 +2259,8 @@
"tags": [
"TopicTypes"
],
"summary": "List event types",
"description": "List event types for a topic type",
"summary": "List event types.",
"description": "List event types for a topic type.",
"operationId": "TopicTypes_ListEventTypes",
"consumes": [],
"produces": [
Expand All @@ -2270,7 +2270,7 @@
{
"name": "topicTypeName",
"in": "path",
"description": "Name of the topic type",
"description": "Name of the topic type.",
"required": true,
"type": "string"
},
Expand Down Expand Up @@ -2347,7 +2347,8 @@
},
"metricResourceId": {
"description": "Metric resource id for the domain.",
"type": "string"
"type": "string",
"readOnly": true
},
"allowTrafficFromAllIPs": {
"description": "This determines if IP filtering rules ought to be evaluated or not. By default it will not evaluate and will allow traffic from all IPs.",
Expand Down Expand Up @@ -2551,6 +2552,17 @@
"additionalProperties": {
"type": "string"
}
},
"allowTrafficFromAllIPs": {
"description": "This determines if IP filtering rules ought to be evaluated or not. By default it will not evaluate and will allow traffic from all IPs.",
"type": "boolean"
},
"inboundIpRules": {
"description": "This determines the IP filtering rules that ought be applied when events are received on this domain.",
"type": "array",
"items": {
"$ref": "#/definitions/InboundIpRule"
}
}
}
},
Expand Down Expand Up @@ -3526,7 +3538,8 @@
},
"metricResourceId": {
"description": "Metric resource id for the topic.",
"type": "string"
"type": "string",
"readOnly": true
},
"allowTrafficFromAllIPs": {
"description": "This determines if IP filtering rules ought to be evaluated or not. By default it will not evaluate and will allow traffic from all IPs.",
Expand Down Expand Up @@ -3567,6 +3580,17 @@
"additionalProperties": {
"type": "string"
}
},
"allowTrafficFromAllIPs": {
"description": "This determines if IP filtering rules ought to be evaluated or not. By default it will not evaluate and will allow traffic from all IPs.",
"type": "boolean"
},
"inboundIpRules": {
"description": "This determines the IP filtering rules that ought be applied when events are received on this domain.",
"type": "array",
"items": {
"$ref": "#/definitions/InboundIpRule"
}
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,37 @@
"tags": {
"tag1": "value1",
"tag2": "value2"
}
},
"allowTrafficFromAllIPs": false,
"inboundIpRules": [
{
"ipMask": "12.18.30.15",
"action": "Allow"
},
{
"ipMask": "12.18.176.1",
"action": "Allow"
}
]
}
},
"responses": {
"201": {
"body": {
"properties": {
"endpoint": "https://exampledomain1.westus2-1.eventgrid.azure.net/api/events",
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"allowTrafficFromAllIPs": false,
"inboundIpRules": [
{
"ipMask": "12.18.30.15",
"action": "Allow"
},
{
"ipMask": "12.18.176.1",
"action": "Allow"
}
]
},
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/domains/exampledomain1",
"location": "westus2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,37 @@
"tags": {
"tag1": "value1",
"tag2": "value2"
}
},
"allowTrafficFromAllIPs": false,
"inboundIpRules": [
{
"ipMask": "12.18.30.15",
"action": "Allow"
},
{
"ipMask": "12.18.176.1",
"action": "Allow"
}
]
}
},
"responses": {
"201": {
"body": {
"properties": {
"endpoint": "https://exampletopic1.westus2-1.eventgrid.azure.net/api/events",
"provisioningState": "Succeeded"
"provisioningState": "Succeeded",
"allowTrafficFromAllIPs": false,
"inboundIpRules": [
{
"ipMask": "12.18.30.15",
"action": "Allow"
},
{
"ipMask": "12.18.176.1",
"action": "Allow"
}
]
},
"id": "/subscriptions/5b4b650e-28b9-4790-b3ab-ddbd88d727c4/resourceGroups/examplerg/providers/Microsoft.EventGrid/topics/exampletopic1",
"location": "westus2",
Expand Down