Skip to content
This repository has been archived by the owner on Feb 28, 2024. It is now read-only.

Commit

Permalink
fix(asset): correct asset synthfile (#10355)
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 committed Feb 7, 2020
1 parent 033303b commit 32d9374
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions synth.py
Expand Up @@ -29,15 +29,13 @@
for version in versions:
if version == "v1p1beta1":
config_path = "/google/cloud/asset/v1p1beta1/artman_cloudasset_v1p1beta1.yaml"
artman_output_name = f"cloudasset-{version}"
else:
config_path = f"/google/cloud/asset/artman_cloudasset_{version}.yaml"
artman_output_name=f"asset-{version}"
library = gapic.py_library(
"asset",
version,
config_path=config_path,
artman_output_name=artman_output_name,
artman_output_name=f"asset-{version}",
include_protos=True,
)

Expand Down

0 comments on commit 32d9374

Please sign in to comment.