All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.dataplex.v1.MetadataServiceClient Maven / Gradle / Ivy

Go to download

Cloud Dataplex provides intelligent data fabric that enables organizations to centrally manage, monitor, and govern their data across data lakes, data warehouses, and data marts with consistent controls, providing access to trusted data and powering analytics at scale.

There is a newer version: 1.49.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.cloud.dataplex.v1;

import com.google.api.core.ApiFuture;
import com.google.api.core.ApiFutures;
import com.google.api.gax.core.BackgroundResource;
import com.google.api.gax.paging.AbstractFixedSizeCollection;
import com.google.api.gax.paging.AbstractPage;
import com.google.api.gax.paging.AbstractPagedListResponse;
import com.google.api.gax.rpc.PageContext;
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.dataplex.v1.stub.MetadataServiceStub;
import com.google.cloud.dataplex.v1.stub.MetadataServiceStubSettings;
import com.google.cloud.location.GetLocationRequest;
import com.google.cloud.location.ListLocationsRequest;
import com.google.cloud.location.ListLocationsResponse;
import com.google.cloud.location.Location;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.protobuf.Empty;
import java.io.IOException;
import java.util.List;
import java.util.concurrent.TimeUnit;
import javax.annotation.Generated;

// AUTO-GENERATED DOCUMENTATION AND CLASS.
/**
 * Service Description: Metadata service manages metadata resources such as tables, filesets and
 * partitions.
 *
 * 

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: * *

{@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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
 *   ZoneName parent = ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]");
 *   Entity entity = Entity.newBuilder().build();
 *   Entity response = metadataServiceClient.createEntity(parent, entity);
 * }
 * }
* *

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

* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Methods
MethodDescriptionMethod Variants

CreateEntity

Create a metadata entity.

*

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

*
    *
  • createEntity(CreateEntityRequest request) *

*

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

*
    *
  • createEntity(ZoneName parent, Entity entity) *

  • createEntity(String parent, Entity entity) *

*

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

*
    *
  • createEntityCallable() *

*

UpdateEntity

Update a metadata entity. Only supports full resource update.

*

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

*
    *
  • updateEntity(UpdateEntityRequest request) *

*

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

*
    *
  • updateEntityCallable() *

*

DeleteEntity

Delete a metadata entity.

*

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

*
    *
  • deleteEntity(DeleteEntityRequest request) *

*

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

*
    *
  • deleteEntity(EntityName name) *

  • deleteEntity(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.

*
    *
  • deleteEntityCallable() *

*

GetEntity

Get a metadata entity.

*

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

*
    *
  • getEntity(GetEntityRequest request) *

*

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

*
    *
  • getEntity(EntityName name) *

  • getEntity(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.

*
    *
  • getEntityCallable() *

*

ListEntities

List metadata entities in a zone.

*

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

*
    *
  • listEntities(ListEntitiesRequest request) *

*

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

*
    *
  • listEntities(ZoneName parent) *

  • listEntities(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.

*
    *
  • listEntitiesPagedCallable() *

  • listEntitiesCallable() *

*

CreatePartition

Create a metadata partition.

*

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

*
    *
  • createPartition(CreatePartitionRequest request) *

*

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

*
    *
  • createPartition(EntityName parent, Partition partition) *

  • createPartition(String parent, Partition partition) *

*

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

*
    *
  • createPartitionCallable() *

*

DeletePartition

Delete a metadata partition.

*

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

*
    *
  • deletePartition(DeletePartitionRequest request) *

*

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

*
    *
  • deletePartition(PartitionName name) *

  • deletePartition(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.

*
    *
  • deletePartitionCallable() *

*

GetPartition

Get a metadata partition of an entity.

*

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

*
    *
  • getPartition(GetPartitionRequest request) *

*

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

*
    *
  • getPartition(PartitionName name) *

  • getPartition(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.

*
    *
  • getPartitionCallable() *

*

ListPartitions

List metadata partitions of an entity.

*

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

*
    *
  • listPartitions(ListPartitionsRequest request) *

*

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

*
    *
  • listPartitions(EntityName parent) *

  • listPartitions(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.

*
    *
  • listPartitionsPagedCallable() *

  • listPartitionsCallable() *

*

ListLocations

Lists information about the supported locations for this service.

*

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

*
    *
  • listLocations(ListLocationsRequest request) *

*

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

*
    *
  • listLocationsPagedCallable() *

  • listLocationsCallable() *

*

GetLocation

Gets information about a location.

*

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

*
    *
  • getLocation(GetLocationRequest request) *

*

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

*
    *
  • getLocationCallable() *

*
* *

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 MetadataServiceSettings to * create(). For example: * *

To customize credentials: * *

{@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
 * MetadataServiceSettings metadataServiceSettings =
 *     MetadataServiceSettings.newBuilder()
 *         .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
 *         .build();
 * MetadataServiceClient metadataServiceClient =
 *     MetadataServiceClient.create(metadataServiceSettings);
 * }
* *

To customize the endpoint: * *

{@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
 * MetadataServiceSettings metadataServiceSettings =
 *     MetadataServiceSettings.newBuilder().setEndpoint(myEndpoint).build();
 * MetadataServiceClient metadataServiceClient =
 *     MetadataServiceClient.create(metadataServiceSettings);
 * }
* *

To use REST (HTTP1.1/JSON) transport (instead of gRPC) for sending and receiving requests over * the wire: * *

{@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
 * MetadataServiceSettings metadataServiceSettings =
 *     MetadataServiceSettings.newHttpJsonBuilder().build();
 * MetadataServiceClient metadataServiceClient =
 *     MetadataServiceClient.create(metadataServiceSettings);
 * }
* *

Please refer to the GitHub repository's samples for more quickstart code snippets. */ @Generated("by gapic-generator-java") public class MetadataServiceClient implements BackgroundResource { private final MetadataServiceSettings settings; private final MetadataServiceStub stub; /** Constructs an instance of MetadataServiceClient with default settings. */ public static final MetadataServiceClient create() throws IOException { return create(MetadataServiceSettings.newBuilder().build()); } /** * Constructs an instance of MetadataServiceClient, using the given settings. The channels are * created based on the settings passed in, or defaults for any settings that are not set. */ public static final MetadataServiceClient create(MetadataServiceSettings settings) throws IOException { return new MetadataServiceClient(settings); } /** * Constructs an instance of MetadataServiceClient, using the given stub for making calls. This is * for advanced usage - prefer using create(MetadataServiceSettings). */ public static final MetadataServiceClient create(MetadataServiceStub stub) { return new MetadataServiceClient(stub); } /** * Constructs an instance of MetadataServiceClient, 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. */ protected MetadataServiceClient(MetadataServiceSettings settings) throws IOException { this.settings = settings; this.stub = ((MetadataServiceStubSettings) settings.getStubSettings()).createStub(); } protected MetadataServiceClient(MetadataServiceStub stub) { this.settings = null; this.stub = stub; } public final MetadataServiceSettings getSettings() { return settings; } public MetadataServiceStub getStub() { return stub; } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Create a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ZoneName parent = ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]");
   *   Entity entity = Entity.newBuilder().build();
   *   Entity response = metadataServiceClient.createEntity(parent, entity);
   * }
   * }
* * @param parent Required. The resource name of the parent zone: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}`. * @param entity Required. Entity resource. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Entity createEntity(ZoneName parent, Entity entity) { CreateEntityRequest request = CreateEntityRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) .setEntity(entity) .build(); return createEntity(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Create a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   String parent = ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]").toString();
   *   Entity entity = Entity.newBuilder().build();
   *   Entity response = metadataServiceClient.createEntity(parent, entity);
   * }
   * }
* * @param parent Required. The resource name of the parent zone: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}`. * @param entity Required. Entity resource. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Entity createEntity(String parent, Entity entity) { CreateEntityRequest request = CreateEntityRequest.newBuilder().setParent(parent).setEntity(entity).build(); return createEntity(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Create a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   CreateEntityRequest request =
   *       CreateEntityRequest.newBuilder()
   *           .setParent(ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]").toString())
   *           .setEntity(Entity.newBuilder().build())
   *           .setValidateOnly(true)
   *           .build();
   *   Entity response = metadataServiceClient.createEntity(request);
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Entity createEntity(CreateEntityRequest request) { return createEntityCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Create a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   CreateEntityRequest request =
   *       CreateEntityRequest.newBuilder()
   *           .setParent(ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]").toString())
   *           .setEntity(Entity.newBuilder().build())
   *           .setValidateOnly(true)
   *           .build();
   *   ApiFuture future = metadataServiceClient.createEntityCallable().futureCall(request);
   *   // Do something.
   *   Entity response = future.get();
   * }
   * }
*/ public final UnaryCallable createEntityCallable() { return stub.createEntityCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Update a metadata entity. Only supports full resource update. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   UpdateEntityRequest request =
   *       UpdateEntityRequest.newBuilder()
   *           .setEntity(Entity.newBuilder().build())
   *           .setValidateOnly(true)
   *           .build();
   *   Entity response = metadataServiceClient.updateEntity(request);
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Entity updateEntity(UpdateEntityRequest request) { return updateEntityCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Update a metadata entity. Only supports full resource update. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   UpdateEntityRequest request =
   *       UpdateEntityRequest.newBuilder()
   *           .setEntity(Entity.newBuilder().build())
   *           .setValidateOnly(true)
   *           .build();
   *   ApiFuture future = metadataServiceClient.updateEntityCallable().futureCall(request);
   *   // Do something.
   *   Entity response = future.get();
   * }
   * }
*/ public final UnaryCallable updateEntityCallable() { return stub.updateEntityCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Delete a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   EntityName name = EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]");
   *   metadataServiceClient.deleteEntity(name);
   * }
   * }
* * @param name Required. The resource name of the entity: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteEntity(EntityName name) { DeleteEntityRequest request = DeleteEntityRequest.newBuilder().setName(name == null ? null : name.toString()).build(); deleteEntity(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Delete a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   String name =
   *       EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]").toString();
   *   metadataServiceClient.deleteEntity(name);
   * }
   * }
* * @param name Required. The resource name of the entity: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteEntity(String name) { DeleteEntityRequest request = DeleteEntityRequest.newBuilder().setName(name).build(); deleteEntity(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Delete a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   DeleteEntityRequest request =
   *       DeleteEntityRequest.newBuilder()
   *           .setName(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .setEtag("etag3123477")
   *           .build();
   *   metadataServiceClient.deleteEntity(request);
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deleteEntity(DeleteEntityRequest request) { deleteEntityCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Delete a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   DeleteEntityRequest request =
   *       DeleteEntityRequest.newBuilder()
   *           .setName(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .setEtag("etag3123477")
   *           .build();
   *   ApiFuture future = metadataServiceClient.deleteEntityCallable().futureCall(request);
   *   // Do something.
   *   future.get();
   * }
   * }
*/ public final UnaryCallable deleteEntityCallable() { return stub.deleteEntityCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Get a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   EntityName name = EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]");
   *   Entity response = metadataServiceClient.getEntity(name);
   * }
   * }
* * @param name Required. The resource name of the entity: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}.` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Entity getEntity(EntityName name) { GetEntityRequest request = GetEntityRequest.newBuilder().setName(name == null ? null : name.toString()).build(); return getEntity(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Get a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   String name =
   *       EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]").toString();
   *   Entity response = metadataServiceClient.getEntity(name);
   * }
   * }
* * @param name Required. The resource name of the entity: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}.` * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Entity getEntity(String name) { GetEntityRequest request = GetEntityRequest.newBuilder().setName(name).build(); return getEntity(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Get a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   GetEntityRequest request =
   *       GetEntityRequest.newBuilder()
   *           .setName(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .build();
   *   Entity response = metadataServiceClient.getEntity(request);
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Entity getEntity(GetEntityRequest request) { return getEntityCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Get a metadata entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   GetEntityRequest request =
   *       GetEntityRequest.newBuilder()
   *           .setName(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .build();
   *   ApiFuture future = metadataServiceClient.getEntityCallable().futureCall(request);
   *   // Do something.
   *   Entity response = future.get();
   * }
   * }
*/ public final UnaryCallable getEntityCallable() { return stub.getEntityCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata entities in a zone. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ZoneName parent = ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]");
   *   for (Entity element : metadataServiceClient.listEntities(parent).iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
* * @param parent Required. The resource name of the parent zone: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}`. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListEntitiesPagedResponse listEntities(ZoneName parent) { ListEntitiesRequest request = ListEntitiesRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) .build(); return listEntities(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata entities in a zone. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   String parent = ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]").toString();
   *   for (Entity element : metadataServiceClient.listEntities(parent).iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
* * @param parent Required. The resource name of the parent zone: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}`. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListEntitiesPagedResponse listEntities(String parent) { ListEntitiesRequest request = ListEntitiesRequest.newBuilder().setParent(parent).build(); return listEntities(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata entities in a zone. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListEntitiesRequest request =
   *       ListEntitiesRequest.newBuilder()
   *           .setParent(ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]").toString())
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .setFilter("filter-1274492040")
   *           .build();
   *   for (Entity element : metadataServiceClient.listEntities(request).iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListEntitiesPagedResponse listEntities(ListEntitiesRequest request) { return listEntitiesPagedCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata entities in a zone. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListEntitiesRequest request =
   *       ListEntitiesRequest.newBuilder()
   *           .setParent(ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]").toString())
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .setFilter("filter-1274492040")
   *           .build();
   *   ApiFuture future =
   *       metadataServiceClient.listEntitiesPagedCallable().futureCall(request);
   *   // Do something.
   *   for (Entity element : future.get().iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
*/ public final UnaryCallable listEntitiesPagedCallable() { return stub.listEntitiesPagedCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata entities in a zone. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListEntitiesRequest request =
   *       ListEntitiesRequest.newBuilder()
   *           .setParent(ZoneName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]").toString())
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .setFilter("filter-1274492040")
   *           .build();
   *   while (true) {
   *     ListEntitiesResponse response = metadataServiceClient.listEntitiesCallable().call(request);
   *     for (Entity element : response.getEntitiesList()) {
   *       // doThingsWith(element);
   *     }
   *     String nextPageToken = response.getNextPageToken();
   *     if (!Strings.isNullOrEmpty(nextPageToken)) {
   *       request = request.toBuilder().setPageToken(nextPageToken).build();
   *     } else {
   *       break;
   *     }
   *   }
   * }
   * }
*/ public final UnaryCallable listEntitiesCallable() { return stub.listEntitiesCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Create a metadata partition. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   EntityName parent = EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]");
   *   Partition partition = Partition.newBuilder().build();
   *   Partition response = metadataServiceClient.createPartition(parent, partition);
   * }
   * }
* * @param parent Required. The resource name of the parent zone: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`. * @param partition Required. Partition resource. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Partition createPartition(EntityName parent, Partition partition) { CreatePartitionRequest request = CreatePartitionRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) .setPartition(partition) .build(); return createPartition(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Create a metadata partition. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   String parent =
   *       EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]").toString();
   *   Partition partition = Partition.newBuilder().build();
   *   Partition response = metadataServiceClient.createPartition(parent, partition);
   * }
   * }
* * @param parent Required. The resource name of the parent zone: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`. * @param partition Required. Partition resource. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Partition createPartition(String parent, Partition partition) { CreatePartitionRequest request = CreatePartitionRequest.newBuilder().setParent(parent).setPartition(partition).build(); return createPartition(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Create a metadata partition. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   CreatePartitionRequest request =
   *       CreatePartitionRequest.newBuilder()
   *           .setParent(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .setPartition(Partition.newBuilder().build())
   *           .setValidateOnly(true)
   *           .build();
   *   Partition response = metadataServiceClient.createPartition(request);
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Partition createPartition(CreatePartitionRequest request) { return createPartitionCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Create a metadata partition. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   CreatePartitionRequest request =
   *       CreatePartitionRequest.newBuilder()
   *           .setParent(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .setPartition(Partition.newBuilder().build())
   *           .setValidateOnly(true)
   *           .build();
   *   ApiFuture future =
   *       metadataServiceClient.createPartitionCallable().futureCall(request);
   *   // Do something.
   *   Partition response = future.get();
   * }
   * }
*/ public final UnaryCallable createPartitionCallable() { return stub.createPartitionCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Delete a metadata partition. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   PartitionName name =
   *       PartitionName.of(
   *           "[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]");
   *   metadataServiceClient.deletePartition(name);
   * }
   * }
* * @param name Required. The resource name of the partition. format: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}/partitions/{partition_value_path}`. * The {partition_value_path} segment consists of an ordered sequence of partition values * separated by "/". All values must be provided. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deletePartition(PartitionName name) { DeletePartitionRequest request = DeletePartitionRequest.newBuilder().setName(name == null ? null : name.toString()).build(); deletePartition(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Delete a metadata partition. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   String name =
   *       PartitionName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]")
   *           .toString();
   *   metadataServiceClient.deletePartition(name);
   * }
   * }
* * @param name Required. The resource name of the partition. format: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}/partitions/{partition_value_path}`. * The {partition_value_path} segment consists of an ordered sequence of partition values * separated by "/". All values must be provided. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deletePartition(String name) { DeletePartitionRequest request = DeletePartitionRequest.newBuilder().setName(name).build(); deletePartition(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Delete a metadata partition. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   DeletePartitionRequest request =
   *       DeletePartitionRequest.newBuilder()
   *           .setName(
   *               PartitionName.of(
   *                       "[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]")
   *                   .toString())
   *           .setEtag("etag3123477")
   *           .build();
   *   metadataServiceClient.deletePartition(request);
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final void deletePartition(DeletePartitionRequest request) { deletePartitionCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Delete a metadata partition. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   DeletePartitionRequest request =
   *       DeletePartitionRequest.newBuilder()
   *           .setName(
   *               PartitionName.of(
   *                       "[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]")
   *                   .toString())
   *           .setEtag("etag3123477")
   *           .build();
   *   ApiFuture future = metadataServiceClient.deletePartitionCallable().futureCall(request);
   *   // Do something.
   *   future.get();
   * }
   * }
*/ public final UnaryCallable deletePartitionCallable() { return stub.deletePartitionCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Get a metadata partition of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   PartitionName name =
   *       PartitionName.of(
   *           "[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]");
   *   Partition response = metadataServiceClient.getPartition(name);
   * }
   * }
* * @param name Required. The resource name of the partition: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}/partitions/{partition_value_path}`. * The {partition_value_path} segment consists of an ordered sequence of partition values * separated by "/". All values must be provided. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Partition getPartition(PartitionName name) { GetPartitionRequest request = GetPartitionRequest.newBuilder().setName(name == null ? null : name.toString()).build(); return getPartition(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Get a metadata partition of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   String name =
   *       PartitionName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]")
   *           .toString();
   *   Partition response = metadataServiceClient.getPartition(name);
   * }
   * }
* * @param name Required. The resource name of the partition: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}/partitions/{partition_value_path}`. * The {partition_value_path} segment consists of an ordered sequence of partition values * separated by "/". All values must be provided. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Partition getPartition(String name) { GetPartitionRequest request = GetPartitionRequest.newBuilder().setName(name).build(); return getPartition(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Get a metadata partition of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   GetPartitionRequest request =
   *       GetPartitionRequest.newBuilder()
   *           .setName(
   *               PartitionName.of(
   *                       "[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]")
   *                   .toString())
   *           .build();
   *   Partition response = metadataServiceClient.getPartition(request);
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Partition getPartition(GetPartitionRequest request) { return getPartitionCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Get a metadata partition of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   GetPartitionRequest request =
   *       GetPartitionRequest.newBuilder()
   *           .setName(
   *               PartitionName.of(
   *                       "[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]", "[PARTITION]")
   *                   .toString())
   *           .build();
   *   ApiFuture future =
   *       metadataServiceClient.getPartitionCallable().futureCall(request);
   *   // Do something.
   *   Partition response = future.get();
   * }
   * }
*/ public final UnaryCallable getPartitionCallable() { return stub.getPartitionCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata partitions of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   EntityName parent = EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]");
   *   for (Partition element : metadataServiceClient.listPartitions(parent).iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
* * @param parent Required. The resource name of the parent entity: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListPartitionsPagedResponse listPartitions(EntityName parent) { ListPartitionsRequest request = ListPartitionsRequest.newBuilder() .setParent(parent == null ? null : parent.toString()) .build(); return listPartitions(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata partitions of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   String parent =
   *       EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]").toString();
   *   for (Partition element : metadataServiceClient.listPartitions(parent).iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
* * @param parent Required. The resource name of the parent entity: * `projects/{project_number}/locations/{location_id}/lakes/{lake_id}/zones/{zone_id}/entities/{entity_id}`. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListPartitionsPagedResponse listPartitions(String parent) { ListPartitionsRequest request = ListPartitionsRequest.newBuilder().setParent(parent).build(); return listPartitions(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata partitions of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListPartitionsRequest request =
   *       ListPartitionsRequest.newBuilder()
   *           .setParent(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .setFilter("filter-1274492040")
   *           .build();
   *   for (Partition element : metadataServiceClient.listPartitions(request).iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListPartitionsPagedResponse listPartitions(ListPartitionsRequest request) { return listPartitionsPagedCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata partitions of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListPartitionsRequest request =
   *       ListPartitionsRequest.newBuilder()
   *           .setParent(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .setFilter("filter-1274492040")
   *           .build();
   *   ApiFuture future =
   *       metadataServiceClient.listPartitionsPagedCallable().futureCall(request);
   *   // Do something.
   *   for (Partition element : future.get().iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
*/ public final UnaryCallable listPartitionsPagedCallable() { return stub.listPartitionsPagedCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * List metadata partitions of an entity. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListPartitionsRequest request =
   *       ListPartitionsRequest.newBuilder()
   *           .setParent(
   *               EntityName.of("[PROJECT]", "[LOCATION]", "[LAKE]", "[ZONE]", "[ENTITY]")
   *                   .toString())
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .setFilter("filter-1274492040")
   *           .build();
   *   while (true) {
   *     ListPartitionsResponse response =
   *         metadataServiceClient.listPartitionsCallable().call(request);
   *     for (Partition element : response.getPartitionsList()) {
   *       // doThingsWith(element);
   *     }
   *     String nextPageToken = response.getNextPageToken();
   *     if (!Strings.isNullOrEmpty(nextPageToken)) {
   *       request = request.toBuilder().setPageToken(nextPageToken).build();
   *     } else {
   *       break;
   *     }
   *   }
   * }
   * }
*/ public final UnaryCallable listPartitionsCallable() { return stub.listPartitionsCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Lists information about the supported locations for this service. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListLocationsRequest request =
   *       ListLocationsRequest.newBuilder()
   *           .setName("name3373707")
   *           .setFilter("filter-1274492040")
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .build();
   *   for (Location element : metadataServiceClient.listLocations(request).iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final ListLocationsPagedResponse listLocations(ListLocationsRequest request) { return listLocationsPagedCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Lists information about the supported locations for this service. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListLocationsRequest request =
   *       ListLocationsRequest.newBuilder()
   *           .setName("name3373707")
   *           .setFilter("filter-1274492040")
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .build();
   *   ApiFuture future =
   *       metadataServiceClient.listLocationsPagedCallable().futureCall(request);
   *   // Do something.
   *   for (Location element : future.get().iterateAll()) {
   *     // doThingsWith(element);
   *   }
   * }
   * }
*/ public final UnaryCallable listLocationsPagedCallable() { return stub.listLocationsPagedCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Lists information about the supported locations for this service. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   ListLocationsRequest request =
   *       ListLocationsRequest.newBuilder()
   *           .setName("name3373707")
   *           .setFilter("filter-1274492040")
   *           .setPageSize(883849137)
   *           .setPageToken("pageToken873572522")
   *           .build();
   *   while (true) {
   *     ListLocationsResponse response =
   *         metadataServiceClient.listLocationsCallable().call(request);
   *     for (Location element : response.getLocationsList()) {
   *       // doThingsWith(element);
   *     }
   *     String nextPageToken = response.getNextPageToken();
   *     if (!Strings.isNullOrEmpty(nextPageToken)) {
   *       request = request.toBuilder().setPageToken(nextPageToken).build();
   *     } else {
   *       break;
   *     }
   *   }
   * }
   * }
*/ public final UnaryCallable listLocationsCallable() { return stub.listLocationsCallable(); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Gets information about a location. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   *   Location response = metadataServiceClient.getLocation(request);
   * }
   * }
* * @param request The request object containing all of the parameters for the API call. * @throws com.google.api.gax.rpc.ApiException if the remote call fails */ public final Location getLocation(GetLocationRequest request) { return getLocationCallable().call(request); } // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Gets information about a location. * *

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 (MetadataServiceClient metadataServiceClient = MetadataServiceClient.create()) {
   *   GetLocationRequest request = GetLocationRequest.newBuilder().setName("name3373707").build();
   *   ApiFuture future = metadataServiceClient.getLocationCallable().futureCall(request);
   *   // Do something.
   *   Location response = future.get();
   * }
   * }
*/ public final UnaryCallable getLocationCallable() { return stub.getLocationCallable(); } @Override public final void close() { stub.close(); } @Override public void shutdown() { stub.shutdown(); } @Override public boolean isShutdown() { return stub.isShutdown(); } @Override public boolean isTerminated() { return stub.isTerminated(); } @Override public void shutdownNow() { stub.shutdownNow(); } @Override public boolean awaitTermination(long duration, TimeUnit unit) throws InterruptedException { return stub.awaitTermination(duration, unit); } public static class ListEntitiesPagedResponse extends AbstractPagedListResponse< ListEntitiesRequest, ListEntitiesResponse, Entity, ListEntitiesPage, ListEntitiesFixedSizeCollection> { public static ApiFuture createAsync( PageContext context, ApiFuture futureResponse) { ApiFuture futurePage = ListEntitiesPage.createEmptyPage().createPageAsync(context, futureResponse); return ApiFutures.transform( futurePage, input -> new ListEntitiesPagedResponse(input), MoreExecutors.directExecutor()); } private ListEntitiesPagedResponse(ListEntitiesPage page) { super(page, ListEntitiesFixedSizeCollection.createEmptyCollection()); } } public static class ListEntitiesPage extends AbstractPage { private ListEntitiesPage( PageContext context, ListEntitiesResponse response) { super(context, response); } private static ListEntitiesPage createEmptyPage() { return new ListEntitiesPage(null, null); } @Override protected ListEntitiesPage createPage( PageContext context, ListEntitiesResponse response) { return new ListEntitiesPage(context, response); } @Override public ApiFuture createPageAsync( PageContext context, ApiFuture futureResponse) { return super.createPageAsync(context, futureResponse); } } public static class ListEntitiesFixedSizeCollection extends AbstractFixedSizeCollection< ListEntitiesRequest, ListEntitiesResponse, Entity, ListEntitiesPage, ListEntitiesFixedSizeCollection> { private ListEntitiesFixedSizeCollection(List pages, int collectionSize) { super(pages, collectionSize); } private static ListEntitiesFixedSizeCollection createEmptyCollection() { return new ListEntitiesFixedSizeCollection(null, 0); } @Override protected ListEntitiesFixedSizeCollection createCollection( List pages, int collectionSize) { return new ListEntitiesFixedSizeCollection(pages, collectionSize); } } public static class ListPartitionsPagedResponse extends AbstractPagedListResponse< ListPartitionsRequest, ListPartitionsResponse, Partition, ListPartitionsPage, ListPartitionsFixedSizeCollection> { public static ApiFuture createAsync( PageContext context, ApiFuture futureResponse) { ApiFuture futurePage = ListPartitionsPage.createEmptyPage().createPageAsync(context, futureResponse); return ApiFutures.transform( futurePage, input -> new ListPartitionsPagedResponse(input), MoreExecutors.directExecutor()); } private ListPartitionsPagedResponse(ListPartitionsPage page) { super(page, ListPartitionsFixedSizeCollection.createEmptyCollection()); } } public static class ListPartitionsPage extends AbstractPage< ListPartitionsRequest, ListPartitionsResponse, Partition, ListPartitionsPage> { private ListPartitionsPage( PageContext context, ListPartitionsResponse response) { super(context, response); } private static ListPartitionsPage createEmptyPage() { return new ListPartitionsPage(null, null); } @Override protected ListPartitionsPage createPage( PageContext context, ListPartitionsResponse response) { return new ListPartitionsPage(context, response); } @Override public ApiFuture createPageAsync( PageContext context, ApiFuture futureResponse) { return super.createPageAsync(context, futureResponse); } } public static class ListPartitionsFixedSizeCollection extends AbstractFixedSizeCollection< ListPartitionsRequest, ListPartitionsResponse, Partition, ListPartitionsPage, ListPartitionsFixedSizeCollection> { private ListPartitionsFixedSizeCollection(List pages, int collectionSize) { super(pages, collectionSize); } private static ListPartitionsFixedSizeCollection createEmptyCollection() { return new ListPartitionsFixedSizeCollection(null, 0); } @Override protected ListPartitionsFixedSizeCollection createCollection( List pages, int collectionSize) { return new ListPartitionsFixedSizeCollection(pages, collectionSize); } } public static class ListLocationsPagedResponse extends AbstractPagedListResponse< ListLocationsRequest, ListLocationsResponse, Location, ListLocationsPage, ListLocationsFixedSizeCollection> { public static ApiFuture createAsync( PageContext context, ApiFuture futureResponse) { ApiFuture futurePage = ListLocationsPage.createEmptyPage().createPageAsync(context, futureResponse); return ApiFutures.transform( futurePage, input -> new ListLocationsPagedResponse(input), MoreExecutors.directExecutor()); } private ListLocationsPagedResponse(ListLocationsPage page) { super(page, ListLocationsFixedSizeCollection.createEmptyCollection()); } } public static class ListLocationsPage extends AbstractPage< ListLocationsRequest, ListLocationsResponse, Location, ListLocationsPage> { private ListLocationsPage( PageContext context, ListLocationsResponse response) { super(context, response); } private static ListLocationsPage createEmptyPage() { return new ListLocationsPage(null, null); } @Override protected ListLocationsPage createPage( PageContext context, ListLocationsResponse response) { return new ListLocationsPage(context, response); } @Override public ApiFuture createPageAsync( PageContext context, ApiFuture futureResponse) { return super.createPageAsync(context, futureResponse); } } public static class ListLocationsFixedSizeCollection extends AbstractFixedSizeCollection< ListLocationsRequest, ListLocationsResponse, Location, ListLocationsPage, ListLocationsFixedSizeCollection> { private ListLocationsFixedSizeCollection(List pages, int collectionSize) { super(pages, collectionSize); } private static ListLocationsFixedSizeCollection createEmptyCollection() { return new ListLocationsFixedSizeCollection(null, 0); } @Override protected ListLocationsFixedSizeCollection createCollection( List pages, int collectionSize) { return new ListLocationsFixedSizeCollection(pages, collectionSize); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy