Go to file
Google APIs bc76ffd873 Use rules_proto bzl files to load proto_library
This makes googleapis forward compatible with Bazel incompatible change https://github.com/bazelbuild/bazel/issues/8922.

This CL was created by adding @rules_proto to the WORKSPACE file and then running:

find . -name BUILD.bazel | \
  while read build; do \
    buildifier --lint=fix --warnings=load $build; \
  done

Since buildifier cannot be told not to reformat the BUILD file, some files are reformatted.

PiperOrigin-RevId: 280356106
2019-11-13 22:28:15 -08:00
.circleci archive artifacts always 2019-09-09 21:29:37 -07:00
.cloudbuild Synchronize new proto/yaml changes. 2019-06-14 16:35:53 -07:00
gapic Synchronize new proto/yaml changes. 2018-06-01 16:35:10 -07:00
google Use rules_proto bzl files to load proto_library 2019-11-13 22:28:15 -08:00
grafeas Synchronize new proto/yaml changes. 2019-06-21 12:20:37 -07:00
.bazelrc Synchronize new proto/yaml changes. 2019-05-23 11:03:47 -07:00
.gitignore Revert "Synchronize new proto/yaml changes." (#554) 2019-05-29 14:23:10 -07:00
BUILD.bazel Use rules_proto bzl files to load proto_library 2019-11-13 22:28:15 -08:00
CONTRIBUTING.md Revert "Synchronize new proto/yaml changes." (#554) 2019-05-29 14:23:10 -07:00
LICENSE Revert "Synchronize new proto/yaml changes." (#554) 2019-05-29 14:23:10 -07:00
Makefile Revert "Synchronize new proto/yaml changes." (#554) 2019-05-29 14:23:10 -07:00
PACKAGES.md Revert "Synchronize new proto/yaml changes." (#554) 2019-05-29 14:23:10 -07:00
README.md Change the min Bazel version to 0.29.1. (#580) 2019-09-18 13:54:41 -07:00
WORKSPACE Use rules_proto bzl files to load proto_library 2019-11-13 22:28:15 -08:00
repository_rules.bzl Integrate GAPIC Python Bazel Extensions 2019-11-08 15:45:31 -08:00

README.md

Google APIs

This repository contains the original interface definitions of public Google APIs that support both REST and gRPC protocols. Reading the original interface definitions can provide a better understanding of Google APIs and help you to utilize them more efficiently. You can also use these definitions with open source tools to generate client libraries, documentation, and other artifacts.

Building

Bazel

The recommended way to build the API client libraries is through Bazel >= 0.29.1.

First, install bazel.

To build all libraries:

bazel build //...

To test all libraries:

bazel test //...

To build one library in all languages:

bazel build //google/example/library/v1/...

To build the Java package for one library:

bazel build //google/example/library/v1:google-cloud-library-v1-java

Bazel packages exist in all the libraries for Java and Go.

Artman

API client libraries can be built directly from files in this repo using Artman. The latest generation status can be tracked here which currently has status CircleCI.

To build the Java package for one library:

artman --config google/example/library/artman_library_example_v1.yaml generate java_gapic

Artman can only build one library in one language at a time.

For more details on all Google APIs and developer tools, see the Google Developers site.

Overview

Google APIs are typically deployed as API services that are hosted under different DNS names. One API service may implement multiple APIs and multiple versions of the same API.

Google APIs use Protocol Buffers version 3 (proto3) as their Interface Definition Language (IDL) to define the API interface and the structure of the payload messages. The same interface definition is used for both REST and RPC versions of the API, which can be accessed over different wire protocols.

There are several ways of accessing Google APIs:

  1. JSON over HTTP: You can access all Google APIs directly using JSON over HTTP, using Google API client library or third-party API client libraries.

  2. Protocol Buffers over gRPC: You can access Google APIs published in this repository through GRPC, which is a high-performance binary RPC protocol over HTTP/2. It offers many useful features, including request/response multiplex and full-duplex streaming.

  3. Google Cloud Client Libraries: You can use these libraries to access Google Cloud APIs. They are based on gRPC for better performance and provide idiomatic client surface for better developer experience.

Discussions

This repo contains copies of Google API definitions and related files. For discussions or to raise issues about Google API client libraries, GRPC or Google Cloud Client Libraries please refer to the repos associated with each area.

Repository Structure

This repository uses a directory hierarchy that reflects the Google API product structure. In general, every API has its own root directory, and each major version of the API has its own subdirectory. The proto package names exactly match the directory: this makes it easy to locate the proto definitions and ensures that the generated client libraries have idiomatic namespaces in most programming languages. Alongside the API directories live the configuration files for the GAPIC toolkit.

NOTE: The major version of an API is used to indicate breaking change to the API.

Generate gRPC Source Code

To generate gRPC source code for Google APIs in this repository, you first need to install both Protocol Buffers and gRPC on your local machine, then you can run make LANGUAGE=xxx all to generate the source code. You need to integrated the generated source code into your application build system.

NOTE: The Makefile is only intended to generate source code for the entire repository. It is not for generating linkable client library for a specific API. Please see other repositories under https://github.com/googleapis for generating linkable client libraries.

Go gRPC Source Code

It is difficult to generate Go gRPC source code from this repository, since Go has different directory structure. Please use this repository instead.