| GitHub Repository | Product Reference |
Service Description: Provides methods for handling ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
ContentLabelName name = ContentLabelName.of("[NETWORK_CODE]", "[CONTENT_LABEL]");
ContentLabel response = contentLabelServiceClient.getContentLabel(name);
}
Note: close() needs to be called on the ContentLabelServiceClient 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 |
|---|---|---|
GetContentLabel |
Retrieves a |
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.
|
ListContentLabels |
Lists |
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.
|
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 ContentLabelServiceSettings 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
ContentLabelServiceSettings contentLabelServiceSettings =
ContentLabelServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
ContentLabelServiceClient contentLabelServiceClient =
ContentLabelServiceClient.create(contentLabelServiceSettings);
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
ContentLabelServiceSettings contentLabelServiceSettings =
ContentLabelServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
ContentLabelServiceClient contentLabelServiceClient =
ContentLabelServiceClient.create(contentLabelServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
Static Methods
create()
public static final ContentLabelServiceClient create()Constructs an instance of ContentLabelServiceClient with default settings.
| Returns | |
|---|---|
| Type | Description |
ContentLabelServiceClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(ContentLabelServiceSettings settings)
public static final ContentLabelServiceClient create(ContentLabelServiceSettings settings)Constructs an instance of ContentLabelServiceClient, 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 |
ContentLabelServiceSettings |
| Returns | |
|---|---|
| Type | Description |
ContentLabelServiceClient |
|
| Exceptions | |
|---|---|
| Type | Description |
IOException |
|
create(ContentLabelServiceStub stub)
public static final ContentLabelServiceClient create(ContentLabelServiceStub stub)Constructs an instance of ContentLabelServiceClient, using the given stub for making calls. This is for advanced usage - prefer using create(ContentLabelServiceSettings).
| Parameter | |
|---|---|
| Name | Description |
stub |
ContentLabelServiceStub |
| Returns | |
|---|---|
| Type | Description |
ContentLabelServiceClient |
|
Constructors
ContentLabelServiceClient(ContentLabelServiceSettings settings)
protected ContentLabelServiceClient(ContentLabelServiceSettings settings)Constructs an instance of ContentLabelServiceClient, 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 |
ContentLabelServiceSettings |
ContentLabelServiceClient(ContentLabelServiceStub stub)
protected ContentLabelServiceClient(ContentLabelServiceStub stub)| Parameter | |
|---|---|
| Name | Description |
stub |
ContentLabelServiceStub |
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 |
|
close()
public final void close()getContentLabel(@Nullable ContentLabelName name)
public final ContentLabel getContentLabel(@Nullable ContentLabelName name)Retrieves a ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
ContentLabelName name = ContentLabelName.of("[NETWORK_CODE]", "[CONTENT_LABEL]");
ContentLabel response = contentLabelServiceClient.getContentLabel(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
@org.jspecify.annotations.Nullable com.google.ads.admanager.v1.ContentLabelNameRequired. The resource name of the ContentLabel. Format:
|
| Returns | |
|---|---|
| Type | Description |
ContentLabel |
|
getContentLabel(GetContentLabelRequest request)
public final ContentLabel getContentLabel(GetContentLabelRequest request)Retrieves a ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
GetContentLabelRequest request =
GetContentLabelRequest.newBuilder()
.setName(ContentLabelName.of("[NETWORK_CODE]", "[CONTENT_LABEL]").toString())
.build();
ContentLabel response = contentLabelServiceClient.getContentLabel(request);
}
| Parameter | |
|---|---|
| Name | Description |
request |
GetContentLabelRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ContentLabel |
|
getContentLabel(String name)
public final ContentLabel getContentLabel(String name)Retrieves a ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
String name = ContentLabelName.of("[NETWORK_CODE]", "[CONTENT_LABEL]").toString();
ContentLabel response = contentLabelServiceClient.getContentLabel(name);
}
| Parameter | |
|---|---|
| Name | Description |
name |
StringRequired. The resource name of the ContentLabel. Format:
|
| Returns | |
|---|---|
| Type | Description |
ContentLabel |
|
getContentLabelCallable()
public final UnaryCallable<GetContentLabelRequest,ContentLabel> getContentLabelCallable()Retrieves a ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
GetContentLabelRequest request =
GetContentLabelRequest.newBuilder()
.setName(ContentLabelName.of("[NETWORK_CODE]", "[CONTENT_LABEL]").toString())
.build();
ApiFuture<ContentLabel> future =
contentLabelServiceClient.getContentLabelCallable().futureCall(request);
// Do something.
ContentLabel response = future.get();
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<GetContentLabelRequest,ContentLabel> |
|
getSettings()
public final @Nullable ContentLabelServiceSettings getSettings()| Returns | |
|---|---|
| Type | Description |
@org.jspecify.annotations.Nullable com.google.ads.admanager.v1.ContentLabelServiceSettings |
|
getStub()
public ContentLabelServiceStub getStub()| Returns | |
|---|---|
| Type | Description |
ContentLabelServiceStub |
|
isShutdown()
public boolean isShutdown()| Returns | |
|---|---|
| Type | Description |
boolean |
|
isTerminated()
public boolean isTerminated()| Returns | |
|---|---|
| Type | Description |
boolean |
|
listContentLabels(@Nullable NetworkName parent)
public final ContentLabelServiceClient.ListContentLabelsPagedResponse listContentLabels(@Nullable NetworkName parent)Lists ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
NetworkName parent = NetworkName.of("[NETWORK_CODE]");
for (ContentLabel element :
contentLabelServiceClient.listContentLabels(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
@org.jspecify.annotations.Nullable com.google.ads.admanager.v1.NetworkNameRequired. The parent, which owns this collection of ContentLabels. Format:
|
| Returns | |
|---|---|
| Type | Description |
ContentLabelServiceClient.ListContentLabelsPagedResponse |
|
listContentLabels(ListContentLabelsRequest request)
public final ContentLabelServiceClient.ListContentLabelsPagedResponse listContentLabels(ListContentLabelsRequest request)Lists ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
ListContentLabelsRequest request =
ListContentLabelsRequest.newBuilder()
.setParent(NetworkName.of("[NETWORK_CODE]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.setSkip(3532159)
.build();
for (ContentLabel element :
contentLabelServiceClient.listContentLabels(request).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
request |
ListContentLabelsRequestThe request object containing all of the parameters for the API call. |
| Returns | |
|---|---|
| Type | Description |
ContentLabelServiceClient.ListContentLabelsPagedResponse |
|
listContentLabels(String parent)
public final ContentLabelServiceClient.ListContentLabelsPagedResponse listContentLabels(String parent)Lists ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
String parent = NetworkName.of("[NETWORK_CODE]").toString();
for (ContentLabel element :
contentLabelServiceClient.listContentLabels(parent).iterateAll()) {
// doThingsWith(element);
}
}
| Parameter | |
|---|---|
| Name | Description |
parent |
StringRequired. The parent, which owns this collection of ContentLabels. Format:
|
| Returns | |
|---|---|
| Type | Description |
ContentLabelServiceClient.ListContentLabelsPagedResponse |
|
listContentLabelsCallable()
public final UnaryCallable<ListContentLabelsRequest,ListContentLabelsResponse> listContentLabelsCallable()Lists ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
ListContentLabelsRequest request =
ListContentLabelsRequest.newBuilder()
.setParent(NetworkName.of("[NETWORK_CODE]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.setSkip(3532159)
.build();
while (true) {
ListContentLabelsResponse response =
contentLabelServiceClient.listContentLabelsCallable().call(request);
for (ContentLabel element : response.getContentLabelsList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListContentLabelsRequest,ListContentLabelsResponse> |
|
listContentLabelsPagedCallable()
public final UnaryCallable<ListContentLabelsRequest,ContentLabelServiceClient.ListContentLabelsPagedResponse> listContentLabelsPagedCallable()Lists ContentLabel 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 (ContentLabelServiceClient contentLabelServiceClient = ContentLabelServiceClient.create()) {
ListContentLabelsRequest request =
ListContentLabelsRequest.newBuilder()
.setParent(NetworkName.of("[NETWORK_CODE]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.setFilter("filter-1274492040")
.setOrderBy("orderBy-1207110587")
.setSkip(3532159)
.build();
ApiFuture<ContentLabel> future =
contentLabelServiceClient.listContentLabelsPagedCallable().futureCall(request);
// Do something.
for (ContentLabel element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
| Returns | |
|---|---|
| Type | Description |
UnaryCallable<ListContentLabelsRequest,ListContentLabelsPagedResponse> |
|
shutdown()
public void shutdown()shutdownNow()
public void shutdownNow()