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.
Represents a cloud firewall policy for Microsoft Global Secure Access that provides Layer 3 (Network) protection by monitoring and controlling all network traffic. A cloud firewall policy takes effect once the admin associates it with the desired filtering profile. For more information, see Configure Global Secure Access cloud firewall (preview).
Inherits from microsoft.graph.networkaccess.policy.
Methods
| Method | Return type | Description |
|---|---|---|
| List | microsoft.graph.networkaccess.cloudFirewallPolicy collection | Get a list of the cloudFirewallPolicy objects and their properties. |
| Create | microsoft.graph.networkaccess.cloudFirewallPolicy | Create a new cloudFirewallPolicy object. |
| Get | microsoft.graph.networkaccess.cloudFirewallPolicy | Read the properties and relationships of a cloudFirewallPolicy object. |
| Update | None | Update the properties of a cloudFirewallPolicy object. |
| Delete | None | Delete a cloudFirewallPolicy object. |
Properties
| Property | Type | Description |
|---|---|---|
| description | String | A description of the policy. Inherited from microsoft.graph.networkaccess.policy. Optional. |
| id | String | A unique identifier for the policy. Inherited from microsoft.graph.entity. Key. Not nullable. Read-only. |
| lastModifiedDateTime | DateTimeOffset | The date and time when the policy was last modified. Read-only. |
| name | String | A unique display name for the policy. Inherited from microsoft.graph.networkaccess.policy. Required. |
| settings | microsoft.graph.networkaccess.cloudFirewallPolicySettings | Configuration settings for the cloud firewall policy, including the default action. Required. |
| version | String | The version of the policy. Inherited from microsoft.graph.networkaccess.policy. Read-only. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| policyRules | microsoft.graph.networkaccess.cloudFirewallRule collection | The rules that define specific firewall behaviors within this policy. Inherited from microsoft.graph.networkaccess.policy. Supports $expand. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.networkaccess.cloudFirewallPolicy",
"id": "String (identifier)",
"name": "String",
"description": "String",
"version": "String",
"lastModifiedDateTime": "String (timestamp)",
"settings": {
"@odata.type": "microsoft.graph.networkaccess.cloudFirewallPolicySettings"
}
}