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

Commit

Permalink
feat: initial code generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Neenu1995 committed Jan 14, 2021
0 parents commit a496a94
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .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
}
Binary file added __pycache__/synth.cpython-36.pyc
Binary file not shown.
32 changes: 32 additions & 0 deletions 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()

0 comments on commit a496a94

Please sign in to comment.