Package com.google.appengine.v1
Class FirewallGrpc.FirewallFutureStub
- java.lang.Object
-
- io.grpc.stub.AbstractStub<S>
-
- io.grpc.stub.AbstractFutureStub<FirewallGrpc.FirewallFutureStub>
-
- com.google.appengine.v1.FirewallGrpc.FirewallFutureStub
-
- Enclosing class:
- FirewallGrpc
public static final class FirewallGrpc.FirewallFutureStub extends io.grpc.stub.AbstractFutureStub<FirewallGrpc.FirewallFutureStub>
A stub to allow clients to do ListenableFuture-style rpc calls to service 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.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.google.common.util.concurrent.ListenableFuture<BatchUpdateIngressRulesResponse>
batchUpdateIngressRules(BatchUpdateIngressRulesRequest request)
Replaces the entire firewall ruleset in one bulk operation.protected FirewallGrpc.FirewallFutureStub
build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
com.google.common.util.concurrent.ListenableFuture<FirewallRule>
createIngressRule(CreateIngressRuleRequest request)
Creates a firewall rule for the application.com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty>
deleteIngressRule(DeleteIngressRuleRequest request)
Deletes the specified firewall rule.com.google.common.util.concurrent.ListenableFuture<FirewallRule>
getIngressRule(GetIngressRuleRequest request)
Gets the specified firewall rule.com.google.common.util.concurrent.ListenableFuture<ListIngressRulesResponse>
listIngressRules(ListIngressRulesRequest request)
Lists the firewall rules of an application.com.google.common.util.concurrent.ListenableFuture<FirewallRule>
updateIngressRule(UpdateIngressRuleRequest request)
Updates the specified firewall rule.
-
-
-
Method Detail
-
build
protected FirewallGrpc.FirewallFutureStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
- Specified by:
build
in classio.grpc.stub.AbstractStub<FirewallGrpc.FirewallFutureStub>
-
listIngressRules
public com.google.common.util.concurrent.ListenableFuture<ListIngressRulesResponse> listIngressRules(ListIngressRulesRequest request)
Lists the firewall rules of an application.
-
batchUpdateIngressRules
public com.google.common.util.concurrent.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.
-
createIngressRule
public com.google.common.util.concurrent.ListenableFuture<FirewallRule> createIngressRule(CreateIngressRuleRequest request)
Creates a firewall rule for the application.
-
getIngressRule
public com.google.common.util.concurrent.ListenableFuture<FirewallRule> getIngressRule(GetIngressRuleRequest request)
Gets the specified firewall rule.
-
updateIngressRule
public com.google.common.util.concurrent.ListenableFuture<FirewallRule> updateIngressRule(UpdateIngressRuleRequest request)
Updates the specified firewall rule.
-
deleteIngressRule
public com.google.common.util.concurrent.ListenableFuture<com.google.protobuf.Empty> deleteIngressRule(DeleteIngressRuleRequest request)
Deletes the specified firewall rule.
-
-