Skip to main content

firewallpolicies

Creates, updates, deletes, gets or lists a firewallpolicies resource.

Overview

Namefirewallpolicies
TypeResource
Idgoogle.recaptchaenterprise.firewallpolicies

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringIdentifier. The resource name for the FirewallPolicy in the format projects/{project}/firewallpolicies/{firewallpolicy}.
actionsarrayOptional. The actions that the caller should take regarding user access. There should be at most one terminal action. A terminal action is any action that forces a response, such as AllowAction, BlockAction or SubstituteAction. Zero or more non-terminal actions such as SetHeader might be specified. A single policy can contain up to 16 actions.
conditionstringOptional. A CEL (Common Expression Language) conditional expression that specifies if this policy applies to an incoming user request. If this condition evaluates to true and the requested path matched the path pattern, the associated actions should be executed by the caller. The condition string is checked for CEL syntax correctness on creation. For more information, see the CEL spec and its language definition. A condition has a max length of 500 characters.
descriptionstringOptional. A description of what this policy aims to achieve, for convenience purposes. The description can at most include 256 UTF-8 characters.
pathstringOptional. The path for which this policy applies, specified as a glob pattern. For more information on glob, see the manual page. A path has a max length of 200 characters.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, firewallpoliciesIdReturns the specified firewall policy.
listselectprojectsIdpageSize, pageTokenReturns the list of all firewall policies that belong to a project.
createinsertprojectsIdCreates a new FirewallPolicy, specifying conditions at which reCAPTCHA Enterprise actions can be executed. A project may have a maximum of 1000 policies.
patchupdateprojectsId, firewallpoliciesIdupdateMaskUpdates the specified firewall policy.
deletedeleteprojectsId, firewallpoliciesIdDeletes the specified firewall policy.
reorderexecprojectsIdReorders all firewall policies.

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
firewallpoliciesIdstring
projectsIdstring
pageSizeinteger (int32)
pageTokenstring
updateMaskstring (google-fieldmask)

SELECT examples

Returns the specified firewall policy.

SELECT
name,
actions,
condition,
description,
path
FROM google.recaptchaenterprise.firewallpolicies
WHERE projectsId = '{{ projectsId }}' -- required
AND firewallpoliciesId = '{{ firewallpoliciesId }}' -- required;

INSERT examples

Creates a new FirewallPolicy, specifying conditions at which reCAPTCHA Enterprise actions can be executed. A project may have a maximum of 1000 policies.

INSERT INTO google.recaptchaenterprise.firewallpolicies (
data__name,
data__description,
data__path,
data__condition,
data__actions,
projectsId
)
SELECT
'{{ name }}',
'{{ description }}',
'{{ path }}',
'{{ condition }}',
'{{ actions }}',
'{{ projectsId }}'
RETURNING
name,
actions,
condition,
description,
path
;

UPDATE examples

Updates the specified firewall policy.

UPDATE google.recaptchaenterprise.firewallpolicies
SET
data__name = '{{ name }}',
data__description = '{{ description }}',
data__path = '{{ path }}',
data__condition = '{{ condition }}',
data__actions = '{{ actions }}'
WHERE
projectsId = '{{ projectsId }}' --required
AND firewallpoliciesId = '{{ firewallpoliciesId }}' --required
AND updateMask = '{{ updateMask}}'
RETURNING
name,
actions,
condition,
description,
path;

DELETE examples

Deletes the specified firewall policy.

DELETE FROM google.recaptchaenterprise.firewallpolicies
WHERE projectsId = '{{ projectsId }}' --required
AND firewallpoliciesId = '{{ firewallpoliciesId }}' --required;

Lifecycle Methods

Reorders all firewall policies.

EXEC google.recaptchaenterprise.firewallpolicies.reorder 
@projectsId='{{ projectsId }}' --required
@@json=
'{
"names": "{{ names }}"
}';