Class ContentBundleServiceClient (0.54.0)

GitHub RepositoryProduct Reference

Service Description: Provides methods for handling ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   ContentBundleName name = ContentBundleName.of("[NETWORK_CODE]", "[CONTENT_BUNDLE]");
   ContentBundle response = contentBundleServiceClient.getContentBundle(name);
 }
 

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

Methods
Method Description Method Variants

GetContentBundle

Retrieves a ContentBundle object.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • getContentBundle(GetContentBundleRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • getContentBundle(ContentBundleName name)

  • getContentBundle(String name)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • getContentBundleCallable()

ListContentBundles

Lists ContentBundle objects.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • listContentBundles(ListContentBundlesRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • listContentBundles(NetworkName parent)

  • listContentBundles(String parent)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • listContentBundlesPagedCallable()

  • listContentBundlesCallable()

BatchActivateContentBundles

Activate a list of ContentBundle objects.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • batchActivateContentBundles(BatchActivateContentBundlesRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • batchActivateContentBundles(NetworkName parent, List<String> names)

  • batchActivateContentBundles(String parent, List<String> names)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • batchActivateContentBundlesCallable()

BatchDeactivateContentBundles

Deactivates a list of ContentBundle objects.

Request object method variants only take one parameter, a request object, which must be constructed before the call.

  • batchDeactivateContentBundles(BatchDeactivateContentBundlesRequest request)

"Flattened" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.

  • batchDeactivateContentBundles(NetworkName parent, List<String> names)

  • batchDeactivateContentBundles(String parent, List<String> names)

Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.

  • batchDeactivateContentBundlesCallable()

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 ContentBundleServiceSettings 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
 ContentBundleServiceSettings contentBundleServiceSettings =
     ContentBundleServiceSettings.newBuilder()
         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
         .build();
 ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create(contentBundleServiceSettings);
 

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
 ContentBundleServiceSettings contentBundleServiceSettings =
     ContentBundleServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create(contentBundleServiceSettings);
 

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

Inheritance

java.lang.Object > ContentBundleServiceClient

Static Methods

create()

public static final ContentBundleServiceClient create()

Constructs an instance of ContentBundleServiceClient with default settings.

Returns
Type Description
ContentBundleServiceClient
Exceptions
Type Description
IOException

create(ContentBundleServiceSettings settings)

public static final ContentBundleServiceClient create(ContentBundleServiceSettings settings)

Constructs an instance of ContentBundleServiceClient, using the given settings. The channels are created based on the settings passed in, or defaults for any settings that are not set.

Parameter
Name Description
settings ContentBundleServiceSettings
Returns
Type Description
ContentBundleServiceClient
Exceptions
Type Description
IOException

create(ContentBundleServiceStub stub)

public static final ContentBundleServiceClient create(ContentBundleServiceStub stub)

Constructs an instance of ContentBundleServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(ContentBundleServiceSettings).

Parameter
Name Description
stub ContentBundleServiceStub
Returns
Type Description
ContentBundleServiceClient

Constructors

ContentBundleServiceClient(ContentBundleServiceSettings settings)

protected ContentBundleServiceClient(ContentBundleServiceSettings settings)

Constructs an instance of ContentBundleServiceClient, 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.

Parameter
Name Description
settings ContentBundleServiceSettings

ContentBundleServiceClient(ContentBundleServiceStub stub)

protected ContentBundleServiceClient(ContentBundleServiceStub stub)
Parameter
Name Description
stub ContentBundleServiceStub

Methods

awaitTermination(long duration, TimeUnit unit)

public boolean awaitTermination(long duration, TimeUnit unit)
Parameters
Name Description
duration long
unit TimeUnit
Returns
Type Description
boolean
Exceptions
Type Description
InterruptedException

batchActivateContentBundles(@Nullable NetworkName parent, List<String> names)

public final BatchActivateContentBundlesResponse batchActivateContentBundles(@Nullable NetworkName parent, List<String> names)

Activate a list of ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
   List<String> names = new ArrayList<>();
   BatchActivateContentBundlesResponse response =
       contentBundleServiceClient.batchActivateContentBundles(parent, names);
 }
 
Parameters
Name Description
parent @org.jspecify.annotations.Nullable com.google.ads.admanager.v1.NetworkName

Required. The parent resource where ContentBundles will be activated. Format: networks/{network_code}

names List<String>

Required. The resource names of the ContentBundles to activate. Format: networks/{network_code}/contentBundles/{content_bundle_id}

Returns
Type Description
BatchActivateContentBundlesResponse

batchActivateContentBundles(BatchActivateContentBundlesRequest request)

public final BatchActivateContentBundlesResponse batchActivateContentBundles(BatchActivateContentBundlesRequest request)

Activate a list of ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   BatchActivateContentBundlesRequest request =
       BatchActivateContentBundlesRequest.newBuilder()
           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
           .addAllNames(new ArrayList<String>())
           .build();
   BatchActivateContentBundlesResponse response =
       contentBundleServiceClient.batchActivateContentBundles(request);
 }
 
Parameter
Name Description
request BatchActivateContentBundlesRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
BatchActivateContentBundlesResponse

batchActivateContentBundles(String parent, List<String> names)

public final BatchActivateContentBundlesResponse batchActivateContentBundles(String parent, List<String> names)

Activate a list of ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   String parent = NetworkName.of("[NETWORK_CODE]").toString();
   List<String> names = new ArrayList<>();
   BatchActivateContentBundlesResponse response =
       contentBundleServiceClient.batchActivateContentBundles(parent, names);
 }
 
Parameters
Name Description
parent String

Required. The parent resource where ContentBundles will be activated. Format: networks/{network_code}

names List<String>

Required. The resource names of the ContentBundles to activate. Format: networks/{network_code}/contentBundles/{content_bundle_id}

Returns
Type Description
BatchActivateContentBundlesResponse

batchActivateContentBundlesCallable()

public final UnaryCallable<BatchActivateContentBundlesRequest,BatchActivateContentBundlesResponse> batchActivateContentBundlesCallable()

Activate a list of ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   BatchActivateContentBundlesRequest request =
       BatchActivateContentBundlesRequest.newBuilder()
           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
           .addAllNames(new ArrayList<String>())
           .build();
   ApiFuture<BatchActivateContentBundlesResponse> future =
       contentBundleServiceClient.batchActivateContentBundlesCallable().futureCall(request);
   // Do something.
   BatchActivateContentBundlesResponse response = future.get();
 }
 
Returns
Type Description
UnaryCallable<BatchActivateContentBundlesRequest,BatchActivateContentBundlesResponse>

batchDeactivateContentBundles(@Nullable NetworkName parent, List<String> names)

public final BatchDeactivateContentBundlesResponse batchDeactivateContentBundles(@Nullable NetworkName parent, List<String> names)

Deactivates a list of ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
   List<String> names = new ArrayList<>();
   BatchDeactivateContentBundlesResponse response =
       contentBundleServiceClient.batchDeactivateContentBundles(parent, names);
 }
 
Parameters
Name Description
parent @org.jspecify.annotations.Nullable com.google.ads.admanager.v1.NetworkName

Required. The parent resource where ContentBundles will be deactivated. Format: networks/{network_code}

names List<String>

Required. The resource names of the ContentBundles to deactivate. Format: networks/{network_code}/contentBundles/{content_bundle_id}

Returns
Type Description
BatchDeactivateContentBundlesResponse

batchDeactivateContentBundles(BatchDeactivateContentBundlesRequest request)

public final BatchDeactivateContentBundlesResponse batchDeactivateContentBundles(BatchDeactivateContentBundlesRequest request)

Deactivates a list of ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   BatchDeactivateContentBundlesRequest request =
       BatchDeactivateContentBundlesRequest.newBuilder()
           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
           .addAllNames(new ArrayList<String>())
           .build();
   BatchDeactivateContentBundlesResponse response =
       contentBundleServiceClient.batchDeactivateContentBundles(request);
 }
 
Parameter
Name Description
request BatchDeactivateContentBundlesRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
BatchDeactivateContentBundlesResponse

batchDeactivateContentBundles(String parent, List<String> names)

public final BatchDeactivateContentBundlesResponse batchDeactivateContentBundles(String parent, List<String> names)

Deactivates a list of ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   String parent = NetworkName.of("[NETWORK_CODE]").toString();
   List<String> names = new ArrayList<>();
   BatchDeactivateContentBundlesResponse response =
       contentBundleServiceClient.batchDeactivateContentBundles(parent, names);
 }
 
Parameters
Name Description
parent String

Required. The parent resource where ContentBundles will be deactivated. Format: networks/{network_code}

names List<String>

Required. The resource names of the ContentBundles to deactivate. Format: networks/{network_code}/contentBundles/{content_bundle_id}

Returns
Type Description
BatchDeactivateContentBundlesResponse

batchDeactivateContentBundlesCallable()

public final UnaryCallable<BatchDeactivateContentBundlesRequest,BatchDeactivateContentBundlesResponse> batchDeactivateContentBundlesCallable()

Deactivates a list of ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   BatchDeactivateContentBundlesRequest request =
       BatchDeactivateContentBundlesRequest.newBuilder()
           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
           .addAllNames(new ArrayList<String>())
           .build();
   ApiFuture<BatchDeactivateContentBundlesResponse> future =
       contentBundleServiceClient.batchDeactivateContentBundlesCallable().futureCall(request);
   // Do something.
   BatchDeactivateContentBundlesResponse response = future.get();
 }
 
Returns
Type Description
UnaryCallable<BatchDeactivateContentBundlesRequest,BatchDeactivateContentBundlesResponse>

close()

public final void close()

getContentBundle(@Nullable ContentBundleName name)

public final ContentBundle getContentBundle(@Nullable ContentBundleName name)

Retrieves a ContentBundle object.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   ContentBundleName name = ContentBundleName.of("[NETWORK_CODE]", "[CONTENT_BUNDLE]");
   ContentBundle response = contentBundleServiceClient.getContentBundle(name);
 }
 
Parameter
Name Description
name @org.jspecify.annotations.Nullable com.google.ads.admanager.v1.ContentBundleName

Required. The resource name of the ContentBundle. Format: networks/{network_code}/contentBundles/{content_bundle_id}

Returns
Type Description
ContentBundle

getContentBundle(GetContentBundleRequest request)

public final ContentBundle getContentBundle(GetContentBundleRequest request)

Retrieves a ContentBundle object.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   GetContentBundleRequest request =
       GetContentBundleRequest.newBuilder()
           .setName(ContentBundleName.of("[NETWORK_CODE]", "[CONTENT_BUNDLE]").toString())
           .build();
   ContentBundle response = contentBundleServiceClient.getContentBundle(request);
 }
 
Parameter
Name Description
request GetContentBundleRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
ContentBundle

getContentBundle(String name)

public final ContentBundle getContentBundle(String name)

Retrieves a ContentBundle object.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   String name = ContentBundleName.of("[NETWORK_CODE]", "[CONTENT_BUNDLE]").toString();
   ContentBundle response = contentBundleServiceClient.getContentBundle(name);
 }
 
Parameter
Name Description
name String

Required. The resource name of the ContentBundle. Format: networks/{network_code}/contentBundles/{content_bundle_id}

Returns
Type Description
ContentBundle

getContentBundleCallable()

public final UnaryCallable<GetContentBundleRequest,ContentBundle> getContentBundleCallable()

Retrieves a ContentBundle object.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   GetContentBundleRequest request =
       GetContentBundleRequest.newBuilder()
           .setName(ContentBundleName.of("[NETWORK_CODE]", "[CONTENT_BUNDLE]").toString())
           .build();
   ApiFuture<ContentBundle> future =
       contentBundleServiceClient.getContentBundleCallable().futureCall(request);
   // Do something.
   ContentBundle response = future.get();
 }
 
Returns
Type Description
UnaryCallable<GetContentBundleRequest,ContentBundle>

getSettings()

public final @Nullable ContentBundleServiceSettings getSettings()
Returns
Type Description
@org.jspecify.annotations.Nullable com.google.ads.admanager.v1.ContentBundleServiceSettings

getStub()

public ContentBundleServiceStub getStub()
Returns
Type Description
ContentBundleServiceStub

isShutdown()

public boolean isShutdown()
Returns
Type Description
boolean

isTerminated()

public boolean isTerminated()
Returns
Type Description
boolean

listContentBundles(@Nullable NetworkName parent)

public final ContentBundleServiceClient.ListContentBundlesPagedResponse listContentBundles(@Nullable NetworkName parent)

Lists ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   NetworkName parent = NetworkName.of("[NETWORK_CODE]");
   for (ContentBundle element :
       contentBundleServiceClient.listContentBundles(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
parent @org.jspecify.annotations.Nullable com.google.ads.admanager.v1.NetworkName

Required. The parent, which owns this collection of ContentBundles. Format: networks/{network_code}

Returns
Type Description
ContentBundleServiceClient.ListContentBundlesPagedResponse

listContentBundles(ListContentBundlesRequest request)

public final ContentBundleServiceClient.ListContentBundlesPagedResponse listContentBundles(ListContentBundlesRequest request)

Lists ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   ListContentBundlesRequest request =
       ListContentBundlesRequest.newBuilder()
           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setOrderBy("orderBy-1207110587")
           .setSkip(3532159)
           .build();
   for (ContentBundle element :
       contentBundleServiceClient.listContentBundles(request).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
request ListContentBundlesRequest

The request object containing all of the parameters for the API call.

Returns
Type Description
ContentBundleServiceClient.ListContentBundlesPagedResponse

listContentBundles(String parent)

public final ContentBundleServiceClient.ListContentBundlesPagedResponse listContentBundles(String parent)

Lists ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   String parent = NetworkName.of("[NETWORK_CODE]").toString();
   for (ContentBundle element :
       contentBundleServiceClient.listContentBundles(parent).iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Parameter
Name Description
parent String

Required. The parent, which owns this collection of ContentBundles. Format: networks/{network_code}

Returns
Type Description
ContentBundleServiceClient.ListContentBundlesPagedResponse

listContentBundlesCallable()

public final UnaryCallable<ListContentBundlesRequest,ListContentBundlesResponse> listContentBundlesCallable()

Lists ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   ListContentBundlesRequest request =
       ListContentBundlesRequest.newBuilder()
           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setOrderBy("orderBy-1207110587")
           .setSkip(3532159)
           .build();
   while (true) {
     ListContentBundlesResponse response =
         contentBundleServiceClient.listContentBundlesCallable().call(request);
     for (ContentBundle element : response.getContentBundlesList()) {
       // doThingsWith(element);
     }
     String nextPageToken = response.getNextPageToken();
     if (!Strings.isNullOrEmpty(nextPageToken)) {
       request = request.toBuilder().setPageToken(nextPageToken).build();
     } else {
       break;
     }
   }
 }
 
Returns
Type Description
UnaryCallable<ListContentBundlesRequest,ListContentBundlesResponse>

listContentBundlesPagedCallable()

public final UnaryCallable<ListContentBundlesRequest,ContentBundleServiceClient.ListContentBundlesPagedResponse> listContentBundlesPagedCallable()

Lists ContentBundle objects.

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 (ContentBundleServiceClient contentBundleServiceClient =
     ContentBundleServiceClient.create()) {
   ListContentBundlesRequest request =
       ListContentBundlesRequest.newBuilder()
           .setParent(NetworkName.of("[NETWORK_CODE]").toString())
           .setPageSize(883849137)
           .setPageToken("pageToken873572522")
           .setFilter("filter-1274492040")
           .setOrderBy("orderBy-1207110587")
           .setSkip(3532159)
           .build();
   ApiFuture<ContentBundle> future =
       contentBundleServiceClient.listContentBundlesPagedCallable().futureCall(request);
   // Do something.
   for (ContentBundle element : future.get().iterateAll()) {
     // doThingsWith(element);
   }
 }
 
Returns
Type Description
UnaryCallable<ListContentBundlesRequest,ListContentBundlesPagedResponse>

shutdown()

public void shutdown()

shutdownNow()

public void shutdownNow()