public static final class FirewallGrpc.FirewallStub extends AbstractAsyncStub<FirewallGrpc.FirewallStub>
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.AbstractAsyncStub >
FirewallGrpc.FirewallStub
Inherited Members
io.grpc.stub.AbstractAsyncStub.<T>newStub(io.grpc.stub.AbstractStub.StubFactory<T>,io.grpc.Channel)
io.grpc.stub.AbstractAsyncStub.<T>newStub(io.grpc.stub.AbstractStub.StubFactory<T>,io.grpc.Channel,io.grpc.CallOptions)
io.grpc.stub.AbstractStub.<T>withOption(io.grpc.CallOptions.Key<T>,T)
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)
io.grpc.stub.AbstractStub.getCallOptions()
io.grpc.stub.AbstractStub.getChannel()
io.grpc.stub.AbstractStub.withCallCredentials(io.grpc.CallCredentials)
io.grpc.stub.AbstractStub.withChannel(io.grpc.Channel)
io.grpc.stub.AbstractStub.withCompression(java.lang.String)
io.grpc.stub.AbstractStub.withDeadline(io.grpc.Deadline)
io.grpc.stub.AbstractStub.withDeadlineAfter(long,java.util.concurrent.TimeUnit)
io.grpc.stub.AbstractStub.withExecutor(java.util.concurrent.Executor)
io.grpc.stub.AbstractStub.withInterceptors(io.grpc.ClientInterceptor...)
io.grpc.stub.AbstractStub.withMaxInboundMessageSize(int)
io.grpc.stub.AbstractStub.withMaxOutboundMessageSize(int)
io.grpc.stub.AbstractStub.withWaitForReady()
Methods
batchUpdateIngressRules(BatchUpdateIngressRulesRequest request, StreamObserver<BatchUpdateIngressRulesResponse> responseObserver)
public void batchUpdateIngressRules(BatchUpdateIngressRulesRequest request, StreamObserver<BatchUpdateIngressRulesResponse> responseObserver)
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.
Parameters
build(Channel channel, CallOptions callOptions)
protected FirewallGrpc.FirewallStub build(Channel channel, CallOptions callOptions)
Parameters
Name | Description |
channel | io.grpc.Channel
|
callOptions | io.grpc.CallOptions
|
Returns
Overrides
io.grpc.stub.AbstractStub.build(io.grpc.Channel,io.grpc.CallOptions)
createIngressRule(CreateIngressRuleRequest request, StreamObserver<FirewallRule> responseObserver)
public void createIngressRule(CreateIngressRuleRequest request, StreamObserver<FirewallRule> responseObserver)
Creates a firewall rule for the application.
Parameters
deleteIngressRule(DeleteIngressRuleRequest request, StreamObserver<Empty> responseObserver)
public void deleteIngressRule(DeleteIngressRuleRequest request, StreamObserver<Empty> responseObserver)
Deletes the specified firewall rule.
Parameters
getIngressRule(GetIngressRuleRequest request, StreamObserver<FirewallRule> responseObserver)
public void getIngressRule(GetIngressRuleRequest request, StreamObserver<FirewallRule> responseObserver)
Gets the specified firewall rule.
Parameters
listIngressRules(ListIngressRulesRequest request, StreamObserver<ListIngressRulesResponse> responseObserver)
public void listIngressRules(ListIngressRulesRequest request, StreamObserver<ListIngressRulesResponse> responseObserver)
Lists the firewall rules of an application.
Parameters
updateIngressRule(UpdateIngressRuleRequest request, StreamObserver<FirewallRule> responseObserver)
public void updateIngressRule(UpdateIngressRuleRequest request, StreamObserver<FirewallRule> responseObserver)
Updates the specified firewall rule.
Parameters