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 00000000..53977712 Binary files /dev/null and b/__pycache__/synth.cpython-36.pyc differ 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