From 205ca30168e42532eb6f9b6e872714ca0954d4e7 Mon Sep 17 00:00:00 2001 From: yoshi-automation Date: Thu, 28 Feb 2019 00:34:37 -0800 Subject: [PATCH] Regenerate bigquerystorage client --- .../bigquery/storage/v1beta1/ReadOptions.java | 99 ++++++++++++------- .../bigquery/storage/v1beta1/Storage.java | 90 ++++++++--------- .../cloud/bigquery/storage/v1beta1/avro.proto | 2 +- .../storage/v1beta1/read_options.proto | 13 ++- .../bigquery/storage/v1beta1/storage.proto | 32 +++--- .../storage/v1beta1/table_reference.proto | 2 +- .../v1beta1/BaseBigQueryStorageClient.java | 4 +- .../synth.metadata | 10 +- 8 files changed, 141 insertions(+), 111 deletions(-) diff --git a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java index 23342015c909..3a5e7be1b1fc 100644 --- a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java +++ b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/ReadOptions.java @@ -75,10 +75,13 @@ public interface TableReadOptionsOrBuilder * *
      * Optional. SQL text filtering statement, similar to a WHERE clause in
-     * a query. Currently, we support combinations of predicates that are
-     * a comparison between a column and a constant value in SQL statement.
-     * Aggregates are not supported.
-     * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+     * a query. Currently, only a single predicate that is a comparison between
+     * a column and a constant value is supported. Aggregates are not supported.
+     * Examples: "int_field > 5"
+     *           "date_field = CAST('2014-9-27' as DATE)"
+     *           "nullable_field is not NULL"
+     *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+     *           "numeric_field BETWEEN 1.0 AND 5.0"
      * 
* * string row_restriction = 2; @@ -89,10 +92,13 @@ public interface TableReadOptionsOrBuilder * *
      * Optional. SQL text filtering statement, similar to a WHERE clause in
-     * a query. Currently, we support combinations of predicates that are
-     * a comparison between a column and a constant value in SQL statement.
-     * Aggregates are not supported.
-     * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+     * a query. Currently, only a single predicate that is a comparison between
+     * a column and a constant value is supported. Aggregates are not supported.
+     * Examples: "int_field > 5"
+     *           "date_field = CAST('2014-9-27' as DATE)"
+     *           "nullable_field is not NULL"
+     *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+     *           "numeric_field BETWEEN 1.0 AND 5.0"
      * 
* * string row_restriction = 2; @@ -272,10 +278,13 @@ public com.google.protobuf.ByteString getSelectedFieldsBytes(int index) { * *
      * Optional. SQL text filtering statement, similar to a WHERE clause in
-     * a query. Currently, we support combinations of predicates that are
-     * a comparison between a column and a constant value in SQL statement.
-     * Aggregates are not supported.
-     * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+     * a query. Currently, only a single predicate that is a comparison between
+     * a column and a constant value is supported. Aggregates are not supported.
+     * Examples: "int_field > 5"
+     *           "date_field = CAST('2014-9-27' as DATE)"
+     *           "nullable_field is not NULL"
+     *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+     *           "numeric_field BETWEEN 1.0 AND 5.0"
      * 
* * string row_restriction = 2; @@ -296,10 +305,13 @@ public java.lang.String getRowRestriction() { * *
      * Optional. SQL text filtering statement, similar to a WHERE clause in
-     * a query. Currently, we support combinations of predicates that are
-     * a comparison between a column and a constant value in SQL statement.
-     * Aggregates are not supported.
-     * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+     * a query. Currently, only a single predicate that is a comparison between
+     * a column and a constant value is supported. Aggregates are not supported.
+     * Examples: "int_field > 5"
+     *           "date_field = CAST('2014-9-27' as DATE)"
+     *           "nullable_field is not NULL"
+     *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+     *           "numeric_field BETWEEN 1.0 AND 5.0"
      * 
* * string row_restriction = 2; @@ -866,10 +878,13 @@ public Builder addSelectedFieldsBytes(com.google.protobuf.ByteString value) { * *
        * Optional. SQL text filtering statement, similar to a WHERE clause in
-       * a query. Currently, we support combinations of predicates that are
-       * a comparison between a column and a constant value in SQL statement.
-       * Aggregates are not supported.
-       * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+       * a query. Currently, only a single predicate that is a comparison between
+       * a column and a constant value is supported. Aggregates are not supported.
+       * Examples: "int_field > 5"
+       *           "date_field = CAST('2014-9-27' as DATE)"
+       *           "nullable_field is not NULL"
+       *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+       *           "numeric_field BETWEEN 1.0 AND 5.0"
        * 
* * string row_restriction = 2; @@ -890,10 +905,13 @@ public java.lang.String getRowRestriction() { * *
        * Optional. SQL text filtering statement, similar to a WHERE clause in
-       * a query. Currently, we support combinations of predicates that are
-       * a comparison between a column and a constant value in SQL statement.
-       * Aggregates are not supported.
-       * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+       * a query. Currently, only a single predicate that is a comparison between
+       * a column and a constant value is supported. Aggregates are not supported.
+       * Examples: "int_field > 5"
+       *           "date_field = CAST('2014-9-27' as DATE)"
+       *           "nullable_field is not NULL"
+       *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+       *           "numeric_field BETWEEN 1.0 AND 5.0"
        * 
* * string row_restriction = 2; @@ -914,10 +932,13 @@ public com.google.protobuf.ByteString getRowRestrictionBytes() { * *
        * Optional. SQL text filtering statement, similar to a WHERE clause in
-       * a query. Currently, we support combinations of predicates that are
-       * a comparison between a column and a constant value in SQL statement.
-       * Aggregates are not supported.
-       * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+       * a query. Currently, only a single predicate that is a comparison between
+       * a column and a constant value is supported. Aggregates are not supported.
+       * Examples: "int_field > 5"
+       *           "date_field = CAST('2014-9-27' as DATE)"
+       *           "nullable_field is not NULL"
+       *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+       *           "numeric_field BETWEEN 1.0 AND 5.0"
        * 
* * string row_restriction = 2; @@ -936,10 +957,13 @@ public Builder setRowRestriction(java.lang.String value) { * *
        * Optional. SQL text filtering statement, similar to a WHERE clause in
-       * a query. Currently, we support combinations of predicates that are
-       * a comparison between a column and a constant value in SQL statement.
-       * Aggregates are not supported.
-       * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+       * a query. Currently, only a single predicate that is a comparison between
+       * a column and a constant value is supported. Aggregates are not supported.
+       * Examples: "int_field > 5"
+       *           "date_field = CAST('2014-9-27' as DATE)"
+       *           "nullable_field is not NULL"
+       *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+       *           "numeric_field BETWEEN 1.0 AND 5.0"
        * 
* * string row_restriction = 2; @@ -955,10 +979,13 @@ public Builder clearRowRestriction() { * *
        * Optional. SQL text filtering statement, similar to a WHERE clause in
-       * a query. Currently, we support combinations of predicates that are
-       * a comparison between a column and a constant value in SQL statement.
-       * Aggregates are not supported.
-       * Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')"
+       * a query. Currently, only a single predicate that is a comparison between
+       * a column and a constant value is supported. Aggregates are not supported.
+       * Examples: "int_field > 5"
+       *           "date_field = CAST('2014-9-27' as DATE)"
+       *           "nullable_field is not NULL"
+       *           "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))"
+       *           "numeric_field BETWEEN 1.0 AND 5.0"
        * 
* * string row_restriction = 2; diff --git a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/Storage.java b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/Storage.java index 8f2ce08b4eb5..b6937c20edb7 100644 --- a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/Storage.java +++ b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/java/com/google/cloud/bigquery/storage/v1beta1/Storage.java @@ -147,8 +147,8 @@ public interface StreamOrBuilder * * *
-     * Name of the stream. In the form
-     * `/projects/{project_id}/stream/{stream_id}`
+     * Name of the stream, in the form
+     * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
      * 
* * string name = 1; @@ -158,8 +158,8 @@ public interface StreamOrBuilder * * *
-     * Name of the stream. In the form
-     * `/projects/{project_id}/stream/{stream_id}`
+     * Name of the stream, in the form
+     * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
      * 
* * string name = 1; @@ -277,8 +277,8 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * * *
-     * Name of the stream. In the form
-     * `/projects/{project_id}/stream/{stream_id}`
+     * Name of the stream, in the form
+     * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
      * 
* * string name = 1; @@ -298,8 +298,8 @@ public java.lang.String getName() { * * *
-     * Name of the stream. In the form
-     * `/projects/{project_id}/stream/{stream_id}`
+     * Name of the stream, in the form
+     * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
      * 
* * string name = 1; @@ -675,8 +675,8 @@ public Builder mergeFrom( * * *
-       * Name of the stream. In the form
-       * `/projects/{project_id}/stream/{stream_id}`
+       * Name of the stream, in the form
+       * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
        * 
* * string name = 1; @@ -696,8 +696,8 @@ public java.lang.String getName() { * * *
-       * Name of the stream. In the form
-       * `/projects/{project_id}/stream/{stream_id}`
+       * Name of the stream, in the form
+       * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
        * 
* * string name = 1; @@ -717,8 +717,8 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-       * Name of the stream. In the form
-       * `/projects/{project_id}/stream/{stream_id}`
+       * Name of the stream, in the form
+       * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
        * 
* * string name = 1; @@ -736,8 +736,8 @@ public Builder setName(java.lang.String value) { * * *
-       * Name of the stream. In the form
-       * `/projects/{project_id}/stream/{stream_id}`
+       * Name of the stream, in the form
+       * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
        * 
* * string name = 1; @@ -752,8 +752,8 @@ public Builder clearName() { * * *
-       * Name of the stream. In the form
-       * `/projects/{project_id}/stream/{stream_id}`
+       * Name of the stream, in the form
+       * `projects/{project_id}/locations/{location}/streams/{stream_id}`.
        * 
* * string name = 1; @@ -1721,8 +1721,8 @@ public interface ReadSessionOrBuilder * * *
-     * Unique identifier for the session. In the form
-     * `projects/{project_id}/sessions/{session_id}`
+     * Unique identifier for the session, in the form
+     * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
      * 
* * string name = 1; @@ -1732,8 +1732,8 @@ public interface ReadSessionOrBuilder * * *
-     * Unique identifier for the session. In the form
-     * `projects/{project_id}/sessions/{session_id}`
+     * Unique identifier for the session, in the form
+     * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
      * 
* * string name = 1; @@ -2151,8 +2151,8 @@ public SchemaCase getSchemaCase() { * * *
-     * Unique identifier for the session. In the form
-     * `projects/{project_id}/sessions/{session_id}`
+     * Unique identifier for the session, in the form
+     * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
      * 
* * string name = 1; @@ -2172,8 +2172,8 @@ public java.lang.String getName() { * * *
-     * Unique identifier for the session. In the form
-     * `projects/{project_id}/sessions/{session_id}`
+     * Unique identifier for the session, in the form
+     * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
      * 
* * string name = 1; @@ -2972,8 +2972,8 @@ public Builder clearSchema() { * * *
-       * Unique identifier for the session. In the form
-       * `projects/{project_id}/sessions/{session_id}`
+       * Unique identifier for the session, in the form
+       * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
        * 
* * string name = 1; @@ -2993,8 +2993,8 @@ public java.lang.String getName() { * * *
-       * Unique identifier for the session. In the form
-       * `projects/{project_id}/sessions/{session_id}`
+       * Unique identifier for the session, in the form
+       * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
        * 
* * string name = 1; @@ -3014,8 +3014,8 @@ public com.google.protobuf.ByteString getNameBytes() { * * *
-       * Unique identifier for the session. In the form
-       * `projects/{project_id}/sessions/{session_id}`
+       * Unique identifier for the session, in the form
+       * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
        * 
* * string name = 1; @@ -3033,8 +3033,8 @@ public Builder setName(java.lang.String value) { * * *
-       * Unique identifier for the session. In the form
-       * `projects/{project_id}/sessions/{session_id}`
+       * Unique identifier for the session, in the form
+       * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
        * 
* * string name = 1; @@ -3049,8 +3049,8 @@ public Builder clearName() { * * *
-       * Unique identifier for the session. In the form
-       * `projects/{project_id}/sessions/{session_id}`
+       * Unique identifier for the session, in the form
+       * `projects/{project_id}/locations/{location}/sessions/{session_id}`.
        * 
* * string name = 1; @@ -4321,7 +4321,7 @@ public interface CreateReadSessionRequestOrBuilder * * *
-     * Required. String of the form "projects/your-project-id" indicating the
+     * Required. String of the form `projects/{project_id}` indicating the
      * project this ReadSession is associated with. This is the project that will
      * be billed for usage.
      * 
@@ -4333,7 +4333,7 @@ public interface CreateReadSessionRequestOrBuilder * * *
-     * Required. String of the form "projects/your-project-id" indicating the
+     * Required. String of the form `projects/{project_id}` indicating the
      * project this ReadSession is associated with. This is the project that will
      * be billed for usage.
      * 
@@ -4656,7 +4656,7 @@ public boolean hasTableReference() { * * *
-     * Required. String of the form "projects/your-project-id" indicating the
+     * Required. String of the form `projects/{project_id}` indicating the
      * project this ReadSession is associated with. This is the project that will
      * be billed for usage.
      * 
@@ -4678,7 +4678,7 @@ public java.lang.String getParent() { * * *
-     * Required. String of the form "projects/your-project-id" indicating the
+     * Required. String of the form `projects/{project_id}` indicating the
      * project this ReadSession is associated with. This is the project that will
      * be billed for usage.
      * 
@@ -5498,7 +5498,7 @@ public Builder clearTableReference() { * * *
-       * Required. String of the form "projects/your-project-id" indicating the
+       * Required. String of the form `projects/{project_id}` indicating the
        * project this ReadSession is associated with. This is the project that will
        * be billed for usage.
        * 
@@ -5520,7 +5520,7 @@ public java.lang.String getParent() { * * *
-       * Required. String of the form "projects/your-project-id" indicating the
+       * Required. String of the form `projects/{project_id}` indicating the
        * project this ReadSession is associated with. This is the project that will
        * be billed for usage.
        * 
@@ -5542,7 +5542,7 @@ public com.google.protobuf.ByteString getParentBytes() { * * *
-       * Required. String of the form "projects/your-project-id" indicating the
+       * Required. String of the form `projects/{project_id}` indicating the
        * project this ReadSession is associated with. This is the project that will
        * be billed for usage.
        * 
@@ -5562,7 +5562,7 @@ public Builder setParent(java.lang.String value) { * * *
-       * Required. String of the form "projects/your-project-id" indicating the
+       * Required. String of the form `projects/{project_id}` indicating the
        * project this ReadSession is associated with. This is the project that will
        * be billed for usage.
        * 
@@ -5579,7 +5579,7 @@ public Builder clearParent() { * * *
-       * Required. String of the form "projects/your-project-id" indicating the
+       * Required. String of the form `projects/{project_id}` indicating the
        * project this ReadSession is associated with. This is the project that will
        * be billed for usage.
        * 
diff --git a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/avro.proto b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/avro.proto index b75de8f266f1..699d70a671ec 100644 --- a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/avro.proto +++ b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/avro.proto @@ -1,4 +1,4 @@ -// Copyright 2018 Google LLC. +// Copyright 2019 Google LLC. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/read_options.proto b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/read_options.proto index 84307ce475e9..8a3c66699f57 100644 --- a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/read_options.proto +++ b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/read_options.proto @@ -1,4 +1,4 @@ -// Copyright 2018 Google LLC. +// Copyright 2019 Google LLC. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -30,10 +30,13 @@ message TableReadOptions { repeated string selected_fields = 1; // Optional. SQL text filtering statement, similar to a WHERE clause in - // a query. Currently, we support combinations of predicates that are - // a comparison between a column and a constant value in SQL statement. - // Aggregates are not supported. + // a query. Currently, only a single predicate that is a comparison between + // a column and a constant value is supported. Aggregates are not supported. // - // Example: "a > DATE '2014-9-27' AND (b > 5 and C LIKE 'date')" + // Examples: "int_field > 5" + // "date_field = CAST('2014-9-27' as DATE)" + // "nullable_field is not NULL" + // "st_equals(geo_field, st_geofromtext("POINT(2, 2)"))" + // "numeric_field BETWEEN 1.0 AND 5.0" string row_restriction = 2; } diff --git a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/storage.proto b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/storage.proto index 7396355f0ed5..3e6686ffdb37 100644 --- a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/storage.proto +++ b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/storage.proto @@ -1,4 +1,4 @@ -// Copyright 2018 Google LLC. +// Copyright 2019 Google LLC. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -100,8 +100,8 @@ service BigQueryStorage { // Information about a single data stream within a read session. message Stream { - // Name of the stream. In the form - // `/projects/{project_id}/stream/{stream_id}` + // Name of the stream, in the form + // `projects/{project_id}/locations/{location}/streams/{stream_id}`. string name = 1; // Rows in the stream. @@ -119,8 +119,8 @@ message StreamPosition { // Information returned from a `CreateReadSession` request. message ReadSession { - // Unique identifier for the session. In the form - // `projects/{project_id}/sessions/{session_id}` + // Unique identifier for the session, in the form + // `projects/{project_id}/locations/{location}/sessions/{session_id}`. string name = 1; // Time at which the session becomes invalid. After this time, subsequent @@ -151,7 +151,7 @@ message CreateReadSessionRequest { // Required. Reference to the table to read. TableReference table_reference = 1; - // Required. String of the form "projects/your-project-id" indicating the + // Required. String of the form `projects/{project_id}` indicating the // project this ReadSession is associated with. This is the project that will // be billed for usage. string parent = 6; @@ -175,6 +175,16 @@ message CreateReadSessionRequest { DataFormat format = 5; } +// Data format for input or output data. +enum DataFormat { + // Data format is unspecified. + DATA_FORMAT_UNSPECIFIED = 0; + + // Avro is a standard open source row based file format. + // See https://avro.apache.org/ for more details. + AVRO = 1; +} + // Requesting row data via `ReadRows` must provide Stream position information. message ReadRowsRequest { // Required. Identifier of the position in the stream to start reading from. @@ -256,13 +266,3 @@ message SplitReadStreamResponse { // Remainder stream. Will contain the tail of |original_stream|. Stream remainder_stream = 2; } - -// Data format for input or output data. -enum DataFormat { - // Data format is unspecified. - DATA_FORMAT_UNSPECIFIED = 0; - - // Avro is a standard open source row based file format. - // See https://avro.apache.org/ for more details. - AVRO = 1; -} diff --git a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/table_reference.proto b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/table_reference.proto index a493fac91b0e..758864a5533c 100644 --- a/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/table_reference.proto +++ b/google-api-grpc/proto-google-cloud-bigquerystorage-v1beta1/src/main/proto/google/cloud/bigquery/storage/v1beta1/table_reference.proto @@ -1,4 +1,4 @@ -// Copyright 2018 Google LLC. +// Copyright 2019 Google LLC. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/google-cloud-clients/google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/BaseBigQueryStorageClient.java b/google-cloud-clients/google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/BaseBigQueryStorageClient.java index 686c258b5574..296aa0ce1978 100644 --- a/google-cloud-clients/google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/BaseBigQueryStorageClient.java +++ b/google-cloud-clients/google-cloud-bigquerystorage/src/main/java/com/google/cloud/bigquery/storage/v1beta1/BaseBigQueryStorageClient.java @@ -187,8 +187,8 @@ public BigQueryStorageStub getStub() { * * * @param tableReference Required. Reference to the table to read. - * @param parent Required. String of the form "projects/your-project-id" indicating the project - * this ReadSession is associated with. This is the project that will be billed for usage. + * @param parent Required. String of the form `projects/{project_id}` indicating the project this + * ReadSession is associated with. This is the project that will be billed for usage. * @param requestedStreams Optional. Initial number of streams. If unset or 0, we will provide a * value of streams so as to produce reasonable throughput. Must be non-negative. The number * of streams may be lower than the requested number, depending on the amount parallelism that diff --git a/google-cloud-clients/google-cloud-bigquerystorage/synth.metadata b/google-cloud-clients/google-cloud-bigquerystorage/synth.metadata index c3b801021fc6..a579e97a6b9f 100644 --- a/google-cloud-clients/google-cloud-bigquerystorage/synth.metadata +++ b/google-cloud-clients/google-cloud-bigquerystorage/synth.metadata @@ -1,19 +1,19 @@ { - "updateTime": "2019-01-17T08:35:19.865695Z", + "updateTime": "2019-02-28T08:34:37.723143Z", "sources": [ { "generator": { "name": "artman", - "version": "0.16.6", - "dockerImage": "googleapis/artman@sha256:12722f2ca3fbc3b53cc6aa5f0e569d7d221b46bd876a2136497089dec5e3634e" + "version": "0.16.14", + "dockerImage": "googleapis/artman@sha256:f3d61ae45abaeefb6be5f228cda22732c2f1b00fb687c79c4bd4f2c42bb1e1a7" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "0ac60e21a1aa86c07c1836865b35308ba8178b05", - "internalRef": "229626798" + "sha": "9c769d3a0e67e4df9b9e8eee480124c2700a7e6c", + "internalRef": "235997788" } } ],