Method: networks.getEffectiveFirewalls

Returns the effective firewalls on a given network.

HTTP request

GET https://compute.s3nsapis.fr/compute/v1/projects/{project}/global/networks/{network}/getEffectiveFirewalls

The URL uses gRPC Transcoding syntax. To know more about valid error responses that can be thrown by this HTTP request, please refer to the service error catalog

Path parameters

Parameters
project

string

Project ID for this request.

network

string

Name of the network for this request.

Request body

The request body must be empty.

Response body

If successful, the response body contains data with the following structure:

JSON representation
{
  "firewalls": [
    {
      object (Firewall)
    }
  ],
  "firewallPolicys": [
    {
      object (EffectiveFirewallPolicy)
    }
  ]
}
Fields
firewalls[]

object (Firewall)

Effective firewalls on the network.

firewallPolicys[]

object (EffectiveFirewallPolicy)

[Output Only] Effective firewalls from firewall policy. It returns Global Network Firewall Policies and Hierarchical Firewall Policies. Use

regionNetworkFirewallPolicies.getEffectiveFirewalls

to get Regional Network Firewall Policies as well.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/compute.readonly
  • https://www.googleapis.com/auth/compute
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

In addition to any permissions specified on the fields above, authorization requires one or more of the following IAM permissions:

  • compute.networks.getEffectiveFirewalls

To find predefined roles that contain those permissions, see Compute Engine IAM Roles.

EffectiveFirewallPolicy

JSON representation
{
  "name": string,
  "type": enum (Type),
  "shortName": string,
  "displayName": string,
  "rules": [
    {
      object (Rule)
    }
  ],
  "packetMirroringRules": [
    {
      object (Rule)
    }
  ],
  "priority": integer
}
Fields
name

string

[Output Only] The name of the firewall policy.

type

enum (Type)

[Output Only] The type of the firewall policy.

shortName

string

[Output Only] The short name of the firewall policy.

displayName
(deprecated)

string

[Output Only] Deprecated, please use short name instead. The display name of the firewall policy.

rules[]

object (Rule)

[Output Only] The rules that apply to the network.

packetMirroringRules[]

object (Rule)

[Output Only] The packet mirroring rules that apply to the network.

priority

integer

[Output only] Priority of firewall policy association. Not applicable for type=HIERARCHY.

Type

Enums
UNSPECIFIED
HIERARCHY
NETWORK
SYSTEM