We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8648221 commit f2b679cCopy full SHA for f2b679c
packages/google-cloud-container/synth.py
@@ -16,7 +16,7 @@
16
import synthtool as s
17
from synthtool import gcp
18
19
-gapic = gcp.GAPICGenerator()
+gapic = gcp.GAPICBazel()
20
common = gcp.CommonTemplates()
21
versions = ["v1beta1", "v1"]
22
@@ -25,10 +25,9 @@
25
# ----------------------------------------------------------------------------
26
for version in versions:
27
library = gapic.py_library(
28
- "container",
29
- version,
30
- config_path=f"/google/container/artman_container_{version}.yaml",
31
- artman_output_name=f"container-{version}",
+ service="container",
+ version=version,
+ bazel_target=f"//google/container/{version}:container-{version}-py",
32
include_protos=True,
33
)
34
0 commit comments