Class FirewallGrpc.FirewallFutureStub (2.5.0)

public static final class FirewallGrpc.FirewallFutureStub extends AbstractFutureStub<FirewallGrpc.FirewallFutureStub>

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

java.lang.Object > io.grpc.stub.AbstractStub > io.grpc.stub.AbstractFutureStub > FirewallGrpc.FirewallFutureStub

Methods

batchUpdateIngressRules(BatchUpdateIngressRulesRequest request)

public ListenableFuture<BatchUpdateIngressRulesResponse> batchUpdateIngressRules(BatchUpdateIngressRulesRequest request)

Replaces the entire firewall ruleset in one bulk operation. This overrides and replaces the rules of an existing firewall with the new rules. If the final rule does not match traffic with the '*' wildcard IP range, then an "allow all" rule is explicitly added to the end of the list.

Parameter
NameDescription
requestBatchUpdateIngressRulesRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<BatchUpdateIngressRulesResponse>

build(Channel channel, CallOptions callOptions)

protected FirewallGrpc.FirewallFutureStub build(Channel channel, CallOptions callOptions)
Parameters
NameDescription
channelio.grpc.Channel
callOptionsio.grpc.CallOptions
Returns
TypeDescription
FirewallGrpc.FirewallFutureStub
Overrides
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)

createIngressRule(CreateIngressRuleRequest request)

public ListenableFuture<FirewallRule> createIngressRule(CreateIngressRuleRequest request)

Creates a firewall rule for the application.

Parameter
NameDescription
requestCreateIngressRuleRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<FirewallRule>

deleteIngressRule(DeleteIngressRuleRequest request)

public ListenableFuture<Empty> deleteIngressRule(DeleteIngressRuleRequest request)

Deletes the specified firewall rule.

Parameter
NameDescription
requestDeleteIngressRuleRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<Empty>

getIngressRule(GetIngressRuleRequest request)

public ListenableFuture<FirewallRule> getIngressRule(GetIngressRuleRequest request)

Gets the specified firewall rule.

Parameter
NameDescription
requestGetIngressRuleRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<FirewallRule>

listIngressRules(ListIngressRulesRequest request)

public ListenableFuture<ListIngressRulesResponse> listIngressRules(ListIngressRulesRequest request)

Lists the firewall rules of an application.

Parameter
NameDescription
requestListIngressRulesRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<ListIngressRulesResponse>

updateIngressRule(UpdateIngressRuleRequest request)

public ListenableFuture<FirewallRule> updateIngressRule(UpdateIngressRuleRequest request)

Updates the specified firewall rule.

Parameter
NameDescription
requestUpdateIngressRuleRequest
Returns
TypeDescription
com.google.common.util.concurrent.ListenableFuture<FirewallRule>