- 1.62.0 (latest)
- 1.61.0
- 1.59.0
- 1.58.0
- 1.57.0
- 1.56.0
- 1.55.0
- 1.54.0
- 1.53.0
- 1.52.0
- 1.51.0
- 1.50.0
- 1.49.0
- 1.47.0
- 1.46.0
- 1.45.0
- 1.44.0
- 1.43.0
- 1.42.0
- 1.41.0
- 1.40.0
- 1.39.0
- 1.38.0
- 1.37.0
- 1.34.0
- 1.33.0
- 1.32.0
- 1.31.0
- 1.30.0
- 1.29.0
- 1.28.0
- 1.27.0
- 1.26.0
- 1.25.0
- 1.24.0
- 1.23.0
- 1.22.0
- 1.21.0
- 1.20.0
- 1.19.0
- 1.18.0
- 1.17.0
- 1.16.0
- 1.15.0
- 1.14.0
- 1.13.0
- 1.12.1
- 1.11.0
- 1.9.1
- 1.8.1
- 1.7.2
- 1.6.0-beta
public class UrlMapsClient implements 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:
- 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.
- 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.
- 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.
Implements
BackgroundResourceStatic Methods
create()
public static final UrlMapsClient create()
Constructs an instance of UrlMapsClient with default settings.
Type | Description |
UrlMapsClient |
Type | Description |
IOException |
create(UrlMapsSettings settings)
public static final UrlMapsClient create(UrlMapsSettings settings)
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.
Name | Description |
settings | UrlMapsSettings |
Type | Description |
UrlMapsClient |
Type | Description |
IOException |
create(UrlMapsStub stub)
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).
Name | Description |
stub | UrlMapsStub |
Type | Description |
UrlMapsClient |
Constructors
UrlMapsClient(UrlMapsSettings settings)
protected UrlMapsClient(UrlMapsSettings settings)
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.
Name | Description |
settings | UrlMapsSettings |
UrlMapsClient(UrlMapsStub stub)
protected UrlMapsClient(UrlMapsStub stub)
Name | Description |
stub | UrlMapsStub |
Methods
aggregatedList(AggregatedListUrlMapsRequest request)
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);
}
}
Name | Description |
request | AggregatedListUrlMapsRequest The request object containing all of the parameters for the API call. |
Type | Description |
UrlMapsClient.AggregatedListPagedResponse |
aggregatedList(String project)
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);
}
}
Name | Description |
project | String Name of the project scoping this request. |
Type | Description |
UrlMapsClient.AggregatedListPagedResponse |
aggregatedListCallable()
public final 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;
}
}
}
Type | Description |
UnaryCallable<AggregatedListUrlMapsRequest,UrlMapsAggregatedList> |
aggregatedListPagedCallable()
public final 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);
}
}
Type | Description |
UnaryCallable<AggregatedListUrlMapsRequest,AggregatedListPagedResponse> |
awaitTermination(long duration, TimeUnit unit)
public boolean awaitTermination(long duration, TimeUnit unit)
Name | Description |
duration | long |
unit | TimeUnit |
Type | Description |
boolean |
Type | Description |
InterruptedException |
close()
public final void close()
deleteAsync(DeleteUrlMapRequest request)
public final 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();
}
Name | Description |
request | DeleteUrlMapRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Operation,Operation> |
deleteAsync(String project, String urlMap)
public final 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();
}
Name | Description |
project | String Project ID for this request. |
urlMap | String Name of the UrlMap resource to delete. |
Type | Description |
OperationFuture<Operation,Operation> |
deleteCallable()
public final 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();
}
Type | Description |
UnaryCallable<DeleteUrlMapRequest,Operation> |
deleteOperationCallable()
public final 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();
}
Type | Description |
OperationCallable<DeleteUrlMapRequest,Operation,Operation> |
get(GetUrlMapRequest request)
public final UrlMap get(GetUrlMapRequest request)
Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() 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()) {
GetUrlMapRequest request =
GetUrlMapRequest.newBuilder()
.setProject("project-309310695")
.setUrlMap("urlMap-836780691")
.build();
UrlMap response = urlMapsClient.get(request);
}
Name | Description |
request | GetUrlMapRequest The request object containing all of the parameters for the API call. |
Type | Description |
UrlMap |
get(String project, String urlMap)
public final UrlMap get(String project, String urlMap)
Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() 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 response = urlMapsClient.get(project, urlMap);
}
Name | Description |
project | String Project ID for this request. |
urlMap | String Name of the UrlMap resource to return. |
Type | Description |
UrlMap |
getCallable()
public final UnaryCallable<GetUrlMapRequest,UrlMap> getCallable()
Returns the specified UrlMap resource. Gets a list of available URL maps by making a list() 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()) {
GetUrlMapRequest request =
GetUrlMapRequest.newBuilder()
.setProject("project-309310695")
.setUrlMap("urlMap-836780691")
.build();
ApiFuture<UrlMap> future = urlMapsClient.getCallable().futureCall(request);
// Do something.
UrlMap response = future.get();
}
Type | Description |
UnaryCallable<GetUrlMapRequest,UrlMap> |
getSettings()
public final UrlMapsSettings getSettings()
Type | Description |
UrlMapsSettings |
getStub()
public UrlMapsStub getStub()
Type | Description |
UrlMapsStub |
insertAsync(InsertUrlMapRequest request)
public final 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();
}
Name | Description |
request | InsertUrlMapRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Operation,Operation> |
insertAsync(String project, UrlMap urlMapResource)
public final 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();
}
Name | Description |
project | String Project ID for this request. |
urlMapResource | UrlMap The body resource for this request |
Type | Description |
OperationFuture<Operation,Operation> |
insertCallable()
public final 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();
}
Type | Description |
UnaryCallable<InsertUrlMapRequest,Operation> |
insertOperationCallable()
public final 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();
}
Type | Description |
OperationCallable<InsertUrlMapRequest,Operation,Operation> |
invalidateCacheAsync(InvalidateCacheUrlMapRequest request)
public final 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.
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();
}
Name | Description |
request | InvalidateCacheUrlMapRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Operation,Operation> |
invalidateCacheAsync(String project, String urlMap, CacheInvalidationRule cacheInvalidationRuleResource)
public final 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.
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();
}
Name | Description |
project | String Project ID for this request. |
urlMap | String Name of the UrlMap scoping this request. |
cacheInvalidationRuleResource | CacheInvalidationRule The body resource for this request |
Type | Description |
OperationFuture<Operation,Operation> |
invalidateCacheCallable()
public final 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.
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();
}
Type | Description |
UnaryCallable<InvalidateCacheUrlMapRequest,Operation> |
invalidateCacheOperationCallable()
public final 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.
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();
}
Type | Description |
OperationCallable<InvalidateCacheUrlMapRequest,Operation,Operation> |
isShutdown()
public boolean isShutdown()
Type | Description |
boolean |
isTerminated()
public boolean isTerminated()
Type | Description |
boolean |
list(ListUrlMapsRequest request)
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);
}
}
Name | Description |
request | ListUrlMapsRequest The request object containing all of the parameters for the API call. |
Type | Description |
UrlMapsClient.ListPagedResponse |
list(String project)
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);
}
}
Name | Description |
project | String Project ID for this request. |
Type | Description |
UrlMapsClient.ListPagedResponse |
listCallable()
public final 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;
}
}
}
Type | Description |
UnaryCallable<ListUrlMapsRequest,UrlMapList> |
listPagedCallable()
public final 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);
}
}
Type | Description |
UnaryCallable<ListUrlMapsRequest,ListPagedResponse> |
patchAsync(PatchUrlMapRequest request)
public final 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();
}
Name | Description |
request | PatchUrlMapRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Operation,Operation> |
patchAsync(String project, String urlMap, UrlMap urlMapResource)
public final 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();
}
Name | Description |
project | String Project ID for this request. |
urlMap | String Name of the UrlMap resource to patch. |
urlMapResource | UrlMap The body resource for this request |
Type | Description |
OperationFuture<Operation,Operation> |
patchCallable()
public final 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();
}
Type | Description |
UnaryCallable<PatchUrlMapRequest,Operation> |
patchOperationCallable()
public final 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();
}
Type | Description |
OperationCallable<PatchUrlMapRequest,Operation,Operation> |
shutdown()
public void shutdown()
shutdownNow()
public void shutdownNow()
updateAsync(UpdateUrlMapRequest request)
public final 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();
}
Name | Description |
request | UpdateUrlMapRequest The request object containing all of the parameters for the API call. |
Type | Description |
OperationFuture<Operation,Operation> |
updateAsync(String project, String urlMap, UrlMap urlMapResource)
public final 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();
}
Name | Description |
project | String Project ID for this request. |
urlMap | String Name of the UrlMap resource to update. |
urlMapResource | UrlMap The body resource for this request |
Type | Description |
OperationFuture<Operation,Operation> |
updateCallable()
public final 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();
}
Type | Description |
UnaryCallable<UpdateUrlMapRequest,Operation> |
updateOperationCallable()
public final 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();
}
Type | Description |
OperationCallable<UpdateUrlMapRequest,Operation,Operation> |
validate(ValidateUrlMapRequest request)
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);
}
Name | Description |
request | ValidateUrlMapRequest The request object containing all of the parameters for the API call. |
Type | Description |
UrlMapsValidateResponse |
validate(String project, String urlMap, UrlMapsValidateRequest urlMapsValidateRequestResource)
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);
}
Name | Description |
project | String Project ID for this request. |
urlMap | String Name of the UrlMap resource to be validated as. |
urlMapsValidateRequestResource | UrlMapsValidateRequest The body resource for this request |
Type | Description |
UrlMapsValidateResponse |
validateCallable()
public final 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();
}
Type | Description |
UnaryCallable<ValidateUrlMapRequest,UrlMapsValidateResponse> |