App Engine v1 API - Class Firewall (2.3.0)

public static class Firewall

Reference documentation and code samples for the App Engine v1 API class Firewall.

Firewall resources are used to define a collection of access control rules for an Application. Each rule is defined with a position which specifies the rule's order in the sequence of rules, an IP range to be matched against requests, and an action to take upon matching requests.

Every request is evaluated against the Firewall rules in priority order. Processesing stops at the first rule which matches the request's IP address. A final rule always specifies an action that applies to all remaining IP addresses. The default final rule for a newly-created application will be set to "allow" if not otherwise specified by the user.

Inheritance

object > Firewall

Namespace

Google.Cloud.AppEngine.V1

Assembly

Google.Cloud.AppEngine.V1.dll

Methods

BindService(FirewallBase)

public static ServerServiceDefinition BindService(Firewall.FirewallBase serviceImpl)

Creates service definition that can be registered with a server

Parameter
NameDescription
serviceImplFirewallFirewallBase

An object implementing the server-side handling logic.

Returns
TypeDescription
ServerServiceDefinition

BindService(ServiceBinderBase, FirewallBase)

public static void BindService(ServiceBinderBase serviceBinder, Firewall.FirewallBase serviceImpl)

Register service method with a service binder with or without implementation. Useful when customizing the service binding logic. Note: this method is part of an experimental API that can change or be removed without any prior notice.

Parameters
NameDescription
serviceBinderServiceBinderBase

Service methods will be bound by calling AddMethod on this object.

serviceImplFirewallFirewallBase

An object implementing the server-side handling logic.