From 9b3783d9954e77aeb891a08d02f08517f2f67f38 Mon Sep 17 00:00:00 2001 From: Andrea Lin Date: Tue, 14 Aug 2018 11:38:13 -0700 Subject: [PATCH] add container analysis" --- utilities/batch_generate_apis.py | 1 + utilities/generate_api.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/utilities/batch_generate_apis.py b/utilities/batch_generate_apis.py index 3ac9cfe6acde..0a1dd205a9a5 100644 --- a/utilities/batch_generate_apis.py +++ b/utilities/batch_generate_apis.py @@ -42,6 +42,7 @@ def generate(artman_yaml, artifact_name=generate_api.JAVA_GAPIC): generate('google/bigtable/artman_bigtable.yaml') generate('google/bigtable/admin/artman_bigtableadmin.yaml') generate('google/container/artman_container.yaml') + generate('google/devtools/containeranalysis/artman_containeranalysis_v1beta1.yaml') generate('google/cloud/dataproc/artman_dataproc_v1.yaml') generate('google/cloud/dataproc/artman_dataproc_v1beta2.yaml') generate('google/cloud/dialogflow/artman_dialogflow_v2.yaml') diff --git a/utilities/generate_api.py b/utilities/generate_api.py index 19847ba109fd..fd3a54e6e3dc 100644 --- a/utilities/generate_api.py +++ b/utilities/generate_api.py @@ -153,8 +153,8 @@ def run_generate_api(config_path, artifact_name, noisy=False): print('This script doesn\'t set up new clients. If this is a new client, you need to:') print('1. Add the new proto and grpc modules into google-api-grpc/pom.xml') print('2. Add version declarations for the proto and grpc modules in google-api-grpc/pom.xml') - print('3. Copy an existing client pom.xml to the new client directory, update its text') - print('4. Copy an existing client README.md to the new client directory, update its text') + print('3. Copy an existing client pom.xml to the new client directory in google-cloud-clients/google-cloud-[api], update its text') + print('4. Copy an existing client README.md to the same new client directory, update its text') print('5. Add the new proto, grpc, and client modules into versions.txt') print('6. Add the new proto, grpc, and client modules into google-cloud-bom/pom.xml') print('7. Add the API to the list in the root README.md')