├── acceptance └── data │ ├── abc.txt │ ├── face.jpg │ ├── logo.jpg │ ├── text.png │ ├── audio.raw │ ├── bicycle.jpg │ ├── landmark.jpg │ ├── us-states.orc │ ├── three-mb-file.tif │ ├── us-states.parquet │ └── CloudPlatform_128px_Retina.png ├── integration ├── rails4_app │ ├── log │ │ └── .keep │ ├── lib │ │ ├── tasks │ │ │ └── .keep │ │ └── assets │ │ │ └── .keep │ ├── app │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ ├── .keep │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── assets │ │ │ └── images │ │ │ │ └── .keep │ │ └── controllers │ │ │ └── concerns │ │ │ └── .keep │ ├── public │ │ └── favicon.ico │ ├── test │ │ ├── fixtures │ │ │ └── .keep │ │ ├── helpers │ │ │ └── .keep │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ └── .keep │ │ ├── controllers │ │ │ └── .keep │ │ └── integration │ │ │ └── .keep │ ├── vendor │ │ └── assets │ │ │ ├── javascripts │ │ │ └── .keep │ │ │ └── stylesheets │ │ │ └── .keep │ ├── bin │ │ └── bundle │ └── config │ │ └── boot.rb └── rails5_app │ ├── log │ └── .keep │ ├── tmp │ └── .keep │ ├── lib │ ├── tasks │ │ └── .keep │ └── assets │ │ └── .keep │ ├── public │ ├── favicon.ico │ ├── apple-touch-icon.png │ └── apple-touch-icon-precomposed.png │ ├── test │ ├── fixtures │ │ ├── .keep │ │ └── files │ │ │ └── .keep │ ├── helpers │ │ └── .keep │ ├── mailers │ │ └── .keep │ ├── models │ │ └── .keep │ ├── controllers │ │ └── .keep │ └── integration │ │ └── .keep │ ├── app │ ├── assets │ │ ├── images │ │ │ └── .keep │ │ ├── javascripts │ │ │ └── channels │ │ │ │ └── .keep │ │ └── config │ │ │ └── manifest.js │ ├── models │ │ ├── concerns │ │ │ └── .keep │ │ └── application_record.rb │ ├── controllers │ │ ├── concerns │ │ │ └── .keep │ │ └── application_controller.rb │ ├── views │ │ └── layouts │ │ │ └── mailer.text.erb │ ├── helpers │ │ └── application_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── channels │ │ └── application_cable │ │ │ ├── channel.rb │ │ │ └── connection.rb │ └── mailers │ │ └── application_mailer.rb │ ├── vendor │ └── assets │ │ ├── javascripts │ │ └── .keep │ │ └── stylesheets │ │ └── .keep │ ├── bin │ └── bundle │ ├── config │ ├── boot.rb │ └── spring.rb │ └── config.ru ├── google-cloud-bigquery ├── test │ └── data ├── acceptance │ └── data ├── samples │ ├── simple_app │ │ └── .rubocop.yml │ └── snippets │ │ └── resources │ │ └── people.csv └── .gitignore ├── google-cloud-dns ├── acceptance │ └── data └── .gitignore ├── google-cloud-spanner ├── acceptance │ └── data └── .gitignore ├── google-cloud-speech ├── acceptance │ └── data └── samples │ └── resources │ ├── multi.wav │ └── Google_Gnome.wav ├── google-cloud-storage ├── acceptance │ └── data ├── samples │ └── acceptance │ │ └── data │ │ └── file.txt └── .gitignore ├── google-cloud-vision ├── acceptance │ └── data └── samples │ └── resources │ ├── cat.jpg │ ├── kafka.pdf │ ├── logos.png │ ├── pdf_ocr.pdf │ ├── puppies.jpg │ ├── wakeupcat.jpg │ ├── eiffel_tower.jpg │ ├── face_surprise.jpg │ └── otter_crossing.jpg ├── google-cloud-datastore ├── acceptance │ └── data └── .gitignore ├── google-cloud-speech-v1 ├── acceptance │ └── data └── Gemfile ├── google-cloud-vision-v1 ├── acceptance │ └── data └── Gemfile ├── google-cloud-functions-v1 ├── CHANGELOG.md └── Gemfile ├── google-cloud-speech-v1p1beta1 ├── acceptance │ └── data └── Gemfile ├── google-cloud-text_to_speech └── samples │ └── resources │ ├── hello.txt │ └── hello.ssml ├── google-cloud-vision-v1p3beta1 ├── acceptance │ └── data └── Gemfile ├── google-cloud-notebooks-v1beta1 ├── CHANGELOG.md └── Gemfile ├── grafeas-v1 └── Gemfile ├── google-cloud-billing-budgets-v1beta1 ├── CHANGELOG.md └── Gemfile ├── google-cloud-dlp-v2 └── Gemfile ├── google-cloud-iot-v1 └── Gemfile ├── google-cloud-kms-v1 └── Gemfile ├── google-cloud-policy_troubleshooter-v1 ├── CHANGELOG.md └── Gemfile ├── google-cloud-asset-v1 └── Gemfile ├── google-cloud-automl-v1 └── Gemfile ├── google-cloud-bigtable-v2 └── Gemfile ├── google-cloud-billing-v1 └── Gemfile ├── google-cloud-build-v1 └── Gemfile ├── google-cloud-dataproc-v1 └── Gemfile ├── google-cloud-debugger-v2 └── Gemfile ├── google-cloud-gaming-v1 └── Gemfile ├── google-cloud-language-v1 └── Gemfile ├── google-cloud-logging-v2 └── Gemfile ├── google-cloud-os_login-v1 └── Gemfile ├── google-cloud-pubsub-v1 └── Gemfile ├── google-cloud-redis-v1 └── Gemfile ├── google-cloud-spanner-v1 └── Gemfile ├── google-cloud-tasks-v2 └── Gemfile ├── google-cloud-trace-v1 └── Gemfile ├── google-cloud-trace-v2 └── Gemfile ├── google-cloud-web_risk-v1 └── Gemfile ├── gcloud ├── Gemfile └── .rubocop.yml ├── google-cloud-asset-v1beta1 └── Gemfile ├── google-cloud-automl-v1beta1 └── Gemfile ├── google-cloud-container-v1 └── Gemfile ├── google-cloud-data_catalog-v1 └── Gemfile ├── google-cloud-dataproc-v1beta2 └── Gemfile ├── google-cloud-datastore-v1 └── Gemfile ├── google-cloud-dialogflow-v2 └── Gemfile ├── google-cloud-dlp ├── samples │ └── acceptance │ │ └── data │ │ └── test.txt └── Gemfile ├── google-cloud-firestore-v1 └── Gemfile ├── google-cloud-language-v1beta2 └── Gemfile ├── google-cloud-memcache-v1beta2 └── Gemfile ├── google-cloud-monitoring-v3 └── Gemfile ├── google-cloud-os_config-v1 └── Gemfile ├── google-cloud-os_login-v1beta └── Gemfile ├── google-cloud-recommender-v1 └── Gemfile ├── google-cloud-redis-v1beta1 └── Gemfile ├── google-cloud-scheduler-v1 └── Gemfile ├── google-cloud-talent-v4beta1 └── Gemfile ├── google-cloud-tasks-v2beta2 └── Gemfile ├── google-cloud-tasks-v2beta3 └── Gemfile ├── google-cloud-translate-v3 └── Gemfile ├── google-cloud-web_risk-v1beta1 └── Gemfile ├── google-analytics-admin-v1alpha └── Gemfile ├── google-cloud-access_approval-v1 └── Gemfile ├── google-cloud-bigquery-storage-v1 └── Gemfile ├── google-cloud-bigtable-admin-v2 └── Gemfile ├── google-cloud-container-v1beta1 └── Gemfile ├── google-cloud-datastore-admin-v1 └── Gemfile ├── google-cloud-firestore-admin-v1 └── Gemfile ├── google-cloud-scheduler-v1beta1 └── Gemfile ├── google-cloud-secret_manager-v1 └── Gemfile ├── google-cloud-security_center-v1 └── Gemfile ├── google-cloud-text_to_speech-v1 └── Gemfile ├── google-cloud-video_intelligence-v1 └── Gemfile ├── google-cloud └── Gemfile ├── .kokoro ├── presubmit │ ├── osx │ │ └── presubmit-osx.cfg │ ├── linux │ │ └── presubmit-linux.cfg │ └── windows │ │ └── presubmit-windows.cfg ├── samples_master │ ├── osx │ │ └── samples_master-osx.cfg │ ├── linux │ │ └── samples_master-linux.cfg │ └── windows │ │ └── samples_master-windows.cfg ├── trampoline.bat ├── release │ ├── gcloud.cfg │ ├── grafeas.cfg │ ├── republish.cfg │ ├── asset.cfg │ ├── build.cfg │ ├── core.cfg │ ├── dlp.cfg │ ├── dns.cfg │ ├── env.cfg │ ├── grafeas-v1.cfg │ ├── iot.cfg │ ├── kms.cfg │ ├── redis.cfg │ ├── stackdriver.cfg │ ├── tasks.cfg │ ├── trace.cfg │ ├── automl.cfg │ ├── billing.cfg │ ├── dlp-v2.cfg │ ├── errors.cfg │ ├── gaming.cfg │ ├── google-cloud.cfg │ ├── grafeas-client.cfg │ ├── iot-v1.cfg │ ├── kms-v1.cfg │ ├── logging.cfg │ ├── pubsub.cfg │ ├── spanner.cfg │ ├── speech.cfg │ ├── storage.cfg │ ├── talent.cfg │ ├── vision.cfg │ ├── webrisk.cfg │ ├── asset-v1.cfg │ ├── automl-v1.cfg │ ├── bigquery.cfg │ ├── bigtable.cfg │ ├── billing-v1.cfg │ ├── build-v1.cfg │ ├── container.cfg │ ├── dataproc.cfg │ ├── datastore.cfg │ ├── debugger.cfg │ ├── dialogflow.cfg │ ├── firestore.cfg │ ├── gaming-v1.cfg │ ├── language.cfg │ ├── logging-v2.cfg │ ├── memcache.cfg │ ├── monitoring.cfg │ ├── os_config.cfg │ ├── os_login.cfg │ ├── pubsub-v1.cfg │ ├── redis-v1.cfg │ ├── scheduler.cfg │ ├── spanner-v1.cfg │ ├── speech-v1.cfg │ ├── stackdriver-core.cfg │ ├── tasks-v2.cfg │ ├── trace-v1.cfg │ ├── trace-v2.cfg │ ├── translate.cfg │ ├── vision-v1.cfg │ ├── web_risk.cfg │ ├── bigtable-v2.cfg │ ├── container-v1.cfg │ ├── data_catalog.cfg │ ├── dataproc-v1.cfg │ ├── datastore-v1.cfg │ ├── debugger-v2.cfg │ ├── firestore-v1.cfg │ ├── functions-v1.cfg │ ├── language-v1.cfg │ ├── os_config-v1.cfg │ ├── os_login-v1.cfg │ ├── recommender.cfg │ ├── scheduler-v1.cfg │ ├── translate-v2.cfg │ ├── translate-v3.cfg │ └── web_risk-v1.cfg ├── continuous │ ├── linux │ │ ├── post.cfg │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── asset.cfg │ │ ├── build.cfg │ │ ├── core.cfg │ │ ├── google-cloud.cfg │ │ ├── grafeas-v1.cfg │ │ ├── redis.cfg │ │ ├── stackdriver.cfg │ │ ├── tasks.cfg │ │ ├── trace.cfg │ │ ├── asset-v1.cfg │ │ ├── automl.cfg │ │ ├── bigquery.cfg │ │ ├── bigtable.cfg │ │ ├── billing.cfg │ │ ├── build-v1.cfg │ │ ├── dataproc.cfg │ │ ├── debugger.cfg │ │ ├── dlp-v2.cfg │ │ ├── errors.cfg │ │ ├── gaming.cfg │ │ ├── grafeas-client.cfg │ │ ├── iot-v1.cfg │ │ ├── kms-v1.cfg │ │ ├── language.cfg │ │ ├── logging.cfg │ │ ├── memcache.cfg │ │ ├── os_login.cfg │ │ ├── pubsub.cfg │ │ ├── redis-v1.cfg │ │ ├── spanner.cfg │ │ ├── speech.cfg │ │ ├── storage.cfg │ │ ├── talent.cfg │ │ ├── tasks-v2.cfg │ │ ├── trace-v1.cfg │ │ ├── trace-v2.cfg │ │ ├── vision.cfg │ │ ├── web_risk.cfg │ │ ├── webrisk.cfg │ │ ├── automl-v1.cfg │ │ ├── billing-v1.cfg │ │ ├── container.cfg │ │ ├── datastore.cfg │ │ ├── dialogflow.cfg │ │ ├── firestore.cfg │ │ ├── gaming-v1.cfg │ │ ├── logging-v2.cfg │ │ ├── monitoring.cfg │ │ ├── os_config.cfg │ │ ├── pubsub-v1.cfg │ │ ├── scheduler.cfg │ │ ├── spanner-v1.cfg │ │ ├── speech-v1.cfg │ │ ├── stackdriver-core.cfg │ │ ├── translate.cfg │ │ └── vision-v1.cfg │ ├── osx │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── core.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── grafeas-v1.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── asset.cfg │ │ ├── automl.cfg │ │ ├── build.cfg │ │ ├── dlp-v2.cfg │ │ ├── errors.cfg │ │ ├── gaming.cfg │ │ ├── google-cloud.cfg │ │ ├── iot-v1.cfg │ │ ├── kms-v1.cfg │ │ ├── pubsub.cfg │ │ ├── redis.cfg │ │ ├── speech.cfg │ │ ├── stackdriver.cfg │ │ ├── talent.cfg │ │ ├── tasks.cfg │ │ ├── trace.cfg │ │ ├── vision.cfg │ │ ├── asset-v1.cfg │ │ ├── automl-v1.cfg │ │ ├── bigquery.cfg │ │ ├── bigtable.cfg │ │ ├── billing.cfg │ │ ├── build-v1.cfg │ │ ├── container.cfg │ │ ├── dataproc.cfg │ │ ├── datastore.cfg │ │ ├── debugger.cfg │ │ ├── firestore.cfg │ │ ├── gaming-v1.cfg │ │ ├── grafeas-client.cfg │ │ ├── language.cfg │ │ ├── logging.cfg │ │ ├── memcache.cfg │ │ ├── os_config.cfg │ │ ├── os_login.cfg │ │ ├── pubsub-v1.cfg │ │ ├── redis-v1.cfg │ │ ├── scheduler.cfg │ │ ├── spanner.cfg │ │ ├── speech-v1.cfg │ │ ├── storage.cfg │ │ ├── tasks-v2.cfg │ │ ├── trace-v1.cfg │ │ ├── trace-v2.cfg │ │ ├── translate.cfg │ │ ├── vision-v1.cfg │ │ ├── web_risk.cfg │ │ ├── webrisk.cfg │ │ ├── bigtable-v2.cfg │ │ ├── billing-v1.cfg │ │ ├── dataproc-v1.cfg │ │ ├── debugger-v2.cfg │ │ ├── dialogflow.cfg │ │ ├── language-v1.cfg │ │ ├── logging-v2.cfg │ │ ├── monitoring.cfg │ │ ├── os_login-v1.cfg │ │ ├── recommender.cfg │ │ ├── spanner-v1.cfg │ │ ├── stackdriver-core.cfg │ │ └── web_risk-v1.cfg │ └── windows │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── core.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── grafeas-v1.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── stackdriver.cfg │ │ ├── asset.cfg │ │ ├── automl.cfg │ │ ├── billing.cfg │ │ ├── build.cfg │ │ ├── dlp-v2.cfg │ │ ├── errors.cfg │ │ ├── gaming.cfg │ │ ├── google-cloud.cfg │ │ ├── iot-v1.cfg │ │ ├── kms-v1.cfg │ │ ├── logging.cfg │ │ ├── pubsub.cfg │ │ ├── redis.cfg │ │ ├── spanner.cfg │ │ ├── speech.cfg │ │ ├── storage.cfg │ │ ├── talent.cfg │ │ ├── tasks.cfg │ │ ├── trace.cfg │ │ ├── vision.cfg │ │ ├── webrisk.cfg │ │ ├── asset-v1.cfg │ │ ├── automl-v1.cfg │ │ ├── bigquery.cfg │ │ ├── bigtable.cfg │ │ ├── build-v1.cfg │ │ ├── container.cfg │ │ ├── dataproc.cfg │ │ ├── datastore.cfg │ │ ├── debugger.cfg │ │ ├── firestore.cfg │ │ ├── gaming-v1.cfg │ │ ├── grafeas-client.cfg │ │ ├── language.cfg │ │ ├── memcache.cfg │ │ ├── os_config.cfg │ │ ├── os_login.cfg │ │ ├── pubsub-v1.cfg │ │ ├── redis-v1.cfg │ │ ├── scheduler.cfg │ │ ├── speech-v1.cfg │ │ ├── stackdriver-core.cfg │ │ ├── tasks-v2.cfg │ │ ├── trace-v1.cfg │ │ ├── trace-v2.cfg │ │ ├── translate.cfg │ │ ├── vision-v1.cfg │ │ └── web_risk.cfg ├── nightly │ ├── linux │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── core.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── grafeas-v1.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── stackdriver.cfg │ │ ├── asset.cfg │ │ ├── automl.cfg │ │ ├── billing.cfg │ │ ├── build.cfg │ │ ├── dlp-v2.cfg │ │ ├── errors.cfg │ │ ├── gaming.cfg │ │ ├── google-cloud.cfg │ │ ├── iot-v1.cfg │ │ ├── kms-v1.cfg │ │ ├── logging.cfg │ │ ├── pubsub.cfg │ │ ├── redis.cfg │ │ ├── spanner.cfg │ │ ├── speech.cfg │ │ ├── storage.cfg │ │ ├── talent.cfg │ │ ├── tasks.cfg │ │ ├── trace.cfg │ │ ├── vision.cfg │ │ ├── webrisk.cfg │ │ ├── asset-v1.cfg │ │ ├── automl-v1.cfg │ │ ├── bigquery.cfg │ │ ├── bigtable.cfg │ │ ├── build-v1.cfg │ │ ├── container.cfg │ │ ├── dataproc.cfg │ │ ├── datastore.cfg │ │ ├── debugger.cfg │ │ ├── firestore.cfg │ │ ├── gaming-v1.cfg │ │ ├── grafeas-client.cfg │ │ ├── language.cfg │ │ ├── memcache.cfg │ │ ├── os_config.cfg │ │ ├── os_login.cfg │ │ ├── pubsub-v1.cfg │ │ ├── redis-v1.cfg │ │ ├── scheduler.cfg │ │ ├── speech-v1.cfg │ │ ├── stackdriver-core.cfg │ │ ├── tasks-v2.cfg │ │ ├── trace-v1.cfg │ │ ├── trace-v2.cfg │ │ ├── translate.cfg │ │ ├── vision-v1.cfg │ │ ├── web_risk.cfg │ │ ├── bigtable-v2.cfg │ │ ├── billing-v1.cfg │ │ ├── container-v1.cfg │ │ ├── data_catalog.cfg │ │ ├── dataproc-v1.cfg │ │ ├── datastore-v1.cfg │ │ ├── debugger-v2.cfg │ │ ├── dialogflow.cfg │ │ ├── firestore-v1.cfg │ │ ├── functions-v1.cfg │ │ ├── language-v1.cfg │ │ ├── logging-v2.cfg │ │ ├── monitoring.cfg │ │ ├── os_config-v1.cfg │ │ ├── os_login-v1.cfg │ │ ├── recommender.cfg │ │ ├── scheduler-v1.cfg │ │ ├── spanner-v1.cfg │ │ ├── translate-v2.cfg │ │ ├── translate-v3.cfg │ │ └── web_risk-v1.cfg │ ├── osx │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── asset.cfg │ │ ├── build.cfg │ │ ├── core.cfg │ │ ├── google-cloud.cfg │ │ ├── grafeas-v1.cfg │ │ ├── redis.cfg │ │ ├── stackdriver.cfg │ │ ├── tasks.cfg │ │ ├── trace.cfg │ │ ├── asset-v1.cfg │ │ ├── automl.cfg │ │ ├── bigquery.cfg │ │ ├── bigtable.cfg │ │ ├── billing.cfg │ │ ├── build-v1.cfg │ │ ├── dataproc.cfg │ │ ├── debugger.cfg │ │ ├── dlp-v2.cfg │ │ ├── errors.cfg │ │ ├── gaming.cfg │ │ ├── grafeas-client.cfg │ │ ├── iot-v1.cfg │ │ ├── kms-v1.cfg │ │ ├── language.cfg │ │ ├── logging.cfg │ │ ├── memcache.cfg │ │ ├── os_login.cfg │ │ ├── pubsub.cfg │ │ ├── redis-v1.cfg │ │ ├── spanner.cfg │ │ ├── speech.cfg │ │ ├── storage.cfg │ │ ├── talent.cfg │ │ ├── tasks-v2.cfg │ │ ├── trace-v1.cfg │ │ ├── trace-v2.cfg │ │ ├── vision.cfg │ │ ├── web_risk.cfg │ │ ├── webrisk.cfg │ │ ├── automl-v1.cfg │ │ ├── billing-v1.cfg │ │ ├── container.cfg │ │ ├── datastore.cfg │ │ ├── dialogflow.cfg │ │ ├── firestore.cfg │ │ ├── gaming-v1.cfg │ │ ├── logging-v2.cfg │ │ ├── monitoring.cfg │ │ ├── os_config.cfg │ │ ├── pubsub-v1.cfg │ │ ├── scheduler.cfg │ │ ├── spanner-v1.cfg │ │ ├── speech-v1.cfg │ │ ├── stackdriver-core.cfg │ │ ├── translate.cfg │ │ ├── vision-v1.cfg │ │ ├── asset-v1beta1.cfg │ │ ├── bigtable-v2.cfg │ │ ├── container-v1.cfg │ │ ├── data_catalog.cfg │ │ ├── dataproc-v1.cfg │ │ └── datastore-v1.cfg │ └── windows │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── grafeas-v1.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── asset.cfg │ │ ├── automl.cfg │ │ ├── build.cfg │ │ ├── core.cfg │ │ ├── dlp-v2.cfg │ │ ├── errors.cfg │ │ ├── gaming.cfg │ │ ├── google-cloud.cfg │ │ ├── iot-v1.cfg │ │ ├── kms-v1.cfg │ │ ├── pubsub.cfg │ │ ├── redis.cfg │ │ ├── speech.cfg │ │ ├── stackdriver.cfg │ │ ├── talent.cfg │ │ ├── tasks.cfg │ │ ├── trace.cfg │ │ ├── vision.cfg │ │ ├── asset-v1.cfg │ │ ├── bigquery.cfg │ │ ├── bigtable.cfg │ │ ├── billing.cfg │ │ ├── build-v1.cfg │ │ ├── dataproc.cfg │ │ ├── debugger.cfg │ │ ├── grafeas-client.cfg │ │ ├── language.cfg │ │ ├── logging.cfg │ │ ├── memcache.cfg │ │ ├── os_login.cfg │ │ ├── redis-v1.cfg │ │ ├── spanner.cfg │ │ ├── storage.cfg │ │ ├── tasks-v2.cfg │ │ ├── trace-v1.cfg │ │ ├── trace-v2.cfg │ │ ├── web_risk.cfg │ │ └── webrisk.cfg ├── samples_latest │ ├── osx │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── core.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── stackdriver.cfg │ │ ├── asset.cfg │ │ ├── automl.cfg │ │ ├── billing.cfg │ │ ├── build.cfg │ │ ├── errors.cfg │ │ ├── gaming.cfg │ │ ├── google-cloud.cfg │ │ ├── logging.cfg │ │ ├── pubsub.cfg │ │ ├── redis.cfg │ │ ├── spanner.cfg │ │ ├── speech.cfg │ │ ├── storage.cfg │ │ ├── talent.cfg │ │ ├── tasks.cfg │ │ ├── trace.cfg │ │ ├── vision.cfg │ │ └── webrisk.cfg │ ├── linux │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── asset.cfg │ │ ├── automl.cfg │ │ ├── build.cfg │ │ ├── core.cfg │ │ ├── errors.cfg │ │ ├── gaming.cfg │ │ ├── google-cloud.cfg │ │ ├── pubsub.cfg │ │ ├── redis.cfg │ │ ├── speech.cfg │ │ ├── stackdriver.cfg │ │ ├── talent.cfg │ │ ├── tasks.cfg │ │ ├── trace.cfg │ │ └── vision.cfg │ └── windows │ │ ├── gcloud.cfg │ │ ├── grafeas.cfg │ │ ├── asset.cfg │ │ ├── build.cfg │ │ ├── core.cfg │ │ ├── dlp.cfg │ │ ├── dns.cfg │ │ ├── env.cfg │ │ ├── iot.cfg │ │ ├── kms.cfg │ │ ├── redis.cfg │ │ ├── stackdriver.cfg │ │ ├── tasks.cfg │ │ └── trace.cfg └── templates │ ├── osx.cfg.erb │ ├── release.cfg.erb │ └── windows.cfg.erb ├── google-cloud-bigquery-connection-v1 └── Gemfile ├── google-cloud-bigquery-data_transfer-v1 └── Gemfile ├── google-cloud-bigquery-reservation-v1 └── Gemfile ├── google-cloud-error_reporting-v1beta1 └── Gemfile ├── google-cloud-monitoring-dashboard-v1 └── Gemfile ├── google-cloud-recaptcha_enterprise-v1 └── Gemfile ├── google-cloud-secret_manager-v1beta1 └── Gemfile ├── google-cloud-security_center-v1p1beta1 └── Gemfile ├── google-cloud-service_directory-v1beta1 └── Gemfile ├── google-cloud-spanner-admin-database-v1 └── Gemfile ├── google-cloud-spanner-admin-instance-v1 └── Gemfile ├── google-cloud-text_to_speech-v1beta1 └── Gemfile ├── google-cloud-video_intelligence-v1beta2 └── Gemfile ├── google-cloud-phishing_protection-v1beta1 └── Gemfile ├── google-cloud-recaptcha_enterprise-v1beta1 └── Gemfile ├── google-cloud-video_intelligence-v1p1beta1 └── Gemfile ├── google-cloud-video_intelligence-v1p2beta1 └── Gemfile ├── google-cloud-build ├── CHANGELOG.md └── Gemfile ├── google-cloud-gaming ├── CHANGELOG.md └── Gemfile ├── google-cloud-iot ├── CHANGELOG.md └── Gemfile ├── grafeas └── Gemfile ├── google-cloud-memcache ├── CHANGELOG.md └── Gemfile ├── google-cloud-os_config ├── CHANGELOG.md └── Gemfile ├── google-cloud-container_analysis-v1 └── Gemfile ├── google-cloud-kms └── Gemfile ├── grafeas-client └── Gemfile ├── google-cloud-debugger └── test │ └── google │ └── cloud │ └── debugger │ └── debuggee │ └── test_dir │ ├── test_ruby_file.rb │ └── test_file_to_ignore ├── stackdriver └── .gitignore ├── google-cloud-billing └── Gemfile ├── google-cloud-trace └── .gitignore ├── google-cloud-dialogflow ├── Gemfile └── samples │ └── resources │ ├── 230pm.wav │ ├── today.wav │ └── two_people.wav ├── google-cloud-logging └── .gitignore ├── google-cloud-pubsub └── .gitignore ├── google-cloud-talent └── Gemfile ├── google-cloud-error_reporting └── .gitignore ├── google-cloud-recommender └── Gemfile ├── google-cloud-data_catalog └── Gemfile ├── google-cloud-resource_manager └── .gitignore ├── google-cloud-access_approval └── Gemfile ├── google-cloud-asset └── samples │ └── Rakefile ├── google-cloud-bigquery-storage └── Gemfile └── google-cloud-tasks └── samples └── Rakefile /acceptance/data/abc.txt: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /integration/rails4_app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google-cloud-bigquery/test/data: -------------------------------------------------------------------------------- 1 | ../../test/data -------------------------------------------------------------------------------- /integration/rails4_app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google-cloud-dns/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /integration/rails4_app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google-cloud-bigquery/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /google-cloud-spanner/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /google-cloud-speech/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data/ -------------------------------------------------------------------------------- /google-cloud-storage/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data/ -------------------------------------------------------------------------------- /google-cloud-vision/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /integration/rails4_app/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails4_app/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google-cloud-datastore/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /google-cloud-speech-v1/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /google-cloud-vision-v1/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /integration/rails5_app/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integration/rails5_app/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google-cloud-functions-v1/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | -------------------------------------------------------------------------------- /google-cloud-speech-v1p1beta1/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /google-cloud-text_to_speech/samples/resources/hello.txt: -------------------------------------------------------------------------------- 1 | Hello there! -------------------------------------------------------------------------------- /google-cloud-vision-v1p3beta1/acceptance/data: -------------------------------------------------------------------------------- 1 | ../../acceptance/data -------------------------------------------------------------------------------- /google-cloud-notebooks-v1beta1/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | -------------------------------------------------------------------------------- /grafeas-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /integration/rails5_app/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /google-cloud-billing-budgets-v1beta1/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | -------------------------------------------------------------------------------- /google-cloud-dlp-v2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-iot-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-kms-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-policy_troubleshooter-v1/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | -------------------------------------------------------------------------------- /google-cloud-asset-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-automl-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-bigtable-v2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-billing-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-build-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-dataproc-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-debugger-v2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-gaming-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-language-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-logging-v2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-os_login-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-pubsub-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-redis-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-spanner-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-speech-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-storage/samples/acceptance/data/file.txt: -------------------------------------------------------------------------------- 1 | Content of test file.txt 2 | -------------------------------------------------------------------------------- /google-cloud-tasks-v2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-trace-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-trace-v2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-vision-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-web_risk-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /gcloud/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "rake" 6 | -------------------------------------------------------------------------------- /google-cloud-asset-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-automl-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-container-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-data_catalog-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-dataproc-v1beta2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-datastore-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-dialogflow-v2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-dlp/samples/acceptance/data/test.txt: -------------------------------------------------------------------------------- 1 | Robert Frost was an American poet. 2 | -------------------------------------------------------------------------------- /google-cloud-firestore-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-functions-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-language-v1beta2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-memcache-v1beta2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-monitoring-v3/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-os_config-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-os_login-v1beta/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-recommender-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-redis-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-scheduler-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-speech-v1p1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-talent-v4beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-tasks-v2beta2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-tasks-v2beta3/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-text_to_speech/samples/resources/hello.ssml: -------------------------------------------------------------------------------- 1 | Hello there. 2 | -------------------------------------------------------------------------------- /google-cloud-translate-v3/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-vision-v1p3beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-web_risk-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-analytics-admin-v1alpha/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-access_approval-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-bigquery-storage-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-bigtable-admin-v2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-container-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-datastore-admin-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-firestore-admin-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-notebooks-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-scheduler-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-secret_manager-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-security_center-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-text_to_speech-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-video_intelligence-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "rake" 6 | -------------------------------------------------------------------------------- /integration/rails5_app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /.kokoro/presubmit/osx/presubmit-osx.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | -------------------------------------------------------------------------------- /google-cloud-bigquery-connection-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-bigquery-data_transfer-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-bigquery-reservation-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-billing-budgets-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-error_reporting-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-monitoring-dashboard-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-policy_troubleshooter-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-recaptcha_enterprise-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-secret_manager-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-security_center-v1p1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-service_directory-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-spanner-admin-database-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-spanner-admin-instance-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-text_to_speech-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-video_intelligence-v1beta2/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /.kokoro/presubmit/linux/presubmit-linux.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | -------------------------------------------------------------------------------- /google-cloud-phishing_protection-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-recaptcha_enterprise-v1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-video_intelligence-v1p1beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /google-cloud-video_intelligence-v1p2beta1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | -------------------------------------------------------------------------------- /integration/rails5_app/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /.kokoro/presubmit/windows/presubmit-windows.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | -------------------------------------------------------------------------------- /.kokoro/samples_master/osx/samples_master-osx.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | -------------------------------------------------------------------------------- /.kokoro/samples_master/linux/samples_master-linux.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | -------------------------------------------------------------------------------- /google-cloud-bigquery/samples/simple_app/.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_gem: 2 | google-style: google-style.yml 3 | -------------------------------------------------------------------------------- /.kokoro/samples_master/windows/samples_master-windows.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | -------------------------------------------------------------------------------- /.kokoro/trampoline.bat: -------------------------------------------------------------------------------- 1 | CD "github" 2 | 3 | "C:\Program Files\Git\bin\bash.exe" %REPO_DIR%//.kokoro//trampoline.sh 4 | -------------------------------------------------------------------------------- /acceptance/data/face.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/face.jpg -------------------------------------------------------------------------------- /acceptance/data/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/logo.jpg -------------------------------------------------------------------------------- /acceptance/data/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/text.png -------------------------------------------------------------------------------- /google-cloud-build/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | ### 0.1.0 / 2020-07-13 4 | 5 | Initial release. 6 | 7 | -------------------------------------------------------------------------------- /google-cloud-gaming/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | ### 0.1.0 / 2020-08-10 4 | 5 | Initial release. 6 | 7 | -------------------------------------------------------------------------------- /google-cloud-iot/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | ### 0.1.0 / 2020-06-18 4 | 5 | Initial release. 6 | 7 | -------------------------------------------------------------------------------- /grafeas/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "grafeas-v1", path: "../grafeas-v1" 6 | -------------------------------------------------------------------------------- /acceptance/data/audio.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/audio.raw -------------------------------------------------------------------------------- /google-cloud-memcache/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | ### 0.1.0 / 2020-06-18 4 | 5 | Initial release. 6 | 7 | -------------------------------------------------------------------------------- /google-cloud-os_config/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Release History 2 | 3 | ### 0.1.0 / 2020-06-18 4 | 5 | Initial release. 6 | 7 | -------------------------------------------------------------------------------- /acceptance/data/bicycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/bicycle.jpg -------------------------------------------------------------------------------- /acceptance/data/landmark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/landmark.jpg -------------------------------------------------------------------------------- /acceptance/data/us-states.orc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/us-states.orc -------------------------------------------------------------------------------- /google-cloud-bigquery/samples/snippets/resources/people.csv: -------------------------------------------------------------------------------- 1 | full_name,age 2 | Anastasia Beaverhausen,29 3 | Boaty McBoatface,49 4 | -------------------------------------------------------------------------------- /acceptance/data/three-mb-file.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/three-mb-file.tif -------------------------------------------------------------------------------- /acceptance/data/us-states.parquet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/us-states.parquet -------------------------------------------------------------------------------- /google-cloud-container_analysis-v1/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | gem "grafeas-v1", path: "../grafeas-v1" 5 | -------------------------------------------------------------------------------- /google-cloud-dlp/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-dlp-v2", path: "../google-cloud-dlp-v2" 6 | -------------------------------------------------------------------------------- /google-cloud-iot/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-iot-v1", path: "../google-cloud-iot-v1" 6 | -------------------------------------------------------------------------------- /google-cloud-kms/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-kms-v1", path: "../google-cloud-kms-v1" 6 | -------------------------------------------------------------------------------- /google-cloud-build/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-build-v1", path: "../google-cloud-build-v1" 6 | -------------------------------------------------------------------------------- /grafeas-client/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "grafeas", path: "../grafeas" 6 | 7 | gem "rake", "~> 12.0" 8 | -------------------------------------------------------------------------------- /integration/rails5_app/app/models/application_record.rb: -------------------------------------------------------------------------------- 1 | class ApplicationRecord < ActiveRecord::Base 2 | self.abstract_class = true 3 | end 4 | -------------------------------------------------------------------------------- /google-cloud-debugger/test/google/cloud/debugger/debuggee/test_dir/test_ruby_file.rb: -------------------------------------------------------------------------------- 1 | # 2 | # Test file used to validate AppUniquifierGenerator 3 | # 4 | -------------------------------------------------------------------------------- /google-cloud-gaming/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-gaming-v1", path: "../google-cloud-gaming-v1" 6 | -------------------------------------------------------------------------------- /stackdriver/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /.kokoro/release/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /google-cloud-billing/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-billing-v1", path: "../google-cloud-billing-v1" 6 | -------------------------------------------------------------------------------- /google-cloud-debugger/test/google/cloud/debugger/debuggee/test_dir/test_file_to_ignore: -------------------------------------------------------------------------------- 1 | # 2 | # Test file used to validate AppUniquifierGenerator 3 | # 4 | -------------------------------------------------------------------------------- /google-cloud-dns/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /google-cloud-trace/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/post.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "post" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/republish.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "republish" 6 | } 7 | -------------------------------------------------------------------------------- /acceptance/data/CloudPlatform_128px_Retina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/acceptance/data/CloudPlatform_128px_Retina.png -------------------------------------------------------------------------------- /google-cloud-bigquery/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /google-cloud-datastore/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /google-cloud-dialogflow/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-dialogflow-v2", path: "../google-cloud-dialogflow-v2" 6 | -------------------------------------------------------------------------------- /google-cloud-logging/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /google-cloud-os_config/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-os_config-v1", path: "../google-cloud-os_config-v1" 6 | -------------------------------------------------------------------------------- /google-cloud-pubsub/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /google-cloud-storage/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /google-cloud-talent/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-talent-v4beta1", path: "../google-cloud-talent-v4beta1" 6 | -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/cat.jpg -------------------------------------------------------------------------------- /integration/rails5_app/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Channel < ActionCable::Channel::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/grafeas-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/templates/osx.cfg.erb: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "<%= gem %>" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/templates/release.cfg.erb: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "<%= gem %>" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/templates/windows.cfg.erb: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "<%= gem %>" 6 | } 7 | -------------------------------------------------------------------------------- /google-cloud-error_reporting/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /google-cloud-memcache/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-memcache-v1beta2", path: "../google-cloud-memcache-v1beta2" 6 | -------------------------------------------------------------------------------- /google-cloud-recommender/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-recommender-v1", path: "../google-cloud-recommender-v1" 6 | -------------------------------------------------------------------------------- /google-cloud-speech/samples/resources/multi.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-speech/samples/resources/multi.wav -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/kafka.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/kafka.pdf -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/logos.png -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/pdf_ocr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/pdf_ocr.pdf -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/puppies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/puppies.jpg -------------------------------------------------------------------------------- /integration/rails5_app/app/assets/config/manifest.js: -------------------------------------------------------------------------------- 1 | //= link_tree ../images 2 | //= link_directory ../javascripts .js 3 | //= link_directory ../stylesheets .css 4 | -------------------------------------------------------------------------------- /integration/rails5_app/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- 1 | module ApplicationCable 2 | class Connection < ActionCable::Connection::Base 3 | end 4 | end 5 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/grafeas-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/grafeas-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/grafeas-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/grafeas-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/billing.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/dlp-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/grafeas-client.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-client" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/iot-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/kms-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/logging.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/spanner.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/storage.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-storage" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/webrisk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-webrisk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/gcloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "gcloud" 6 | } 7 | -------------------------------------------------------------------------------- /google-cloud-data_catalog/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-data_catalog-v1", path: "../google-cloud-data_catalog-v1" 6 | -------------------------------------------------------------------------------- /google-cloud-dialogflow/samples/resources/230pm.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-dialogflow/samples/resources/230pm.wav -------------------------------------------------------------------------------- /google-cloud-dialogflow/samples/resources/today.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-dialogflow/samples/resources/today.wav -------------------------------------------------------------------------------- /google-cloud-resource_manager/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | 8 | # Ignore YARD stuffs 9 | .yardoc 10 | -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/wakeupcat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/wakeupcat.jpg -------------------------------------------------------------------------------- /integration/rails5_app/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | protect_from_forgery with: :exception 3 | end 4 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/grafeas-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/dlp-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/iot-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/kms-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/grafeas-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/billing.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/dlp-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/iot-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/kms-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/logging.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/spanner.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/storage.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-storage" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/webrisk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-webrisk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/asset-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/bigquery.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigquery" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/bigtable.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/billing.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/build-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/dataproc.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/debugger.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/dlp-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/grafeas-client.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-client" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/iot-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/kms-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/language.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/logging.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/memcache.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-memcache" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/os_login.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/redis-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/spanner.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/storage.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-storage" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/tasks-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/trace-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/trace-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/web_risk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/webrisk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-webrisk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/dlp-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/iot-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/kms-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/asset-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/automl-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/bigquery.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigquery" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/bigtable.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/billing-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/build-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/container.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/dataproc.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/datastore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/debugger.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/dialogflow.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dialogflow" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/firestore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-firestore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/gaming-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/language.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/logging-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/memcache.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-memcache" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/monitoring.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-monitoring" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/os_config.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_config" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/os_login.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/pubsub-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/redis-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/scheduler.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-scheduler" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/spanner-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/speech-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/stackdriver-core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/tasks-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/trace-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/trace-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/translate.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/vision-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/web_risk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/grafeas.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas" 6 | } 7 | -------------------------------------------------------------------------------- /google-cloud-access_approval/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-access_approval-v1", path: "../google-cloud-access_approval-v1" 6 | -------------------------------------------------------------------------------- /google-cloud-speech/samples/resources/Google_Gnome.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-speech/samples/resources/Google_Gnome.wav -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/eiffel_tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/eiffel_tower.jpg -------------------------------------------------------------------------------- /integration/rails4_app/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /integration/rails5_app/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- 1 | class ApplicationMailer < ActionMailer::Base 2 | default from: 'from@example.com' 3 | layout 'mailer' 4 | end 5 | -------------------------------------------------------------------------------- /integration/rails5_app/bin/bundle: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 3 | load Gem.bin_path('bundler', 'bundle') 4 | -------------------------------------------------------------------------------- /integration/rails5_app/config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | -------------------------------------------------------------------------------- /integration/rails5_app/config/spring.rb: -------------------------------------------------------------------------------- 1 | %w( 2 | .ruby-version 3 | .rbenv-vars 4 | tmp/restart.txt 5 | tmp/caching-dev.txt 6 | ).each { |path| Spring.watch(path) } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/asset-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/bigquery.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigquery" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/bigtable.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/billing.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/build-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/dataproc.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/debugger.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/dlp-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/grafeas-client.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-client" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/iot-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/kms-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/language.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/logging.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/memcache.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-memcache" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/os_login.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/redis-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/spanner.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/storage.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-storage" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/tasks-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/trace-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/trace-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/web_risk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/webrisk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-webrisk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/asset-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/automl-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/bigquery.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigquery" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/bigtable.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/billing.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/build-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/container.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/dataproc.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/datastore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/debugger.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/firestore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-firestore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/gaming-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/grafeas-client.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-client" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/language.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/logging.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/memcache.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-memcache" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/os_config.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_config" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/os_login.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/pubsub-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/redis-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/scheduler.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-scheduler" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/spanner.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/speech-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/storage.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-storage" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/tasks-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/trace-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/trace-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/translate.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/vision-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/web_risk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/webrisk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-webrisk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/billing.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/dlp-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/iot-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/kms-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/logging.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/spanner.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/storage.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-storage" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/webrisk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-webrisk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/asset-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/automl-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/bigquery.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigquery" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/bigtable.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/build-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/container.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/dataproc.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/datastore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/debugger.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/firestore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-firestore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/gaming-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/grafeas-client.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-client" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/language.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/memcache.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-memcache" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/os_config.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_config" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/os_login.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/pubsub-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/redis-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/scheduler.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-scheduler" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/speech-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/stackdriver-core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/tasks-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/trace-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/trace-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/translate.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/vision-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/web_risk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/automl-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/billing-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/container.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/datastore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/dialogflow.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dialogflow" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/firestore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-firestore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/gaming-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/logging-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/monitoring.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-monitoring" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/os_config.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_config" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/pubsub-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/scheduler.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-scheduler" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/spanner-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/speech-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/stackdriver-core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/translate.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/vision-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/asset-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/bigquery.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigquery" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/bigtable.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/billing.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/build-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/dataproc.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/debugger.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/grafeas-client.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-client" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/language.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/logging.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/memcache.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-memcache" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/os_login.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/redis-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/spanner.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/storage.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-storage" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/tasks-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/trace-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/trace-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/web_risk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/windows/webrisk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-webrisk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/bigtable-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/container-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/data_catalog.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-data_catalog" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/dataproc-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/datastore-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/debugger-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/firestore-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-firestore-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/functions-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-functions-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/language-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/os_config-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_config-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/os_login-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/recommender.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-recommender" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/scheduler-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-scheduler-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/translate-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/translate-v3.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate-v3" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/release/web_risk-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/linux/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/automl.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/billing.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/errors.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-errors" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/gaming.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/google-cloud.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/logging.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/pubsub.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/spanner.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/speech.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/storage.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-storage" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/talent.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-talent" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/vision.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/osx/webrisk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-webrisk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/asset.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/build.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/dlp.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dlp" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/dns.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dns" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/env.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-env" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/iot.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-iot" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/kms.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-kms" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/redis.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/stackdriver.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/tasks.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/samples_latest/windows/trace.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace" 6 | } 7 | -------------------------------------------------------------------------------- /gcloud/.rubocop.yml: -------------------------------------------------------------------------------- 1 | inherit_gem: 2 | google-style: google-style.yml 3 | 4 | AllCops: 5 | Exclude: 6 | - "test/**/*" 7 | 8 | Documentation: 9 | Enabled: false 10 | -------------------------------------------------------------------------------- /google-cloud-asset/samples/Rakefile: -------------------------------------------------------------------------------- 1 | require "rake/testtask" 2 | 3 | Rake::TestTask.new "test" do |t| 4 | t.test_files = FileList["**/*_test.rb"] 5 | t.warning = false 6 | end 7 | -------------------------------------------------------------------------------- /google-cloud-bigquery-storage/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gemspec 4 | 5 | gem "google-cloud-bigquery-storage-v1", path: "../google-cloud-bigquery-storage-v1" 6 | -------------------------------------------------------------------------------- /google-cloud-dialogflow/samples/resources/two_people.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-dialogflow/samples/resources/two_people.wav -------------------------------------------------------------------------------- /google-cloud-spanner/.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | coverage/* 3 | doc/* 4 | pkg/* 5 | html/* 6 | jsondoc/* 7 | .ruby-version 8 | 9 | # Ignore YARD stuffs 10 | .yardoc 11 | -------------------------------------------------------------------------------- /google-cloud-tasks/samples/Rakefile: -------------------------------------------------------------------------------- 1 | require "rake/testtask" 2 | 3 | Rake::TestTask.new "test" do |t| 4 | t.test_files = FileList["**/*_test.rb"] 5 | t.warning = false 6 | end 7 | -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/face_surprise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/face_surprise.jpg -------------------------------------------------------------------------------- /google-cloud-vision/samples/resources/otter_crossing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yoshi-automation/google-cloud-ruby/HEAD/google-cloud-vision/samples/resources/otter_crossing.jpg -------------------------------------------------------------------------------- /integration/rails4_app/config/boot.rb: -------------------------------------------------------------------------------- 1 | ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__) 2 | 3 | require 'bundler/setup' # Set up gems listed in the Gemfile. 4 | -------------------------------------------------------------------------------- /integration/rails5_app/config.ru: -------------------------------------------------------------------------------- 1 | # This file is used by Rack-based servers to start the application. 2 | 3 | require_relative 'config/environment' 4 | 5 | run Rails.application 6 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/automl-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/billing-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/container.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/datastore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/dialogflow.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dialogflow" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/firestore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-firestore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/gaming-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/logging-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/monitoring.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-monitoring" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/os_config.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_config" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/pubsub-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/scheduler.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-scheduler" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/spanner-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/speech-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/stackdriver-core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/translate.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/linux/vision-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/bigtable-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/billing-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/dataproc-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/debugger-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/dialogflow.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dialogflow" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/language-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/logging-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/monitoring.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-monitoring" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/os_login-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/recommender.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-recommender" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/spanner-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/stackdriver-core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/osx/web_risk-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/asset-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/automl-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-automl-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/bigquery.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigquery" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/bigtable.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/build-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-build-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/container.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/dataproc.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/datastore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/debugger.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/firestore.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-firestore" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/gaming-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-gaming-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/grafeas-client.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "grafeas-client" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/language.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/memcache.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-memcache" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/os_config.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_config" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/os_login.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/pubsub-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-pubsub-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/redis-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-redis-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/scheduler.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-scheduler" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/speech-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-speech-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/stackdriver-core.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "stackdriver-core" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/tasks-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-tasks-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/trace-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/trace-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-trace-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/translate.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/vision-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-vision-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/continuous/windows/web_risk.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/bigtable-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/billing-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-billing-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/container-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/data_catalog.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-data_catalog" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/dataproc-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/datastore-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/debugger-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-debugger-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/dialogflow.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dialogflow" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/firestore-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-firestore-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/functions-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-functions-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/language-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-language-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/logging-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-logging-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/monitoring.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-monitoring" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/os_config-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_config-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/os_login-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-os_login-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/recommender.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-recommender" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/scheduler-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-scheduler-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/spanner-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-spanner-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/translate-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/translate-v3.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-translate-v3" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/linux/web_risk-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-web_risk-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/asset-v1beta1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-asset-v1beta1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/bigtable-v2.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-bigtable-v2" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/container-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-container-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/data_catalog.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-data_catalog" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/dataproc-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-dataproc-v1" 6 | } 7 | -------------------------------------------------------------------------------- /.kokoro/nightly/osx/datastore-v1.cfg: -------------------------------------------------------------------------------- 1 | # Format: //devtools/kokoro/config/proto/build.proto 2 | 3 | env_vars: { 4 | key: "PACKAGE" 5 | value: "google-cloud-datastore-v1" 6 | } 7 | --------------------------------------------------------------------------------