Class FirewallClient

  • All Implemented Interfaces:
    com.google.api.gax.core.BackgroundResource, AutoCloseable

    @Generated("by gapic-generator-java")
    public class FirewallClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: 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.

    This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:

    
     // This snippet has been automatically generated and should be regarded as a code template only.
     // It will require modifications to work:
     // - It may require correct/in-range values for request initialization.
     // - It may require specifying regional endpoints when creating the service client as shown in
     // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
     try (FirewallClient firewallClient = FirewallClient.create()) {
       BatchUpdateIngressRulesRequest request =
           BatchUpdateIngressRulesRequest.newBuilder()
               .setName("name3373707")
               .addAllIngressRules(new ArrayList<FirewallRule>())
               .build();
       BatchUpdateIngressRulesResponse response = firewallClient.batchUpdateIngressRules(request);
     }
     

    Note: close() needs to be called on the FirewallClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

    The surface of this class includes several types of Java methods for each of the API's methods:

    1. A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
    2. A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
    3. A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.

    See the individual methods for example code.

    Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.

    This class can be customized by passing in a custom instance of FirewallSettings to create(). For example:

    To customize credentials:

    
     // This snippet has been automatically generated and should be regarded as a code template only.
     // It will require modifications to work:
     // - It may require correct/in-range values for request initialization.
     // - It may require specifying regional endpoints when creating the service client as shown in
     // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
     FirewallSettings firewallSettings =
         FirewallSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     FirewallClient firewallClient = FirewallClient.create(firewallSettings);
     

    To customize the endpoint:

    
     // This snippet has been automatically generated and should be regarded as a code template only.
     // It will require modifications to work:
     // - It may require correct/in-range values for request initialization.
     // - It may require specifying regional endpoints when creating the service client as shown in
     // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
     FirewallSettings firewallSettings =
         FirewallSettings.newBuilder().setEndpoint(myEndpoint).build();
     FirewallClient firewallClient = FirewallClient.create(firewallSettings);
     

    To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:

    
     // This snippet has been automatically generated and should be regarded as a code template only.
     // It will require modifications to work:
     // - It may require correct/in-range values for request initialization.
     // - It may require specifying regional endpoints when creating the service client as shown in
     // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
     FirewallSettings firewallSettings = FirewallSettings.newHttpJsonBuilder().build();
     FirewallClient firewallClient = FirewallClient.create(firewallSettings);
     

    Please refer to the GitHub repository's samples for more quickstart code snippets.

    • Constructor Detail

      • FirewallClient

        protected FirewallClient​(FirewallSettings settings)
                          throws IOException
        Constructs an instance of FirewallClient, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
        Throws:
        IOException
      • FirewallClient

        protected FirewallClient​(FirewallStub stub)
    • Method Detail

      • create

        public static final FirewallClient create​(FirewallSettings settings)
                                           throws IOException
        Constructs an instance of FirewallClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.
        Throws:
        IOException
      • create

        public static final FirewallClient create​(FirewallStub stub)
        Constructs an instance of FirewallClient, using the given stub for making calls. This is for advanced usage - prefer using create(FirewallSettings).
      • listIngressRules

        public final FirewallClient.ListIngressRulesPagedResponse listIngressRules​(ListIngressRulesRequest request)
        Lists the firewall rules of an application.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           ListIngressRulesRequest request =
               ListIngressRulesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setMatchingAddress("matchingAddress861962551")
                   .build();
           for (FirewallRule element : firewallClient.listIngressRules(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listIngressRulesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListIngressRulesRequest,​FirewallClient.ListIngressRulesPagedResponse> listIngressRulesPagedCallable()
        Lists the firewall rules of an application.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           ListIngressRulesRequest request =
               ListIngressRulesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setMatchingAddress("matchingAddress861962551")
                   .build();
           ApiFuture<FirewallRule> future =
               firewallClient.listIngressRulesPagedCallable().futureCall(request);
           // Do something.
           for (FirewallRule element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listIngressRulesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListIngressRulesRequest,​ListIngressRulesResponse> listIngressRulesCallable()
        Lists the firewall rules of an application.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           ListIngressRulesRequest request =
               ListIngressRulesRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setPageSize(883849137)
                   .setPageToken("pageToken873572522")
                   .setMatchingAddress("matchingAddress861962551")
                   .build();
           while (true) {
             ListIngressRulesResponse response = firewallClient.listIngressRulesCallable().call(request);
             for (FirewallRule element : response.getIngressRulesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • batchUpdateIngressRules

        public final 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.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           BatchUpdateIngressRulesRequest request =
               BatchUpdateIngressRulesRequest.newBuilder()
                   .setName("name3373707")
                   .addAllIngressRules(new ArrayList<FirewallRule>())
                   .build();
           BatchUpdateIngressRulesResponse response = firewallClient.batchUpdateIngressRules(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • batchUpdateIngressRulesCallable

        public final com.google.api.gax.rpc.UnaryCallable<BatchUpdateIngressRulesRequest,​BatchUpdateIngressRulesResponse> batchUpdateIngressRulesCallable()
        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.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           BatchUpdateIngressRulesRequest request =
               BatchUpdateIngressRulesRequest.newBuilder()
                   .setName("name3373707")
                   .addAllIngressRules(new ArrayList<FirewallRule>())
                   .build();
           ApiFuture<BatchUpdateIngressRulesResponse> future =
               firewallClient.batchUpdateIngressRulesCallable().futureCall(request);
           // Do something.
           BatchUpdateIngressRulesResponse response = future.get();
         }
         
      • createIngressRule

        public final FirewallRule createIngressRule​(CreateIngressRuleRequest request)
        Creates a firewall rule for the application.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           CreateIngressRuleRequest request =
               CreateIngressRuleRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setRule(FirewallRule.newBuilder().build())
                   .build();
           FirewallRule response = firewallClient.createIngressRule(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createIngressRuleCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateIngressRuleRequest,​FirewallRule> createIngressRuleCallable()
        Creates a firewall rule for the application.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           CreateIngressRuleRequest request =
               CreateIngressRuleRequest.newBuilder()
                   .setParent("parent-995424086")
                   .setRule(FirewallRule.newBuilder().build())
                   .build();
           ApiFuture<FirewallRule> future =
               firewallClient.createIngressRuleCallable().futureCall(request);
           // Do something.
           FirewallRule response = future.get();
         }
         
      • getIngressRule

        public final FirewallRule getIngressRule​(GetIngressRuleRequest request)
        Gets the specified firewall rule.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           GetIngressRuleRequest request =
               GetIngressRuleRequest.newBuilder().setName("name3373707").build();
           FirewallRule response = firewallClient.getIngressRule(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getIngressRuleCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetIngressRuleRequest,​FirewallRule> getIngressRuleCallable()
        Gets the specified firewall rule.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           GetIngressRuleRequest request =
               GetIngressRuleRequest.newBuilder().setName("name3373707").build();
           ApiFuture<FirewallRule> future = firewallClient.getIngressRuleCallable().futureCall(request);
           // Do something.
           FirewallRule response = future.get();
         }
         
      • updateIngressRule

        public final FirewallRule updateIngressRule​(UpdateIngressRuleRequest request)
        Updates the specified firewall rule.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           UpdateIngressRuleRequest request =
               UpdateIngressRuleRequest.newBuilder()
                   .setName("name3373707")
                   .setRule(FirewallRule.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           FirewallRule response = firewallClient.updateIngressRule(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateIngressRuleCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateIngressRuleRequest,​FirewallRule> updateIngressRuleCallable()
        Updates the specified firewall rule.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           UpdateIngressRuleRequest request =
               UpdateIngressRuleRequest.newBuilder()
                   .setName("name3373707")
                   .setRule(FirewallRule.newBuilder().build())
                   .setUpdateMask(FieldMask.newBuilder().build())
                   .build();
           ApiFuture<FirewallRule> future =
               firewallClient.updateIngressRuleCallable().futureCall(request);
           // Do something.
           FirewallRule response = future.get();
         }
         
      • deleteIngressRule

        public final void deleteIngressRule​(DeleteIngressRuleRequest request)
        Deletes the specified firewall rule.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           DeleteIngressRuleRequest request =
               DeleteIngressRuleRequest.newBuilder().setName("name3373707").build();
           firewallClient.deleteIngressRule(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteIngressRuleCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteIngressRuleRequest,​com.google.protobuf.Empty> deleteIngressRuleCallable()
        Deletes the specified firewall rule.

        Sample code:

        
         // This snippet has been automatically generated and should be regarded as a code template only.
         // It will require modifications to work:
         // - It may require correct/in-range values for request initialization.
         // - It may require specifying regional endpoints when creating the service client as shown in
         // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
         try (FirewallClient firewallClient = FirewallClient.create()) {
           DeleteIngressRuleRequest request =
               DeleteIngressRuleRequest.newBuilder().setName("name3373707").build();
           ApiFuture<Empty> future = firewallClient.deleteIngressRuleCallable().futureCall(request);
           // Do something.
           future.get();
         }
         
      • shutdown

        public void shutdown()
        Specified by:
        shutdown in interface com.google.api.gax.core.BackgroundResource
      • isShutdown

        public boolean isShutdown()
        Specified by:
        isShutdown in interface com.google.api.gax.core.BackgroundResource
      • isTerminated

        public boolean isTerminated()
        Specified by:
        isTerminated in interface com.google.api.gax.core.BackgroundResource
      • shutdownNow

        public void shutdownNow()
        Specified by:
        shutdownNow in interface com.google.api.gax.core.BackgroundResource