Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
chore: Migrate python-secret-manager synth.py from artman to bazel (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
vam-google committed Apr 28, 2020
1 parent 7c83138 commit 2871750
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions synth.py
Expand Up @@ -28,15 +28,15 @@

versions = [
# v1beta1 has a special config path so it must be passed explicitly
("v1beta1", "/google/cloud/secrets/v1beta1"),
("v1", None),
("v1beta1", "//google/cloud/secrets/v1beta1:secretmanager-v1beta1-py"),
("v1", "//google/cloud/secretmanager/v1:secretmanager-v1-py"),
]

for version, proto_path in versions:
for version, bazel_target in versions:
library = gapic.py_library(
"secretmanager",
version,
proto_path=proto_path,
service="secretmanager",
version=version,
bazel_target=bazel_target,
)

s.move(
Expand Down

0 comments on commit 2871750

Please sign in to comment.