This will register Bigtable client relevant {@link io.opencensus.stats.View}s. When coupled @@ -179,7 +180,7 @@ public static Builder newBuilderForEmulator(String hostname, int port) { * BigtableDataSettings.enableOpenCensusStats(); * } */ - @BetaApi("OpenCensus stats integration is currently unstable and may change in the future") + @Deprecated public static void enableOpenCensusStats() { com.google.cloud.bigtable.data.v2.stub.metrics.RpcViews.registerBigtableClientViews(); // TODO(igorbernstein): Enable grpc views once we upgrade to grpc-java 1.24.0 @@ -188,15 +189,14 @@ public static void enableOpenCensusStats() { } /** - * Enables OpenCensus GFE metric aggregations. - * - *
This will register views for gfe_latency and gfe_header_missing_count metrics. - * - *
gfe_latency measures the latency between Google's network receives an RPC and reads back the - * first byte of the response. gfe_header_missing_count is a counter of the number of RPC - * responses received without the server-timing header. + * @deprecated OpenCensus support is deprecated and will be removed in a future version Enables + * OpenCensus GFE metric aggregations. + *
This will register views for gfe_latency and gfe_header_missing_count metrics. + *
gfe_latency measures the latency between Google's network receives an RPC and reads back
+ * the first byte of the response. gfe_header_missing_count is a counter of the number of RPC
+ * responses received without the server-timing header.
*/
- @BetaApi("OpenCensus stats integration is currently unstable and may change in the future")
+ @Deprecated
public static void enableGfeOpenCensusStats() {
com.google.cloud.bigtable.data.v2.stub.metrics.RpcViews.registerBigtableClientGfeViews();
}
@@ -326,6 +326,7 @@ public Builder toBuilder() {
/** Builder for BigtableDataSettings. */
public static class Builder {
private final EnhancedBigtableStubSettings.Builder stubSettings;
+
/**
* Initializes a new Builder with sane defaults for all settings.
*
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/NameUtil.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/NameUtil.java
index 27a7e4f87d..575298b5c6 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/NameUtil.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/NameUtil.java
@@ -122,7 +122,8 @@ public static TargetId extractTargetId(
@Nonnull String materializedViewName) {
if (tableName.isEmpty() && authorizedViewName.isEmpty() && materializedViewName.isEmpty()) {
throw new IllegalArgumentException(
- "Either table name, authorized view name or materialized view name must be specified. Table name: "
+ "Either table name, authorized view name or materialized view name must be specified."
+ + " Table name: "
+ tableName
+ ", authorized view name: "
+ authorizedViewName
@@ -141,7 +142,8 @@ public static TargetId extractTargetId(
}
if (names > 1) {
throw new IllegalArgumentException(
- "Only one of table name, authorized view name and materialized view name can be specified at the same time. Table name: "
+ "Only one of table name, authorized view name and materialized view name can be specified"
+ + " at the same time. Table name: "
+ tableName
+ ", authorized view name: "
+ authorizedViewName
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/PreparedStatementImpl.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/PreparedStatementImpl.java
index e6690d5a8c..2e5c0d44cd 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/PreparedStatementImpl.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/PreparedStatementImpl.java
@@ -88,7 +88,8 @@ public BoundStatement.Builder bind() {
public void assertUsingSameStub(EnhancedBigtableStub stub) {
Preconditions.checkArgument(
this.stub == stub,
- "executeQuery must be called from the same client instance that created the PreparedStatement being used.");
+ "executeQuery must be called from the same client instance that created the"
+ + " PreparedStatement being used.");
}
/**
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/RegexUtil.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/RegexUtil.java
index c348ec7408..a838b4fb51 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/RegexUtil.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/internal/RegexUtil.java
@@ -40,6 +40,7 @@ private RegexUtil() {}
public static String literalRegex(final String value) {
return literalRegex(ByteString.copyFromUtf8(value)).toStringUtf8();
}
+
/** Converts the value to a quoted regular expression. */
public static ByteString literalRegex(ByteString value) {
ByteString.Output output = ByteString.newOutput(value.size() * 2);
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/BulkMutation.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/BulkMutation.java
index f6a09d0b6d..1233589104 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/BulkMutation.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/BulkMutation.java
@@ -43,7 +43,9 @@ public final class BulkMutation implements Serializable, Cloneable {
private long mutationCountSum = 0;
- /** @deprecated Please use {@link BulkMutation#create(TargetId)} instead. */
+ /**
+ * @deprecated Please use {@link BulkMutation#create(TargetId)} instead.
+ */
@Deprecated
public static BulkMutation create(String tableId) {
return new BulkMutation(TableId.of(tableId));
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ConditionalRowMutation.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ConditionalRowMutation.java
index 14841f9f4d..aa3d17096a 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ConditionalRowMutation.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ConditionalRowMutation.java
@@ -44,7 +44,9 @@ private ConditionalRowMutation(TargetId targetId, ByteString rowKey) {
builder.setRowKey(rowKey);
}
- /** @deprecated Please use {@link ConditionalRowMutation#create(TargetId, String)} instead. */
+ /**
+ * @deprecated Please use {@link ConditionalRowMutation#create(TargetId, String)} instead.
+ */
@Deprecated
public static ConditionalRowMutation create(String tableId, String rowKey) {
return create(tableId, ByteString.copyFromUtf8(rowKey));
@@ -60,7 +62,9 @@ public static ConditionalRowMutation create(TargetId targetId, String rowKey) {
return create(targetId, ByteString.copyFromUtf8(rowKey));
}
- /** @deprecated Please use {@link ConditionalRowMutation#create(TargetId, ByteString)} instead. */
+ /**
+ * @deprecated Please use {@link ConditionalRowMutation#create(TargetId, ByteString)} instead.
+ */
@Deprecated
public static ConditionalRowMutation create(String tableId, ByteString rowKey) {
Validations.validateTableId(tableId);
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/DefaultChangeStreamRecordAdapter.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/DefaultChangeStreamRecordAdapter.java
index 54bf05cd7d..ffed83e6f9 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/DefaultChangeStreamRecordAdapter.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/DefaultChangeStreamRecordAdapter.java
@@ -94,7 +94,8 @@ public ChangeStreamRecord onHeartbeat(ReadChangeStreamResponse.Heartbeat heartbe
public ChangeStreamRecord onCloseStream(ReadChangeStreamResponse.CloseStream closeStream) {
Preconditions.checkState(
this.changeStreamMutationBuilder == null,
- "Can not create a CloseStream when there is an existing ChangeStreamMutation being built.");
+ "Can not create a CloseStream when there is an existing ChangeStreamMutation being"
+ + " built.");
return CloseStream.fromProto(closeStream);
}
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java
index 63ec9c1316..3708c25def 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/Query.java
@@ -50,7 +50,9 @@ public final class Query implements Serializable {
private final TargetId targetId;
private transient ReadRowsRequest.Builder builder = ReadRowsRequest.newBuilder();
- /** @deprecated Please use {@link Query#create(TargetId)} instead. */
+ /**
+ * @deprecated Please use {@link Query#create(TargetId)} instead.
+ */
@Deprecated
public static Query create(String tableId) {
return new Query(TableId.of(tableId));
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ReadModifyWriteRow.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ReadModifyWriteRow.java
index 554a0268b9..f51635f546 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ReadModifyWriteRow.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/ReadModifyWriteRow.java
@@ -45,7 +45,9 @@ private ReadModifyWriteRow(TargetId targetId, ByteString key) {
builder.setRowKey(key);
}
- /** @deprecated Please use {@link ReadModifyWriteRow#create(TargetId, String)} instead. */
+ /**
+ * @deprecated Please use {@link ReadModifyWriteRow#create(TargetId, String)} instead.
+ */
@Deprecated
public static ReadModifyWriteRow create(String tableId, String key) {
Preconditions.checkNotNull(key, "key can't be null.");
@@ -62,7 +64,9 @@ public static ReadModifyWriteRow create(TargetId targetId, String key) {
return new ReadModifyWriteRow(targetId, ByteString.copyFromUtf8(key));
}
- /** @deprecated Please use {@link ReadModifyWriteRow#create(TargetId, ByteString)} instead. */
+ /**
+ * @deprecated Please use {@link ReadModifyWriteRow#create(TargetId, ByteString)} instead.
+ */
@Deprecated
public static ReadModifyWriteRow create(String tableId, ByteString key) {
return new ReadModifyWriteRow(TableId.of(tableId), key);
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/RowMutation.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/RowMutation.java
index cee0a37f19..38d822afcb 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/RowMutation.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/RowMutation.java
@@ -47,7 +47,9 @@ private RowMutation(TargetId targetId, ByteString key, Mutation mutation) {
this.mutation = mutation;
}
- /** @deprecated Please use {@link RowMutation#create(TargetId, String)} instead. */
+ /**
+ * @deprecated Please use {@link RowMutation#create(TargetId, String)} instead.
+ */
@Deprecated
public static RowMutation create(String tableId, String key) {
return create(tableId, ByteString.copyFromUtf8(key));
@@ -64,7 +66,9 @@ public static RowMutation create(TargetId targetId, String key) {
return create(targetId, ByteString.copyFromUtf8(key));
}
- /** @deprecated Please use {@link RowMutation#create(TargetId, ByteString)} instead. */
+ /**
+ * @deprecated Please use {@link RowMutation#create(TargetId, ByteString)} instead.
+ */
@Deprecated
public static RowMutation create(String tableId, ByteString key) {
return new RowMutation(TableId.of(tableId), key, Mutation.create());
@@ -81,7 +85,9 @@ public static RowMutation create(TargetId targetId, ByteString key) {
return new RowMutation(targetId, key, Mutation.create());
}
- /** @deprecated Please use {@link RowMutation#create(TargetId, String, Mutation)} instead. */
+ /**
+ * @deprecated Please use {@link RowMutation#create(TargetId, String, Mutation)} instead.
+ */
@Deprecated
public static RowMutation create(String tableId, String key, Mutation mutation) {
return create(tableId, ByteString.copyFromUtf8(key), mutation);
@@ -107,7 +113,9 @@ public static RowMutation create(TargetId targetId, String key, Mutation mutatio
return create(targetId, ByteString.copyFromUtf8(key), mutation);
}
- /** @deprecated Please use {@link RowMutation#create(TargetId, ByteString, Mutation)} instead. */
+ /**
+ * @deprecated Please use {@link RowMutation#create(TargetId, ByteString, Mutation)} instead.
+ */
@Deprecated
public static RowMutation create(String tableId, ByteString key, Mutation mutation) {
return new RowMutation(TableId.of(tableId), key, mutation);
diff --git a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/sql/ResultSetMetadata.java b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/sql/ResultSetMetadata.java
index 3ebabf9d03..303c00928e 100644
--- a/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/sql/ResultSetMetadata.java
+++ b/google-cloud-bigtable/src/main/java/com/google/cloud/bigtable/data/v2/models/sql/ResultSetMetadata.java
@@ -20,7 +20,9 @@
/** Provides information about the schema of a {@link ResultSet}. */
public interface ResultSetMetadata {
- /** @return full list of {@link ColumnMetadata} for each column in the {@link ResultSet}. */
+ /**
+ * @return full list of {@link ColumnMetadata} for each column in the {@link ResultSet}.
+ */
List> {
- /** @return {@link SqlType} of the array's elements */
+ /**
+ * @return {@link SqlType} of the array's elements
+ */
SqlType
+ * Create an instance within a project. + * Note that exactly one of Cluster.serve_nodes and + * Cluster.cluster_config.cluster_autoscaling_config can be set. If + * serve_nodes is set to non-zero, then the cluster is manually scaled. If + * cluster_config.cluster_autoscaling_config is non-empty, then autoscaling is + * enabled. + *+ */ + public com.google.longrunning.Operation createInstance( + com.google.bigtable.admin.v2.CreateInstanceRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateInstanceMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets information about an instance. + *+ */ + public com.google.bigtable.admin.v2.Instance getInstance( + com.google.bigtable.admin.v2.GetInstanceRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetInstanceMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists information about instances in a project. + *+ */ + public com.google.bigtable.admin.v2.ListInstancesResponse listInstances( + com.google.bigtable.admin.v2.ListInstancesRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListInstancesMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Updates an instance within a project. This method updates only the display + * name and type for an Instance. To update other Instance properties, such as + * labels, use PartialUpdateInstance. + *+ */ + public com.google.bigtable.admin.v2.Instance updateInstance( + com.google.bigtable.admin.v2.Instance request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateInstanceMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Partially updates an instance within a project. This method can modify all + * fields of an Instance and is the preferred way to update an Instance. + *+ */ + public com.google.longrunning.Operation partialUpdateInstance( + com.google.bigtable.admin.v2.PartialUpdateInstanceRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getPartialUpdateInstanceMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Delete an instance from a project. + *+ */ + public com.google.protobuf.Empty deleteInstance( + com.google.bigtable.admin.v2.DeleteInstanceRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteInstanceMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Creates a cluster within an instance. + * Note that exactly one of Cluster.serve_nodes and + * Cluster.cluster_config.cluster_autoscaling_config can be set. If + * serve_nodes is set to non-zero, then the cluster is manually scaled. If + * cluster_config.cluster_autoscaling_config is non-empty, then autoscaling is + * enabled. + *+ */ + public com.google.longrunning.Operation createCluster( + com.google.bigtable.admin.v2.CreateClusterRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateClusterMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets information about a cluster. + *+ */ + public com.google.bigtable.admin.v2.Cluster getCluster( + com.google.bigtable.admin.v2.GetClusterRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetClusterMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists information about clusters in an instance. + *+ */ + public com.google.bigtable.admin.v2.ListClustersResponse listClusters( + com.google.bigtable.admin.v2.ListClustersRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListClustersMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Updates a cluster within an instance. + * Note that UpdateCluster does not support updating + * cluster_config.cluster_autoscaling_config. In order to update it, you + * must use PartialUpdateCluster. + *+ */ + public com.google.longrunning.Operation updateCluster( + com.google.bigtable.admin.v2.Cluster request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateClusterMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Partially updates a cluster within a project. This method is the preferred + * way to update a Cluster. + * To enable and update autoscaling, set + * cluster_config.cluster_autoscaling_config. When autoscaling is enabled, + * serve_nodes is treated as an OUTPUT_ONLY field, meaning that updates to it + * are ignored. Note that an update cannot simultaneously set serve_nodes to + * non-zero and cluster_config.cluster_autoscaling_config to non-empty, and + * also specify both in the update_mask. + * To disable autoscaling, clear cluster_config.cluster_autoscaling_config, + * and explicitly set a serve_node count via the update_mask. + *+ */ + public com.google.longrunning.Operation partialUpdateCluster( + com.google.bigtable.admin.v2.PartialUpdateClusterRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getPartialUpdateClusterMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Deletes a cluster from an instance. + *+ */ + public com.google.protobuf.Empty deleteCluster( + com.google.bigtable.admin.v2.DeleteClusterRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteClusterMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Creates an app profile within an instance. + *+ */ + public com.google.bigtable.admin.v2.AppProfile createAppProfile( + com.google.bigtable.admin.v2.CreateAppProfileRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateAppProfileMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets information about an app profile. + *+ */ + public com.google.bigtable.admin.v2.AppProfile getAppProfile( + com.google.bigtable.admin.v2.GetAppProfileRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetAppProfileMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists information about app profiles in an instance. + *+ */ + public com.google.bigtable.admin.v2.ListAppProfilesResponse listAppProfiles( + com.google.bigtable.admin.v2.ListAppProfilesRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListAppProfilesMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Updates an app profile within an instance. + *+ */ + public com.google.longrunning.Operation updateAppProfile( + com.google.bigtable.admin.v2.UpdateAppProfileRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateAppProfileMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Deletes an app profile from an instance. + *+ */ + public com.google.protobuf.Empty deleteAppProfile( + com.google.bigtable.admin.v2.DeleteAppProfileRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteAppProfileMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets the access control policy for an instance resource. Returns an empty + * policy if an instance exists but does not have a policy set. + *+ */ + public com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetIamPolicyMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Sets the access control policy on an instance resource. Replaces any + * existing policy. + *+ */ + public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getSetIamPolicyMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Returns permissions that the caller has on the specified instance resource. + *+ */ + public com.google.iam.v1.TestIamPermissionsResponse testIamPermissions( + com.google.iam.v1.TestIamPermissionsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getTestIamPermissionsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists hot tablets in a cluster, within the time range provided. Hot + * tablets are ordered based on CPU usage. + *+ */ + public com.google.bigtable.admin.v2.ListHotTabletsResponse listHotTablets( + com.google.bigtable.admin.v2.ListHotTabletsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListHotTabletsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Creates a logical view within an instance. + *+ */ + public com.google.longrunning.Operation createLogicalView( + com.google.bigtable.admin.v2.CreateLogicalViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateLogicalViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets information about a logical view. + *+ */ + public com.google.bigtable.admin.v2.LogicalView getLogicalView( + com.google.bigtable.admin.v2.GetLogicalViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetLogicalViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists information about logical views in an instance. + *+ */ + public com.google.bigtable.admin.v2.ListLogicalViewsResponse listLogicalViews( + com.google.bigtable.admin.v2.ListLogicalViewsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListLogicalViewsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Updates a logical view within an instance. + *+ */ + public com.google.longrunning.Operation updateLogicalView( + com.google.bigtable.admin.v2.UpdateLogicalViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateLogicalViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Deletes a logical view from an instance. + *+ */ + public com.google.protobuf.Empty deleteLogicalView( + com.google.bigtable.admin.v2.DeleteLogicalViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteLogicalViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Creates a materialized view within an instance. + *+ */ + public com.google.longrunning.Operation createMaterializedView( + com.google.bigtable.admin.v2.CreateMaterializedViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateMaterializedViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets information about a materialized view. + *+ */ + public com.google.bigtable.admin.v2.MaterializedView getMaterializedView( + com.google.bigtable.admin.v2.GetMaterializedViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetMaterializedViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists information about materialized views in an instance. + *+ */ + public com.google.bigtable.admin.v2.ListMaterializedViewsResponse listMaterializedViews( + com.google.bigtable.admin.v2.ListMaterializedViewsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListMaterializedViewsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Updates a materialized view within an instance. + *+ */ + public com.google.longrunning.Operation updateMaterializedView( + com.google.bigtable.admin.v2.UpdateMaterializedViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateMaterializedViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Deletes a materialized view from an instance. + *+ */ + public com.google.protobuf.Empty deleteMaterializedView( + com.google.bigtable.admin.v2.DeleteMaterializedViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteMaterializedViewMethod(), getCallOptions(), request); + } + } + + /** + * A stub to allow clients to do limited synchronous rpc calls to service BigtableInstanceAdmin. + * + *
+ * Service for creating, configuring, and deleting Cloud Bigtable Instances and + * Clusters. Provides access to the Instance and Cluster schemas only, not the + * tables' metadata or data stored in those tables. + *+ */ public static final class BigtableInstanceAdminBlockingStub extends io.grpc.stub.AbstractBlockingStub
+ * Creates a new table in the specified instance. + * The table can be created with a full set of initial column families, + * specified in the request. + *+ */ + public com.google.bigtable.admin.v2.Table createTable( + com.google.bigtable.admin.v2.CreateTableRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateTableMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Creates a new table from the specified snapshot. The target table must + * not exist. The snapshot and the table must be in the same instance. + * Note: This is a private alpha release of Cloud Bigtable snapshots. This + * feature is not currently available to most Cloud Bigtable customers. This + * feature might be changed in backward-incompatible ways and is not + * recommended for production use. It is not subject to any SLA or deprecation + * policy. + *+ */ + public com.google.longrunning.Operation createTableFromSnapshot( + com.google.bigtable.admin.v2.CreateTableFromSnapshotRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateTableFromSnapshotMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists all tables served from a specified instance. + *+ */ + public com.google.bigtable.admin.v2.ListTablesResponse listTables( + com.google.bigtable.admin.v2.ListTablesRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListTablesMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets metadata information about the specified table. + *+ */ + public com.google.bigtable.admin.v2.Table getTable( + com.google.bigtable.admin.v2.GetTableRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetTableMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Updates a specified table. + *+ */ + public com.google.longrunning.Operation updateTable( + com.google.bigtable.admin.v2.UpdateTableRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateTableMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Permanently deletes a specified table and all of its data. + *+ */ + public com.google.protobuf.Empty deleteTable( + com.google.bigtable.admin.v2.DeleteTableRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteTableMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Restores a specified table which was accidentally deleted. + *+ */ + public com.google.longrunning.Operation undeleteTable( + com.google.bigtable.admin.v2.UndeleteTableRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUndeleteTableMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Creates a new AuthorizedView in a table. + *+ */ + public com.google.longrunning.Operation createAuthorizedView( + com.google.bigtable.admin.v2.CreateAuthorizedViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateAuthorizedViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists all AuthorizedViews from a specific table. + *+ */ + public com.google.bigtable.admin.v2.ListAuthorizedViewsResponse listAuthorizedViews( + com.google.bigtable.admin.v2.ListAuthorizedViewsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListAuthorizedViewsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets information from a specified AuthorizedView. + *+ */ + public com.google.bigtable.admin.v2.AuthorizedView getAuthorizedView( + com.google.bigtable.admin.v2.GetAuthorizedViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetAuthorizedViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Updates an AuthorizedView in a table. + *+ */ + public com.google.longrunning.Operation updateAuthorizedView( + com.google.bigtable.admin.v2.UpdateAuthorizedViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateAuthorizedViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Permanently deletes a specified AuthorizedView. + *+ */ + public com.google.protobuf.Empty deleteAuthorizedView( + com.google.bigtable.admin.v2.DeleteAuthorizedViewRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteAuthorizedViewMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Performs a series of column family modifications on the specified table. + * Either all or none of the modifications will occur before this method + * returns, but data requests received prior to that point may see a table + * where only some modifications have taken effect. + *+ */ + public com.google.bigtable.admin.v2.Table modifyColumnFamilies( + com.google.bigtable.admin.v2.ModifyColumnFamiliesRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getModifyColumnFamiliesMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Permanently drop/delete a row range from a specified table. The request can + * specify whether to delete all rows in a table, or only those that match a + * particular prefix. + *+ */ + public com.google.protobuf.Empty dropRowRange( + com.google.bigtable.admin.v2.DropRowRangeRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDropRowRangeMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Generates a consistency token for a Table, which can be used in + * CheckConsistency to check whether mutations to the table that finished + * before this call started have been replicated. The tokens will be available + * for 90 days. + *+ */ + public com.google.bigtable.admin.v2.GenerateConsistencyTokenResponse generateConsistencyToken( + com.google.bigtable.admin.v2.GenerateConsistencyTokenRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGenerateConsistencyTokenMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Checks replication consistency based on a consistency token, that is, if + * replication has caught up based on the conditions specified in the token + * and the check request. + *+ */ + public com.google.bigtable.admin.v2.CheckConsistencyResponse checkConsistency( + com.google.bigtable.admin.v2.CheckConsistencyRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCheckConsistencyMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Creates a new snapshot in the specified cluster from the specified + * source table. The cluster and the table must be in the same instance. + * Note: This is a private alpha release of Cloud Bigtable snapshots. This + * feature is not currently available to most Cloud Bigtable customers. This + * feature might be changed in backward-incompatible ways and is not + * recommended for production use. It is not subject to any SLA or deprecation + * policy. + *+ */ + public com.google.longrunning.Operation snapshotTable( + com.google.bigtable.admin.v2.SnapshotTableRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getSnapshotTableMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets metadata information about the specified snapshot. + * Note: This is a private alpha release of Cloud Bigtable snapshots. This + * feature is not currently available to most Cloud Bigtable customers. This + * feature might be changed in backward-incompatible ways and is not + * recommended for production use. It is not subject to any SLA or deprecation + * policy. + *+ */ + public com.google.bigtable.admin.v2.Snapshot getSnapshot( + com.google.bigtable.admin.v2.GetSnapshotRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetSnapshotMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists all snapshots associated with the specified cluster. + * Note: This is a private alpha release of Cloud Bigtable snapshots. This + * feature is not currently available to most Cloud Bigtable customers. This + * feature might be changed in backward-incompatible ways and is not + * recommended for production use. It is not subject to any SLA or deprecation + * policy. + *+ */ + public com.google.bigtable.admin.v2.ListSnapshotsResponse listSnapshots( + com.google.bigtable.admin.v2.ListSnapshotsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListSnapshotsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Permanently deletes the specified snapshot. + * Note: This is a private alpha release of Cloud Bigtable snapshots. This + * feature is not currently available to most Cloud Bigtable customers. This + * feature might be changed in backward-incompatible ways and is not + * recommended for production use. It is not subject to any SLA or deprecation + * policy. + *+ */ + public com.google.protobuf.Empty deleteSnapshot( + com.google.bigtable.admin.v2.DeleteSnapshotRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteSnapshotMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Starts creating a new Cloud Bigtable Backup. The returned backup + * [long-running operation][google.longrunning.Operation] can be used to + * track creation of the backup. The + * [metadata][google.longrunning.Operation.metadata] field type is + * [CreateBackupMetadata][google.bigtable.admin.v2.CreateBackupMetadata]. The + * [response][google.longrunning.Operation.response] field type is + * [Backup][google.bigtable.admin.v2.Backup], if successful. Cancelling the + * returned operation will stop the creation and delete the backup. + *+ */ + public com.google.longrunning.Operation createBackup( + com.google.bigtable.admin.v2.CreateBackupRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateBackupMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets metadata on a pending or completed Cloud Bigtable Backup. + *+ */ + public com.google.bigtable.admin.v2.Backup getBackup( + com.google.bigtable.admin.v2.GetBackupRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetBackupMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Updates a pending or completed Cloud Bigtable Backup. + *+ */ + public com.google.bigtable.admin.v2.Backup updateBackup( + com.google.bigtable.admin.v2.UpdateBackupRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getUpdateBackupMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Deletes a pending or completed Cloud Bigtable backup. + *+ */ + public com.google.protobuf.Empty deleteBackup( + com.google.bigtable.admin.v2.DeleteBackupRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getDeleteBackupMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Lists Cloud Bigtable backups. Returns both completed and pending + * backups. + *+ */ + public com.google.bigtable.admin.v2.ListBackupsResponse listBackups( + com.google.bigtable.admin.v2.ListBackupsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListBackupsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Create a new table by restoring from a completed backup. The + * returned table [long-running operation][google.longrunning.Operation] can + * be used to track the progress of the operation, and to cancel it. The + * [metadata][google.longrunning.Operation.metadata] field type is + * [RestoreTableMetadata][google.bigtable.admin.v2.RestoreTableMetadata]. The + * [response][google.longrunning.Operation.response] type is + * [Table][google.bigtable.admin.v2.Table], if successful. + *+ */ + public com.google.longrunning.Operation restoreTable( + com.google.bigtable.admin.v2.RestoreTableRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getRestoreTableMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Copy a Cloud Bigtable backup to a new backup in the destination cluster + * located in the destination instance and project. + *+ */ + public com.google.longrunning.Operation copyBackup( + com.google.bigtable.admin.v2.CopyBackupRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCopyBackupMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Gets the access control policy for a Table or Backup resource. + * Returns an empty policy if the resource exists but does not have a policy + * set. + *+ */ + public com.google.iam.v1.Policy getIamPolicy(com.google.iam.v1.GetIamPolicyRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetIamPolicyMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Sets the access control policy on a Table or Backup resource. + * Replaces any existing policy. + *+ */ + public com.google.iam.v1.Policy setIamPolicy(com.google.iam.v1.SetIamPolicyRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getSetIamPolicyMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Returns permissions that the caller has on the specified Table or Backup + * resource. + *+ */ + public com.google.iam.v1.TestIamPermissionsResponse testIamPermissions( + com.google.iam.v1.TestIamPermissionsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getTestIamPermissionsMethod(), getCallOptions(), request); + } + } + + /** + * A stub to allow clients to do limited synchronous rpc calls to service BigtableTableAdmin. + * + *
+ * Service for creating, configuring, and deleting Cloud Bigtable tables. + * Provides access to the table schemas only, not the data stored within + * the tables. + *+ */ public static final class BigtableTableAdminBlockingStub extends io.grpc.stub.AbstractBlockingStub
+ * Streams back the contents of all requested rows in key order, optionally + * applying the same Reader filter to each. Depending on their size, + * rows and cells may be broken up across multiple responses, but + * atomicity of each row will still be preserved. See the + * ReadRowsResponse documentation for details. + *+ */ + @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918") + public io.grpc.stub.BlockingClientCall, com.google.bigtable.v2.ReadRowsResponse> readRows( + com.google.bigtable.v2.ReadRowsRequest request) { + return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall( + getChannel(), getReadRowsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Returns a sample of row keys in the table. The returned row keys will + * delimit contiguous sections of the table of approximately equal size, + * which can be used to break up the data for distributed tasks like + * mapreduces. + *+ */ + @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918") + public io.grpc.stub.BlockingClientCall, com.google.bigtable.v2.SampleRowKeysResponse> + sampleRowKeys(com.google.bigtable.v2.SampleRowKeysRequest request) { + return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall( + getChannel(), getSampleRowKeysMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Mutates a row atomically. Cells already present in the row are left + * unchanged unless explicitly changed by `mutation`. + *+ */ + public com.google.bigtable.v2.MutateRowResponse mutateRow( + com.google.bigtable.v2.MutateRowRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getMutateRowMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Mutates multiple rows in a batch. Each individual row is mutated + * atomically as in MutateRow, but the entire batch is not executed + * atomically. + *+ */ + @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918") + public io.grpc.stub.BlockingClientCall, com.google.bigtable.v2.MutateRowsResponse> mutateRows( + com.google.bigtable.v2.MutateRowsRequest request) { + return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall( + getChannel(), getMutateRowsMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Mutates a row atomically based on the output of a predicate Reader filter. + *+ */ + public com.google.bigtable.v2.CheckAndMutateRowResponse checkAndMutateRow( + com.google.bigtable.v2.CheckAndMutateRowRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCheckAndMutateRowMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Warm up associated instance metadata for this connection. + * This call is not required but may be useful for connection keep-alive. + *+ */ + public com.google.bigtable.v2.PingAndWarmResponse pingAndWarm( + com.google.bigtable.v2.PingAndWarmRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getPingAndWarmMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Modifies a row atomically on the server. The method reads the latest + * existing timestamp and value from the specified columns and writes a new + * entry based on pre-defined read/modify/write rules. The new value for the + * timestamp is the greater of the existing timestamp or the current server + * time. The method returns the new contents of all modified cells. + *+ */ + public com.google.bigtable.v2.ReadModifyWriteRowResponse readModifyWriteRow( + com.google.bigtable.v2.ReadModifyWriteRowRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getReadModifyWriteRowMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * NOTE: This API is intended to be used by Apache Beam BigtableIO. + * Returns the current list of partitions that make up the table's + * change stream. The union of partitions will cover the entire keyspace. + * Partitions can be read with `ReadChangeStream`. + *+ */ + @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918") + public io.grpc.stub.BlockingClientCall< + ?, com.google.bigtable.v2.GenerateInitialChangeStreamPartitionsResponse> + generateInitialChangeStreamPartitions( + com.google.bigtable.v2.GenerateInitialChangeStreamPartitionsRequest request) { + return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall( + getChannel(), + getGenerateInitialChangeStreamPartitionsMethod(), + getCallOptions(), + request); + } + + /** + * + * + *
+ * NOTE: This API is intended to be used by Apache Beam BigtableIO. + * Reads changes from a table's change stream. Changes will + * reflect both user-initiated mutations and mutations that are caused by + * garbage collection. + *+ */ + @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918") + public io.grpc.stub.BlockingClientCall, com.google.bigtable.v2.ReadChangeStreamResponse> + readChangeStream(com.google.bigtable.v2.ReadChangeStreamRequest request) { + return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall( + getChannel(), getReadChangeStreamMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Prepares a GoogleSQL query for execution on a particular Bigtable instance. + *+ */ + public com.google.bigtable.v2.PrepareQueryResponse prepareQuery( + com.google.bigtable.v2.PrepareQueryRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getPrepareQueryMethod(), getCallOptions(), request); + } + + /** + * + * + *
+ * Executes a SQL query against a particular Bigtable instance. + *+ */ + @io.grpc.ExperimentalApi("https://github.com/grpc/grpc-java/issues/10918") + public io.grpc.stub.BlockingClientCall, com.google.bigtable.v2.ExecuteQueryResponse> + executeQuery(com.google.bigtable.v2.ExecuteQueryRequest request) { + return io.grpc.stub.ClientCalls.blockingV2ServerStreamingCall( + getChannel(), getExecuteQueryMethod(), getCallOptions(), request); + } + } + + /** + * A stub to allow clients to do limited synchronous rpc calls to service Bigtable. + * + *
+ * Service for reading from and writing to existing Bigtable tables. + *+ */ public static final class BigtableBlockingStub extends io.grpc.stub.AbstractBlockingStub
PRIORITY_UNSPECIFIED = 0;
*/
public static final int PRIORITY_UNSPECIFIED_VALUE = 0;
+
/** PRIORITY_LOW = 1;
*/
public static final int PRIORITY_LOW_VALUE = 1;
+
/** PRIORITY_MEDIUM = 2;
*/
public static final int PRIORITY_MEDIUM_VALUE = 2;
+
/** PRIORITY_HIGH = 3;
*/
public static final int PRIORITY_HIGH_VALUE = 3;
@@ -217,6 +221,7 @@ public interface MultiClusterRoutingUseAnyOrBuilder
* @return A list containing the clusterIds.
*/
java.util.ListCOMPUTE_BILLING_OWNER_UNSPECIFIED = 0;
*/
public static final int COMPUTE_BILLING_OWNER_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -3594,6 +3666,7 @@ private ComputeBillingOwner(int value) {
private int bitField0_;
public static final int COMPUTE_BILLING_OWNER_FIELD_NUMBER = 1;
private int computeBillingOwner_ = 0;
+
/**
*
*
@@ -3611,6 +3684,7 @@ private ComputeBillingOwner(int value) {
public boolean hasComputeBillingOwner() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -3628,6 +3702,7 @@ public boolean hasComputeBillingOwner() {
public int getComputeBillingOwnerValue() {
return computeBillingOwner_;
}
+
/**
*
*
@@ -3821,6 +3896,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -4020,6 +4096,7 @@ public Builder mergeFrom(
private int bitField0_;
private int computeBillingOwner_ = 0;
+
/**
*
*
@@ -4037,6 +4114,7 @@ public Builder mergeFrom(
public boolean hasComputeBillingOwner() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -4054,6 +4132,7 @@ public boolean hasComputeBillingOwner() {
public int getComputeBillingOwnerValue() {
return computeBillingOwner_;
}
+
/**
*
*
@@ -4074,6 +4153,7 @@ public Builder setComputeBillingOwnerValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -4099,6 +4179,7 @@ public Builder setComputeBillingOwnerValue(int value) {
.UNRECOGNIZED
: result;
}
+
/**
*
*
@@ -4124,6 +4205,7 @@ public Builder setComputeBillingOwner(
onChanged();
return this;
}
+
/**
*
*
@@ -4228,6 +4310,7 @@ public enum RoutingPolicyCase
private RoutingPolicyCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -4279,6 +4362,7 @@ public enum IsolationCase
private IsolationCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -4317,6 +4401,7 @@ public IsolationCase getIsolationCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -4341,6 +4426,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -4370,6 +4456,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object etag_ = "";
+
/**
*
*
@@ -4400,6 +4487,7 @@ public java.lang.String getEtag() {
return s;
}
}
+
/**
*
*
@@ -4435,6 +4523,7 @@ public com.google.protobuf.ByteString getEtagBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object description_ = "";
+
/**
*
*
@@ -4458,6 +4547,7 @@ public java.lang.String getDescription() {
return s;
}
}
+
/**
*
*
@@ -4483,6 +4573,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() {
}
public static final int MULTI_CLUSTER_ROUTING_USE_ANY_FIELD_NUMBER = 5;
+
/**
*
*
@@ -4500,6 +4591,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() {
public boolean hasMultiClusterRoutingUseAny() {
return routingPolicyCase_ == 5;
}
+
/**
*
*
@@ -4521,6 +4613,7 @@ public boolean hasMultiClusterRoutingUseAny() {
}
return com.google.bigtable.admin.v2.AppProfile.MultiClusterRoutingUseAny.getDefaultInstance();
}
+
/**
*
*
@@ -4542,6 +4635,7 @@ public boolean hasMultiClusterRoutingUseAny() {
}
public static final int SINGLE_CLUSTER_ROUTING_FIELD_NUMBER = 6;
+
/**
*
*
@@ -4558,6 +4652,7 @@ public boolean hasMultiClusterRoutingUseAny() {
public boolean hasSingleClusterRouting() {
return routingPolicyCase_ == 6;
}
+
/**
*
*
@@ -4577,6 +4672,7 @@ public com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting getSingleClu
}
return com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting.getDefaultInstance();
}
+
/**
*
*
@@ -4597,6 +4693,7 @@ public com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting getSingleClu
}
public static final int PRIORITY_FIELD_NUMBER = 7;
+
/**
*
*
@@ -4617,6 +4714,7 @@ public com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting getSingleClu
public boolean hasPriority() {
return isolationCase_ == 7;
}
+
/**
*
*
@@ -4640,6 +4738,7 @@ public int getPriorityValue() {
}
return 0;
}
+
/**
*
*
@@ -4670,6 +4769,7 @@ public com.google.bigtable.admin.v2.AppProfile.Priority getPriority() {
}
public static final int STANDARD_ISOLATION_FIELD_NUMBER = 11;
+
/**
*
*
@@ -4686,6 +4786,7 @@ public com.google.bigtable.admin.v2.AppProfile.Priority getPriority() {
public boolean hasStandardIsolation() {
return isolationCase_ == 11;
}
+
/**
*
*
@@ -4705,6 +4806,7 @@ public com.google.bigtable.admin.v2.AppProfile.StandardIsolation getStandardIsol
}
return com.google.bigtable.admin.v2.AppProfile.StandardIsolation.getDefaultInstance();
}
+
/**
*
*
@@ -4725,6 +4827,7 @@ public com.google.bigtable.admin.v2.AppProfile.StandardIsolation getStandardIsol
}
public static final int DATA_BOOST_ISOLATION_READ_ONLY_FIELD_NUMBER = 10;
+
/**
*
*
@@ -4743,6 +4846,7 @@ public com.google.bigtable.admin.v2.AppProfile.StandardIsolation getStandardIsol
public boolean hasDataBoostIsolationReadOnly() {
return isolationCase_ == 10;
}
+
/**
*
*
@@ -4765,6 +4869,7 @@ public boolean hasDataBoostIsolationReadOnly() {
}
return com.google.bigtable.admin.v2.AppProfile.DataBoostIsolationReadOnly.getDefaultInstance();
}
+
/**
*
*
@@ -5062,6 +5167,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -5412,6 +5518,7 @@ public Builder clearIsolation() {
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -5435,6 +5542,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -5458,6 +5566,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -5480,6 +5589,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -5498,6 +5608,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -5523,6 +5634,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object etag_ = "";
+
/**
*
*
@@ -5552,6 +5664,7 @@ public java.lang.String getEtag() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -5581,6 +5694,7 @@ public com.google.protobuf.ByteString getEtagBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -5609,6 +5723,7 @@ public Builder setEtag(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -5633,6 +5748,7 @@ public Builder clearEtag() {
onChanged();
return this;
}
+
/**
*
*
@@ -5664,6 +5780,7 @@ public Builder setEtagBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object description_ = "";
+
/**
*
*
@@ -5686,6 +5803,7 @@ public java.lang.String getDescription() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -5708,6 +5826,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -5729,6 +5848,7 @@ public Builder setDescription(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -5746,6 +5866,7 @@ public Builder clearDescription() {
onChanged();
return this;
}
+
/**
*
*
@@ -5774,6 +5895,7 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.AppProfile.MultiClusterRoutingUseAny.Builder,
com.google.bigtable.admin.v2.AppProfile.MultiClusterRoutingUseAnyOrBuilder>
multiClusterRoutingUseAnyBuilder_;
+
/**
*
*
@@ -5791,6 +5913,7 @@ public Builder setDescriptionBytes(com.google.protobuf.ByteString value) {
public boolean hasMultiClusterRoutingUseAny() {
return routingPolicyCase_ == 5;
}
+
/**
*
*
@@ -5821,6 +5944,7 @@ public boolean hasMultiClusterRoutingUseAny() {
.getDefaultInstance();
}
}
+
/**
*
*
@@ -5846,6 +5970,7 @@ public Builder setMultiClusterRoutingUseAny(
routingPolicyCase_ = 5;
return this;
}
+
/**
*
*
@@ -5868,6 +5993,7 @@ public Builder setMultiClusterRoutingUseAny(
routingPolicyCase_ = 5;
return this;
}
+
/**
*
*
@@ -5906,6 +6032,7 @@ public Builder mergeMultiClusterRoutingUseAny(
routingPolicyCase_ = 5;
return this;
}
+
/**
*
*
@@ -5933,6 +6060,7 @@ public Builder clearMultiClusterRoutingUseAny() {
}
return this;
}
+
/**
*
*
@@ -5948,6 +6076,7 @@ public Builder clearMultiClusterRoutingUseAny() {
getMultiClusterRoutingUseAnyBuilder() {
return getMultiClusterRoutingUseAnyFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -5972,6 +6101,7 @@ public Builder clearMultiClusterRoutingUseAny() {
.getDefaultInstance();
}
}
+
/**
*
*
@@ -6014,6 +6144,7 @@ public Builder clearMultiClusterRoutingUseAny() {
com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting.Builder,
com.google.bigtable.admin.v2.AppProfile.SingleClusterRoutingOrBuilder>
singleClusterRoutingBuilder_;
+
/**
*
*
@@ -6030,6 +6161,7 @@ public Builder clearMultiClusterRoutingUseAny() {
public boolean hasSingleClusterRouting() {
return routingPolicyCase_ == 6;
}
+
/**
*
*
@@ -6056,6 +6188,7 @@ public com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting getSingleClu
return com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting.getDefaultInstance();
}
}
+
/**
*
*
@@ -6080,6 +6213,7 @@ public Builder setSingleClusterRouting(
routingPolicyCase_ = 6;
return this;
}
+
/**
*
*
@@ -6101,6 +6235,7 @@ public Builder setSingleClusterRouting(
routingPolicyCase_ = 6;
return this;
}
+
/**
*
*
@@ -6137,6 +6272,7 @@ public Builder mergeSingleClusterRouting(
routingPolicyCase_ = 6;
return this;
}
+
/**
*
*
@@ -6163,6 +6299,7 @@ public Builder clearSingleClusterRouting() {
}
return this;
}
+
/**
*
*
@@ -6177,6 +6314,7 @@ public Builder clearSingleClusterRouting() {
getSingleClusterRoutingBuilder() {
return getSingleClusterRoutingFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -6199,6 +6337,7 @@ public Builder clearSingleClusterRouting() {
return com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting.getDefaultInstance();
}
}
+
/**
*
*
@@ -6255,6 +6394,7 @@ public Builder clearSingleClusterRouting() {
public boolean hasPriority() {
return isolationCase_ == 7;
}
+
/**
*
*
@@ -6279,6 +6419,7 @@ public int getPriorityValue() {
}
return 0;
}
+
/**
*
*
@@ -6303,6 +6444,7 @@ public Builder setPriorityValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -6332,6 +6474,7 @@ public com.google.bigtable.admin.v2.AppProfile.Priority getPriority() {
}
return com.google.bigtable.admin.v2.AppProfile.Priority.PRIORITY_UNSPECIFIED;
}
+
/**
*
*
@@ -6359,6 +6502,7 @@ public Builder setPriority(com.google.bigtable.admin.v2.AppProfile.Priority valu
onChanged();
return this;
}
+
/**
*
*
@@ -6390,6 +6534,7 @@ public Builder clearPriority() {
com.google.bigtable.admin.v2.AppProfile.StandardIsolation.Builder,
com.google.bigtable.admin.v2.AppProfile.StandardIsolationOrBuilder>
standardIsolationBuilder_;
+
/**
*
*
@@ -6406,6 +6551,7 @@ public Builder clearPriority() {
public boolean hasStandardIsolation() {
return isolationCase_ == 11;
}
+
/**
*
*
@@ -6432,6 +6578,7 @@ public com.google.bigtable.admin.v2.AppProfile.StandardIsolation getStandardIsol
return com.google.bigtable.admin.v2.AppProfile.StandardIsolation.getDefaultInstance();
}
}
+
/**
*
*
@@ -6456,6 +6603,7 @@ public Builder setStandardIsolation(
isolationCase_ = 11;
return this;
}
+
/**
*
*
@@ -6477,6 +6625,7 @@ public Builder setStandardIsolation(
isolationCase_ = 11;
return this;
}
+
/**
*
*
@@ -6512,6 +6661,7 @@ public Builder mergeStandardIsolation(
isolationCase_ = 11;
return this;
}
+
/**
*
*
@@ -6538,6 +6688,7 @@ public Builder clearStandardIsolation() {
}
return this;
}
+
/**
*
*
@@ -6552,6 +6703,7 @@ public Builder clearStandardIsolation() {
getStandardIsolationBuilder() {
return getStandardIsolationFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -6574,6 +6726,7 @@ public Builder clearStandardIsolation() {
return com.google.bigtable.admin.v2.AppProfile.StandardIsolation.getDefaultInstance();
}
}
+
/**
*
*
@@ -6614,6 +6767,7 @@ public Builder clearStandardIsolation() {
com.google.bigtable.admin.v2.AppProfile.DataBoostIsolationReadOnly.Builder,
com.google.bigtable.admin.v2.AppProfile.DataBoostIsolationReadOnlyOrBuilder>
dataBoostIsolationReadOnlyBuilder_;
+
/**
*
*
@@ -6632,6 +6786,7 @@ public Builder clearStandardIsolation() {
public boolean hasDataBoostIsolationReadOnly() {
return isolationCase_ == 10;
}
+
/**
*
*
@@ -6663,6 +6818,7 @@ public boolean hasDataBoostIsolationReadOnly() {
.getDefaultInstance();
}
}
+
/**
*
*
@@ -6689,6 +6845,7 @@ public Builder setDataBoostIsolationReadOnly(
isolationCase_ = 10;
return this;
}
+
/**
*
*
@@ -6713,6 +6870,7 @@ public Builder setDataBoostIsolationReadOnly(
isolationCase_ = 10;
return this;
}
+
/**
*
*
@@ -6752,6 +6910,7 @@ public Builder mergeDataBoostIsolationReadOnly(
isolationCase_ = 10;
return this;
}
+
/**
*
*
@@ -6780,6 +6939,7 @@ public Builder clearDataBoostIsolationReadOnly() {
}
return this;
}
+
/**
*
*
@@ -6796,6 +6956,7 @@ public Builder clearDataBoostIsolationReadOnly() {
getDataBoostIsolationReadOnlyBuilder() {
return getDataBoostIsolationReadOnlyFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -6821,6 +6982,7 @@ public Builder clearDataBoostIsolationReadOnly() {
.getDefaultInstance();
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AppProfileOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AppProfileOrBuilder.java
index 5939d3fe6b..8d204bec7b 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AppProfileOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AppProfileOrBuilder.java
@@ -37,6 +37,7 @@ public interface AppProfileOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -70,6 +71,7 @@ public interface AppProfileOrBuilder
* @return The etag.
*/
java.lang.String getEtag();
+
/**
*
*
@@ -102,6 +104,7 @@ public interface AppProfileOrBuilder
* @return The description.
*/
java.lang.String getDescription();
+
/**
*
*
@@ -129,6 +132,7 @@ public interface AppProfileOrBuilder
* @return Whether the multiClusterRoutingUseAny field is set.
*/
boolean hasMultiClusterRoutingUseAny();
+
/**
*
*
@@ -143,6 +147,7 @@ public interface AppProfileOrBuilder
* @return The multiClusterRoutingUseAny.
*/
com.google.bigtable.admin.v2.AppProfile.MultiClusterRoutingUseAny getMultiClusterRoutingUseAny();
+
/**
*
*
@@ -170,6 +175,7 @@ public interface AppProfileOrBuilder
* @return Whether the singleClusterRouting field is set.
*/
boolean hasSingleClusterRouting();
+
/**
*
*
@@ -183,6 +189,7 @@ public interface AppProfileOrBuilder
* @return The singleClusterRouting.
*/
com.google.bigtable.admin.v2.AppProfile.SingleClusterRouting getSingleClusterRouting();
+
/**
*
*
@@ -214,6 +221,7 @@ public interface AppProfileOrBuilder
*/
@java.lang.Deprecated
boolean hasPriority();
+
/**
*
*
@@ -232,6 +240,7 @@ public interface AppProfileOrBuilder
*/
@java.lang.Deprecated
int getPriorityValue();
+
/**
*
*
@@ -264,6 +273,7 @@ public interface AppProfileOrBuilder
* @return Whether the standardIsolation field is set.
*/
boolean hasStandardIsolation();
+
/**
*
*
@@ -277,6 +287,7 @@ public interface AppProfileOrBuilder
* @return The standardIsolation.
*/
com.google.bigtable.admin.v2.AppProfile.StandardIsolation getStandardIsolation();
+
/**
*
*
@@ -305,6 +316,7 @@ public interface AppProfileOrBuilder
* @return Whether the dataBoostIsolationReadOnly field is set.
*/
boolean hasDataBoostIsolationReadOnly();
+
/**
*
*
@@ -321,6 +333,7 @@ public interface AppProfileOrBuilder
*/
com.google.bigtable.admin.v2.AppProfile.DataBoostIsolationReadOnly
getDataBoostIsolationReadOnly();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AuthorizedView.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AuthorizedView.java
index 92ff45b98b..5ea420a048 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AuthorizedView.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/AuthorizedView.java
@@ -35,6 +35,7 @@ public final class AuthorizedView extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.AuthorizedView)
AuthorizedViewOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use AuthorizedView.newBuilder() to construct.
private AuthorizedView(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -130,6 +131,7 @@ public enum ResponseView implements com.google.protobuf.ProtocolMessageEnum {
* RESPONSE_VIEW_UNSPECIFIED = 0;
*/
public static final int RESPONSE_VIEW_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -140,6 +142,7 @@ public enum ResponseView implements com.google.protobuf.ProtocolMessageEnum {
* NAME_ONLY = 1;
*/
public static final int NAME_ONLY_VALUE = 1;
+
/**
*
*
@@ -151,6 +154,7 @@ public enum ResponseView implements com.google.protobuf.ProtocolMessageEnum {
* BASIC = 2;
*/
public static final int BASIC_VALUE = 2;
+
/**
*
*
@@ -264,6 +268,7 @@ public interface FamilySubsetsOrBuilder
* @return A list containing the qualifiers.
*/
java.util.ListSTATE_UNSPECIFIED = 0;
*/
public static final int STATE_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -132,6 +134,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* CREATING = 1;
*/
public static final int CREATING_VALUE = 1;
+
/**
*
*
@@ -284,6 +287,7 @@ public enum BackupType implements com.google.protobuf.ProtocolMessageEnum {
* BACKUP_TYPE_UNSPECIFIED = 0;
*/
public static final int BACKUP_TYPE_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -296,6 +300,7 @@ public enum BackupType implements com.google.protobuf.ProtocolMessageEnum {
* STANDARD = 1;
*/
public static final int STANDARD_VALUE = 1;
+
/**
*
*
@@ -398,6 +403,7 @@ private BackupType(int value) {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -430,6 +436,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -467,6 +474,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object sourceTable_ = "";
+
/**
*
*
@@ -494,6 +502,7 @@ public java.lang.String getSourceTable() {
return s;
}
}
+
/**
*
*
@@ -526,6 +535,7 @@ public com.google.protobuf.ByteString getSourceTableBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object sourceBackup_ = "";
+
/**
*
*
@@ -552,6 +562,7 @@ public java.lang.String getSourceBackup() {
return s;
}
}
+
/**
*
*
@@ -581,6 +592,7 @@ public com.google.protobuf.ByteString getSourceBackupBytes() {
public static final int EXPIRE_TIME_FIELD_NUMBER = 3;
private com.google.protobuf.Timestamp expireTime_;
+
/**
*
*
@@ -603,6 +615,7 @@ public com.google.protobuf.ByteString getSourceBackupBytes() {
public boolean hasExpireTime() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -625,6 +638,7 @@ public boolean hasExpireTime() {
public com.google.protobuf.Timestamp getExpireTime() {
return expireTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : expireTime_;
}
+
/**
*
*
@@ -648,6 +662,7 @@ public com.google.protobuf.TimestampOrBuilder getExpireTimeOrBuilder() {
public static final int START_TIME_FIELD_NUMBER = 4;
private com.google.protobuf.Timestamp startTime_;
+
/**
*
*
@@ -668,6 +683,7 @@ public com.google.protobuf.TimestampOrBuilder getExpireTimeOrBuilder() {
public boolean hasStartTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -688,6 +704,7 @@ public boolean hasStartTime() {
public com.google.protobuf.Timestamp getStartTime() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
+
/**
*
*
@@ -709,6 +726,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public static final int END_TIME_FIELD_NUMBER = 5;
private com.google.protobuf.Timestamp endTime_;
+
/**
*
*
@@ -726,6 +744,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public boolean hasEndTime() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -743,6 +762,7 @@ public boolean hasEndTime() {
public com.google.protobuf.Timestamp getEndTime() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
+
/**
*
*
@@ -761,6 +781,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
public static final int SIZE_BYTES_FIELD_NUMBER = 6;
private long sizeBytes_ = 0L;
+
/**
*
*
@@ -779,6 +800,7 @@ public long getSizeBytes() {
public static final int STATE_FIELD_NUMBER = 7;
private int state_ = 0;
+
/**
*
*
@@ -796,6 +818,7 @@ public long getSizeBytes() {
public int getStateValue() {
return state_;
}
+
/**
*
*
@@ -818,6 +841,7 @@ public com.google.bigtable.admin.v2.Backup.State getState() {
public static final int ENCRYPTION_INFO_FIELD_NUMBER = 9;
private com.google.bigtable.admin.v2.EncryptionInfo encryptionInfo_;
+
/**
*
*
@@ -835,6 +859,7 @@ public com.google.bigtable.admin.v2.Backup.State getState() {
public boolean hasEncryptionInfo() {
return ((bitField0_ & 0x00000008) != 0);
}
+
/**
*
*
@@ -854,6 +879,7 @@ public com.google.bigtable.admin.v2.EncryptionInfo getEncryptionInfo() {
? com.google.bigtable.admin.v2.EncryptionInfo.getDefaultInstance()
: encryptionInfo_;
}
+
/**
*
*
@@ -874,6 +900,7 @@ public com.google.bigtable.admin.v2.EncryptionInfoOrBuilder getEncryptionInfoOrB
public static final int BACKUP_TYPE_FIELD_NUMBER = 11;
private int backupType_ = 0;
+
/**
*
*
@@ -889,6 +916,7 @@ public com.google.bigtable.admin.v2.EncryptionInfoOrBuilder getEncryptionInfoOrB
public int getBackupTypeValue() {
return backupType_;
}
+
/**
*
*
@@ -909,6 +937,7 @@ public com.google.bigtable.admin.v2.Backup.BackupType getBackupType() {
public static final int HOT_TO_STANDARD_TIME_FIELD_NUMBER = 12;
private com.google.protobuf.Timestamp hotToStandardTime_;
+
/**
*
*
@@ -931,6 +960,7 @@ public com.google.bigtable.admin.v2.Backup.BackupType getBackupType() {
public boolean hasHotToStandardTime() {
return ((bitField0_ & 0x00000010) != 0);
}
+
/**
*
*
@@ -955,6 +985,7 @@ public com.google.protobuf.Timestamp getHotToStandardTime() {
? com.google.protobuf.Timestamp.getDefaultInstance()
: hotToStandardTime_;
}
+
/**
*
*
@@ -1252,6 +1283,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -1613,6 +1645,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -1644,6 +1677,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1675,6 +1709,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1705,6 +1740,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1731,6 +1767,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -1764,6 +1801,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object sourceTable_ = "";
+
/**
*
*
@@ -1790,6 +1828,7 @@ public java.lang.String getSourceTable() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1816,6 +1855,7 @@ public com.google.protobuf.ByteString getSourceTableBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1841,6 +1881,7 @@ public Builder setSourceTable(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1862,6 +1903,7 @@ public Builder clearSourceTable() {
onChanged();
return this;
}
+
/**
*
*
@@ -1890,6 +1932,7 @@ public Builder setSourceTableBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object sourceBackup_ = "";
+
/**
*
*
@@ -1915,6 +1958,7 @@ public java.lang.String getSourceBackup() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1940,6 +1984,7 @@ public com.google.protobuf.ByteString getSourceBackupBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1964,6 +2009,7 @@ public Builder setSourceBackup(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1984,6 +2030,7 @@ public Builder clearSourceBackup() {
onChanged();
return this;
}
+
/**
*
*
@@ -2016,6 +2063,7 @@ public Builder setSourceBackupBytes(com.google.protobuf.ByteString value) {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
expireTimeBuilder_;
+
/**
*
*
@@ -2037,6 +2085,7 @@ public Builder setSourceBackupBytes(com.google.protobuf.ByteString value) {
public boolean hasExpireTime() {
return ((bitField0_ & 0x00000008) != 0);
}
+
/**
*
*
@@ -2064,6 +2113,7 @@ public com.google.protobuf.Timestamp getExpireTime() {
return expireTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -2093,6 +2143,7 @@ public Builder setExpireTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -2119,6 +2170,7 @@ public Builder setExpireTime(com.google.protobuf.Timestamp.Builder builderForVal
onChanged();
return this;
}
+
/**
*
*
@@ -2153,6 +2205,7 @@ public Builder mergeExpireTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -2179,6 +2232,7 @@ public Builder clearExpireTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -2200,6 +2254,7 @@ public com.google.protobuf.Timestamp.Builder getExpireTimeBuilder() {
onChanged();
return getExpireTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -2225,6 +2280,7 @@ public com.google.protobuf.TimestampOrBuilder getExpireTimeOrBuilder() {
: expireTime_;
}
}
+
/**
*
*
@@ -2264,6 +2320,7 @@ public com.google.protobuf.TimestampOrBuilder getExpireTimeOrBuilder() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
startTimeBuilder_;
+
/**
*
*
@@ -2283,6 +2340,7 @@ public com.google.protobuf.TimestampOrBuilder getExpireTimeOrBuilder() {
public boolean hasStartTime() {
return ((bitField0_ & 0x00000010) != 0);
}
+
/**
*
*
@@ -2306,6 +2364,7 @@ public com.google.protobuf.Timestamp getStartTime() {
return startTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -2333,6 +2392,7 @@ public Builder setStartTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -2357,6 +2417,7 @@ public Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValu
onChanged();
return this;
}
+
/**
*
*
@@ -2389,6 +2450,7 @@ public Builder mergeStartTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -2413,6 +2475,7 @@ public Builder clearStartTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -2432,6 +2495,7 @@ public com.google.protobuf.Timestamp.Builder getStartTimeBuilder() {
onChanged();
return getStartTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -2453,6 +2517,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
}
+
/**
*
*
@@ -2490,6 +2555,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
endTimeBuilder_;
+
/**
*
*
@@ -2506,6 +2572,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public boolean hasEndTime() {
return ((bitField0_ & 0x00000020) != 0);
}
+
/**
*
*
@@ -2526,6 +2593,7 @@ public com.google.protobuf.Timestamp getEndTime() {
return endTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -2550,6 +2618,7 @@ public Builder setEndTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -2571,6 +2640,7 @@ public Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue)
onChanged();
return this;
}
+
/**
*
*
@@ -2600,6 +2670,7 @@ public Builder mergeEndTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -2621,6 +2692,7 @@ public Builder clearEndTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -2637,6 +2709,7 @@ public com.google.protobuf.Timestamp.Builder getEndTimeBuilder() {
onChanged();
return getEndTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -2655,6 +2728,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
}
+
/**
*
*
@@ -2684,6 +2758,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
}
private long sizeBytes_;
+
/**
*
*
@@ -2699,6 +2774,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
public long getSizeBytes() {
return sizeBytes_;
}
+
/**
*
*
@@ -2718,6 +2794,7 @@ public Builder setSizeBytes(long value) {
onChanged();
return this;
}
+
/**
*
*
@@ -2737,6 +2814,7 @@ public Builder clearSizeBytes() {
}
private int state_ = 0;
+
/**
*
*
@@ -2754,6 +2832,7 @@ public Builder clearSizeBytes() {
public int getStateValue() {
return state_;
}
+
/**
*
*
@@ -2774,6 +2853,7 @@ public Builder setStateValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -2793,6 +2873,7 @@ public com.google.bigtable.admin.v2.Backup.State getState() {
com.google.bigtable.admin.v2.Backup.State.forNumber(state_);
return result == null ? com.google.bigtable.admin.v2.Backup.State.UNRECOGNIZED : result;
}
+
/**
*
*
@@ -2816,6 +2897,7 @@ public Builder setState(com.google.bigtable.admin.v2.Backup.State value) {
onChanged();
return this;
}
+
/**
*
*
@@ -2842,6 +2924,7 @@ public Builder clearState() {
com.google.bigtable.admin.v2.EncryptionInfo.Builder,
com.google.bigtable.admin.v2.EncryptionInfoOrBuilder>
encryptionInfoBuilder_;
+
/**
*
*
@@ -2858,6 +2941,7 @@ public Builder clearState() {
public boolean hasEncryptionInfo() {
return ((bitField0_ & 0x00000100) != 0);
}
+
/**
*
*
@@ -2880,6 +2964,7 @@ public com.google.bigtable.admin.v2.EncryptionInfo getEncryptionInfo() {
return encryptionInfoBuilder_.getMessage();
}
}
+
/**
*
*
@@ -2904,6 +2989,7 @@ public Builder setEncryptionInfo(com.google.bigtable.admin.v2.EncryptionInfo val
onChanged();
return this;
}
+
/**
*
*
@@ -2926,6 +3012,7 @@ public Builder setEncryptionInfo(
onChanged();
return this;
}
+
/**
*
*
@@ -2956,6 +3043,7 @@ public Builder mergeEncryptionInfo(com.google.bigtable.admin.v2.EncryptionInfo v
}
return this;
}
+
/**
*
*
@@ -2977,6 +3065,7 @@ public Builder clearEncryptionInfo() {
onChanged();
return this;
}
+
/**
*
*
@@ -2993,6 +3082,7 @@ public com.google.bigtable.admin.v2.EncryptionInfo.Builder getEncryptionInfoBuil
onChanged();
return getEncryptionInfoFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -3013,6 +3103,7 @@ public com.google.bigtable.admin.v2.EncryptionInfoOrBuilder getEncryptionInfoOrB
: encryptionInfo_;
}
}
+
/**
*
*
@@ -3042,6 +3133,7 @@ public com.google.bigtable.admin.v2.EncryptionInfoOrBuilder getEncryptionInfoOrB
}
private int backupType_ = 0;
+
/**
*
*
@@ -3057,6 +3149,7 @@ public com.google.bigtable.admin.v2.EncryptionInfoOrBuilder getEncryptionInfoOrB
public int getBackupTypeValue() {
return backupType_;
}
+
/**
*
*
@@ -3075,6 +3168,7 @@ public Builder setBackupTypeValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -3092,6 +3186,7 @@ public com.google.bigtable.admin.v2.Backup.BackupType getBackupType() {
com.google.bigtable.admin.v2.Backup.BackupType.forNumber(backupType_);
return result == null ? com.google.bigtable.admin.v2.Backup.BackupType.UNRECOGNIZED : result;
}
+
/**
*
*
@@ -3113,6 +3208,7 @@ public Builder setBackupType(com.google.bigtable.admin.v2.Backup.BackupType valu
onChanged();
return this;
}
+
/**
*
*
@@ -3137,6 +3233,7 @@ public Builder clearBackupType() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
hotToStandardTimeBuilder_;
+
/**
*
*
@@ -3158,6 +3255,7 @@ public Builder clearBackupType() {
public boolean hasHotToStandardTime() {
return ((bitField0_ & 0x00000400) != 0);
}
+
/**
*
*
@@ -3185,6 +3283,7 @@ public com.google.protobuf.Timestamp getHotToStandardTime() {
return hotToStandardTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -3214,6 +3313,7 @@ public Builder setHotToStandardTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -3240,6 +3340,7 @@ public Builder setHotToStandardTime(com.google.protobuf.Timestamp.Builder builde
onChanged();
return this;
}
+
/**
*
*
@@ -3274,6 +3375,7 @@ public Builder mergeHotToStandardTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -3300,6 +3402,7 @@ public Builder clearHotToStandardTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -3321,6 +3424,7 @@ public com.google.protobuf.Timestamp.Builder getHotToStandardTimeBuilder() {
onChanged();
return getHotToStandardTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -3346,6 +3450,7 @@ public com.google.protobuf.TimestampOrBuilder getHotToStandardTimeOrBuilder() {
: hotToStandardTime_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupInfo.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupInfo.java
index b89b0a8bee..028a7c8753 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupInfo.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupInfo.java
@@ -33,6 +33,7 @@ public final class BackupInfo extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.BackupInfo)
BackupInfoOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use BackupInfo.newBuilder() to construct.
private BackupInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -70,6 +71,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object backup_ = "";
+
/**
*
*
@@ -93,6 +95,7 @@ public java.lang.String getBackup() {
return s;
}
}
+
/**
*
*
@@ -119,6 +122,7 @@ public com.google.protobuf.ByteString getBackupBytes() {
public static final int START_TIME_FIELD_NUMBER = 2;
private com.google.protobuf.Timestamp startTime_;
+
/**
*
*
@@ -136,6 +140,7 @@ public com.google.protobuf.ByteString getBackupBytes() {
public boolean hasStartTime() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -153,6 +158,7 @@ public boolean hasStartTime() {
public com.google.protobuf.Timestamp getStartTime() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
+
/**
*
*
@@ -171,6 +177,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public static final int END_TIME_FIELD_NUMBER = 3;
private com.google.protobuf.Timestamp endTime_;
+
/**
*
*
@@ -188,6 +195,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public boolean hasEndTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -205,6 +213,7 @@ public boolean hasEndTime() {
public com.google.protobuf.Timestamp getEndTime() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
+
/**
*
*
@@ -225,6 +234,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
@SuppressWarnings("serial")
private volatile java.lang.Object sourceTable_ = "";
+
/**
*
*
@@ -248,6 +258,7 @@ public java.lang.String getSourceTable() {
return s;
}
}
+
/**
*
*
@@ -276,6 +287,7 @@ public com.google.protobuf.ByteString getSourceTableBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object sourceBackup_ = "";
+
/**
*
*
@@ -302,6 +314,7 @@ public java.lang.String getSourceBackup() {
return s;
}
}
+
/**
*
*
@@ -533,6 +546,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -794,6 +808,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object backup_ = "";
+
/**
*
*
@@ -816,6 +831,7 @@ public java.lang.String getBackup() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -838,6 +854,7 @@ public com.google.protobuf.ByteString getBackupBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -859,6 +876,7 @@ public Builder setBackup(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -876,6 +894,7 @@ public Builder clearBackup() {
onChanged();
return this;
}
+
/**
*
*
@@ -905,6 +924,7 @@ public Builder setBackupBytes(com.google.protobuf.ByteString value) {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
startTimeBuilder_;
+
/**
*
*
@@ -921,6 +941,7 @@ public Builder setBackupBytes(com.google.protobuf.ByteString value) {
public boolean hasStartTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -941,6 +962,7 @@ public com.google.protobuf.Timestamp getStartTime() {
return startTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -965,6 +987,7 @@ public Builder setStartTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -986,6 +1009,7 @@ public Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValu
onChanged();
return this;
}
+
/**
*
*
@@ -1015,6 +1039,7 @@ public Builder mergeStartTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1036,6 +1061,7 @@ public Builder clearStartTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1052,6 +1078,7 @@ public com.google.protobuf.Timestamp.Builder getStartTimeBuilder() {
onChanged();
return getStartTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1070,6 +1097,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
}
+
/**
*
*
@@ -1104,6 +1132,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
endTimeBuilder_;
+
/**
*
*
@@ -1120,6 +1149,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public boolean hasEndTime() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -1140,6 +1170,7 @@ public com.google.protobuf.Timestamp getEndTime() {
return endTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1164,6 +1195,7 @@ public Builder setEndTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1185,6 +1217,7 @@ public Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue)
onChanged();
return this;
}
+
/**
*
*
@@ -1214,6 +1247,7 @@ public Builder mergeEndTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1235,6 +1269,7 @@ public Builder clearEndTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1251,6 +1286,7 @@ public com.google.protobuf.Timestamp.Builder getEndTimeBuilder() {
onChanged();
return getEndTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1269,6 +1305,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
}
+
/**
*
*
@@ -1298,6 +1335,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
}
private java.lang.Object sourceTable_ = "";
+
/**
*
*
@@ -1320,6 +1358,7 @@ public java.lang.String getSourceTable() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1342,6 +1381,7 @@ public com.google.protobuf.ByteString getSourceTableBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1363,6 +1403,7 @@ public Builder setSourceTable(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1380,6 +1421,7 @@ public Builder clearSourceTable() {
onChanged();
return this;
}
+
/**
*
*
@@ -1404,6 +1446,7 @@ public Builder setSourceTableBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object sourceBackup_ = "";
+
/**
*
*
@@ -1429,6 +1472,7 @@ public java.lang.String getSourceBackup() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1454,6 +1498,7 @@ public com.google.protobuf.ByteString getSourceBackupBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1478,6 +1523,7 @@ public Builder setSourceBackup(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1498,6 +1544,7 @@ public Builder clearSourceBackup() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupInfoOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupInfoOrBuilder.java
index a5ed594097..d25481e0f2 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupInfoOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupInfoOrBuilder.java
@@ -36,6 +36,7 @@ public interface BackupInfoOrBuilder
* @return The backup.
*/
java.lang.String getBackup();
+
/**
*
*
@@ -63,6 +64,7 @@ public interface BackupInfoOrBuilder
* @return Whether the startTime field is set.
*/
boolean hasStartTime();
+
/**
*
*
@@ -77,6 +79,7 @@ public interface BackupInfoOrBuilder
* @return The startTime.
*/
com.google.protobuf.Timestamp getStartTime();
+
/**
*
*
@@ -104,6 +107,7 @@ public interface BackupInfoOrBuilder
* @return Whether the endTime field is set.
*/
boolean hasEndTime();
+
/**
*
*
@@ -118,6 +122,7 @@ public interface BackupInfoOrBuilder
* @return The endTime.
*/
com.google.protobuf.Timestamp getEndTime();
+
/**
*
*
@@ -143,6 +148,7 @@ public interface BackupInfoOrBuilder
* @return The sourceTable.
*/
java.lang.String getSourceTable();
+
/**
*
*
@@ -171,6 +177,7 @@ public interface BackupInfoOrBuilder
* @return The sourceBackup.
*/
java.lang.String getSourceBackup();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupOrBuilder.java
index ca248b61e3..3b929b3fbd 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BackupOrBuilder.java
@@ -45,6 +45,7 @@ public interface BackupOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -83,6 +84,7 @@ public interface BackupOrBuilder
* @return The sourceTable.
*/
java.lang.String getSourceTable();
+
/**
*
*
@@ -115,6 +117,7 @@ public interface BackupOrBuilder
* @return The sourceBackup.
*/
java.lang.String getSourceBackup();
+
/**
*
*
@@ -150,6 +153,7 @@ public interface BackupOrBuilder
* @return Whether the expireTime field is set.
*/
boolean hasExpireTime();
+
/**
*
*
@@ -169,6 +173,7 @@ public interface BackupOrBuilder
* @return The expireTime.
*/
com.google.protobuf.Timestamp getExpireTime();
+
/**
*
*
@@ -204,6 +209,7 @@ public interface BackupOrBuilder
* @return Whether the startTime field is set.
*/
boolean hasStartTime();
+
/**
*
*
@@ -221,6 +227,7 @@ public interface BackupOrBuilder
* @return The startTime.
*/
com.google.protobuf.Timestamp getStartTime();
+
/**
*
*
@@ -251,6 +258,7 @@ public interface BackupOrBuilder
* @return Whether the endTime field is set.
*/
boolean hasEndTime();
+
/**
*
*
@@ -265,6 +273,7 @@ public interface BackupOrBuilder
* @return The endTime.
*/
com.google.protobuf.Timestamp getEndTime();
+
/**
*
*
@@ -305,6 +314,7 @@ public interface BackupOrBuilder
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
+
/**
*
*
@@ -334,6 +344,7 @@ public interface BackupOrBuilder
* @return Whether the encryptionInfo field is set.
*/
boolean hasEncryptionInfo();
+
/**
*
*
@@ -348,6 +359,7 @@ public interface BackupOrBuilder
* @return The encryptionInfo.
*/
com.google.bigtable.admin.v2.EncryptionInfo getEncryptionInfo();
+
/**
*
*
@@ -373,6 +385,7 @@ public interface BackupOrBuilder
* @return The enum numeric value on the wire for backupType.
*/
int getBackupTypeValue();
+
/**
*
*
@@ -405,6 +418,7 @@ public interface BackupOrBuilder
* @return Whether the hotToStandardTime field is set.
*/
boolean hasHotToStandardTime();
+
/**
*
*
@@ -424,6 +438,7 @@ public interface BackupOrBuilder
* @return The hotToStandardTime.
*/
com.google.protobuf.Timestamp getHotToStandardTime();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BigtableTableAdminProto.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BigtableTableAdminProto.java
index 43cbf26d45..bf65b56403 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BigtableTableAdminProto.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/BigtableTableAdminProto.java
@@ -225,7 +225,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
static {
java.lang.String[] descriptorData = {
- "\n3google/bigtable/admin/v2/bigtable_tabl"
+ "\n"
+ + "3google/bigtable/admin/v2/bigtable_tabl"
+ "e_admin.proto\022\030google.bigtable.admin.v2\032"
+ "\034google/api/annotations.proto\032\027google/ap"
+ "i/client.proto\032\037google/api/field_behavio"
@@ -234,355 +235,364 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "e/bigtable/admin/v2/table.proto\032\036google/"
+ "iam/v1/iam_policy.proto\032\032google/iam/v1/p"
+ "olicy.proto\032#google/longrunning/operatio"
- + "ns.proto\032\036google/protobuf/duration.proto"
- + "\032\033google/protobuf/empty.proto\032 google/pr"
- + "otobuf/field_mask.proto\032\037google/protobuf"
- + "/timestamp.proto\"\261\001\n\023RestoreTableRequest"
- + "\022=\n\006parent\030\001 \001(\tB-\340A\002\372A\'\n%bigtableadmin."
- + "googleapis.com/Instance\022\025\n\010table_id\030\002 \001("
- + "\tB\003\340A\002\022:\n\006backup\030\003 \001(\tB(\372A%\n#bigtableadm"
- + "in.googleapis.com/BackupH\000B\010\n\006source\"\230\002\n"
- + "\024RestoreTableMetadata\022\014\n\004name\030\001 \001(\t\022@\n\013s"
- + "ource_type\030\002 \001(\0162+.google.bigtable.admin"
- + ".v2.RestoreSourceType\022;\n\013backup_info\030\003 \001"
- + "(\0132$.google.bigtable.admin.v2.BackupInfo"
- + "H\000\022%\n\035optimize_table_operation_name\030\004 \001("
- + "\t\022=\n\010progress\030\005 \001(\0132+.google.bigtable.ad"
- + "min.v2.OperationProgressB\r\n\013source_info\""
- + "l\n\035OptimizeRestoredTableMetadata\022\014\n\004name"
- + "\030\001 \001(\t\022=\n\010progress\030\002 \001(\0132+.google.bigtab"
- + "le.admin.v2.OperationProgress\"\201\002\n\022Create"
- + "TableRequest\022=\n\006parent\030\001 \001(\tB-\340A\002\372A\'\n%bi"
- + "gtableadmin.googleapis.com/Instance\022\025\n\010t"
- + "able_id\030\002 \001(\tB\003\340A\002\0223\n\005table\030\003 \001(\0132\037.goog"
- + "le.bigtable.admin.v2.TableB\003\340A\002\022J\n\016initi"
- + "al_splits\030\004 \003(\01322.google.bigtable.admin."
- + "v2.CreateTableRequest.Split\032\024\n\005Split\022\013\n\003"
- + "key\030\001 \001(\014\"\276\001\n\036CreateTableFromSnapshotReq"
- + "uest\022=\n\006parent\030\001 \001(\tB-\340A\002\372A\'\n%bigtablead"
- + "min.googleapis.com/Instance\022\025\n\010table_id\030"
- + "\002 \001(\tB\003\340A\002\022F\n\017source_snapshot\030\003 \001(\tB-\340A\002"
- + "\372A\'\n%bigtableadmin.googleapis.com/Snapsh"
- + "ot\"\231\001\n\023DropRowRangeRequest\0228\n\004name\030\001 \001(\t"
- + "B*\340A\002\372A$\n\"bigtableadmin.googleapis.com/T"
- + "able\022\030\n\016row_key_prefix\030\002 \001(\014H\000\022$\n\032delete"
- + "_all_data_from_table\030\003 \001(\010H\000B\010\n\006target\"\255"
- + "\001\n\021ListTablesRequest\022=\n\006parent\030\001 \001(\tB-\340A"
- + "\002\372A\'\n%bigtableadmin.googleapis.com/Insta"
- + "nce\0222\n\004view\030\002 \001(\0162$.google.bigtable.admi"
- + "n.v2.Table.View\022\021\n\tpage_size\030\004 \001(\005\022\022\n\npa"
- + "ge_token\030\003 \001(\t\"^\n\022ListTablesResponse\022/\n\006"
- + "tables\030\001 \003(\0132\037.google.bigtable.admin.v2."
- + "Table\022\027\n\017next_page_token\030\002 \001(\t\"\177\n\017GetTab"
- + "leRequest\0228\n\004name\030\001 \001(\tB*\340A\002\372A$\n\"bigtabl"
- + "eadmin.googleapis.com/Table\0222\n\004view\030\002 \001("
- + "\0162$.google.bigtable.admin.v2.Table.View\""
- + "\235\001\n\022UpdateTableRequest\0223\n\005table\030\001 \001(\0132\037."
- + "google.bigtable.admin.v2.TableB\003\340A\002\0224\n\013u"
- + "pdate_mask\030\002 \001(\0132\032.google.protobuf.Field"
- + "MaskB\003\340A\002\022\034\n\017ignore_warnings\030\003 \001(\010B\003\340A\001\""
- + "\201\001\n\023UpdateTableMetadata\022\014\n\004name\030\001 \001(\t\022.\n"
- + "\nstart_time\030\002 \001(\0132\032.google.protobuf.Time"
- + "stamp\022,\n\010end_time\030\003 \001(\0132\032.google.protobu"
- + "f.Timestamp\"N\n\022DeleteTableRequest\0228\n\004nam"
- + "e\030\001 \001(\tB*\340A\002\372A$\n\"bigtableadmin.googleapi"
- + "s.com/Table\"P\n\024UndeleteTableRequest\0228\n\004n"
- + "ame\030\001 \001(\tB*\340A\002\372A$\n\"bigtableadmin.googlea"
- + "pis.com/Table\"\203\001\n\025UndeleteTableMetadata\022"
- + "\014\n\004name\030\001 \001(\t\022.\n\nstart_time\030\002 \001(\0132\032.goog"
- + "le.protobuf.Timestamp\022,\n\010end_time\030\003 \001(\0132"
- + "\032.google.protobuf.Timestamp\"\263\003\n\033ModifyCo"
- + "lumnFamiliesRequest\0228\n\004name\030\001 \001(\tB*\340A\002\372A"
- + "$\n\"bigtableadmin.googleapis.com/Table\022^\n"
- + "\rmodifications\030\002 \003(\0132B.google.bigtable.a"
- + "dmin.v2.ModifyColumnFamiliesRequest.Modi"
- + "ficationB\003\340A\002\022\034\n\017ignore_warnings\030\003 \001(\010B\003"
- + "\340A\001\032\333\001\n\014Modification\022\n\n\002id\030\001 \001(\t\0228\n\006crea"
- + "te\030\002 \001(\0132&.google.bigtable.admin.v2.Colu"
- + "mnFamilyH\000\0228\n\006update\030\003 \001(\0132&.google.bigt"
- + "able.admin.v2.ColumnFamilyH\000\022\016\n\004drop\030\004 \001"
- + "(\010H\000\0224\n\013update_mask\030\006 \001(\0132\032.google.proto"
- + "buf.FieldMaskB\003\340A\001B\005\n\003mod\"[\n\037GenerateCon"
- + "sistencyTokenRequest\0228\n\004name\030\001 \001(\tB*\340A\002\372"
- + "A$\n\"bigtableadmin.googleapis.com/Table\"="
- + "\n GenerateConsistencyTokenResponse\022\031\n\021co"
- + "nsistency_token\030\001 \001(\t\"\262\002\n\027CheckConsisten"
- + "cyRequest\0228\n\004name\030\001 \001(\tB*\340A\002\372A$\n\"bigtabl"
- + "eadmin.googleapis.com/Table\022\036\n\021consisten"
- + "cy_token\030\002 \001(\tB\003\340A\002\022Y\n\033standard_read_rem"
- + "ote_writes\030\003 \001(\01322.google.bigtable.admin"
- + ".v2.StandardReadRemoteWritesH\000\022Z\n\034data_b"
- + "oost_read_local_writes\030\004 \001(\01322.google.bi"
- + "gtable.admin.v2.DataBoostReadLocalWrites"
- + "H\000B\006\n\004mode\"\032\n\030StandardReadRemoteWrites\"\032"
- + "\n\030DataBoostReadLocalWrites\".\n\030CheckConsi"
- + "stencyResponse\022\022\n\nconsistent\030\001 \001(\010\"\346\001\n\024S"
- + "napshotTableRequest\0228\n\004name\030\001 \001(\tB*\340A\002\372A"
- + "$\n\"bigtableadmin.googleapis.com/Table\022=\n"
- + "\007cluster\030\002 \001(\tB,\340A\002\372A&\n$bigtableadmin.go"
- + "ogleapis.com/Cluster\022\030\n\013snapshot_id\030\003 \001("
- + "\tB\003\340A\002\022&\n\003ttl\030\004 \001(\0132\031.google.protobuf.Du"
- + "ration\022\023\n\013description\030\005 \001(\t\"Q\n\022GetSnapsh"
- + "otRequest\022;\n\004name\030\001 \001(\tB-\340A\002\372A\'\n%bigtabl"
- + "eadmin.googleapis.com/Snapshot\"{\n\024ListSn"
- + "apshotsRequest\022<\n\006parent\030\001 \001(\tB,\340A\002\372A&\n$"
- + "bigtableadmin.googleapis.com/Cluster\022\021\n\t"
- + "page_size\030\002 \001(\005\022\022\n\npage_token\030\003 \001(\t\"g\n\025L"
- + "istSnapshotsResponse\0225\n\tsnapshots\030\001 \003(\0132"
- + "\".google.bigtable.admin.v2.Snapshot\022\027\n\017n"
- + "ext_page_token\030\002 \001(\t\"T\n\025DeleteSnapshotRe"
- + "quest\022;\n\004name\030\001 \001(\tB-\340A\002\372A\'\n%bigtableadm"
- + "in.googleapis.com/Snapshot\"\304\001\n\025SnapshotT"
- + "ableMetadata\022H\n\020original_request\030\001 \001(\0132."
- + ".google.bigtable.admin.v2.SnapshotTableR"
- + "equest\0220\n\014request_time\030\002 \001(\0132\032.google.pr"
- + "otobuf.Timestamp\022/\n\013finish_time\030\003 \001(\0132\032."
- + "google.protobuf.Timestamp\"\330\001\n\037CreateTabl"
- + "eFromSnapshotMetadata\022R\n\020original_reques"
- + "t\030\001 \001(\01328.google.bigtable.admin.v2.Creat"
- + "eTableFromSnapshotRequest\0220\n\014request_tim"
- + "e\030\002 \001(\0132\032.google.protobuf.Timestamp\022/\n\013f"
- + "inish_time\030\003 \001(\0132\032.google.protobuf.Times"
- + "tamp\"\242\001\n\023CreateBackupRequest\022<\n\006parent\030\001"
- + " \001(\tB,\340A\002\372A&\n$bigtableadmin.googleapis.c"
- + "om/Cluster\022\026\n\tbackup_id\030\002 \001(\tB\003\340A\002\0225\n\006ba"
- + "ckup\030\003 \001(\0132 .google.bigtable.admin.v2.Ba"
- + "ckupB\003\340A\002\"\230\001\n\024CreateBackupMetadata\022\014\n\004na"
- + "me\030\001 \001(\t\022\024\n\014source_table\030\002 \001(\t\022.\n\nstart_"
- + "time\030\003 \001(\0132\032.google.protobuf.Timestamp\022,"
- + "\n\010end_time\030\004 \001(\0132\032.google.protobuf.Times"
- + "tamp\"\202\001\n\023UpdateBackupRequest\0225\n\006backup\030\001"
- + " \001(\0132 .google.bigtable.admin.v2.BackupB\003"
- + "\340A\002\0224\n\013update_mask\030\002 \001(\0132\032.google.protob"
- + "uf.FieldMaskB\003\340A\002\"M\n\020GetBackupRequest\0229\n"
- + "\004name\030\001 \001(\tB+\340A\002\372A%\n#bigtableadmin.googl"
- + "eapis.com/Backup\"P\n\023DeleteBackupRequest\022"
- + "9\n\004name\030\001 \001(\tB+\340A\002\372A%\n#bigtableadmin.goo"
- + "gleapis.com/Backup\"\233\001\n\022ListBackupsReques"
- + "t\022<\n\006parent\030\001 \001(\tB,\340A\002\372A&\n$bigtableadmin"
- + ".googleapis.com/Cluster\022\016\n\006filter\030\002 \001(\t\022"
- + "\020\n\010order_by\030\003 \001(\t\022\021\n\tpage_size\030\004 \001(\005\022\022\n\n"
- + "page_token\030\005 \001(\t\"a\n\023ListBackupsResponse\022"
- + "1\n\007backups\030\001 \003(\0132 .google.bigtable.admin"
- + ".v2.Backup\022\027\n\017next_page_token\030\002 \001(\t\"\343\001\n\021"
- + "CopyBackupRequest\022<\n\006parent\030\001 \001(\tB,\340A\002\372A"
- + "&\n$bigtableadmin.googleapis.com/Cluster\022"
- + "\026\n\tbackup_id\030\002 \001(\tB\003\340A\002\022B\n\rsource_backup"
- + "\030\003 \001(\tB+\340A\002\372A%\n#bigtableadmin.googleapis"
- + ".com/Backup\0224\n\013expire_time\030\004 \001(\0132\032.googl"
- + "e.protobuf.TimestampB\003\340A\002\"\315\001\n\022CopyBackup"
- + "Metadata\0226\n\004name\030\001 \001(\tB(\372A%\n#bigtableadm"
- + "in.googleapis.com/Backup\022@\n\022source_backu"
- + "p_info\030\002 \001(\0132$.google.bigtable.admin.v2."
- + "BackupInfo\022=\n\010progress\030\003 \001(\0132+.google.bi"
- + "gtable.admin.v2.OperationProgress\"\313\001\n\033Cr"
- + "eateAuthorizedViewRequest\022C\n\006parent\030\001 \001("
- + "\tB3\340A\002\372A-\022+bigtableadmin.googleapis.com/"
- + "AuthorizedView\022\037\n\022authorized_view_id\030\002 \001"
- + "(\tB\003\340A\002\022F\n\017authorized_view\030\003 \001(\0132(.googl"
- + "e.bigtable.admin.v2.AuthorizedViewB\003\340A\002\""
- + "\322\001\n\034CreateAuthorizedViewMetadata\022O\n\020orig"
- + "inal_request\030\001 \001(\01325.google.bigtable.adm"
- + "in.v2.CreateAuthorizedViewRequest\0220\n\014req"
- + "uest_time\030\002 \001(\0132\032.google.protobuf.Timest"
- + "amp\022/\n\013finish_time\030\003 \001(\0132\032.google.protob"
- + "uf.Timestamp\"\334\001\n\032ListAuthorizedViewsRequ"
- + "est\022C\n\006parent\030\001 \001(\tB3\340A\002\372A-\022+bigtableadm"
- + "in.googleapis.com/AuthorizedView\022\026\n\tpage"
- + "_size\030\002 \001(\005B\003\340A\001\022\027\n\npage_token\030\003 \001(\tB\003\340A"
- + "\001\022H\n\004view\030\004 \001(\01625.google.bigtable.admin."
- + "v2.AuthorizedView.ResponseViewB\003\340A\001\"z\n\033L"
- + "istAuthorizedViewsResponse\022B\n\020authorized"
- + "_views\030\001 \003(\0132(.google.bigtable.admin.v2."
- + "AuthorizedView\022\027\n\017next_page_token\030\002 \001(\t\""
- + "\247\001\n\030GetAuthorizedViewRequest\022A\n\004name\030\001 \001"
- + "(\tB3\340A\002\372A-\n+bigtableadmin.googleapis.com"
- + "/AuthorizedView\022H\n\004view\030\002 \001(\01625.google.b"
- + "igtable.admin.v2.AuthorizedView.Response"
- + "ViewB\003\340A\001\"\271\001\n\033UpdateAuthorizedViewReques"
- + "t\022F\n\017authorized_view\030\001 \001(\0132(.google.bigt"
- + "able.admin.v2.AuthorizedViewB\003\340A\002\0224\n\013upd"
- + "ate_mask\030\002 \001(\0132\032.google.protobuf.FieldMa"
- + "skB\003\340A\001\022\034\n\017ignore_warnings\030\003 \001(\010B\003\340A\001\"\322\001"
- + "\n\034UpdateAuthorizedViewMetadata\022O\n\020origin"
- + "al_request\030\001 \001(\01325.google.bigtable.admin"
- + ".v2.UpdateAuthorizedViewRequest\0220\n\014reque"
- + "st_time\030\002 \001(\0132\032.google.protobuf.Timestam"
- + "p\022/\n\013finish_time\030\003 \001(\0132\032.google.protobuf"
- + ".Timestamp\"s\n\033DeleteAuthorizedViewReques"
- + "t\022A\n\004name\030\001 \001(\tB3\340A\002\372A-\n+bigtableadmin.g"
- + "oogleapis.com/AuthorizedView\022\021\n\004etag\030\002 \001"
- + "(\tB\003\340A\0012\2663\n\022BigtableTableAdmin\022\253\001\n\013Creat"
- + "eTable\022,.google.bigtable.admin.v2.Create"
+ + "ns.proto\032\036google/protobuf/duration.proto\032\033google/protobuf/empty.proto\032"
+ + " google/protobuf/field_mask.proto\032\037google/protobuf/timestamp.proto\"\261\001\n"
+ + "\023RestoreTableRequest\022=\n"
+ + "\006parent\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Instance\022\025\n"
+ + "\010table_id\030\002 \001(\tB\003\340A\002\022:\n"
+ + "\006backup\030\003 \001(\tB(\372A%\n"
+ + "#bigtableadmin.googleapis.com/BackupH\000B\010\n"
+ + "\006source\"\230\002\n"
+ + "\024RestoreTableMetadata\022\014\n"
+ + "\004name\030\001 \001(\t\022@\n"
+ + "\013source_type\030\002 \001(\0162+.google.bigtable.admin.v2.RestoreSourceType\022;\n"
+ + "\013backup_info\030\003 \001(\0132$.google.bigtable.admin.v2.BackupInfoH\000\022%\n"
+ + "\035optimize_table_operation_name\030\004 \001(\t\022=\n"
+ + "\010progress\030\005 \001(\0132+.google.bigtable.admin.v2.OperationProgressB\r\n"
+ + "\013source_info\"l\n"
+ + "\035OptimizeRestoredTableMetadata\022\014\n"
+ + "\004name\030\001 \001(\t\022=\n"
+ + "\010progress\030\002"
+ + " \001(\0132+.google.bigtable.admin.v2.OperationProgress\"\201\002\n"
+ + "\022CreateTableRequest\022=\n"
+ + "\006parent\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Instance\022\025\n"
+ + "\010table_id\030\002 \001(\tB\003\340A\002\0223\n"
+ + "\005table\030\003 \001(\0132\037.google.bigtable.admin.v2.TableB\003\340A\002\022J\n"
+ + "\016initial_splits\030\004"
+ + " \003(\01322.google.bigtable.admin.v2.CreateTableRequest.Split\032\024\n"
+ + "\005Split\022\013\n"
+ + "\003key\030\001 \001(\014\"\276\001\n"
+ + "\036CreateTableFromSnapshotRequest\022=\n"
+ + "\006parent\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Instance\022\025\n"
+ + "\010table_id\030\002 \001(\tB\003\340A\002\022F\n"
+ + "\017source_snapshot\030\003 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Snapshot\"\231\001\n"
+ + "\023DropRowRangeRequest\0228\n"
+ + "\004name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022\030\n"
+ + "\016row_key_prefix\030\002 \001(\014H\000\022$\n"
+ + "\032delete_all_data_from_table\030\003 \001(\010H\000B\010\n"
+ + "\006target\"\255\001\n"
+ + "\021ListTablesRequest\022=\n"
+ + "\006parent\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Instance\0222\n"
+ + "\004view\030\002 \001(\0162$.google.bigtable.admin.v2.Table.View\022\021\n"
+ + "\tpage_size\030\004 \001(\005\022\022\n\n"
+ + "page_token\030\003 \001(\t\"^\n"
+ + "\022ListTablesResponse\022/\n"
+ + "\006tables\030\001 \003(\0132\037.google.bigtable.admin.v2.Table\022\027\n"
+ + "\017next_page_token\030\002 \001(\t\"\177\n"
+ + "\017GetTableRequest\0228\n"
+ + "\004name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\0222\n"
+ + "\004view\030\002 \001(\0162$.google.bigtable.admin.v2.Table.View\"\235\001\n"
+ + "\022UpdateTableRequest\0223\n"
+ + "\005table\030\001 \001(\0132\037.google.bigtable.admin.v2.TableB\003\340A\002\0224\n"
+ + "\013update_mask\030\002"
+ + " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\022\034\n"
+ + "\017ignore_warnings\030\003 \001(\010B\003\340A\001\"\201\001\n"
+ + "\023UpdateTableMetadata\022\014\n"
+ + "\004name\030\001 \001(\t\022.\n"
+ + "\n"
+ + "start_time\030\002 \001(\0132\032.google.protobuf.Timestamp\022,\n"
+ + "\010end_time\030\003 \001(\0132\032.google.protobuf.Timestamp\"N\n"
+ + "\022DeleteTableRequest\0228\n"
+ + "\004name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\"P\n"
+ + "\024UndeleteTableRequest\0228\n"
+ + "\004name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\"\203\001\n"
+ + "\025UndeleteTableMetadata\022\014\n"
+ + "\004name\030\001 \001(\t\022.\n\n"
+ + "start_time\030\002 \001(\0132\032.google.protobuf.Timestamp\022,\n"
+ + "\010end_time\030\003 \001(\0132\032.google.protobuf.Timestamp\"\263\003\n"
+ + "\033ModifyColumnFamiliesRequest\0228\n"
+ + "\004name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022^\n"
+ + "\r"
+ + "modifications\030\002 \003(\0132B.google.bigtable.a"
+ + "dmin.v2.ModifyColumnFamiliesRequest.ModificationB\003\340A\002\022\034\n"
+ + "\017ignore_warnings\030\003 \001(\010B\003\340A\001\032\333\001\n"
+ + "\014Modification\022\n\n"
+ + "\002id\030\001 \001(\t\0228\n"
+ + "\006create\030\002 \001(\0132&.google.bigtable.admin.v2.ColumnFamilyH\000\0228\n"
+ + "\006update\030\003 \001(\0132&.google.bigtable.admin.v2.ColumnFamilyH\000\022\016\n"
+ + "\004drop\030\004 \001(\010H\000\0224\n"
+ + "\013update_mask\030\006 \001(\0132\032.google.protobuf.FieldMaskB\003\340A\001B\005\n"
+ + "\003mod\"[\n"
+ + "\037GenerateConsistencyTokenRequest\0228\n"
+ + "\004name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\"=\n"
+ + " GenerateConsistencyTokenResponse\022\031\n"
+ + "\021consistency_token\030\001 \001(\t\"\262\002\n"
+ + "\027CheckConsistencyRequest\0228\n"
+ + "\004name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022\036\n"
+ + "\021consistency_token\030\002 \001(\tB\003\340A\002\022Y\n"
+ + "\033standard_read_remote_writes\030\003"
+ + " \001(\01322.google.bigtable.admin.v2.StandardReadRemoteWritesH\000\022Z\n"
+ + "\034data_boost_read_local_writes\030\004 \001(\01322.google.bi"
+ + "gtable.admin.v2.DataBoostReadLocalWritesH\000B\006\n"
+ + "\004mode\"\032\n"
+ + "\030StandardReadRemoteWrites\"\032\n"
+ + "\030DataBoostReadLocalWrites\".\n"
+ + "\030CheckConsistencyResponse\022\022\n\n"
+ + "consistent\030\001 \001(\010\"\346\001\n"
+ + "\024SnapshotTableRequest\0228\n"
+ + "\004name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022=\n"
+ + "\007cluster\030\002 \001(\tB,\340A\002\372A&\n"
+ + "$bigtableadmin.googleapis.com/Cluster\022\030\n"
+ + "\013snapshot_id\030\003 \001(\tB\003\340A\002\022&\n"
+ + "\003ttl\030\004 \001(\0132\031.google.protobuf.Duration\022\023\n"
+ + "\013description\030\005 \001(\t\"Q\n"
+ + "\022GetSnapshotRequest\022;\n"
+ + "\004name\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Snapshot\"{\n"
+ + "\024ListSnapshotsRequest\022<\n"
+ + "\006parent\030\001 \001(\tB,\340A\002\372A&\n"
+ + "$bigtableadmin.googleapis.com/Cluster\022\021\n"
+ + "\tpage_size\030\002 \001(\005\022\022\n\n"
+ + "page_token\030\003 \001(\t\"g\n"
+ + "\025ListSnapshotsResponse\0225\n"
+ + "\tsnapshots\030\001 \003(\0132\".google.bigtable.admin.v2.Snapshot\022\027\n"
+ + "\017next_page_token\030\002 \001(\t\"T\n"
+ + "\025DeleteSnapshotRequest\022;\n"
+ + "\004name\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Snapshot\"\304\001\n"
+ + "\025SnapshotTableMetadata\022H\n"
+ + "\020original_request\030\001 \001(\0132."
+ + ".google.bigtable.admin.v2.SnapshotTableRequest\0220\n"
+ + "\014request_time\030\002 \001(\0132\032.google.protobuf.Timestamp\022/\n"
+ + "\013finish_time\030\003 \001(\0132\032.google.protobuf.Timestamp\"\330\001\n"
+ + "\037CreateTableFromSnapshotMetadata\022R\n"
+ + "\020original_request\030\001"
+ + " \001(\01328.google.bigtable.admin.v2.CreateTableFromSnapshotRequest\0220\n"
+ + "\014request_time\030\002 \001(\0132\032.google.protobuf.Timestamp\022/\n"
+ + "\013finish_time\030\003 \001(\0132\032.google.protobuf.Timestamp\"\242\001\n"
+ + "\023CreateBackupRequest\022<\n"
+ + "\006parent\030\001 \001(\tB,\340A\002\372A&\n"
+ + "$bigtableadmin.googleapis.com/Cluster\022\026\n"
+ + "\tbackup_id\030\002 \001(\tB\003\340A\002\0225\n"
+ + "\006backup\030\003 \001(\0132"
+ + " .google.bigtable.admin.v2.BackupB\003\340A\002\"\230\001\n"
+ + "\024CreateBackupMetadata\022\014\n"
+ + "\004name\030\001 \001(\t\022\024\n"
+ + "\014source_table\030\002 \001(\t\022.\n\n"
+ + "start_time\030\003 \001(\0132\032.google.protobuf.Timestamp\022,\n"
+ + "\010end_time\030\004 \001(\0132\032.google.protobuf.Timestamp\"\202\001\n"
+ + "\023UpdateBackupRequest\0225\n"
+ + "\006backup\030\001 \001(\0132 .google.bigtable.admin.v2.BackupB\003\340A\002\0224\n"
+ + "\013update_mask\030\002 \001(\0132\032.google.protobuf.FieldMaskB\003\340A\002\"M\n"
+ + "\020GetBackupRequest\0229\n"
+ + "\004name\030\001 \001(\tB+\340A\002\372A%\n"
+ + "#bigtableadmin.googleapis.com/Backup\"P\n"
+ + "\023DeleteBackupRequest\0229\n"
+ + "\004name\030\001 \001(\tB+\340A\002\372A%\n"
+ + "#bigtableadmin.googleapis.com/Backup\"\233\001\n"
+ + "\022ListBackupsRequest\022<\n"
+ + "\006parent\030\001 \001(\tB,\340A\002\372A&\n"
+ + "$bigtableadmin.googleapis.com/Cluster\022\016\n"
+ + "\006filter\030\002 \001(\t\022\020\n"
+ + "\010order_by\030\003 \001(\t\022\021\n"
+ + "\tpage_size\030\004 \001(\005\022\022\n\n"
+ + "page_token\030\005 \001(\t\"a\n"
+ + "\023ListBackupsResponse\0221\n"
+ + "\007backups\030\001 \003(\0132 .google.bigtable.admin.v2.Backup\022\027\n"
+ + "\017next_page_token\030\002 \001(\t\"\343\001\n"
+ + "\021CopyBackupRequest\022<\n"
+ + "\006parent\030\001 \001(\tB,\340A\002\372A&\n"
+ + "$bigtableadmin.googleapis.com/Cluster\022\026\n"
+ + "\tbackup_id\030\002 \001(\tB\003\340A\002\022B\n\r"
+ + "source_backup\030\003 \001(\tB+\340A\002\372A%\n"
+ + "#bigtableadmin.googleapis.com/Backup\0224\n"
+ + "\013expire_time\030\004"
+ + " \001(\0132\032.google.protobuf.TimestampB\003\340A\002\"\315\001\n"
+ + "\022CopyBackupMetadata\0226\n"
+ + "\004name\030\001 \001(\tB(\372A%\n"
+ + "#bigtableadmin.googleapis.com/Backup\022@\n"
+ + "\022source_backup_info\030\002 \001(\0132$.google.bigtable.admin.v2.BackupInfo\022=\n"
+ + "\010progress\030\003"
+ + " \001(\0132+.google.bigtable.admin.v2.OperationProgress\"\313\001\n"
+ + "\033CreateAuthorizedViewRequest\022C\n"
+ + "\006parent\030\001 \001("
+ + "\tB3\340A\002\372A-\022+bigtableadmin.googleapis.com/AuthorizedView\022\037\n"
+ + "\022authorized_view_id\030\002 \001(\tB\003\340A\002\022F\n"
+ + "\017authorized_view\030\003 \001(\0132(.googl"
+ + "e.bigtable.admin.v2.AuthorizedViewB\003\340A\002\"\322\001\n"
+ + "\034CreateAuthorizedViewMetadata\022O\n"
+ + "\020original_request\030\001"
+ + " \001(\01325.google.bigtable.admin.v2.CreateAuthorizedViewRequest\0220\n"
+ + "\014request_time\030\002 \001(\0132\032.google.protobuf.Timestamp\022/\n"
+ + "\013finish_time\030\003 \001(\0132\032.google.protobuf.Timestamp\"\334\001\n"
+ + "\032ListAuthorizedViewsRequest\022C\n"
+ + "\006parent\030\001 \001("
+ + "\tB3\340A\002\372A-\022+bigtableadmin.googleapis.com/AuthorizedView\022\026\n"
+ + "\tpage_size\030\002 \001(\005B\003\340A\001\022\027\n\n"
+ + "page_token\030\003 \001(\tB\003\340A\001\022H\n"
+ + "\004view\030\004"
+ + " \001(\01625.google.bigtable.admin.v2.AuthorizedView.ResponseViewB\003\340A\001\"z\n"
+ + "\033ListAuthorizedViewsResponse\022B\n"
+ + "\020authorized_views\030\001"
+ + " \003(\0132(.google.bigtable.admin.v2.AuthorizedView\022\027\n"
+ + "\017next_page_token\030\002 \001(\t\"\247\001\n"
+ + "\030GetAuthorizedViewRequest\022A\n"
+ + "\004name\030\001 \001(\tB3\340A\002\372A-\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022H\n"
+ + "\004view\030\002 \001(\01625.google.b"
+ + "igtable.admin.v2.AuthorizedView.ResponseViewB\003\340A\001\"\271\001\n"
+ + "\033UpdateAuthorizedViewRequest\022F\n"
+ + "\017authorized_view\030\001"
+ + " \001(\0132(.google.bigtable.admin.v2.AuthorizedViewB\003\340A\002\0224\n"
+ + "\013update_mask\030\002"
+ + " \001(\0132\032.google.protobuf.FieldMaskB\003\340A\001\022\034\n"
+ + "\017ignore_warnings\030\003 \001(\010B\003\340A\001\"\322\001\n"
+ + "\034UpdateAuthorizedViewMetadata\022O\n"
+ + "\020original_request\030\001"
+ + " \001(\01325.google.bigtable.admin.v2.UpdateAuthorizedViewRequest\0220\n"
+ + "\014request_time\030\002 \001(\0132\032.google.protobuf.Timestamp\022/\n"
+ + "\013finish_time\030\003 \001(\0132\032.google.protobuf.Timestamp\"s\n"
+ + "\033DeleteAuthorizedViewRequest\022A\n"
+ + "\004name\030\001 \001(\tB3\340A\002\372A-\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022\021\n"
+ + "\004etag\030\002 \001(\tB\003\340A\0012\2663\n"
+ + "\022BigtableTableAdmin\022\253\001\n"
+ + "\013CreateTable\022,.google.bigtable.admin.v2.Create"
+ "TableRequest\032\037.google.bigtable.admin.v2."
+ "Table\"M\332A\025parent,table_id,table\202\323\344\223\002/\"*/"
- + "v2/{parent=projects/*/instances/*}/table"
- + "s:\001*\022\212\002\n\027CreateTableFromSnapshot\0228.googl"
- + "e.bigtable.admin.v2.CreateTableFromSnaps"
- + "hotRequest\032\035.google.longrunning.Operatio"
- + "n\"\225\001\312A(\n\005Table\022\037CreateTableFromSnapshotM"
+ + "v2/{parent=projects/*/instances/*}/tables:\001*\022\212\002\n"
+ + "\027CreateTableFromSnapshot\0228.google.bigtable.admin.v2.CreateTableFromSnaps"
+ + "hotRequest\032\035.google.longrunning.Operation\"\225\001\312A(\n"
+ + "\005Table\022\037CreateTableFromSnapshotM"
+ "etadata\332A\037parent,table_id,source_snapsho"
- + "t\202\323\344\223\002B\"=/v2/{parent=projects/*/instance"
- + "s/*}/tables:createFromSnapshot:\001*\022\244\001\n\nLi"
- + "stTables\022+.google.bigtable.admin.v2.List"
+ + "t\202\323\344\223\002B\"=/v2/{parent=projects/*/instances/*}/tables:createFromSnapshot:\001*\022\244\001\n\n"
+ + "ListTables\022+.google.bigtable.admin.v2.List"
+ "TablesRequest\032,.google.bigtable.admin.v2"
+ ".ListTablesResponse\";\332A\006parent\202\323\344\223\002,\022*/v"
- + "2/{parent=projects/*/instances/*}/tables"
- + "\022\221\001\n\010GetTable\022).google.bigtable.admin.v2"
+ + "2/{parent=projects/*/instances/*}/tables\022\221\001\n"
+ + "\010GetTable\022).google.bigtable.admin.v2"
+ ".GetTableRequest\032\037.google.bigtable.admin"
- + ".v2.Table\"9\332A\004name\202\323\344\223\002,\022*/v2/{name=proj"
- + "ects/*/instances/*/tables/*}\022\316\001\n\013UpdateT"
- + "able\022,.google.bigtable.admin.v2.UpdateTa"
- + "bleRequest\032\035.google.longrunning.Operatio"
- + "n\"r\312A\034\n\005Table\022\023UpdateTableMetadata\332A\021tab"
+ + ".v2.Table\"9\332A\004name\202\323\344\223\002,\022*/v2/{name=projects/*/instances/*/tables/*}\022\316\001\n"
+ + "\013UpdateTable\022,.google.bigtable.admin.v2.UpdateTa"
+ + "bleRequest\032\035.google.longrunning.Operation\"r\312A\034\n"
+ + "\005Table\022\023UpdateTableMetadata\332A\021tab"
+ "le,update_mask\202\323\344\223\002920/v2/{table.name=pr"
- + "ojects/*/instances/*/tables/*}:\005table\022\216\001"
- + "\n\013DeleteTable\022,.google.bigtable.admin.v2"
+ + "ojects/*/instances/*/tables/*}:\005table\022\216\001\n"
+ + "\013DeleteTable\022,.google.bigtable.admin.v2"
+ ".DeleteTableRequest\032\026.google.protobuf.Em"
- + "pty\"9\332A\004name\202\323\344\223\002,**/v2/{name=projects/*"
- + "/instances/*/tables/*}\022\306\001\n\rUndeleteTable"
- + "\022..google.bigtable.admin.v2.UndeleteTabl"
- + "eRequest\032\035.google.longrunning.Operation\""
- + "f\312A\036\n\005Table\022\025UndeleteTableMetadata\332A\004nam"
- + "e\202\323\344\223\0028\"3/v2/{name=projects/*/instances/"
- + "*/tables/*}:undelete:\001*\022\241\002\n\024CreateAuthor"
- + "izedView\0225.google.bigtable.admin.v2.Crea"
- + "teAuthorizedViewRequest\032\035.google.longrun"
- + "ning.Operation\"\262\001\312A.\n\016AuthorizedView\022\034Cr"
- + "eateAuthorizedViewMetadata\332A)parent,auth"
+ + "pty\"9\332A\004name\202\323\344\223\002,**/v2/{name=projects/*/instances/*/tables/*}\022\306\001\n\r"
+ + "UndeleteTable\022..google.bigtable.admin.v2.UndeleteTabl"
+ + "eRequest\032\035.google.longrunning.Operation\"f\312A\036\n"
+ + "\005Table\022\025UndeleteTableMetadata\332A\004nam"
+ + "e\202\323\344\223\0028\"3/v2/{name=projects/*/instances/*/tables/*}:undelete:\001*\022\241\002\n"
+ + "\024CreateAuthorizedView\0225.google.bigtable.admin.v2.Crea"
+ + "teAuthorizedViewRequest\032\035.google.longrunning.Operation\"\262\001\312A.\n"
+ + "\016AuthorizedView\022\034CreateAuthorizedViewMetadata\332A)parent,auth"
+ "orized_view,authorized_view_id\202\323\344\223\002O\"\022\022** builder) {
super(builder);
@@ -64,6 +65,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int bitField0_;
public static final int RETENTION_PERIOD_FIELD_NUMBER = 1;
private com.google.protobuf.Duration retentionPeriod_;
+
/**
*
*
@@ -83,6 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public boolean hasRetentionPeriod() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -104,6 +107,7 @@ public com.google.protobuf.Duration getRetentionPeriod() {
? com.google.protobuf.Duration.getDefaultInstance()
: retentionPeriod_;
}
+
/**
*
*
@@ -288,6 +292,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -492,6 +497,7 @@ public Builder mergeFrom(
com.google.protobuf.Duration.Builder,
com.google.protobuf.DurationOrBuilder>
retentionPeriodBuilder_;
+
/**
*
*
@@ -510,6 +516,7 @@ public Builder mergeFrom(
public boolean hasRetentionPeriod() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -534,6 +541,7 @@ public com.google.protobuf.Duration getRetentionPeriod() {
return retentionPeriodBuilder_.getMessage();
}
}
+
/**
*
*
@@ -560,6 +568,7 @@ public Builder setRetentionPeriod(com.google.protobuf.Duration value) {
onChanged();
return this;
}
+
/**
*
*
@@ -583,6 +592,7 @@ public Builder setRetentionPeriod(com.google.protobuf.Duration.Builder builderFo
onChanged();
return this;
}
+
/**
*
*
@@ -614,6 +624,7 @@ public Builder mergeRetentionPeriod(com.google.protobuf.Duration value) {
}
return this;
}
+
/**
*
*
@@ -637,6 +648,7 @@ public Builder clearRetentionPeriod() {
onChanged();
return this;
}
+
/**
*
*
@@ -655,6 +667,7 @@ public com.google.protobuf.Duration.Builder getRetentionPeriodBuilder() {
onChanged();
return getRetentionPeriodFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -677,6 +690,7 @@ public com.google.protobuf.DurationOrBuilder getRetentionPeriodOrBuilder() {
: retentionPeriod_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ChangeStreamConfigOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ChangeStreamConfigOrBuilder.java
index aa6a2ac3d3..c6e82d954e 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ChangeStreamConfigOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ChangeStreamConfigOrBuilder.java
@@ -40,6 +40,7 @@ public interface ChangeStreamConfigOrBuilder
* @return Whether the retentionPeriod field is set.
*/
boolean hasRetentionPeriod();
+
/**
*
*
@@ -56,6 +57,7 @@ public interface ChangeStreamConfigOrBuilder
* @return The retentionPeriod.
*/
com.google.protobuf.Duration getRetentionPeriod();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyRequest.java
index 31c3de8a8e..3e3416d4da 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyRequest.java
@@ -34,6 +34,7 @@ public final class CheckConsistencyRequest extends com.google.protobuf.Generated
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CheckConsistencyRequest)
CheckConsistencyRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CheckConsistencyRequest.newBuilder() to construct.
private CheckConsistencyRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -82,6 +83,7 @@ public enum ModeCase
private ModeCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -118,6 +120,7 @@ public ModeCase getModeCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -145,6 +148,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -177,6 +181,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object consistencyToken_ = "";
+
/**
*
*
@@ -200,6 +205,7 @@ public java.lang.String getConsistencyToken() {
return s;
}
}
+
/**
*
*
@@ -225,6 +231,7 @@ public com.google.protobuf.ByteString getConsistencyTokenBytes() {
}
public static final int STANDARD_READ_REMOTE_WRITES_FIELD_NUMBER = 3;
+
/**
*
*
@@ -243,6 +250,7 @@ public com.google.protobuf.ByteString getConsistencyTokenBytes() {
public boolean hasStandardReadRemoteWrites() {
return modeCase_ == 3;
}
+
/**
*
*
@@ -264,6 +272,7 @@ public com.google.bigtable.admin.v2.StandardReadRemoteWrites getStandardReadRemo
}
return com.google.bigtable.admin.v2.StandardReadRemoteWrites.getDefaultInstance();
}
+
/**
*
*
@@ -286,6 +295,7 @@ public com.google.bigtable.admin.v2.StandardReadRemoteWrites getStandardReadRemo
}
public static final int DATA_BOOST_READ_LOCAL_WRITES_FIELD_NUMBER = 4;
+
/**
*
*
@@ -304,6 +314,7 @@ public com.google.bigtable.admin.v2.StandardReadRemoteWrites getStandardReadRemo
public boolean hasDataBoostReadLocalWrites() {
return modeCase_ == 4;
}
+
/**
*
*
@@ -325,6 +336,7 @@ public com.google.bigtable.admin.v2.DataBoostReadLocalWrites getDataBoostReadLoc
}
return com.google.bigtable.admin.v2.DataBoostReadLocalWrites.getDefaultInstance();
}
+
/**
*
*
@@ -555,6 +567,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -819,6 +832,7 @@ public Builder clearMode() {
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -845,6 +859,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -871,6 +886,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -896,6 +912,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -917,6 +934,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -945,6 +963,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object consistencyToken_ = "";
+
/**
*
*
@@ -967,6 +986,7 @@ public java.lang.String getConsistencyToken() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -989,6 +1009,7 @@ public com.google.protobuf.ByteString getConsistencyTokenBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1010,6 +1031,7 @@ public Builder setConsistencyToken(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1027,6 +1049,7 @@ public Builder clearConsistencyToken() {
onChanged();
return this;
}
+
/**
*
*
@@ -1055,6 +1078,7 @@ public Builder setConsistencyTokenBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.StandardReadRemoteWrites.Builder,
com.google.bigtable.admin.v2.StandardReadRemoteWritesOrBuilder>
standardReadRemoteWritesBuilder_;
+
/**
*
*
@@ -1073,6 +1097,7 @@ public Builder setConsistencyTokenBytes(com.google.protobuf.ByteString value) {
public boolean hasStandardReadRemoteWrites() {
return modeCase_ == 3;
}
+
/**
*
*
@@ -1101,6 +1126,7 @@ public com.google.bigtable.admin.v2.StandardReadRemoteWrites getStandardReadRemo
return com.google.bigtable.admin.v2.StandardReadRemoteWrites.getDefaultInstance();
}
}
+
/**
*
*
@@ -1127,6 +1153,7 @@ public Builder setStandardReadRemoteWrites(
modeCase_ = 3;
return this;
}
+
/**
*
*
@@ -1150,6 +1177,7 @@ public Builder setStandardReadRemoteWrites(
modeCase_ = 3;
return this;
}
+
/**
*
*
@@ -1187,6 +1215,7 @@ public Builder mergeStandardReadRemoteWrites(
modeCase_ = 3;
return this;
}
+
/**
*
*
@@ -1215,6 +1244,7 @@ public Builder clearStandardReadRemoteWrites() {
}
return this;
}
+
/**
*
*
@@ -1231,6 +1261,7 @@ public Builder clearStandardReadRemoteWrites() {
getStandardReadRemoteWritesBuilder() {
return getStandardReadRemoteWritesFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1255,6 +1286,7 @@ public Builder clearStandardReadRemoteWrites() {
return com.google.bigtable.admin.v2.StandardReadRemoteWrites.getDefaultInstance();
}
}
+
/**
*
*
@@ -1296,6 +1328,7 @@ public Builder clearStandardReadRemoteWrites() {
com.google.bigtable.admin.v2.DataBoostReadLocalWrites.Builder,
com.google.bigtable.admin.v2.DataBoostReadLocalWritesOrBuilder>
dataBoostReadLocalWritesBuilder_;
+
/**
*
*
@@ -1314,6 +1347,7 @@ public Builder clearStandardReadRemoteWrites() {
public boolean hasDataBoostReadLocalWrites() {
return modeCase_ == 4;
}
+
/**
*
*
@@ -1342,6 +1376,7 @@ public com.google.bigtable.admin.v2.DataBoostReadLocalWrites getDataBoostReadLoc
return com.google.bigtable.admin.v2.DataBoostReadLocalWrites.getDefaultInstance();
}
}
+
/**
*
*
@@ -1368,6 +1403,7 @@ public Builder setDataBoostReadLocalWrites(
modeCase_ = 4;
return this;
}
+
/**
*
*
@@ -1391,6 +1427,7 @@ public Builder setDataBoostReadLocalWrites(
modeCase_ = 4;
return this;
}
+
/**
*
*
@@ -1428,6 +1465,7 @@ public Builder mergeDataBoostReadLocalWrites(
modeCase_ = 4;
return this;
}
+
/**
*
*
@@ -1456,6 +1494,7 @@ public Builder clearDataBoostReadLocalWrites() {
}
return this;
}
+
/**
*
*
@@ -1472,6 +1511,7 @@ public Builder clearDataBoostReadLocalWrites() {
getDataBoostReadLocalWritesBuilder() {
return getDataBoostReadLocalWritesFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1496,6 +1536,7 @@ public Builder clearDataBoostReadLocalWrites() {
return com.google.bigtable.admin.v2.DataBoostReadLocalWrites.getDefaultInstance();
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyRequestOrBuilder.java
index 3972e3b0db..acf7d10efb 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface CheckConsistencyRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -69,6 +70,7 @@ public interface CheckConsistencyRequestOrBuilder
* @return The consistencyToken.
*/
java.lang.String getConsistencyToken();
+
/**
*
*
@@ -97,6 +99,7 @@ public interface CheckConsistencyRequestOrBuilder
* @return Whether the standardReadRemoteWrites field is set.
*/
boolean hasStandardReadRemoteWrites();
+
/**
*
*
@@ -112,6 +115,7 @@ public interface CheckConsistencyRequestOrBuilder
* @return The standardReadRemoteWrites.
*/
com.google.bigtable.admin.v2.StandardReadRemoteWrites getStandardReadRemoteWrites();
+
/**
*
*
@@ -142,6 +146,7 @@ public interface CheckConsistencyRequestOrBuilder
* @return Whether the dataBoostReadLocalWrites field is set.
*/
boolean hasDataBoostReadLocalWrites();
+
/**
*
*
@@ -157,6 +162,7 @@ public interface CheckConsistencyRequestOrBuilder
* @return The dataBoostReadLocalWrites.
*/
com.google.bigtable.admin.v2.DataBoostReadLocalWrites getDataBoostReadLocalWrites();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyResponse.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyResponse.java
index 159ee69fee..6e8d37a1e0 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyResponse.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CheckConsistencyResponse.java
@@ -34,6 +34,7 @@ public final class CheckConsistencyResponse extends com.google.protobuf.Generate
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CheckConsistencyResponse)
CheckConsistencyResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CheckConsistencyResponse.newBuilder() to construct.
private CheckConsistencyResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -64,6 +65,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public static final int CONSISTENT_FIELD_NUMBER = 1;
private boolean consistent_ = false;
+
/**
*
*
@@ -241,6 +243,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -424,6 +427,7 @@ public Builder mergeFrom(
private int bitField0_;
private boolean consistent_;
+
/**
*
*
@@ -440,6 +444,7 @@ public Builder mergeFrom(
public boolean getConsistent() {
return consistent_;
}
+
/**
*
*
@@ -460,6 +465,7 @@ public Builder setConsistent(boolean value) {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Cluster.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Cluster.java
index 978cac8bbf..d282e8c737 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Cluster.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Cluster.java
@@ -35,6 +35,7 @@ public final class Cluster extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Cluster)
ClusterOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Cluster.newBuilder() to construct.
private Cluster(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -149,6 +150,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* STATE_NOT_KNOWN = 0;
*/
public static final int STATE_NOT_KNOWN_VALUE = 0;
+
/**
*
*
@@ -159,6 +161,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* READY = 1;
*/
public static final int READY_VALUE = 1;
+
/**
*
*
@@ -171,6 +174,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* CREATING = 2;
*/
public static final int CREATING_VALUE = 2;
+
/**
*
*
@@ -185,6 +189,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* RESIZING = 3;
*/
public static final int RESIZING_VALUE = 3;
+
/**
*
*
@@ -340,6 +345,7 @@ public enum NodeScalingFactor implements com.google.protobuf.ProtocolMessageEnum
* NODE_SCALING_FACTOR_UNSPECIFIED = 0;
*/
public static final int NODE_SCALING_FACTOR_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -350,6 +356,7 @@ public enum NodeScalingFactor implements com.google.protobuf.ProtocolMessageEnum
* NODE_SCALING_FACTOR_1X = 1;
*/
public static final int NODE_SCALING_FACTOR_1X_VALUE = 1;
+
/**
*
*
@@ -468,6 +475,7 @@ public interface ClusterAutoscalingConfigOrBuilder
* @return Whether the autoscalingLimits field is set.
*/
boolean hasAutoscalingLimits();
+
/**
*
*
@@ -482,6 +490,7 @@ public interface ClusterAutoscalingConfigOrBuilder
* @return The autoscalingLimits.
*/
com.google.bigtable.admin.v2.AutoscalingLimits getAutoscalingLimits();
+
/**
*
*
@@ -509,6 +518,7 @@ public interface ClusterAutoscalingConfigOrBuilder
* @return Whether the autoscalingTargets field is set.
*/
boolean hasAutoscalingTargets();
+
/**
*
*
@@ -523,6 +533,7 @@ public interface ClusterAutoscalingConfigOrBuilder
* @return The autoscalingTargets.
*/
com.google.bigtable.admin.v2.AutoscalingTargets getAutoscalingTargets();
+
/**
*
*
@@ -536,6 +547,7 @@ public interface ClusterAutoscalingConfigOrBuilder
*/
com.google.bigtable.admin.v2.AutoscalingTargetsOrBuilder getAutoscalingTargetsOrBuilder();
}
+
/**
*
*
@@ -550,6 +562,7 @@ public static final class ClusterAutoscalingConfig extends com.google.protobuf.G
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Cluster.ClusterAutoscalingConfig)
ClusterAutoscalingConfigOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ClusterAutoscalingConfig.newBuilder() to construct.
private ClusterAutoscalingConfig(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -581,6 +594,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int bitField0_;
public static final int AUTOSCALING_LIMITS_FIELD_NUMBER = 1;
private com.google.bigtable.admin.v2.AutoscalingLimits autoscalingLimits_;
+
/**
*
*
@@ -598,6 +612,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public boolean hasAutoscalingLimits() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -617,6 +632,7 @@ public com.google.bigtable.admin.v2.AutoscalingLimits getAutoscalingLimits() {
? com.google.bigtable.admin.v2.AutoscalingLimits.getDefaultInstance()
: autoscalingLimits_;
}
+
/**
*
*
@@ -637,6 +653,7 @@ public com.google.bigtable.admin.v2.AutoscalingLimitsOrBuilder getAutoscalingLim
public static final int AUTOSCALING_TARGETS_FIELD_NUMBER = 2;
private com.google.bigtable.admin.v2.AutoscalingTargets autoscalingTargets_;
+
/**
*
*
@@ -654,6 +671,7 @@ public com.google.bigtable.admin.v2.AutoscalingLimitsOrBuilder getAutoscalingLim
public boolean hasAutoscalingTargets() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -673,6 +691,7 @@ public com.google.bigtable.admin.v2.AutoscalingTargets getAutoscalingTargets() {
? com.google.bigtable.admin.v2.AutoscalingTargets.getDefaultInstance()
: autoscalingTargets_;
}
+
/**
*
*
@@ -873,6 +892,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -1110,6 +1130,7 @@ public Builder mergeFrom(
com.google.bigtable.admin.v2.AutoscalingLimits.Builder,
com.google.bigtable.admin.v2.AutoscalingLimitsOrBuilder>
autoscalingLimitsBuilder_;
+
/**
*
*
@@ -1126,6 +1147,7 @@ public Builder mergeFrom(
public boolean hasAutoscalingLimits() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -1148,6 +1170,7 @@ public com.google.bigtable.admin.v2.AutoscalingLimits getAutoscalingLimits() {
return autoscalingLimitsBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1172,6 +1195,7 @@ public Builder setAutoscalingLimits(com.google.bigtable.admin.v2.AutoscalingLimi
onChanged();
return this;
}
+
/**
*
*
@@ -1194,6 +1218,7 @@ public Builder setAutoscalingLimits(
onChanged();
return this;
}
+
/**
*
*
@@ -1224,6 +1249,7 @@ public Builder mergeAutoscalingLimits(com.google.bigtable.admin.v2.AutoscalingLi
}
return this;
}
+
/**
*
*
@@ -1245,6 +1271,7 @@ public Builder clearAutoscalingLimits() {
onChanged();
return this;
}
+
/**
*
*
@@ -1261,6 +1288,7 @@ public com.google.bigtable.admin.v2.AutoscalingLimits.Builder getAutoscalingLimi
onChanged();
return getAutoscalingLimitsFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1282,6 +1310,7 @@ public com.google.bigtable.admin.v2.AutoscalingLimits.Builder getAutoscalingLimi
: autoscalingLimits_;
}
}
+
/**
*
*
@@ -1316,6 +1345,7 @@ public com.google.bigtable.admin.v2.AutoscalingLimits.Builder getAutoscalingLimi
com.google.bigtable.admin.v2.AutoscalingTargets.Builder,
com.google.bigtable.admin.v2.AutoscalingTargetsOrBuilder>
autoscalingTargetsBuilder_;
+
/**
*
*
@@ -1332,6 +1362,7 @@ public com.google.bigtable.admin.v2.AutoscalingLimits.Builder getAutoscalingLimi
public boolean hasAutoscalingTargets() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -1354,6 +1385,7 @@ public com.google.bigtable.admin.v2.AutoscalingTargets getAutoscalingTargets() {
return autoscalingTargetsBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1378,6 +1410,7 @@ public Builder setAutoscalingTargets(com.google.bigtable.admin.v2.AutoscalingTar
onChanged();
return this;
}
+
/**
*
*
@@ -1400,6 +1433,7 @@ public Builder setAutoscalingTargets(
onChanged();
return this;
}
+
/**
*
*
@@ -1431,6 +1465,7 @@ public Builder mergeAutoscalingTargets(
}
return this;
}
+
/**
*
*
@@ -1452,6 +1487,7 @@ public Builder clearAutoscalingTargets() {
onChanged();
return this;
}
+
/**
*
*
@@ -1469,6 +1505,7 @@ public Builder clearAutoscalingTargets() {
onChanged();
return getAutoscalingTargetsFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1490,6 +1527,7 @@ public Builder clearAutoscalingTargets() {
: autoscalingTargets_;
}
}
+
/**
*
*
@@ -1604,6 +1642,7 @@ public interface ClusterConfigOrBuilder
* @return Whether the clusterAutoscalingConfig field is set.
*/
boolean hasClusterAutoscalingConfig();
+
/**
*
*
@@ -1618,6 +1657,7 @@ public interface ClusterConfigOrBuilder
* @return The clusterAutoscalingConfig.
*/
com.google.bigtable.admin.v2.Cluster.ClusterAutoscalingConfig getClusterAutoscalingConfig();
+
/**
*
*
@@ -1632,6 +1672,7 @@ public interface ClusterConfigOrBuilder
com.google.bigtable.admin.v2.Cluster.ClusterAutoscalingConfigOrBuilder
getClusterAutoscalingConfigOrBuilder();
}
+
/**
*
*
@@ -1646,6 +1687,7 @@ public static final class ClusterConfig extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Cluster.ClusterConfig)
ClusterConfigOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ClusterConfig.newBuilder() to construct.
private ClusterConfig(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -1677,6 +1719,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int bitField0_;
public static final int CLUSTER_AUTOSCALING_CONFIG_FIELD_NUMBER = 1;
private com.google.bigtable.admin.v2.Cluster.ClusterAutoscalingConfig clusterAutoscalingConfig_;
+
/**
*
*
@@ -1694,6 +1737,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public boolean hasClusterAutoscalingConfig() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -1714,6 +1758,7 @@ public boolean hasClusterAutoscalingConfig() {
? com.google.bigtable.admin.v2.Cluster.ClusterAutoscalingConfig.getDefaultInstance()
: clusterAutoscalingConfig_;
}
+
/**
*
*
@@ -1901,6 +1946,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -2112,6 +2158,7 @@ public Builder mergeFrom(
com.google.bigtable.admin.v2.Cluster.ClusterAutoscalingConfig.Builder,
com.google.bigtable.admin.v2.Cluster.ClusterAutoscalingConfigOrBuilder>
clusterAutoscalingConfigBuilder_;
+
/**
*
*
@@ -2128,6 +2175,7 @@ public Builder mergeFrom(
public boolean hasClusterAutoscalingConfig() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -2151,6 +2199,7 @@ public boolean hasClusterAutoscalingConfig() {
return clusterAutoscalingConfigBuilder_.getMessage();
}
}
+
/**
*
*
@@ -2176,6 +2225,7 @@ public Builder setClusterAutoscalingConfig(
onChanged();
return this;
}
+
/**
*
*
@@ -2198,6 +2248,7 @@ public Builder setClusterAutoscalingConfig(
onChanged();
return this;
}
+
/**
*
*
@@ -2230,6 +2281,7 @@ public Builder mergeClusterAutoscalingConfig(
}
return this;
}
+
/**
*
*
@@ -2251,6 +2303,7 @@ public Builder clearClusterAutoscalingConfig() {
onChanged();
return this;
}
+
/**
*
*
@@ -2268,6 +2321,7 @@ public Builder clearClusterAutoscalingConfig() {
onChanged();
return getClusterAutoscalingConfigFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -2289,6 +2343,7 @@ public Builder clearClusterAutoscalingConfig() {
: clusterAutoscalingConfig_;
}
}
+
/**
*
*
@@ -2406,6 +2461,7 @@ public interface EncryptionConfigOrBuilder
* @return The kmsKeyName.
*/
java.lang.String getKmsKeyName();
+
/**
*
*
@@ -2427,6 +2483,7 @@ public interface EncryptionConfigOrBuilder
*/
com.google.protobuf.ByteString getKmsKeyNameBytes();
}
+
/**
*
*
@@ -2442,6 +2499,7 @@ public static final class EncryptionConfig extends com.google.protobuf.Generated
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Cluster.EncryptionConfig)
EncryptionConfigOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use EncryptionConfig.newBuilder() to construct.
private EncryptionConfig(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -2476,6 +2534,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object kmsKeyName_ = "";
+
/**
*
*
@@ -2507,6 +2566,7 @@ public java.lang.String getKmsKeyName() {
return s;
}
}
+
/**
*
*
@@ -2700,6 +2760,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -2888,6 +2949,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object kmsKeyName_ = "";
+
/**
*
*
@@ -2918,6 +2980,7 @@ public java.lang.String getKmsKeyName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -2948,6 +3011,7 @@ public com.google.protobuf.ByteString getKmsKeyNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -2977,6 +3041,7 @@ public Builder setKmsKeyName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -3002,6 +3067,7 @@ public Builder clearKmsKeyName() {
onChanged();
return this;
}
+
/**
*
*
@@ -3114,6 +3180,7 @@ public enum ConfigCase
private ConfigCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -3148,6 +3215,7 @@ public ConfigCase getConfigCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -3172,6 +3240,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -3201,6 +3270,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object location_ = "";
+
/**
*
*
@@ -3229,6 +3299,7 @@ public java.lang.String getLocation() {
return s;
}
}
+
/**
*
*
@@ -3260,6 +3331,7 @@ public com.google.protobuf.ByteString getLocationBytes() {
public static final int STATE_FIELD_NUMBER = 3;
private int state_ = 0;
+
/**
*
*
@@ -3277,6 +3349,7 @@ public com.google.protobuf.ByteString getLocationBytes() {
public int getStateValue() {
return state_;
}
+
/**
*
*
@@ -3299,6 +3372,7 @@ public com.google.bigtable.admin.v2.Cluster.State getState() {
public static final int SERVE_NODES_FIELD_NUMBER = 4;
private int serveNodes_ = 0;
+
/**
*
*
@@ -3319,6 +3393,7 @@ public int getServeNodes() {
public static final int NODE_SCALING_FACTOR_FIELD_NUMBER = 9;
private int nodeScalingFactor_ = 0;
+
/**
*
*
@@ -3336,6 +3411,7 @@ public int getServeNodes() {
public int getNodeScalingFactorValue() {
return nodeScalingFactor_;
}
+
/**
*
*
@@ -3359,6 +3435,7 @@ public com.google.bigtable.admin.v2.Cluster.NodeScalingFactor getNodeScalingFact
}
public static final int CLUSTER_CONFIG_FIELD_NUMBER = 7;
+
/**
*
*
@@ -3374,6 +3451,7 @@ public com.google.bigtable.admin.v2.Cluster.NodeScalingFactor getNodeScalingFact
public boolean hasClusterConfig() {
return configCase_ == 7;
}
+
/**
*
*
@@ -3392,6 +3470,7 @@ public com.google.bigtable.admin.v2.Cluster.ClusterConfig getClusterConfig() {
}
return com.google.bigtable.admin.v2.Cluster.ClusterConfig.getDefaultInstance();
}
+
/**
*
*
@@ -3411,6 +3490,7 @@ public com.google.bigtable.admin.v2.Cluster.ClusterConfigOrBuilder getClusterCon
public static final int DEFAULT_STORAGE_TYPE_FIELD_NUMBER = 5;
private int defaultStorageType_ = 0;
+
/**
*
*
@@ -3429,6 +3509,7 @@ public com.google.bigtable.admin.v2.Cluster.ClusterConfigOrBuilder getClusterCon
public int getDefaultStorageTypeValue() {
return defaultStorageType_;
}
+
/**
*
*
@@ -3452,6 +3533,7 @@ public com.google.bigtable.admin.v2.StorageType getDefaultStorageType() {
public static final int ENCRYPTION_CONFIG_FIELD_NUMBER = 6;
private com.google.bigtable.admin.v2.Cluster.EncryptionConfig encryptionConfig_;
+
/**
*
*
@@ -3469,6 +3551,7 @@ public com.google.bigtable.admin.v2.StorageType getDefaultStorageType() {
public boolean hasEncryptionConfig() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -3488,6 +3571,7 @@ public com.google.bigtable.admin.v2.Cluster.EncryptionConfig getEncryptionConfig
? com.google.bigtable.admin.v2.Cluster.EncryptionConfig.getDefaultInstance()
: encryptionConfig_;
}
+
/**
*
*
@@ -3753,6 +3837,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -4080,6 +4165,7 @@ public Builder clearConfig() {
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -4103,6 +4189,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -4126,6 +4213,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -4148,6 +4236,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -4166,6 +4255,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -4191,6 +4281,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object location_ = "";
+
/**
*
*
@@ -4218,6 +4309,7 @@ public java.lang.String getLocation() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -4245,6 +4337,7 @@ public com.google.protobuf.ByteString getLocationBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -4271,6 +4364,7 @@ public Builder setLocation(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -4293,6 +4387,7 @@ public Builder clearLocation() {
onChanged();
return this;
}
+
/**
*
*
@@ -4322,6 +4417,7 @@ public Builder setLocationBytes(com.google.protobuf.ByteString value) {
}
private int state_ = 0;
+
/**
*
*
@@ -4339,6 +4435,7 @@ public Builder setLocationBytes(com.google.protobuf.ByteString value) {
public int getStateValue() {
return state_;
}
+
/**
*
*
@@ -4359,6 +4456,7 @@ public Builder setStateValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -4378,6 +4476,7 @@ public com.google.bigtable.admin.v2.Cluster.State getState() {
com.google.bigtable.admin.v2.Cluster.State.forNumber(state_);
return result == null ? com.google.bigtable.admin.v2.Cluster.State.UNRECOGNIZED : result;
}
+
/**
*
*
@@ -4401,6 +4500,7 @@ public Builder setState(com.google.bigtable.admin.v2.Cluster.State value) {
onChanged();
return this;
}
+
/**
*
*
@@ -4422,6 +4522,7 @@ public Builder clearState() {
}
private int serveNodes_;
+
/**
*
*
@@ -4439,6 +4540,7 @@ public Builder clearState() {
public int getServeNodes() {
return serveNodes_;
}
+
/**
*
*
@@ -4460,6 +4562,7 @@ public Builder setServeNodes(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -4481,6 +4584,7 @@ public Builder clearServeNodes() {
}
private int nodeScalingFactor_ = 0;
+
/**
*
*
@@ -4498,6 +4602,7 @@ public Builder clearServeNodes() {
public int getNodeScalingFactorValue() {
return nodeScalingFactor_;
}
+
/**
*
*
@@ -4518,6 +4623,7 @@ public Builder setNodeScalingFactorValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -4539,6 +4645,7 @@ public com.google.bigtable.admin.v2.Cluster.NodeScalingFactor getNodeScalingFact
? com.google.bigtable.admin.v2.Cluster.NodeScalingFactor.UNRECOGNIZED
: result;
}
+
/**
*
*
@@ -4563,6 +4670,7 @@ public Builder setNodeScalingFactor(
onChanged();
return this;
}
+
/**
*
*
@@ -4588,6 +4696,7 @@ public Builder clearNodeScalingFactor() {
com.google.bigtable.admin.v2.Cluster.ClusterConfig.Builder,
com.google.bigtable.admin.v2.Cluster.ClusterConfigOrBuilder>
clusterConfigBuilder_;
+
/**
*
*
@@ -4603,6 +4712,7 @@ public Builder clearNodeScalingFactor() {
public boolean hasClusterConfig() {
return configCase_ == 7;
}
+
/**
*
*
@@ -4628,6 +4738,7 @@ public com.google.bigtable.admin.v2.Cluster.ClusterConfig getClusterConfig() {
return com.google.bigtable.admin.v2.Cluster.ClusterConfig.getDefaultInstance();
}
}
+
/**
*
*
@@ -4650,6 +4761,7 @@ public Builder setClusterConfig(com.google.bigtable.admin.v2.Cluster.ClusterConf
configCase_ = 7;
return this;
}
+
/**
*
*
@@ -4670,6 +4782,7 @@ public Builder setClusterConfig(
configCase_ = 7;
return this;
}
+
/**
*
*
@@ -4702,6 +4815,7 @@ public Builder mergeClusterConfig(com.google.bigtable.admin.v2.Cluster.ClusterCo
configCase_ = 7;
return this;
}
+
/**
*
*
@@ -4727,6 +4841,7 @@ public Builder clearClusterConfig() {
}
return this;
}
+
/**
*
*
@@ -4739,6 +4854,7 @@ public Builder clearClusterConfig() {
public com.google.bigtable.admin.v2.Cluster.ClusterConfig.Builder getClusterConfigBuilder() {
return getClusterConfigFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -4759,6 +4875,7 @@ public com.google.bigtable.admin.v2.Cluster.ClusterConfigOrBuilder getClusterCon
return com.google.bigtable.admin.v2.Cluster.ClusterConfig.getDefaultInstance();
}
}
+
/**
*
*
@@ -4793,6 +4910,7 @@ public com.google.bigtable.admin.v2.Cluster.ClusterConfigOrBuilder getClusterCon
}
private int defaultStorageType_ = 0;
+
/**
*
*
@@ -4811,6 +4929,7 @@ public com.google.bigtable.admin.v2.Cluster.ClusterConfigOrBuilder getClusterCon
public int getDefaultStorageTypeValue() {
return defaultStorageType_;
}
+
/**
*
*
@@ -4832,6 +4951,7 @@ public Builder setDefaultStorageTypeValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -4852,6 +4972,7 @@ public com.google.bigtable.admin.v2.StorageType getDefaultStorageType() {
com.google.bigtable.admin.v2.StorageType.forNumber(defaultStorageType_);
return result == null ? com.google.bigtable.admin.v2.StorageType.UNRECOGNIZED : result;
}
+
/**
*
*
@@ -4876,6 +4997,7 @@ public Builder setDefaultStorageType(com.google.bigtable.admin.v2.StorageType va
onChanged();
return this;
}
+
/**
*
*
@@ -4903,6 +5025,7 @@ public Builder clearDefaultStorageType() {
com.google.bigtable.admin.v2.Cluster.EncryptionConfig.Builder,
com.google.bigtable.admin.v2.Cluster.EncryptionConfigOrBuilder>
encryptionConfigBuilder_;
+
/**
*
*
@@ -4919,6 +5042,7 @@ public Builder clearDefaultStorageType() {
public boolean hasEncryptionConfig() {
return ((bitField0_ & 0x00000080) != 0);
}
+
/**
*
*
@@ -4941,6 +5065,7 @@ public com.google.bigtable.admin.v2.Cluster.EncryptionConfig getEncryptionConfig
return encryptionConfigBuilder_.getMessage();
}
}
+
/**
*
*
@@ -4966,6 +5091,7 @@ public Builder setEncryptionConfig(
onChanged();
return this;
}
+
/**
*
*
@@ -4988,6 +5114,7 @@ public Builder setEncryptionConfig(
onChanged();
return this;
}
+
/**
*
*
@@ -5019,6 +5146,7 @@ public Builder mergeEncryptionConfig(
}
return this;
}
+
/**
*
*
@@ -5040,6 +5168,7 @@ public Builder clearEncryptionConfig() {
onChanged();
return this;
}
+
/**
*
*
@@ -5057,6 +5186,7 @@ public Builder clearEncryptionConfig() {
onChanged();
return getEncryptionConfigFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -5078,6 +5208,7 @@ public Builder clearEncryptionConfig() {
: encryptionConfig_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ClusterOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ClusterOrBuilder.java
index d301e51b68..68507c7f0a 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ClusterOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ClusterOrBuilder.java
@@ -37,6 +37,7 @@ public interface ClusterOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -68,6 +69,7 @@ public interface ClusterOrBuilder
* @return The location.
*/
java.lang.String getLocation();
+
/**
*
*
@@ -100,6 +102,7 @@ public interface ClusterOrBuilder
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
+
/**
*
*
@@ -144,6 +147,7 @@ public interface ClusterOrBuilder
* @return The enum numeric value on the wire for nodeScalingFactor.
*/
int getNodeScalingFactorValue();
+
/**
*
*
@@ -171,6 +175,7 @@ public interface ClusterOrBuilder
* @return Whether the clusterConfig field is set.
*/
boolean hasClusterConfig();
+
/**
*
*
@@ -183,6 +188,7 @@ public interface ClusterOrBuilder
* @return The clusterConfig.
*/
com.google.bigtable.admin.v2.Cluster.ClusterConfig getClusterConfig();
+
/**
*
*
@@ -209,6 +215,7 @@ public interface ClusterOrBuilder
* @return The enum numeric value on the wire for defaultStorageType.
*/
int getDefaultStorageTypeValue();
+
/**
*
*
@@ -239,6 +246,7 @@ public interface ClusterOrBuilder
* @return Whether the encryptionConfig field is set.
*/
boolean hasEncryptionConfig();
+
/**
*
*
@@ -253,6 +261,7 @@ public interface ClusterOrBuilder
* @return The encryptionConfig.
*/
com.google.bigtable.admin.v2.Cluster.EncryptionConfig getEncryptionConfig();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ColumnFamily.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ColumnFamily.java
index 365e141f4c..8facb69e22 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ColumnFamily.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ColumnFamily.java
@@ -33,6 +33,7 @@ public final class ColumnFamily extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ColumnFamily)
ColumnFamilyOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ColumnFamily.newBuilder() to construct.
private ColumnFamily(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -64,6 +65,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int bitField0_;
public static final int GC_RULE_FIELD_NUMBER = 1;
private com.google.bigtable.admin.v2.GcRule gcRule_;
+
/**
*
*
@@ -84,6 +86,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public boolean hasGcRule() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -104,6 +107,7 @@ public boolean hasGcRule() {
public com.google.bigtable.admin.v2.GcRule getGcRule() {
return gcRule_ == null ? com.google.bigtable.admin.v2.GcRule.getDefaultInstance() : gcRule_;
}
+
/**
*
*
@@ -125,6 +129,7 @@ public com.google.bigtable.admin.v2.GcRuleOrBuilder getGcRuleOrBuilder() {
public static final int VALUE_TYPE_FIELD_NUMBER = 3;
private com.google.bigtable.admin.v2.Type valueType_;
+
/**
*
*
@@ -149,6 +154,7 @@ public com.google.bigtable.admin.v2.GcRuleOrBuilder getGcRuleOrBuilder() {
public boolean hasValueType() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -173,6 +179,7 @@ public boolean hasValueType() {
public com.google.bigtable.admin.v2.Type getValueType() {
return valueType_ == null ? com.google.bigtable.admin.v2.Type.getDefaultInstance() : valueType_;
}
+
/**
*
*
@@ -374,6 +381,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -595,6 +603,7 @@ public Builder mergeFrom(
com.google.bigtable.admin.v2.GcRule.Builder,
com.google.bigtable.admin.v2.GcRuleOrBuilder>
gcRuleBuilder_;
+
/**
*
*
@@ -614,6 +623,7 @@ public Builder mergeFrom(
public boolean hasGcRule() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -637,6 +647,7 @@ public com.google.bigtable.admin.v2.GcRule getGcRule() {
return gcRuleBuilder_.getMessage();
}
}
+
/**
*
*
@@ -664,6 +675,7 @@ public Builder setGcRule(com.google.bigtable.admin.v2.GcRule value) {
onChanged();
return this;
}
+
/**
*
*
@@ -688,6 +700,7 @@ public Builder setGcRule(com.google.bigtable.admin.v2.GcRule.Builder builderForV
onChanged();
return this;
}
+
/**
*
*
@@ -720,6 +733,7 @@ public Builder mergeGcRule(com.google.bigtable.admin.v2.GcRule value) {
}
return this;
}
+
/**
*
*
@@ -744,6 +758,7 @@ public Builder clearGcRule() {
onChanged();
return this;
}
+
/**
*
*
@@ -763,6 +778,7 @@ public com.google.bigtable.admin.v2.GcRule.Builder getGcRuleBuilder() {
onChanged();
return getGcRuleFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -784,6 +800,7 @@ public com.google.bigtable.admin.v2.GcRuleOrBuilder getGcRuleOrBuilder() {
return gcRule_ == null ? com.google.bigtable.admin.v2.GcRule.getDefaultInstance() : gcRule_;
}
}
+
/**
*
*
@@ -821,6 +838,7 @@ public com.google.bigtable.admin.v2.GcRuleOrBuilder getGcRuleOrBuilder() {
com.google.bigtable.admin.v2.Type.Builder,
com.google.bigtable.admin.v2.TypeOrBuilder>
valueTypeBuilder_;
+
/**
*
*
@@ -844,6 +862,7 @@ public com.google.bigtable.admin.v2.GcRuleOrBuilder getGcRuleOrBuilder() {
public boolean hasValueType() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -873,6 +892,7 @@ public com.google.bigtable.admin.v2.Type getValueType() {
return valueTypeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -904,6 +924,7 @@ public Builder setValueType(com.google.bigtable.admin.v2.Type value) {
onChanged();
return this;
}
+
/**
*
*
@@ -932,6 +953,7 @@ public Builder setValueType(com.google.bigtable.admin.v2.Type.Builder builderFor
onChanged();
return this;
}
+
/**
*
*
@@ -968,6 +990,7 @@ public Builder mergeValueType(com.google.bigtable.admin.v2.Type value) {
}
return this;
}
+
/**
*
*
@@ -996,6 +1019,7 @@ public Builder clearValueType() {
onChanged();
return this;
}
+
/**
*
*
@@ -1019,6 +1043,7 @@ public com.google.bigtable.admin.v2.Type.Builder getValueTypeBuilder() {
onChanged();
return getValueTypeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1046,6 +1071,7 @@ public com.google.bigtable.admin.v2.TypeOrBuilder getValueTypeOrBuilder() {
: valueType_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ColumnFamilyOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ColumnFamilyOrBuilder.java
index 535026fe30..35c517492e 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ColumnFamilyOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ColumnFamilyOrBuilder.java
@@ -41,6 +41,7 @@ public interface ColumnFamilyOrBuilder
* @return Whether the gcRule field is set.
*/
boolean hasGcRule();
+
/**
*
*
@@ -58,6 +59,7 @@ public interface ColumnFamilyOrBuilder
* @return The gcRule.
*/
com.google.bigtable.admin.v2.GcRule getGcRule();
+
/**
*
*
@@ -95,6 +97,7 @@ public interface ColumnFamilyOrBuilder
* @return Whether the valueType field is set.
*/
boolean hasValueType();
+
/**
*
*
@@ -116,6 +119,7 @@ public interface ColumnFamilyOrBuilder
* @return The valueType.
*/
com.google.bigtable.admin.v2.Type getValueType();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CommonProto.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CommonProto.java
index e6c8d848d5..4801ede212 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CommonProto.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CommonProto.java
@@ -41,15 +41,18 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
static {
java.lang.String[] descriptorData = {
- "\n%google/bigtable/admin/v2/common.proto\022"
- + "\030google.bigtable.admin.v2\032\037google/protob"
- + "uf/timestamp.proto\"\213\001\n\021OperationProgress"
- + "\022\030\n\020progress_percent\030\001 \001(\005\022.\n\nstart_time"
- + "\030\002 \001(\0132\032.google.protobuf.Timestamp\022,\n\010en"
- + "d_time\030\003 \001(\0132\032.google.protobuf.Timestamp"
- + "*=\n\013StorageType\022\034\n\030STORAGE_TYPE_UNSPECIF"
- + "IED\020\000\022\007\n\003SSD\020\001\022\007\n\003HDD\020\002B\316\001\n\034com.google.b"
- + "igtable.admin.v2B\013CommonProtoP\001Z8cloud.g"
+ "\n"
+ + "%google/bigtable/admin/v2/common.proto\022"
+ + "\030google.bigtable.admin.v2\032\037google/protobuf/timestamp.proto\"\213\001\n"
+ + "\021OperationProgress\022\030\n"
+ + "\020progress_percent\030\001 \001(\005\022.\n\n"
+ + "start_time\030\002 \001(\0132\032.google.protobuf.Timestamp\022,\n"
+ + "\010end_time\030\003 \001(\0132\032.google.protobuf.Timestamp*=\n"
+ + "\013StorageType\022\034\n"
+ + "\030STORAGE_TYPE_UNSPECIFIED\020\000\022\007\n"
+ + "\003SSD\020\001\022\007\n"
+ + "\003HDD\020\002B\316\001\n"
+ + "\034com.google.bigtable.admin.v2B\013CommonProtoP\001Z8cloud.g"
+ "oogle.com/go/bigtable/admin/apiv2/adminp"
+ "b;adminpb\252\002\036Google.Cloud.Bigtable.Admin."
+ "V2\312\002\036Google\\Cloud\\Bigtable\\Admin\\V2\352\002\"Go"
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupMetadata.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupMetadata.java
index 5e5e3af974..80f7c9bcec 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupMetadata.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupMetadata.java
@@ -34,6 +34,7 @@ public final class CopyBackupMetadata extends com.google.protobuf.GeneratedMessa
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CopyBackupMetadata)
CopyBackupMetadataOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CopyBackupMetadata.newBuilder() to construct.
private CopyBackupMetadata(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -94,6 +96,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -122,6 +125,7 @@ public com.google.protobuf.ByteString getNameBytes() {
public static final int SOURCE_BACKUP_INFO_FIELD_NUMBER = 2;
private com.google.bigtable.admin.v2.BackupInfo sourceBackupInfo_;
+
/**
*
*
@@ -137,6 +141,7 @@ public com.google.protobuf.ByteString getNameBytes() {
public boolean hasSourceBackupInfo() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -154,6 +159,7 @@ public com.google.bigtable.admin.v2.BackupInfo getSourceBackupInfo() {
? com.google.bigtable.admin.v2.BackupInfo.getDefaultInstance()
: sourceBackupInfo_;
}
+
/**
*
*
@@ -172,6 +178,7 @@ public com.google.bigtable.admin.v2.BackupInfoOrBuilder getSourceBackupInfoOrBui
public static final int PROGRESS_FIELD_NUMBER = 3;
private com.google.bigtable.admin.v2.OperationProgress progress_;
+
/**
*
*
@@ -189,6 +196,7 @@ public com.google.bigtable.admin.v2.BackupInfoOrBuilder getSourceBackupInfoOrBui
public boolean hasProgress() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -208,6 +216,7 @@ public com.google.bigtable.admin.v2.OperationProgress getProgress() {
? com.google.bigtable.admin.v2.OperationProgress.getDefaultInstance()
: progress_;
}
+
/**
*
*
@@ -413,6 +422,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -648,6 +658,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -672,6 +683,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -696,6 +708,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -719,6 +732,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -738,6 +752,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -769,6 +784,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.BackupInfo.Builder,
com.google.bigtable.admin.v2.BackupInfoOrBuilder>
sourceBackupInfoBuilder_;
+
/**
*
*
@@ -783,6 +799,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
public boolean hasSourceBackupInfo() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -803,6 +820,7 @@ public com.google.bigtable.admin.v2.BackupInfo getSourceBackupInfo() {
return sourceBackupInfoBuilder_.getMessage();
}
}
+
/**
*
*
@@ -825,6 +843,7 @@ public Builder setSourceBackupInfo(com.google.bigtable.admin.v2.BackupInfo value
onChanged();
return this;
}
+
/**
*
*
@@ -845,6 +864,7 @@ public Builder setSourceBackupInfo(
onChanged();
return this;
}
+
/**
*
*
@@ -872,6 +892,7 @@ public Builder mergeSourceBackupInfo(com.google.bigtable.admin.v2.BackupInfo val
}
return this;
}
+
/**
*
*
@@ -891,6 +912,7 @@ public Builder clearSourceBackupInfo() {
onChanged();
return this;
}
+
/**
*
*
@@ -905,6 +927,7 @@ public com.google.bigtable.admin.v2.BackupInfo.Builder getSourceBackupInfoBuilde
onChanged();
return getSourceBackupInfoFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -923,6 +946,7 @@ public com.google.bigtable.admin.v2.BackupInfoOrBuilder getSourceBackupInfoOrBui
: sourceBackupInfo_;
}
}
+
/**
*
*
@@ -955,6 +979,7 @@ public com.google.bigtable.admin.v2.BackupInfoOrBuilder getSourceBackupInfoOrBui
com.google.bigtable.admin.v2.OperationProgress.Builder,
com.google.bigtable.admin.v2.OperationProgressOrBuilder>
progressBuilder_;
+
/**
*
*
@@ -971,6 +996,7 @@ public com.google.bigtable.admin.v2.BackupInfoOrBuilder getSourceBackupInfoOrBui
public boolean hasProgress() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -993,6 +1019,7 @@ public com.google.bigtable.admin.v2.OperationProgress getProgress() {
return progressBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1017,6 +1044,7 @@ public Builder setProgress(com.google.bigtable.admin.v2.OperationProgress value)
onChanged();
return this;
}
+
/**
*
*
@@ -1039,6 +1067,7 @@ public Builder setProgress(
onChanged();
return this;
}
+
/**
*
*
@@ -1068,6 +1097,7 @@ public Builder mergeProgress(com.google.bigtable.admin.v2.OperationProgress valu
}
return this;
}
+
/**
*
*
@@ -1089,6 +1119,7 @@ public Builder clearProgress() {
onChanged();
return this;
}
+
/**
*
*
@@ -1105,6 +1136,7 @@ public com.google.bigtable.admin.v2.OperationProgress.Builder getProgressBuilder
onChanged();
return getProgressFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1125,6 +1157,7 @@ public com.google.bigtable.admin.v2.OperationProgressOrBuilder getProgressOrBuil
: progress_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupMetadataOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupMetadataOrBuilder.java
index f861d55b9e..ee06c4c348 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupMetadataOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupMetadataOrBuilder.java
@@ -38,6 +38,7 @@ public interface CopyBackupMetadataOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -65,6 +66,7 @@ public interface CopyBackupMetadataOrBuilder
* @return Whether the sourceBackupInfo field is set.
*/
boolean hasSourceBackupInfo();
+
/**
*
*
@@ -77,6 +79,7 @@ public interface CopyBackupMetadataOrBuilder
* @return The sourceBackupInfo.
*/
com.google.bigtable.admin.v2.BackupInfo getSourceBackupInfo();
+
/**
*
*
@@ -102,6 +105,7 @@ public interface CopyBackupMetadataOrBuilder
* @return Whether the progress field is set.
*/
boolean hasProgress();
+
/**
*
*
@@ -116,6 +120,7 @@ public interface CopyBackupMetadataOrBuilder
* @return The progress.
*/
com.google.bigtable.admin.v2.OperationProgress getProgress();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupRequest.java
index 8a95a69085..423300a38c 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupRequest.java
@@ -34,6 +34,7 @@ public final class CopyBackupRequest extends com.google.protobuf.GeneratedMessag
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CopyBackupRequest)
CopyBackupRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CopyBackupRequest.newBuilder() to construct.
private CopyBackupRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -71,6 +72,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -98,6 +100,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -130,6 +133,7 @@ public com.google.protobuf.ByteString getParentBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object backupId_ = "";
+
/**
*
*
@@ -158,6 +162,7 @@ public java.lang.String getBackupId() {
return s;
}
}
+
/**
*
*
@@ -191,6 +196,7 @@ public com.google.protobuf.ByteString getBackupIdBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object sourceBackup_ = "";
+
/**
*
*
@@ -222,6 +228,7 @@ public java.lang.String getSourceBackup() {
return s;
}
}
+
/**
*
*
@@ -256,6 +263,7 @@ public com.google.protobuf.ByteString getSourceBackupBytes() {
public static final int EXPIRE_TIME_FIELD_NUMBER = 4;
private com.google.protobuf.Timestamp expireTime_;
+
/**
*
*
@@ -276,6 +284,7 @@ public com.google.protobuf.ByteString getSourceBackupBytes() {
public boolean hasExpireTime() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -296,6 +305,7 @@ public boolean hasExpireTime() {
public com.google.protobuf.Timestamp getExpireTime() {
return expireTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : expireTime_;
}
+
/**
*
*
@@ -506,6 +516,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -749,6 +760,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -775,6 +787,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -801,6 +814,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -826,6 +840,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -847,6 +862,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -875,6 +891,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object backupId_ = "";
+
/**
*
*
@@ -902,6 +919,7 @@ public java.lang.String getBackupId() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -929,6 +947,7 @@ public com.google.protobuf.ByteString getBackupIdBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -955,6 +974,7 @@ public Builder setBackupId(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -977,6 +997,7 @@ public Builder clearBackupId() {
onChanged();
return this;
}
+
/**
*
*
@@ -1006,6 +1027,7 @@ public Builder setBackupIdBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object sourceBackup_ = "";
+
/**
*
*
@@ -1036,6 +1058,7 @@ public java.lang.String getSourceBackup() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1066,6 +1089,7 @@ public com.google.protobuf.ByteString getSourceBackupBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1095,6 +1119,7 @@ public Builder setSourceBackup(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1120,6 +1145,7 @@ public Builder clearSourceBackup() {
onChanged();
return this;
}
+
/**
*
*
@@ -1157,6 +1183,7 @@ public Builder setSourceBackupBytes(com.google.protobuf.ByteString value) {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
expireTimeBuilder_;
+
/**
*
*
@@ -1176,6 +1203,7 @@ public Builder setSourceBackupBytes(com.google.protobuf.ByteString value) {
public boolean hasExpireTime() {
return ((bitField0_ & 0x00000008) != 0);
}
+
/**
*
*
@@ -1201,6 +1229,7 @@ public com.google.protobuf.Timestamp getExpireTime() {
return expireTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1228,6 +1257,7 @@ public Builder setExpireTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1252,6 +1282,7 @@ public Builder setExpireTime(com.google.protobuf.Timestamp.Builder builderForVal
onChanged();
return this;
}
+
/**
*
*
@@ -1284,6 +1315,7 @@ public Builder mergeExpireTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1308,6 +1340,7 @@ public Builder clearExpireTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1327,6 +1360,7 @@ public com.google.protobuf.Timestamp.Builder getExpireTimeBuilder() {
onChanged();
return getExpireTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1350,6 +1384,7 @@ public com.google.protobuf.TimestampOrBuilder getExpireTimeOrBuilder() {
: expireTime_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupRequestOrBuilder.java
index 4166420a69..6646afd808 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CopyBackupRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface CopyBackupRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -74,6 +75,7 @@ public interface CopyBackupRequestOrBuilder
* @return The backupId.
*/
java.lang.String getBackupId();
+
/**
*
*
@@ -112,6 +114,7 @@ public interface CopyBackupRequestOrBuilder
* @return The sourceBackup.
*/
java.lang.String getSourceBackup();
+
/**
*
*
@@ -150,6 +153,7 @@ public interface CopyBackupRequestOrBuilder
* @return Whether the expireTime field is set.
*/
boolean hasExpireTime();
+
/**
*
*
@@ -167,6 +171,7 @@ public interface CopyBackupRequestOrBuilder
* @return The expireTime.
*/
com.google.protobuf.Timestamp getExpireTime();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAppProfileRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAppProfileRequest.java
index 5241866ef1..725ccee235 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAppProfileRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAppProfileRequest.java
@@ -33,6 +33,7 @@ public final class CreateAppProfileRequest extends com.google.protobuf.Generated
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CreateAppProfileRequest)
CreateAppProfileRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CreateAppProfileRequest.newBuilder() to construct.
private CreateAppProfileRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -95,6 +97,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -126,6 +129,7 @@ public com.google.protobuf.ByteString getParentBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object appProfileId_ = "";
+
/**
*
*
@@ -151,6 +155,7 @@ public java.lang.String getAppProfileId() {
return s;
}
}
+
/**
*
*
@@ -179,6 +184,7 @@ public com.google.protobuf.ByteString getAppProfileIdBytes() {
public static final int APP_PROFILE_FIELD_NUMBER = 3;
private com.google.bigtable.admin.v2.AppProfile appProfile_;
+
/**
*
*
@@ -197,6 +203,7 @@ public com.google.protobuf.ByteString getAppProfileIdBytes() {
public boolean hasAppProfile() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -217,6 +224,7 @@ public com.google.bigtable.admin.v2.AppProfile getAppProfile() {
? com.google.bigtable.admin.v2.AppProfile.getDefaultInstance()
: appProfile_;
}
+
/**
*
*
@@ -238,6 +246,7 @@ public com.google.bigtable.admin.v2.AppProfileOrBuilder getAppProfileOrBuilder()
public static final int IGNORE_WARNINGS_FIELD_NUMBER = 4;
private boolean ignoreWarnings_ = false;
+
/**
*
*
@@ -445,6 +454,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -686,6 +696,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -711,6 +722,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -736,6 +748,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -760,6 +773,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -780,6 +794,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -807,6 +822,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object appProfileId_ = "";
+
/**
*
*
@@ -831,6 +847,7 @@ public java.lang.String getAppProfileId() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -855,6 +872,7 @@ public com.google.protobuf.ByteString getAppProfileIdBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -878,6 +896,7 @@ public Builder setAppProfileId(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -897,6 +916,7 @@ public Builder clearAppProfileId() {
onChanged();
return this;
}
+
/**
*
*
@@ -928,6 +948,7 @@ public Builder setAppProfileIdBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.AppProfile.Builder,
com.google.bigtable.admin.v2.AppProfileOrBuilder>
appProfileBuilder_;
+
/**
*
*
@@ -945,6 +966,7 @@ public Builder setAppProfileIdBytes(com.google.protobuf.ByteString value) {
public boolean hasAppProfile() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -968,6 +990,7 @@ public com.google.bigtable.admin.v2.AppProfile getAppProfile() {
return appProfileBuilder_.getMessage();
}
}
+
/**
*
*
@@ -993,6 +1016,7 @@ public Builder setAppProfile(com.google.bigtable.admin.v2.AppProfile value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1015,6 +1039,7 @@ public Builder setAppProfile(com.google.bigtable.admin.v2.AppProfile.Builder bui
onChanged();
return this;
}
+
/**
*
*
@@ -1045,6 +1070,7 @@ public Builder mergeAppProfile(com.google.bigtable.admin.v2.AppProfile value) {
}
return this;
}
+
/**
*
*
@@ -1067,6 +1093,7 @@ public Builder clearAppProfile() {
onChanged();
return this;
}
+
/**
*
*
@@ -1084,6 +1111,7 @@ public com.google.bigtable.admin.v2.AppProfile.Builder getAppProfileBuilder() {
onChanged();
return getAppProfileFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1105,6 +1133,7 @@ public com.google.bigtable.admin.v2.AppProfileOrBuilder getAppProfileOrBuilder()
: appProfile_;
}
}
+
/**
*
*
@@ -1135,6 +1164,7 @@ public com.google.bigtable.admin.v2.AppProfileOrBuilder getAppProfileOrBuilder()
}
private boolean ignoreWarnings_;
+
/**
*
*
@@ -1150,6 +1180,7 @@ public com.google.bigtable.admin.v2.AppProfileOrBuilder getAppProfileOrBuilder()
public boolean getIgnoreWarnings() {
return ignoreWarnings_;
}
+
/**
*
*
@@ -1169,6 +1200,7 @@ public Builder setIgnoreWarnings(boolean value) {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAppProfileRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAppProfileRequestOrBuilder.java
index de61f10a65..e1ed7174ca 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAppProfileRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAppProfileRequestOrBuilder.java
@@ -39,6 +39,7 @@ public interface CreateAppProfileRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -69,6 +70,7 @@ public interface CreateAppProfileRequestOrBuilder
* @return The appProfileId.
*/
java.lang.String getAppProfileId();
+
/**
*
*
@@ -99,6 +101,7 @@ public interface CreateAppProfileRequestOrBuilder
* @return Whether the appProfile field is set.
*/
boolean hasAppProfile();
+
/**
*
*
@@ -114,6 +117,7 @@ public interface CreateAppProfileRequestOrBuilder
* @return The appProfile.
*/
com.google.bigtable.admin.v2.AppProfile getAppProfile();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewMetadata.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewMetadata.java
index 26df910a7e..7cf976e2fa 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewMetadata.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewMetadata.java
@@ -33,6 +33,7 @@ public final class CreateAuthorizedViewMetadata extends com.google.protobuf.Gene
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CreateAuthorizedViewMetadata)
CreateAuthorizedViewMetadataOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CreateAuthorizedViewMetadata.newBuilder() to construct.
private CreateAuthorizedViewMetadata(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -64,6 +65,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int bitField0_;
public static final int ORIGINAL_REQUEST_FIELD_NUMBER = 1;
private com.google.bigtable.admin.v2.CreateAuthorizedViewRequest originalRequest_;
+
/**
*
*
@@ -79,6 +81,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public boolean hasOriginalRequest() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -96,6 +99,7 @@ public com.google.bigtable.admin.v2.CreateAuthorizedViewRequest getOriginalReque
? com.google.bigtable.admin.v2.CreateAuthorizedViewRequest.getDefaultInstance()
: originalRequest_;
}
+
/**
*
*
@@ -115,6 +119,7 @@ public com.google.bigtable.admin.v2.CreateAuthorizedViewRequest getOriginalReque
public static final int REQUEST_TIME_FIELD_NUMBER = 2;
private com.google.protobuf.Timestamp requestTime_;
+
/**
*
*
@@ -130,6 +135,7 @@ public com.google.bigtable.admin.v2.CreateAuthorizedViewRequest getOriginalReque
public boolean hasRequestTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -145,6 +151,7 @@ public boolean hasRequestTime() {
public com.google.protobuf.Timestamp getRequestTime() {
return requestTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : requestTime_;
}
+
/**
*
*
@@ -161,6 +168,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
public static final int FINISH_TIME_FIELD_NUMBER = 3;
private com.google.protobuf.Timestamp finishTime_;
+
/**
*
*
@@ -176,6 +184,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
public boolean hasFinishTime() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -191,6 +200,7 @@ public boolean hasFinishTime() {
public com.google.protobuf.Timestamp getFinishTime() {
return finishTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : finishTime_;
}
+
/**
*
*
@@ -398,6 +408,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -641,6 +652,7 @@ public Builder mergeFrom(
com.google.bigtable.admin.v2.CreateAuthorizedViewRequest.Builder,
com.google.bigtable.admin.v2.CreateAuthorizedViewRequestOrBuilder>
originalRequestBuilder_;
+
/**
*
*
@@ -655,6 +667,7 @@ public Builder mergeFrom(
public boolean hasOriginalRequest() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -675,6 +688,7 @@ public com.google.bigtable.admin.v2.CreateAuthorizedViewRequest getOriginalReque
return originalRequestBuilder_.getMessage();
}
}
+
/**
*
*
@@ -698,6 +712,7 @@ public Builder setOriginalRequest(
onChanged();
return this;
}
+
/**
*
*
@@ -718,6 +733,7 @@ public Builder setOriginalRequest(
onChanged();
return this;
}
+
/**
*
*
@@ -747,6 +763,7 @@ public Builder mergeOriginalRequest(
}
return this;
}
+
/**
*
*
@@ -766,6 +783,7 @@ public Builder clearOriginalRequest() {
onChanged();
return this;
}
+
/**
*
*
@@ -781,6 +799,7 @@ public Builder clearOriginalRequest() {
onChanged();
return getOriginalRequestFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -800,6 +819,7 @@ public Builder clearOriginalRequest() {
: originalRequest_;
}
}
+
/**
*
*
@@ -832,6 +852,7 @@ public Builder clearOriginalRequest() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
requestTimeBuilder_;
+
/**
*
*
@@ -846,6 +867,7 @@ public Builder clearOriginalRequest() {
public boolean hasRequestTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -866,6 +888,7 @@ public com.google.protobuf.Timestamp getRequestTime() {
return requestTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -888,6 +911,7 @@ public Builder setRequestTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -907,6 +931,7 @@ public Builder setRequestTime(com.google.protobuf.Timestamp.Builder builderForVa
onChanged();
return this;
}
+
/**
*
*
@@ -934,6 +959,7 @@ public Builder mergeRequestTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -953,6 +979,7 @@ public Builder clearRequestTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -967,6 +994,7 @@ public com.google.protobuf.Timestamp.Builder getRequestTimeBuilder() {
onChanged();
return getRequestTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -985,6 +1013,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
: requestTime_;
}
}
+
/**
*
*
@@ -1017,6 +1046,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
finishTimeBuilder_;
+
/**
*
*
@@ -1031,6 +1061,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
public boolean hasFinishTime() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -1051,6 +1082,7 @@ public com.google.protobuf.Timestamp getFinishTime() {
return finishTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1073,6 +1105,7 @@ public Builder setFinishTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1092,6 +1125,7 @@ public Builder setFinishTime(com.google.protobuf.Timestamp.Builder builderForVal
onChanged();
return this;
}
+
/**
*
*
@@ -1119,6 +1153,7 @@ public Builder mergeFinishTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1138,6 +1173,7 @@ public Builder clearFinishTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1152,6 +1188,7 @@ public com.google.protobuf.Timestamp.Builder getFinishTimeBuilder() {
onChanged();
return getFinishTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1170,6 +1207,7 @@ public com.google.protobuf.TimestampOrBuilder getFinishTimeOrBuilder() {
: finishTime_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewMetadataOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewMetadataOrBuilder.java
index 9c29742f85..d42fd7878e 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewMetadataOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewMetadataOrBuilder.java
@@ -36,6 +36,7 @@ public interface CreateAuthorizedViewMetadataOrBuilder
* @return Whether the originalRequest field is set.
*/
boolean hasOriginalRequest();
+
/**
*
*
@@ -48,6 +49,7 @@ public interface CreateAuthorizedViewMetadataOrBuilder
* @return The originalRequest.
*/
com.google.bigtable.admin.v2.CreateAuthorizedViewRequest getOriginalRequest();
+
/**
*
*
@@ -71,6 +73,7 @@ public interface CreateAuthorizedViewMetadataOrBuilder
* @return Whether the requestTime field is set.
*/
boolean hasRequestTime();
+
/**
*
*
@@ -83,6 +86,7 @@ public interface CreateAuthorizedViewMetadataOrBuilder
* @return The requestTime.
*/
com.google.protobuf.Timestamp getRequestTime();
+
/**
*
*
@@ -106,6 +110,7 @@ public interface CreateAuthorizedViewMetadataOrBuilder
* @return Whether the finishTime field is set.
*/
boolean hasFinishTime();
+
/**
*
*
@@ -118,6 +123,7 @@ public interface CreateAuthorizedViewMetadataOrBuilder
* @return The finishTime.
*/
com.google.protobuf.Timestamp getFinishTime();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewRequest.java
index c94bb95e87..848c3efe9e 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewRequest.java
@@ -34,6 +34,7 @@ public final class CreateAuthorizedViewRequest extends com.google.protobuf.Gener
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CreateAuthorizedViewRequest)
CreateAuthorizedViewRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CreateAuthorizedViewRequest.newBuilder() to construct.
private CreateAuthorizedViewRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -70,6 +71,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -97,6 +99,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -129,6 +132,7 @@ public com.google.protobuf.ByteString getParentBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object authorizedViewId_ = "";
+
/**
*
*
@@ -155,6 +159,7 @@ public java.lang.String getAuthorizedViewId() {
return s;
}
}
+
/**
*
*
@@ -184,6 +189,7 @@ public com.google.protobuf.ByteString getAuthorizedViewIdBytes() {
public static final int AUTHORIZED_VIEW_FIELD_NUMBER = 3;
private com.google.bigtable.admin.v2.AuthorizedView authorizedView_;
+
/**
*
*
@@ -201,6 +207,7 @@ public com.google.protobuf.ByteString getAuthorizedViewIdBytes() {
public boolean hasAuthorizedView() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -220,6 +227,7 @@ public com.google.bigtable.admin.v2.AuthorizedView getAuthorizedView() {
? com.google.bigtable.admin.v2.AuthorizedView.getDefaultInstance()
: authorizedView_;
}
+
/**
*
*
@@ -421,6 +429,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -651,6 +660,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -677,6 +687,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -703,6 +714,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -728,6 +740,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -749,6 +762,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -777,6 +791,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object authorizedViewId_ = "";
+
/**
*
*
@@ -802,6 +817,7 @@ public java.lang.String getAuthorizedViewId() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -827,6 +843,7 @@ public com.google.protobuf.ByteString getAuthorizedViewIdBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -851,6 +868,7 @@ public Builder setAuthorizedViewId(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -871,6 +889,7 @@ public Builder clearAuthorizedViewId() {
onChanged();
return this;
}
+
/**
*
*
@@ -903,6 +922,7 @@ public Builder setAuthorizedViewIdBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.AuthorizedView.Builder,
com.google.bigtable.admin.v2.AuthorizedViewOrBuilder>
authorizedViewBuilder_;
+
/**
*
*
@@ -919,6 +939,7 @@ public Builder setAuthorizedViewIdBytes(com.google.protobuf.ByteString value) {
public boolean hasAuthorizedView() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -941,6 +962,7 @@ public com.google.bigtable.admin.v2.AuthorizedView getAuthorizedView() {
return authorizedViewBuilder_.getMessage();
}
}
+
/**
*
*
@@ -965,6 +987,7 @@ public Builder setAuthorizedView(com.google.bigtable.admin.v2.AuthorizedView val
onChanged();
return this;
}
+
/**
*
*
@@ -987,6 +1010,7 @@ public Builder setAuthorizedView(
onChanged();
return this;
}
+
/**
*
*
@@ -1017,6 +1041,7 @@ public Builder mergeAuthorizedView(com.google.bigtable.admin.v2.AuthorizedView v
}
return this;
}
+
/**
*
*
@@ -1038,6 +1063,7 @@ public Builder clearAuthorizedView() {
onChanged();
return this;
}
+
/**
*
*
@@ -1054,6 +1080,7 @@ public com.google.bigtable.admin.v2.AuthorizedView.Builder getAuthorizedViewBuil
onChanged();
return getAuthorizedViewFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1074,6 +1101,7 @@ public com.google.bigtable.admin.v2.AuthorizedViewOrBuilder getAuthorizedViewOrB
: authorizedView_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewRequestOrBuilder.java
index 54fd99284c..8f6bacf4e7 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateAuthorizedViewRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface CreateAuthorizedViewRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -72,6 +73,7 @@ public interface CreateAuthorizedViewRequestOrBuilder
* @return The authorizedViewId.
*/
java.lang.String getAuthorizedViewId();
+
/**
*
*
@@ -102,6 +104,7 @@ public interface CreateAuthorizedViewRequestOrBuilder
* @return Whether the authorizedView field is set.
*/
boolean hasAuthorizedView();
+
/**
*
*
@@ -116,6 +119,7 @@ public interface CreateAuthorizedViewRequestOrBuilder
* @return The authorizedView.
*/
com.google.bigtable.admin.v2.AuthorizedView getAuthorizedView();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupMetadata.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupMetadata.java
index 1ce495d9b8..1b5075acb6 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupMetadata.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupMetadata.java
@@ -34,6 +34,7 @@ public final class CreateBackupMetadata extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CreateBackupMetadata)
CreateBackupMetadataOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CreateBackupMetadata.newBuilder() to construct.
private CreateBackupMetadata(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -70,6 +71,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -93,6 +95,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -121,6 +124,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object sourceTable_ = "";
+
/**
*
*
@@ -144,6 +148,7 @@ public java.lang.String getSourceTable() {
return s;
}
}
+
/**
*
*
@@ -170,6 +175,7 @@ public com.google.protobuf.ByteString getSourceTableBytes() {
public static final int START_TIME_FIELD_NUMBER = 3;
private com.google.protobuf.Timestamp startTime_;
+
/**
*
*
@@ -185,6 +191,7 @@ public com.google.protobuf.ByteString getSourceTableBytes() {
public boolean hasStartTime() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -200,6 +207,7 @@ public boolean hasStartTime() {
public com.google.protobuf.Timestamp getStartTime() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
+
/**
*
*
@@ -216,6 +224,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public static final int END_TIME_FIELD_NUMBER = 4;
private com.google.protobuf.Timestamp endTime_;
+
/**
*
*
@@ -231,6 +240,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public boolean hasEndTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -246,6 +256,7 @@ public boolean hasEndTime() {
public com.google.protobuf.Timestamp getEndTime() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
+
/**
*
*
@@ -456,6 +467,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -704,6 +716,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -726,6 +739,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -748,6 +762,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -769,6 +784,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -786,6 +802,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -810,6 +827,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object sourceTable_ = "";
+
/**
*
*
@@ -832,6 +850,7 @@ public java.lang.String getSourceTable() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -854,6 +873,7 @@ public com.google.protobuf.ByteString getSourceTableBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -875,6 +895,7 @@ public Builder setSourceTable(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -892,6 +913,7 @@ public Builder clearSourceTable() {
onChanged();
return this;
}
+
/**
*
*
@@ -921,6 +943,7 @@ public Builder setSourceTableBytes(com.google.protobuf.ByteString value) {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
startTimeBuilder_;
+
/**
*
*
@@ -935,6 +958,7 @@ public Builder setSourceTableBytes(com.google.protobuf.ByteString value) {
public boolean hasStartTime() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -953,6 +977,7 @@ public com.google.protobuf.Timestamp getStartTime() {
return startTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -975,6 +1000,7 @@ public Builder setStartTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -994,6 +1020,7 @@ public Builder setStartTime(com.google.protobuf.Timestamp.Builder builderForValu
onChanged();
return this;
}
+
/**
*
*
@@ -1021,6 +1048,7 @@ public Builder mergeStartTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1040,6 +1068,7 @@ public Builder clearStartTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1054,6 +1083,7 @@ public com.google.protobuf.Timestamp.Builder getStartTimeBuilder() {
onChanged();
return getStartTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1070,6 +1100,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
return startTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : startTime_;
}
}
+
/**
*
*
@@ -1102,6 +1133,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
endTimeBuilder_;
+
/**
*
*
@@ -1116,6 +1148,7 @@ public com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder() {
public boolean hasEndTime() {
return ((bitField0_ & 0x00000008) != 0);
}
+
/**
*
*
@@ -1134,6 +1167,7 @@ public com.google.protobuf.Timestamp getEndTime() {
return endTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1156,6 +1190,7 @@ public Builder setEndTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1175,6 +1210,7 @@ public Builder setEndTime(com.google.protobuf.Timestamp.Builder builderForValue)
onChanged();
return this;
}
+
/**
*
*
@@ -1202,6 +1238,7 @@ public Builder mergeEndTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1221,6 +1258,7 @@ public Builder clearEndTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1235,6 +1273,7 @@ public com.google.protobuf.Timestamp.Builder getEndTimeBuilder() {
onChanged();
return getEndTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1251,6 +1290,7 @@ public com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder() {
return endTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : endTime_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupMetadataOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupMetadataOrBuilder.java
index c59de269fc..48b2419f58 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupMetadataOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupMetadataOrBuilder.java
@@ -36,6 +36,7 @@ public interface CreateBackupMetadataOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -61,6 +62,7 @@ public interface CreateBackupMetadataOrBuilder
* @return The sourceTable.
*/
java.lang.String getSourceTable();
+
/**
*
*
@@ -86,6 +88,7 @@ public interface CreateBackupMetadataOrBuilder
* @return Whether the startTime field is set.
*/
boolean hasStartTime();
+
/**
*
*
@@ -98,6 +101,7 @@ public interface CreateBackupMetadataOrBuilder
* @return The startTime.
*/
com.google.protobuf.Timestamp getStartTime();
+
/**
*
*
@@ -121,6 +125,7 @@ public interface CreateBackupMetadataOrBuilder
* @return Whether the endTime field is set.
*/
boolean hasEndTime();
+
/**
*
*
@@ -133,6 +138,7 @@ public interface CreateBackupMetadataOrBuilder
* @return The endTime.
*/
com.google.protobuf.Timestamp getEndTime();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupRequest.java
index 57b4b2c030..ba59df91f0 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupRequest.java
@@ -34,6 +34,7 @@ public final class CreateBackupRequest extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CreateBackupRequest)
CreateBackupRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CreateBackupRequest.newBuilder() to construct.
private CreateBackupRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -70,6 +71,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -97,6 +99,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -129,6 +132,7 @@ public com.google.protobuf.ByteString getParentBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object backupId_ = "";
+
/**
*
*
@@ -157,6 +161,7 @@ public java.lang.String getBackupId() {
return s;
}
}
+
/**
*
*
@@ -188,6 +193,7 @@ public com.google.protobuf.ByteString getBackupIdBytes() {
public static final int BACKUP_FIELD_NUMBER = 3;
private com.google.bigtable.admin.v2.Backup backup_;
+
/**
*
*
@@ -204,6 +210,7 @@ public com.google.protobuf.ByteString getBackupIdBytes() {
public boolean hasBackup() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -220,6 +227,7 @@ public boolean hasBackup() {
public com.google.bigtable.admin.v2.Backup getBackup() {
return backup_ == null ? com.google.bigtable.admin.v2.Backup.getDefaultInstance() : backup_;
}
+
/**
*
*
@@ -417,6 +425,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -646,6 +655,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -672,6 +682,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -698,6 +709,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -723,6 +735,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -744,6 +757,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -772,6 +786,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object backupId_ = "";
+
/**
*
*
@@ -799,6 +814,7 @@ public java.lang.String getBackupId() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -826,6 +842,7 @@ public com.google.protobuf.ByteString getBackupIdBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -852,6 +869,7 @@ public Builder setBackupId(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -874,6 +892,7 @@ public Builder clearBackupId() {
onChanged();
return this;
}
+
/**
*
*
@@ -908,6 +927,7 @@ public Builder setBackupIdBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.Backup.Builder,
com.google.bigtable.admin.v2.BackupOrBuilder>
backupBuilder_;
+
/**
*
*
@@ -923,6 +943,7 @@ public Builder setBackupIdBytes(com.google.protobuf.ByteString value) {
public boolean hasBackup() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -942,6 +963,7 @@ public com.google.bigtable.admin.v2.Backup getBackup() {
return backupBuilder_.getMessage();
}
}
+
/**
*
*
@@ -965,6 +987,7 @@ public Builder setBackup(com.google.bigtable.admin.v2.Backup value) {
onChanged();
return this;
}
+
/**
*
*
@@ -985,6 +1008,7 @@ public Builder setBackup(com.google.bigtable.admin.v2.Backup.Builder builderForV
onChanged();
return this;
}
+
/**
*
*
@@ -1013,6 +1037,7 @@ public Builder mergeBackup(com.google.bigtable.admin.v2.Backup value) {
}
return this;
}
+
/**
*
*
@@ -1033,6 +1058,7 @@ public Builder clearBackup() {
onChanged();
return this;
}
+
/**
*
*
@@ -1048,6 +1074,7 @@ public com.google.bigtable.admin.v2.Backup.Builder getBackupBuilder() {
onChanged();
return getBackupFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1065,6 +1092,7 @@ public com.google.bigtable.admin.v2.BackupOrBuilder getBackupOrBuilder() {
return backup_ == null ? com.google.bigtable.admin.v2.Backup.getDefaultInstance() : backup_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupRequestOrBuilder.java
index 82a48200b6..8186ab9d93 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateBackupRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface CreateBackupRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -74,6 +75,7 @@ public interface CreateBackupRequestOrBuilder
* @return The backupId.
*/
java.lang.String getBackupId();
+
/**
*
*
@@ -105,6 +107,7 @@ public interface CreateBackupRequestOrBuilder
* @return Whether the backup field is set.
*/
boolean hasBackup();
+
/**
*
*
@@ -118,6 +121,7 @@ public interface CreateBackupRequestOrBuilder
* @return The backup.
*/
com.google.bigtable.admin.v2.Backup getBackup();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateClusterMetadata.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateClusterMetadata.java
index e0975c426d..e1c08626b6 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateClusterMetadata.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/CreateClusterMetadata.java
@@ -33,6 +33,7 @@ public final class CreateClusterMetadata extends com.google.protobuf.GeneratedMe
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CreateClusterMetadata)
CreateClusterMetadataOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CreateClusterMetadata.newBuilder() to construct.
private CreateClusterMetadata(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -112,6 +113,7 @@ public interface TableProgressOrBuilder
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
+
/**
* .google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
*
@@ -119,6 +121,7 @@ public interface TableProgressOrBuilder
*/
com.google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State getState();
}
+
/**
*
*
@@ -133,6 +136,7 @@ public static final class TableProgress extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.CreateClusterMetadata.TableProgress)
TableProgressOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use TableProgress.newBuilder() to construct.
private TableProgress(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -214,6 +218,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
/** STATE_UNSPECIFIED = 0;
*/
public static final int STATE_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -224,6 +229,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* PENDING = 1;
*/
public static final int PENDING_VALUE = 1;
+
/**
*
*
@@ -234,6 +240,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* COPYING = 2;
*/
public static final int COPYING_VALUE = 2;
+
/**
*
*
@@ -244,6 +251,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* COMPLETED = 3;
*/
public static final int COMPLETED_VALUE = 3;
+
/**
*
*
@@ -348,6 +356,7 @@ private State(int value) {
public static final int ESTIMATED_SIZE_BYTES_FIELD_NUMBER = 2;
private long estimatedSizeBytes_ = 0L;
+
/**
*
*
@@ -366,6 +375,7 @@ public long getEstimatedSizeBytes() {
public static final int ESTIMATED_COPIED_BYTES_FIELD_NUMBER = 3;
private long estimatedCopiedBytes_ = 0L;
+
/**
*
*
@@ -386,6 +396,7 @@ public long getEstimatedCopiedBytes() {
public static final int STATE_FIELD_NUMBER = 4;
private int state_ = 0;
+
/**
* .google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
*
@@ -395,6 +406,7 @@ public long getEstimatedCopiedBytes() {
public int getStateValue() {
return state_;
}
+
/**
* .google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
*
@@ -595,6 +607,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -813,6 +826,7 @@ public Builder mergeFrom(
private int bitField0_;
private long estimatedSizeBytes_;
+
/**
*
*
@@ -828,6 +842,7 @@ public Builder mergeFrom(
public long getEstimatedSizeBytes() {
return estimatedSizeBytes_;
}
+
/**
*
*
@@ -847,6 +862,7 @@ public Builder setEstimatedSizeBytes(long value) {
onChanged();
return this;
}
+
/**
*
*
@@ -866,6 +882,7 @@ public Builder clearEstimatedSizeBytes() {
}
private long estimatedCopiedBytes_;
+
/**
*
*
@@ -883,6 +900,7 @@ public Builder clearEstimatedSizeBytes() {
public long getEstimatedCopiedBytes() {
return estimatedCopiedBytes_;
}
+
/**
*
*
@@ -904,6 +922,7 @@ public Builder setEstimatedCopiedBytes(long value) {
onChanged();
return this;
}
+
/**
*
*
@@ -925,6 +944,7 @@ public Builder clearEstimatedCopiedBytes() {
}
private int state_ = 0;
+
/**
* .google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
*
@@ -934,6 +954,7 @@ public Builder clearEstimatedCopiedBytes() {
public int getStateValue() {
return state_;
}
+
/**
* .google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
*
@@ -946,6 +967,7 @@ public Builder setStateValue(int value) {
onChanged();
return this;
}
+
/**
* .google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
*
@@ -960,6 +982,7 @@ public com.google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State ge
? com.google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State.UNRECOGNIZED
: result;
}
+
/**
* .google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
*
@@ -976,6 +999,7 @@ public Builder setState(
onChanged();
return this;
}
+
/**
* .google.bigtable.admin.v2.CreateClusterMetadata.TableProgress.State state = 4;
*
@@ -1058,6 +1082,7 @@ public com.google.protobuf.Parserrepeated .google.bigtable.admin.v2.CreateTableRequest.Split initial_splits = 4;
*/
java.util.Listrepeated .google.bigtable.admin.v2.CreateTableRequest.Split initial_splits = 4;
*/
com.google.bigtable.admin.v2.CreateTableRequest.Split getInitialSplits(int index);
+
/**
*
*
@@ -197,6 +203,7 @@ public interface CreateTableRequestOrBuilder
* repeated .google.bigtable.admin.v2.CreateTableRequest.Split initial_splits = 4;
*/
int getInitialSplitsCount();
+
/**
*
*
@@ -223,6 +230,7 @@ public interface CreateTableRequestOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.CreateTableRequest.SplitOrBuilder>
getInitialSplitsOrBuilderList();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DataBoostReadLocalWrites.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DataBoostReadLocalWrites.java
index 752b9a79b2..27ce04948c 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DataBoostReadLocalWrites.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DataBoostReadLocalWrites.java
@@ -34,6 +34,7 @@ public final class DataBoostReadLocalWrites extends com.google.protobuf.Generate
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DataBoostReadLocalWrites)
DataBoostReadLocalWritesOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DataBoostReadLocalWrites.newBuilder() to construct.
private DataBoostReadLocalWrites(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -213,6 +214,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAppProfileRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAppProfileRequest.java
index 67241823b1..b3c51d15b1 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAppProfileRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAppProfileRequest.java
@@ -33,6 +33,7 @@ public final class DeleteAppProfileRequest extends com.google.protobuf.Generated
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteAppProfileRequest)
DeleteAppProfileRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteAppProfileRequest.newBuilder() to construct.
private DeleteAppProfileRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -67,6 +68,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -94,6 +96,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -124,6 +127,7 @@ public com.google.protobuf.ByteString getNameBytes() {
public static final int IGNORE_WARNINGS_FIELD_NUMBER = 2;
private boolean ignoreWarnings_ = false;
+
/**
*
*
@@ -308,6 +312,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -505,6 +510,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -531,6 +537,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -557,6 +564,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -582,6 +590,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -603,6 +612,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -631,6 +641,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private boolean ignoreWarnings_;
+
/**
*
*
@@ -646,6 +657,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
public boolean getIgnoreWarnings() {
return ignoreWarnings_;
}
+
/**
*
*
@@ -665,6 +677,7 @@ public Builder setIgnoreWarnings(boolean value) {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAppProfileRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAppProfileRequestOrBuilder.java
index 353e58f5e7..1cafb3b1c5 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAppProfileRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAppProfileRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface DeleteAppProfileRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAuthorizedViewRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAuthorizedViewRequest.java
index bb332b8d8a..279a73bbca 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAuthorizedViewRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAuthorizedViewRequest.java
@@ -34,6 +34,7 @@ public final class DeleteAuthorizedViewRequest extends com.google.protobuf.Gener
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteAuthorizedViewRequest)
DeleteAuthorizedViewRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteAuthorizedViewRequest.newBuilder() to construct.
private DeleteAuthorizedViewRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -96,6 +98,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -128,6 +131,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object etag_ = "";
+
/**
*
*
@@ -154,6 +158,7 @@ public java.lang.String getEtag() {
return s;
}
}
+
/**
*
*
@@ -350,6 +355,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -550,6 +556,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -576,6 +583,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -602,6 +610,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -627,6 +636,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -648,6 +658,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -676,6 +687,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object etag_ = "";
+
/**
*
*
@@ -701,6 +713,7 @@ public java.lang.String getEtag() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -726,6 +739,7 @@ public com.google.protobuf.ByteString getEtagBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -750,6 +764,7 @@ public Builder setEtag(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -770,6 +785,7 @@ public Builder clearEtag() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAuthorizedViewRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAuthorizedViewRequestOrBuilder.java
index 47002b4ebe..f10219d7bd 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAuthorizedViewRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteAuthorizedViewRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface DeleteAuthorizedViewRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -72,6 +73,7 @@ public interface DeleteAuthorizedViewRequestOrBuilder
* @return The etag.
*/
java.lang.String getEtag();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteBackupRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteBackupRequest.java
index 2acc1a0137..80361bc5af 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteBackupRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteBackupRequest.java
@@ -34,6 +34,7 @@ public final class DeleteBackupRequest extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteBackupRequest)
DeleteBackupRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteBackupRequest.newBuilder() to construct.
private DeleteBackupRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -68,6 +69,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -95,6 +97,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -282,6 +285,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -467,6 +471,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -493,6 +498,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -519,6 +525,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -544,6 +551,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -565,6 +573,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteBackupRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteBackupRequestOrBuilder.java
index 766adbc45a..36b36682bf 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteBackupRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteBackupRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface DeleteBackupRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteClusterRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteClusterRequest.java
index b23c9bd393..4a107221f0 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteClusterRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteClusterRequest.java
@@ -33,6 +33,7 @@ public final class DeleteClusterRequest extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteClusterRequest)
DeleteClusterRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteClusterRequest.newBuilder() to construct.
private DeleteClusterRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -67,6 +68,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -93,6 +95,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -279,6 +282,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -463,6 +467,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -488,6 +493,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -513,6 +519,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -537,6 +544,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -557,6 +565,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteClusterRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteClusterRequestOrBuilder.java
index b426b23692..c354c6af3e 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteClusterRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteClusterRequestOrBuilder.java
@@ -39,6 +39,7 @@ public interface DeleteClusterRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteInstanceRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteInstanceRequest.java
index 9400ea258d..2db0b2a374 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteInstanceRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteInstanceRequest.java
@@ -33,6 +33,7 @@ public final class DeleteInstanceRequest extends com.google.protobuf.GeneratedMe
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteInstanceRequest)
DeleteInstanceRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteInstanceRequest.newBuilder() to construct.
private DeleteInstanceRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -67,6 +68,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -93,6 +95,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -279,6 +282,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -463,6 +467,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -488,6 +493,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -513,6 +519,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -537,6 +544,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -557,6 +565,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteInstanceRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteInstanceRequestOrBuilder.java
index 64851471a0..ede36ac255 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteInstanceRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteInstanceRequestOrBuilder.java
@@ -39,6 +39,7 @@ public interface DeleteInstanceRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteLogicalViewRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteLogicalViewRequest.java
index 01edfe8008..8cc2c840e7 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteLogicalViewRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteLogicalViewRequest.java
@@ -33,6 +33,7 @@ public final class DeleteLogicalViewRequest extends com.google.protobuf.Generate
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteLogicalViewRequest)
DeleteLogicalViewRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteLogicalViewRequest.newBuilder() to construct.
private DeleteLogicalViewRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -68,6 +69,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -95,6 +97,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -127,6 +130,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object etag_ = "";
+
/**
*
*
@@ -153,6 +157,7 @@ public java.lang.String getEtag() {
return s;
}
}
+
/**
*
*
@@ -349,6 +354,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -548,6 +554,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -574,6 +581,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -600,6 +608,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -625,6 +634,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -646,6 +656,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -674,6 +685,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object etag_ = "";
+
/**
*
*
@@ -699,6 +711,7 @@ public java.lang.String getEtag() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -724,6 +737,7 @@ public com.google.protobuf.ByteString getEtagBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -748,6 +762,7 @@ public Builder setEtag(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -768,6 +783,7 @@ public Builder clearEtag() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteLogicalViewRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteLogicalViewRequestOrBuilder.java
index dcd368449f..007c86a822 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteLogicalViewRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteLogicalViewRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface DeleteLogicalViewRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -72,6 +73,7 @@ public interface DeleteLogicalViewRequestOrBuilder
* @return The etag.
*/
java.lang.String getEtag();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteMaterializedViewRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteMaterializedViewRequest.java
index 5f48c1dbbc..a4d99d9529 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteMaterializedViewRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteMaterializedViewRequest.java
@@ -33,6 +33,7 @@ public final class DeleteMaterializedViewRequest extends com.google.protobuf.Gen
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteMaterializedViewRequest)
DeleteMaterializedViewRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteMaterializedViewRequest.newBuilder() to construct.
private DeleteMaterializedViewRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -68,6 +69,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -95,6 +97,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -127,6 +130,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object etag_ = "";
+
/**
*
*
@@ -153,6 +157,7 @@ public java.lang.String getEtag() {
return s;
}
}
+
/**
*
*
@@ -349,6 +354,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -548,6 +554,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -574,6 +581,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -600,6 +608,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -625,6 +634,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -646,6 +656,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -674,6 +685,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object etag_ = "";
+
/**
*
*
@@ -699,6 +711,7 @@ public java.lang.String getEtag() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -724,6 +737,7 @@ public com.google.protobuf.ByteString getEtagBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -748,6 +762,7 @@ public Builder setEtag(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -768,6 +783,7 @@ public Builder clearEtag() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteMaterializedViewRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteMaterializedViewRequestOrBuilder.java
index 526779622b..5930e2bab6 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteMaterializedViewRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteMaterializedViewRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface DeleteMaterializedViewRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -72,6 +73,7 @@ public interface DeleteMaterializedViewRequestOrBuilder
* @return The etag.
*/
java.lang.String getEtag();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteSnapshotRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteSnapshotRequest.java
index b33be8e278..34a00697d9 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteSnapshotRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteSnapshotRequest.java
@@ -39,6 +39,7 @@ public final class DeleteSnapshotRequest extends com.google.protobuf.GeneratedMe
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteSnapshotRequest)
DeleteSnapshotRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteSnapshotRequest.newBuilder() to construct.
private DeleteSnapshotRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -73,6 +74,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -100,6 +102,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -287,6 +290,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -477,6 +481,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -503,6 +508,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -529,6 +535,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -554,6 +561,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -575,6 +583,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteSnapshotRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteSnapshotRequestOrBuilder.java
index 69044fe684..88ae9d857b 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteSnapshotRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteSnapshotRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface DeleteSnapshotRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteTableRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteTableRequest.java
index c8876b1cce..a0b89e104e 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteTableRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteTableRequest.java
@@ -34,6 +34,7 @@ public final class DeleteTableRequest extends com.google.protobuf.GeneratedMessa
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DeleteTableRequest)
DeleteTableRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DeleteTableRequest.newBuilder() to construct.
private DeleteTableRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -68,6 +69,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -95,6 +97,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -282,6 +285,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -467,6 +471,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -493,6 +498,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -519,6 +525,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -544,6 +551,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -565,6 +573,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteTableRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteTableRequestOrBuilder.java
index be80e3caf4..9fab2c3a88 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteTableRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DeleteTableRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface DeleteTableRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DropRowRangeRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DropRowRangeRequest.java
index 573509a99f..6767f6437c 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DropRowRangeRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DropRowRangeRequest.java
@@ -34,6 +34,7 @@ public final class DropRowRangeRequest extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.DropRowRangeRequest)
DropRowRangeRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DropRowRangeRequest.newBuilder() to construct.
private DropRowRangeRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -81,6 +82,7 @@ public enum TargetCase
private TargetCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -117,6 +119,7 @@ public TargetCase getTargetCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -144,6 +147,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -173,6 +177,7 @@ public com.google.protobuf.ByteString getNameBytes() {
}
public static final int ROW_KEY_PREFIX_FIELD_NUMBER = 2;
+
/**
*
*
@@ -189,6 +194,7 @@ public com.google.protobuf.ByteString getNameBytes() {
public boolean hasRowKeyPrefix() {
return targetCase_ == 2;
}
+
/**
*
*
@@ -210,6 +216,7 @@ public com.google.protobuf.ByteString getRowKeyPrefix() {
}
public static final int DELETE_ALL_DATA_FROM_TABLE_FIELD_NUMBER = 3;
+
/**
*
*
@@ -225,6 +232,7 @@ public com.google.protobuf.ByteString getRowKeyPrefix() {
public boolean hasDeleteAllDataFromTable() {
return targetCase_ == 3;
}
+
/**
*
*
@@ -442,6 +450,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -677,6 +686,7 @@ public Builder clearTarget() {
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -703,6 +713,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -729,6 +740,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -754,6 +766,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -775,6 +788,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -817,6 +831,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
public boolean hasRowKeyPrefix() {
return targetCase_ == 2;
}
+
/**
*
*
@@ -835,6 +850,7 @@ public com.google.protobuf.ByteString getRowKeyPrefix() {
}
return com.google.protobuf.ByteString.EMPTY;
}
+
/**
*
*
@@ -857,6 +873,7 @@ public Builder setRowKeyPrefix(com.google.protobuf.ByteString value) {
onChanged();
return this;
}
+
/**
*
*
@@ -892,6 +909,7 @@ public Builder clearRowKeyPrefix() {
public boolean hasDeleteAllDataFromTable() {
return targetCase_ == 3;
}
+
/**
*
*
@@ -909,6 +927,7 @@ public boolean getDeleteAllDataFromTable() {
}
return false;
}
+
/**
*
*
@@ -928,6 +947,7 @@ public Builder setDeleteAllDataFromTable(boolean value) {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DropRowRangeRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DropRowRangeRequestOrBuilder.java
index effefba143..35953143c5 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DropRowRangeRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/DropRowRangeRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface DropRowRangeRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -70,6 +71,7 @@ public interface DropRowRangeRequestOrBuilder
* @return Whether the rowKeyPrefix field is set.
*/
boolean hasRowKeyPrefix();
+
/**
*
*
@@ -96,6 +98,7 @@ public interface DropRowRangeRequestOrBuilder
* @return Whether the deleteAllDataFromTable field is set.
*/
boolean hasDeleteAllDataFromTable();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/EncryptionInfo.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/EncryptionInfo.java
index e26d21edfe..e669813527 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/EncryptionInfo.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/EncryptionInfo.java
@@ -36,6 +36,7 @@ public final class EncryptionInfo extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.EncryptionInfo)
EncryptionInfoOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use EncryptionInfo.newBuilder() to construct.
private EncryptionInfo(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -128,6 +129,7 @@ public enum EncryptionType implements com.google.protobuf.ProtocolMessageEnum {
* ENCRYPTION_TYPE_UNSPECIFIED = 0;
*/
public static final int ENCRYPTION_TYPE_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -140,6 +142,7 @@ public enum EncryptionType implements com.google.protobuf.ProtocolMessageEnum {
* GOOGLE_DEFAULT_ENCRYPTION = 1;
*/
public static final int GOOGLE_DEFAULT_ENCRYPTION_VALUE = 1;
+
/**
*
*
@@ -243,6 +246,7 @@ private EncryptionType(int value) {
private int bitField0_;
public static final int ENCRYPTION_TYPE_FIELD_NUMBER = 3;
private int encryptionType_ = 0;
+
/**
*
*
@@ -260,6 +264,7 @@ private EncryptionType(int value) {
public int getEncryptionTypeValue() {
return encryptionType_;
}
+
/**
*
*
@@ -284,6 +289,7 @@ public com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType getEncryptionT
public static final int ENCRYPTION_STATUS_FIELD_NUMBER = 4;
private com.google.rpc.Status encryptionStatus_;
+
/**
*
*
@@ -302,6 +308,7 @@ public com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType getEncryptionT
public boolean hasEncryptionStatus() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -322,6 +329,7 @@ public com.google.rpc.Status getEncryptionStatus() {
? com.google.rpc.Status.getDefaultInstance()
: encryptionStatus_;
}
+
/**
*
*
@@ -345,6 +353,7 @@ public com.google.rpc.StatusOrBuilder getEncryptionStatusOrBuilder() {
@SuppressWarnings("serial")
private volatile java.lang.Object kmsKeyVersion_ = "";
+
/**
*
*
@@ -371,6 +380,7 @@ public java.lang.String getKmsKeyVersion() {
return s;
}
}
+
/**
*
*
@@ -584,6 +594,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -814,6 +825,7 @@ public Builder mergeFrom(
private int bitField0_;
private int encryptionType_ = 0;
+
/**
*
*
@@ -831,6 +843,7 @@ public Builder mergeFrom(
public int getEncryptionTypeValue() {
return encryptionType_;
}
+
/**
*
*
@@ -851,6 +864,7 @@ public Builder setEncryptionTypeValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -872,6 +886,7 @@ public com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType getEncryptionT
? com.google.bigtable.admin.v2.EncryptionInfo.EncryptionType.UNRECOGNIZED
: result;
}
+
/**
*
*
@@ -896,6 +911,7 @@ public Builder setEncryptionType(
onChanged();
return this;
}
+
/**
*
*
@@ -920,6 +936,7 @@ public Builder clearEncryptionType() {
private com.google.protobuf.SingleFieldBuilderV3<
com.google.rpc.Status, com.google.rpc.Status.Builder, com.google.rpc.StatusOrBuilder>
encryptionStatusBuilder_;
+
/**
*
*
@@ -937,6 +954,7 @@ public Builder clearEncryptionType() {
public boolean hasEncryptionStatus() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -960,6 +978,7 @@ public com.google.rpc.Status getEncryptionStatus() {
return encryptionStatusBuilder_.getMessage();
}
}
+
/**
*
*
@@ -985,6 +1004,7 @@ public Builder setEncryptionStatus(com.google.rpc.Status value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1007,6 +1027,7 @@ public Builder setEncryptionStatus(com.google.rpc.Status.Builder builderForValue
onChanged();
return this;
}
+
/**
*
*
@@ -1037,6 +1058,7 @@ public Builder mergeEncryptionStatus(com.google.rpc.Status value) {
}
return this;
}
+
/**
*
*
@@ -1059,6 +1081,7 @@ public Builder clearEncryptionStatus() {
onChanged();
return this;
}
+
/**
*
*
@@ -1076,6 +1099,7 @@ public com.google.rpc.Status.Builder getEncryptionStatusBuilder() {
onChanged();
return getEncryptionStatusFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1097,6 +1121,7 @@ public com.google.rpc.StatusOrBuilder getEncryptionStatusOrBuilder() {
: encryptionStatus_;
}
}
+
/**
*
*
@@ -1125,6 +1150,7 @@ public com.google.rpc.StatusOrBuilder getEncryptionStatusOrBuilder() {
}
private java.lang.Object kmsKeyVersion_ = "";
+
/**
*
*
@@ -1150,6 +1176,7 @@ public java.lang.String getKmsKeyVersion() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1175,6 +1202,7 @@ public com.google.protobuf.ByteString getKmsKeyVersionBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1199,6 +1227,7 @@ public Builder setKmsKeyVersion(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1219,6 +1248,7 @@ public Builder clearKmsKeyVersion() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/EncryptionInfoOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/EncryptionInfoOrBuilder.java
index 328ab1688c..00ee57d68f 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/EncryptionInfoOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/EncryptionInfoOrBuilder.java
@@ -38,6 +38,7 @@ public interface EncryptionInfoOrBuilder
* @return The enum numeric value on the wire for encryptionType.
*/
int getEncryptionTypeValue();
+
/**
*
*
@@ -68,6 +69,7 @@ public interface EncryptionInfoOrBuilder
* @return Whether the encryptionStatus field is set.
*/
boolean hasEncryptionStatus();
+
/**
*
*
@@ -83,6 +85,7 @@ public interface EncryptionInfoOrBuilder
* @return The encryptionStatus.
*/
com.google.rpc.Status getEncryptionStatus();
+
/**
*
*
@@ -112,6 +115,7 @@ public interface EncryptionInfoOrBuilder
* @return The kmsKeyVersion.
*/
java.lang.String getKmsKeyVersion();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/GcRule.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/GcRule.java
index 1d431d9e1a..d459dd00d3 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/GcRule.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/GcRule.java
@@ -33,6 +33,7 @@ public final class GcRule extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.GcRule)
GcRuleOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use GcRule.newBuilder() to construct.
private GcRule(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -76,6 +77,7 @@ public interface IntersectionOrBuilder
* repeated .google.bigtable.admin.v2.GcRule rules = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.GcRule rules = 1;
*/
com.google.bigtable.admin.v2.GcRule getRules(int index);
+
/**
*
*
@@ -96,6 +99,7 @@ public interface IntersectionOrBuilder
* repeated .google.bigtable.admin.v2.GcRule rules = 1;
*/
int getRulesCount();
+
/**
*
*
@@ -106,6 +110,7 @@ public interface IntersectionOrBuilder
* repeated .google.bigtable.admin.v2.GcRule rules = 1;
*/
java.util.List extends com.google.bigtable.admin.v2.GcRuleOrBuilder> getRulesOrBuilderList();
+
/**
*
*
@@ -117,6 +122,7 @@ public interface IntersectionOrBuilder
*/
com.google.bigtable.admin.v2.GcRuleOrBuilder getRulesOrBuilder(int index);
}
+
/**
*
*
@@ -131,6 +137,7 @@ public static final class Intersection extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.GcRule.Intersection)
IntersectionOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Intersection.newBuilder() to construct.
private Intersection(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -165,6 +172,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.admin.v2.GcRule rules = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.GcRule rules = 1;
*/
com.google.bigtable.admin.v2.GcRule getRules(int index);
+
/**
*
*
@@ -1073,6 +1105,7 @@ public interface UnionOrBuilder
* repeated .google.bigtable.admin.v2.GcRule rules = 1;
*/
int getRulesCount();
+
/**
*
*
@@ -1083,6 +1116,7 @@ public interface UnionOrBuilder
* repeated .google.bigtable.admin.v2.GcRule rules = 1;
*/
java.util.List extends com.google.bigtable.admin.v2.GcRuleOrBuilder> getRulesOrBuilderList();
+
/**
*
*
@@ -1094,6 +1128,7 @@ public interface UnionOrBuilder
*/
com.google.bigtable.admin.v2.GcRuleOrBuilder getRulesOrBuilder(int index);
}
+
/**
*
*
@@ -1108,6 +1143,7 @@ public static final class Union extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.GcRule.Union)
UnionOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Union.newBuilder() to construct.
private Union(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -1142,6 +1178,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private java.util.ListSTATE_NOT_KNOWN = 0;
*/
public static final int STATE_NOT_KNOWN_VALUE = 0;
+
/**
*
*
@@ -147,6 +149,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* READY = 1;
*/
public static final int READY_VALUE = 1;
+
/**
*
*
@@ -301,6 +304,7 @@ public enum Type implements com.google.protobuf.ProtocolMessageEnum {
* TYPE_UNSPECIFIED = 0;
*/
public static final int TYPE_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -312,6 +316,7 @@ public enum Type implements com.google.protobuf.ProtocolMessageEnum {
* PRODUCTION = 1;
*/
public static final int PRODUCTION_VALUE = 1;
+
/**
*
*
@@ -412,6 +417,7 @@ private Type(int value) {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -436,6 +442,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -465,6 +472,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object displayName_ = "";
+
/**
*
*
@@ -490,6 +498,7 @@ public java.lang.String getDisplayName() {
return s;
}
}
+
/**
*
*
@@ -518,6 +527,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() {
public static final int STATE_FIELD_NUMBER = 3;
private int state_ = 0;
+
/**
*
*
@@ -535,6 +545,7 @@ public com.google.protobuf.ByteString getDisplayNameBytes() {
public int getStateValue() {
return state_;
}
+
/**
*
*
@@ -557,6 +568,7 @@ public com.google.bigtable.admin.v2.Instance.State getState() {
public static final int TYPE_FIELD_NUMBER = 4;
private int type_ = 0;
+
/**
*
*
@@ -572,6 +584,7 @@ public com.google.bigtable.admin.v2.Instance.State getState() {
public int getTypeValue() {
return type_;
}
+
/**
*
*
@@ -616,6 +629,7 @@ private com.google.protobuf.MapFieldmap<string, string> labels = 5;
*/
int getLabelsCount();
+
/**
*
*
@@ -174,9 +179,11 @@ public interface InstanceOrBuilder
* map<string, string> labels = 5;
*/
boolean containsLabels(java.lang.String key);
+
/** Use {@link #getLabelsMap()} instead. */
@java.lang.Deprecated
java.util.Mapmap<string, string> labels = 5;
*/
java.util.Maprepeated .google.bigtable.admin.v2.AppProfile app_profiles = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.AppProfile app_profiles = 1;
*/
com.google.bigtable.admin.v2.AppProfile getAppProfiles(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListAppProfilesResponseOrBuilder
* repeated .google.bigtable.admin.v2.AppProfile app_profiles = 1;
*/
int getAppProfilesCount();
+
/**
*
*
@@ -65,6 +68,7 @@ public interface ListAppProfilesResponseOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.AppProfileOrBuilder>
getAppProfilesOrBuilderList();
+
/**
*
*
@@ -90,6 +94,7 @@ public interface ListAppProfilesResponseOrBuilder
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
+
/**
*
*
@@ -120,6 +125,7 @@ public interface ListAppProfilesResponseOrBuilder
* @return A list containing the failedLocations.
*/
java.util.Listrepeated .google.bigtable.admin.v2.AuthorizedView authorized_views = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.AuthorizedView authorized_views = 1;
*/
com.google.bigtable.admin.v2.AuthorizedView getAuthorizedViews(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListAuthorizedViewsResponseOrBuilder
* repeated .google.bigtable.admin.v2.AuthorizedView authorized_views = 1;
*/
int getAuthorizedViewsCount();
+
/**
*
*
@@ -65,6 +68,7 @@ public interface ListAuthorizedViewsResponseOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.AuthorizedViewOrBuilder>
getAuthorizedViewsOrBuilderList();
+
/**
*
*
@@ -90,6 +94,7 @@ public interface ListAuthorizedViewsResponseOrBuilder
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsRequest.java
index 8843578c2e..07443ce203 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsRequest.java
@@ -34,6 +34,7 @@ public final class ListBackupsRequest extends com.google.protobuf.GeneratedMessa
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListBackupsRequest)
ListBackupsRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListBackupsRequest.newBuilder() to construct.
private ListBackupsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -71,6 +72,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -99,6 +101,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -132,6 +135,7 @@ public com.google.protobuf.ByteString getParentBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object filter_ = "";
+
/**
*
*
@@ -187,6 +191,7 @@ public java.lang.String getFilter() {
return s;
}
}
+
/**
*
*
@@ -247,6 +252,7 @@ public com.google.protobuf.ByteString getFilterBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object orderBy_ = "";
+
/**
*
*
@@ -291,6 +297,7 @@ public java.lang.String getOrderBy() {
return s;
}
}
+
/**
*
*
@@ -338,6 +345,7 @@ public com.google.protobuf.ByteString getOrderByBytes() {
public static final int PAGE_SIZE_FIELD_NUMBER = 4;
private int pageSize_ = 0;
+
/**
*
*
@@ -359,6 +367,7 @@ public int getPageSize() {
@SuppressWarnings("serial")
private volatile java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -386,6 +395,7 @@ public java.lang.String getPageToken() {
return s;
}
}
+
/**
*
*
@@ -609,6 +619,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -852,6 +863,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -879,6 +891,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -906,6 +919,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -932,6 +946,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -954,6 +969,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -983,6 +999,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object filter_ = "";
+
/**
*
*
@@ -1037,6 +1054,7 @@ public java.lang.String getFilter() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1091,6 +1109,7 @@ public com.google.protobuf.ByteString getFilterBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1144,6 +1163,7 @@ public Builder setFilter(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1193,6 +1213,7 @@ public Builder clearFilter() {
onChanged();
return this;
}
+
/**
*
*
@@ -1249,6 +1270,7 @@ public Builder setFilterBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object orderBy_ = "";
+
/**
*
*
@@ -1292,6 +1314,7 @@ public java.lang.String getOrderBy() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1335,6 +1358,7 @@ public com.google.protobuf.ByteString getOrderByBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1377,6 +1401,7 @@ public Builder setOrderBy(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1415,6 +1440,7 @@ public Builder clearOrderBy() {
onChanged();
return this;
}
+
/**
*
*
@@ -1460,6 +1486,7 @@ public Builder setOrderByBytes(com.google.protobuf.ByteString value) {
}
private int pageSize_;
+
/**
*
*
@@ -1476,6 +1503,7 @@ public Builder setOrderByBytes(com.google.protobuf.ByteString value) {
public int getPageSize() {
return pageSize_;
}
+
/**
*
*
@@ -1496,6 +1524,7 @@ public Builder setPageSize(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1516,6 +1545,7 @@ public Builder clearPageSize() {
}
private java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -1542,6 +1572,7 @@ public java.lang.String getPageToken() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1568,6 +1599,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1593,6 +1625,7 @@ public Builder setPageToken(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1614,6 +1647,7 @@ public Builder clearPageToken() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsRequestOrBuilder.java
index cf6521114c..a3ba27a948 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsRequestOrBuilder.java
@@ -41,6 +41,7 @@ public interface ListBackupsRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -103,6 +104,7 @@ public interface ListBackupsRequestOrBuilder
* @return The filter.
*/
java.lang.String getFilter();
+
/**
*
*
@@ -181,6 +183,7 @@ public interface ListBackupsRequestOrBuilder
* @return The orderBy.
*/
java.lang.String getOrderBy();
+
/**
*
*
@@ -245,6 +248,7 @@ public interface ListBackupsRequestOrBuilder
* @return The pageToken.
*/
java.lang.String getPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsResponse.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsResponse.java
index 4c4397e726..d005c526c1 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsResponse.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListBackupsResponse.java
@@ -34,6 +34,7 @@ public final class ListBackupsResponse extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListBackupsResponse)
ListBackupsResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListBackupsResponse.newBuilder() to construct.
private ListBackupsResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.admin.v2.Backup backups = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.Backup backups = 1;
*/
com.google.bigtable.admin.v2.Backup getBackups(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListBackupsResponseOrBuilder
* repeated .google.bigtable.admin.v2.Backup backups = 1;
*/
int getBackupsCount();
+
/**
*
*
@@ -64,6 +67,7 @@ public interface ListBackupsResponseOrBuilder
* repeated .google.bigtable.admin.v2.Backup backups = 1;
*/
java.util.List extends com.google.bigtable.admin.v2.BackupOrBuilder> getBackupsOrBuilderList();
+
/**
*
*
@@ -89,6 +93,7 @@ public interface ListBackupsResponseOrBuilder
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersRequest.java
index ee242f2a81..82bdd7dfd9 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersRequest.java
@@ -33,6 +33,7 @@ public final class ListClustersRequest extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListClustersRequest)
ListClustersRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListClustersRequest.newBuilder() to construct.
private ListClustersRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -68,6 +69,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -97,6 +99,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -131,6 +134,7 @@ public com.google.protobuf.ByteString getParentBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -154,6 +158,7 @@ public java.lang.String getPageToken() {
return s;
}
}
+
/**
*
*
@@ -346,6 +351,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -545,6 +551,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -573,6 +580,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -601,6 +609,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -628,6 +637,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -651,6 +661,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -681,6 +692,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -703,6 +715,7 @@ public java.lang.String getPageToken() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -725,6 +738,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -746,6 +760,7 @@ public Builder setPageToken(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -763,6 +778,7 @@ public Builder clearPageToken() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersRequestOrBuilder.java
index 5a5665351e..eaa8e4bc0c 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersRequestOrBuilder.java
@@ -42,6 +42,7 @@ public interface ListClustersRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -73,6 +74,7 @@ public interface ListClustersRequestOrBuilder
* @return The pageToken.
*/
java.lang.String getPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersResponse.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersResponse.java
index dcb36801d7..481dcd7da7 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersResponse.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListClustersResponse.java
@@ -33,6 +33,7 @@ public final class ListClustersResponse extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListClustersResponse)
ListClustersResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListClustersResponse.newBuilder() to construct.
private ListClustersResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.admin.v2.Cluster clusters = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.Cluster clusters = 1;
*/
com.google.bigtable.admin.v2.Cluster getClusters(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListClustersResponseOrBuilder
* repeated .google.bigtable.admin.v2.Cluster clusters = 1;
*/
int getClustersCount();
+
/**
*
*
@@ -65,6 +68,7 @@ public interface ListClustersResponseOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.ClusterOrBuilder>
getClustersOrBuilderList();
+
/**
*
*
@@ -92,6 +96,7 @@ public interface ListClustersResponseOrBuilder
* @return A list containing the failedLocations.
*/
java.util.Listrepeated .google.bigtable.admin.v2.HotTablet hot_tablets = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.HotTablet hot_tablets = 1;
*/
com.google.bigtable.admin.v2.HotTablet getHotTablets(int index);
+
/**
*
*
@@ -66,6 +68,7 @@ public interface ListHotTabletsResponseOrBuilder
* repeated .google.bigtable.admin.v2.HotTablet hot_tablets = 1;
*/
int getHotTabletsCount();
+
/**
*
*
@@ -81,6 +84,7 @@ public interface ListHotTabletsResponseOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.HotTabletOrBuilder>
getHotTabletsOrBuilderList();
+
/**
*
*
@@ -110,6 +114,7 @@ public interface ListHotTabletsResponseOrBuilder
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesRequest.java
index bd9ea5a3b0..5e41ca2662 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesRequest.java
@@ -33,6 +33,7 @@ public final class ListInstancesRequest extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListInstancesRequest)
ListInstancesRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListInstancesRequest.newBuilder() to construct.
private ListInstancesRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -68,6 +69,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -94,6 +96,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -125,6 +128,7 @@ public com.google.protobuf.ByteString getParentBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -148,6 +152,7 @@ public java.lang.String getPageToken() {
return s;
}
}
+
/**
*
*
@@ -340,6 +345,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -539,6 +545,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -564,6 +571,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -589,6 +597,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -613,6 +622,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -633,6 +643,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -660,6 +671,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -682,6 +694,7 @@ public java.lang.String getPageToken() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -704,6 +717,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -725,6 +739,7 @@ public Builder setPageToken(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -742,6 +757,7 @@ public Builder clearPageToken() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesRequestOrBuilder.java
index 0641faa086..d1a3c94e46 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesRequestOrBuilder.java
@@ -39,6 +39,7 @@ public interface ListInstancesRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -67,6 +68,7 @@ public interface ListInstancesRequestOrBuilder
* @return The pageToken.
*/
java.lang.String getPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesResponse.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesResponse.java
index 46d2adb13d..c1728282c8 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesResponse.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListInstancesResponse.java
@@ -33,6 +33,7 @@ public final class ListInstancesResponse extends com.google.protobuf.GeneratedMe
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListInstancesResponse)
ListInstancesResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListInstancesResponse.newBuilder() to construct.
private ListInstancesResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.admin.v2.Instance instances = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.Instance instances = 1;
*/
com.google.bigtable.admin.v2.Instance getInstances(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListInstancesResponseOrBuilder
* repeated .google.bigtable.admin.v2.Instance instances = 1;
*/
int getInstancesCount();
+
/**
*
*
@@ -65,6 +68,7 @@ public interface ListInstancesResponseOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.InstanceOrBuilder>
getInstancesOrBuilderList();
+
/**
*
*
@@ -93,6 +97,7 @@ public interface ListInstancesResponseOrBuilder
* @return A list containing the failedLocations.
*/
java.util.Listrepeated .google.bigtable.admin.v2.LogicalView logical_views = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.LogicalView logical_views = 1;
*/
com.google.bigtable.admin.v2.LogicalView getLogicalViews(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListLogicalViewsResponseOrBuilder
* repeated .google.bigtable.admin.v2.LogicalView logical_views = 1;
*/
int getLogicalViewsCount();
+
/**
*
*
@@ -65,6 +68,7 @@ public interface ListLogicalViewsResponseOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.LogicalViewOrBuilder>
getLogicalViewsOrBuilderList();
+
/**
*
*
@@ -89,6 +93,7 @@ public interface ListLogicalViewsResponseOrBuilder
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsRequest.java
index c43ecb59c3..307103bb1a 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsRequest.java
@@ -33,6 +33,7 @@ public final class ListMaterializedViewsRequest extends com.google.protobuf.Gene
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListMaterializedViewsRequest)
ListMaterializedViewsRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListMaterializedViewsRequest.newBuilder() to construct.
private ListMaterializedViewsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -68,6 +69,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -95,6 +97,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -125,6 +128,7 @@ public com.google.protobuf.ByteString getParentBytes() {
public static final int PAGE_SIZE_FIELD_NUMBER = 2;
private int pageSize_ = 0;
+
/**
*
*
@@ -146,6 +150,7 @@ public int getPageSize() {
@SuppressWarnings("serial")
private volatile java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -173,6 +178,7 @@ public java.lang.String getPageToken() {
return s;
}
}
+
/**
*
*
@@ -379,6 +385,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -591,6 +598,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -617,6 +625,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -643,6 +652,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -668,6 +678,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -689,6 +700,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -717,6 +729,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private int pageSize_;
+
/**
*
*
@@ -733,6 +746,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
public int getPageSize() {
return pageSize_;
}
+
/**
*
*
@@ -753,6 +767,7 @@ public Builder setPageSize(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -773,6 +788,7 @@ public Builder clearPageSize() {
}
private java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -799,6 +815,7 @@ public java.lang.String getPageToken() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -825,6 +842,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -850,6 +868,7 @@ public Builder setPageToken(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -871,6 +890,7 @@ public Builder clearPageToken() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsRequestOrBuilder.java
index b5066b43b3..ddcbf10a95 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface ListMaterializedViewsRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -87,6 +88,7 @@ public interface ListMaterializedViewsRequestOrBuilder
* @return The pageToken.
*/
java.lang.String getPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsResponse.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsResponse.java
index 5ea1744099..5a4f25dd11 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsResponse.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListMaterializedViewsResponse.java
@@ -33,6 +33,7 @@ public final class ListMaterializedViewsResponse extends com.google.protobuf.Gen
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListMaterializedViewsResponse)
ListMaterializedViewsResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListMaterializedViewsResponse.newBuilder() to construct.
private ListMaterializedViewsResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -68,6 +69,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.admin.v2.MaterializedView materialized_views = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.MaterializedView materialized_views = 1;
*/
com.google.bigtable.admin.v2.MaterializedView getMaterializedViews(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListMaterializedViewsResponseOrBuilder
* repeated .google.bigtable.admin.v2.MaterializedView materialized_views = 1;
*/
int getMaterializedViewsCount();
+
/**
*
*
@@ -65,6 +68,7 @@ public interface ListMaterializedViewsResponseOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.MaterializedViewOrBuilder>
getMaterializedViewsOrBuilderList();
+
/**
*
*
@@ -89,6 +93,7 @@ public interface ListMaterializedViewsResponseOrBuilder
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsRequest.java
index b5336ca021..c8c4e6abe1 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsRequest.java
@@ -39,6 +39,7 @@ public final class ListSnapshotsRequest extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListSnapshotsRequest)
ListSnapshotsRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListSnapshotsRequest.newBuilder() to construct.
private ListSnapshotsRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -74,6 +75,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -103,6 +105,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -135,6 +138,7 @@ public com.google.protobuf.ByteString getParentBytes() {
public static final int PAGE_SIZE_FIELD_NUMBER = 2;
private int pageSize_ = 0;
+
/**
*
*
@@ -156,6 +160,7 @@ public int getPageSize() {
@SuppressWarnings("serial")
private volatile java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -179,6 +184,7 @@ public java.lang.String getPageToken() {
return s;
}
}
+
/**
*
*
@@ -380,6 +386,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -598,6 +605,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -626,6 +634,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -654,6 +663,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -681,6 +691,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -704,6 +715,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -734,6 +746,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private int pageSize_;
+
/**
*
*
@@ -750,6 +763,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
public int getPageSize() {
return pageSize_;
}
+
/**
*
*
@@ -770,6 +784,7 @@ public Builder setPageSize(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -790,6 +805,7 @@ public Builder clearPageSize() {
}
private java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -812,6 +828,7 @@ public java.lang.String getPageToken() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -834,6 +851,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -855,6 +873,7 @@ public Builder setPageToken(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -872,6 +891,7 @@ public Builder clearPageToken() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsRequestOrBuilder.java
index 06134c8f0b..cc9d13e320 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsRequestOrBuilder.java
@@ -42,6 +42,7 @@ public interface ListSnapshotsRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -87,6 +88,7 @@ public interface ListSnapshotsRequestOrBuilder
* @return The pageToken.
*/
java.lang.String getPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsResponse.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsResponse.java
index 5b3edae640..444fe18e68 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsResponse.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListSnapshotsResponse.java
@@ -39,6 +39,7 @@ public final class ListSnapshotsResponse extends com.google.protobuf.GeneratedMe
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListSnapshotsResponse)
ListSnapshotsResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListSnapshotsResponse.newBuilder() to construct.
private ListSnapshotsResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -74,6 +75,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.admin.v2.Snapshot snapshots = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.Snapshot snapshots = 1;
*/
com.google.bigtable.admin.v2.Snapshot getSnapshots(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListSnapshotsResponseOrBuilder
* repeated .google.bigtable.admin.v2.Snapshot snapshots = 1;
*/
int getSnapshotsCount();
+
/**
*
*
@@ -65,6 +68,7 @@ public interface ListSnapshotsResponseOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.SnapshotOrBuilder>
getSnapshotsOrBuilderList();
+
/**
*
*
@@ -90,6 +94,7 @@ public interface ListSnapshotsResponseOrBuilder
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesRequest.java
index 6f2122e571..53e101fb19 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesRequest.java
@@ -34,6 +34,7 @@ public final class ListTablesRequest extends com.google.protobuf.GeneratedMessag
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListTablesRequest)
ListTablesRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListTablesRequest.newBuilder() to construct.
private ListTablesRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -70,6 +71,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -96,6 +98,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -125,6 +128,7 @@ public com.google.protobuf.ByteString getParentBytes() {
public static final int VIEW_FIELD_NUMBER = 2;
private int view_ = 0;
+
/**
*
*
@@ -141,6 +145,7 @@ public com.google.protobuf.ByteString getParentBytes() {
public int getViewValue() {
return view_;
}
+
/**
*
*
@@ -162,6 +167,7 @@ public com.google.bigtable.admin.v2.Table.View getView() {
public static final int PAGE_SIZE_FIELD_NUMBER = 4;
private int pageSize_ = 0;
+
/**
*
*
@@ -190,6 +196,7 @@ public int getPageSize() {
@SuppressWarnings("serial")
private volatile java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -213,6 +220,7 @@ public java.lang.String getPageToken() {
return s;
}
}
+
/**
*
*
@@ -423,6 +431,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -648,6 +657,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -673,6 +683,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -698,6 +709,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -722,6 +734,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -742,6 +755,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -769,6 +783,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private int view_ = 0;
+
/**
*
*
@@ -785,6 +800,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
public int getViewValue() {
return view_;
}
+
/**
*
*
@@ -804,6 +820,7 @@ public Builder setViewValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -822,6 +839,7 @@ public com.google.bigtable.admin.v2.Table.View getView() {
com.google.bigtable.admin.v2.Table.View.forNumber(view_);
return result == null ? com.google.bigtable.admin.v2.Table.View.UNRECOGNIZED : result;
}
+
/**
*
*
@@ -844,6 +862,7 @@ public Builder setView(com.google.bigtable.admin.v2.Table.View value) {
onChanged();
return this;
}
+
/**
*
*
@@ -864,6 +883,7 @@ public Builder clearView() {
}
private int pageSize_;
+
/**
*
*
@@ -887,6 +907,7 @@ public Builder clearView() {
public int getPageSize() {
return pageSize_;
}
+
/**
*
*
@@ -914,6 +935,7 @@ public Builder setPageSize(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -941,6 +963,7 @@ public Builder clearPageSize() {
}
private java.lang.Object pageToken_ = "";
+
/**
*
*
@@ -963,6 +986,7 @@ public java.lang.String getPageToken() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -985,6 +1009,7 @@ public com.google.protobuf.ByteString getPageTokenBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1006,6 +1031,7 @@ public Builder setPageToken(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1023,6 +1049,7 @@ public Builder clearPageToken() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesRequestOrBuilder.java
index bc5123557a..768bf16cc5 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesRequestOrBuilder.java
@@ -39,6 +39,7 @@ public interface ListTablesRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -68,6 +69,7 @@ public interface ListTablesRequestOrBuilder
* @return The enum numeric value on the wire for view.
*/
int getViewValue();
+
/**
*
*
@@ -115,6 +117,7 @@ public interface ListTablesRequestOrBuilder
* @return The pageToken.
*/
java.lang.String getPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesResponse.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesResponse.java
index 68c656339d..13f44b2be8 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesResponse.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ListTablesResponse.java
@@ -34,6 +34,7 @@ public final class ListTablesResponse extends com.google.protobuf.GeneratedMessa
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ListTablesResponse)
ListTablesResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ListTablesResponse.newBuilder() to construct.
private ListTablesResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.admin.v2.Table tables = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.Table tables = 1;
*/
com.google.bigtable.admin.v2.Table getTables(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ListTablesResponseOrBuilder
* repeated .google.bigtable.admin.v2.Table tables = 1;
*/
int getTablesCount();
+
/**
*
*
@@ -64,6 +67,7 @@ public interface ListTablesResponseOrBuilder
* repeated .google.bigtable.admin.v2.Table tables = 1;
*/
java.util.List extends com.google.bigtable.admin.v2.TableOrBuilder> getTablesOrBuilderList();
+
/**
*
*
@@ -89,6 +93,7 @@ public interface ListTablesResponseOrBuilder
* @return The nextPageToken.
*/
java.lang.String getNextPageToken();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/LogicalView.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/LogicalView.java
index 03adc5957a..040b0dd09c 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/LogicalView.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/LogicalView.java
@@ -33,6 +33,7 @@ public final class LogicalView extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.LogicalView)
LogicalViewOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use LogicalView.newBuilder() to construct.
private LogicalView(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -94,6 +96,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -124,6 +127,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object query_ = "";
+
/**
*
*
@@ -147,6 +151,7 @@ public java.lang.String getQuery() {
return s;
}
}
+
/**
*
*
@@ -175,6 +180,7 @@ public com.google.protobuf.ByteString getQueryBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object etag_ = "";
+
/**
*
*
@@ -201,6 +207,7 @@ public java.lang.String getEtag() {
return s;
}
}
+
/**
*
*
@@ -228,6 +235,25 @@ public com.google.protobuf.ByteString getEtagBytes() {
}
}
+ public static final int DELETION_PROTECTION_FIELD_NUMBER = 6;
+ private boolean deletionProtection_ = false;
+
+ /**
+ *
+ *
+ * + * Optional. Set to true to make the LogicalView protected against deletion. + *+ * + *
bool deletion_protection = 6 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * @return The deletionProtection.
+ */
+ @java.lang.Override
+ public boolean getDeletionProtection() {
+ return deletionProtection_;
+ }
+
private byte memoizedIsInitialized = -1;
@java.lang.Override
@@ -251,6 +277,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) {
com.google.protobuf.GeneratedMessageV3.writeString(output, 3, etag_);
}
+ if (deletionProtection_ != false) {
+ output.writeBool(6, deletionProtection_);
+ }
getUnknownFields().writeTo(output);
}
@@ -269,6 +298,9 @@ public int getSerializedSize() {
if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) {
size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, etag_);
}
+ if (deletionProtection_ != false) {
+ size += com.google.protobuf.CodedOutputStream.computeBoolSize(6, deletionProtection_);
+ }
size += getUnknownFields().getSerializedSize();
memoizedSize = size;
return size;
@@ -287,6 +319,7 @@ public boolean equals(final java.lang.Object obj) {
if (!getName().equals(other.getName())) return false;
if (!getQuery().equals(other.getQuery())) return false;
if (!getEtag().equals(other.getEtag())) return false;
+ if (getDeletionProtection() != other.getDeletionProtection()) return false;
if (!getUnknownFields().equals(other.getUnknownFields())) return false;
return true;
}
@@ -304,6 +337,8 @@ public int hashCode() {
hash = (53 * hash) + getQuery().hashCode();
hash = (37 * hash) + ETAG_FIELD_NUMBER;
hash = (53 * hash) + getEtag().hashCode();
+ hash = (37 * hash) + DELETION_PROTECTION_FIELD_NUMBER;
+ hash = (53 * hash) + com.google.protobuf.Internal.hashBoolean(getDeletionProtection());
hash = (29 * hash) + getUnknownFields().hashCode();
memoizedHashCode = hash;
return hash;
@@ -404,6 +439,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -446,6 +482,7 @@ public Builder clear() {
name_ = "";
query_ = "";
etag_ = "";
+ deletionProtection_ = false;
return this;
}
@@ -491,6 +528,9 @@ private void buildPartial0(com.google.bigtable.admin.v2.LogicalView result) {
if (((from_bitField0_ & 0x00000004) != 0)) {
result.etag_ = etag_;
}
+ if (((from_bitField0_ & 0x00000008) != 0)) {
+ result.deletionProtection_ = deletionProtection_;
+ }
}
@java.lang.Override
@@ -553,6 +593,9 @@ public Builder mergeFrom(com.google.bigtable.admin.v2.LogicalView other) {
bitField0_ |= 0x00000004;
onChanged();
}
+ if (other.getDeletionProtection() != false) {
+ setDeletionProtection(other.getDeletionProtection());
+ }
this.mergeUnknownFields(other.getUnknownFields());
onChanged();
return this;
@@ -597,6 +640,12 @@ public Builder mergeFrom(
bitField0_ |= 0x00000004;
break;
} // case 26
+ case 48:
+ {
+ deletionProtection_ = input.readBool();
+ bitField0_ |= 0x00000008;
+ break;
+ } // case 48
default:
{
if (!super.parseUnknownField(input, extensionRegistry, tag)) {
@@ -617,6 +666,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -641,6 +691,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -665,6 +716,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -688,6 +740,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -707,6 +760,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -733,6 +787,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object query_ = "";
+
/**
*
*
@@ -755,6 +810,7 @@ public java.lang.String getQuery() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -777,6 +833,7 @@ public com.google.protobuf.ByteString getQueryBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -798,6 +855,7 @@ public Builder setQuery(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -815,6 +873,7 @@ public Builder clearQuery() {
onChanged();
return this;
}
+
/**
*
*
@@ -839,6 +898,7 @@ public Builder setQueryBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object etag_ = "";
+
/**
*
*
@@ -864,6 +924,7 @@ public java.lang.String getEtag() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -889,6 +950,7 @@ public com.google.protobuf.ByteString getEtagBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -913,6 +975,7 @@ public Builder setEtag(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -933,6 +996,7 @@ public Builder clearEtag() {
onChanged();
return this;
}
+
/**
*
*
@@ -959,6 +1023,62 @@ public Builder setEtagBytes(com.google.protobuf.ByteString value) {
return this;
}
+ private boolean deletionProtection_;
+
+ /**
+ *
+ *
+ * + * Optional. Set to true to make the LogicalView protected against deletion. + *+ * + *
bool deletion_protection = 6 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * @return The deletionProtection.
+ */
+ @java.lang.Override
+ public boolean getDeletionProtection() {
+ return deletionProtection_;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. Set to true to make the LogicalView protected against deletion. + *+ * + *
bool deletion_protection = 6 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * @param value The deletionProtection to set.
+ * @return This builder for chaining.
+ */
+ public Builder setDeletionProtection(boolean value) {
+
+ deletionProtection_ = value;
+ bitField0_ |= 0x00000008;
+ onChanged();
+ return this;
+ }
+
+ /**
+ *
+ *
+ * + * Optional. Set to true to make the LogicalView protected against deletion. + *+ * + *
bool deletion_protection = 6 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * @return This builder for chaining.
+ */
+ public Builder clearDeletionProtection() {
+ bitField0_ = (bitField0_ & ~0x00000008);
+ deletionProtection_ = false;
+ onChanged();
+ return this;
+ }
+
@java.lang.Override
public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) {
return super.setUnknownFields(unknownFields);
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/LogicalViewOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/LogicalViewOrBuilder.java
index 5a2a28053a..bbd42830cb 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/LogicalViewOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/LogicalViewOrBuilder.java
@@ -38,6 +38,7 @@ public interface LogicalViewOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -65,6 +66,7 @@ public interface LogicalViewOrBuilder
* @return The query.
*/
java.lang.String getQuery();
+
/**
*
*
@@ -93,6 +95,7 @@ public interface LogicalViewOrBuilder
* @return The etag.
*/
java.lang.String getEtag();
+
/**
*
*
@@ -108,4 +111,17 @@ public interface LogicalViewOrBuilder
* @return The bytes for etag.
*/
com.google.protobuf.ByteString getEtagBytes();
+
+ /**
+ *
+ *
+ * + * Optional. Set to true to make the LogicalView protected against deletion. + *+ * + *
bool deletion_protection = 6 [(.google.api.field_behavior) = OPTIONAL];
+ *
+ * @return The deletionProtection.
+ */
+ boolean getDeletionProtection();
}
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/MaterializedView.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/MaterializedView.java
index 81ddd07d1b..5f551ba458 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/MaterializedView.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/MaterializedView.java
@@ -33,6 +33,7 @@ public final class MaterializedView extends com.google.protobuf.GeneratedMessage
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.MaterializedView)
MaterializedViewOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use MaterializedView.newBuilder() to construct.
private MaterializedView(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -94,6 +96,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -124,6 +127,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object query_ = "";
+
/**
*
*
@@ -149,6 +153,7 @@ public java.lang.String getQuery() {
return s;
}
}
+
/**
*
*
@@ -179,6 +184,7 @@ public com.google.protobuf.ByteString getQueryBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object etag_ = "";
+
/**
*
*
@@ -205,6 +211,7 @@ public java.lang.String getEtag() {
return s;
}
}
+
/**
*
*
@@ -234,6 +241,7 @@ public com.google.protobuf.ByteString getEtagBytes() {
public static final int DELETION_PROTECTION_FIELD_NUMBER = 6;
private boolean deletionProtection_ = false;
+
/**
*
*
@@ -436,6 +444,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -662,6 +671,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -686,6 +696,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -710,6 +721,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -733,6 +745,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -752,6 +765,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -778,6 +792,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object query_ = "";
+
/**
*
*
@@ -802,6 +817,7 @@ public java.lang.String getQuery() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -826,6 +842,7 @@ public com.google.protobuf.ByteString getQueryBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -849,6 +866,7 @@ public Builder setQuery(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -868,6 +886,7 @@ public Builder clearQuery() {
onChanged();
return this;
}
+
/**
*
*
@@ -894,6 +913,7 @@ public Builder setQueryBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object etag_ = "";
+
/**
*
*
@@ -919,6 +939,7 @@ public java.lang.String getEtag() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -944,6 +965,7 @@ public com.google.protobuf.ByteString getEtagBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -968,6 +990,7 @@ public Builder setEtag(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -988,6 +1011,7 @@ public Builder clearEtag() {
onChanged();
return this;
}
+
/**
*
*
@@ -1015,6 +1039,7 @@ public Builder setEtagBytes(com.google.protobuf.ByteString value) {
}
private boolean deletionProtection_;
+
/**
*
*
@@ -1030,6 +1055,7 @@ public Builder setEtagBytes(com.google.protobuf.ByteString value) {
public boolean getDeletionProtection() {
return deletionProtection_;
}
+
/**
*
*
@@ -1049,6 +1075,7 @@ public Builder setDeletionProtection(boolean value) {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/MaterializedViewOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/MaterializedViewOrBuilder.java
index 7da3a47630..ba7a48fb8d 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/MaterializedViewOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/MaterializedViewOrBuilder.java
@@ -38,6 +38,7 @@ public interface MaterializedViewOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -67,6 +68,7 @@ public interface MaterializedViewOrBuilder
* @return The query.
*/
java.lang.String getQuery();
+
/**
*
*
@@ -97,6 +99,7 @@ public interface MaterializedViewOrBuilder
* @return The etag.
*/
java.lang.String getEtag();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ModifyColumnFamiliesRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ModifyColumnFamiliesRequest.java
index 37675e693f..6fcc0ca1f2 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ModifyColumnFamiliesRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/ModifyColumnFamiliesRequest.java
@@ -34,6 +34,7 @@ public final class ModifyColumnFamiliesRequest extends com.google.protobuf.Gener
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ModifyColumnFamiliesRequest)
ModifyColumnFamiliesRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ModifyColumnFamiliesRequest.newBuilder() to construct.
private ModifyColumnFamiliesRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -82,6 +83,7 @@ public interface ModificationOrBuilder
* @return The id.
*/
java.lang.String getId();
+
/**
*
*
@@ -108,6 +110,7 @@ public interface ModificationOrBuilder
* @return Whether the create field is set.
*/
boolean hasCreate();
+
/**
*
*
@@ -121,6 +124,7 @@ public interface ModificationOrBuilder
* @return The create.
*/
com.google.bigtable.admin.v2.ColumnFamily getCreate();
+
/**
*
*
@@ -146,6 +150,7 @@ public interface ModificationOrBuilder
* @return Whether the update field is set.
*/
boolean hasUpdate();
+
/**
*
*
@@ -159,6 +164,7 @@ public interface ModificationOrBuilder
* @return The update.
*/
com.google.bigtable.admin.v2.ColumnFamily getUpdate();
+
/**
*
*
@@ -184,6 +190,7 @@ public interface ModificationOrBuilder
* @return Whether the drop field is set.
*/
boolean hasDrop();
+
/**
*
*
@@ -213,6 +220,7 @@ public interface ModificationOrBuilder
* @return Whether the updateMask field is set.
*/
boolean hasUpdateMask();
+
/**
*
*
@@ -228,6 +236,7 @@ public interface ModificationOrBuilder
* @return The updateMask.
*/
com.google.protobuf.FieldMask getUpdateMask();
+
/**
*
*
@@ -244,6 +253,7 @@ public interface ModificationOrBuilder
com.google.bigtable.admin.v2.ModifyColumnFamiliesRequest.Modification.ModCase getModCase();
}
+
/**
*
*
@@ -258,6 +268,7 @@ public static final class Modification extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.ModifyColumnFamiliesRequest.Modification)
ModificationOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Modification.newBuilder() to construct.
private Modification(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -307,6 +318,7 @@ public enum ModCase
private ModCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -345,6 +357,7 @@ public ModCase getModCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object id_ = "";
+
/**
*
*
@@ -368,6 +381,7 @@ public java.lang.String getId() {
return s;
}
}
+
/**
*
*
@@ -393,6 +407,7 @@ public com.google.protobuf.ByteString getIdBytes() {
}
public static final int CREATE_FIELD_NUMBER = 2;
+
/**
*
*
@@ -409,6 +424,7 @@ public com.google.protobuf.ByteString getIdBytes() {
public boolean hasCreate() {
return modCase_ == 2;
}
+
/**
*
*
@@ -428,6 +444,7 @@ public com.google.bigtable.admin.v2.ColumnFamily getCreate() {
}
return com.google.bigtable.admin.v2.ColumnFamily.getDefaultInstance();
}
+
/**
*
*
@@ -447,6 +464,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getCreateOrBuilder() {
}
public static final int UPDATE_FIELD_NUMBER = 3;
+
/**
*
*
@@ -463,6 +481,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getCreateOrBuilder() {
public boolean hasUpdate() {
return modCase_ == 3;
}
+
/**
*
*
@@ -482,6 +501,7 @@ public com.google.bigtable.admin.v2.ColumnFamily getUpdate() {
}
return com.google.bigtable.admin.v2.ColumnFamily.getDefaultInstance();
}
+
/**
*
*
@@ -501,6 +521,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getUpdateOrBuilder() {
}
public static final int DROP_FIELD_NUMBER = 4;
+
/**
*
*
@@ -517,6 +538,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getUpdateOrBuilder() {
public boolean hasDrop() {
return modCase_ == 4;
}
+
/**
*
*
@@ -539,6 +561,7 @@ public boolean getDrop() {
public static final int UPDATE_MASK_FIELD_NUMBER = 6;
private com.google.protobuf.FieldMask updateMask_;
+
/**
*
*
@@ -557,6 +580,7 @@ public boolean getDrop() {
public boolean hasUpdateMask() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -575,6 +599,7 @@ public boolean hasUpdateMask() {
public com.google.protobuf.FieldMask getUpdateMask() {
return updateMask_ == null ? com.google.protobuf.FieldMask.getDefaultInstance() : updateMask_;
}
+
/**
*
*
@@ -822,6 +847,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -1123,6 +1149,7 @@ public Builder clearMod() {
private int bitField0_;
private java.lang.Object id_ = "";
+
/**
*
*
@@ -1145,6 +1172,7 @@ public java.lang.String getId() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1167,6 +1195,7 @@ public com.google.protobuf.ByteString getIdBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1188,6 +1217,7 @@ public Builder setId(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1205,6 +1235,7 @@ public Builder clearId() {
onChanged();
return this;
}
+
/**
*
*
@@ -1233,6 +1264,7 @@ public Builder setIdBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.ColumnFamily.Builder,
com.google.bigtable.admin.v2.ColumnFamilyOrBuilder>
createBuilder_;
+
/**
*
*
@@ -1249,6 +1281,7 @@ public Builder setIdBytes(com.google.protobuf.ByteString value) {
public boolean hasCreate() {
return modCase_ == 2;
}
+
/**
*
*
@@ -1275,6 +1308,7 @@ public com.google.bigtable.admin.v2.ColumnFamily getCreate() {
return com.google.bigtable.admin.v2.ColumnFamily.getDefaultInstance();
}
}
+
/**
*
*
@@ -1298,6 +1332,7 @@ public Builder setCreate(com.google.bigtable.admin.v2.ColumnFamily value) {
modCase_ = 2;
return this;
}
+
/**
*
*
@@ -1318,6 +1353,7 @@ public Builder setCreate(com.google.bigtable.admin.v2.ColumnFamily.Builder build
modCase_ = 2;
return this;
}
+
/**
*
*
@@ -1351,6 +1387,7 @@ public Builder mergeCreate(com.google.bigtable.admin.v2.ColumnFamily value) {
modCase_ = 2;
return this;
}
+
/**
*
*
@@ -1377,6 +1414,7 @@ public Builder clearCreate() {
}
return this;
}
+
/**
*
*
@@ -1390,6 +1428,7 @@ public Builder clearCreate() {
public com.google.bigtable.admin.v2.ColumnFamily.Builder getCreateBuilder() {
return getCreateFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1411,6 +1450,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getCreateOrBuilder() {
return com.google.bigtable.admin.v2.ColumnFamily.getDefaultInstance();
}
}
+
/**
*
*
@@ -1450,6 +1490,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getCreateOrBuilder() {
com.google.bigtable.admin.v2.ColumnFamily.Builder,
com.google.bigtable.admin.v2.ColumnFamilyOrBuilder>
updateBuilder_;
+
/**
*
*
@@ -1466,6 +1507,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getCreateOrBuilder() {
public boolean hasUpdate() {
return modCase_ == 3;
}
+
/**
*
*
@@ -1492,6 +1534,7 @@ public com.google.bigtable.admin.v2.ColumnFamily getUpdate() {
return com.google.bigtable.admin.v2.ColumnFamily.getDefaultInstance();
}
}
+
/**
*
*
@@ -1515,6 +1558,7 @@ public Builder setUpdate(com.google.bigtable.admin.v2.ColumnFamily value) {
modCase_ = 3;
return this;
}
+
/**
*
*
@@ -1535,6 +1579,7 @@ public Builder setUpdate(com.google.bigtable.admin.v2.ColumnFamily.Builder build
modCase_ = 3;
return this;
}
+
/**
*
*
@@ -1568,6 +1613,7 @@ public Builder mergeUpdate(com.google.bigtable.admin.v2.ColumnFamily value) {
modCase_ = 3;
return this;
}
+
/**
*
*
@@ -1594,6 +1640,7 @@ public Builder clearUpdate() {
}
return this;
}
+
/**
*
*
@@ -1607,6 +1654,7 @@ public Builder clearUpdate() {
public com.google.bigtable.admin.v2.ColumnFamily.Builder getUpdateBuilder() {
return getUpdateFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1628,6 +1676,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getUpdateOrBuilder() {
return com.google.bigtable.admin.v2.ColumnFamily.getDefaultInstance();
}
}
+
/**
*
*
@@ -1677,6 +1726,7 @@ public com.google.bigtable.admin.v2.ColumnFamilyOrBuilder getUpdateOrBuilder() {
public boolean hasDrop() {
return modCase_ == 4;
}
+
/**
*
*
@@ -1695,6 +1745,7 @@ public boolean getDrop() {
}
return false;
}
+
/**
*
*
@@ -1715,6 +1766,7 @@ public Builder setDrop(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1742,6 +1794,7 @@ public Builder clearDrop() {
com.google.protobuf.FieldMask.Builder,
com.google.protobuf.FieldMaskOrBuilder>
updateMaskBuilder_;
+
/**
*
*
@@ -1759,6 +1812,7 @@ public Builder clearDrop() {
public boolean hasUpdateMask() {
return ((bitField0_ & 0x00000010) != 0);
}
+
/**
*
*
@@ -1782,6 +1836,7 @@ public com.google.protobuf.FieldMask getUpdateMask() {
return updateMaskBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1807,6 +1862,7 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1829,6 +1885,7 @@ public Builder setUpdateMask(com.google.protobuf.FieldMask.Builder builderForVal
onChanged();
return this;
}
+
/**
*
*
@@ -1859,6 +1916,7 @@ public Builder mergeUpdateMask(com.google.protobuf.FieldMask value) {
}
return this;
}
+
/**
*
*
@@ -1881,6 +1939,7 @@ public Builder clearUpdateMask() {
onChanged();
return this;
}
+
/**
*
*
@@ -1898,6 +1957,7 @@ public com.google.protobuf.FieldMask.Builder getUpdateMaskBuilder() {
onChanged();
return getUpdateMaskFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1919,6 +1979,7 @@ public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() {
: updateMask_;
}
}
+
/**
*
*
@@ -2020,6 +2081,7 @@ public com.google.protobuf.ParserRESTORE_SOURCE_TYPE_UNSPECIFIED = 0;
*/
public static final int RESTORE_SOURCE_TYPE_UNSPECIFIED_VALUE = 0;
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableMetadata.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableMetadata.java
index 650647853b..d2cc6d61e5 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableMetadata.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableMetadata.java
@@ -34,6 +34,7 @@ public final class RestoreTableMetadata extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.RestoreTableMetadata)
RestoreTableMetadataOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use RestoreTableMetadata.newBuilder() to construct.
private RestoreTableMetadata(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -83,6 +84,7 @@ public enum SourceInfoCase
private SourceInfoCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -117,6 +119,7 @@ public SourceInfoCase getSourceInfoCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -140,6 +143,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -166,6 +170,7 @@ public com.google.protobuf.ByteString getNameBytes() {
public static final int SOURCE_TYPE_FIELD_NUMBER = 2;
private int sourceType_ = 0;
+
/**
*
*
@@ -181,6 +186,7 @@ public com.google.protobuf.ByteString getNameBytes() {
public int getSourceTypeValue() {
return sourceType_;
}
+
/**
*
*
@@ -200,6 +206,7 @@ public com.google.bigtable.admin.v2.RestoreSourceType getSourceType() {
}
public static final int BACKUP_INFO_FIELD_NUMBER = 3;
+
/**
* .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*
@@ -209,6 +216,7 @@ public com.google.bigtable.admin.v2.RestoreSourceType getSourceType() {
public boolean hasBackupInfo() {
return sourceInfoCase_ == 3;
}
+
/**
* .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*
@@ -221,6 +229,7 @@ public com.google.bigtable.admin.v2.BackupInfo getBackupInfo() {
}
return com.google.bigtable.admin.v2.BackupInfo.getDefaultInstance();
}
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
@java.lang.Override
public com.google.bigtable.admin.v2.BackupInfoOrBuilder getBackupInfoOrBuilder() {
@@ -234,6 +243,7 @@ public com.google.bigtable.admin.v2.BackupInfoOrBuilder getBackupInfoOrBuilder()
@SuppressWarnings("serial")
private volatile java.lang.Object optimizeTableOperationName_ = "";
+
/**
*
*
@@ -265,6 +275,7 @@ public java.lang.String getOptimizeTableOperationName() {
return s;
}
}
+
/**
*
*
@@ -299,6 +310,7 @@ public com.google.protobuf.ByteString getOptimizeTableOperationNameBytes() {
public static final int PROGRESS_FIELD_NUMBER = 5;
private com.google.bigtable.admin.v2.OperationProgress progress_;
+
/**
*
*
@@ -316,6 +328,7 @@ public com.google.protobuf.ByteString getOptimizeTableOperationNameBytes() {
public boolean hasProgress() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -335,6 +348,7 @@ public com.google.bigtable.admin.v2.OperationProgress getProgress() {
? com.google.bigtable.admin.v2.OperationProgress.getDefaultInstance()
: progress_;
}
+
/**
*
*
@@ -574,6 +588,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -861,6 +876,7 @@ public Builder clearSourceInfo() {
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -883,6 +899,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -905,6 +922,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -926,6 +944,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -943,6 +962,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -967,6 +987,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private int sourceType_ = 0;
+
/**
*
*
@@ -982,6 +1003,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
public int getSourceTypeValue() {
return sourceType_;
}
+
/**
*
*
@@ -1000,6 +1022,7 @@ public Builder setSourceTypeValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1017,6 +1040,7 @@ public com.google.bigtable.admin.v2.RestoreSourceType getSourceType() {
com.google.bigtable.admin.v2.RestoreSourceType.forNumber(sourceType_);
return result == null ? com.google.bigtable.admin.v2.RestoreSourceType.UNRECOGNIZED : result;
}
+
/**
*
*
@@ -1038,6 +1062,7 @@ public Builder setSourceType(com.google.bigtable.admin.v2.RestoreSourceType valu
onChanged();
return this;
}
+
/**
*
*
@@ -1061,6 +1086,7 @@ public Builder clearSourceType() {
com.google.bigtable.admin.v2.BackupInfo.Builder,
com.google.bigtable.admin.v2.BackupInfoOrBuilder>
backupInfoBuilder_;
+
/**
* .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*
@@ -1070,6 +1096,7 @@ public Builder clearSourceType() {
public boolean hasBackupInfo() {
return sourceInfoCase_ == 3;
}
+
/**
* .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*
@@ -1089,6 +1116,7 @@ public com.google.bigtable.admin.v2.BackupInfo getBackupInfo() {
return com.google.bigtable.admin.v2.BackupInfo.getDefaultInstance();
}
}
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
public Builder setBackupInfo(com.google.bigtable.admin.v2.BackupInfo value) {
if (backupInfoBuilder_ == null) {
@@ -1103,6 +1131,7 @@ public Builder setBackupInfo(com.google.bigtable.admin.v2.BackupInfo value) {
sourceInfoCase_ = 3;
return this;
}
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
public Builder setBackupInfo(com.google.bigtable.admin.v2.BackupInfo.Builder builderForValue) {
if (backupInfoBuilder_ == null) {
@@ -1114,6 +1143,7 @@ public Builder setBackupInfo(com.google.bigtable.admin.v2.BackupInfo.Builder bui
sourceInfoCase_ = 3;
return this;
}
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
public Builder mergeBackupInfo(com.google.bigtable.admin.v2.BackupInfo value) {
if (backupInfoBuilder_ == null) {
@@ -1138,6 +1168,7 @@ public Builder mergeBackupInfo(com.google.bigtable.admin.v2.BackupInfo value) {
sourceInfoCase_ = 3;
return this;
}
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
public Builder clearBackupInfo() {
if (backupInfoBuilder_ == null) {
@@ -1155,10 +1186,12 @@ public Builder clearBackupInfo() {
}
return this;
}
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
public com.google.bigtable.admin.v2.BackupInfo.Builder getBackupInfoBuilder() {
return getBackupInfoFieldBuilder().getBuilder();
}
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
@java.lang.Override
public com.google.bigtable.admin.v2.BackupInfoOrBuilder getBackupInfoOrBuilder() {
@@ -1171,6 +1204,7 @@ public com.google.bigtable.admin.v2.BackupInfoOrBuilder getBackupInfoOrBuilder()
return com.google.bigtable.admin.v2.BackupInfo.getDefaultInstance();
}
}
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
private com.google.protobuf.SingleFieldBuilderV3<
com.google.bigtable.admin.v2.BackupInfo,
@@ -1197,6 +1231,7 @@ public com.google.bigtable.admin.v2.BackupInfoOrBuilder getBackupInfoOrBuilder()
}
private java.lang.Object optimizeTableOperationName_ = "";
+
/**
*
*
@@ -1227,6 +1262,7 @@ public java.lang.String getOptimizeTableOperationName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1257,6 +1293,7 @@ public com.google.protobuf.ByteString getOptimizeTableOperationNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1286,6 +1323,7 @@ public Builder setOptimizeTableOperationName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1311,6 +1349,7 @@ public Builder clearOptimizeTableOperationName() {
onChanged();
return this;
}
+
/**
*
*
@@ -1348,6 +1387,7 @@ public Builder setOptimizeTableOperationNameBytes(com.google.protobuf.ByteString
com.google.bigtable.admin.v2.OperationProgress.Builder,
com.google.bigtable.admin.v2.OperationProgressOrBuilder>
progressBuilder_;
+
/**
*
*
@@ -1364,6 +1404,7 @@ public Builder setOptimizeTableOperationNameBytes(com.google.protobuf.ByteString
public boolean hasProgress() {
return ((bitField0_ & 0x00000010) != 0);
}
+
/**
*
*
@@ -1386,6 +1427,7 @@ public com.google.bigtable.admin.v2.OperationProgress getProgress() {
return progressBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1410,6 +1452,7 @@ public Builder setProgress(com.google.bigtable.admin.v2.OperationProgress value)
onChanged();
return this;
}
+
/**
*
*
@@ -1432,6 +1475,7 @@ public Builder setProgress(
onChanged();
return this;
}
+
/**
*
*
@@ -1461,6 +1505,7 @@ public Builder mergeProgress(com.google.bigtable.admin.v2.OperationProgress valu
}
return this;
}
+
/**
*
*
@@ -1482,6 +1527,7 @@ public Builder clearProgress() {
onChanged();
return this;
}
+
/**
*
*
@@ -1498,6 +1544,7 @@ public com.google.bigtable.admin.v2.OperationProgress.Builder getProgressBuilder
onChanged();
return getProgressFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1518,6 +1565,7 @@ public com.google.bigtable.admin.v2.OperationProgressOrBuilder getProgressOrBuil
: progress_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableMetadataOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableMetadataOrBuilder.java
index 418d9d626d..6fae4f141f 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableMetadataOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableMetadataOrBuilder.java
@@ -36,6 +36,7 @@ public interface RestoreTableMetadataOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -61,6 +62,7 @@ public interface RestoreTableMetadataOrBuilder
* @return The enum numeric value on the wire for sourceType.
*/
int getSourceTypeValue();
+
/**
*
*
@@ -80,12 +82,14 @@ public interface RestoreTableMetadataOrBuilder
* @return Whether the backupInfo field is set.
*/
boolean hasBackupInfo();
+
/**
* .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*
* @return The backupInfo.
*/
com.google.bigtable.admin.v2.BackupInfo getBackupInfo();
+
/** .google.bigtable.admin.v2.BackupInfo backup_info = 3;
*/
com.google.bigtable.admin.v2.BackupInfoOrBuilder getBackupInfoOrBuilder();
@@ -109,6 +113,7 @@ public interface RestoreTableMetadataOrBuilder
* @return The optimizeTableOperationName.
*/
java.lang.String getOptimizeTableOperationName();
+
/**
*
*
@@ -144,6 +149,7 @@ public interface RestoreTableMetadataOrBuilder
* @return Whether the progress field is set.
*/
boolean hasProgress();
+
/**
*
*
@@ -158,6 +164,7 @@ public interface RestoreTableMetadataOrBuilder
* @return The progress.
*/
com.google.bigtable.admin.v2.OperationProgress getProgress();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableRequest.java
index 98cbd6a2c0..eba98c6230 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableRequest.java
@@ -34,6 +34,7 @@ public final class RestoreTableRequest extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.RestoreTableRequest)
RestoreTableRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use RestoreTableRequest.newBuilder() to construct.
private RestoreTableRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -81,6 +82,7 @@ public enum SourceCase
private SourceCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -115,6 +117,7 @@ public SourceCase getSourceCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object parent_ = "";
+
/**
*
*
@@ -141,6 +144,7 @@ public java.lang.String getParent() {
return s;
}
}
+
/**
*
*
@@ -172,6 +176,7 @@ public com.google.protobuf.ByteString getParentBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object tableId_ = "";
+
/**
*
*
@@ -198,6 +203,7 @@ public java.lang.String getTableId() {
return s;
}
}
+
/**
*
*
@@ -226,6 +232,7 @@ public com.google.protobuf.ByteString getTableIdBytes() {
}
public static final int BACKUP_FIELD_NUMBER = 3;
+
/**
*
*
@@ -241,6 +248,7 @@ public com.google.protobuf.ByteString getTableIdBytes() {
public boolean hasBackup() {
return sourceCase_ == 3;
}
+
/**
*
*
@@ -269,6 +277,7 @@ public java.lang.String getBackup() {
return s;
}
}
+
/**
*
*
@@ -488,6 +497,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -730,6 +740,7 @@ public Builder clearSource() {
private int bitField0_;
private java.lang.Object parent_ = "";
+
/**
*
*
@@ -755,6 +766,7 @@ public java.lang.String getParent() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -780,6 +792,7 @@ public com.google.protobuf.ByteString getParentBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -804,6 +817,7 @@ public Builder setParent(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -824,6 +838,7 @@ public Builder clearParent() {
onChanged();
return this;
}
+
/**
*
*
@@ -851,6 +866,7 @@ public Builder setParentBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object tableId_ = "";
+
/**
*
*
@@ -876,6 +892,7 @@ public java.lang.String getTableId() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -901,6 +918,7 @@ public com.google.protobuf.ByteString getTableIdBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -925,6 +943,7 @@ public Builder setTableId(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -945,6 +964,7 @@ public Builder clearTableId() {
onChanged();
return this;
}
+
/**
*
*
@@ -987,6 +1007,7 @@ public Builder setTableIdBytes(com.google.protobuf.ByteString value) {
public boolean hasBackup() {
return sourceCase_ == 3;
}
+
/**
*
*
@@ -1016,6 +1037,7 @@ public java.lang.String getBackup() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1045,6 +1067,7 @@ public com.google.protobuf.ByteString getBackupBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1067,6 +1090,7 @@ public Builder setBackup(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1087,6 +1111,7 @@ public Builder clearBackup() {
}
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableRequestOrBuilder.java
index 9c013b787f..9225b18593 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/RestoreTableRequestOrBuilder.java
@@ -39,6 +39,7 @@ public interface RestoreTableRequestOrBuilder
* @return The parent.
*/
java.lang.String getParent();
+
/**
*
*
@@ -70,6 +71,7 @@ public interface RestoreTableRequestOrBuilder
* @return The tableId.
*/
java.lang.String getTableId();
+
/**
*
*
@@ -99,6 +101,7 @@ public interface RestoreTableRequestOrBuilder
* @return Whether the backup field is set.
*/
boolean hasBackup();
+
/**
*
*
@@ -112,6 +115,7 @@ public interface RestoreTableRequestOrBuilder
* @return The backup.
*/
java.lang.String getBackup();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Snapshot.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Snapshot.java
index 43dadbfce6..a31719a480 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Snapshot.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Snapshot.java
@@ -39,6 +39,7 @@ public final class Snapshot extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Snapshot)
SnapshotOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Snapshot.newBuilder() to construct.
private Snapshot(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -126,6 +127,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* STATE_NOT_KNOWN = 0;
*/
public static final int STATE_NOT_KNOWN_VALUE = 0;
+
/**
*
*
@@ -136,6 +138,7 @@ public enum State implements com.google.protobuf.ProtocolMessageEnum {
* READY = 1;
*/
public static final int READY_VALUE = 1;
+
/**
*
*
@@ -237,6 +240,7 @@ private State(int value) {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -262,6 +266,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -290,6 +295,7 @@ public com.google.protobuf.ByteString getNameBytes() {
public static final int SOURCE_TABLE_FIELD_NUMBER = 2;
private com.google.bigtable.admin.v2.Table sourceTable_;
+
/**
*
*
@@ -307,6 +313,7 @@ public com.google.protobuf.ByteString getNameBytes() {
public boolean hasSourceTable() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -326,6 +333,7 @@ public com.google.bigtable.admin.v2.Table getSourceTable() {
? com.google.bigtable.admin.v2.Table.getDefaultInstance()
: sourceTable_;
}
+
/**
*
*
@@ -346,6 +354,7 @@ public com.google.bigtable.admin.v2.TableOrBuilder getSourceTableOrBuilder() {
public static final int DATA_SIZE_BYTES_FIELD_NUMBER = 3;
private long dataSizeBytes_ = 0L;
+
/**
*
*
@@ -367,6 +376,7 @@ public long getDataSizeBytes() {
public static final int CREATE_TIME_FIELD_NUMBER = 4;
private com.google.protobuf.Timestamp createTime_;
+
/**
*
*
@@ -383,6 +393,7 @@ public long getDataSizeBytes() {
public boolean hasCreateTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -399,6 +410,7 @@ public boolean hasCreateTime() {
public com.google.protobuf.Timestamp getCreateTime() {
return createTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : createTime_;
}
+
/**
*
*
@@ -416,6 +428,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() {
public static final int DELETE_TIME_FIELD_NUMBER = 5;
private com.google.protobuf.Timestamp deleteTime_;
+
/**
*
*
@@ -433,6 +446,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() {
public boolean hasDeleteTime() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -450,6 +464,7 @@ public boolean hasDeleteTime() {
public com.google.protobuf.Timestamp getDeleteTime() {
return deleteTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : deleteTime_;
}
+
/**
*
*
@@ -468,6 +483,7 @@ public com.google.protobuf.TimestampOrBuilder getDeleteTimeOrBuilder() {
public static final int STATE_FIELD_NUMBER = 6;
private int state_ = 0;
+
/**
*
*
@@ -485,6 +501,7 @@ public com.google.protobuf.TimestampOrBuilder getDeleteTimeOrBuilder() {
public int getStateValue() {
return state_;
}
+
/**
*
*
@@ -509,6 +526,7 @@ public com.google.bigtable.admin.v2.Snapshot.State getState() {
@SuppressWarnings("serial")
private volatile java.lang.Object description_ = "";
+
/**
*
*
@@ -532,6 +550,7 @@ public java.lang.String getDescription() {
return s;
}
}
+
/**
*
*
@@ -782,6 +801,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -1080,6 +1100,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -1104,6 +1125,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1128,6 +1150,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1151,6 +1174,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1170,6 +1194,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -1201,6 +1226,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.Table.Builder,
com.google.bigtable.admin.v2.TableOrBuilder>
sourceTableBuilder_;
+
/**
*
*
@@ -1217,6 +1243,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
public boolean hasSourceTable() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -1239,6 +1266,7 @@ public com.google.bigtable.admin.v2.Table getSourceTable() {
return sourceTableBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1263,6 +1291,7 @@ public Builder setSourceTable(com.google.bigtable.admin.v2.Table value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1284,6 +1313,7 @@ public Builder setSourceTable(com.google.bigtable.admin.v2.Table.Builder builder
onChanged();
return this;
}
+
/**
*
*
@@ -1313,6 +1343,7 @@ public Builder mergeSourceTable(com.google.bigtable.admin.v2.Table value) {
}
return this;
}
+
/**
*
*
@@ -1334,6 +1365,7 @@ public Builder clearSourceTable() {
onChanged();
return this;
}
+
/**
*
*
@@ -1350,6 +1382,7 @@ public com.google.bigtable.admin.v2.Table.Builder getSourceTableBuilder() {
onChanged();
return getSourceTableFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1370,6 +1403,7 @@ public com.google.bigtable.admin.v2.TableOrBuilder getSourceTableOrBuilder() {
: sourceTable_;
}
}
+
/**
*
*
@@ -1399,6 +1433,7 @@ public com.google.bigtable.admin.v2.TableOrBuilder getSourceTableOrBuilder() {
}
private long dataSizeBytes_;
+
/**
*
*
@@ -1417,6 +1452,7 @@ public com.google.bigtable.admin.v2.TableOrBuilder getSourceTableOrBuilder() {
public long getDataSizeBytes() {
return dataSizeBytes_;
}
+
/**
*
*
@@ -1439,6 +1475,7 @@ public Builder setDataSizeBytes(long value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1466,6 +1503,7 @@ public Builder clearDataSizeBytes() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
createTimeBuilder_;
+
/**
*
*
@@ -1482,6 +1520,7 @@ public Builder clearDataSizeBytes() {
public boolean hasCreateTime() {
return ((bitField0_ & 0x00000008) != 0);
}
+
/**
*
*
@@ -1504,6 +1543,7 @@ public com.google.protobuf.Timestamp getCreateTime() {
return createTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1528,6 +1568,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1549,6 +1590,7 @@ public Builder setCreateTime(com.google.protobuf.Timestamp.Builder builderForVal
onChanged();
return this;
}
+
/**
*
*
@@ -1578,6 +1620,7 @@ public Builder mergeCreateTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1599,6 +1642,7 @@ public Builder clearCreateTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1615,6 +1659,7 @@ public com.google.protobuf.Timestamp.Builder getCreateTimeBuilder() {
onChanged();
return getCreateTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1635,6 +1680,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() {
: createTime_;
}
}
+
/**
*
*
@@ -1669,6 +1715,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
deleteTimeBuilder_;
+
/**
*
*
@@ -1685,6 +1732,7 @@ public com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder() {
public boolean hasDeleteTime() {
return ((bitField0_ & 0x00000010) != 0);
}
+
/**
*
*
@@ -1707,6 +1755,7 @@ public com.google.protobuf.Timestamp getDeleteTime() {
return deleteTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1731,6 +1780,7 @@ public Builder setDeleteTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1752,6 +1802,7 @@ public Builder setDeleteTime(com.google.protobuf.Timestamp.Builder builderForVal
onChanged();
return this;
}
+
/**
*
*
@@ -1781,6 +1832,7 @@ public Builder mergeDeleteTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1802,6 +1854,7 @@ public Builder clearDeleteTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1818,6 +1871,7 @@ public com.google.protobuf.Timestamp.Builder getDeleteTimeBuilder() {
onChanged();
return getDeleteTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1838,6 +1892,7 @@ public com.google.protobuf.TimestampOrBuilder getDeleteTimeOrBuilder() {
: deleteTime_;
}
}
+
/**
*
*
@@ -1867,6 +1922,7 @@ public com.google.protobuf.TimestampOrBuilder getDeleteTimeOrBuilder() {
}
private int state_ = 0;
+
/**
*
*
@@ -1884,6 +1940,7 @@ public com.google.protobuf.TimestampOrBuilder getDeleteTimeOrBuilder() {
public int getStateValue() {
return state_;
}
+
/**
*
*
@@ -1904,6 +1961,7 @@ public Builder setStateValue(int value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1923,6 +1981,7 @@ public com.google.bigtable.admin.v2.Snapshot.State getState() {
com.google.bigtable.admin.v2.Snapshot.State.forNumber(state_);
return result == null ? com.google.bigtable.admin.v2.Snapshot.State.UNRECOGNIZED : result;
}
+
/**
*
*
@@ -1946,6 +2005,7 @@ public Builder setState(com.google.bigtable.admin.v2.Snapshot.State value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1967,6 +2027,7 @@ public Builder clearState() {
}
private java.lang.Object description_ = "";
+
/**
*
*
@@ -1989,6 +2050,7 @@ public java.lang.String getDescription() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -2011,6 +2073,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -2032,6 +2095,7 @@ public Builder setDescription(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -2049,6 +2113,7 @@ public Builder clearDescription() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotOrBuilder.java
index 7aecb43010..bc287dfdd0 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotOrBuilder.java
@@ -38,6 +38,7 @@ public interface SnapshotOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -67,6 +68,7 @@ public interface SnapshotOrBuilder
* @return Whether the sourceTable field is set.
*/
boolean hasSourceTable();
+
/**
*
*
@@ -81,6 +83,7 @@ public interface SnapshotOrBuilder
* @return The sourceTable.
*/
com.google.bigtable.admin.v2.Table getSourceTable();
+
/**
*
*
@@ -123,6 +126,7 @@ public interface SnapshotOrBuilder
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
+
/**
*
*
@@ -136,6 +140,7 @@ public interface SnapshotOrBuilder
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
+
/**
*
*
@@ -162,6 +167,7 @@ public interface SnapshotOrBuilder
* @return Whether the deleteTime field is set.
*/
boolean hasDeleteTime();
+
/**
*
*
@@ -176,6 +182,7 @@ public interface SnapshotOrBuilder
* @return The deleteTime.
*/
com.google.protobuf.Timestamp getDeleteTime();
+
/**
*
*
@@ -203,6 +210,7 @@ public interface SnapshotOrBuilder
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
+
/**
*
*
@@ -230,6 +238,7 @@ public interface SnapshotOrBuilder
* @return The description.
*/
java.lang.String getDescription();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableMetadata.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableMetadata.java
index 9b0f6b5e0c..90db86b1a5 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableMetadata.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableMetadata.java
@@ -38,6 +38,7 @@ public final class SnapshotTableMetadata extends com.google.protobuf.GeneratedMe
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.SnapshotTableMetadata)
SnapshotTableMetadataOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use SnapshotTableMetadata.newBuilder() to construct.
private SnapshotTableMetadata(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -69,6 +70,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int bitField0_;
public static final int ORIGINAL_REQUEST_FIELD_NUMBER = 1;
private com.google.bigtable.admin.v2.SnapshotTableRequest originalRequest_;
+
/**
*
*
@@ -84,6 +86,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public boolean hasOriginalRequest() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -101,6 +104,7 @@ public com.google.bigtable.admin.v2.SnapshotTableRequest getOriginalRequest() {
? com.google.bigtable.admin.v2.SnapshotTableRequest.getDefaultInstance()
: originalRequest_;
}
+
/**
*
*
@@ -119,6 +123,7 @@ public com.google.bigtable.admin.v2.SnapshotTableRequestOrBuilder getOriginalReq
public static final int REQUEST_TIME_FIELD_NUMBER = 2;
private com.google.protobuf.Timestamp requestTime_;
+
/**
*
*
@@ -134,6 +139,7 @@ public com.google.bigtable.admin.v2.SnapshotTableRequestOrBuilder getOriginalReq
public boolean hasRequestTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -149,6 +155,7 @@ public boolean hasRequestTime() {
public com.google.protobuf.Timestamp getRequestTime() {
return requestTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : requestTime_;
}
+
/**
*
*
@@ -165,6 +172,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
public static final int FINISH_TIME_FIELD_NUMBER = 3;
private com.google.protobuf.Timestamp finishTime_;
+
/**
*
*
@@ -180,6 +188,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
public boolean hasFinishTime() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -195,6 +204,7 @@ public boolean hasFinishTime() {
public com.google.protobuf.Timestamp getFinishTime() {
return finishTime_ == null ? com.google.protobuf.Timestamp.getDefaultInstance() : finishTime_;
}
+
/**
*
*
@@ -401,6 +411,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -649,6 +660,7 @@ public Builder mergeFrom(
com.google.bigtable.admin.v2.SnapshotTableRequest.Builder,
com.google.bigtable.admin.v2.SnapshotTableRequestOrBuilder>
originalRequestBuilder_;
+
/**
*
*
@@ -663,6 +675,7 @@ public Builder mergeFrom(
public boolean hasOriginalRequest() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -683,6 +696,7 @@ public com.google.bigtable.admin.v2.SnapshotTableRequest getOriginalRequest() {
return originalRequestBuilder_.getMessage();
}
}
+
/**
*
*
@@ -705,6 +719,7 @@ public Builder setOriginalRequest(com.google.bigtable.admin.v2.SnapshotTableRequ
onChanged();
return this;
}
+
/**
*
*
@@ -725,6 +740,7 @@ public Builder setOriginalRequest(
onChanged();
return this;
}
+
/**
*
*
@@ -753,6 +769,7 @@ public Builder mergeOriginalRequest(com.google.bigtable.admin.v2.SnapshotTableRe
}
return this;
}
+
/**
*
*
@@ -772,6 +789,7 @@ public Builder clearOriginalRequest() {
onChanged();
return this;
}
+
/**
*
*
@@ -786,6 +804,7 @@ public com.google.bigtable.admin.v2.SnapshotTableRequest.Builder getOriginalRequ
onChanged();
return getOriginalRequestFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -805,6 +824,7 @@ public com.google.bigtable.admin.v2.SnapshotTableRequest.Builder getOriginalRequ
: originalRequest_;
}
}
+
/**
*
*
@@ -837,6 +857,7 @@ public com.google.bigtable.admin.v2.SnapshotTableRequest.Builder getOriginalRequ
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
requestTimeBuilder_;
+
/**
*
*
@@ -851,6 +872,7 @@ public com.google.bigtable.admin.v2.SnapshotTableRequest.Builder getOriginalRequ
public boolean hasRequestTime() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -871,6 +893,7 @@ public com.google.protobuf.Timestamp getRequestTime() {
return requestTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -893,6 +916,7 @@ public Builder setRequestTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -912,6 +936,7 @@ public Builder setRequestTime(com.google.protobuf.Timestamp.Builder builderForVa
onChanged();
return this;
}
+
/**
*
*
@@ -939,6 +964,7 @@ public Builder mergeRequestTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -958,6 +984,7 @@ public Builder clearRequestTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -972,6 +999,7 @@ public com.google.protobuf.Timestamp.Builder getRequestTimeBuilder() {
onChanged();
return getRequestTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -990,6 +1018,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
: requestTime_;
}
}
+
/**
*
*
@@ -1022,6 +1051,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
com.google.protobuf.Timestamp.Builder,
com.google.protobuf.TimestampOrBuilder>
finishTimeBuilder_;
+
/**
*
*
@@ -1036,6 +1066,7 @@ public com.google.protobuf.TimestampOrBuilder getRequestTimeOrBuilder() {
public boolean hasFinishTime() {
return ((bitField0_ & 0x00000004) != 0);
}
+
/**
*
*
@@ -1056,6 +1087,7 @@ public com.google.protobuf.Timestamp getFinishTime() {
return finishTimeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1078,6 +1110,7 @@ public Builder setFinishTime(com.google.protobuf.Timestamp value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1097,6 +1130,7 @@ public Builder setFinishTime(com.google.protobuf.Timestamp.Builder builderForVal
onChanged();
return this;
}
+
/**
*
*
@@ -1124,6 +1158,7 @@ public Builder mergeFinishTime(com.google.protobuf.Timestamp value) {
}
return this;
}
+
/**
*
*
@@ -1143,6 +1178,7 @@ public Builder clearFinishTime() {
onChanged();
return this;
}
+
/**
*
*
@@ -1157,6 +1193,7 @@ public com.google.protobuf.Timestamp.Builder getFinishTimeBuilder() {
onChanged();
return getFinishTimeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1175,6 +1212,7 @@ public com.google.protobuf.TimestampOrBuilder getFinishTimeOrBuilder() {
: finishTime_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableMetadataOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableMetadataOrBuilder.java
index 5c2c9b038e..b1bf6d3d61 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableMetadataOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableMetadataOrBuilder.java
@@ -36,6 +36,7 @@ public interface SnapshotTableMetadataOrBuilder
* @return Whether the originalRequest field is set.
*/
boolean hasOriginalRequest();
+
/**
*
*
@@ -48,6 +49,7 @@ public interface SnapshotTableMetadataOrBuilder
* @return The originalRequest.
*/
com.google.bigtable.admin.v2.SnapshotTableRequest getOriginalRequest();
+
/**
*
*
@@ -71,6 +73,7 @@ public interface SnapshotTableMetadataOrBuilder
* @return Whether the requestTime field is set.
*/
boolean hasRequestTime();
+
/**
*
*
@@ -83,6 +86,7 @@ public interface SnapshotTableMetadataOrBuilder
* @return The requestTime.
*/
com.google.protobuf.Timestamp getRequestTime();
+
/**
*
*
@@ -106,6 +110,7 @@ public interface SnapshotTableMetadataOrBuilder
* @return Whether the finishTime field is set.
*/
boolean hasFinishTime();
+
/**
*
*
@@ -118,6 +123,7 @@ public interface SnapshotTableMetadataOrBuilder
* @return The finishTime.
*/
com.google.protobuf.Timestamp getFinishTime();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableRequest.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableRequest.java
index 01fe705d87..4b266b5cf6 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableRequest.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableRequest.java
@@ -39,6 +39,7 @@ public final class SnapshotTableRequest extends com.google.protobuf.GeneratedMes
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.SnapshotTableRequest)
SnapshotTableRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use SnapshotTableRequest.newBuilder() to construct.
private SnapshotTableRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -77,6 +78,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object name_ = "";
+
/**
*
*
@@ -104,6 +106,7 @@ public java.lang.String getName() {
return s;
}
}
+
/**
*
*
@@ -136,6 +139,7 @@ public com.google.protobuf.ByteString getNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object cluster_ = "";
+
/**
*
*
@@ -163,6 +167,7 @@ public java.lang.String getCluster() {
return s;
}
}
+
/**
*
*
@@ -195,6 +200,7 @@ public com.google.protobuf.ByteString getClusterBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object snapshotId_ = "";
+
/**
*
*
@@ -221,6 +227,7 @@ public java.lang.String getSnapshotId() {
return s;
}
}
+
/**
*
*
@@ -250,6 +257,7 @@ public com.google.protobuf.ByteString getSnapshotIdBytes() {
public static final int TTL_FIELD_NUMBER = 4;
private com.google.protobuf.Duration ttl_;
+
/**
*
*
@@ -268,6 +276,7 @@ public com.google.protobuf.ByteString getSnapshotIdBytes() {
public boolean hasTtl() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -286,6 +295,7 @@ public boolean hasTtl() {
public com.google.protobuf.Duration getTtl() {
return ttl_ == null ? com.google.protobuf.Duration.getDefaultInstance() : ttl_;
}
+
/**
*
*
@@ -307,6 +317,7 @@ public com.google.protobuf.DurationOrBuilder getTtlOrBuilder() {
@SuppressWarnings("serial")
private volatile java.lang.Object description_ = "";
+
/**
*
*
@@ -330,6 +341,7 @@ public java.lang.String getDescription() {
return s;
}
}
+
/**
*
*
@@ -554,6 +566,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -818,6 +831,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object name_ = "";
+
/**
*
*
@@ -844,6 +858,7 @@ public java.lang.String getName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -870,6 +885,7 @@ public com.google.protobuf.ByteString getNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -895,6 +911,7 @@ public Builder setName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -916,6 +933,7 @@ public Builder clearName() {
onChanged();
return this;
}
+
/**
*
*
@@ -944,6 +962,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object cluster_ = "";
+
/**
*
*
@@ -970,6 +989,7 @@ public java.lang.String getCluster() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -996,6 +1016,7 @@ public com.google.protobuf.ByteString getClusterBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1021,6 +1042,7 @@ public Builder setCluster(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1042,6 +1064,7 @@ public Builder clearCluster() {
onChanged();
return this;
}
+
/**
*
*
@@ -1070,6 +1093,7 @@ public Builder setClusterBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object snapshotId_ = "";
+
/**
*
*
@@ -1095,6 +1119,7 @@ public java.lang.String getSnapshotId() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1120,6 +1145,7 @@ public com.google.protobuf.ByteString getSnapshotIdBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1144,6 +1170,7 @@ public Builder setSnapshotId(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1164,6 +1191,7 @@ public Builder clearSnapshotId() {
onChanged();
return this;
}
+
/**
*
*
@@ -1196,6 +1224,7 @@ public Builder setSnapshotIdBytes(com.google.protobuf.ByteString value) {
com.google.protobuf.Duration.Builder,
com.google.protobuf.DurationOrBuilder>
ttlBuilder_;
+
/**
*
*
@@ -1213,6 +1242,7 @@ public Builder setSnapshotIdBytes(com.google.protobuf.ByteString value) {
public boolean hasTtl() {
return ((bitField0_ & 0x00000008) != 0);
}
+
/**
*
*
@@ -1234,6 +1264,7 @@ public com.google.protobuf.Duration getTtl() {
return ttlBuilder_.getMessage();
}
}
+
/**
*
*
@@ -1259,6 +1290,7 @@ public Builder setTtl(com.google.protobuf.Duration value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1281,6 +1313,7 @@ public Builder setTtl(com.google.protobuf.Duration.Builder builderForValue) {
onChanged();
return this;
}
+
/**
*
*
@@ -1311,6 +1344,7 @@ public Builder mergeTtl(com.google.protobuf.Duration value) {
}
return this;
}
+
/**
*
*
@@ -1333,6 +1367,7 @@ public Builder clearTtl() {
onChanged();
return this;
}
+
/**
*
*
@@ -1350,6 +1385,7 @@ public com.google.protobuf.Duration.Builder getTtlBuilder() {
onChanged();
return getTtlFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -1369,6 +1405,7 @@ public com.google.protobuf.DurationOrBuilder getTtlOrBuilder() {
return ttl_ == null ? com.google.protobuf.Duration.getDefaultInstance() : ttl_;
}
}
+
/**
*
*
@@ -1398,6 +1435,7 @@ public com.google.protobuf.DurationOrBuilder getTtlOrBuilder() {
}
private java.lang.Object description_ = "";
+
/**
*
*
@@ -1420,6 +1458,7 @@ public java.lang.String getDescription() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -1442,6 +1481,7 @@ public com.google.protobuf.ByteString getDescriptionBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -1463,6 +1503,7 @@ public Builder setDescription(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1480,6 +1521,7 @@ public Builder clearDescription() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableRequestOrBuilder.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableRequestOrBuilder.java
index d92afae12e..582640ad2d 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/SnapshotTableRequestOrBuilder.java
@@ -40,6 +40,7 @@ public interface SnapshotTableRequestOrBuilder
* @return The name.
*/
java.lang.String getName();
+
/**
*
*
@@ -73,6 +74,7 @@ public interface SnapshotTableRequestOrBuilder
* @return The cluster.
*/
java.lang.String getCluster();
+
/**
*
*
@@ -105,6 +107,7 @@ public interface SnapshotTableRequestOrBuilder
* @return The snapshotId.
*/
java.lang.String getSnapshotId();
+
/**
*
*
@@ -136,6 +139,7 @@ public interface SnapshotTableRequestOrBuilder
* @return Whether the ttl field is set.
*/
boolean hasTtl();
+
/**
*
*
@@ -151,6 +155,7 @@ public interface SnapshotTableRequestOrBuilder
* @return The ttl.
*/
com.google.protobuf.Duration getTtl();
+
/**
*
*
@@ -177,6 +182,7 @@ public interface SnapshotTableRequestOrBuilder
* @return The description.
*/
java.lang.String getDescription();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/StandardReadRemoteWrites.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/StandardReadRemoteWrites.java
index 674c0aefac..cf4c7069f6 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/StandardReadRemoteWrites.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/StandardReadRemoteWrites.java
@@ -34,6 +34,7 @@ public final class StandardReadRemoteWrites extends com.google.protobuf.Generate
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.StandardReadRemoteWrites)
StandardReadRemoteWritesOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use StandardReadRemoteWrites.newBuilder() to construct.
private StandardReadRemoteWrites(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -213,6 +214,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/StorageType.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/StorageType.java
index 4e22706ce4..8d72c625fc 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/StorageType.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/StorageType.java
@@ -72,6 +72,7 @@ public enum StorageType implements com.google.protobuf.ProtocolMessageEnum {
* STORAGE_TYPE_UNSPECIFIED = 0;
*/
public static final int STORAGE_TYPE_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -82,6 +83,7 @@ public enum StorageType implements com.google.protobuf.ProtocolMessageEnum {
* SSD = 1;
*/
public static final int SSD_VALUE = 1;
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Table.java b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Table.java
index 6970a6ae42..6b619f14ab 100644
--- a/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Table.java
+++ b/proto-google-cloud-bigtable-admin-v2/src/main/java/com/google/bigtable/admin/v2/Table.java
@@ -34,6 +34,7 @@ public final class Table extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Table)
TableOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Table.newBuilder() to construct.
private Table(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -125,6 +126,7 @@ public enum TimestampGranularity implements com.google.protobuf.ProtocolMessageE
* TIMESTAMP_GRANULARITY_UNSPECIFIED = 0;
*/
public static final int TIMESTAMP_GRANULARITY_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -304,6 +306,7 @@ public enum View implements com.google.protobuf.ProtocolMessageEnum {
* VIEW_UNSPECIFIED = 0;
*/
public static final int VIEW_UNSPECIFIED_VALUE = 0;
+
/**
*
*
@@ -314,6 +317,7 @@ public enum View implements com.google.protobuf.ProtocolMessageEnum {
* NAME_ONLY = 1;
*/
public static final int NAME_ONLY_VALUE = 1;
+
/**
*
*
@@ -324,6 +328,7 @@ public enum View implements com.google.protobuf.ProtocolMessageEnum {
* SCHEMA_VIEW = 2;
*/
public static final int SCHEMA_VIEW_VALUE = 2;
+
/**
*
*
@@ -335,6 +340,7 @@ public enum View implements com.google.protobuf.ProtocolMessageEnum {
* REPLICATION_VIEW = 3;
*/
public static final int REPLICATION_VIEW_VALUE = 3;
+
/**
*
*
@@ -345,6 +351,7 @@ public enum View implements com.google.protobuf.ProtocolMessageEnum {
* ENCRYPTION_VIEW = 5;
*/
public static final int ENCRYPTION_VIEW_VALUE = 5;
+
/**
*
*
@@ -464,6 +471,7 @@ public interface ClusterStateOrBuilder
* @return The enum numeric value on the wire for replicationState.
*/
int getReplicationStateValue();
+
/**
*
*
@@ -495,6 +503,7 @@ public interface ClusterStateOrBuilder
*
*/
java.util.ListSTATE_NOT_KNOWN = 0;
*/
public static final int STATE_NOT_KNOWN_VALUE = 0;
+
/**
*
*
@@ -709,6 +724,7 @@ public enum ReplicationState implements com.google.protobuf.ProtocolMessageEnum
* INITIALIZING = 1;
*/
public static final int INITIALIZING_VALUE = 1;
+
/**
*
*
@@ -720,6 +736,7 @@ public enum ReplicationState implements com.google.protobuf.ProtocolMessageEnum
* PLANNED_MAINTENANCE = 2;
*/
public static final int PLANNED_MAINTENANCE_VALUE = 2;
+
/**
*
*
@@ -731,6 +748,7 @@ public enum ReplicationState implements com.google.protobuf.ProtocolMessageEnum
* UNPLANNED_MAINTENANCE = 3;
*/
public static final int UNPLANNED_MAINTENANCE_VALUE = 3;
+
/**
*
*
@@ -743,6 +761,7 @@ public enum ReplicationState implements com.google.protobuf.ProtocolMessageEnum
* READY = 4;
*/
public static final int READY_VALUE = 4;
+
/**
*
*
@@ -852,6 +871,7 @@ private ReplicationState(int value) {
public static final int REPLICATION_STATE_FIELD_NUMBER = 1;
private int replicationState_ = 0;
+
/**
*
*
@@ -869,6 +889,7 @@ private ReplicationState(int value) {
public int getReplicationStateValue() {
return replicationState_;
}
+
/**
*
*
@@ -896,6 +917,7 @@ public com.google.bigtable.admin.v2.Table.ClusterState.ReplicationState getRepli
@SuppressWarnings("serial")
private java.util.Listmap<string, .google.bigtable.admin.v2.ColumnFamily> column_families = 3;
*/
int getColumnFamiliesCount();
+
/**
*
*
@@ -165,9 +172,11 @@ com.google.bigtable.admin.v2.Table.ClusterState getClusterStatesOrDefault(
* map<string, .google.bigtable.admin.v2.ColumnFamily> column_families = 3;
*/
boolean containsColumnFamilies(java.lang.String key);
+
/** Use {@link #getColumnFamiliesMap()} instead. */
@java.lang.Deprecated
java.util.Mapmap<string, .google.bigtable.admin.v2.ColumnFamily> column_families = 3;
*/
java.util.Maprepeated .google.bigtable.admin.v2.Type.Struct.Field fields = 1;
*/
java.util.Listrepeated .google.bigtable.admin.v2.Type.Struct.Field fields = 1;
*/
com.google.bigtable.admin.v2.Type.Struct.Field getFields(int index);
+
/**
*
*
@@ -11671,6 +11883,7 @@ public interface StructOrBuilder
* repeated .google.bigtable.admin.v2.Type.Struct.Field fields = 1;
*/
int getFieldsCount();
+
/**
*
*
@@ -11682,6 +11895,7 @@ public interface StructOrBuilder
*/
java.util.List extends com.google.bigtable.admin.v2.Type.Struct.FieldOrBuilder>
getFieldsOrBuilderList();
+
/**
*
*
@@ -11705,6 +11919,7 @@ public interface StructOrBuilder
* @return Whether the encoding field is set.
*/
boolean hasEncoding();
+
/**
*
*
@@ -11717,6 +11932,7 @@ public interface StructOrBuilder
* @return The encoding.
*/
com.google.bigtable.admin.v2.Type.Struct.Encoding getEncoding();
+
/**
*
*
@@ -11728,6 +11944,7 @@ public interface StructOrBuilder
*/
com.google.bigtable.admin.v2.Type.Struct.EncodingOrBuilder getEncodingOrBuilder();
}
+
/**
*
*
@@ -11745,6 +11962,7 @@ public static final class Struct extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Type.Struct)
StructOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Struct.newBuilder() to construct.
private Struct(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -11793,6 +12011,7 @@ public interface FieldOrBuilder
* @return The fieldName.
*/
java.lang.String getFieldName();
+
/**
*
*
@@ -11819,6 +12038,7 @@ public interface FieldOrBuilder
* @return Whether the type field is set.
*/
boolean hasType();
+
/**
*
*
@@ -11831,6 +12051,7 @@ public interface FieldOrBuilder
* @return The type.
*/
com.google.bigtable.admin.v2.Type getType();
+
/**
*
*
@@ -11842,6 +12063,7 @@ public interface FieldOrBuilder
*/
com.google.bigtable.admin.v2.TypeOrBuilder getTypeOrBuilder();
}
+
/**
*
*
@@ -11856,6 +12078,7 @@ public static final class Field extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Type.Struct.Field)
FieldOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Field.newBuilder() to construct.
private Field(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -11891,6 +12114,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object fieldName_ = "";
+
/**
*
*
@@ -11915,6 +12139,7 @@ public java.lang.String getFieldName() {
return s;
}
}
+
/**
*
*
@@ -11942,6 +12167,7 @@ public com.google.protobuf.ByteString getFieldNameBytes() {
public static final int TYPE_FIELD_NUMBER = 2;
private com.google.bigtable.admin.v2.Type type_;
+
/**
*
*
@@ -11957,6 +12183,7 @@ public com.google.protobuf.ByteString getFieldNameBytes() {
public boolean hasType() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -11972,6 +12199,7 @@ public boolean hasType() {
public com.google.bigtable.admin.v2.Type getType() {
return type_ == null ? com.google.bigtable.admin.v2.Type.getDefaultInstance() : type_;
}
+
/**
*
*
@@ -12160,6 +12388,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -12376,6 +12605,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object fieldName_ = "";
+
/**
*
*
@@ -12399,6 +12629,7 @@ public java.lang.String getFieldName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -12422,6 +12653,7 @@ public com.google.protobuf.ByteString getFieldNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -12444,6 +12676,7 @@ public Builder setFieldName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -12462,6 +12695,7 @@ public Builder clearFieldName() {
onChanged();
return this;
}
+
/**
*
*
@@ -12492,6 +12726,7 @@ public Builder setFieldNameBytes(com.google.protobuf.ByteString value) {
com.google.bigtable.admin.v2.Type.Builder,
com.google.bigtable.admin.v2.TypeOrBuilder>
typeBuilder_;
+
/**
*
*
@@ -12506,6 +12741,7 @@ public Builder setFieldNameBytes(com.google.protobuf.ByteString value) {
public boolean hasType() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -12524,6 +12760,7 @@ public com.google.bigtable.admin.v2.Type getType() {
return typeBuilder_.getMessage();
}
}
+
/**
*
*
@@ -12546,6 +12783,7 @@ public Builder setType(com.google.bigtable.admin.v2.Type value) {
onChanged();
return this;
}
+
/**
*
*
@@ -12565,6 +12803,7 @@ public Builder setType(com.google.bigtable.admin.v2.Type.Builder builderForValue
onChanged();
return this;
}
+
/**
*
*
@@ -12592,6 +12831,7 @@ public Builder mergeType(com.google.bigtable.admin.v2.Type value) {
}
return this;
}
+
/**
*
*
@@ -12611,6 +12851,7 @@ public Builder clearType() {
onChanged();
return this;
}
+
/**
*
*
@@ -12625,6 +12866,7 @@ public com.google.bigtable.admin.v2.Type.Builder getTypeBuilder() {
onChanged();
return getTypeFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -12641,6 +12883,7 @@ public com.google.bigtable.admin.v2.TypeOrBuilder getTypeOrBuilder() {
return type_ == null ? com.google.bigtable.admin.v2.Type.getDefaultInstance() : type_;
}
}
+
/**
*
*
@@ -12748,6 +12991,7 @@ public interface EncodingOrBuilder
* @return Whether the singleton field is set.
*/
boolean hasSingleton();
+
/**
*
*
@@ -12760,6 +13004,7 @@ public interface EncodingOrBuilder
* @return The singleton.
*/
com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton getSingleton();
+
/**
*
*
@@ -12784,6 +13029,7 @@ public interface EncodingOrBuilder
* @return Whether the delimitedBytes field is set.
*/
boolean hasDelimitedBytes();
+
/**
*
*
@@ -12797,6 +13043,7 @@ public interface EncodingOrBuilder
* @return The delimitedBytes.
*/
com.google.bigtable.admin.v2.Type.Struct.Encoding.DelimitedBytes getDelimitedBytes();
+
/**
*
*
@@ -12824,6 +13071,7 @@ public interface EncodingOrBuilder
* @return Whether the orderedCodeBytes field is set.
*/
boolean hasOrderedCodeBytes();
+
/**
*
*
@@ -12838,6 +13086,7 @@ public interface EncodingOrBuilder
* @return The orderedCodeBytes.
*/
com.google.bigtable.admin.v2.Type.Struct.Encoding.OrderedCodeBytes getOrderedCodeBytes();
+
/**
*
*
@@ -12854,6 +13103,7 @@ public interface EncodingOrBuilder
com.google.bigtable.admin.v2.Type.Struct.Encoding.EncodingCase getEncodingCase();
}
+
/**
*
*
@@ -12868,6 +13118,7 @@ public static final class Encoding extends com.google.protobuf.GeneratedMessageV
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Type.Struct.Encoding)
EncodingOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Encoding.newBuilder() to construct.
private Encoding(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -12900,6 +13151,7 @@ public interface SingletonOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.admin.v2.Type.Struct.Encoding.Singleton)
com.google.protobuf.MessageOrBuilder {}
+
/**
*
*
@@ -12915,6 +13167,7 @@ public static final class Singleton extends com.google.protobuf.GeneratedMessage
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Type.Struct.Encoding.Singleton)
SingletonOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Singleton.newBuilder() to construct.
private Singleton(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -13099,6 +13352,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -13351,6 +13605,7 @@ public interface DelimitedBytesOrBuilder
*/
com.google.protobuf.ByteString getDelimiter();
}
+
/**
*
*
@@ -13380,6 +13635,7 @@ public static final class DelimitedBytes extends com.google.protobuf.GeneratedMe
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Type.Struct.Encoding.DelimitedBytes)
DelimitedBytesOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use DelimitedBytes.newBuilder() to construct.
private DelimitedBytes(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -13412,6 +13668,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public static final int DELIMITER_FIELD_NUMBER = 1;
private com.google.protobuf.ByteString delimiter_ = com.google.protobuf.ByteString.EMPTY;
+
/**
*
*
@@ -13594,6 +13851,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -13802,6 +14060,7 @@ public Builder mergeFrom(
private int bitField0_;
private com.google.protobuf.ByteString delimiter_ = com.google.protobuf.ByteString.EMPTY;
+
/**
*
*
@@ -13818,6 +14077,7 @@ public Builder mergeFrom(
public com.google.protobuf.ByteString getDelimiter() {
return delimiter_;
}
+
/**
*
*
@@ -13840,6 +14100,7 @@ public Builder setDelimiter(com.google.protobuf.ByteString value) {
onChanged();
return this;
}
+
/**
*
*
@@ -13930,6 +14191,7 @@ public interface OrderedCodeBytesOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.bigtable.admin.v2.Type.Struct.Encoding.OrderedCodeBytes)
com.google.protobuf.MessageOrBuilder {}
+
/**
*
*
@@ -13984,6 +14246,7 @@ public static final class OrderedCodeBytes extends com.google.protobuf.Generated
// @@protoc_insertion_point(message_implements:google.bigtable.admin.v2.Type.Struct.Encoding.OrderedCodeBytes)
OrderedCodeBytesOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use OrderedCodeBytes.newBuilder() to construct.
private OrderedCodeBytes(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -14169,6 +14432,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -14465,6 +14729,7 @@ public enum EncodingCase
private EncodingCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -14500,6 +14765,7 @@ public EncodingCase getEncodingCase() {
}
public static final int SINGLETON_FIELD_NUMBER = 1;
+
/**
*
*
@@ -14515,6 +14781,7 @@ public EncodingCase getEncodingCase() {
public boolean hasSingleton() {
return encodingCase_ == 1;
}
+
/**
*
*
@@ -14533,6 +14800,7 @@ public com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton getSingleton(
}
return com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton.getDefaultInstance();
}
+
/**
*
*
@@ -14552,6 +14820,7 @@ public com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton getSingleton(
}
public static final int DELIMITED_BYTES_FIELD_NUMBER = 2;
+
/**
*
*
@@ -14568,6 +14837,7 @@ public com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton getSingleton(
public boolean hasDelimitedBytes() {
return encodingCase_ == 2;
}
+
/**
*
*
@@ -14588,6 +14858,7 @@ public com.google.bigtable.admin.v2.Type.Struct.Encoding.DelimitedBytes getDelim
return com.google.bigtable.admin.v2.Type.Struct.Encoding.DelimitedBytes
.getDefaultInstance();
}
+
/**
*
*
@@ -14609,6 +14880,7 @@ public com.google.bigtable.admin.v2.Type.Struct.Encoding.DelimitedBytes getDelim
}
public static final int ORDERED_CODE_BYTES_FIELD_NUMBER = 3;
+
/**
*
*
@@ -14626,6 +14898,7 @@ public com.google.bigtable.admin.v2.Type.Struct.Encoding.DelimitedBytes getDelim
public boolean hasOrderedCodeBytes() {
return encodingCase_ == 3;
}
+
/**
*
*
@@ -14648,6 +14921,7 @@ public boolean hasOrderedCodeBytes() {
return com.google.bigtable.admin.v2.Type.Struct.Encoding.OrderedCodeBytes
.getDefaultInstance();
}
+
/**
*
*
@@ -14879,6 +15153,7 @@ protected Builder newBuilderForType(
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -15136,6 +15411,7 @@ public Builder clearEncoding() {
com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton.Builder,
com.google.bigtable.admin.v2.Type.Struct.Encoding.SingletonOrBuilder>
singletonBuilder_;
+
/**
*
*
@@ -15151,6 +15427,7 @@ public Builder clearEncoding() {
public boolean hasSingleton() {
return encodingCase_ == 1;
}
+
/**
*
*
@@ -15176,6 +15453,7 @@ public com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton getSingleton(
return com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton.getDefaultInstance();
}
}
+
/**
*
*
@@ -15199,6 +15477,7 @@ public Builder setSingleton(
encodingCase_ = 1;
return this;
}
+
/**
*
*
@@ -15219,6 +15498,7 @@ public Builder setSingleton(
encodingCase_ = 1;
return this;
}
+
/**
*
*
@@ -15254,6 +15534,7 @@ public Builder mergeSingleton(
encodingCase_ = 1;
return this;
}
+
/**
*
*
@@ -15279,6 +15560,7 @@ public Builder clearSingleton() {
}
return this;
}
+
/**
*
*
@@ -15292,6 +15574,7 @@ public Builder clearSingleton() {
getSingletonBuilder() {
return getSingletonFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -15313,6 +15596,7 @@ public Builder clearSingleton() {
return com.google.bigtable.admin.v2.Type.Struct.Encoding.Singleton.getDefaultInstance();
}
}
+
/**
*
*
@@ -15352,6 +15636,7 @@ public Builder clearSingleton() {
com.google.bigtable.admin.v2.Type.Struct.Encoding.DelimitedBytes.Builder,
com.google.bigtable.admin.v2.Type.Struct.Encoding.DelimitedBytesOrBuilder>
delimitedBytesBuilder_;
+
/**
*
*
@@ -15368,6 +15653,7 @@ public Builder clearSingleton() {
public boolean hasDelimitedBytes() {
return encodingCase_ == 2;
}
+
/**
*
*
@@ -15397,6 +15683,7 @@ public boolean hasDelimitedBytes() {
.getDefaultInstance();
}
}
+
/**
*
*
@@ -15421,6 +15708,7 @@ public Builder setDelimitedBytes(
encodingCase_ = 2;
return this;
}
+
/**
*
*
@@ -15443,6 +15731,7 @@ public Builder setDelimitedBytes(
encodingCase_ = 2;
return this;
}
+
/**
*
*
@@ -15480,6 +15769,7 @@ public Builder mergeDelimitedBytes(
encodingCase_ = 2;
return this;
}
+
/**
*
*
@@ -15506,6 +15796,7 @@ public Builder clearDelimitedBytes() {
}
return this;
}
+
/**
*
*
@@ -15520,6 +15811,7 @@ public Builder clearDelimitedBytes() {
getDelimitedBytesBuilder() {
return getDelimitedBytesFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -15543,6 +15835,7 @@ public Builder clearDelimitedBytes() {
.getDefaultInstance();
}
}
+
/**
*
*
@@ -15584,6 +15877,7 @@ public Builder clearDelimitedBytes() {
com.google.bigtable.admin.v2.Type.Struct.Encoding.OrderedCodeBytes.Builder,
com.google.bigtable.admin.v2.Type.Struct.Encoding.OrderedCodeBytesOrBuilder>
orderedCodeBytesBuilder_;
+
/**
*
*
@@ -15601,6 +15895,7 @@ public Builder clearDelimitedBytes() {
public boolean hasOrderedCodeBytes() {
return encodingCase_ == 3;
}
+
/**
*
*
@@ -15631,6 +15926,7 @@ public boolean hasOrderedCodeBytes() {
.getDefaultInstance();
}
}
+
/**
*
*
@@ -15656,6 +15952,7 @@ public Builder setOrderedCodeBytes(
encodingCase_ = 3;
return this;
}
+
/**
*
*
@@ -15679,6 +15976,7 @@ public Builder setOrderedCodeBytes(
encodingCase_ = 3;
return this;
}
+
/**
*
*
@@ -15717,6 +16015,7 @@ public Builder mergeOrderedCodeBytes(
encodingCase_ = 3;
return this;
}
+
/**
*
*
@@ -15744,6 +16043,7 @@ public Builder clearOrderedCodeBytes() {
}
return this;
}
+
/**
*
*
@@ -15759,6 +16059,7 @@ public Builder clearOrderedCodeBytes() {
getOrderedCodeBytesBuilder() {
return getOrderedCodeBytesFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -15783,6 +16084,7 @@ public Builder clearOrderedCodeBytes() {
.getDefaultInstance();
}
}
+
/**
*
*
@@ -15889,6 +16191,7 @@ public com.google.bigtable.admin.v2.Type.Struct.Encoding getDefaultInstanceForTy
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.v2.Value values = 1;
*/
java.util.Listrepeated .google.bigtable.v2.Value values = 1;
*/
com.google.bigtable.v2.Value getValues(int index);
+
/**
*
*
@@ -54,6 +56,7 @@ public interface ArrayValueOrBuilder
* repeated .google.bigtable.v2.Value values = 1;
*/
int getValuesCount();
+
/**
*
*
@@ -64,6 +67,7 @@ public interface ArrayValueOrBuilder
* repeated .google.bigtable.v2.Value values = 1;
*/
java.util.List extends com.google.bigtable.v2.ValueOrBuilder> getValuesOrBuilderList();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/BigtableProto.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/BigtableProto.java
index 0190b43475..41aa3cb54f 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/BigtableProto.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/BigtableProto.java
@@ -169,7 +169,8 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
static {
java.lang.String[] descriptorData = {
- "\n!google/bigtable/v2/bigtable.proto\022\022goo"
+ "\n"
+ + "!google/bigtable/v2/bigtable.proto\022\022goo"
+ "gle.bigtable.v2\032\034google/api/annotations."
+ "proto\032\027google/api/client.proto\032\037google/a"
+ "pi/field_behavior.proto\032\031google/api/reso"
@@ -178,305 +179,322 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
+ "able/v2/request_stats.proto\032\036google/bigt"
+ "able/v2/types.proto\032\036google/protobuf/dur"
+ "ation.proto\032\037google/protobuf/timestamp.p"
- + "roto\032\036google/protobuf/wrappers.proto\032\027go"
- + "ogle/rpc/status.proto\"\314\004\n\017ReadRowsReques"
- + "t\022>\n\ntable_name\030\001 \001(\tB*\340A\001\372A$\n\"bigtablea"
- + "dmin.googleapis.com/Table\022Q\n\024authorized_"
- + "view_name\030\t \001(\tB3\340A\001\372A-\n+bigtableadmin.g"
- + "oogleapis.com/AuthorizedView\022U\n\026material"
- + "ized_view_name\030\013 \001(\tB5\340A\001\372A/\n-bigtablead"
- + "min.googleapis.com/MaterializedView\022\026\n\016a"
- + "pp_profile_id\030\005 \001(\t\022(\n\004rows\030\002 \001(\0132\032.goog"
- + "le.bigtable.v2.RowSet\022-\n\006filter\030\003 \001(\0132\035."
- + "google.bigtable.v2.RowFilter\022\022\n\nrows_lim"
- + "it\030\004 \001(\003\022P\n\022request_stats_view\030\006 \001(\01624.g"
- + "oogle.bigtable.v2.ReadRowsRequest.Reques"
- + "tStatsView\022\020\n\010reversed\030\007 \001(\010\"f\n\020RequestS"
- + "tatsView\022\"\n\036REQUEST_STATS_VIEW_UNSPECIFI"
- + "ED\020\000\022\026\n\022REQUEST_STATS_NONE\020\001\022\026\n\022REQUEST_"
- + "STATS_FULL\020\002\"\261\003\n\020ReadRowsResponse\022>\n\006chu"
- + "nks\030\001 \003(\0132..google.bigtable.v2.ReadRowsR"
- + "esponse.CellChunk\022\034\n\024last_scanned_row_ke"
- + "y\030\002 \001(\014\0227\n\rrequest_stats\030\003 \001(\0132 .google."
- + "bigtable.v2.RequestStats\032\205\002\n\tCellChunk\022\017"
- + "\n\007row_key\030\001 \001(\014\0221\n\013family_name\030\002 \001(\0132\034.g"
- + "oogle.protobuf.StringValue\022.\n\tqualifier\030"
- + "\003 \001(\0132\033.google.protobuf.BytesValue\022\030\n\020ti"
- + "mestamp_micros\030\004 \001(\003\022\016\n\006labels\030\005 \003(\t\022\r\n\005"
- + "value\030\006 \001(\014\022\022\n\nvalue_size\030\007 \001(\005\022\023\n\treset"
- + "_row\030\010 \001(\010H\000\022\024\n\ncommit_row\030\t \001(\010H\000B\014\n\nro"
- + "w_status\"\230\002\n\024SampleRowKeysRequest\022>\n\ntab"
- + "le_name\030\001 \001(\tB*\340A\001\372A$\n\"bigtableadmin.goo"
- + "gleapis.com/Table\022Q\n\024authorized_view_nam"
- + "e\030\004 \001(\tB3\340A\001\372A-\n+bigtableadmin.googleapi"
- + "s.com/AuthorizedView\022U\n\026materialized_vie"
- + "w_name\030\005 \001(\tB5\340A\001\372A/\n-bigtableadmin.goog"
- + "leapis.com/MaterializedView\022\026\n\016app_profi"
- + "le_id\030\002 \001(\t\">\n\025SampleRowKeysResponse\022\017\n\007"
- + "row_key\030\001 \001(\014\022\024\n\014offset_bytes\030\002 \001(\003\"\211\002\n\020"
- + "MutateRowRequest\022>\n\ntable_name\030\001 \001(\tB*\340A"
- + "\001\372A$\n\"bigtableadmin.googleapis.com/Table"
- + "\022Q\n\024authorized_view_name\030\006 \001(\tB3\340A\001\372A-\n+"
- + "bigtableadmin.googleapis.com/AuthorizedV"
- + "iew\022\026\n\016app_profile_id\030\004 \001(\t\022\024\n\007row_key\030\002"
- + " \001(\014B\003\340A\002\0224\n\tmutations\030\003 \003(\0132\034.google.bi"
- + "gtable.v2.MutationB\003\340A\002\"\023\n\021MutateRowResp"
- + "onse\"\321\002\n\021MutateRowsRequest\022>\n\ntable_name"
- + "\030\001 \001(\tB*\340A\001\372A$\n\"bigtableadmin.googleapis"
- + ".com/Table\022Q\n\024authorized_view_name\030\005 \001(\t"
- + "B3\340A\001\372A-\n+bigtableadmin.googleapis.com/A"
- + "uthorizedView\022\026\n\016app_profile_id\030\003 \001(\t\022A\n"
- + "\007entries\030\002 \003(\0132+.google.bigtable.v2.Muta"
- + "teRowsRequest.EntryB\003\340A\002\032N\n\005Entry\022\017\n\007row"
- + "_key\030\001 \001(\014\0224\n\tmutations\030\002 \003(\0132\034.google.b"
- + "igtable.v2.MutationB\003\340A\002\"\344\001\n\022MutateRowsR"
- + "esponse\022=\n\007entries\030\001 \003(\0132,.google.bigtab"
- + "le.v2.MutateRowsResponse.Entry\022?\n\017rate_l"
- + "imit_info\030\003 \001(\0132!.google.bigtable.v2.Rat"
- + "eLimitInfoH\000\210\001\001\032:\n\005Entry\022\r\n\005index\030\001 \001(\003\022"
- + "\"\n\006status\030\002 \001(\0132\022.google.rpc.StatusB\022\n\020_"
- + "rate_limit_info\"J\n\rRateLimitInfo\022)\n\006peri"
- + "od\030\001 \001(\0132\031.google.protobuf.Duration\022\016\n\006f"
- + "actor\030\002 \001(\001\"\201\003\n\030CheckAndMutateRowRequest"
- + "\022>\n\ntable_name\030\001 \001(\tB*\340A\001\372A$\n\"bigtablead"
- + "min.googleapis.com/Table\022Q\n\024authorized_v"
- + "iew_name\030\t \001(\tB3\340A\001\372A-\n+bigtableadmin.go"
- + "ogleapis.com/AuthorizedView\022\026\n\016app_profi"
- + "le_id\030\007 \001(\t\022\024\n\007row_key\030\002 \001(\014B\003\340A\002\0227\n\020pre"
- + "dicate_filter\030\006 \001(\0132\035.google.bigtable.v2"
- + ".RowFilter\0224\n\016true_mutations\030\004 \003(\0132\034.goo"
- + "gle.bigtable.v2.Mutation\0225\n\017false_mutati"
- + "ons\030\005 \003(\0132\034.google.bigtable.v2.Mutation\""
- + "6\n\031CheckAndMutateRowResponse\022\031\n\021predicat"
- + "e_matched\030\001 \001(\010\"i\n\022PingAndWarmRequest\022;\n"
- + "\004name\030\001 \001(\tB-\340A\002\372A\'\n%bigtableadmin.googl"
- + "eapis.com/Instance\022\026\n\016app_profile_id\030\002 \001"
- + "(\t\"\025\n\023PingAndWarmResponse\"\231\002\n\031ReadModify"
- + "WriteRowRequest\022>\n\ntable_name\030\001 \001(\tB*\340A\001"
- + "\372A$\n\"bigtableadmin.googleapis.com/Table\022"
- + "Q\n\024authorized_view_name\030\006 \001(\tB3\340A\001\372A-\n+b"
- + "igtableadmin.googleapis.com/AuthorizedVi"
- + "ew\022\026\n\016app_profile_id\030\004 \001(\t\022\024\n\007row_key\030\002 "
- + "\001(\014B\003\340A\002\022;\n\005rules\030\003 \003(\0132\'.google.bigtabl"
- + "e.v2.ReadModifyWriteRuleB\003\340A\002\"B\n\032ReadMod"
- + "ifyWriteRowResponse\022$\n\003row\030\001 \001(\0132\027.googl"
- + "e.bigtable.v2.Row\"\206\001\n,GenerateInitialCha"
- + "ngeStreamPartitionsRequest\022>\n\ntable_name"
- + "\030\001 \001(\tB*\340A\002\372A$\n\"bigtableadmin.googleapis"
- + ".com/Table\022\026\n\016app_profile_id\030\002 \001(\t\"g\n-Ge"
- + "nerateInitialChangeStreamPartitionsRespo"
- + "nse\0226\n\tpartition\030\001 \001(\0132#.google.bigtable"
- + ".v2.StreamPartition\"\233\003\n\027ReadChangeStream"
- + "Request\022>\n\ntable_name\030\001 \001(\tB*\340A\002\372A$\n\"big"
- + "tableadmin.googleapis.com/Table\022\026\n\016app_p"
- + "rofile_id\030\002 \001(\t\0226\n\tpartition\030\003 \001(\0132#.goo"
- + "gle.bigtable.v2.StreamPartition\0220\n\nstart"
- + "_time\030\004 \001(\0132\032.google.protobuf.TimestampH"
- + "\000\022K\n\023continuation_tokens\030\006 \001(\0132,.google."
- + "bigtable.v2.StreamContinuationTokensH\000\022,"
- + "\n\010end_time\030\005 \001(\0132\032.google.protobuf.Times"
- + "tamp\0225\n\022heartbeat_duration\030\007 \001(\0132\031.googl"
- + "e.protobuf.DurationB\014\n\nstart_from\"\251\n\n\030Re"
- + "adChangeStreamResponse\022N\n\013data_change\030\001 "
- + "\001(\01327.google.bigtable.v2.ReadChangeStrea"
- + "mResponse.DataChangeH\000\022K\n\theartbeat\030\002 \001("
- + "\01326.google.bigtable.v2.ReadChangeStreamR"
- + "esponse.HeartbeatH\000\022P\n\014close_stream\030\003 \001("
- + "\01328.google.bigtable.v2.ReadChangeStreamR"
- + "esponse.CloseStreamH\000\032\364\001\n\rMutationChunk\022"
- + "X\n\nchunk_info\030\001 \001(\0132D.google.bigtable.v2"
- + ".ReadChangeStreamResponse.MutationChunk."
- + "ChunkInfo\022.\n\010mutation\030\002 \001(\0132\034.google.big"
- + "table.v2.Mutation\032Y\n\tChunkInfo\022\032\n\022chunke"
- + "d_value_size\030\001 \001(\005\022\034\n\024chunked_value_offs"
- + "et\030\002 \001(\005\022\022\n\nlast_chunk\030\003 \001(\010\032\306\003\n\nDataCha"
- + "nge\022J\n\004type\030\001 \001(\0162<.google.bigtable.v2.R"
- + "eadChangeStreamResponse.DataChange.Type\022"
- + "\031\n\021source_cluster_id\030\002 \001(\t\022\017\n\007row_key\030\003 "
- + "\001(\014\0224\n\020commit_timestamp\030\004 \001(\0132\032.google.p"
- + "rotobuf.Timestamp\022\022\n\ntiebreaker\030\005 \001(\005\022J\n"
- + "\006chunks\030\006 \003(\0132:.google.bigtable.v2.ReadC"
- + "hangeStreamResponse.MutationChunk\022\014\n\004don"
- + "e\030\010 \001(\010\022\r\n\005token\030\t \001(\t\022;\n\027estimated_low_"
- + "watermark\030\n \001(\0132\032.google.protobuf.Timest"
- + "amp\"P\n\004Type\022\024\n\020TYPE_UNSPECIFIED\020\000\022\010\n\004USE"
- + "R\020\001\022\026\n\022GARBAGE_COLLECTION\020\002\022\020\n\014CONTINUAT"
- + "ION\020\003\032\221\001\n\tHeartbeat\022G\n\022continuation_toke"
- + "n\030\001 \001(\0132+.google.bigtable.v2.StreamConti"
- + "nuationToken\022;\n\027estimated_low_watermark\030"
- + "\002 \001(\0132\032.google.protobuf.Timestamp\032\270\001\n\013Cl"
- + "oseStream\022\"\n\006status\030\001 \001(\0132\022.google.rpc.S"
- + "tatus\022H\n\023continuation_tokens\030\002 \003(\0132+.goo"
- + "gle.bigtable.v2.StreamContinuationToken\022"
- + ";\n\016new_partitions\030\003 \003(\0132#.google.bigtabl"
- + "e.v2.StreamPartitionB\017\n\rstream_record\"\241\003"
- + "\n\023ExecuteQueryRequest\022D\n\rinstance_name\030\001"
- + " \001(\tB-\340A\002\372A\'\n%bigtableadmin.googleapis.c"
- + "om/Instance\022\033\n\016app_profile_id\030\002 \001(\tB\003\340A\001"
- + "\022\024\n\005query\030\003 \001(\tB\005\030\001\340A\002\022\026\n\016prepared_query"
- + "\030\t \001(\014\022;\n\014proto_format\030\004 \001(\0132\037.google.bi"
- + "gtable.v2.ProtoFormatB\002\030\001H\000\022\031\n\014resume_to"
- + "ken\030\010 \001(\014B\003\340A\001\022H\n\006params\030\007 \003(\01323.google."
- + "bigtable.v2.ExecuteQueryRequest.ParamsEn"
- + "tryB\003\340A\002\032H\n\013ParamsEntry\022\013\n\003key\030\001 \001(\t\022(\n\005"
- + "value\030\002 \001(\0132\031.google.bigtable.v2.Value:\002"
- + "8\001B\r\n\013data_format\"\226\001\n\024ExecuteQueryRespon"
- + "se\0229\n\010metadata\030\001 \001(\0132%.google.bigtable.v"
- + "2.ResultSetMetadataH\000\0227\n\007results\030\002 \001(\0132$"
- + ".google.bigtable.v2.PartialResultSetH\000B\n"
- + "\n\010response\"\364\002\n\023PrepareQueryRequest\022D\n\rin"
- + "stance_name\030\001 \001(\tB-\340A\002\372A\'\n%bigtableadmin"
- + ".googleapis.com/Instance\022\033\n\016app_profile_"
- + "id\030\002 \001(\tB\003\340A\001\022\022\n\005query\030\003 \001(\tB\003\340A\002\0227\n\014pro"
- + "to_format\030\004 \001(\0132\037.google.bigtable.v2.Pro"
- + "toFormatH\000\022Q\n\013param_types\030\006 \003(\01327.google"
- + ".bigtable.v2.PrepareQueryRequest.ParamTy"
- + "pesEntryB\003\340A\002\032K\n\017ParamTypesEntry\022\013\n\003key\030"
- + "\001 \001(\t\022\'\n\005value\030\002 \001(\0132\030.google.bigtable.v"
- + "2.Type:\0028\001B\r\n\013data_format\"\230\001\n\024PrepareQue"
- + "ryResponse\0227\n\010metadata\030\001 \001(\0132%.google.bi"
- + "gtable.v2.ResultSetMetadata\022\026\n\016prepared_"
- + "query\030\002 \001(\014\022/\n\013valid_until\030\003 \001(\0132\032.googl"
- + "e.protobuf.Timestamp2\311&\n\010Bigtable\022\333\003\n\010Re"
- + "adRows\022#.google.bigtable.v2.ReadRowsRequ"
- + "est\032$.google.bigtable.v2.ReadRowsRespons"
- + "e\"\201\003\332A\ntable_name\332A\031table_name,app_profi"
+ + "roto\032\036google/protobuf/wrappers.proto\032\027google/rpc/status.proto\"\314\004\n"
+ + "\017ReadRowsRequest\022>\n\n"
+ + "table_name\030\001 \001(\tB*\340A\001\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022Q\n"
+ + "\024authorized_view_name\030\t \001(\tB3\340A\001\372A-\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022U\n"
+ + "\026materialized_view_name\030\013 \001(\tB5\340A\001\372A/\n"
+ + "-bigtableadmin.googleapis.com/MaterializedView\022\026\n"
+ + "\016app_profile_id\030\005 \001(\t\022(\n"
+ + "\004rows\030\002 \001(\0132\032.google.bigtable.v2.RowSet\022-\n"
+ + "\006filter\030\003 \001(\0132\035.google.bigtable.v2.RowFilter\022\022\n\n"
+ + "rows_limit\030\004 \001(\003\022P\n"
+ + "\022request_stats_view\030\006 \001(\01624.g"
+ + "oogle.bigtable.v2.ReadRowsRequest.RequestStatsView\022\020\n"
+ + "\010reversed\030\007 \001(\010\"f\n"
+ + "\020RequestStatsView\022\"\n"
+ + "\036REQUEST_STATS_VIEW_UNSPECIFIED\020\000\022\026\n"
+ + "\022REQUEST_STATS_NONE\020\001\022\026\n"
+ + "\022REQUEST_STATS_FULL\020\002\"\261\003\n"
+ + "\020ReadRowsResponse\022>\n"
+ + "\006chunks\030\001 \003(\0132..google.bigtable.v2.ReadRowsResponse.CellChunk\022\034\n"
+ + "\024last_scanned_row_key\030\002 \001(\014\0227\n\r"
+ + "request_stats\030\003 \001(\0132 .google.bigtable.v2.RequestStats\032\205\002\n"
+ + "\tCellChunk\022\017\n"
+ + "\007row_key\030\001 \001(\014\0221\n"
+ + "\013family_name\030\002 \001(\0132\034.google.protobuf.StringValue\022.\n"
+ + "\tqualifier\030\003 \001(\0132\033.google.protobuf.BytesValue\022\030\n"
+ + "\020timestamp_micros\030\004 \001(\003\022\016\n"
+ + "\006labels\030\005 \003(\t\022\r\n"
+ + "\005value\030\006 \001(\014\022\022\n\n"
+ + "value_size\030\007 \001(\005\022\023\n"
+ + "\treset_row\030\010 \001(\010H\000\022\024\n\n"
+ + "commit_row\030\t \001(\010H\000B\014\n\n"
+ + "row_status\"\230\002\n"
+ + "\024SampleRowKeysRequest\022>\n\n"
+ + "table_name\030\001 \001(\tB*\340A\001\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022Q\n"
+ + "\024authorized_view_name\030\004 \001(\tB3\340A\001\372A-\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022U\n"
+ + "\026materialized_view_name\030\005 \001(\tB5\340A\001\372A/\n"
+ + "-bigtableadmin.googleapis.com/MaterializedView\022\026\n"
+ + "\016app_profile_id\030\002 \001(\t\">\n"
+ + "\025SampleRowKeysResponse\022\017\n"
+ + "\007row_key\030\001 \001(\014\022\024\n"
+ + "\014offset_bytes\030\002 \001(\003\"\211\002\n"
+ + "\020MutateRowRequest\022>\n\n"
+ + "table_name\030\001 \001(\tB*\340A\001\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022Q\n"
+ + "\024authorized_view_name\030\006 \001(\tB3\340A\001\372A-\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022\026\n"
+ + "\016app_profile_id\030\004 \001(\t\022\024\n"
+ + "\007row_key\030\002 \001(\014B\003\340A\002\0224\n"
+ + "\tmutations\030\003 \003(\0132\034.google.bigtable.v2.MutationB\003\340A\002\"\023\n"
+ + "\021MutateRowResponse\"\321\002\n"
+ + "\021MutateRowsRequest\022>\n\n"
+ + "table_name\030\001 \001(\tB*\340A\001\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022Q\n"
+ + "\024authorized_view_name\030\005 \001(\tB3\340A\001\372A-\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022\026\n"
+ + "\016app_profile_id\030\003 \001(\t\022A\n"
+ + "\007entries\030\002"
+ + " \003(\0132+.google.bigtable.v2.MutateRowsRequest.EntryB\003\340A\002\032N\n"
+ + "\005Entry\022\017\n"
+ + "\007row_key\030\001 \001(\014\0224\n"
+ + "\tmutations\030\002"
+ + " \003(\0132\034.google.bigtable.v2.MutationB\003\340A\002\"\344\001\n"
+ + "\022MutateRowsResponse\022=\n"
+ + "\007entries\030\001 \003(\0132,.google.bigtable.v2.MutateRowsResponse.Entry\022?\n"
+ + "\017rate_limit_info\030\003"
+ + " \001(\0132!.google.bigtable.v2.RateLimitInfoH\000\210\001\001\032:\n"
+ + "\005Entry\022\r\n"
+ + "\005index\030\001 \001(\003\022\"\n"
+ + "\006status\030\002 \001(\0132\022.google.rpc.StatusB\022\n"
+ + "\020_rate_limit_info\"J\n\r"
+ + "RateLimitInfo\022)\n"
+ + "\006period\030\001 \001(\0132\031.google.protobuf.Duration\022\016\n"
+ + "\006factor\030\002 \001(\001\"\201\003\n"
+ + "\030CheckAndMutateRowRequest\022>\n\n"
+ + "table_name\030\001 \001(\tB*\340A\001\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022Q\n"
+ + "\024authorized_view_name\030\t \001(\tB3\340A\001\372A-\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022\026\n"
+ + "\016app_profile_id\030\007 \001(\t\022\024\n"
+ + "\007row_key\030\002 \001(\014B\003\340A\002\0227\n"
+ + "\020predicate_filter\030\006 \001(\0132\035.google.bigtable.v2.RowFilter\0224\n"
+ + "\016true_mutations\030\004 \003(\0132\034.google.bigtable.v2.Mutation\0225\n"
+ + "\017false_mutations\030\005 \003(\0132\034.google.bigtable.v2.Mutation\"6\n"
+ + "\031CheckAndMutateRowResponse\022\031\n"
+ + "\021predicate_matched\030\001 \001(\010\"i\n"
+ + "\022PingAndWarmRequest\022;\n"
+ + "\004name\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Instance\022\026\n"
+ + "\016app_profile_id\030\002 \001(\t\"\025\n"
+ + "\023PingAndWarmResponse\"\231\002\n"
+ + "\031ReadModifyWriteRowRequest\022>\n\n"
+ + "table_name\030\001 \001(\tB*\340A\001\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022Q\n"
+ + "\024authorized_view_name\030\006 \001(\tB3\340A\001\372A-\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022\026\n"
+ + "\016app_profile_id\030\004 \001(\t\022\024\n"
+ + "\007row_key\030\002 \001(\014B\003\340A\002\022;\n"
+ + "\005rules\030\003"
+ + " \003(\0132\'.google.bigtable.v2.ReadModifyWriteRuleB\003\340A\002\"B\n"
+ + "\032ReadModifyWriteRowResponse\022$\n"
+ + "\003row\030\001 \001(\0132\027.google.bigtable.v2.Row\"\206\001\n"
+ + ",GenerateInitialChangeStreamPartitionsRequest\022>\n\n"
+ + "table_name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022\026\n"
+ + "\016app_profile_id\030\002 \001(\t\"g\n"
+ + "-GenerateInitialChangeStreamPartitionsResponse\0226\n"
+ + "\tpartition\030\001 \001(\0132#.google.bigtable.v2.StreamPartition\"\233\003\n"
+ + "\027ReadChangeStreamRequest\022>\n\n"
+ + "table_name\030\001 \001(\tB*\340A\002\372A$\n"
+ + "\"bigtableadmin.googleapis.com/Table\022\026\n"
+ + "\016app_profile_id\030\002 \001(\t\0226\n"
+ + "\tpartition\030\003 \001(\0132#.google.bigtable.v2.StreamPartition\0220\n\n"
+ + "start_time\030\004 \001(\0132\032.google.protobuf.TimestampH\000\022K\n"
+ + "\023continuation_tokens\030\006 \001(\0132,.google."
+ + "bigtable.v2.StreamContinuationTokensH\000\022,\n"
+ + "\010end_time\030\005 \001(\0132\032.google.protobuf.Timestamp\0225\n"
+ + "\022heartbeat_duration\030\007 \001(\0132\031.google.protobuf.DurationB\014\n\n"
+ + "start_from\"\251\n\n"
+ + "\030ReadChangeStreamResponse\022N\n"
+ + "\013data_change\030\001 "
+ + "\001(\01327.google.bigtable.v2.ReadChangeStreamResponse.DataChangeH\000\022K\n"
+ + "\theartbeat\030\002 \001("
+ + "\01326.google.bigtable.v2.ReadChangeStreamResponse.HeartbeatH\000\022P\n"
+ + "\014close_stream\030\003 \001("
+ + "\01328.google.bigtable.v2.ReadChangeStreamResponse.CloseStreamH\000\032\364\001\n\r"
+ + "MutationChunk\022X\n\n"
+ + "chunk_info\030\001 \001(\0132D.google.bigtable.v2"
+ + ".ReadChangeStreamResponse.MutationChunk.ChunkInfo\022.\n"
+ + "\010mutation\030\002 \001(\0132\034.google.bigtable.v2.Mutation\032Y\n"
+ + "\tChunkInfo\022\032\n"
+ + "\022chunked_value_size\030\001 \001(\005\022\034\n"
+ + "\024chunked_value_offset\030\002 \001(\005\022\022\n\n"
+ + "last_chunk\030\003 \001(\010\032\306\003\n\n"
+ + "DataChange\022J\n"
+ + "\004type\030\001 \001(\0162<.google.bigtable.v2.R"
+ + "eadChangeStreamResponse.DataChange.Type\022\031\n"
+ + "\021source_cluster_id\030\002 \001(\t\022\017\n"
+ + "\007row_key\030\003 \001(\014\0224\n"
+ + "\020commit_timestamp\030\004 \001(\0132\032.google.protobuf.Timestamp\022\022\n\n"
+ + "tiebreaker\030\005 \001(\005\022J\n"
+ + "\006chunks\030\006"
+ + " \003(\0132:.google.bigtable.v2.ReadChangeStreamResponse.MutationChunk\022\014\n"
+ + "\004done\030\010 \001(\010\022\r\n"
+ + "\005token\030\t \001(\t\022;\n"
+ + "\027estimated_low_watermark\030\n"
+ + " \001(\0132\032.google.protobuf.Timestamp\"P\n"
+ + "\004Type\022\024\n"
+ + "\020TYPE_UNSPECIFIED\020\000\022\010\n"
+ + "\004USER\020\001\022\026\n"
+ + "\022GARBAGE_COLLECTION\020\002\022\020\n"
+ + "\014CONTINUATION\020\003\032\221\001\n"
+ + "\tHeartbeat\022G\n"
+ + "\022continuation_token\030\001"
+ + " \001(\0132+.google.bigtable.v2.StreamContinuationToken\022;\n"
+ + "\027estimated_low_watermark\030\002"
+ + " \001(\0132\032.google.protobuf.Timestamp\032\270\001\n"
+ + "\013CloseStream\022\"\n"
+ + "\006status\030\001 \001(\0132\022.google.rpc.Status\022H\n"
+ + "\023continuation_tokens\030\002 \003(\0132+.goo"
+ + "gle.bigtable.v2.StreamContinuationToken\022;\n"
+ + "\016new_partitions\030\003 \003(\0132#.google.bigtable.v2.StreamPartitionB\017\n\r"
+ + "stream_record\"\241\003\n"
+ + "\023ExecuteQueryRequest\022D\n\r"
+ + "instance_name\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Instance\022\033\n"
+ + "\016app_profile_id\030\002 \001(\tB\003\340A\001\022\024\n"
+ + "\005query\030\003 \001(\tB\005\030\001\340A\002\022\026\n"
+ + "\016prepared_query\030\t \001(\014\022;\n"
+ + "\014proto_format\030\004"
+ + " \001(\0132\037.google.bigtable.v2.ProtoFormatB\002\030\001H\000\022\031\n"
+ + "\014resume_token\030\010 \001(\014B\003\340A\001\022H\n"
+ + "\006params\030\007 \003(\01323.google."
+ + "bigtable.v2.ExecuteQueryRequest.ParamsEntryB\003\340A\002\032H\n"
+ + "\013ParamsEntry\022\013\n"
+ + "\003key\030\001 \001(\t\022(\n"
+ + "\005value\030\002 \001(\0132\031.google.bigtable.v2.Value:\0028\001B\r\n"
+ + "\013data_format\"\226\001\n"
+ + "\024ExecuteQueryResponse\0229\n"
+ + "\010metadata\030\001 \001(\0132%.google.bigtable.v2.ResultSetMetadataH\000\0227\n"
+ + "\007results\030\002 \001(\0132$.google.bigtable.v2.PartialResultSetH\000B\n"
+ + "\n"
+ + "\010response\"\364\002\n"
+ + "\023PrepareQueryRequest\022D\n\r"
+ + "instance_name\030\001 \001(\tB-\340A\002\372A\'\n"
+ + "%bigtableadmin.googleapis.com/Instance\022\033\n"
+ + "\016app_profile_id\030\002 \001(\tB\003\340A\001\022\022\n"
+ + "\005query\030\003 \001(\tB\003\340A\002\0227\n"
+ + "\014proto_format\030\004 \001(\0132\037.google.bigtable.v2.ProtoFormatH\000\022Q\n"
+ + "\013param_types\030\006 \003(\01327.google"
+ + ".bigtable.v2.PrepareQueryRequest.ParamTypesEntryB\003\340A\002\032K\n"
+ + "\017ParamTypesEntry\022\013\n"
+ + "\003key\030\001 \001(\t\022\'\n"
+ + "\005value\030\002 \001(\0132\030.google.bigtable.v2.Type:\0028\001B\r\n"
+ + "\013data_format\"\230\001\n"
+ + "\024PrepareQueryResponse\0227\n"
+ + "\010metadata\030\001 \001(\0132%.google.bigtable.v2.ResultSetMetadata\022\026\n"
+ + "\016prepared_query\030\002 \001(\014\022/\n"
+ + "\013valid_until\030\003 \001(\0132\032.google.protobuf.Timestamp2\311&\n"
+ + "\010Bigtable\022\333\003\n"
+ + "\010ReadRows\022#.google.bigtable.v2.ReadRowsRequ"
+ + "est\032$.google.bigtable.v2.ReadRowsResponse\"\201\003\332A\n"
+ + "table_name\332A\031table_name,app_profi"
+ "le_id\202\323\344\223\002\232\001\"9/v2/{table_name=projects/*"
- + "/instances/*/tables/*}:readRows:\001*ZZ\"U/v"
- + "2/{authorized_view_name=projects/*/insta"
- + "nces/*/tables/*/authorizedViews/*}:readR"
- + "ows:\001*\212\323\344\223\002\260\001\022:\n\ntable_name\022,{table_name"
- + "=projects/*/instances/*/tables/*}\022\020\n\016app"
- + "_profile_id\022`\n\024authorized_view_name\022H{au"
- + "thorized_view_name=projects/*/instances/"
- + "*/tables/*/authorizedViews/*}0\001\022\356\003\n\rSamp"
- + "leRowKeys\022(.google.bigtable.v2.SampleRow"
- + "KeysRequest\032).google.bigtable.v2.SampleR"
- + "owKeysResponse\"\205\003\332A\ntable_name\332A\031table_n"
+ + "/instances/*/tables/*}:readRows:\001*ZZ\"U/v2/{authorized_view_name=projects/*/insta"
+ + "nces/*/tables/*/authorizedViews/*}:readRows:\001*\212\323\344\223\002\260\001\022:\n\n"
+ + "table_name\022,{table_name=projects/*/instances/*/tables/*}\022\020\n"
+ + "\016app_profile_id\022`\n"
+ + "\024authorized_view_name\022H{au"
+ + "thorized_view_name=projects/*/instances/*/tables/*/authorizedViews/*}0\001\022\356\003\n\r"
+ + "SampleRowKeys\022(.google.bigtable.v2.SampleRow"
+ + "KeysRequest\032).google.bigtable.v2.SampleRowKeysResponse\"\205\003\332A\n"
+ + "table_name\332A\031table_n"
+ "ame,app_profile_id\202\323\344\223\002\236\001\022>/v2/{table_na"
- + "me=projects/*/instances/*/tables/*}:samp"
- + "leRowKeysZ\\\022Z/v2/{authorized_view_name=p"
- + "rojects/*/instances/*/tables/*/authorize"
- + "dViews/*}:sampleRowKeys\212\323\344\223\002\260\001\022:\n\ntable_"
- + "name\022,{table_name=projects/*/instances/*"
- + "/tables/*}\022\020\n\016app_profile_id\022`\n\024authoriz"
- + "ed_view_name\022H{authorized_view_name=proj"
- + "ects/*/instances/*/tables/*/authorizedVi"
- + "ews/*}0\001\022\202\004\n\tMutateRow\022$.google.bigtable"
- + ".v2.MutateRowRequest\032%.google.bigtable.v"
+ + "me=projects/*/instances/*/tables/*}:sampleRowKeysZ\\\022Z/v2/{authorized_view_name=p"
+ + "rojects/*/instances/*/tables/*/authorizedViews/*}:sampleRowKeys\212\323\344\223\002\260\001\022:\n\n"
+ + "table_name\022,{table_name=projects/*/instances/*/tables/*}\022\020\n"
+ + "\016app_profile_id\022`\n"
+ + "\024authorized_view_name\022H{authorized_view_name=proj"
+ + "ects/*/instances/*/tables/*/authorizedViews/*}0\001\022\202\004\n"
+ + "\tMutateRow\022$.google.bigtable.v2.MutateRowRequest\032%.google.bigtable.v"
+ "2.MutateRowResponse\"\247\003\332A\034table_name,row_"
+ "key,mutations\332A+table_name,row_key,mutat"
+ "ions,app_profile_id\202\323\344\223\002\234\001\":/v2/{table_n"
- + "ame=projects/*/instances/*/tables/*}:mut"
- + "ateRow:\001*Z[\"V/v2/{authorized_view_name=p"
- + "rojects/*/instances/*/tables/*/authorize"
- + "dViews/*}:mutateRow:\001*\212\323\344\223\002\260\001\022:\n\ntable_n"
- + "ame\022,{table_name=projects/*/instances/*/"
- + "tables/*}\022\020\n\016app_profile_id\022`\n\024authorize"
- + "d_view_name\022H{authorized_view_name=proje"
- + "cts/*/instances/*/tables/*/authorizedVie"
- + "ws/*}\022\365\003\n\nMutateRows\022%.google.bigtable.v"
- + "2.MutateRowsRequest\032&.google.bigtable.v2"
+ + "ame=projects/*/instances/*/tables/*}:mutateRow:\001*Z[\"V/v2/{authorized_view_name=p"
+ + "rojects/*/instances/*/tables/*/authorizedViews/*}:mutateRow:\001*\212\323\344\223\002\260\001\022:\n\n"
+ + "table_name\022,{table_name=projects/*/instances/*/tables/*}\022\020\n"
+ + "\016app_profile_id\022`\n"
+ + "\024authorized_view_name\022H{authorized_view_name=proje"
+ + "cts/*/instances/*/tables/*/authorizedViews/*}\022\365\003\n\n"
+ + "MutateRows\022%.google.bigtable.v2.MutateRowsRequest\032&.google.bigtable.v2"
+ ".MutateRowsResponse\"\225\003\332A\022table_name,entr"
+ "ies\332A!table_name,entries,app_profile_id\202"
+ "\323\344\223\002\236\001\";/v2/{table_name=projects/*/insta"
- + "nces/*/tables/*}:mutateRows:\001*Z\\\"W/v2/{a"
- + "uthorized_view_name=projects/*/instances"
- + "/*/tables/*/authorizedViews/*}:mutateRow"
- + "s:\001*\212\323\344\223\002\260\001\022:\n\ntable_name\022,{table_name=p"
- + "rojects/*/instances/*/tables/*}\022\020\n\016app_p"
- + "rofile_id\022`\n\024authorized_view_name\022H{auth"
- + "orized_view_name=projects/*/instances/*/"
- + "tables/*/authorizedViews/*}0\001\022\366\004\n\021CheckA"
- + "ndMutateRow\022,.google.bigtable.v2.CheckAn"
+ + "nces/*/tables/*}:mutateRows:\001*Z\\\"W/v2/{authorized_view_name=projects/*/instances"
+ + "/*/tables/*/authorizedViews/*}:mutateRows:\001*\212\323\344\223\002\260\001\022:\n\n"
+ + "table_name\022,{table_name=projects/*/instances/*/tables/*}\022\020\n"
+ + "\016app_profile_id\022`\n"
+ + "\024authorized_view_name\022H{auth"
+ + "orized_view_name=projects/*/instances/*/tables/*/authorizedViews/*}0\001\022\366\004\n"
+ + "\021CheckAndMutateRow\022,.google.bigtable.v2.CheckAn"
+ "dMutateRowRequest\032-.google.bigtable.v2.C"
+ "heckAndMutateRowResponse\"\203\004\332ABtable_name"
- + ",row_key,predicate_filter,true_mutations"
- + ",false_mutations\332AQtable_name,row_key,pr"
+ + ",row_key,predicate_filter,true_mutations,false_mutations\332AQtable_name,row_key,pr"
+ "edicate_filter,true_mutations,false_muta"
+ "tions,app_profile_id\202\323\344\223\002\254\001\"B/v2/{table_"
- + "name=projects/*/instances/*/tables/*}:ch"
- + "eckAndMutateRow:\001*Zc\"^/v2/{authorized_vi"
+ + "name=projects/*/instances/*/tables/*}:checkAndMutateRow:\001*Zc\"^/v2/{authorized_vi"
+ "ew_name=projects/*/instances/*/tables/*/"
- + "authorizedViews/*}:checkAndMutateRow:\001*\212"
- + "\323\344\223\002\260\001\022:\n\ntable_name\022,{table_name=projec"
- + "ts/*/instances/*/tables/*}\022\020\n\016app_profil"
- + "e_id\022`\n\024authorized_view_name\022H{authorize"
- + "d_view_name=projects/*/instances/*/table"
- + "s/*/authorizedViews/*}\022\356\001\n\013PingAndWarm\022&"
- + ".google.bigtable.v2.PingAndWarmRequest\032\'"
+ + "authorizedViews/*}:checkAndMutateRow:\001*\212\323\344\223\002\260\001\022:\n\n"
+ + "table_name\022,{table_name=projects/*/instances/*/tables/*}\022\020\n"
+ + "\016app_profile_id\022`\n"
+ + "\024authorized_view_name\022H{authorize"
+ + "d_view_name=projects/*/instances/*/tables/*/authorizedViews/*}\022\356\001\n"
+ + "\013PingAndWarm\022&.google.bigtable.v2.PingAndWarmRequest\032\'"
+ ".google.bigtable.v2.PingAndWarmResponse\""
+ "\215\001\332A\004name\332A\023name,app_profile_id\202\323\344\223\002+\"&/"
- + "v2/{name=projects/*/instances/*}:ping:\001*"
- + "\212\323\344\223\0029\022%\n\004name\022\035{name=projects/*/instanc"
- + "es/*}\022\020\n\016app_profile_id\022\247\004\n\022ReadModifyWr"
- + "iteRow\022-.google.bigtable.v2.ReadModifyWr"
+ + "v2/{name=projects/*/instances/*}:ping:\001*\212\323\344\223\0029\022%\n"
+ + "\004name\022\035{name=projects/*/instances/*}\022\020\n"
+ + "\016app_profile_id\022\247\004\n"
+ + "\022ReadModifyWriteRow\022-.google.bigtable.v2.ReadModifyWr"
+ "iteRowRequest\032..google.bigtable.v2.ReadM"
+ "odifyWriteRowResponse\"\261\003\332A\030table_name,ro"
+ "w_key,rules\332A\'table_name,row_key,rules,a"
+ "pp_profile_id\202\323\344\223\002\256\001\"C/v2/{table_name=pr"
- + "ojects/*/instances/*/tables/*}:readModif"
- + "yWriteRow:\001*Zd\"_/v2/{authorized_view_nam"
+ + "ojects/*/instances/*/tables/*}:readModifyWriteRow:\001*Zd\"_/v2/{authorized_view_nam"
+ "e=projects/*/instances/*/tables/*/author"
- + "izedViews/*}:readModifyWriteRow:\001*\212\323\344\223\002\260"
- + "\001\022:\n\ntable_name\022,{table_name=projects/*/"
- + "instances/*/tables/*}\022\020\n\016app_profile_id\022"
- + "`\n\024authorized_view_name\022H{authorized_vie"
- + "w_name=projects/*/instances/*/tables/*/a"
- + "uthorizedViews/*}\022\273\002\n%GenerateInitialCha"
- + "ngeStreamPartitions\022@.google.bigtable.v2"
+ + "izedViews/*}:readModifyWriteRow:\001*\212\323\344\223\002\260\001\022:\n\n"
+ + "table_name\022,{table_name=projects/*/instances/*/tables/*}\022\020\n"
+ + "\016app_profile_id\022`\n"
+ + "\024authorized_view_name\022H{authorized_vie"
+ + "w_name=projects/*/instances/*/tables/*/authorizedViews/*}\022\273\002\n"
+ + "%GenerateInitialChangeStreamPartitions\022@.google.bigtable.v2"
+ ".GenerateInitialChangeStreamPartitionsRe"
- + "quest\032A.google.bigtable.v2.GenerateIniti"
- + "alChangeStreamPartitionsResponse\"\212\001\332A\nta"
- + "ble_name\332A\031table_name,app_profile_id\202\323\344\223"
+ + "quest\032A.google.bigtable.v2.GenerateInitialChangeStreamPartitionsResponse\"\212\001\332A\n"
+ + "table_name\332A\031table_name,app_profile_id\202\323\344\223"
+ "\002[\"V/v2/{table_name=projects/*/instances"
- + "/*/tables/*}:generateInitialChangeStream"
- + "Partitions:\001*0\001\022\346\001\n\020ReadChangeStream\022+.g"
- + "oogle.bigtable.v2.ReadChangeStreamReques"
- + "t\032,.google.bigtable.v2.ReadChangeStreamR"
- + "esponse\"u\332A\ntable_name\332A\031table_name,app_"
+ + "/*/tables/*}:generateInitialChangeStreamPartitions:\001*0\001\022\346\001\n"
+ + "\020ReadChangeStream\022+.google.bigtable.v2.ReadChangeStreamReques"
+ + "t\032,.google.bigtable.v2.ReadChangeStreamResponse\"u\332A\n"
+ + "table_name\332A\031table_name,app_"
+ "profile_id\202\323\344\223\002F\"A/v2/{table_name=projec"
- + "ts/*/instances/*/tables/*}:readChangeStr"
- + "eam:\001*0\001\022\251\002\n\014PrepareQuery\022\'.google.bigta"
- + "ble.v2.PrepareQueryRequest\032(.google.bigt"
+ + "ts/*/instances/*/tables/*}:readChangeStream:\001*0\001\022\251\002\n"
+ + "\014PrepareQuery\022\'.google.bigtable.v2.PrepareQueryRequest\032(.google.bigt"
+ "able.v2.PrepareQueryResponse\"\305\001\332A\023instan"
+ "ce_name,query\332A\"instance_name,query,app_"
+ "profile_id\202\323\344\223\002<\"7/v2/{instance_name=pro"
- + "jects/*/instances/*}:prepareQuery:\001*\212\323\344\223"
- + "\002B\022.\n\rinstance_name\022\035{name=projects/*/in"
- + "stances/*}\022\020\n\016app_profile_id\022\253\002\n\014Execute"
- + "Query\022\'.google.bigtable.v2.ExecuteQueryR"
+ + "jects/*/instances/*}:prepareQuery:\001*\212\323\344\223\002B\022.\n\r"
+ + "instance_name\022\035{name=projects/*/instances/*}\022\020\n"
+ + "\016app_profile_id\022\253\002\n"
+ + "\014ExecuteQuery\022\'.google.bigtable.v2.ExecuteQueryR"
+ "equest\032(.google.bigtable.v2.ExecuteQuery"
+ "Response\"\305\001\332A\023instance_name,query\332A\"inst"
+ "ance_name,query,app_profile_id\202\323\344\223\002<\"7/v"
- + "2/{instance_name=projects/*/instances/*}"
- + ":executeQuery:\001*\212\323\344\223\002B\022.\n\rinstance_name\022"
- + "\035{name=projects/*/instances/*}\022\020\n\016app_pr"
- + "ofile_id0\001\032\333\002\312A\027bigtable.googleapis.com\322"
- + "A\275\002https://www.googleapis.com/auth/bigta"
- + "ble.data,https://www.googleapis.com/auth"
- + "/bigtable.data.readonly,https://www.goog"
- + "leapis.com/auth/cloud-bigtable.data,http"
- + "s://www.googleapis.com/auth/cloud-bigtab"
- + "le.data.readonly,https://www.googleapis."
+ + "2/{instance_name=projects/*/instances/*}:executeQuery:\001*\212\323\344\223\002B\022.\n\r"
+ + "instance_name\022\035{name=projects/*/instances/*}\022\020\n"
+ + "\016app_profile_id0\001\032\333\002\312A\027bigtable.googleapis.com\322"
+ + "A\275\002https://www.googleapis.com/auth/bigtable.data,https://www.googleapis.com/auth"
+ + "/bigtable.data.readonly,https://www.googleapis.com/auth/cloud-bigtable.data,http"
+ + "s://www.googleapis.com/auth/cloud-bigtable.data.readonly,https://www.googleapis."
+ "com/auth/cloud-platform,https://www.goog"
- + "leapis.com/auth/cloud-platform.read-only"
- + "B\365\004\n\026com.google.bigtable.v2B\rBigtablePro"
- + "toP\001Z8cloud.google.com/go/bigtable/apiv2"
+ + "leapis.com/auth/cloud-platform.read-onlyB\365\004\n"
+ + "\026com.google.bigtable.v2B\r"
+ + "BigtableProtoP\001Z8cloud.google.com/go/bigtable/apiv2"
+ "/bigtablepb;bigtablepb\252\002\030Google.Cloud.Bi"
- + "gtable.V2\312\002\030Google\\Cloud\\Bigtable\\V2\352\002\033G"
- + "oogle::Cloud::Bigtable::V2\352AP\n%bigtablea"
- + "dmin.googleapis.com/Instance\022\'projects/{"
- + "project}/instances/{instance}\352A\\\n\"bigtab"
- + "leadmin.googleapis.com/Table\0226projects/{"
- + "project}/instances/{instance}/tables/{ta"
- + "ble}\352A\207\001\n+bigtableadmin.googleapis.com/A"
- + "uthorizedView\022Xprojects/{project}/instan"
- + "ces/{instance}/tables/{table}/authorized"
- + "Views/{authorized_view}\352A~\n-bigtableadmi"
- + "n.googleapis.com/MaterializedView\022Mproje"
- + "cts/{project}/instances/{instance}/mater"
- + "ializedViews/{materialized_view}b\006proto3"
+ + "gtable.V2\312\002\030Google\\Cloud\\Bigtable\\V2\352\002\033Google::Cloud::Bigtable::V2\352AP\n"
+ + "%bigtablea"
+ + "dmin.googleapis.com/Instance\022\'projects/{project}/instances/{instance}\352A\\\n"
+ + "\"bigtableadmin.googleapis.com/Table\0226projects/{"
+ + "project}/instances/{instance}/tables/{table}\352A\207\001\n"
+ + "+bigtableadmin.googleapis.com/AuthorizedView\022Xprojects/{project}/instan"
+ + "ces/{instance}/tables/{table}/authorizedViews/{authorized_view}\352A~\n"
+ + "-bigtableadmin.googleapis.com/MaterializedView\022Mproje"
+ + "cts/{project}/instances/{instance}/materializedViews/{materialized_view}b\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/Cell.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/Cell.java
index b24a6cb575..fc7c5dde1a 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/Cell.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/Cell.java
@@ -33,6 +33,7 @@ public final class Cell extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.v2.Cell)
CellOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Cell.newBuilder() to construct.
private Cell(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -64,6 +65,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public static final int TIMESTAMP_MICROS_FIELD_NUMBER = 1;
private long timestampMicros_ = 0L;
+
/**
*
*
@@ -87,6 +89,7 @@ public long getTimestampMicros() {
public static final int VALUE_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString value_ = com.google.protobuf.ByteString.EMPTY;
+
/**
*
*
@@ -110,6 +113,7 @@ public com.google.protobuf.ByteString getValue() {
@SuppressWarnings("serial")
private com.google.protobuf.LazyStringArrayList labels_ =
com.google.protobuf.LazyStringArrayList.emptyList();
+
/**
*
*
@@ -124,6 +128,7 @@ public com.google.protobuf.ByteString getValue() {
public com.google.protobuf.ProtocolStringList getLabelsList() {
return labels_;
}
+
/**
*
*
@@ -138,6 +143,7 @@ public com.google.protobuf.ProtocolStringList getLabelsList() {
public int getLabelsCount() {
return labels_.size();
}
+
/**
*
*
@@ -153,6 +159,7 @@ public int getLabelsCount() {
public java.lang.String getLabels(int index) {
return labels_.get(index);
}
+
/**
*
*
@@ -351,6 +358,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -563,6 +571,7 @@ public Builder mergeFrom(
private int bitField0_;
private long timestampMicros_;
+
/**
*
*
@@ -583,6 +592,7 @@ public Builder mergeFrom(
public long getTimestampMicros() {
return timestampMicros_;
}
+
/**
*
*
@@ -607,6 +617,7 @@ public Builder setTimestampMicros(long value) {
onChanged();
return this;
}
+
/**
*
*
@@ -631,6 +642,7 @@ public Builder clearTimestampMicros() {
}
private com.google.protobuf.ByteString value_ = com.google.protobuf.ByteString.EMPTY;
+
/**
*
*
@@ -648,6 +660,7 @@ public Builder clearTimestampMicros() {
public com.google.protobuf.ByteString getValue() {
return value_;
}
+
/**
*
*
@@ -671,6 +684,7 @@ public Builder setValue(com.google.protobuf.ByteString value) {
onChanged();
return this;
}
+
/**
*
*
@@ -700,6 +714,7 @@ private void ensureLabelsIsMutable() {
}
bitField0_ |= 0x00000004;
}
+
/**
*
*
@@ -715,6 +730,7 @@ public com.google.protobuf.ProtocolStringList getLabelsList() {
labels_.makeImmutable();
return labels_;
}
+
/**
*
*
@@ -729,6 +745,7 @@ public com.google.protobuf.ProtocolStringList getLabelsList() {
public int getLabelsCount() {
return labels_.size();
}
+
/**
*
*
@@ -744,6 +761,7 @@ public int getLabelsCount() {
public java.lang.String getLabels(int index) {
return labels_.get(index);
}
+
/**
*
*
@@ -759,6 +777,7 @@ public java.lang.String getLabels(int index) {
public com.google.protobuf.ByteString getLabelsBytes(int index) {
return labels_.getByteString(index);
}
+
/**
*
*
@@ -782,6 +801,7 @@ public Builder setLabels(int index, java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -804,6 +824,7 @@ public Builder addLabels(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -823,6 +844,7 @@ public Builder addAllLabels(java.lang.Iterablerepeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
java.util.Listrepeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
com.google.bigtable.v2.Mutation getTrueMutations(int index);
+
/**
*
*
@@ -225,6 +232,7 @@ public interface CheckAndMutateRowRequestOrBuilder
* repeated .google.bigtable.v2.Mutation true_mutations = 4;
*/
int getTrueMutationsCount();
+
/**
*
*
@@ -240,6 +248,7 @@ public interface CheckAndMutateRowRequestOrBuilder
*/
java.util.List extends com.google.bigtable.v2.MutationOrBuilder>
getTrueMutationsOrBuilderList();
+
/**
*
*
@@ -269,6 +278,7 @@ public interface CheckAndMutateRowRequestOrBuilder
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
java.util.Listrepeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
com.google.bigtable.v2.Mutation getFalseMutations(int index);
+
/**
*
*
@@ -297,6 +308,7 @@ public interface CheckAndMutateRowRequestOrBuilder
* repeated .google.bigtable.v2.Mutation false_mutations = 5;
*/
int getFalseMutationsCount();
+
/**
*
*
@@ -312,6 +324,7 @@ public interface CheckAndMutateRowRequestOrBuilder
*/
java.util.List extends com.google.bigtable.v2.MutationOrBuilder>
getFalseMutationsOrBuilderList();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/CheckAndMutateRowResponse.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/CheckAndMutateRowResponse.java
index af18954c1b..1b48979fc1 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/CheckAndMutateRowResponse.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/CheckAndMutateRowResponse.java
@@ -33,6 +33,7 @@ public final class CheckAndMutateRowResponse extends com.google.protobuf.Generat
// @@protoc_insertion_point(message_implements:google.bigtable.v2.CheckAndMutateRowResponse)
CheckAndMutateRowResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use CheckAndMutateRowResponse.newBuilder() to construct.
private CheckAndMutateRowResponse(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -63,6 +64,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public static final int PREDICATE_MATCHED_FIELD_NUMBER = 1;
private boolean predicateMatched_ = false;
+
/**
*
*
@@ -239,6 +241,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -421,6 +424,7 @@ public Builder mergeFrom(
private int bitField0_;
private boolean predicateMatched_;
+
/**
*
*
@@ -437,6 +441,7 @@ public Builder mergeFrom(
public boolean getPredicateMatched() {
return predicateMatched_;
}
+
/**
*
*
@@ -457,6 +462,7 @@ public Builder setPredicateMatched(boolean value) {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/Column.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/Column.java
index adfc5dece2..84e889ffe2 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/Column.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/Column.java
@@ -34,6 +34,7 @@ public final class Column extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.v2.Column)
ColumnOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use Column.newBuilder() to construct.
private Column(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -65,6 +66,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public static final int QUALIFIER_FIELD_NUMBER = 1;
private com.google.protobuf.ByteString qualifier_ = com.google.protobuf.ByteString.EMPTY;
+
/**
*
*
@@ -89,6 +91,7 @@ public com.google.protobuf.ByteString getQualifier() {
@SuppressWarnings("serial")
private java.util.Listrepeated .google.bigtable.v2.Cell cells = 2;
*/
java.util.Listrepeated .google.bigtable.v2.Cell cells = 2;
*/
com.google.bigtable.v2.Cell getCells(int index);
+
/**
*
*
@@ -71,6 +73,7 @@ public interface ColumnOrBuilder
* repeated .google.bigtable.v2.Cell cells = 2;
*/
int getCellsCount();
+
/**
*
*
@@ -81,6 +84,7 @@ public interface ColumnOrBuilder
* repeated .google.bigtable.v2.Cell cells = 2;
*/
java.util.List extends com.google.bigtable.v2.CellOrBuilder> getCellsOrBuilderList();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ColumnRange.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ColumnRange.java
index fed114bd6b..7ca0657371 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ColumnRange.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ColumnRange.java
@@ -36,6 +36,7 @@ public final class ColumnRange extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.v2.ColumnRange)
ColumnRangeOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ColumnRange.newBuilder() to construct.
private ColumnRange(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -83,6 +84,7 @@ public enum StartQualifierCase
private StartQualifierCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -132,6 +134,7 @@ public enum EndQualifierCase
private EndQualifierCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -168,6 +171,7 @@ public EndQualifierCase getEndQualifierCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object familyName_ = "";
+
/**
*
*
@@ -191,6 +195,7 @@ public java.lang.String getFamilyName() {
return s;
}
}
+
/**
*
*
@@ -216,6 +221,7 @@ public com.google.protobuf.ByteString getFamilyNameBytes() {
}
public static final int START_QUALIFIER_CLOSED_FIELD_NUMBER = 2;
+
/**
*
*
@@ -231,6 +237,7 @@ public com.google.protobuf.ByteString getFamilyNameBytes() {
public boolean hasStartQualifierClosed() {
return startQualifierCase_ == 2;
}
+
/**
*
*
@@ -251,6 +258,7 @@ public com.google.protobuf.ByteString getStartQualifierClosed() {
}
public static final int START_QUALIFIER_OPEN_FIELD_NUMBER = 3;
+
/**
*
*
@@ -266,6 +274,7 @@ public com.google.protobuf.ByteString getStartQualifierClosed() {
public boolean hasStartQualifierOpen() {
return startQualifierCase_ == 3;
}
+
/**
*
*
@@ -286,6 +295,7 @@ public com.google.protobuf.ByteString getStartQualifierOpen() {
}
public static final int END_QUALIFIER_CLOSED_FIELD_NUMBER = 4;
+
/**
*
*
@@ -301,6 +311,7 @@ public com.google.protobuf.ByteString getStartQualifierOpen() {
public boolean hasEndQualifierClosed() {
return endQualifierCase_ == 4;
}
+
/**
*
*
@@ -321,6 +332,7 @@ public com.google.protobuf.ByteString getEndQualifierClosed() {
}
public static final int END_QUALIFIER_OPEN_FIELD_NUMBER = 5;
+
/**
*
*
@@ -336,6 +348,7 @@ public com.google.protobuf.ByteString getEndQualifierClosed() {
public boolean hasEndQualifierOpen() {
return endQualifierCase_ == 5;
}
+
/**
*
*
@@ -590,6 +603,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -871,6 +885,7 @@ public Builder clearEndQualifier() {
private int bitField0_;
private java.lang.Object familyName_ = "";
+
/**
*
*
@@ -893,6 +908,7 @@ public java.lang.String getFamilyName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -915,6 +931,7 @@ public com.google.protobuf.ByteString getFamilyNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -936,6 +953,7 @@ public Builder setFamilyName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -953,6 +971,7 @@ public Builder clearFamilyName() {
onChanged();
return this;
}
+
/**
*
*
@@ -990,6 +1009,7 @@ public Builder setFamilyNameBytes(com.google.protobuf.ByteString value) {
public boolean hasStartQualifierClosed() {
return startQualifierCase_ == 2;
}
+
/**
*
*
@@ -1007,6 +1027,7 @@ public com.google.protobuf.ByteString getStartQualifierClosed() {
}
return com.google.protobuf.ByteString.EMPTY;
}
+
/**
*
*
@@ -1028,6 +1049,7 @@ public Builder setStartQualifierClosed(com.google.protobuf.ByteString value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1062,6 +1084,7 @@ public Builder clearStartQualifierClosed() {
public boolean hasStartQualifierOpen() {
return startQualifierCase_ == 3;
}
+
/**
*
*
@@ -1079,6 +1102,7 @@ public com.google.protobuf.ByteString getStartQualifierOpen() {
}
return com.google.protobuf.ByteString.EMPTY;
}
+
/**
*
*
@@ -1100,6 +1124,7 @@ public Builder setStartQualifierOpen(com.google.protobuf.ByteString value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1134,6 +1159,7 @@ public Builder clearStartQualifierOpen() {
public boolean hasEndQualifierClosed() {
return endQualifierCase_ == 4;
}
+
/**
*
*
@@ -1151,6 +1177,7 @@ public com.google.protobuf.ByteString getEndQualifierClosed() {
}
return com.google.protobuf.ByteString.EMPTY;
}
+
/**
*
*
@@ -1172,6 +1199,7 @@ public Builder setEndQualifierClosed(com.google.protobuf.ByteString value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1206,6 +1234,7 @@ public Builder clearEndQualifierClosed() {
public boolean hasEndQualifierOpen() {
return endQualifierCase_ == 5;
}
+
/**
*
*
@@ -1223,6 +1252,7 @@ public com.google.protobuf.ByteString getEndQualifierOpen() {
}
return com.google.protobuf.ByteString.EMPTY;
}
+
/**
*
*
@@ -1244,6 +1274,7 @@ public Builder setEndQualifierOpen(com.google.protobuf.ByteString value) {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ColumnRangeOrBuilder.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ColumnRangeOrBuilder.java
index c08b6978b1..aac595f039 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ColumnRangeOrBuilder.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ColumnRangeOrBuilder.java
@@ -36,6 +36,7 @@ public interface ColumnRangeOrBuilder
* @return The familyName.
*/
java.lang.String getFamilyName();
+
/**
*
*
@@ -61,6 +62,7 @@ public interface ColumnRangeOrBuilder
* @return Whether the startQualifierClosed field is set.
*/
boolean hasStartQualifierClosed();
+
/**
*
*
@@ -86,6 +88,7 @@ public interface ColumnRangeOrBuilder
* @return Whether the startQualifierOpen field is set.
*/
boolean hasStartQualifierOpen();
+
/**
*
*
@@ -111,6 +114,7 @@ public interface ColumnRangeOrBuilder
* @return Whether the endQualifierClosed field is set.
*/
boolean hasEndQualifierClosed();
+
/**
*
*
@@ -136,6 +140,7 @@ public interface ColumnRangeOrBuilder
* @return Whether the endQualifierOpen field is set.
*/
boolean hasEndQualifierOpen();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/DataProto.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/DataProto.java
index 9fa2340c1a..abb7efef69 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/DataProto.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/DataProto.java
@@ -169,128 +169,177 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() {
static {
java.lang.String[] descriptorData = {
- "\n\035google/bigtable/v2/data.proto\022\022google."
+ "\n"
+ + "\035google/bigtable/v2/data.proto\022\022google."
+ "bigtable.v2\032\037google/api/field_behavior.p"
+ "roto\032\036google/bigtable/v2/types.proto\032\037go"
- + "ogle/protobuf/timestamp.proto\032\026google/ty"
- + "pe/date.proto\"@\n\003Row\022\013\n\003key\030\001 \001(\014\022,\n\010fam"
- + "ilies\030\002 \003(\0132\032.google.bigtable.v2.Family\""
- + "C\n\006Family\022\014\n\004name\030\001 \001(\t\022+\n\007columns\030\002 \003(\013"
- + "2\032.google.bigtable.v2.Column\"D\n\006Column\022\021"
- + "\n\tqualifier\030\001 \001(\014\022\'\n\005cells\030\002 \003(\0132\030.googl"
- + "e.bigtable.v2.Cell\"?\n\004Cell\022\030\n\020timestamp_"
- + "micros\030\001 \001(\003\022\r\n\005value\030\002 \001(\014\022\016\n\006labels\030\003 "
- + "\003(\t\"\364\002\n\005Value\022&\n\004type\030\007 \001(\0132\030.google.big"
- + "table.v2.Type\022\023\n\traw_value\030\010 \001(\014H\000\022\036\n\024ra"
- + "w_timestamp_micros\030\t \001(\003H\000\022\025\n\013bytes_valu"
- + "e\030\002 \001(\014H\000\022\026\n\014string_value\030\003 \001(\tH\000\022\023\n\tint"
- + "_value\030\006 \001(\003H\000\022\024\n\nbool_value\030\n \001(\010H\000\022\025\n\013"
- + "float_value\030\013 \001(\001H\000\0225\n\017timestamp_value\030\014"
- + " \001(\0132\032.google.protobuf.TimestampH\000\022\'\n\nda"
- + "te_value\030\r \001(\0132\021.google.type.DateH\000\0225\n\013a"
- + "rray_value\030\004 \001(\0132\036.google.bigtable.v2.Ar"
- + "rayValueH\000B\006\n\004kind\"7\n\nArrayValue\022)\n\006valu"
- + "es\030\001 \003(\0132\031.google.bigtable.v2.Value\"\212\001\n\010"
- + "RowRange\022\032\n\020start_key_closed\030\001 \001(\014H\000\022\030\n\016"
- + "start_key_open\030\002 \001(\014H\000\022\026\n\014end_key_open\030\003"
- + " \001(\014H\001\022\030\n\016end_key_closed\030\004 \001(\014H\001B\013\n\tstar"
- + "t_keyB\t\n\007end_key\"L\n\006RowSet\022\020\n\010row_keys\030\001"
- + " \003(\014\0220\n\nrow_ranges\030\002 \003(\0132\034.google.bigtab"
- + "le.v2.RowRange\"\306\001\n\013ColumnRange\022\023\n\013family"
- + "_name\030\001 \001(\t\022 \n\026start_qualifier_closed\030\002 "
- + "\001(\014H\000\022\036\n\024start_qualifier_open\030\003 \001(\014H\000\022\036\n"
- + "\024end_qualifier_closed\030\004 \001(\014H\001\022\034\n\022end_qua"
- + "lifier_open\030\005 \001(\014H\001B\021\n\017start_qualifierB\017"
- + "\n\rend_qualifier\"N\n\016TimestampRange\022\036\n\026sta"
- + "rt_timestamp_micros\030\001 \001(\003\022\034\n\024end_timesta"
- + "mp_micros\030\002 \001(\003\"\230\001\n\nValueRange\022\034\n\022start_"
- + "value_closed\030\001 \001(\014H\000\022\032\n\020start_value_open"
- + "\030\002 \001(\014H\000\022\032\n\020end_value_closed\030\003 \001(\014H\001\022\030\n\016"
- + "end_value_open\030\004 \001(\014H\001B\r\n\013start_valueB\013\n"
- + "\tend_value\"\337\010\n\tRowFilter\0224\n\005chain\030\001 \001(\0132"
- + "#.google.bigtable.v2.RowFilter.ChainH\000\022>"
- + "\n\ninterleave\030\002 \001(\0132(.google.bigtable.v2."
- + "RowFilter.InterleaveH\000\022<\n\tcondition\030\003 \001("
- + "\0132\'.google.bigtable.v2.RowFilter.Conditi"
- + "onH\000\022\016\n\004sink\030\020 \001(\010H\000\022\031\n\017pass_all_filter\030"
- + "\021 \001(\010H\000\022\032\n\020block_all_filter\030\022 \001(\010H\000\022\036\n\024r"
- + "ow_key_regex_filter\030\004 \001(\014H\000\022\033\n\021row_sampl"
- + "e_filter\030\016 \001(\001H\000\022\"\n\030family_name_regex_fi"
- + "lter\030\005 \001(\tH\000\022\'\n\035column_qualifier_regex_f"
- + "ilter\030\006 \001(\014H\000\022>\n\023column_range_filter\030\007 \001"
- + "(\0132\037.google.bigtable.v2.ColumnRangeH\000\022D\n"
- + "\026timestamp_range_filter\030\010 \001(\0132\".google.b"
- + "igtable.v2.TimestampRangeH\000\022\034\n\022value_reg"
- + "ex_filter\030\t \001(\014H\000\022<\n\022value_range_filter\030"
- + "\017 \001(\0132\036.google.bigtable.v2.ValueRangeH\000\022"
- + "%\n\033cells_per_row_offset_filter\030\n \001(\005H\000\022$"
- + "\n\032cells_per_row_limit_filter\030\013 \001(\005H\000\022\'\n\035"
- + "cells_per_column_limit_filter\030\014 \001(\005H\000\022!\n"
- + "\027strip_value_transformer\030\r \001(\010H\000\022!\n\027appl"
- + "y_label_transformer\030\023 \001(\tH\000\0327\n\005Chain\022.\n\007"
- + "filters\030\001 \003(\0132\035.google.bigtable.v2.RowFi"
- + "lter\032<\n\nInterleave\022.\n\007filters\030\001 \003(\0132\035.go"
- + "ogle.bigtable.v2.RowFilter\032\255\001\n\tCondition"
- + "\0227\n\020predicate_filter\030\001 \001(\0132\035.google.bigt"
- + "able.v2.RowFilter\0222\n\013true_filter\030\002 \001(\0132\035"
- + ".google.bigtable.v2.RowFilter\0223\n\014false_f"
- + "ilter\030\003 \001(\0132\035.google.bigtable.v2.RowFilt"
- + "erB\010\n\006filter\"\255\010\n\010Mutation\0228\n\010set_cell\030\001 "
- + "\001(\0132$.google.bigtable.v2.Mutation.SetCel"
- + "lH\000\022=\n\013add_to_cell\030\005 \001(\0132&.google.bigtab"
- + "le.v2.Mutation.AddToCellH\000\022A\n\rmerge_to_c"
- + "ell\030\006 \001(\0132(.google.bigtable.v2.Mutation."
- + "MergeToCellH\000\022K\n\022delete_from_column\030\002 \001("
- + "\0132-.google.bigtable.v2.Mutation.DeleteFr"
- + "omColumnH\000\022K\n\022delete_from_family\030\003 \001(\0132-"
- + ".google.bigtable.v2.Mutation.DeleteFromF"
- + "amilyH\000\022E\n\017delete_from_row\030\004 \001(\0132*.googl"
- + "e.bigtable.v2.Mutation.DeleteFromRowH\000\032a"
- + "\n\007SetCell\022\023\n\013family_name\030\001 \001(\t\022\030\n\020column"
- + "_qualifier\030\002 \001(\014\022\030\n\020timestamp_micros\030\003 \001"
- + "(\003\022\r\n\005value\030\004 \001(\014\032\255\001\n\tAddToCell\022\023\n\013famil"
- + "y_name\030\001 \001(\t\0223\n\020column_qualifier\030\002 \001(\0132\031"
- + ".google.bigtable.v2.Value\022,\n\ttimestamp\030\003"
- + " \001(\0132\031.google.bigtable.v2.Value\022(\n\005input"
- + "\030\004 \001(\0132\031.google.bigtable.v2.Value\032\257\001\n\013Me"
- + "rgeToCell\022\023\n\013family_name\030\001 \001(\t\0223\n\020column"
- + "_qualifier\030\002 \001(\0132\031.google.bigtable.v2.Va"
- + "lue\022,\n\ttimestamp\030\003 \001(\0132\031.google.bigtable"
- + ".v2.Value\022(\n\005input\030\004 \001(\0132\031.google.bigtab"
- + "le.v2.Value\032y\n\020DeleteFromColumn\022\023\n\013famil"
- + "y_name\030\001 \001(\t\022\030\n\020column_qualifier\030\002 \001(\014\0226"
- + "\n\ntime_range\030\003 \001(\0132\".google.bigtable.v2."
- + "TimestampRange\032\'\n\020DeleteFromFamily\022\023\n\013fa"
- + "mily_name\030\001 \001(\t\032\017\n\rDeleteFromRowB\n\n\010muta"
- + "tion\"\200\001\n\023ReadModifyWriteRule\022\023\n\013family_n"
- + "ame\030\001 \001(\t\022\030\n\020column_qualifier\030\002 \001(\014\022\026\n\014a"
- + "ppend_value\030\003 \001(\014H\000\022\032\n\020increment_amount\030"
- + "\004 \001(\003H\000B\006\n\004rule\"B\n\017StreamPartition\022/\n\tro"
- + "w_range\030\001 \001(\0132\034.google.bigtable.v2.RowRa"
- + "nge\"W\n\030StreamContinuationTokens\022;\n\006token"
- + "s\030\001 \003(\0132+.google.bigtable.v2.StreamConti"
- + "nuationToken\"`\n\027StreamContinuationToken\022"
- + "6\n\tpartition\030\001 \001(\0132#.google.bigtable.v2."
- + "StreamPartition\022\r\n\005token\030\002 \001(\t\"\r\n\013ProtoF"
- + "ormat\"F\n\016ColumnMetadata\022\014\n\004name\030\001 \001(\t\022&\n"
+ + "ogle/protobuf/timestamp.proto\032\026google/type/date.proto\"@\n"
+ + "\003Row\022\013\n"
+ + "\003key\030\001 \001(\014\022,\n"
+ + "\010families\030\002 \003(\0132\032.google.bigtable.v2.Family\"C\n"
+ + "\006Family\022\014\n"
+ + "\004name\030\001 \001(\t\022+\n"
+ + "\007columns\030\002 \003(\0132\032.google.bigtable.v2.Column\"D\n"
+ + "\006Column\022\021\n"
+ + "\tqualifier\030\001 \001(\014\022\'\n"
+ + "\005cells\030\002 \003(\0132\030.google.bigtable.v2.Cell\"?\n"
+ + "\004Cell\022\030\n"
+ + "\020timestamp_micros\030\001 \001(\003\022\r\n"
+ + "\005value\030\002 \001(\014\022\016\n"
+ + "\006labels\030\003 \003(\t\"\364\002\n"
+ + "\005Value\022&\n"
+ + "\004type\030\007 \001(\0132\030.google.bigtable.v2.Type\022\023\n"
+ + "\traw_value\030\010 \001(\014H\000\022\036\n"
+ + "\024raw_timestamp_micros\030\t \001(\003H\000\022\025\n"
+ + "\013bytes_value\030\002 \001(\014H\000\022\026\n"
+ + "\014string_value\030\003 \001(\tH\000\022\023\n"
+ + "\tint_value\030\006 \001(\003H\000\022\024\n\n"
+ + "bool_value\030\n"
+ + " \001(\010H\000\022\025\n"
+ + "\013float_value\030\013 \001(\001H\000\0225\n"
+ + "\017timestamp_value\030\014 \001(\0132\032.google.protobuf.TimestampH\000\022\'\n\n"
+ + "date_value\030\r"
+ + " \001(\0132\021.google.type.DateH\000\0225\n"
+ + "\013array_value\030\004 \001(\0132\036.google.bigtable.v2.ArrayValueH\000B\006\n"
+ + "\004kind\"7\n\n"
+ + "ArrayValue\022)\n"
+ + "\006values\030\001 \003(\0132\031.google.bigtable.v2.Value\"\212\001\n"
+ + "\010RowRange\022\032\n"
+ + "\020start_key_closed\030\001 \001(\014H\000\022\030\n"
+ + "\016start_key_open\030\002 \001(\014H\000\022\026\n"
+ + "\014end_key_open\030\003 \001(\014H\001\022\030\n"
+ + "\016end_key_closed\030\004 \001(\014H\001B\013\n"
+ + "\tstart_keyB\t\n"
+ + "\007end_key\"L\n"
+ + "\006RowSet\022\020\n"
+ + "\010row_keys\030\001 \003(\014\0220\n\n"
+ + "row_ranges\030\002 \003(\0132\034.google.bigtable.v2.RowRange\"\306\001\n"
+ + "\013ColumnRange\022\023\n"
+ + "\013family_name\030\001 \001(\t\022 \n"
+ + "\026start_qualifier_closed\030\002 \001(\014H\000\022\036\n"
+ + "\024start_qualifier_open\030\003 \001(\014H\000\022\036\n"
+ + "\024end_qualifier_closed\030\004 \001(\014H\001\022\034\n"
+ + "\022end_qualifier_open\030\005 \001(\014H\001B\021\n"
+ + "\017start_qualifierB\017\n\r"
+ + "end_qualifier\"N\n"
+ + "\016TimestampRange\022\036\n"
+ + "\026start_timestamp_micros\030\001 \001(\003\022\034\n"
+ + "\024end_timestamp_micros\030\002 \001(\003\"\230\001\n\n"
+ + "ValueRange\022\034\n"
+ + "\022start_value_closed\030\001 \001(\014H\000\022\032\n"
+ + "\020start_value_open\030\002 \001(\014H\000\022\032\n"
+ + "\020end_value_closed\030\003 \001(\014H\001\022\030\n"
+ + "\016end_value_open\030\004 \001(\014H\001B\r\n"
+ + "\013start_valueB\013\n"
+ + "\tend_value\"\337\010\n"
+ + "\tRowFilter\0224\n"
+ + "\005chain\030\001 \001(\0132#.google.bigtable.v2.RowFilter.ChainH\000\022>\n\n"
+ + "interleave\030\002 \001(\0132(.google.bigtable.v2.RowFilter.InterleaveH\000\022<\n"
+ + "\tcondition\030\003 \001(\0132\'.google.bigtable.v2.RowFilter.ConditionH\000\022\016\n"
+ + "\004sink\030\020 \001(\010H\000\022\031\n"
+ + "\017pass_all_filter\030\021 \001(\010H\000\022\032\n"
+ + "\020block_all_filter\030\022 \001(\010H\000\022\036\n"
+ + "\024row_key_regex_filter\030\004 \001(\014H\000\022\033\n"
+ + "\021row_sample_filter\030\016 \001(\001H\000\022\"\n"
+ + "\030family_name_regex_filter\030\005 \001(\tH\000\022\'\n"
+ + "\035column_qualifier_regex_filter\030\006 \001(\014H\000\022>\n"
+ + "\023column_range_filter\030\007"
+ + " \001(\0132\037.google.bigtable.v2.ColumnRangeH\000\022D\n"
+ + "\026timestamp_range_filter\030\010"
+ + " \001(\0132\".google.bigtable.v2.TimestampRangeH\000\022\034\n"
+ + "\022value_regex_filter\030\t \001(\014H\000\022<\n"
+ + "\022value_range_filter\030\017"
+ + " \001(\0132\036.google.bigtable.v2.ValueRangeH\000\022%\n"
+ + "\033cells_per_row_offset_filter\030\n"
+ + " \001(\005H\000\022$\n"
+ + "\032cells_per_row_limit_filter\030\013 \001(\005H\000\022\'\n"
+ + "\035cells_per_column_limit_filter\030\014 \001(\005H\000\022!\n"
+ + "\027strip_value_transformer\030\r"
+ + " \001(\010H\000\022!\n"
+ + "\027apply_label_transformer\030\023 \001(\tH\000\0327\n"
+ + "\005Chain\022.\n"
+ + "\007filters\030\001 \003(\0132\035.google.bigtable.v2.RowFilter\032<\n\n"
+ + "Interleave\022.\n"
+ + "\007filters\030\001 \003(\0132\035.google.bigtable.v2.RowFilter\032\255\001\n"
+ + "\tCondition\0227\n"
+ + "\020predicate_filter\030\001 \001(\0132\035.google.bigtable.v2.RowFilter\0222\n"
+ + "\013true_filter\030\002 \001(\0132\035.google.bigtable.v2.RowFilter\0223\n"
+ + "\014false_filter\030\003 \001(\0132\035.google.bigtable.v2.RowFilterB\010\n"
+ + "\006filter\"\255\010\n"
+ + "\010Mutation\0228\n"
+ + "\010set_cell\030\001 \001(\0132$.google.bigtable.v2.Mutation.SetCellH\000\022=\n"
+ + "\013add_to_cell\030\005"
+ + " \001(\0132&.google.bigtable.v2.Mutation.AddToCellH\000\022A\n\r"
+ + "merge_to_cell\030\006 \001(\0132(.google.bigtable.v2.Mutation.MergeToCellH\000\022K\n"
+ + "\022delete_from_column\030\002 \001("
+ + "\0132-.google.bigtable.v2.Mutation.DeleteFromColumnH\000\022K\n"
+ + "\022delete_from_family\030\003 \001(\0132-"
+ + ".google.bigtable.v2.Mutation.DeleteFromFamilyH\000\022E\n"
+ + "\017delete_from_row\030\004 \001(\0132*.googl"
+ + "e.bigtable.v2.Mutation.DeleteFromRowH\000\032a\n"
+ + "\007SetCell\022\023\n"
+ + "\013family_name\030\001 \001(\t\022\030\n"
+ + "\020column_qualifier\030\002 \001(\014\022\030\n"
+ + "\020timestamp_micros\030\003 \001(\003\022\r\n"
+ + "\005value\030\004 \001(\014\032\255\001\n"
+ + "\tAddToCell\022\023\n"
+ + "\013family_name\030\001 \001(\t\0223\n"
+ + "\020column_qualifier\030\002 \001(\0132\031.google.bigtable.v2.Value\022,\n"
+ + "\ttimestamp\030\003 \001(\0132\031.google.bigtable.v2.Value\022(\n"
+ + "\005input\030\004 \001(\0132\031.google.bigtable.v2.Value\032\257\001\n"
+ + "\013MergeToCell\022\023\n"
+ + "\013family_name\030\001 \001(\t\0223\n"
+ + "\020column_qualifier\030\002 \001(\0132\031.google.bigtable.v2.Value\022,\n"
+ + "\ttimestamp\030\003 \001(\0132\031.google.bigtable.v2.Value\022(\n"
+ + "\005input\030\004 \001(\0132\031.google.bigtable.v2.Value\032y\n"
+ + "\020DeleteFromColumn\022\023\n"
+ + "\013family_name\030\001 \001(\t\022\030\n"
+ + "\020column_qualifier\030\002 \001(\014\0226\n\n"
+ + "time_range\030\003 \001(\0132\".google.bigtable.v2.TimestampRange\032\'\n"
+ + "\020DeleteFromFamily\022\023\n"
+ + "\013family_name\030\001 \001(\t\032\017\n\r"
+ + "DeleteFromRowB\n\n"
+ + "\010mutation\"\200\001\n"
+ + "\023ReadModifyWriteRule\022\023\n"
+ + "\013family_name\030\001 \001(\t\022\030\n"
+ + "\020column_qualifier\030\002 \001(\014\022\026\n"
+ + "\014append_value\030\003 \001(\014H\000\022\032\n"
+ + "\020increment_amount\030\004 \001(\003H\000B\006\n"
+ + "\004rule\"B\n"
+ + "\017StreamPartition\022/\n"
+ + "\trow_range\030\001 \001(\0132\034.google.bigtable.v2.RowRange\"W\n"
+ + "\030StreamContinuationTokens\022;\n"
+ + "\006tokens\030\001 \003(\0132+.google.bigtable.v2.StreamContinuationToken\"`\n"
+ + "\027StreamContinuationToken\0226\n"
+ + "\tpartition\030\001 \001(\0132#.google.bigtable.v2.StreamPartition\022\r\n"
+ + "\005token\030\002 \001(\t\"\r\n"
+ + "\013ProtoFormat\"F\n"
+ + "\016ColumnMetadata\022\014\n"
+ + "\004name\030\001 \001(\t\022&\n"
+ "\004type\030\002 \001(\0132\030.google.bigtable.v2.Type\"B\n"
- + "\013ProtoSchema\0223\n\007columns\030\001 \003(\0132\".google.b"
- + "igtable.v2.ColumnMetadata\"V\n\021ResultSetMe"
- + "tadata\0227\n\014proto_schema\030\001 \001(\0132\037.google.bi"
- + "gtable.v2.ProtoSchemaH\000B\010\n\006schema\"6\n\tPro"
- + "toRows\022)\n\006values\030\002 \003(\0132\031.google.bigtable"
- + ".v2.Value\"$\n\016ProtoRowsBatch\022\022\n\nbatch_dat"
- + "a\030\001 \001(\014\"\325\001\n\020PartialResultSet\022>\n\020proto_ro"
- + "ws_batch\030\003 \001(\0132\".google.bigtable.v2.Prot"
- + "oRowsBatchH\000\022\033\n\016batch_checksum\030\006 \001(\rH\001\210\001"
- + "\001\022\024\n\014resume_token\030\005 \001(\014\022\r\n\005reset\030\007 \001(\010\022\034"
- + "\n\024estimated_batch_size\030\004 \001(\005B\016\n\014partial_"
- + "rowsB\021\n\017_batch_checksumB\263\001\n\026com.google.b"
- + "igtable.v2B\tDataProtoP\001Z8cloud.google.co"
+ + "\013ProtoSchema\0223\n"
+ + "\007columns\030\001 \003(\0132\".google.bigtable.v2.ColumnMetadata\"V\n"
+ + "\021ResultSetMetadata\0227\n"
+ + "\014proto_schema\030\001 \001(\0132\037.google.bigtable.v2.ProtoSchemaH\000B\010\n"
+ + "\006schema\"6\n"
+ + "\tProtoRows\022)\n"
+ + "\006values\030\002 \003(\0132\031.google.bigtable.v2.Value\"$\n"
+ + "\016ProtoRowsBatch\022\022\n\n"
+ + "batch_data\030\001 \001(\014\"\325\001\n"
+ + "\020PartialResultSet\022>\n"
+ + "\020proto_rows_batch\030\003"
+ + " \001(\0132\".google.bigtable.v2.ProtoRowsBatchH\000\022\033\n"
+ + "\016batch_checksum\030\006 \001(\r"
+ + "H\001\210\001\001\022\024\n"
+ + "\014resume_token\030\005 \001(\014\022\r\n"
+ + "\005reset\030\007 \001(\010\022\034\n"
+ + "\024estimated_batch_size\030\004 \001(\005B\016\n"
+ + "\014partial_rowsB\021\n"
+ + "\017_batch_checksumB\263\001\n"
+ + "\026com.google.bigtable.v2B\tDataProtoP\001Z8cloud.google.co"
+ "m/go/bigtable/apiv2/bigtablepb;bigtablep"
+ "b\252\002\030Google.Cloud.Bigtable.V2\312\002\030Google\\Cl"
- + "oud\\Bigtable\\V2\352\002\033Google::Cloud::Bigtabl"
- + "e::V2b\006proto3"
+ + "oud\\Bigtable\\V2\352\002\033Google::Cloud::Bigtable::V2b\006proto3"
};
descriptor =
com.google.protobuf.Descriptors.FileDescriptor.internalBuildGeneratedFileFrom(
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ExecuteQueryRequest.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ExecuteQueryRequest.java
index e151afb031..2143a904a2 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ExecuteQueryRequest.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/ExecuteQueryRequest.java
@@ -33,6 +33,7 @@ public final class ExecuteQueryRequest extends com.google.protobuf.GeneratedMess
// @@protoc_insertion_point(message_implements:google.bigtable.v2.ExecuteQueryRequest)
ExecuteQueryRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use ExecuteQueryRequest.newBuilder() to construct.
private ExecuteQueryRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -96,6 +97,7 @@ public enum DataFormatCase
private DataFormatCase(int value) {
this.value = value;
}
+
/**
* @param value The number of the enum to look for.
* @return The enum associated with the given number.
@@ -130,6 +132,7 @@ public DataFormatCase getDataFormatCase() {
@SuppressWarnings("serial")
private volatile java.lang.Object instanceName_ = "";
+
/**
*
*
@@ -157,6 +160,7 @@ public java.lang.String getInstanceName() {
return s;
}
}
+
/**
*
*
@@ -189,6 +193,7 @@ public com.google.protobuf.ByteString getInstanceNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object appProfileId_ = "";
+
/**
*
*
@@ -213,6 +218,7 @@ public java.lang.String getAppProfileId() {
return s;
}
}
+
/**
*
*
@@ -242,6 +248,7 @@ public com.google.protobuf.ByteString getAppProfileIdBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object query_ = "";
+
/**
*
*
@@ -271,6 +278,7 @@ public java.lang.String getQuery() {
return s;
}
}
+
/**
*
*
@@ -303,6 +311,7 @@ public com.google.protobuf.ByteString getQueryBytes() {
public static final int PREPARED_QUERY_FIELD_NUMBER = 9;
private com.google.protobuf.ByteString preparedQuery_ = com.google.protobuf.ByteString.EMPTY;
+
/**
*
*
@@ -328,6 +337,7 @@ public com.google.protobuf.ByteString getPreparedQuery() {
}
public static final int PROTO_FORMAT_FIELD_NUMBER = 4;
+
/**
*
*
@@ -347,6 +357,7 @@ public com.google.protobuf.ByteString getPreparedQuery() {
public boolean hasProtoFormat() {
return dataFormatCase_ == 4;
}
+
/**
*
*
@@ -369,6 +380,7 @@ public com.google.bigtable.v2.ProtoFormat getProtoFormat() {
}
return com.google.bigtable.v2.ProtoFormat.getDefaultInstance();
}
+
/**
*
*
@@ -390,6 +402,7 @@ public com.google.bigtable.v2.ProtoFormatOrBuilder getProtoFormatOrBuilder() {
public static final int RESUME_TOKEN_FIELD_NUMBER = 8;
private com.google.protobuf.ByteString resumeToken_ = com.google.protobuf.ByteString.EMPTY;
+
/**
*
*
@@ -441,6 +454,7 @@ private static final class ParamsDefaultEntryHolder {
public int getParamsCount() {
return internalGetParams().getMap().size();
}
+
/**
*
*
@@ -481,12 +495,14 @@ public boolean containsParams(java.lang.String key) {
}
return internalGetParams().getMap().containsKey(key);
}
+
/** Use {@link #getParamsMap()} instead. */
@java.lang.Override
@java.lang.Deprecated
public java.util.Maprepeated .google.bigtable.v2.Column columns = 2;
*/
java.util.Listrepeated .google.bigtable.v2.Column columns = 2;
*/
com.google.bigtable.v2.Column getColumns(int index);
+
/**
*
*
@@ -89,6 +92,7 @@ public interface FamilyOrBuilder
* repeated .google.bigtable.v2.Column columns = 2;
*/
int getColumnsCount();
+
/**
*
*
@@ -99,6 +103,7 @@ public interface FamilyOrBuilder
* repeated .google.bigtable.v2.Column columns = 2;
*/
java.util.List extends com.google.bigtable.v2.ColumnOrBuilder> getColumnsOrBuilderList();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FeatureFlags.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FeatureFlags.java
index 7cfbe56f3f..2a1b7a9b11 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FeatureFlags.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FeatureFlags.java
@@ -40,6 +40,7 @@ public final class FeatureFlags extends com.google.protobuf.GeneratedMessageV3
// @@protoc_insertion_point(message_implements:google.bigtable.v2.FeatureFlags)
FeatureFlagsOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use FeatureFlags.newBuilder() to construct.
private FeatureFlags(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -70,6 +71,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public static final int REVERSE_SCANS_FIELD_NUMBER = 1;
private boolean reverseScans_ = false;
+
/**
*
*
@@ -89,6 +91,7 @@ public boolean getReverseScans() {
public static final int MUTATE_ROWS_RATE_LIMIT_FIELD_NUMBER = 3;
private boolean mutateRowsRateLimit_ = false;
+
/**
*
*
@@ -109,6 +112,7 @@ public boolean getMutateRowsRateLimit() {
public static final int MUTATE_ROWS_RATE_LIMIT2_FIELD_NUMBER = 5;
private boolean mutateRowsRateLimit2_ = false;
+
/**
*
*
@@ -129,6 +133,7 @@ public boolean getMutateRowsRateLimit2() {
public static final int LAST_SCANNED_ROW_RESPONSES_FIELD_NUMBER = 4;
private boolean lastScannedRowResponses_ = false;
+
/**
*
*
@@ -148,6 +153,7 @@ public boolean getLastScannedRowResponses() {
public static final int ROUTING_COOKIE_FIELD_NUMBER = 6;
private boolean routingCookie_ = false;
+
/**
*
*
@@ -167,6 +173,7 @@ public boolean getRoutingCookie() {
public static final int RETRY_INFO_FIELD_NUMBER = 7;
private boolean retryInfo_ = false;
+
/**
*
*
@@ -186,6 +193,7 @@ public boolean getRetryInfo() {
public static final int CLIENT_SIDE_METRICS_ENABLED_FIELD_NUMBER = 8;
private boolean clientSideMetricsEnabled_ = false;
+
/**
*
*
@@ -204,6 +212,7 @@ public boolean getClientSideMetricsEnabled() {
public static final int TRAFFIC_DIRECTOR_ENABLED_FIELD_NUMBER = 9;
private boolean trafficDirectorEnabled_ = false;
+
/**
*
*
@@ -222,6 +231,7 @@ public boolean getTrafficDirectorEnabled() {
public static final int DIRECT_ACCESS_REQUESTED_FIELD_NUMBER = 10;
private boolean directAccessRequested_ = false;
+
/**
*
*
@@ -467,6 +477,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -758,6 +769,7 @@ public Builder mergeFrom(
private int bitField0_;
private boolean reverseScans_;
+
/**
*
*
@@ -774,6 +786,7 @@ public Builder mergeFrom(
public boolean getReverseScans() {
return reverseScans_;
}
+
/**
*
*
@@ -794,6 +807,7 @@ public Builder setReverseScans(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -814,6 +828,7 @@ public Builder clearReverseScans() {
}
private boolean mutateRowsRateLimit_;
+
/**
*
*
@@ -831,6 +846,7 @@ public Builder clearReverseScans() {
public boolean getMutateRowsRateLimit() {
return mutateRowsRateLimit_;
}
+
/**
*
*
@@ -852,6 +868,7 @@ public Builder setMutateRowsRateLimit(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -873,6 +890,7 @@ public Builder clearMutateRowsRateLimit() {
}
private boolean mutateRowsRateLimit2_;
+
/**
*
*
@@ -890,6 +908,7 @@ public Builder clearMutateRowsRateLimit() {
public boolean getMutateRowsRateLimit2() {
return mutateRowsRateLimit2_;
}
+
/**
*
*
@@ -911,6 +930,7 @@ public Builder setMutateRowsRateLimit2(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -932,6 +952,7 @@ public Builder clearMutateRowsRateLimit2() {
}
private boolean lastScannedRowResponses_;
+
/**
*
*
@@ -948,6 +969,7 @@ public Builder clearMutateRowsRateLimit2() {
public boolean getLastScannedRowResponses() {
return lastScannedRowResponses_;
}
+
/**
*
*
@@ -968,6 +990,7 @@ public Builder setLastScannedRowResponses(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -988,6 +1011,7 @@ public Builder clearLastScannedRowResponses() {
}
private boolean routingCookie_;
+
/**
*
*
@@ -1004,6 +1028,7 @@ public Builder clearLastScannedRowResponses() {
public boolean getRoutingCookie() {
return routingCookie_;
}
+
/**
*
*
@@ -1024,6 +1049,7 @@ public Builder setRoutingCookie(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1044,6 +1070,7 @@ public Builder clearRoutingCookie() {
}
private boolean retryInfo_;
+
/**
*
*
@@ -1060,6 +1087,7 @@ public Builder clearRoutingCookie() {
public boolean getRetryInfo() {
return retryInfo_;
}
+
/**
*
*
@@ -1080,6 +1108,7 @@ public Builder setRetryInfo(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1100,6 +1129,7 @@ public Builder clearRetryInfo() {
}
private boolean clientSideMetricsEnabled_;
+
/**
*
*
@@ -1115,6 +1145,7 @@ public Builder clearRetryInfo() {
public boolean getClientSideMetricsEnabled() {
return clientSideMetricsEnabled_;
}
+
/**
*
*
@@ -1134,6 +1165,7 @@ public Builder setClientSideMetricsEnabled(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1153,6 +1185,7 @@ public Builder clearClientSideMetricsEnabled() {
}
private boolean trafficDirectorEnabled_;
+
/**
*
*
@@ -1168,6 +1201,7 @@ public Builder clearClientSideMetricsEnabled() {
public boolean getTrafficDirectorEnabled() {
return trafficDirectorEnabled_;
}
+
/**
*
*
@@ -1187,6 +1221,7 @@ public Builder setTrafficDirectorEnabled(boolean value) {
onChanged();
return this;
}
+
/**
*
*
@@ -1206,6 +1241,7 @@ public Builder clearTrafficDirectorEnabled() {
}
private boolean directAccessRequested_;
+
/**
*
*
@@ -1221,6 +1257,7 @@ public Builder clearTrafficDirectorEnabled() {
public boolean getDirectAccessRequested() {
return directAccessRequested_;
}
+
/**
*
*
@@ -1240,6 +1277,7 @@ public Builder setDirectAccessRequested(boolean value) {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FullReadStatsView.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FullReadStatsView.java
index bef7a0bed2..4d60200a21 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FullReadStatsView.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FullReadStatsView.java
@@ -33,6 +33,7 @@ public final class FullReadStatsView extends com.google.protobuf.GeneratedMessag
// @@protoc_insertion_point(message_implements:google.bigtable.v2.FullReadStatsView)
FullReadStatsViewOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use FullReadStatsView.newBuilder() to construct.
private FullReadStatsView(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -64,6 +65,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int bitField0_;
public static final int READ_ITERATION_STATS_FIELD_NUMBER = 1;
private com.google.bigtable.v2.ReadIterationStats readIterationStats_;
+
/**
*
*
@@ -82,6 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public boolean hasReadIterationStats() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -102,6 +105,7 @@ public com.google.bigtable.v2.ReadIterationStats getReadIterationStats() {
? com.google.bigtable.v2.ReadIterationStats.getDefaultInstance()
: readIterationStats_;
}
+
/**
*
*
@@ -123,6 +127,7 @@ public com.google.bigtable.v2.ReadIterationStatsOrBuilder getReadIterationStatsO
public static final int REQUEST_LATENCY_STATS_FIELD_NUMBER = 2;
private com.google.bigtable.v2.RequestLatencyStats requestLatencyStats_;
+
/**
*
*
@@ -139,6 +144,7 @@ public com.google.bigtable.v2.ReadIterationStatsOrBuilder getReadIterationStatsO
public boolean hasRequestLatencyStats() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -157,6 +163,7 @@ public com.google.bigtable.v2.RequestLatencyStats getRequestLatencyStats() {
? com.google.bigtable.v2.RequestLatencyStats.getDefaultInstance()
: requestLatencyStats_;
}
+
/**
*
*
@@ -351,6 +358,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -580,6 +588,7 @@ public Builder mergeFrom(
com.google.bigtable.v2.ReadIterationStats.Builder,
com.google.bigtable.v2.ReadIterationStatsOrBuilder>
readIterationStatsBuilder_;
+
/**
*
*
@@ -597,6 +606,7 @@ public Builder mergeFrom(
public boolean hasReadIterationStats() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -620,6 +630,7 @@ public com.google.bigtable.v2.ReadIterationStats getReadIterationStats() {
return readIterationStatsBuilder_.getMessage();
}
}
+
/**
*
*
@@ -645,6 +656,7 @@ public Builder setReadIterationStats(com.google.bigtable.v2.ReadIterationStats v
onChanged();
return this;
}
+
/**
*
*
@@ -668,6 +680,7 @@ public Builder setReadIterationStats(
onChanged();
return this;
}
+
/**
*
*
@@ -699,6 +712,7 @@ public Builder mergeReadIterationStats(com.google.bigtable.v2.ReadIterationStats
}
return this;
}
+
/**
*
*
@@ -721,6 +735,7 @@ public Builder clearReadIterationStats() {
onChanged();
return this;
}
+
/**
*
*
@@ -738,6 +753,7 @@ public com.google.bigtable.v2.ReadIterationStats.Builder getReadIterationStatsBu
onChanged();
return getReadIterationStatsFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -759,6 +775,7 @@ public com.google.bigtable.v2.ReadIterationStatsOrBuilder getReadIterationStatsO
: readIterationStats_;
}
}
+
/**
*
*
@@ -794,6 +811,7 @@ public com.google.bigtable.v2.ReadIterationStatsOrBuilder getReadIterationStatsO
com.google.bigtable.v2.RequestLatencyStats.Builder,
com.google.bigtable.v2.RequestLatencyStatsOrBuilder>
requestLatencyStatsBuilder_;
+
/**
*
*
@@ -809,6 +827,7 @@ public com.google.bigtable.v2.ReadIterationStatsOrBuilder getReadIterationStatsO
public boolean hasRequestLatencyStats() {
return ((bitField0_ & 0x00000002) != 0);
}
+
/**
*
*
@@ -830,6 +849,7 @@ public com.google.bigtable.v2.RequestLatencyStats getRequestLatencyStats() {
return requestLatencyStatsBuilder_.getMessage();
}
}
+
/**
*
*
@@ -853,6 +873,7 @@ public Builder setRequestLatencyStats(com.google.bigtable.v2.RequestLatencyStats
onChanged();
return this;
}
+
/**
*
*
@@ -874,6 +895,7 @@ public Builder setRequestLatencyStats(
onChanged();
return this;
}
+
/**
*
*
@@ -903,6 +925,7 @@ public Builder mergeRequestLatencyStats(com.google.bigtable.v2.RequestLatencySta
}
return this;
}
+
/**
*
*
@@ -923,6 +946,7 @@ public Builder clearRequestLatencyStats() {
onChanged();
return this;
}
+
/**
*
*
@@ -938,6 +962,7 @@ public com.google.bigtable.v2.RequestLatencyStats.Builder getRequestLatencyStats
onChanged();
return getRequestLatencyStatsFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -957,6 +982,7 @@ public com.google.bigtable.v2.RequestLatencyStatsOrBuilder getRequestLatencyStat
: requestLatencyStats_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FullReadStatsViewOrBuilder.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FullReadStatsViewOrBuilder.java
index 10084b5e23..46da1b9030 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FullReadStatsViewOrBuilder.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/FullReadStatsViewOrBuilder.java
@@ -39,6 +39,7 @@ public interface FullReadStatsViewOrBuilder
* @return Whether the readIterationStats field is set.
*/
boolean hasReadIterationStats();
+
/**
*
*
@@ -54,6 +55,7 @@ public interface FullReadStatsViewOrBuilder
* @return The readIterationStats.
*/
com.google.bigtable.v2.ReadIterationStats getReadIterationStats();
+
/**
*
*
@@ -81,6 +83,7 @@ public interface FullReadStatsViewOrBuilder
* @return Whether the requestLatencyStats field is set.
*/
boolean hasRequestLatencyStats();
+
/**
*
*
@@ -94,6 +97,7 @@ public interface FullReadStatsViewOrBuilder
* @return The requestLatencyStats.
*/
com.google.bigtable.v2.RequestLatencyStats getRequestLatencyStats();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsRequest.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsRequest.java
index 85019bc8fc..1153f37871 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsRequest.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsRequest.java
@@ -35,6 +35,7 @@ public final class GenerateInitialChangeStreamPartitionsRequest
// @@protoc_insertion_point(message_implements:google.bigtable.v2.GenerateInitialChangeStreamPartitionsRequest)
GenerateInitialChangeStreamPartitionsRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use GenerateInitialChangeStreamPartitionsRequest.newBuilder() to construct.
private GenerateInitialChangeStreamPartitionsRequest(
com.google.protobuf.GeneratedMessageV3.Builder> builder) {
@@ -71,6 +72,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object tableName_ = "";
+
/**
*
*
@@ -99,6 +101,7 @@ public java.lang.String getTableName() {
return s;
}
}
+
/**
*
*
@@ -132,6 +135,7 @@ public com.google.protobuf.ByteString getTableNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object appProfileId_ = "";
+
/**
*
*
@@ -157,6 +161,7 @@ public java.lang.String getAppProfileId() {
return s;
}
}
+
/**
*
*
@@ -353,6 +358,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -560,6 +566,7 @@ public Builder mergeFrom(
private int bitField0_;
private java.lang.Object tableName_ = "";
+
/**
*
*
@@ -587,6 +594,7 @@ public java.lang.String getTableName() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -614,6 +622,7 @@ public com.google.protobuf.ByteString getTableNameBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -640,6 +649,7 @@ public Builder setTableName(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -662,6 +672,7 @@ public Builder clearTableName() {
onChanged();
return this;
}
+
/**
*
*
@@ -691,6 +702,7 @@ public Builder setTableNameBytes(com.google.protobuf.ByteString value) {
}
private java.lang.Object appProfileId_ = "";
+
/**
*
*
@@ -715,6 +727,7 @@ public java.lang.String getAppProfileId() {
return (java.lang.String) ref;
}
}
+
/**
*
*
@@ -739,6 +752,7 @@ public com.google.protobuf.ByteString getAppProfileIdBytes() {
return (com.google.protobuf.ByteString) ref;
}
}
+
/**
*
*
@@ -762,6 +776,7 @@ public Builder setAppProfileId(java.lang.String value) {
onChanged();
return this;
}
+
/**
*
*
@@ -781,6 +796,7 @@ public Builder clearAppProfileId() {
onChanged();
return this;
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsRequestOrBuilder.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsRequestOrBuilder.java
index ddc830ea81..1a104bacae 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsRequestOrBuilder.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsRequestOrBuilder.java
@@ -41,6 +41,7 @@ public interface GenerateInitialChangeStreamPartitionsRequestOrBuilder
* @return The tableName.
*/
java.lang.String getTableName();
+
/**
*
*
@@ -73,6 +74,7 @@ public interface GenerateInitialChangeStreamPartitionsRequestOrBuilder
* @return The appProfileId.
*/
java.lang.String getAppProfileId();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsResponse.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsResponse.java
index ead15edb6b..53e0d78412 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsResponse.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsResponse.java
@@ -35,6 +35,7 @@ public final class GenerateInitialChangeStreamPartitionsResponse
// @@protoc_insertion_point(message_implements:google.bigtable.v2.GenerateInitialChangeStreamPartitionsResponse)
GenerateInitialChangeStreamPartitionsResponseOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use GenerateInitialChangeStreamPartitionsResponse.newBuilder() to construct.
private GenerateInitialChangeStreamPartitionsResponse(
com.google.protobuf.GeneratedMessageV3.Builder> builder) {
@@ -67,6 +68,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int bitField0_;
public static final int PARTITION_FIELD_NUMBER = 1;
private com.google.bigtable.v2.StreamPartition partition_;
+
/**
*
*
@@ -82,6 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
public boolean hasPartition() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -99,6 +102,7 @@ public com.google.bigtable.v2.StreamPartition getPartition() {
? com.google.bigtable.v2.StreamPartition.getDefaultInstance()
: partition_;
}
+
/**
*
*
@@ -281,6 +285,7 @@ protected Builder newBuilderForType(com.google.protobuf.GeneratedMessageV3.Build
Builder builder = new Builder(parent);
return builder;
}
+
/**
*
*
@@ -492,6 +497,7 @@ public Builder mergeFrom(
com.google.bigtable.v2.StreamPartition.Builder,
com.google.bigtable.v2.StreamPartitionOrBuilder>
partitionBuilder_;
+
/**
*
*
@@ -506,6 +512,7 @@ public Builder mergeFrom(
public boolean hasPartition() {
return ((bitField0_ & 0x00000001) != 0);
}
+
/**
*
*
@@ -526,6 +533,7 @@ public com.google.bigtable.v2.StreamPartition getPartition() {
return partitionBuilder_.getMessage();
}
}
+
/**
*
*
@@ -548,6 +556,7 @@ public Builder setPartition(com.google.bigtable.v2.StreamPartition value) {
onChanged();
return this;
}
+
/**
*
*
@@ -567,6 +576,7 @@ public Builder setPartition(com.google.bigtable.v2.StreamPartition.Builder build
onChanged();
return this;
}
+
/**
*
*
@@ -594,6 +604,7 @@ public Builder mergePartition(com.google.bigtable.v2.StreamPartition value) {
}
return this;
}
+
/**
*
*
@@ -613,6 +624,7 @@ public Builder clearPartition() {
onChanged();
return this;
}
+
/**
*
*
@@ -627,6 +639,7 @@ public com.google.bigtable.v2.StreamPartition.Builder getPartitionBuilder() {
onChanged();
return getPartitionFieldBuilder().getBuilder();
}
+
/**
*
*
@@ -645,6 +658,7 @@ public com.google.bigtable.v2.StreamPartitionOrBuilder getPartitionOrBuilder() {
: partition_;
}
}
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsResponseOrBuilder.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsResponseOrBuilder.java
index d577c8dfb1..5e7387f642 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsResponseOrBuilder.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/GenerateInitialChangeStreamPartitionsResponseOrBuilder.java
@@ -36,6 +36,7 @@ public interface GenerateInitialChangeStreamPartitionsResponseOrBuilder
* @return Whether the partition field is set.
*/
boolean hasPartition();
+
/**
*
*
@@ -48,6 +49,7 @@ public interface GenerateInitialChangeStreamPartitionsResponseOrBuilder
* @return The partition.
*/
com.google.bigtable.v2.StreamPartition getPartition();
+
/**
*
*
diff --git a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/MutateRowRequest.java b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/MutateRowRequest.java
index 53cdc91f66..6eec570b0e 100644
--- a/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/MutateRowRequest.java
+++ b/proto-google-cloud-bigtable-v2/src/main/java/com/google/bigtable/v2/MutateRowRequest.java
@@ -33,6 +33,7 @@ public final class MutateRowRequest extends com.google.protobuf.GeneratedMessage
// @@protoc_insertion_point(message_implements:google.bigtable.v2.MutateRowRequest)
MutateRowRequestOrBuilder {
private static final long serialVersionUID = 0L;
+
// Use MutateRowRequest.newBuilder() to construct.
private MutateRowRequest(com.google.protobuf.GeneratedMessageV3.Builder> builder) {
super(builder);
@@ -71,6 +72,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
@SuppressWarnings("serial")
private volatile java.lang.Object tableName_ = "";
+
/**
*
*
@@ -100,6 +102,7 @@ public java.lang.String getTableName() {
return s;
}
}
+
/**
*
*
@@ -134,6 +137,7 @@ public com.google.protobuf.ByteString getTableNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object authorizedViewName_ = "";
+
/**
*
*
@@ -163,6 +167,7 @@ public java.lang.String getAuthorizedViewName() {
return s;
}
}
+
/**
*
*
@@ -197,6 +202,7 @@ public com.google.protobuf.ByteString getAuthorizedViewNameBytes() {
@SuppressWarnings("serial")
private volatile java.lang.Object appProfileId_ = "";
+
/**
*
*
@@ -221,6 +227,7 @@ public java.lang.String getAppProfileId() {
return s;
}
}
+
/**
*
*
@@ -248,6 +255,7 @@ public com.google.protobuf.ByteString getAppProfileIdBytes() {
public static final int ROW_KEY_FIELD_NUMBER = 2;
private com.google.protobuf.ByteString rowKey_ = com.google.protobuf.ByteString.EMPTY;
+
/**
*
*
@@ -268,6 +276,7 @@ public com.google.protobuf.ByteString getRowKey() {
@SuppressWarnings("serial")
private java.util.List