public static final class FirewallGrpc.FirewallStub extends io.grpc.stub.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.
| Modifier and Type | Method and Description |
|---|---|
void |
batchUpdateIngressRules(BatchUpdateIngressRulesRequest request,
io.grpc.stub.StreamObserver<BatchUpdateIngressRulesResponse> responseObserver)
Replaces the entire firewall ruleset in one bulk operation.
|
protected FirewallGrpc.FirewallStub |
build(io.grpc.Channel channel,
io.grpc.CallOptions callOptions) |
void |
createIngressRule(CreateIngressRuleRequest request,
io.grpc.stub.StreamObserver<FirewallRule> responseObserver)
Creates a firewall rule for the application.
|
void |
deleteIngressRule(DeleteIngressRuleRequest request,
io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes the specified firewall rule.
|
void |
getIngressRule(GetIngressRuleRequest request,
io.grpc.stub.StreamObserver<FirewallRule> responseObserver)
Gets the specified firewall rule.
|
void |
listIngressRules(ListIngressRulesRequest request,
io.grpc.stub.StreamObserver<ListIngressRulesResponse> responseObserver)
Lists the firewall rules of an application.
|
void |
updateIngressRule(UpdateIngressRuleRequest request,
io.grpc.stub.StreamObserver<FirewallRule> responseObserver)
Updates the specified firewall rule.
|
protected FirewallGrpc.FirewallStub build(io.grpc.Channel channel, io.grpc.CallOptions callOptions)
build in class io.grpc.stub.AbstractStub<FirewallGrpc.FirewallStub>public void listIngressRules(ListIngressRulesRequest request, io.grpc.stub.StreamObserver<ListIngressRulesResponse> responseObserver)
Lists the firewall rules of an application.
public void batchUpdateIngressRules(BatchUpdateIngressRulesRequest request, io.grpc.stub.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.
public void createIngressRule(CreateIngressRuleRequest request, io.grpc.stub.StreamObserver<FirewallRule> responseObserver)
Creates a firewall rule for the application.
public void getIngressRule(GetIngressRuleRequest request, io.grpc.stub.StreamObserver<FirewallRule> responseObserver)
Gets the specified firewall rule.
public void updateIngressRule(UpdateIngressRuleRequest request, io.grpc.stub.StreamObserver<FirewallRule> responseObserver)
Updates the specified firewall rule.
public void deleteIngressRule(DeleteIngressRuleRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
Deletes the specified firewall rule.
Copyright © 2023 Google LLC. All rights reserved.