All Projects → googleapis → Googleapis

googleapis / Googleapis

Licence: apache-2.0
Public interface definitions of Google APIs.

Programming Languages

Starlark
911 projects

Projects that are alternatives of or similar to Googleapis

rprotobuf
R Interface to Protocol Buffers
Stars: ✭ 62 (-98.54%)
Mutual labels:  protocol-buffers
protopatch
protoc-gen-go patch utility
Stars: ✭ 58 (-98.64%)
Mutual labels:  protocol-buffers
ppx deriving protobuf
A Protocol Buffers codec generator for OCaml
Stars: ✭ 76 (-98.21%)
Mutual labels:  protocol-buffers
grpc-chat
Simple Chat Server/Client implemented with gRPC
Stars: ✭ 107 (-97.49%)
Mutual labels:  protocol-buffers
protocell
Conjures up convenient OCaml types and serialization functions based on protobuf definition files
Stars: ✭ 18 (-99.58%)
Mutual labels:  protocol-buffers
iGap-API
iGap Core Messaging offer Open APIs for developers . This API allows you to build your own customized iGap clients.
Stars: ✭ 22 (-99.48%)
Mutual labels:  protocol-buffers
protoc-plugin
A protoc compiler plugin for Clojure applications
Stars: ✭ 28 (-99.34%)
Mutual labels:  protocol-buffers
Protobuf
C# code generator for reading and writing the protocol buffers format
Stars: ✭ 260 (-93.89%)
Mutual labels:  protocol-buffers
dalal-street-server
Server for Pragyan's Dalal Street
Stars: ✭ 65 (-98.47%)
Mutual labels:  protocol-buffers
rails-microservices-book
A guide to building distributed Ruby on Rails applications using Protocol Buffers, NATS and RabbitMQ
Stars: ✭ 23 (-99.46%)
Mutual labels:  protocol-buffers
protobuf-d
Protocol Buffers Compiler Plugin and Support Library for D
Stars: ✭ 32 (-99.25%)
Mutual labels:  protocol-buffers
javascript-serialization-benchmark
Comparison and benchmark of JavaScript serialization libraries (Protocol Buffer, Avro, BSON, etc.)
Stars: ✭ 54 (-98.73%)
Mutual labels:  protocol-buffers
remoteAudio
Audio streaming application for Amateur Radio purposes
Stars: ✭ 121 (-97.16%)
Mutual labels:  protocol-buffers
agentgo
Hi! Agentgo is a tool for making remote command executions from server to client with golang, protocol buffers (protobuf) and grpc.
Stars: ✭ 15 (-99.65%)
Mutual labels:  protocol-buffers
ocaml-pb-plugin
A protoc plugin for generating OCaml code from protobuf (.proto) files.
Stars: ✭ 18 (-99.58%)
Mutual labels:  protocol-buffers
grpc-graphql-gateway
A protoc plugin that generates graphql execution code from Protocol Buffers.
Stars: ✭ 239 (-94.38%)
Mutual labels:  protocol-buffers
aip-go
Go SDK for implementing resource-oriented gRPC APIs.
Stars: ✭ 47 (-98.9%)
Mutual labels:  protocol-buffers
Gunk
Modern frontend and syntax for Protocol Buffers
Stars: ✭ 305 (-92.83%)
Mutual labels:  protocol-buffers
AndTTT
🎲 Simple tic tac toe game for Android
Stars: ✭ 15 (-99.65%)
Mutual labels:  protocol-buffers
nimpb
Protocol Buffers for Nim
Stars: ✭ 29 (-99.32%)
Mutual labels:  protocol-buffers

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 >= 2.0.0.

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, Go, Python, Ruby, Node.js, PHP and C#.

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 integrate 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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].