Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph.networkaccess
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Defines the source matching criteria for a cloud firewall rule, including source addresses and ports. Currently, only IP address types are supported for source addresses.
Properties
| Property | Type | Description |
|---|---|---|
| addresses | microsoft.graph.networkaccess.cloudFirewallSourceAddress collection | The source addresses to match. An empty collection means don't filter by source addresses (match all). Required. |
| ports | String collection | The source ports to match, for example, 80, 443, 1024-2048. An empty collection means don't filter by source ports (match all). Required. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.networkaccess.cloudFirewallSourceMatching",
"addresses": [
{
"@odata.type": "microsoft.graph.networkaccess.cloudFirewallSourceIpAddress"
}
],
"ports": ["String"]
}