Date: Fri, 6 Mar 2020 12:28:45 -0800
Subject: [PATCH 13/16] feat: re-generated to pick up changes in the API or
client library generator. (#95)
---
.../bigquery/storage/v1/ReadSession.java | 27 +++++++------------
.../cloud/bigquery/storage/v1/stream.proto | 3 +--
.../bigquery/storage/v1beta1/ReadOptions.java | 27 +++++++------------
.../storage/v1beta1/read_options.proto | 3 +--
.../bigquery/storage/v1beta2/ReadSession.java | 27 +++++++------------
.../bigquery/storage/v1beta2/stream.proto | 3 +--
synth.metadata | 24 ++++++++---------
7 files changed, 42 insertions(+), 72 deletions(-)
diff --git a/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadSession.java b/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadSession.java
index 2cacbb33c2..8c2d3be0e0 100644
--- a/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadSession.java
+++ b/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadSession.java
@@ -1067,8 +1067,7 @@ public interface TableReadOptionsOrBuilder
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1086,8 +1085,7 @@ public interface TableReadOptionsOrBuilder
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1289,8 +1287,7 @@ public com.google.protobuf.ByteString getSelectedFieldsBytes(int index) {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1318,8 +1315,7 @@ public java.lang.String getRowRestriction() {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1910,8 +1906,7 @@ public Builder addSelectedFieldsBytes(com.google.protobuf.ByteString value) {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1939,8 +1934,7 @@ public java.lang.String getRowRestriction() {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1968,8 +1962,7 @@ public com.google.protobuf.ByteString getRowRestrictionBytes() {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1996,8 +1989,7 @@ public Builder setRowRestriction(java.lang.String value) {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -2020,8 +2012,7 @@ public Builder clearRowRestriction() {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
diff --git a/proto-google-cloud-bigquerystorage-v1/src/main/proto/google/cloud/bigquery/storage/v1/stream.proto b/proto-google-cloud-bigquerystorage-v1/src/main/proto/google/cloud/bigquery/storage/v1/stream.proto
index 3ef32c135b..19d4231da5 100644
--- a/proto-google-cloud-bigquerystorage-v1/src/main/proto/google/cloud/bigquery/storage/v1/stream.proto
+++ b/proto-google-cloud-bigquerystorage-v1/src/main/proto/google/cloud/bigquery/storage/v1/stream.proto
@@ -65,8 +65,7 @@ message ReadSession {
repeated string selected_fields = 1;
// SQL text filtering statement, similar to a WHERE clause in a query.
- // Currently, only a single predicate that is a comparison between a column
- // and a constant value is supported. Aggregates are not supported.
+ // Aggregates are not supported.
//
// Examples: "int_field > 5"
// "date_field = CAST('2014-9-27' as DATE)"
diff --git a/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java b/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java
index 49feb72799..936688db0e 100644
--- a/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java
+++ b/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java
@@ -100,8 +100,7 @@ public interface TableReadOptionsOrBuilder
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -119,8 +118,7 @@ public interface TableReadOptionsOrBuilder
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -322,8 +320,7 @@ public com.google.protobuf.ByteString getSelectedFieldsBytes(int index) {
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -351,8 +348,7 @@ public java.lang.String getRowRestriction() {
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -947,8 +943,7 @@ public Builder addSelectedFieldsBytes(com.google.protobuf.ByteString value) {
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -976,8 +971,7 @@ public java.lang.String getRowRestriction() {
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1005,8 +999,7 @@ public com.google.protobuf.ByteString getRowRestrictionBytes() {
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1033,8 +1026,7 @@ public Builder setRowRestriction(java.lang.String value) {
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1057,8 +1049,7 @@ public Builder clearRowRestriction() {
*
*
* Optional. SQL text filtering statement, similar to a WHERE clause in
- * a query. Currently, only a single predicate that is a comparison between
- * a column and a constant value is supported. Aggregates are not supported.
+ * a query. Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
diff --git a/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/read_options.proto b/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/read_options.proto
index 9591deba7f..8ed9b73f6c 100644
--- a/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/read_options.proto
+++ b/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/read_options.proto
@@ -29,8 +29,7 @@ message TableReadOptions {
repeated string selected_fields = 1;
// Optional. SQL text filtering statement, similar to a WHERE clause in
- // a query. Currently, only a single predicate that is a comparison between
- // a column and a constant value is supported. Aggregates are not supported.
+ // a query. Aggregates are not supported.
//
// Examples: "int_field > 5"
// "date_field = CAST('2014-9-27' as DATE)"
diff --git a/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadSession.java b/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadSession.java
index 2ab53778af..f49b8b1cb8 100644
--- a/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadSession.java
+++ b/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadSession.java
@@ -1076,8 +1076,7 @@ public interface TableReadOptionsOrBuilder
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1095,8 +1094,7 @@ public interface TableReadOptionsOrBuilder
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1360,8 +1358,7 @@ public com.google.protobuf.ByteString getSelectedFieldsBytes(int index) {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -1389,8 +1386,7 @@ public java.lang.String getRowRestriction() {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -2070,8 +2066,7 @@ public Builder addSelectedFieldsBytes(com.google.protobuf.ByteString value) {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -2099,8 +2094,7 @@ public java.lang.String getRowRestriction() {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -2128,8 +2122,7 @@ public com.google.protobuf.ByteString getRowRestrictionBytes() {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -2156,8 +2149,7 @@ public Builder setRowRestriction(java.lang.String value) {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
@@ -2180,8 +2172,7 @@ public Builder clearRowRestriction() {
*
*
* SQL text filtering statement, similar to a WHERE clause in a query.
- * Currently, only a single predicate that is a comparison between a column
- * and a constant value is supported. Aggregates are not supported.
+ * Aggregates are not supported.
* Examples: "int_field > 5"
* "date_field = CAST('2014-9-27' as DATE)"
* "nullable_field is not NULL"
diff --git a/proto-google-cloud-bigquerystorage-v1beta2/src/main/proto/google/cloud/bigquery/storage/v1beta2/stream.proto b/proto-google-cloud-bigquerystorage-v1beta2/src/main/proto/google/cloud/bigquery/storage/v1beta2/stream.proto
index cad7f95a51..38d5de4783 100644
--- a/proto-google-cloud-bigquerystorage-v1beta2/src/main/proto/google/cloud/bigquery/storage/v1beta2/stream.proto
+++ b/proto-google-cloud-bigquerystorage-v1beta2/src/main/proto/google/cloud/bigquery/storage/v1beta2/stream.proto
@@ -67,8 +67,7 @@ message ReadSession {
repeated string selected_fields = 1;
// SQL text filtering statement, similar to a WHERE clause in a query.
- // Currently, only a single predicate that is a comparison between a column
- // and a constant value is supported. Aggregates are not supported.
+ // Aggregates are not supported.
//
// Examples: "int_field > 5"
// "date_field = CAST('2014-9-27' as DATE)"
diff --git a/synth.metadata b/synth.metadata
index dea5c93e39..3c3583b946 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -1,44 +1,44 @@
{
- "updateTime": "2020-02-28T20:00:40.728374Z",
+ "updateTime": "2020-03-04T22:43:32.617581Z",
"sources": [
{
"generator": {
"name": "artman",
- "version": "0.46.0",
- "dockerImage": "googleapis/artman@sha256:6248a21fba8f0d618c3b032669cec2618e684b66922bb70391fe08c41b05f6ee"
+ "version": "1.0.0",
+ "dockerImage": "googleapis/artman@sha256:f37f2464788cb551299209b4fcab4eb323533154488c2ef9ec0c75d7c2b4b482"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "e9e90a787703ec5d388902e2cb796aaed3a385b4",
- "internalRef": "297671458"
+ "sha": "a3f791827266f3496a6a5201d58adc4bb265c2a3",
+ "internalRef": "298942178"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "e9e90a787703ec5d388902e2cb796aaed3a385b4",
- "internalRef": "297671458"
+ "sha": "a3f791827266f3496a6a5201d58adc4bb265c2a3",
+ "internalRef": "298942178"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "e9e90a787703ec5d388902e2cb796aaed3a385b4",
- "internalRef": "297671458"
+ "sha": "a3f791827266f3496a6a5201d58adc4bb265c2a3",
+ "internalRef": "298942178"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "e9e90a787703ec5d388902e2cb796aaed3a385b4",
- "internalRef": "297671458",
- "log": "e9e90a787703ec5d388902e2cb796aaed3a385b4\nDialogflow weekly v2/v2beta1 library update:\n - adding get validation result\n - adding field mask override control for output audio config\nImportant updates are also posted at:\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 297671458\n\n1a2b05cc3541a5f7714529c665aecc3ea042c646\nAdding .yaml and .json config files.\n\nPiperOrigin-RevId: 297570622\n\ndfe1cf7be44dee31d78f78e485d8c95430981d6e\nPublish `QueryOptions` proto.\n\nIntroduced a `query_options` input in `ExecuteSqlRequest`.\n\nPiperOrigin-RevId: 297497710\n\ndafc905f71e5d46f500b41ed715aad585be062c3\npubsub: revert pull init_rpc_timeout & max_rpc_timeout back to 25 seconds and reset multiplier to 1.0\n\nPiperOrigin-RevId: 297486523\n\nf077632ba7fee588922d9e8717ee272039be126d\nfirestore: add update_transform\n\nPiperOrigin-RevId: 297405063\n\n0aba1900ffef672ec5f0da677cf590ee5686e13b\ncluster: use square brace for cross-reference\n\nPiperOrigin-RevId: 297204568\n\n5dac2da18f6325cbaed54603c43f0667ecd50247\nRestore retry params in gapic config because securitycenter has non-standard default retry params.\nRestore a few retry codes for some idempotent methods.\n\nPiperOrigin-RevId: 297196720\n\n1eb61455530252bba8b2c8d4bc9832960e5a56f6\npubsub: v1 replace IAM HTTP rules\n\nPiperOrigin-RevId: 297188590\n\n80b2d25f8d43d9d47024ff06ead7f7166548a7ba\nDialogflow weekly v2/v2beta1 library update:\n - updates to mega agent api\n - adding field mask override control for output audio config\nImportant updates are also posted at:\nhttps://cloud.google.com/dialogflow/docs/release-notes\n\nPiperOrigin-RevId: 297187629\n\n0b1876b35e98f560f9c9ca9797955f020238a092\nUse an older version of protoc-docs-plugin that is compatible with the specified gapic-generator and protobuf versions.\n\nprotoc-docs-plugin >=0.4.0 (see commit https://github.com/googleapis/protoc-docs-plugin/commit/979f03ede6678c487337f3d7e88bae58df5207af) is incompatible with protobuf 3.9.1.\n\nPiperOrigin-RevId: 296986742\n\n"
+ "sha": "a3f791827266f3496a6a5201d58adc4bb265c2a3",
+ "internalRef": "298942178",
+ "log": "a3f791827266f3496a6a5201d58adc4bb265c2a3\nchore: automl/v1 publish annotations and retry config\n\nPiperOrigin-RevId: 298942178\n\n01c681586d8d6dbd60155289b587aee678530bd9\nMark return_immediately in PullRequest deprecated.\n\nPiperOrigin-RevId: 298893281\n\nc9f5e9c4bfed54bbd09227e990e7bded5f90f31c\nRemove out of date documentation for predicate support on the Storage API\n\nPiperOrigin-RevId: 298883309\n\nfd5b3b8238d783b04692a113ffe07c0363f5de0f\ngenerate webrisk v1 proto\n\nPiperOrigin-RevId: 298847934\n\n541b1ded4abadcc38e8178680b0677f65594ea6f\nUpdate cloud asset api v1p4beta1.\n\nPiperOrigin-RevId: 298686266\n\nc0d171acecb4f5b0bfd2c4ca34fc54716574e300\n Updated to include the Notification v1 API.\n\nPiperOrigin-RevId: 298652775\n\n2346a9186c0bff2c9cc439f2459d558068637e05\nAdd Service Directory v1beta1 protos and configs\n\nPiperOrigin-RevId: 298625638\n\na78ed801b82a5c6d9c5368e24b1412212e541bb7\nPublishing v3 protos and configs.\n\nPiperOrigin-RevId: 298607357\n\n4a180bfff8a21645b3a935c2756e8d6ab18a74e0\nautoml/v1beta1 publish proto updates\n\nPiperOrigin-RevId: 298484782\n\n6de6e938b7df1cd62396563a067334abeedb9676\nchore: use the latest gapic-generator and protoc-java-resource-name-plugin in Bazel workspace.\n\nPiperOrigin-RevId: 298474513\n\n244ab2b83a82076a1fa7be63b7e0671af73f5c02\nAdds service config definition for bigqueryreservation v1\n\nPiperOrigin-RevId: 298455048\n\n83c6f84035ee0f80eaa44d8b688a010461cc4080\nUpdate google/api/auth.proto to make AuthProvider to have JwtLocation\n\nPiperOrigin-RevId: 297918498\n\n"
}
},
{
From 11b44186007dd7eb15f3daf5d559c705003e8709 Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Fri, 6 Mar 2020 21:36:22 +0100
Subject: [PATCH 14/16] deps: update dependency
com.google.cloud:google-cloud-bigquery to v1.108.1 (#96)
---
google-cloud-bigquerystorage/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/google-cloud-bigquerystorage/pom.xml b/google-cloud-bigquerystorage/pom.xml
index bbdac19203..8aa23cb0c7 100644
--- a/google-cloud-bigquerystorage/pom.xml
+++ b/google-cloud-bigquerystorage/pom.xml
@@ -109,7 +109,7 @@
com.google.cloud
google-cloud-bigquery
- 1.108.0
+ 1.108.1
com.google.code.findbugs
From c1f1854bbe4362449b0afd427e88ab9414cd8fac Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 9 Mar 2020 09:33:35 -0700
Subject: [PATCH 15/16] feat: re-generated to pick up changes in the API or
client library generator. (#97)
---
.../bigquery/storage/v1/ReadRowsResponse.java | 5 ++++-
.../bigquery/storage/v1/ReadSession.java | 8 ++++++--
.../bigquery/storage/v1alpha2/Storage.java | 13 +++++++++---
.../bigquery/storage/v1beta1/ReadOptions.java | 3 ++-
.../bigquery/storage/v1beta1/Storage.java | 10 ++++++++--
.../storage/v1beta2/ReadRowsResponse.java | 5 ++++-
.../bigquery/storage/v1beta2/ReadSession.java | 8 ++++++--
synth.metadata | 20 +++++++++----------
8 files changed, 50 insertions(+), 22 deletions(-)
diff --git a/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadRowsResponse.java b/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadRowsResponse.java
index 48b5347a06..54ca656b3c 100644
--- a/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadRowsResponse.java
+++ b/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadRowsResponse.java
@@ -178,7 +178,10 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int rowsCase_ = 0;
private java.lang.Object rows_;
- public enum RowsCase implements com.google.protobuf.Internal.EnumLite {
+ public enum RowsCase
+ implements
+ com.google.protobuf.Internal.EnumLite,
+ com.google.protobuf.AbstractMessage.InternalOneOfEnum {
AVRO_ROWS(3),
ARROW_RECORD_BATCH(4),
ROWS_NOT_SET(0);
diff --git a/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadSession.java b/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadSession.java
index 8c2d3be0e0..cf7b96def8 100644
--- a/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadSession.java
+++ b/proto-google-cloud-bigquerystorage-v1/src/main/java/com/google/cloud/bigquery/storage/v1/ReadSession.java
@@ -1779,7 +1779,8 @@ public java.lang.String getSelectedFields(int index) {
*
* repeated string selected_fields = 1;
*
- * @param value The bytes of the selectedFields to add.
+ * @param index The index of the value to return.
+ * @return The bytes of the selectedFields at the given index.
*/
public com.google.protobuf.ByteString getSelectedFieldsBytes(int index) {
return selectedFields_.getByteString(index);
@@ -2094,7 +2095,10 @@ public com.google.protobuf.Parser getParserForType() {
private int schemaCase_ = 0;
private java.lang.Object schema_;
- public enum SchemaCase implements com.google.protobuf.Internal.EnumLite {
+ public enum SchemaCase
+ implements
+ com.google.protobuf.Internal.EnumLite,
+ com.google.protobuf.AbstractMessage.InternalOneOfEnum {
AVRO_SCHEMA(4),
ARROW_SCHEMA(5),
SCHEMA_NOT_SET(0);
diff --git a/proto-google-cloud-bigquerystorage-v1alpha2/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/Storage.java b/proto-google-cloud-bigquerystorage-v1alpha2/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/Storage.java
index e782eecd58..964a819e6a 100644
--- a/proto-google-cloud-bigquerystorage-v1alpha2/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/Storage.java
+++ b/proto-google-cloud-bigquerystorage-v1alpha2/src/main/java/com/google/cloud/bigquery/storage/v1alpha2/Storage.java
@@ -2432,7 +2432,10 @@ public com.google.protobuf.Parser getParserForType() {
private int rowsCase_ = 0;
private java.lang.Object rows_;
- public enum RowsCase implements com.google.protobuf.Internal.EnumLite {
+ public enum RowsCase
+ implements
+ com.google.protobuf.Internal.EnumLite,
+ com.google.protobuf.AbstractMessage.InternalOneOfEnum {
PROTO_ROWS(4),
ROWS_NOT_SET(0);
private final int value;
@@ -3775,7 +3778,10 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int responseCase_ = 0;
private java.lang.Object response_;
- public enum ResponseCase implements com.google.protobuf.Internal.EnumLite {
+ public enum ResponseCase
+ implements
+ com.google.protobuf.Internal.EnumLite,
+ com.google.protobuf.AbstractMessage.InternalOneOfEnum {
OFFSET(1),
ERROR(2),
RESPONSE_NOT_SET(0);
@@ -6149,7 +6155,8 @@ public java.lang.String getWriteStreams(int index) {
*
* repeated string write_streams = 2 [(.google.api.field_behavior) = REQUIRED];
*
- * @param value The bytes of the writeStreams to add.
+ * @param index The index of the value to return.
+ * @return The bytes of the writeStreams at the given index.
*/
public com.google.protobuf.ByteString getWriteStreamsBytes(int index) {
return writeStreams_.getByteString(index);
diff --git a/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java b/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java
index 936688db0e..affbaf60d8 100644
--- a/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java
+++ b/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java
@@ -816,7 +816,8 @@ public java.lang.String getSelectedFields(int index) {
*
* repeated string selected_fields = 1;
*
- * @param value The bytes of the selectedFields to add.
+ * @param index The index of the value to return.
+ * @return The bytes of the selectedFields at the given index.
*/
public com.google.protobuf.ByteString getSelectedFieldsBytes(int index) {
return selectedFields_.getByteString(index);
diff --git a/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/Storage.java b/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/Storage.java
index 84f2c99e88..d08601548c 100644
--- a/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/Storage.java
+++ b/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/Storage.java
@@ -2386,7 +2386,10 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int schemaCase_ = 0;
private java.lang.Object schema_;
- public enum SchemaCase implements com.google.protobuf.Internal.EnumLite {
+ public enum SchemaCase
+ implements
+ com.google.protobuf.Internal.EnumLite,
+ com.google.protobuf.AbstractMessage.InternalOneOfEnum {
AVRO_SCHEMA(5),
ARROW_SCHEMA(6),
SCHEMA_NOT_SET(0);
@@ -10852,7 +10855,10 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int rowsCase_ = 0;
private java.lang.Object rows_;
- public enum RowsCase implements com.google.protobuf.Internal.EnumLite {
+ public enum RowsCase
+ implements
+ com.google.protobuf.Internal.EnumLite,
+ com.google.protobuf.AbstractMessage.InternalOneOfEnum {
AVRO_ROWS(3),
ARROW_RECORD_BATCH(4),
ROWS_NOT_SET(0);
diff --git a/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadRowsResponse.java b/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadRowsResponse.java
index cf53abc109..38162a98d7 100644
--- a/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadRowsResponse.java
+++ b/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadRowsResponse.java
@@ -183,7 +183,10 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
private int rowsCase_ = 0;
private java.lang.Object rows_;
- public enum RowsCase implements com.google.protobuf.Internal.EnumLite {
+ public enum RowsCase
+ implements
+ com.google.protobuf.Internal.EnumLite,
+ com.google.protobuf.AbstractMessage.InternalOneOfEnum {
AVRO_ROWS(3),
ARROW_RECORD_BATCH(4),
ROWS_NOT_SET(0);
diff --git a/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadSession.java b/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadSession.java
index f49b8b1cb8..10bc2268e8 100644
--- a/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadSession.java
+++ b/proto-google-cloud-bigquerystorage-v1beta2/src/main/java/com/google/cloud/bigquery/storage/v1beta2/ReadSession.java
@@ -1939,7 +1939,8 @@ public java.lang.String getSelectedFields(int index) {
*
* repeated string selected_fields = 1;
*
- * @param value The bytes of the selectedFields to add.
+ * @param index The index of the value to return.
+ * @return The bytes of the selectedFields at the given index.
*/
public com.google.protobuf.ByteString getSelectedFieldsBytes(int index) {
return selectedFields_.getByteString(index);
@@ -2469,7 +2470,10 @@ public com.google.protobuf.Parser getParserForType() {
private int schemaCase_ = 0;
private java.lang.Object schema_;
- public enum SchemaCase implements com.google.protobuf.Internal.EnumLite {
+ public enum SchemaCase
+ implements
+ com.google.protobuf.Internal.EnumLite,
+ com.google.protobuf.AbstractMessage.InternalOneOfEnum {
AVRO_SCHEMA(4),
ARROW_SCHEMA(5),
SCHEMA_NOT_SET(0);
diff --git a/synth.metadata b/synth.metadata
index 3c3583b946..42d7013702 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -1,5 +1,5 @@
{
- "updateTime": "2020-03-04T22:43:32.617581Z",
+ "updateTime": "2020-03-06T22:43:03.741419Z",
"sources": [
{
"generator": {
@@ -12,33 +12,33 @@
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "a3f791827266f3496a6a5201d58adc4bb265c2a3",
- "internalRef": "298942178"
+ "sha": "91e1fb5ef9829c0c7a64bfa5bde330e6ed594378",
+ "internalRef": "299404145"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "a3f791827266f3496a6a5201d58adc4bb265c2a3",
- "internalRef": "298942178"
+ "sha": "91e1fb5ef9829c0c7a64bfa5bde330e6ed594378",
+ "internalRef": "299404145"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "a3f791827266f3496a6a5201d58adc4bb265c2a3",
- "internalRef": "298942178"
+ "sha": "91e1fb5ef9829c0c7a64bfa5bde330e6ed594378",
+ "internalRef": "299404145"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
- "sha": "a3f791827266f3496a6a5201d58adc4bb265c2a3",
- "internalRef": "298942178",
- "log": "a3f791827266f3496a6a5201d58adc4bb265c2a3\nchore: automl/v1 publish annotations and retry config\n\nPiperOrigin-RevId: 298942178\n\n01c681586d8d6dbd60155289b587aee678530bd9\nMark return_immediately in PullRequest deprecated.\n\nPiperOrigin-RevId: 298893281\n\nc9f5e9c4bfed54bbd09227e990e7bded5f90f31c\nRemove out of date documentation for predicate support on the Storage API\n\nPiperOrigin-RevId: 298883309\n\nfd5b3b8238d783b04692a113ffe07c0363f5de0f\ngenerate webrisk v1 proto\n\nPiperOrigin-RevId: 298847934\n\n541b1ded4abadcc38e8178680b0677f65594ea6f\nUpdate cloud asset api v1p4beta1.\n\nPiperOrigin-RevId: 298686266\n\nc0d171acecb4f5b0bfd2c4ca34fc54716574e300\n Updated to include the Notification v1 API.\n\nPiperOrigin-RevId: 298652775\n\n2346a9186c0bff2c9cc439f2459d558068637e05\nAdd Service Directory v1beta1 protos and configs\n\nPiperOrigin-RevId: 298625638\n\na78ed801b82a5c6d9c5368e24b1412212e541bb7\nPublishing v3 protos and configs.\n\nPiperOrigin-RevId: 298607357\n\n4a180bfff8a21645b3a935c2756e8d6ab18a74e0\nautoml/v1beta1 publish proto updates\n\nPiperOrigin-RevId: 298484782\n\n6de6e938b7df1cd62396563a067334abeedb9676\nchore: use the latest gapic-generator and protoc-java-resource-name-plugin in Bazel workspace.\n\nPiperOrigin-RevId: 298474513\n\n244ab2b83a82076a1fa7be63b7e0671af73f5c02\nAdds service config definition for bigqueryreservation v1\n\nPiperOrigin-RevId: 298455048\n\n83c6f84035ee0f80eaa44d8b688a010461cc4080\nUpdate google/api/auth.proto to make AuthProvider to have JwtLocation\n\nPiperOrigin-RevId: 297918498\n\n"
+ "sha": "91e1fb5ef9829c0c7a64bfa5bde330e6ed594378",
+ "internalRef": "299404145",
+ "log": "91e1fb5ef9829c0c7a64bfa5bde330e6ed594378\nchore: update protobuf (protoc) version to 3.11.2\n\nPiperOrigin-RevId: 299404145\n\n30e36b4bee6749c4799f4fc1a51cc8f058ba167d\nUpdate cloud asset api v1p4beta1.\n\nPiperOrigin-RevId: 299399890\n\nffbb493674099f265693872ae250711b2238090c\nfeat: cloudbuild/v1 add new fields and annotate OUTPUT_OUT fields.\n\nPiperOrigin-RevId: 299397780\n\nbc973a15818e00c19e121959832676e9b7607456\nbazel: Fix broken common dependency\n\nPiperOrigin-RevId: 299397431\n\n71094a343e3b962e744aa49eb9338219537474e4\nchore: bigtable/admin/v2 publish retry config\n\nPiperOrigin-RevId: 299391875\n\n8f488efd7bda33885cb674ddd023b3678c40bd82\nfeat: Migrate logging to GAPIC v2; release new features.\n\nIMPORTANT: This is a breaking change for client libraries\nin all languages.\n\nCommitter: @lukesneeringer, @jskeet\nPiperOrigin-RevId: 299370279\n\n007605bf9ad3a1fd775014ebefbf7f1e6b31ee71\nUpdate API for bigqueryreservation v1beta1.\n- Adds flex capacity commitment plan to CapacityCommitment.\n- Adds methods for getting and updating BiReservations.\n- Adds methods for updating/splitting/merging CapacityCommitments.\n\nPiperOrigin-RevId: 299368059\n\nf0b581b5bdf803e45201ecdb3688b60e381628a8\nfix: recommendationengine/v1beta1 update some comments\n\nPiperOrigin-RevId: 299181282\n\n10e9a0a833dc85ff8f05b2c67ebe5ac785fe04ff\nbuild: add generated BUILD file for Routes Preferred API\n\nPiperOrigin-RevId: 299164808\n\n86738c956a8238d7c77f729be78b0ed887a6c913\npublish v1p1beta1: update with absolute address in comments\n\nPiperOrigin-RevId: 299152383\n\n73d9f2ad4591de45c2e1f352bc99d70cbd2a6d95\npublish v1: update with absolute address in comments\n\nPiperOrigin-RevId: 299147194\n\nd2158f24cb77b0b0ccfe68af784c6a628705e3c6\npublish v1beta2: update with absolute address in comments\n\nPiperOrigin-RevId: 299147086\n\n7fca61292c11b4cd5b352cee1a50bf88819dd63b\npublish v1p2beta1: update with absolute address in comments\n\nPiperOrigin-RevId: 299146903\n\n583b7321624736e2c490e328f4b1957335779295\npublish v1p3beta1: update with absolute address in comments\n\nPiperOrigin-RevId: 299146674\n\n638253bf86d1ce1c314108a089b7351440c2f0bf\nfix: add java_multiple_files option for automl text_sentiment.proto\n\nPiperOrigin-RevId: 298971070\n\n373d655703bf914fb8b0b1cc4071d772bac0e0d1\nUpdate Recs AI Beta public bazel file\n\nPiperOrigin-RevId: 298961623\n\ndcc5d00fc8a8d8b56f16194d7c682027b2c66a3b\nfix: add java_multiple_files option for automl classification.proto\n\nPiperOrigin-RevId: 298953301\n\n"
}
},
{
From 5b73900e41a3c41a82b87c50d71683700aeee7bc Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Tue, 10 Mar 2020 14:01:52 -0400
Subject: [PATCH 16/16] chore: release 0.126.0 (#94)
* updated CHANGELOG.md [ci skip]
* updated README.md [ci skip]
* updated versions.txt [ci skip]
* updated google-cloud-bigquerystorage-bom/pom.xml [ci skip]
* updated grpc-google-cloud-bigquerystorage-v1/pom.xml [ci skip]
* updated grpc-google-cloud-bigquerystorage-v1alpha2/pom.xml [ci skip]
* updated grpc-google-cloud-bigquerystorage-v1beta1/pom.xml [ci skip]
* updated grpc-google-cloud-bigquerystorage-v1beta2/pom.xml [ci skip]
* updated proto-google-cloud-bigquerystorage-v1/pom.xml [ci skip]
* updated proto-google-cloud-bigquerystorage-v1alpha2/pom.xml [ci skip]
* updated proto-google-cloud-bigquerystorage-v1beta1/pom.xml [ci skip]
* updated proto-google-cloud-bigquerystorage-v1beta2/pom.xml [ci skip]
* updated pom.xml [ci skip]
* updated google-cloud-bigquerystorage/pom.xml [ci skip]
Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
---
CHANGELOG.md | 20 +++++++++++++++++++
README.md | 6 +++---
google-cloud-bigquerystorage-bom/pom.xml | 20 +++++++++----------
google-cloud-bigquerystorage/pom.xml | 4 ++--
grpc-google-cloud-bigquerystorage-v1/pom.xml | 4 ++--
.../pom.xml | 4 ++--
.../pom.xml | 4 ++--
.../pom.xml | 4 ++--
pom.xml | 20 +++++++++----------
proto-google-cloud-bigquerystorage-v1/pom.xml | 4 ++--
.../pom.xml | 4 ++--
.../pom.xml | 4 ++--
.../pom.xml | 4 ++--
versions.txt | 18 ++++++++---------
14 files changed, 70 insertions(+), 50 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3fdd7f218f..2e14ceec55 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,25 @@
# Changelog
+## [0.126.0](https://www.github.com/googleapis/java-bigquerystorage/compare/v0.125.0...v0.126.0) (2020-03-09)
+
+
+### Features
+
+* re-generated to pick up changes in the API or client library generator. ([#85](https://www.github.com/googleapis/java-bigquerystorage/issues/85)) ([e3f4087](https://www.github.com/googleapis/java-bigquerystorage/commit/e3f40879dfda7c2dac1cf16b23605912174e2601))
+* re-generated to pick up changes in the API or client library generator. ([#95](https://www.github.com/googleapis/java-bigquerystorage/issues/95)) ([7e760a4](https://www.github.com/googleapis/java-bigquerystorage/commit/7e760a4d2782ec1674b0d3da72ba2eeed4d101a1))
+* re-generated to pick up changes in the API or client library generator. ([#97](https://www.github.com/googleapis/java-bigquerystorage/issues/97)) ([c1f1854](https://www.github.com/googleapis/java-bigquerystorage/commit/c1f1854bbe4362449b0afd427e88ab9414cd8fac))
+
+
+### Dependencies
+
+* update core dependencies ([#89](https://www.github.com/googleapis/java-bigquerystorage/issues/89)) ([bdf1385](https://www.github.com/googleapis/java-bigquerystorage/commit/bdf13853a8abd791c4a376284a5afeed1d2afbd8))
+* update dependency com.fasterxml.jackson.core:jackson-core to v2.10.3 ([#92](https://www.github.com/googleapis/java-bigquerystorage/issues/92)) ([551d024](https://www.github.com/googleapis/java-bigquerystorage/commit/551d02482c8694d32e465acccbf8de6ae515d3c8))
+* update dependency com.google.cloud:google-cloud-bigquery to v1.107.0 ([#82](https://www.github.com/googleapis/java-bigquerystorage/issues/82)) ([96e55ee](https://www.github.com/googleapis/java-bigquerystorage/commit/96e55ee322a9fcb0b05f3a942eefc48e5f1233d0))
+* update dependency com.google.cloud:google-cloud-bigquery to v1.108.0 ([#91](https://www.github.com/googleapis/java-bigquerystorage/issues/91)) ([aa7b8b8](https://www.github.com/googleapis/java-bigquerystorage/commit/aa7b8b84236261b1c88367851cbffe3126d81a50))
+* update dependency com.google.cloud:google-cloud-bigquery to v1.108.1 ([#96](https://www.github.com/googleapis/java-bigquerystorage/issues/96)) ([11b4418](https://www.github.com/googleapis/java-bigquerystorage/commit/11b44186007dd7eb15f3daf5d559c705003e8709))
+* update dependency com.google.cloud:google-cloud-core to v1.93.1 ([#93](https://www.github.com/googleapis/java-bigquerystorage/issues/93)) ([aa10c59](https://www.github.com/googleapis/java-bigquerystorage/commit/aa10c59ea155eec8de8433dbb8ef924327bf60a2))
+* update dependency io.grpc:grpc-bom to v1.27.2 ([#88](https://www.github.com/googleapis/java-bigquerystorage/issues/88)) ([cdba693](https://www.github.com/googleapis/java-bigquerystorage/commit/cdba693add40b7571a43b4b0c5ca8a772e0333c5))
+
## [0.125.0](https://www.github.com/googleapis/java-bigquerystorage/compare/v0.124.0...v0.125.0) (2020-02-18)
diff --git a/README.md b/README.md
index f29e8a7d1e..55fcd46630 100644
--- a/README.md
+++ b/README.md
@@ -42,17 +42,17 @@ If you are using Maven without BOM, add this to your dependencies:
com.google.cloud
google-cloud-bigquerystorage
- 0.125.0-beta
+ 0.126.0-beta
```
If you are using Gradle, add this to your dependencies
```Groovy
-compile 'com.google.cloud:google-cloud-bigquerystorage:0.125.0-beta'
+compile 'com.google.cloud:google-cloud-bigquerystorage:0.126.0-beta'
```
If you are using SBT, add this to your dependencies
```Scala
-libraryDependencies += "com.google.cloud" % "google-cloud-bigquerystorage" % "0.125.0-beta"
+libraryDependencies += "com.google.cloud" % "google-cloud-bigquerystorage" % "0.126.0-beta"
```
[//]: # ({x-version-update-end})
diff --git a/google-cloud-bigquerystorage-bom/pom.xml b/google-cloud-bigquerystorage-bom/pom.xml
index 975f5562e3..49253485a6 100644
--- a/google-cloud-bigquerystorage-bom/pom.xml
+++ b/google-cloud-bigquerystorage-bom/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-bigquerystorage-bom
- 0.125.1-beta-SNAPSHOT
+ 0.126.0-beta
pom
com.google.cloud
@@ -63,48 +63,48 @@
com.google.api.grpc
proto-google-cloud-bigquerystorage-v1alpha2
- 0.90.1-SNAPSHOT
+ 0.91.0
com.google.api.grpc
proto-google-cloud-bigquerystorage-v1beta1
- 0.90.1-SNAPSHOT
+ 0.91.0
com.google.api.grpc
proto-google-cloud-bigquerystorage-v1beta2
- 0.90.1-SNAPSHOT
+ 0.91.0
com.google.api.grpc
proto-google-cloud-bigquerystorage-v1
- 0.90.1-SNAPSHOT
+ 0.91.0
com.google.api.grpc
grpc-google-cloud-bigquerystorage-v1alpha2
- 0.90.1-SNAPSHOT
+ 0.91.0
com.google.api.grpc
grpc-google-cloud-bigquerystorage-v1beta1
- 0.90.1-SNAPSHOT
+ 0.91.0
com.google.api.grpc
grpc-google-cloud-bigquerystorage-v1beta2
- 0.90.1-SNAPSHOT
+ 0.91.0
com.google.api.grpc
grpc-google-cloud-bigquerystorage-v1
- 0.90.1-SNAPSHOT
+ 0.91.0
com.google.cloud
google-cloud-bigquerystorage
- 0.125.1-beta-SNAPSHOT
+ 0.126.0-beta