No description
Find a file
Google APIs 43e5337896 feat: update Go Datastore import path
feat: update Go Bigtable import path
feat: release MetadataJob APIs and related resources in GA
feat: expose create time in DataScanJobAPI
docs: correct API documentation
feat: release metadata export in private preview
feat: Add data_version field to AspectSource
docs: add info about schema changes for BigQuery metadata in Dataplex Catalog
docs: Add Identifier for `name` in message `.google.cloud.dataplex.v1.MetadataJob` per https://google.aip.dev/cloud/2510
docs: Add comment for field `type` in message `.google.cloud.dataplex.v1.MetadataJob` per https://linter.aip.dev/192/has-comments
docs: Add comment for field `status` in message `.google.cloud.dataplex.v1.MetadataJob` per https://linter.aip.dev/192/has-comments
docs: Add link to fully qualified names documentation
feat: add annotations in CreateMetadataJob, GetMetadataJob, ListMetaDataJobs and CancelMetadataJob for cloud audit logging
feat: Add new Data Discovery scan type in Datascan
docs: Scrub descriptions for standalone discovery scans
docs: correct the dimensions for data quality rules
feat: A new field `suspended` is added to DataScans
feat: expose create time to customers
feat: Add a TABLE_PUBLISHED field in DiscoveryEvent
feat: Add a TABLE_UPDATED field in DiscoveryEvent
feat: Add a TABLE_IGNORED field in DiscoveryEvent
feat: Add a TABLE_DELETED field in DiscoveryEvent
feat: Add a DATA_DISCOVERY enum type in DataScanEvent
feat: Add a DataDiscoveryAppliedConfigs message
docs: A comment for message `DataScanEvent` is changed
feat: Add an Issue field to DiscoveryEvent.ActionDetails to output the action message in Cloud Logs
feat: A new enum `TableType` is added
feat: A new message `TableDetails` is added
feat: A new field `datascan_id` is added to message `.google.cloud.dataplex.v1.DiscoveryEvent`
feat: A new field `table` is added to message `.google.cloud.dataplex.v1.DiscoveryEvent`
docs: Dataplex Tasks do not support Dataplex Content path as a direct input anymore

PiperOrigin-RevId: 696600248
2024-11-14 11:47:34 -08:00
.cloudbuild Synchronize new proto/yaml changes. 2019-06-14 16:35:53 -07:00
.github build: update API index via PR from fork 2024-11-12 14:05:13 -08:00
.kokoro build: update Docker image to the newer one 2023-05-31 14:45:19 -07:00
gapic/metadata docs: Fix typo in comment for rpcs field of ServiceAsClient 2024-05-09 07:25:41 -07:00
google feat: update Go Datastore import path 2024-11-14 11:47:34 -08:00
grafeas feat: A new field version is added to message .grafeas.v1.ComplianceOccurrence 2024-07-29 13:02:22 -07:00
.bazeliskrc build: Update protobuf to 25.2 in WORKSPACE 2024-01-31 18:59:57 -08:00
.bazelrc build: do not create bazel convenience symlinks 2024-02-16 11:36:13 -08:00
.gitignore chore: Ignore .vscode folder (#906) 2024-06-26 10:37:01 -04:00
api-index-v1.json chore: regenerate API index 2024-11-13 07:24:07 -05:00
BUILD.bazel build: make build_gen an internal task 2023-11-30 11:45:50 -08:00
CODE_OF_CONDUCT.md chore: add a Code of Conduct (#645) 2021-03-25 15:00:12 -07: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 chore: fix typo in PACKAGES.md (#715) 2022-04-26 14:48:03 -04:00
README.md fix: Replace invalid example bazel command in README (#804) 2023-12-14 16:42:25 -08:00
repository_rules.bzl chore(bazel): add go_grpc_library repository rule 2024-01-11 07:47:34 -08:00
SECURITY.md chore: add SECURITY.md (#648) 2021-05-11 11:14:45 -07:00
WORKSPACE chore: update gapic-generator-go to 0.48.0 2024-11-13 14:58:17 -08:00

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

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