@Generated(value="by gapic-generator-java") public class PublicAdvertisedPrefixesClient extends Object implements com.google.api.gax.core.BackgroundResource
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
PublicAdvertisedPrefix response =
publicAdvertisedPrefixesClient.get(project, publicAdvertisedPrefix);
}
Note: close() needs to be called on the PublicAdvertisedPrefixesClient object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().
| Method | Description | Method Variants |
|---|---|---|
Announce |
Announces the specified PublicAdvertisedPrefix |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Delete |
Deletes the specified PublicAdvertisedPrefix |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Get |
Returns the specified PublicAdvertisedPrefix resource. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Insert |
Creates a PublicAdvertisedPrefix in the specified project using the parameters that are included in the request. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
List |
Lists the PublicAdvertisedPrefixes for a project. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Patch |
Patches the specified Router resource with the data included in the request. This method supports PATCH semantics and uses JSON merge patch format and processing rules. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.
|
Withdraw |
Withdraws the specified PublicAdvertisedPrefix |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
Methods that return long-running operations have "Async" method variants that return `OperationFuture`, which is used to track polling of the service.
Callable method variants take no parameters and return 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 PublicAdvertisedPrefixesSettings 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
PublicAdvertisedPrefixesSettings publicAdvertisedPrefixesSettings =
PublicAdvertisedPrefixesSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create(publicAdvertisedPrefixesSettings);
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
PublicAdvertisedPrefixesSettings publicAdvertisedPrefixesSettings =
PublicAdvertisedPrefixesSettings.newBuilder().setEndpoint(myEndpoint).build();
PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create(publicAdvertisedPrefixesSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
PublicAdvertisedPrefixesClient.ListFixedSizeCollection |
static class |
PublicAdvertisedPrefixesClient.ListPage |
static class |
PublicAdvertisedPrefixesClient.ListPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
PublicAdvertisedPrefixesClient(PublicAdvertisedPrefixesSettings settings)
Constructs an instance of PublicAdvertisedPrefixesClient, using the given settings.
|
protected |
PublicAdvertisedPrefixesClient(PublicAdvertisedPrefixesStub stub) |
| Modifier and Type | Method and Description |
|---|---|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
announceAsync(AnnouncePublicAdvertisedPrefixeRequest request)
Announces the specified PublicAdvertisedPrefix
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
AnnouncePublicAdvertisedPrefixeRequest request =
AnnouncePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
Operation response = publicAdvertisedPrefixesClient.announceAsync(request).get();
}
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
announceAsync(String project,
String publicAdvertisedPrefix)
Announces the specified PublicAdvertisedPrefix
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
Operation response =
publicAdvertisedPrefixesClient.announceAsync(project, publicAdvertisedPrefix).get();
}
|
com.google.api.gax.rpc.UnaryCallable<AnnouncePublicAdvertisedPrefixeRequest,Operation> |
announceCallable()
Announces the specified PublicAdvertisedPrefix
Sample code:
{@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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
AnnouncePublicAdvertisedPrefixeRequest request =
AnnouncePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
ApiFuture
|
com.google.api.gax.rpc.OperationCallable<AnnouncePublicAdvertisedPrefixeRequest,Operation,Operation> |
announceOperationCallable()
Announces the specified PublicAdvertisedPrefix
Sample code:
{@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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
AnnouncePublicAdvertisedPrefixeRequest request =
AnnouncePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
OperationFuture
|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static PublicAdvertisedPrefixesClient |
create()
Constructs an instance of PublicAdvertisedPrefixesClient with default settings.
|
static PublicAdvertisedPrefixesClient |
create(PublicAdvertisedPrefixesSettings settings)
Constructs an instance of PublicAdvertisedPrefixesClient, using the given settings.
|
static PublicAdvertisedPrefixesClient |
create(PublicAdvertisedPrefixesStub stub)
Constructs an instance of PublicAdvertisedPrefixesClient, using the given stub for making
calls.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
deleteAsync(DeletePublicAdvertisedPrefixeRequest request)
Deletes the specified PublicAdvertisedPrefix
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
DeletePublicAdvertisedPrefixeRequest request =
DeletePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
Operation response = publicAdvertisedPrefixesClient.deleteAsync(request).get();
}
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
deleteAsync(String project,
String publicAdvertisedPrefix)
Deletes the specified PublicAdvertisedPrefix
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
Operation response =
publicAdvertisedPrefixesClient.deleteAsync(project, publicAdvertisedPrefix).get();
}
|
com.google.api.gax.rpc.UnaryCallable<DeletePublicAdvertisedPrefixeRequest,Operation> |
deleteCallable()
Deletes the specified PublicAdvertisedPrefix
Sample code:
{@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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
DeletePublicAdvertisedPrefixeRequest request =
DeletePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
ApiFuture
|
com.google.api.gax.rpc.OperationCallable<DeletePublicAdvertisedPrefixeRequest,Operation,Operation> |
deleteOperationCallable()
Deletes the specified PublicAdvertisedPrefix
Sample code:
{@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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
DeletePublicAdvertisedPrefixeRequest request =
DeletePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
OperationFuture
|
PublicAdvertisedPrefix |
get(GetPublicAdvertisedPrefixeRequest request)
Returns the specified PublicAdvertisedPrefix resource.
|
PublicAdvertisedPrefix |
get(String project,
String publicAdvertisedPrefix)
Returns the specified PublicAdvertisedPrefix resource.
|
com.google.api.gax.rpc.UnaryCallable<GetPublicAdvertisedPrefixeRequest,PublicAdvertisedPrefix> |
getCallable()
Returns the specified PublicAdvertisedPrefix resource.
|
PublicAdvertisedPrefixesSettings |
getSettings() |
PublicAdvertisedPrefixesStub |
getStub() |
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
insertAsync(InsertPublicAdvertisedPrefixeRequest request)
Creates a PublicAdvertisedPrefix in the specified project using the parameters that are
included in the request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
insertAsync(String project,
PublicAdvertisedPrefix publicAdvertisedPrefixResource)
Creates a PublicAdvertisedPrefix in the specified project using the parameters that are
included in the request.
|
com.google.api.gax.rpc.UnaryCallable<InsertPublicAdvertisedPrefixeRequest,Operation> |
insertCallable()
Creates a PublicAdvertisedPrefix in the specified project using the parameters that are
included in the request.
|
com.google.api.gax.rpc.OperationCallable<InsertPublicAdvertisedPrefixeRequest,Operation,Operation> |
insertOperationCallable()
Creates a PublicAdvertisedPrefix in the specified project using the parameters that are
included in the request.
|
boolean |
isShutdown() |
boolean |
isTerminated() |
PublicAdvertisedPrefixesClient.ListPagedResponse |
list(ListPublicAdvertisedPrefixesRequest request)
Lists the PublicAdvertisedPrefixes for a project.
|
PublicAdvertisedPrefixesClient.ListPagedResponse |
list(String project)
Lists the PublicAdvertisedPrefixes for a project.
|
com.google.api.gax.rpc.UnaryCallable<ListPublicAdvertisedPrefixesRequest,PublicAdvertisedPrefixList> |
listCallable()
Lists the PublicAdvertisedPrefixes for a project.
|
com.google.api.gax.rpc.UnaryCallable<ListPublicAdvertisedPrefixesRequest,PublicAdvertisedPrefixesClient.ListPagedResponse> |
listPagedCallable()
Lists the PublicAdvertisedPrefixes for a project.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
patchAsync(PatchPublicAdvertisedPrefixeRequest request)
Patches the specified Router resource with the data included in the request.
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
patchAsync(String project,
String publicAdvertisedPrefix,
PublicAdvertisedPrefix publicAdvertisedPrefixResource)
Patches the specified Router resource with the data included in the request.
|
com.google.api.gax.rpc.UnaryCallable<PatchPublicAdvertisedPrefixeRequest,Operation> |
patchCallable()
Patches the specified Router resource with the data included in the request.
|
com.google.api.gax.rpc.OperationCallable<PatchPublicAdvertisedPrefixeRequest,Operation,Operation> |
patchOperationCallable()
Patches the specified Router resource with the data included in the request.
|
void |
shutdown() |
void |
shutdownNow() |
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
withdrawAsync(String project,
String publicAdvertisedPrefix)
Withdraws the specified PublicAdvertisedPrefix
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
Operation response =
publicAdvertisedPrefixesClient.withdrawAsync(project, publicAdvertisedPrefix).get();
}
|
com.google.api.gax.longrunning.OperationFuture<Operation,Operation> |
withdrawAsync(WithdrawPublicAdvertisedPrefixeRequest request)
Withdraws the specified PublicAdvertisedPrefix
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
WithdrawPublicAdvertisedPrefixeRequest request =
WithdrawPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
Operation response = publicAdvertisedPrefixesClient.withdrawAsync(request).get();
}
|
com.google.api.gax.rpc.UnaryCallable<WithdrawPublicAdvertisedPrefixeRequest,Operation> |
withdrawCallable()
Withdraws the specified PublicAdvertisedPrefix
Sample code:
{@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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
WithdrawPublicAdvertisedPrefixeRequest request =
WithdrawPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
ApiFuture
|
com.google.api.gax.rpc.OperationCallable<WithdrawPublicAdvertisedPrefixeRequest,Operation,Operation> |
withdrawOperationCallable()
Withdraws the specified PublicAdvertisedPrefix
Sample code:
{@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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
WithdrawPublicAdvertisedPrefixeRequest request =
WithdrawPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
OperationFuture
|
protected PublicAdvertisedPrefixesClient(PublicAdvertisedPrefixesSettings settings) throws IOException
IOExceptionprotected PublicAdvertisedPrefixesClient(PublicAdvertisedPrefixesStub stub)
public static final PublicAdvertisedPrefixesClient create() throws IOException
IOExceptionpublic static final PublicAdvertisedPrefixesClient create(PublicAdvertisedPrefixesSettings settings) throws IOException
IOExceptionpublic static final PublicAdvertisedPrefixesClient create(PublicAdvertisedPrefixesStub stub)
public final PublicAdvertisedPrefixesSettings getSettings()
public PublicAdvertisedPrefixesStub getStub()
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> announceAsync(String project, String publicAdvertisedPrefix)
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
Operation response =
publicAdvertisedPrefixesClient.announceAsync(project, publicAdvertisedPrefix).get();
}
project - Project ID for this request.publicAdvertisedPrefix - The name of the public advertised prefix. It should comply with
RFC1035.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> announceAsync(AnnouncePublicAdvertisedPrefixeRequest 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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
AnnouncePublicAdvertisedPrefixeRequest request =
AnnouncePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
Operation response = publicAdvertisedPrefixesClient.announceAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<AnnouncePublicAdvertisedPrefixeRequest,Operation,Operation> announceOperationCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
AnnouncePublicAdvertisedPrefixeRequest request =
AnnouncePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
publicAdvertisedPrefixesClient.announceOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<AnnouncePublicAdvertisedPrefixeRequest,Operation> announceCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
AnnouncePublicAdvertisedPrefixeRequest request =
AnnouncePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
publicAdvertisedPrefixesClient.announceCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> deleteAsync(String project, String publicAdvertisedPrefix)
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
Operation response =
publicAdvertisedPrefixesClient.deleteAsync(project, publicAdvertisedPrefix).get();
}
project - Project ID for this request.publicAdvertisedPrefix - Name of the PublicAdvertisedPrefix resource to delete.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> deleteAsync(DeletePublicAdvertisedPrefixeRequest 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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
DeletePublicAdvertisedPrefixeRequest request =
DeletePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
Operation response = publicAdvertisedPrefixesClient.deleteAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<DeletePublicAdvertisedPrefixeRequest,Operation,Operation> deleteOperationCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
DeletePublicAdvertisedPrefixeRequest request =
DeletePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
publicAdvertisedPrefixesClient.deleteOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<DeletePublicAdvertisedPrefixeRequest,Operation> deleteCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
DeletePublicAdvertisedPrefixeRequest request =
DeletePublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
publicAdvertisedPrefixesClient.deleteCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final PublicAdvertisedPrefix get(String project, String publicAdvertisedPrefix)
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
PublicAdvertisedPrefix response =
publicAdvertisedPrefixesClient.get(project, publicAdvertisedPrefix);
}
project - Project ID for this request.publicAdvertisedPrefix - Name of the PublicAdvertisedPrefix resource to return.com.google.api.gax.rpc.ApiException - if the remote call failspublic final PublicAdvertisedPrefix get(GetPublicAdvertisedPrefixeRequest 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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
GetPublicAdvertisedPrefixeRequest request =
GetPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.build();
PublicAdvertisedPrefix response = publicAdvertisedPrefixesClient.get(request);
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<GetPublicAdvertisedPrefixeRequest,PublicAdvertisedPrefix> getCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
GetPublicAdvertisedPrefixeRequest request =
GetPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.build();
ApiFuture<PublicAdvertisedPrefix> future =
publicAdvertisedPrefixesClient.getCallable().futureCall(request);
// Do something.
PublicAdvertisedPrefix response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> insertAsync(String project, PublicAdvertisedPrefix publicAdvertisedPrefixResource)
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
PublicAdvertisedPrefix publicAdvertisedPrefixResource =
PublicAdvertisedPrefix.newBuilder().build();
Operation response =
publicAdvertisedPrefixesClient.insertAsync(project, publicAdvertisedPrefixResource).get();
}
project - Project ID for this request.publicAdvertisedPrefixResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> insertAsync(InsertPublicAdvertisedPrefixeRequest 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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
InsertPublicAdvertisedPrefixeRequest request =
InsertPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefixResource(PublicAdvertisedPrefix.newBuilder().build())
.setRequestId("requestId693933066")
.build();
Operation response = publicAdvertisedPrefixesClient.insertAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<InsertPublicAdvertisedPrefixeRequest,Operation,Operation> insertOperationCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
InsertPublicAdvertisedPrefixeRequest request =
InsertPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefixResource(PublicAdvertisedPrefix.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
publicAdvertisedPrefixesClient.insertOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<InsertPublicAdvertisedPrefixeRequest,Operation> insertCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
InsertPublicAdvertisedPrefixeRequest request =
InsertPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefixResource(PublicAdvertisedPrefix.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
publicAdvertisedPrefixesClient.insertCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final PublicAdvertisedPrefixesClient.ListPagedResponse list(String 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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
for (PublicAdvertisedPrefix element :
publicAdvertisedPrefixesClient.list(project).iterateAll()) {
// doThingsWith(element);
}
}
project - Project ID for this request.com.google.api.gax.rpc.ApiException - if the remote call failspublic final PublicAdvertisedPrefixesClient.ListPagedResponse list(ListPublicAdvertisedPrefixesRequest 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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
ListPublicAdvertisedPrefixesRequest request =
ListPublicAdvertisedPrefixesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
for (PublicAdvertisedPrefix element :
publicAdvertisedPrefixesClient.list(request).iterateAll()) {
// doThingsWith(element);
}
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.UnaryCallable<ListPublicAdvertisedPrefixesRequest,PublicAdvertisedPrefixesClient.ListPagedResponse> listPagedCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
ListPublicAdvertisedPrefixesRequest request =
ListPublicAdvertisedPrefixesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
ApiFuture<PublicAdvertisedPrefix> future =
publicAdvertisedPrefixesClient.listPagedCallable().futureCall(request);
// Do something.
for (PublicAdvertisedPrefix element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListPublicAdvertisedPrefixesRequest,PublicAdvertisedPrefixList> listCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
ListPublicAdvertisedPrefixesRequest request =
ListPublicAdvertisedPrefixesRequest.newBuilder()
.setFilter("filter-1274492040")
.setMaxResults(1128457243)
.setOrderBy("orderBy-1207110587")
.setPageToken("pageToken873572522")
.setProject("project-309310695")
.setReturnPartialSuccess(true)
.build();
while (true) {
PublicAdvertisedPrefixList response =
publicAdvertisedPrefixesClient.listCallable().call(request);
for (PublicAdvertisedPrefix element : response.getItemsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> patchAsync(String project, String publicAdvertisedPrefix, PublicAdvertisedPrefix publicAdvertisedPrefixResource)
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
PublicAdvertisedPrefix publicAdvertisedPrefixResource =
PublicAdvertisedPrefix.newBuilder().build();
Operation response =
publicAdvertisedPrefixesClient
.patchAsync(project, publicAdvertisedPrefix, publicAdvertisedPrefixResource)
.get();
}
project - Project ID for this request.publicAdvertisedPrefix - Name of the PublicAdvertisedPrefix resource to patch.publicAdvertisedPrefixResource - The body resource for this requestcom.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> patchAsync(PatchPublicAdvertisedPrefixeRequest 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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
PatchPublicAdvertisedPrefixeRequest request =
PatchPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setPublicAdvertisedPrefixResource(PublicAdvertisedPrefix.newBuilder().build())
.setRequestId("requestId693933066")
.build();
Operation response = publicAdvertisedPrefixesClient.patchAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<PatchPublicAdvertisedPrefixeRequest,Operation,Operation> patchOperationCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
PatchPublicAdvertisedPrefixeRequest request =
PatchPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setPublicAdvertisedPrefixResource(PublicAdvertisedPrefix.newBuilder().build())
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
publicAdvertisedPrefixesClient.patchOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<PatchPublicAdvertisedPrefixeRequest,Operation> patchCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
PatchPublicAdvertisedPrefixeRequest request =
PatchPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setPublicAdvertisedPrefixResource(PublicAdvertisedPrefix.newBuilder().build())
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
publicAdvertisedPrefixesClient.patchCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> withdrawAsync(String project, String publicAdvertisedPrefix)
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
String project = "project-309310695";
String publicAdvertisedPrefix = "publicAdvertisedPrefix1506440856";
Operation response =
publicAdvertisedPrefixesClient.withdrawAsync(project, publicAdvertisedPrefix).get();
}
project - Project ID for this request.publicAdvertisedPrefix - The name of the public advertised prefix. It should comply with
RFC1035.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.longrunning.OperationFuture<Operation,Operation> withdrawAsync(WithdrawPublicAdvertisedPrefixeRequest 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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
WithdrawPublicAdvertisedPrefixeRequest request =
WithdrawPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
Operation response = publicAdvertisedPrefixesClient.withdrawAsync(request).get();
}
request - The request object containing all of the parameters for the API call.com.google.api.gax.rpc.ApiException - if the remote call failspublic final com.google.api.gax.rpc.OperationCallable<WithdrawPublicAdvertisedPrefixeRequest,Operation,Operation> withdrawOperationCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
WithdrawPublicAdvertisedPrefixeRequest request =
WithdrawPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
OperationFuture<Operation, Operation> future =
publicAdvertisedPrefixesClient.withdrawOperationCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<WithdrawPublicAdvertisedPrefixeRequest,Operation> withdrawCallable()
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 (PublicAdvertisedPrefixesClient publicAdvertisedPrefixesClient =
PublicAdvertisedPrefixesClient.create()) {
WithdrawPublicAdvertisedPrefixeRequest request =
WithdrawPublicAdvertisedPrefixeRequest.newBuilder()
.setProject("project-309310695")
.setPublicAdvertisedPrefix("publicAdvertisedPrefix1506440856")
.setRequestId("requestId693933066")
.build();
ApiFuture<Operation> future =
publicAdvertisedPrefixesClient.withdrawCallable().futureCall(request);
// Do something.
Operation response = future.get();
}
public final void close()
close in interface AutoCloseablepublic void shutdown()
shutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isShutdown()
isShutdown in interface com.google.api.gax.core.BackgroundResourcepublic boolean isTerminated()
isTerminated in interface com.google.api.gax.core.BackgroundResourcepublic void shutdownNow()
shutdownNow in interface com.google.api.gax.core.BackgroundResourcepublic boolean awaitTermination(long duration,
TimeUnit unit)
throws InterruptedException
awaitTermination in interface com.google.api.gax.core.BackgroundResourceInterruptedExceptionCopyright © 2024 Google LLC. All rights reserved.