@BetaApi @Generated(value="by gapic-generator-java") public class SampleQueryServiceClient 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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
SampleQueryName name =
SampleQueryName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]");
SampleQuery response = sampleQueryServiceClient.getSampleQuery(name);
}
Note: close() needs to be called on the SampleQueryServiceClient 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 |
|---|---|---|
GetSampleQuery |
Gets a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]. |
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.
|
ListSampleQueries |
Gets a list of [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s. |
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.
|
CreateSampleQuery |
Creates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery] |
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.
|
UpdateSampleQuery |
Updates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]. |
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.
|
DeleteSampleQuery |
Deletes a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]. |
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.
|
ImportSampleQueries |
Bulk import of multiple [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s. Sample queries that already exist may be deleted. Note: It is possible for a subset of the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s to be successfully imported. |
Request object method variants only take one parameter, a request object, which must be constructed before the call.
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 SampleQueryServiceSettings 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
SampleQueryServiceSettings sampleQueryServiceSettings =
SampleQueryServiceSettings.newBuilder()
.setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
.build();
SampleQueryServiceClient sampleQueryServiceClient =
SampleQueryServiceClient.create(sampleQueryServiceSettings);
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
SampleQueryServiceSettings sampleQueryServiceSettings =
SampleQueryServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
SampleQueryServiceClient sampleQueryServiceClient =
SampleQueryServiceClient.create(sampleQueryServiceSettings);
To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over the wire:
// 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
SampleQueryServiceSettings sampleQueryServiceSettings =
SampleQueryServiceSettings.newHttpJsonBuilder().build();
SampleQueryServiceClient sampleQueryServiceClient =
SampleQueryServiceClient.create(sampleQueryServiceSettings);
Please refer to the GitHub repository's samples for more quickstart code snippets.
| Modifier and Type | Class and Description |
|---|---|
static class |
SampleQueryServiceClient.ListSampleQueriesFixedSizeCollection |
static class |
SampleQueryServiceClient.ListSampleQueriesPage |
static class |
SampleQueryServiceClient.ListSampleQueriesPagedResponse |
| Modifier | Constructor and Description |
|---|---|
protected |
SampleQueryServiceClient(SampleQueryServiceSettings settings)
Constructs an instance of SampleQueryServiceClient, using the given settings.
|
protected |
SampleQueryServiceClient(SampleQueryServiceStub stub) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
awaitTermination(long duration,
TimeUnit unit) |
void |
close() |
static SampleQueryServiceClient |
create()
Constructs an instance of SampleQueryServiceClient with default settings.
|
static SampleQueryServiceClient |
create(SampleQueryServiceSettings settings)
Constructs an instance of SampleQueryServiceClient, using the given settings.
|
static SampleQueryServiceClient |
create(SampleQueryServiceStub stub)
Constructs an instance of SampleQueryServiceClient, using the given stub for making calls.
|
SampleQuery |
createSampleQuery(CreateSampleQueryRequest request)
Creates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
CreateSampleQueryRequest request =
CreateSampleQueryRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setSampleQuery(SampleQuery.newBuilder().build())
.setSampleQueryId("sampleQueryId1739022073")
.build();
SampleQuery response = sampleQueryServiceClient.createSampleQuery(request);
}
|
SampleQuery |
createSampleQuery(SampleQuerySetName parent,
SampleQuery sampleQuery,
String sampleQueryId)
Creates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
SampleQuerySetName parent =
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]");
SampleQuery sampleQuery = SampleQuery.newBuilder().build();
String sampleQueryId = "sampleQueryId1739022073";
SampleQuery response =
sampleQueryServiceClient.createSampleQuery(parent, sampleQuery, sampleQueryId);
}
|
SampleQuery |
createSampleQuery(String parent,
SampleQuery sampleQuery,
String sampleQueryId)
Creates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
String parent =
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString();
SampleQuery sampleQuery = SampleQuery.newBuilder().build();
String sampleQueryId = "sampleQueryId1739022073";
SampleQuery response =
sampleQueryServiceClient.createSampleQuery(parent, sampleQuery, sampleQueryId);
}
|
com.google.api.gax.rpc.UnaryCallable<CreateSampleQueryRequest,SampleQuery> |
createSampleQueryCallable()
Creates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
CreateSampleQueryRequest request =
CreateSampleQueryRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setSampleQuery(SampleQuery.newBuilder().build())
.setSampleQueryId("sampleQueryId1739022073")
.build();
ApiFuture
|
void |
deleteSampleQuery(DeleteSampleQueryRequest request)
Deletes a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
void |
deleteSampleQuery(SampleQueryName name)
Deletes a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
void |
deleteSampleQuery(String name)
Deletes a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
com.google.api.gax.rpc.UnaryCallable<DeleteSampleQueryRequest,com.google.protobuf.Empty> |
deleteSampleQueryCallable()
Deletes a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
com.google.api.gax.httpjson.longrunning.OperationsClient |
getHttpJsonOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
com.google.longrunning.OperationsClient |
getOperationsClient()
Returns the OperationsClient that can be used to query the status of a long-running operation
returned by another API method call.
|
SampleQuery |
getSampleQuery(GetSampleQueryRequest request)
Gets a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
SampleQuery |
getSampleQuery(SampleQueryName name)
Gets a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
SampleQuery |
getSampleQuery(String name)
Gets a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
com.google.api.gax.rpc.UnaryCallable<GetSampleQueryRequest,SampleQuery> |
getSampleQueryCallable()
Gets a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
SampleQueryServiceSettings |
getSettings() |
SampleQueryServiceStub |
getStub() |
com.google.api.gax.longrunning.OperationFuture<ImportSampleQueriesResponse,ImportSampleQueriesMetadata> |
importSampleQueriesAsync(ImportSampleQueriesRequest request)
Bulk import of multiple [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s.
|
com.google.api.gax.rpc.UnaryCallable<ImportSampleQueriesRequest,com.google.longrunning.Operation> |
importSampleQueriesCallable()
Bulk import of multiple [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s.
|
com.google.api.gax.rpc.OperationCallable<ImportSampleQueriesRequest,ImportSampleQueriesResponse,ImportSampleQueriesMetadata> |
importSampleQueriesOperationCallable()
Bulk import of multiple [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s.
|
boolean |
isShutdown() |
boolean |
isTerminated() |
SampleQueryServiceClient.ListSampleQueriesPagedResponse |
listSampleQueries(ListSampleQueriesRequest request)
Gets a list of [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s.
|
SampleQueryServiceClient.ListSampleQueriesPagedResponse |
listSampleQueries(SampleQuerySetName parent)
Gets a list of [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s.
|
SampleQueryServiceClient.ListSampleQueriesPagedResponse |
listSampleQueries(String parent)
Gets a list of [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s.
|
com.google.api.gax.rpc.UnaryCallable<ListSampleQueriesRequest,ListSampleQueriesResponse> |
listSampleQueriesCallable()
Gets a list of [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s.
|
com.google.api.gax.rpc.UnaryCallable<ListSampleQueriesRequest,SampleQueryServiceClient.ListSampleQueriesPagedResponse> |
listSampleQueriesPagedCallable()
Gets a list of [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s.
|
void |
shutdown() |
void |
shutdownNow() |
SampleQuery |
updateSampleQuery(SampleQuery sampleQuery,
com.google.protobuf.FieldMask updateMask)
Updates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
SampleQuery |
updateSampleQuery(UpdateSampleQueryRequest request)
Updates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
com.google.api.gax.rpc.UnaryCallable<UpdateSampleQueryRequest,SampleQuery> |
updateSampleQueryCallable()
Updates a [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery].
|
protected SampleQueryServiceClient(SampleQueryServiceSettings settings) throws IOException
IOExceptionprotected SampleQueryServiceClient(SampleQueryServiceStub stub)
public static final SampleQueryServiceClient create() throws IOException
IOExceptionpublic static final SampleQueryServiceClient create(SampleQueryServiceSettings settings) throws IOException
IOExceptionpublic static final SampleQueryServiceClient create(SampleQueryServiceStub stub)
public final SampleQueryServiceSettings getSettings()
public SampleQueryServiceStub getStub()
public final com.google.longrunning.OperationsClient getOperationsClient()
@BetaApi public final com.google.api.gax.httpjson.longrunning.OperationsClient getHttpJsonOperationsClient()
public final SampleQuery getSampleQuery(SampleQueryName name)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
SampleQueryName name =
SampleQueryName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]");
SampleQuery response = sampleQueryServiceClient.getSampleQuery(name);
}
name - Required. Full resource name of
[SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], such as
`projects/{project}/locations/{location}/sampleQuerySets/{sample_query_set}/sampleQueries/{sample_query}`.
If the caller does not have permission to access the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], regardless of whether or not it exists, a PERMISSION_DENIED error is returned.
If the requested [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery] does not exist, a NOT_FOUND error is returned.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final SampleQuery getSampleQuery(String name)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
String name =
SampleQueryName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]")
.toString();
SampleQuery response = sampleQueryServiceClient.getSampleQuery(name);
}
name - Required. Full resource name of
[SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], such as
`projects/{project}/locations/{location}/sampleQuerySets/{sample_query_set}/sampleQueries/{sample_query}`.
If the caller does not have permission to access the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], regardless of whether or not it exists, a PERMISSION_DENIED error is returned.
If the requested [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery] does not exist, a NOT_FOUND error is returned.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final SampleQuery getSampleQuery(GetSampleQueryRequest 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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
GetSampleQueryRequest request =
GetSampleQueryRequest.newBuilder()
.setName(
SampleQueryName.of(
"[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]")
.toString())
.build();
SampleQuery response = sampleQueryServiceClient.getSampleQuery(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<GetSampleQueryRequest,SampleQuery> getSampleQueryCallable()
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
GetSampleQueryRequest request =
GetSampleQueryRequest.newBuilder()
.setName(
SampleQueryName.of(
"[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]")
.toString())
.build();
ApiFuture<SampleQuery> future =
sampleQueryServiceClient.getSampleQueryCallable().futureCall(request);
// Do something.
SampleQuery response = future.get();
}
public final SampleQueryServiceClient.ListSampleQueriesPagedResponse listSampleQueries(SampleQuerySetName parent)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
SampleQuerySetName parent =
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]");
for (SampleQuery element : sampleQueryServiceClient.listSampleQueries(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The parent sample query set resource name, such as
`projects/{project}/locations/{location}/sampleQuerySets/{sampleQuerySet}`.
If the caller does not have permission to list [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s under this sample query set, regardless of whether or not this sample query set exists, a `PERMISSION_DENIED` error is returned.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final SampleQueryServiceClient.ListSampleQueriesPagedResponse listSampleQueries(String parent)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
String parent =
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString();
for (SampleQuery element : sampleQueryServiceClient.listSampleQueries(parent).iterateAll()) {
// doThingsWith(element);
}
}
parent - Required. The parent sample query set resource name, such as
`projects/{project}/locations/{location}/sampleQuerySets/{sampleQuerySet}`.
If the caller does not have permission to list [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s under this sample query set, regardless of whether or not this sample query set exists, a `PERMISSION_DENIED` error is returned.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final SampleQueryServiceClient.ListSampleQueriesPagedResponse listSampleQueries(ListSampleQueriesRequest 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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
ListSampleQueriesRequest request =
ListSampleQueriesRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
for (SampleQuery element : sampleQueryServiceClient.listSampleQueries(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<ListSampleQueriesRequest,SampleQueryServiceClient.ListSampleQueriesPagedResponse> listSampleQueriesPagedCallable()
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
ListSampleQueriesRequest request =
ListSampleQueriesRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
ApiFuture<SampleQuery> future =
sampleQueryServiceClient.listSampleQueriesPagedCallable().futureCall(request);
// Do something.
for (SampleQuery element : future.get().iterateAll()) {
// doThingsWith(element);
}
}
public final com.google.api.gax.rpc.UnaryCallable<ListSampleQueriesRequest,ListSampleQueriesResponse> listSampleQueriesCallable()
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
ListSampleQueriesRequest request =
ListSampleQueriesRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setPageSize(883849137)
.setPageToken("pageToken873572522")
.build();
while (true) {
ListSampleQueriesResponse response =
sampleQueryServiceClient.listSampleQueriesCallable().call(request);
for (SampleQuery element : response.getSampleQueriesList()) {
// doThingsWith(element);
}
String nextPageToken = response.getNextPageToken();
if (!Strings.isNullOrEmpty(nextPageToken)) {
request = request.toBuilder().setPageToken(nextPageToken).build();
} else {
break;
}
}
}
public final SampleQuery createSampleQuery(SampleQuerySetName parent, SampleQuery sampleQuery, String sampleQueryId)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
SampleQuerySetName parent =
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]");
SampleQuery sampleQuery = SampleQuery.newBuilder().build();
String sampleQueryId = "sampleQueryId1739022073";
SampleQuery response =
sampleQueryServiceClient.createSampleQuery(parent, sampleQuery, sampleQueryId);
}
parent - Required. The parent resource name, such as
`projects/{project}/locations/{location}/sampleQuerySets/{sampleQuerySet}`.sampleQuery - Required. The
[SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery] to create.sampleQueryId - Required. The ID to use for the
[SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], which will become the
final component of the
[SampleQuery.name][google.cloud.discoveryengine.v1alpha.SampleQuery.name].
If the caller does not have permission to create the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], regardless of whether or not it exists, a `PERMISSION_DENIED` error is returned.
This field must be unique among all [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s with the same [parent][google.cloud.discoveryengine.v1alpha.CreateSampleQueryRequest.parent]. Otherwise, an `ALREADY_EXISTS` error is returned.
This field must conform to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a length limit of 63 characters. Otherwise, an `INVALID_ARGUMENT` error is returned.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final SampleQuery createSampleQuery(String parent, SampleQuery sampleQuery, String sampleQueryId)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
String parent =
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString();
SampleQuery sampleQuery = SampleQuery.newBuilder().build();
String sampleQueryId = "sampleQueryId1739022073";
SampleQuery response =
sampleQueryServiceClient.createSampleQuery(parent, sampleQuery, sampleQueryId);
}
parent - Required. The parent resource name, such as
`projects/{project}/locations/{location}/sampleQuerySets/{sampleQuerySet}`.sampleQuery - Required. The
[SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery] to create.sampleQueryId - Required. The ID to use for the
[SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], which will become the
final component of the
[SampleQuery.name][google.cloud.discoveryengine.v1alpha.SampleQuery.name].
If the caller does not have permission to create the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], regardless of whether or not it exists, a `PERMISSION_DENIED` error is returned.
This field must be unique among all [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s with the same [parent][google.cloud.discoveryengine.v1alpha.CreateSampleQueryRequest.parent]. Otherwise, an `ALREADY_EXISTS` error is returned.
This field must conform to [RFC-1034](https://tools.ietf.org/html/rfc1034) standard with a length limit of 63 characters. Otherwise, an `INVALID_ARGUMENT` error is returned.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final SampleQuery createSampleQuery(CreateSampleQueryRequest 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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
CreateSampleQueryRequest request =
CreateSampleQueryRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setSampleQuery(SampleQuery.newBuilder().build())
.setSampleQueryId("sampleQueryId1739022073")
.build();
SampleQuery response = sampleQueryServiceClient.createSampleQuery(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<CreateSampleQueryRequest,SampleQuery> createSampleQueryCallable()
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
CreateSampleQueryRequest request =
CreateSampleQueryRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setSampleQuery(SampleQuery.newBuilder().build())
.setSampleQueryId("sampleQueryId1739022073")
.build();
ApiFuture<SampleQuery> future =
sampleQueryServiceClient.createSampleQueryCallable().futureCall(request);
// Do something.
SampleQuery response = future.get();
}
public final SampleQuery updateSampleQuery(SampleQuery sampleQuery, com.google.protobuf.FieldMask updateMask)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
SampleQuery sampleQuery = SampleQuery.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
SampleQuery response = sampleQueryServiceClient.updateSampleQuery(sampleQuery, updateMask);
}
sampleQuery - Required. The simple query to update.
If the caller does not have permission to update the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], regardless of whether or not it exists, a `PERMISSION_DENIED` error is returned.
If the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery] to update does not exist a `NOT_FOUND` error is returned.
updateMask - Indicates which fields in the provided imported 'simple query' to update. If
not set, will by default update all fields.com.google.api.gax.rpc.ApiException - if the remote call failspublic final SampleQuery updateSampleQuery(UpdateSampleQueryRequest 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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
UpdateSampleQueryRequest request =
UpdateSampleQueryRequest.newBuilder()
.setSampleQuery(SampleQuery.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
SampleQuery response = sampleQueryServiceClient.updateSampleQuery(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<UpdateSampleQueryRequest,SampleQuery> updateSampleQueryCallable()
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
UpdateSampleQueryRequest request =
UpdateSampleQueryRequest.newBuilder()
.setSampleQuery(SampleQuery.newBuilder().build())
.setUpdateMask(FieldMask.newBuilder().build())
.build();
ApiFuture<SampleQuery> future =
sampleQueryServiceClient.updateSampleQueryCallable().futureCall(request);
// Do something.
SampleQuery response = future.get();
}
public final void deleteSampleQuery(SampleQueryName name)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
SampleQueryName name =
SampleQueryName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]");
sampleQueryServiceClient.deleteSampleQuery(name);
}
name - Required. Full resource name of
[SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], such as
`projects/{project}/locations/{location}/sampleQuerySets/{sample_query_set}/sampleQueries/{sample_query}`.
If the caller does not have permission to delete the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], regardless of whether or not it exists, a `PERMISSION_DENIED` error is returned.
If the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery] to delete does not exist, a `NOT_FOUND` error is returned.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final void deleteSampleQuery(String name)
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
String name =
SampleQueryName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]")
.toString();
sampleQueryServiceClient.deleteSampleQuery(name);
}
name - Required. Full resource name of
[SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], such as
`projects/{project}/locations/{location}/sampleQuerySets/{sample_query_set}/sampleQueries/{sample_query}`.
If the caller does not have permission to delete the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery], regardless of whether or not it exists, a `PERMISSION_DENIED` error is returned.
If the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery] to delete does not exist, a `NOT_FOUND` error is returned.
com.google.api.gax.rpc.ApiException - if the remote call failspublic final void deleteSampleQuery(DeleteSampleQueryRequest 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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
DeleteSampleQueryRequest request =
DeleteSampleQueryRequest.newBuilder()
.setName(
SampleQueryName.of(
"[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]")
.toString())
.build();
sampleQueryServiceClient.deleteSampleQuery(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<DeleteSampleQueryRequest,com.google.protobuf.Empty> deleteSampleQueryCallable()
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
DeleteSampleQueryRequest request =
DeleteSampleQueryRequest.newBuilder()
.setName(
SampleQueryName.of(
"[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]", "[SAMPLE_QUERY]")
.toString())
.build();
ApiFuture<Empty> future =
sampleQueryServiceClient.deleteSampleQueryCallable().futureCall(request);
// Do something.
future.get();
}
public final com.google.api.gax.longrunning.OperationFuture<ImportSampleQueriesResponse,ImportSampleQueriesMetadata> importSampleQueriesAsync(ImportSampleQueriesRequest request)
Note: It is possible for a subset of the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s to be successfully imported.
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
ImportSampleQueriesRequest request =
ImportSampleQueriesRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setErrorConfig(ImportErrorConfig.newBuilder().build())
.build();
ImportSampleQueriesResponse response =
sampleQueryServiceClient.importSampleQueriesAsync(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<ImportSampleQueriesRequest,ImportSampleQueriesResponse,ImportSampleQueriesMetadata> importSampleQueriesOperationCallable()
Note: It is possible for a subset of the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s to be successfully imported.
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
ImportSampleQueriesRequest request =
ImportSampleQueriesRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setErrorConfig(ImportErrorConfig.newBuilder().build())
.build();
OperationFuture<ImportSampleQueriesResponse, ImportSampleQueriesMetadata> future =
sampleQueryServiceClient.importSampleQueriesOperationCallable().futureCall(request);
// Do something.
ImportSampleQueriesResponse response = future.get();
}
public final com.google.api.gax.rpc.UnaryCallable<ImportSampleQueriesRequest,com.google.longrunning.Operation> importSampleQueriesCallable()
Note: It is possible for a subset of the [SampleQuery][google.cloud.discoveryengine.v1alpha.SampleQuery]s to be successfully imported.
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 (SampleQueryServiceClient sampleQueryServiceClient = SampleQueryServiceClient.create()) {
ImportSampleQueriesRequest request =
ImportSampleQueriesRequest.newBuilder()
.setParent(
SampleQuerySetName.of("[PROJECT]", "[LOCATION]", "[SAMPLE_QUERY_SET]").toString())
.setErrorConfig(ImportErrorConfig.newBuilder().build())
.build();
ApiFuture<Operation> future =
sampleQueryServiceClient.importSampleQueriesCallable().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 © 2025 Google LLC. All rights reserved.