Skip to main content

address_groups_references

Creates, updates, deletes, gets or lists an address_groups_references resource.

Overview

Nameaddress_groups_references
TypeResource
Idgoogle.networksecurity.address_groups_references

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
firewallPolicystringFirewallPolicy that is using the Address Group.
rulePriorityinteger (int32)Rule priority of the FirewallPolicy that is using the Address Group.
securityPolicystringCloud Armor SecurityPolicy that is using the Address Group.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
projects_locations_address_groups_list_referencesselectprojectsId, locationsId, addressGroupsIdpageSize, pageTokenLists references of an address group.
organizations_locations_address_groups_list_referencesselectorganizationsId, locationsId, addressGroupsIdpageSize, pageTokenLists references of an address group.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
addressGroupsIdstring
locationsIdstring
organizationsIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

Lists references of an address group.

SELECT
firewallPolicy,
rulePriority,
securityPolicy
FROM google.networksecurity.address_groups_references
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND addressGroupsId = '{{ addressGroupsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';