Skip to content

Commit 8691895

Browse files
authored
feat: update synth to generate v1beta2, v1 endpoints for bigquerystorage (#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.
1 parent f7ca268 commit 8691895

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+6889
-23
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Client for BigQuery Storage API
2+
===============================
3+
4+
.. automodule:: google.cloud.bigquery_storage_v1
5+
:members:
6+
:inherited-members:
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Types for BigQuery Storage API Client
2+
=====================================
3+
4+
.. automodule:: google.cloud.bigquery_storage_v1.types
5+
:members:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Client for BigQuery Storage API
2+
===============================
3+
4+
.. automodule:: google.cloud.bigquery_storage_v1beta2
5+
:members:
6+
:inherited-members:
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Types for BigQuery Storage API Client
2+
=====================================
3+
4+
.. automodule:: google.cloud.bigquery_storage_v1beta2.types
5+
:members:

packages/google-cloud-bigquery-storage/docs/index.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ API Reference
99
gapic/v1beta1/reader
1010
gapic/v1beta1/types
1111

12+
gapic/v1beta2/api
13+
gapic/v1beta2/types
14+
15+
gapic/v1/api
16+
gapic/v1/types
17+
1218
Example Usage
1319
-------------
1420

packages/google-cloud-bigquery-storage/google/cloud/bigquery_storage.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717

1818
from __future__ import absolute_import
1919

20-
from google.cloud.bigquery_storage_v1beta1 import BigQueryStorageClient
21-
from google.cloud.bigquery_storage_v1beta1 import enums
22-
from google.cloud.bigquery_storage_v1beta1 import types
20+
from google.cloud.bigquery_storage_v1 import BigQueryReadClient
21+
from google.cloud.bigquery_storage_v1 import enums
22+
from google.cloud.bigquery_storage_v1 import types
2323

2424

25-
__all__ = ("enums", "types", "BigQueryStorageClient")
25+
__all__ = ("enums", "types", "BigQueryReadClient")

packages/google-cloud-bigquery-storage/google/cloud/bigquery_storage_v1/__init__.py

Whitespace-only changes.

packages/google-cloud-bigquery-storage/google/cloud/bigquery_storage_v1/gapic/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)