Class UrlMapsClient

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

    @Generated("by gapic-generator-java")
    public class UrlMapsClient
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: The UrlMaps API.

    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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
       String project = "project-309310695";
       String urlMap = "urlMap-836780691";
       UrlMap response = urlMapsClient.get(project, urlMap);
     }
     

    Note: close() needs to be called on the UrlMapsClient 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 UrlMapsSettings 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
     UrlMapsSettings urlMapsSettings =
         UrlMapsSettings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     UrlMapsClient urlMapsClient = UrlMapsClient.create(urlMapsSettings);
     

    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
     UrlMapsSettings urlMapsSettings = UrlMapsSettings.newBuilder().setEndpoint(myEndpoint).build();
     UrlMapsClient urlMapsClient = UrlMapsClient.create(urlMapsSettings);
     

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

    • Constructor Detail

      • UrlMapsClient

        protected UrlMapsClient​(UrlMapsSettings settings)
                         throws IOException
        Constructs an instance of UrlMapsClient, 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
      • UrlMapsClient

        protected UrlMapsClient​(UrlMapsStub stub)
    • Method Detail

      • create

        public static final UrlMapsClient create​(UrlMapsSettings settings)
                                          throws IOException
        Constructs an instance of UrlMapsClient, 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 UrlMapsClient create​(UrlMapsStub stub)
        Constructs an instance of UrlMapsClient, using the given stub for making calls. This is for advanced usage - prefer using create(UrlMapsSettings).
      • aggregatedList

        public final UrlMapsClient.AggregatedListPagedResponse aggregatedList​(String project)
        Retrieves the list of all UrlMap resources, regional and global, available to the specified project.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           for (Map.Entry<String, UrlMapsScopedList> element :
               urlMapsClient.aggregatedList(project).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        project - Name of the project scoping this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • aggregatedList

        public final UrlMapsClient.AggregatedListPagedResponse aggregatedList​(AggregatedListUrlMapsRequest request)
        Retrieves the list of all UrlMap resources, regional and global, available to the specified project.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           AggregatedListUrlMapsRequest request =
               AggregatedListUrlMapsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           for (Map.Entry<String, UrlMapsScopedList> element :
               urlMapsClient.aggregatedList(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
      • aggregatedListPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<AggregatedListUrlMapsRequest,​UrlMapsClient.AggregatedListPagedResponse> aggregatedListPagedCallable()
        Retrieves the list of all UrlMap resources, regional and global, available to the specified project.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           AggregatedListUrlMapsRequest request =
               AggregatedListUrlMapsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           ApiFuture<Map.Entry<String, UrlMapsScopedList>> future =
               urlMapsClient.aggregatedListPagedCallable().futureCall(request);
           // Do something.
           for (Map.Entry<String, UrlMapsScopedList> element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • aggregatedListCallable

        public final com.google.api.gax.rpc.UnaryCallable<AggregatedListUrlMapsRequest,​UrlMapsAggregatedList> aggregatedListCallable()
        Retrieves the list of all UrlMap resources, regional and global, available to the specified project.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           AggregatedListUrlMapsRequest request =
               AggregatedListUrlMapsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setIncludeAllScopes(true)
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           while (true) {
             UrlMapsAggregatedList response = urlMapsClient.aggregatedListCallable().call(request);
             for (Map.Entry<String, UrlMapsScopedList> element : response.getItemsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • deleteAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> deleteAsync​(String project,
                                                                                                           String urlMap)
        Deletes the specified UrlMap resource.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           String urlMap = "urlMap-836780691";
           Operation response = urlMapsClient.deleteAsync(project, urlMap).get();
         }
         
        Parameters:
        project - Project ID for this request.
        urlMap - Name of the UrlMap resource to delete.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> deleteAsync​(DeleteUrlMapRequest request)
        Deletes the specified UrlMap resource.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           DeleteUrlMapRequest request =
               DeleteUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .build();
           Operation response = urlMapsClient.deleteAsync(request).get();
         }
         
        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
      • deleteOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<DeleteUrlMapRequest,​Operation,​Operation> deleteOperationCallable()
        Deletes the specified UrlMap resource.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           DeleteUrlMapRequest request =
               DeleteUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .build();
           OperationFuture<Operation, Operation> future =
               urlMapsClient.deleteOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • deleteCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteUrlMapRequest,​Operation> deleteCallable()
        Deletes the specified UrlMap resource.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           DeleteUrlMapRequest request =
               DeleteUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .build();
           ApiFuture<Operation> future = urlMapsClient.deleteCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • get

        public final UrlMap get​(String project,
                                String urlMap)
        Returns the specified UrlMap resource.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           String urlMap = "urlMap-836780691";
           UrlMap response = urlMapsClient.get(project, urlMap);
         }
         
        Parameters:
        project - Project ID for this request.
        urlMap - Name of the UrlMap resource to return.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • get

        public final UrlMap get​(GetUrlMapRequest request)
        Returns the specified UrlMap resource.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           GetUrlMapRequest request =
               GetUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setUrlMap("urlMap-836780691")
                   .build();
           UrlMap response = urlMapsClient.get(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
      • getCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetUrlMapRequest,​UrlMap> getCallable()
        Returns the specified UrlMap resource.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           GetUrlMapRequest request =
               GetUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setUrlMap("urlMap-836780691")
                   .build();
           ApiFuture<UrlMap> future = urlMapsClient.getCallable().futureCall(request);
           // Do something.
           UrlMap response = future.get();
         }
         
      • insertAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> insertAsync​(String project,
                                                                                                           UrlMap urlMapResource)
        Creates a UrlMap resource in the specified project using the data included in the request.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           UrlMap urlMapResource = UrlMap.newBuilder().build();
           Operation response = urlMapsClient.insertAsync(project, urlMapResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        urlMapResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • insertAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> insertAsync​(InsertUrlMapRequest request)
        Creates a UrlMap resource in the specified project using the data included in the request.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           InsertUrlMapRequest request =
               InsertUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           Operation response = urlMapsClient.insertAsync(request).get();
         }
         
        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
      • insertOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<InsertUrlMapRequest,​Operation,​Operation> insertOperationCallable()
        Creates a UrlMap resource in the specified project using the data included in the request.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           InsertUrlMapRequest request =
               InsertUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           OperationFuture<Operation, Operation> future =
               urlMapsClient.insertOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • insertCallable

        public final com.google.api.gax.rpc.UnaryCallable<InsertUrlMapRequest,​Operation> insertCallable()
        Creates a UrlMap resource in the specified project using the data included in the request.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           InsertUrlMapRequest request =
               InsertUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           ApiFuture<Operation> future = urlMapsClient.insertCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • invalidateCacheAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> invalidateCacheAsync​(String project,
                                                                                                                    String urlMap,
                                                                                                                    CacheInvalidationRule cacheInvalidationRuleResource)
        Initiates a cache invalidation operation, invalidating the specified path, scoped to the specified UrlMap. For more information, see [Invalidating cached content](/cdn/docs/invalidating-cached-content).

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           String urlMap = "urlMap-836780691";
           CacheInvalidationRule cacheInvalidationRuleResource =
               CacheInvalidationRule.newBuilder().build();
           Operation response =
               urlMapsClient.invalidateCacheAsync(project, urlMap, cacheInvalidationRuleResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        urlMap - Name of the UrlMap scoping this request.
        cacheInvalidationRuleResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • invalidateCacheAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> invalidateCacheAsync​(InvalidateCacheUrlMapRequest request)
        Initiates a cache invalidation operation, invalidating the specified path, scoped to the specified UrlMap. For more information, see [Invalidating cached content](/cdn/docs/invalidating-cached-content).

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           InvalidateCacheUrlMapRequest request =
               InvalidateCacheUrlMapRequest.newBuilder()
                   .setCacheInvalidationRuleResource(CacheInvalidationRule.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .build();
           Operation response = urlMapsClient.invalidateCacheAsync(request).get();
         }
         
        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
      • invalidateCacheOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<InvalidateCacheUrlMapRequest,​Operation,​Operation> invalidateCacheOperationCallable()
        Initiates a cache invalidation operation, invalidating the specified path, scoped to the specified UrlMap. For more information, see [Invalidating cached content](/cdn/docs/invalidating-cached-content).

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           InvalidateCacheUrlMapRequest request =
               InvalidateCacheUrlMapRequest.newBuilder()
                   .setCacheInvalidationRuleResource(CacheInvalidationRule.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .build();
           OperationFuture<Operation, Operation> future =
               urlMapsClient.invalidateCacheOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • invalidateCacheCallable

        public final com.google.api.gax.rpc.UnaryCallable<InvalidateCacheUrlMapRequest,​Operation> invalidateCacheCallable()
        Initiates a cache invalidation operation, invalidating the specified path, scoped to the specified UrlMap. For more information, see [Invalidating cached content](/cdn/docs/invalidating-cached-content).

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           InvalidateCacheUrlMapRequest request =
               InvalidateCacheUrlMapRequest.newBuilder()
                   .setCacheInvalidationRuleResource(CacheInvalidationRule.newBuilder().build())
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .build();
           ApiFuture<Operation> future = urlMapsClient.invalidateCacheCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • list

        public final UrlMapsClient.ListPagedResponse list​(String project)
        Retrieves the list of UrlMap resources available to the specified project.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           for (UrlMap element : urlMapsClient.list(project).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        project - Project ID for this request.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • list

        public final UrlMapsClient.ListPagedResponse list​(ListUrlMapsRequest request)
        Retrieves the list of UrlMap resources available to the specified project.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           ListUrlMapsRequest request =
               ListUrlMapsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           for (UrlMap element : urlMapsClient.list(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
      • listPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListUrlMapsRequest,​UrlMapsClient.ListPagedResponse> listPagedCallable()
        Retrieves the list of UrlMap resources available to the specified project.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           ListUrlMapsRequest request =
               ListUrlMapsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           ApiFuture<UrlMap> future = urlMapsClient.listPagedCallable().futureCall(request);
           // Do something.
           for (UrlMap element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListUrlMapsRequest,​UrlMapList> listCallable()
        Retrieves the list of UrlMap resources available to the specified project.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           ListUrlMapsRequest request =
               ListUrlMapsRequest.newBuilder()
                   .setFilter("filter-1274492040")
                   .setMaxResults(1128457243)
                   .setOrderBy("orderBy-1207110587")
                   .setPageToken("pageToken873572522")
                   .setProject("project-309310695")
                   .setReturnPartialSuccess(true)
                   .build();
           while (true) {
             UrlMapList response = urlMapsClient.listCallable().call(request);
             for (UrlMap element : response.getItemsList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • patchAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> patchAsync​(String project,
                                                                                                          String urlMap,
                                                                                                          UrlMap urlMapResource)
        Patches the specified UrlMap resource with the data included in the request. This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           String urlMap = "urlMap-836780691";
           UrlMap urlMapResource = UrlMap.newBuilder().build();
           Operation response = urlMapsClient.patchAsync(project, urlMap, urlMapResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        urlMap - Name of the UrlMap resource to patch.
        urlMapResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • patchAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> patchAsync​(PatchUrlMapRequest request)
        Patches the specified UrlMap resource with the data included in the request. This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           PatchUrlMapRequest request =
               PatchUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           Operation response = urlMapsClient.patchAsync(request).get();
         }
         
        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
      • patchOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<PatchUrlMapRequest,​Operation,​Operation> patchOperationCallable()
        Patches the specified UrlMap resource with the data included in the request. This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           PatchUrlMapRequest request =
               PatchUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           OperationFuture<Operation, Operation> future =
               urlMapsClient.patchOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • patchCallable

        public final com.google.api.gax.rpc.UnaryCallable<PatchUrlMapRequest,​Operation> patchCallable()
        Patches the specified UrlMap resource with the data included in the request. This method supports PATCH semantics and uses the JSON merge patch format and processing rules.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           PatchUrlMapRequest request =
               PatchUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           ApiFuture<Operation> future = urlMapsClient.patchCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateAsync

        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> updateAsync​(String project,
                                                                                                           String urlMap,
                                                                                                           UrlMap urlMapResource)
        Updates the specified UrlMap resource with the data included in the request.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           String urlMap = "urlMap-836780691";
           UrlMap urlMapResource = UrlMap.newBuilder().build();
           Operation response = urlMapsClient.updateAsync(project, urlMap, urlMapResource).get();
         }
         
        Parameters:
        project - Project ID for this request.
        urlMap - Name of the UrlMap resource to update.
        urlMapResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateAsync

        @BetaApi("The surface for long-running operations is not stable yet and may change in the future.")
        public final com.google.api.gax.longrunning.OperationFuture<Operation,​Operation> updateAsync​(UpdateUrlMapRequest request)
        Updates the specified UrlMap resource with the data included in the request.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           UpdateUrlMapRequest request =
               UpdateUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           Operation response = urlMapsClient.updateAsync(request).get();
         }
         
        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
      • updateOperationCallable

        public final com.google.api.gax.rpc.OperationCallable<UpdateUrlMapRequest,​Operation,​Operation> updateOperationCallable()
        Updates the specified UrlMap resource with the data included in the request.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           UpdateUrlMapRequest request =
               UpdateUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           OperationFuture<Operation, Operation> future =
               urlMapsClient.updateOperationCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • updateCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateUrlMapRequest,​Operation> updateCallable()
        Updates the specified UrlMap resource with the data included in the request.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           UpdateUrlMapRequest request =
               UpdateUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setRequestId("requestId693933066")
                   .setUrlMap("urlMap-836780691")
                   .setUrlMapResource(UrlMap.newBuilder().build())
                   .build();
           ApiFuture<Operation> future = urlMapsClient.updateCallable().futureCall(request);
           // Do something.
           Operation response = future.get();
         }
         
      • validate

        public final UrlMapsValidateResponse validate​(String project,
                                                      String urlMap,
                                                      UrlMapsValidateRequest urlMapsValidateRequestResource)
        Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be run. Calling this method does NOT create the UrlMap.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           String project = "project-309310695";
           String urlMap = "urlMap-836780691";
           UrlMapsValidateRequest urlMapsValidateRequestResource =
               UrlMapsValidateRequest.newBuilder().build();
           UrlMapsValidateResponse response =
               urlMapsClient.validate(project, urlMap, urlMapsValidateRequestResource);
         }
         
        Parameters:
        project - Project ID for this request.
        urlMap - Name of the UrlMap resource to be validated as.
        urlMapsValidateRequestResource - The body resource for this request
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • validate

        public final UrlMapsValidateResponse validate​(ValidateUrlMapRequest request)
        Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be run. Calling this method does NOT create the UrlMap.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           ValidateUrlMapRequest request =
               ValidateUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setUrlMap("urlMap-836780691")
                   .setUrlMapsValidateRequestResource(UrlMapsValidateRequest.newBuilder().build())
                   .build();
           UrlMapsValidateResponse response = urlMapsClient.validate(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
      • validateCallable

        public final com.google.api.gax.rpc.UnaryCallable<ValidateUrlMapRequest,​UrlMapsValidateResponse> validateCallable()
        Runs static validation for the UrlMap. In particular, the tests of the provided UrlMap will be run. Calling this method does NOT create the UrlMap.

        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 (UrlMapsClient urlMapsClient = UrlMapsClient.create()) {
           ValidateUrlMapRequest request =
               ValidateUrlMapRequest.newBuilder()
                   .setProject("project-309310695")
                   .setUrlMap("urlMap-836780691")
                   .setUrlMapsValidateRequestResource(UrlMapsValidateRequest.newBuilder().build())
                   .build();
           ApiFuture<UrlMapsValidateResponse> future =
               urlMapsClient.validateCallable().futureCall(request);
           // Do something.
           UrlMapsValidateResponse response = 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