From a496a94279e46d7bf288a150fa5ae7e3bdef16bd Mon Sep 17 00:00:00 2001 From: Neenu1995 Date: Thu, 14 Jan 2021 14:07:11 -0500 Subject: [PATCH] feat: initial code generation --- .repo-metadata.json | 15 +++++++++++++++ __pycache__/synth.cpython-36.pyc | Bin 0 -> 661 bytes synth.py | 32 +++++++++++++++++++++++++++++++ 3 files changed, 47 insertions(+) create mode 100644 .repo-metadata.json create mode 100644 __pycache__/synth.cpython-36.pyc create mode 100644 synth.py diff --git a/.repo-metadata.json b/.repo-metadata.json new file mode 100644 index 00000000..d4708222 --- /dev/null +++ b/.repo-metadata.json @@ -0,0 +1,15 @@ +{ + "name": "networkconnectivity", + "name_pretty": "Network Connectivity Center", + "product_documentation": "https://cloud.google.com/network-connectivity/docs", + "api_description": "Google's suite of products that provide enterprise connectivity from your on-premises network or from another cloud provider to your Virtual Private Cloud (VPC) network", + "client_documentation": "https://googleapis.dev/java/google-cloud-networkconnectivity/latest/index.html", + "release_level": "alpha", + "transport": "grpc", + "language": "java", + "repo": "googleapis/java-networkconnectivity", + "repo_short": "java-networkconnectivity", + "distribution_name": "com.google.cloud:google-cloud-networkconnectivity", + "api_id": "networkconnectivity.googleapis.com", + "requires_billing": true +} \ No newline at end of file diff --git a/__pycache__/synth.cpython-36.pyc b/__pycache__/synth.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..539777123f74266e033cb2c640dbf390bf757611 GIT binary patch literal 661 zcmZuuzmL-}6t>f}`EgATiRH$K0jUzHb+DlmLZ~wfoRBP`;ENw=f@=rcDKrBMGb_vK z{s8`^tW5k1op4fg2NJgY`F+pN`usgVNs{=%cl7R&kI+x_*I2mtxm)Io1CA)-n0o?K zZ`>!fPyI2P*0VaG0iV#2`z5B)=QTuY^!9?r5Y#6SLd>TSUL!t(_!`~#Jh)>#9OGy> z;qgtxPrmsWeSG`|xx4eP2qW&jLd$vg;`OF7sVQ{T*wjU>0iIfwn!U6eFjWU>2@*83 zF5fV1O{(6fcDN*}E6wzN^~?D{FX?>=_LI^d3MC~Jw%S#8Ps80g6U~O5cS)&KDS#A0 zwVWI<=}rmxC)X{W9(gv_WCxse)2wDYw)FeJfZkOF^uZ3asg$H~qm@;8!|aC6uUH2n zw@jB{mq{PwIafuV_tEIXDkXYsXmZO|Wzo>d0B3hO!DQL863l84rO_?#{UM>1-Gx0c2}7tggsf73~(JHAF+B zGSi64TF_+Zq-j_IWRTAO(_1n=eAVpx@M5cYE8y9wQ!-}`d@sZ?o_ju?c`^2}=jH-G Gocsn<*2={I literal 0 HcmV?d00001 diff --git a/synth.py b/synth.py new file mode 100644 index 00000000..ebce0a2c --- /dev/null +++ b/synth.py @@ -0,0 +1,32 @@ +# Copyright 2020 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +"""This script is used to synthesize generated parts of this library.""" + +import synthtool as s +import synthtool.gcp as gcp +import synthtool.languages.java as java + +service = 'networkconnectivity' +versions = ['v1alpha1'] + +for version in versions: + java.bazel_library( + service=service, + version=version, + proto_path=f'google/cloud/{service}/{version}', + bazel_target=f'//google/cloud/{service}/{version}:google-cloud-{service}-{version}-java', + ) + +java.common_templates() \ No newline at end of file