Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit b059924

Browse files
authored
chore: Migrate access-bigquery-storage synth.py from artman to bazel (#25)
1 parent 9812244 commit b059924

1 file changed

Lines changed: 4 additions & 6 deletions

File tree

synth.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,15 @@
1717
import synthtool as s
1818
from synthtool import gcp
1919

20-
gapic = gcp.GAPICGenerator()
20+
gapic = gcp.GAPICBazel()
2121
common = gcp.CommonTemplates()
2222
versions = ["v1beta1", "v1beta2", "v1"]
2323

2424
for version in versions:
25-
2625
library = gapic.py_library(
27-
"bigquery_storage",
28-
version,
29-
config_path="/google/cloud/bigquery/storage/" f"artman_bigquerystorage_{version}.yaml",
30-
artman_output_name=f"bigquerystorage-{version}",
26+
service="bigquery_storage",
27+
version=version,
28+
bazel_target=f"//google/cloud/bigquery/storage/{version}:bigquery-storage-{version}-py",
3129
include_protos=True,
3230
)
3331

0 commit comments

Comments
 (0)