Synchronize new proto changes.

This commit is contained in:
googleapis-publisher 2017-03-15 22:01:24 -07:00
parent 938243a499
commit 33ec3ad0f9
1 changed files with 8 additions and 3 deletions

View File

@ -22,11 +22,11 @@ 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 two ways of accessing Google APIs:
There are several ways of accessing Google APIs:
1. JSON over HTTP: You can access Google APIs directly using JSON
1. JSON over HTTP: You can access all Google APIs directly using JSON
over HTTP, using
[Google API client libraries](https://developers.google.com/api-client-libraries)
[Google API client library](https://developers.google.com/api-client-library)
or third-party API client libraries.
2. Protocol Buffers over gRPC: You can access Google APIs published
@ -35,6 +35,11 @@ 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](https://cloud.google.com/apis/docs/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
Please use GitHub Issues to discuss bugs and features related to this