Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
feat: update synth to generate v1beta2, v1 endpoints for bigquerystor…
…age (#10) * feat: update synth to generate v1beta2, v1 endpoints for bigquerystorage There's also some work to try to accomodate v1alpha2 in this PR, but there exists further oddities that must be tackled before we can fully add generation of the alpha client here. Also, note that this PR does not include manual client modifications such as streaming offset resumption that are present in the v1beta1 client. Intent is to address further changes like that in subsequent PRs.
- Loading branch information
Showing
with
6,889 additions
and 23 deletions.
- +6 −0 docs/gapic/v1/api.rst
- +5 −0 docs/gapic/v1/types.rst
- +6 −0 docs/gapic/v1beta2/api.rst
- +5 −0 docs/gapic/v1beta2/types.rst
- +6 −0 docs/index.rst
- +4 −4 google/cloud/bigquery_storage.py
- 0 google/cloud/bigquery_storage_v1/__init__.py
- 0 google/cloud/bigquery_storage_v1/gapic/__init__.py
- +459 −0 google/cloud/bigquery_storage_v1/gapic/big_query_read_client.py
- +57 −0 google/cloud/bigquery_storage_v1/gapic/big_query_read_client_config.py
- +36 −0 google/cloud/bigquery_storage_v1/gapic/enums.py
- 0 google/cloud/bigquery_storage_v1/gapic/transports/__init__.py
- +189 −0 google/cloud/bigquery_storage_v1/gapic/transports/big_query_read_grpc_transport.py
- 0 google/cloud/bigquery_storage_v1/proto/__init__.py
- +45 −0 google/cloud/bigquery_storage_v1/proto/arrow.proto
- +174 −0 google/cloud/bigquery_storage_v1/proto/arrow_pb2.py
- +2 −0 google/cloud/bigquery_storage_v1/proto/arrow_pb2_grpc.py
- +41 −0 google/cloud/bigquery_storage_v1/proto/avro.proto
- +171 −0 google/cloud/bigquery_storage_v1/proto/avro_pb2.py
- +2 −0 google/cloud/bigquery_storage_v1/proto/avro_pb2_grpc.py
- +236 −0 google/cloud/bigquery_storage_v1/proto/storage.proto
- +867 −0 google/cloud/bigquery_storage_v1/proto/storage_pb2.py
- +125 −0 google/cloud/bigquery_storage_v1/proto/storage_pb2_grpc.py
- +138 −0 google/cloud/bigquery_storage_v1/proto/stream.proto
- +587 −0 google/cloud/bigquery_storage_v1/proto/stream_pb2.py
- +2 −0 google/cloud/bigquery_storage_v1/proto/stream_pb2_grpc.py
- +47 −0 google/cloud/bigquery_storage_v1/types.py
- 0 google/cloud/bigquery_storage_v1beta2/__init__.py
- 0 google/cloud/bigquery_storage_v1beta2/gapic/__init__.py
- +459 −0 google/cloud/bigquery_storage_v1beta2/gapic/big_query_read_client.py
- +57 −0 google/cloud/bigquery_storage_v1beta2/gapic/big_query_read_client_config.py
- +52 −0 google/cloud/bigquery_storage_v1beta2/gapic/enums.py
- 0 google/cloud/bigquery_storage_v1beta2/gapic/transports/__init__.py
- +189 −0 google/cloud/bigquery_storage_v1beta2/gapic/transports/big_query_read_grpc_transport.py
- 0 google/cloud/bigquery_storage_v1beta2/proto/__init__.py
- +58 −0 google/cloud/bigquery_storage_v1beta2/proto/arrow.proto
- +246 −0 google/cloud/bigquery_storage_v1beta2/proto/arrow_pb2.py
- +2 −0 google/cloud/bigquery_storage_v1beta2/proto/arrow_pb2_grpc.py
- +36 −0 google/cloud/bigquery_storage_v1beta2/proto/avro.proto
- +151 −0 google/cloud/bigquery_storage_v1beta2/proto/avro_pb2.py
- +2 −0 google/cloud/bigquery_storage_v1beta2/proto/avro_pb2_grpc.py
- +230 −0 google/cloud/bigquery_storage_v1beta2/proto/storage.proto
- +867 −0 google/cloud/bigquery_storage_v1beta2/proto/storage_pb2.py
- +125 −0 google/cloud/bigquery_storage_v1beta2/proto/storage_pb2_grpc.py
- +143 −0 google/cloud/bigquery_storage_v1beta2/proto/stream.proto
- +615 −0 google/cloud/bigquery_storage_v1beta2/proto/stream_pb2.py
- +2 −0 google/cloud/bigquery_storage_v1beta2/proto/stream_pb2_grpc.py
- +47 −0 google/cloud/bigquery_storage_v1beta2/types.py
- +24 −3 synth.metadata
- +48 −16 synth.py
- +163 −0 tests/unit/gapic/v1/test_big_query_read_client_v1.py
- +163 −0 tests/unit/gapic/v1beta2/test_big_query_read_client_v1beta2.py
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,6 @@ | ||
Client for BigQuery Storage API | ||
=============================== | ||
|
||
.. automodule:: google.cloud.bigquery_storage_v1 | ||
:members: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,5 @@ | ||
Types for BigQuery Storage API Client | ||
===================================== | ||
|
||
.. automodule:: google.cloud.bigquery_storage_v1.types | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,6 @@ | ||
Client for BigQuery Storage API | ||
=============================== | ||
|
||
.. automodule:: google.cloud.bigquery_storage_v1beta2 | ||
:members: | ||
:inherited-members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,5 @@ | ||
Types for BigQuery Storage API Client | ||
===================================== | ||
|
||
.. automodule:: google.cloud.bigquery_storage_v1beta2.types | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -9,6 +9,12 @@ API Reference | ||
gapic/v1beta1/reader | ||
gapic/v1beta1/types | ||
|
||
gapic/v1beta2/api | ||
gapic/v1beta2/types | ||
|
||
gapic/v1/api | ||
gapic/v1/types | ||
|
||
Example Usage | ||
------------- | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
Oops, something went wrong.