A summary of data about the Ruby ecosystem.

https://github.com/googleapis/google-api-ruby-client

REST client for Google APIs
https://github.com/googleapis/google-api-ruby-client

Keywords from Contributors

activerecord activejob mvc rack rspec rubygems sinatra marshalling rubocop ruby-gem

Last synced: about 9 hours ago
JSON representation

Repository metadata

REST client for Google APIs

README.md

Simple REST Clients for Google APIs

This repository contains a set of simple client libraries for various Google APIs. These libraries are generated automatically from Discovery Documents, and the code generator is also hosted here in this repository.

Each client provides:

  • A client object that connects to the HTTP/JSON REST endpoint for the service.
  • Ruby objects for data structures related to the service.
  • Integration with the googleauth gem for authentication using OAuth, API keys, and service accounts.
  • Control of retry, pagination, and timeouts.

These client libraries are officially supported by Google, and are updated regularly to track changes to the service. However, many Google services, especially Google Cloud Platform services such as Cloud Storage, Pub/Sub, and BigQuery, may provide a more modern client that is easier to use and more performant. See the section below titled "Which client should I use?" for more information.

Using the clients

The client gems are named according to the pattern google-apis-<servicename>_<serviceversion>. For example, the client for the Google Drive V3 API is google-apis-drive_v3.

Install the client using gem install or by adding it to your Gemfile. Then, to use it, require the file and instantiate the service. For example to use the Drive API:

require 'google/apis/drive_v3'

drive = Google::Apis::DriveV3::DriveService.new
drive.authorization = ... # See Googleauth or Signet libraries

# Search for files in Drive (first page only)
files = drive.list_files(q: "title contains 'finances'")
files.items.each do |file|
  puts file.title
end

# Upload a file
metadata = Google::Apis::DriveV3::File.new(name: 'test.txt')
metadata = drive.create_file(metadata, upload_source: '/tmp/test.txt', content_type: 'text/plain')

# Download a file
drive.get_file(metadata.id, download_dest: '/tmp/downloaded-test.txt')

Following is another example using the Content API (Google Merchant Center), provided by the google-apis-content_v2_1 gem:

require 'google/apis/content_v2_1'
require 'googleauth' # https://github.com/googleapis/google-auth-library-ruby

content = Google::Apis::ContentV2_1::ShoppingContentService.new

scope = 'https://www.googleapis.com/auth/content'
merchant_id = # Merchant ID found on dashboard

content.authorization = Google::Auth::ServiceAccountCredentials.make_creds(
  json_key_io: File.open('./content-api-key.json'),
  scope: scope)

content.authorization.fetch_access_token!
# Service methods: https://rubydoc.info/gems/google-apis-content_v2_1/Google/Apis/ContentV2_1/ShoppingContentService
content.list_datafeeds(merchant_id) # Returns Google::Apis::ContentV2_1::ListDatafeedsResponse

For more detailed information, see the Usage Guide.

Which client should I use?

Google provides two types of Ruby API client libraries: simple REST clients and modern clients.

The libraries in this repo are simple REST clients. These clients connect to HTTP/JSON REST endpoints and are automatically generated from service discovery documents. They support most API functionality, but their class interfaces are sometimes awkward.

Modern clients are produced by a modern code generator, combined with hand-crafted functionality for some services. Most modern clients connect to high-performance gRPC endpoints, although a few are backed by REST services. Modern clients are available for many Google services, especially Cloud Platform services, but do not yet support all the services covered by the simple clients. Most modern clients live in the https://github.com/googleapis/google-cloud-ruby repository.

For most users, we recommend the modern client, if one is available. Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.

The documentation for the particular Google service you are working with, may provide guidance regarding the preferred client library to use.

Tracing

OpenCensus support with gems is now deprecated. Please migrate to using OpenTelemetry instead. Currently instrumented span data from core gem can be got by enabling Http and HttpClient auto-instrumentation of OpenTelemetry. To enable instrumentation for HTTP and HttpClient, and export it to Cloud Trace configure OpenTelemetry like below,

 gem "opentelemetry-sdk"
 gem "opentelemetry-exporter-google_cloud_trace"
 gem "opentelemetry-instrumentation-http"
 gem "opentelemetry-instrumentation-http_client"
 
 require "opentelemetry-sdk"
 require "opentelemetry/instrumentation/http_client"
 require "opentelemetry/instrumentation/http"
 require "opentelemetry/exporter/google_cloud_trace"
 OpenTelemetry::SDK.configure do |c|
   c.service_name = "ServiceName"
   c.add_span_processor(
     OpenTelemetry::SDK::Trace::Export::BatchSpanProcessor.new(
       OpenTelemetry::Exporter::GoogleCloudTrace::SpanExporter.new
     )
   )
   c.use "OpenTelemetry::Instrumentation::Http"
   c.use "OpenTelemetry::Instrumentation::HttpClient"
 end

Samples

See the samples for examples on how to use the client library for various
services.

Supported Ruby versions

This library is supported on Ruby 3.1+.

Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.7 and later. Older versions of Ruby may still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.

License

This library is licensed under Apache 2.0. Full license text is available in the LICENSE.

Contributing

See CONTRIBUTING.

Support

Please report bugs at the project on Github. Don't hesitate to ask questions about the client or APIs on StackOverflow.


Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 3 days ago

Total Commits: 25,135
Total Committers: 152
Avg Commits per committer: 165.362
Development Distribution Score (DDS): 0.333

Commits in past year: 3,885
Committers in past year: 11
Avg Commits per committer in past year: 353.182
Development Distribution Score (DDS) in past year: 0.007

Name Email Commits
yoshi-code-bot 7****t 16774
Yoshi Automation Bot y****n@g****m 6244
Google APIs g****r@g****m 919
Steven Bazyl s****l@g****m 320
Bob Aman b****n@g****m 200
Daniel Azuma d****a@g****m 188
Sai Cheemalapati s****s@g****m 38
Volker Zöpfel v****r@z****e 28
Neha Bajaj b****7 24
release-please[bot] 5****] 23
Sergio Gomes s****s@g****m 23
bobaman@google.com b****n@g****m@c****f 22
Thomas Coffee t****e@g****m 19
Abdelkader Boudih t****e@g****m 18
Yosuke Kabuto b****2@g****m 13
Mike Moore m****e@b****m 13
Simone Carletti w****s@w****t 9
WhiteSource Renovate b****t@r****m 9
Tim Emiola t****a@g****m 9
joker1007 k****t@g****m 8
Graham Paye g****8@g****m 8
mattpok@google.com m****k@g****m@c****f 8
Ruslan Korolev r****1@g****m 7
sanemat o****n@g****m 6
Ethan e****n@m****a 6
Graham Paye p****e@g****m 6
tknzk t****k@g****m 5
André Andreassa a****a 5
Michael C. Beck m****k@q****m 5
Shubhangi Singh s****n@g****m 4
and 122 more...

Committer domains:


Issue and Pull Request metadata

Last synced: 3 days ago

Total issues: 126
Total pull requests: 13,470
Average time to close issues: 7 months
Average time to close pull requests: about 18 hours
Total issue authors: 83
Total pull request authors: 46
Average comments per issue: 1.78
Average comments per pull request: 0.09
Merged pull request: 12,079
Bot issues: 3
Bot pull requests: 34

Past year issues: 14
Past year pull requests: 4,361
Past year average time to close issues: 5 days
Past year average time to close pull requests: about 15 hours
Past year issue authors: 9
Past year pull request authors: 15
Past year average comments per issue: 0.21
Past year average comments per pull request: 0.07
Past year merged pull request: 3,936
Past year bot issues: 0
Past year bot pull requests: 11

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/googleapis/google-api-ruby-client

Top Issue Authors

  • yoshi-code-bot (40)
  • monkeyWzr (2)
  • yahonda (2)
  • thomaswitt (2)
  • failure-checker[bot] (2)
  • ChrisCPO (1)
  • menporulporiayalan (1)
  • pmcam (1)
  • Set27 (1)
  • talothman (1)
  • dazuma (1)
  • katamotokosuke (1)
  • javierjulio (1)
  • mijoharas (1)
  • aBenVip (1)

Top Pull Request Authors

  • yoshi-code-bot (13,258)
  • dazuma (66)
  • release-please[bot] (31)
  • yoshi-automation (22)
  • aandreassa (11)
  • shubhangi-google (10)
  • shivgautam (9)
  • suztomo (5)
  • yahonda (4)
  • kurajiv (4)
  • byroot (4)
  • viacheslav-rostovtsev (2)
  • simi (2)
  • ydah (2)
  • allan-pires (2)

Top Issue Labels

  • kokoro:force-run (29)
  • automerge (18)
  • type: question (14)
  • automerge: exact (10)
  • :rotating_light: (9)
  • triage me (6)
  • type: process (5)
  • type: feature request (4)
  • type: bug (3)
  • priority: p2 (2)
  • feature (1)
  • clusterProfiler (1)
  • enrichplot (1)
  • status: investigating (1)
  • api: docs (1)
  • samples (1)
  • api: sheets (1)
  • type: docs (1)
  • type: cleanup (1)

Top Pull Request Labels

  • kokoro:force-run (12,330)
  • automerge: exact (2,581)
  • automerge (2,448)
  • cla: yes (26)
  • autorelease: pending (18)
  • autorelease: published (9)
  • do not merge (6)
  • samples (4)
  • autorelease: tagged (4)
  • cla: no (1)
  • bug (1)
  • kokoro:run (1)

Package metadata

gem.coop: google-apis-core

Common utility and base classes for legacy Google REST clients

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-core/
  • Licenses: Apache-2.0
  • Latest release: 1.0.2 (published 6 months ago)
  • Last Synced: 2026-03-02T06:31:51.333Z (2 days ago)
  • Versions: 36
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 242,025,778 Total
  • Docker Downloads: 539,579,151
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.037%
    • Downloads: 0.11%
  • Maintainers (1)
gem.coop: google-apis-iamcredentials_v1

This is the simple REST client for IAM Service Account Credentials API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the IAM Service Account Credentials API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-iamcredentials_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.26.0 (published 4 months ago)
  • Last Synced: 2026-03-02T09:31:47.657Z (1 day ago)
  • Versions: 26
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 168,680,513 Total
  • Docker Downloads: 510,285,910
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.087%
    • Downloads: 0.156%
    • Docker downloads count: 0.194%
  • Maintainers (1)
gem.coop: google-apis-androidpublisher_v3

This is the simple REST client for Google Play Android Developer API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Play Android Developer API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-androidpublisher_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.96.0 (published 24 days ago)
  • Last Synced: 2026-03-02T07:31:51.406Z (2 days ago)
  • Versions: 96
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 131,435,493 Total
  • Docker Downloads: 449,255,043
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.111%
    • Downloads: 0.195%
    • Docker downloads count: 0.25%
  • Maintainers (1)
gem.coop: google-apis-generator

Code generator for legacy Google REST clients

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-generator/
  • Licenses: Apache-2.0
  • Latest release: 0.18.0 (published 10 months ago)
  • Last Synced: 2026-03-02T06:31:20.791Z (2 days ago)
  • Versions: 24
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 37,003,542 Total
  • Docker Downloads: 367,065,546
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.223%
    • Downloads: 0.669%
  • Maintainers (1)
gem.coop: google-apis-cloudresourcemanager_v1

This is the simple REST client for Cloud Resource Manager API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Resource Manager API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-cloudresourcemanager_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.44.0 (published 9 months ago)
  • Last Synced: 2026-03-02T03:33:27.091Z (2 days ago)
  • Versions: 44
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21,926,040 Total
  • Docker Downloads: 434,111,021
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.303%
    • Docker downloads count: 0.351%
    • Downloads: 0.861%
  • Maintainers (1)
gem.coop: google-apis-iam_v1

This is the simple REST client for Identity and Access Management (IAM) API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Identity and Access Management (IAM) API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-iam_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.83.0 (published about 1 month ago)
  • Last Synced: 2026-03-01T20:31:28.083Z (2 days ago)
  • Versions: 83
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21,220,552 Total
  • Docker Downloads: 434,111,021
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.305%
    • Docker downloads count: 0.351%
    • Downloads: 0.871%
  • Maintainers (1)
gem.coop: google-apis-firebaseappdistribution_v1

This is the simple REST client for Firebase App Distribution API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Firebase App Distribution API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-firebaseappdistribution_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published about 1 month ago)
  • Last Synced: 2026-03-01T20:31:29.629Z (2 days ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21,367,733 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.315%
    • Downloads: 0.945%
  • Maintainers (1)
gem.coop: google-apis-drive_v3

This is the simple REST client for Google Drive API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Drive API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-drive_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.78.0 (published 3 days ago)
  • Last Synced: 2026-03-02T08:02:04.842Z (2 days ago)
  • Versions: 78
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 24,227,346 Total
  • Docker Downloads: 343,526
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.613%
    • Downloads: 0.865%
    • Docker downloads count: 1.586%
  • Maintainers (1)
gem.coop: google-apis-identitytoolkit_v3

This is the simple REST client for Google Identity Toolkit API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Identity Toolkit API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-identitytoolkit_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.18.0 (published 10 months ago)
  • Last Synced: 2026-03-02T07:03:17.463Z (2 days ago)
  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,597,407 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.638%
    • Downloads: 1.914%
  • Maintainers (1)
gem.coop: google-apis-sheets_v4

This is the simple REST client for Google Sheets API V4. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Sheets API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-sheets_v4/
  • Licenses: Apache-2.0
  • Latest release: 0.47.0 (published 10 days ago)
  • Last Synced: 2026-03-02T03:02:59.748Z (2 days ago)
  • Versions: 47
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 24,822,653 Total
  • Docker Downloads: 188
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.815%
    • Downloads: 0.858%
    • Docker downloads count: 2.4%
  • Maintainers (1)
rubygems.org: google-apis-iamcredentials_v1

This is the simple REST client for IAM Service Account Credentials API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the IAM Service Account Credentials API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-iamcredentials_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.26.0 (published 4 months ago)
  • Last Synced: 2026-03-02T02:32:46.457Z (2 days ago)
  • Versions: 26
  • Dependent Packages: 5
  • Dependent Repositories: 10,056
  • Downloads: 168,643,924 Total
  • Docker Downloads: 510,285,910
  • Rankings:
    • Downloads: 0.219%
    • Docker downloads count: 0.272%
    • Dependent repos count: 0.332%
    • Forks count: 0.522%
    • Stargazers count: 0.739%
    • Average: 0.816%
    • Dependent packages count: 2.811%
  • Maintainers (1)
gem.coop: google-apis-mybusinessaccountmanagement_v1

This is the simple REST client for My Business Account Management API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the My Business Account Management API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-mybusinessaccountmanagement_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published 8 months ago)
  • Last Synced: 2026-03-02T05:03:03.521Z (2 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 984,453 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.107%
    • Downloads: 3.321%
  • Maintainers (1)
rubygems.org: google-apis-storage_v1

This is the simple REST client for Cloud Storage JSON API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Storage JSON API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-storage_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.61.0 (published 10 days ago)
  • Last Synced: 2026-03-02T00:32:16.483Z (2 days ago)
  • Versions: 61
  • Dependent Packages: 4
  • Dependent Repositories: 10,055
  • Downloads: 174,386,651 Total
  • Docker Downloads: 510,285,910
  • Rankings:
    • Downloads: 0.214%
    • Docker downloads count: 0.272%
    • Dependent repos count: 0.332%
    • Forks count: 0.522%
    • Stargazers count: 0.739%
    • Average: 1.219%
    • Dependent packages count: 5.237%
  • Maintainers (1)
rubygems.org: google-apis-drive_v3

This is the simple REST client for Google Drive API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Drive API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-drive_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.78.0 (published 3 days ago)
  • Last Synced: 2026-03-01T22:03:31.207Z (2 days ago)
  • Versions: 78
  • Dependent Packages: 15
  • Dependent Repositories: 156
  • Downloads: 24,219,153 Total
  • Docker Downloads: 343,526
  • Rankings:
    • Forks count: 0.473%
    • Stargazers count: 0.69%
    • Downloads: 1.018%
    • Average: 1.329%
    • Dependent packages count: 1.719%
    • Docker downloads count: 1.729%
    • Dependent repos count: 2.344%
  • Maintainers (1)
gem.coop: google-apis-content_v2_1

This is the simple REST client for Content API for Shopping V2_1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Content API for Shopping, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-content_v2_1/
  • Licenses: Apache-2.0
  • Latest release: 0.50.0 (published about 1 month ago)
  • Last Synced: 2026-03-01T21:31:42.568Z (2 days ago)
  • Versions: 50
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 608,854 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.394%
    • Downloads: 4.182%
  • Maintainers (1)
gem.coop: google-apis-docs_v1

This is the simple REST client for Google Docs API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Docs API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-docs_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.41.0 (published about 2 months ago)
  • Last Synced: 2026-03-02T09:02:01.954Z (1 day ago)
  • Versions: 41
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 553,721 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.472%
    • Downloads: 4.416%
  • Maintainers (1)
rubygems.org: google-apis-sheets_v4

This is the simple REST client for Google Sheets API V4. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Sheets API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-sheets_v4/
  • Licenses: Apache-2.0
  • Latest release: 0.47.0 (published 10 days ago)
  • Last Synced: 2026-03-02T08:02:23.879Z (2 days ago)
  • Versions: 47
  • Dependent Packages: 12
  • Dependent Repositories: 146
  • Downloads: 24,828,086 Total
  • Docker Downloads: 188
  • Rankings:
    • Forks count: 0.473%
    • Stargazers count: 0.69%
    • Downloads: 1.017%
    • Average: 1.568%
    • Dependent packages count: 2.013%
    • Dependent repos count: 2.41%
    • Docker downloads count: 2.805%
  • Maintainers (1)
gem.coop: google-apis-forms_v1

This is the simple REST client for Google Forms API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Forms API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-forms_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.19.0 (published 10 months ago)
  • Last Synced: 2026-03-02T01:01:44.264Z (2 days ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 302,025 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.801%
    • Downloads: 5.403%
  • Maintainers (1)
rubygems.org: google-apis-discovery_v1

This is the simple REST client for API Discovery Service V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the API Discovery Service, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-discovery_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.20.0 (published 10 months ago)
  • Last Synced: 2026-03-02T08:02:33.821Z (2 days ago)
  • Versions: 21
  • Dependent Packages: 2
  • Dependent Repositories: 663
  • Downloads: 36,730,185 Total
  • Docker Downloads: 367,065,546
  • Rankings:
    • Forks count: 0.473%
    • Docker downloads count: 0.483%
    • Downloads: 0.682%
    • Stargazers count: 0.69%
    • Dependent repos count: 1.382%
    • Average: 1.892%
    • Dependent packages count: 7.642%
  • Maintainers (1)
rubygems.org: google-apis-monitoring_v3

This is the simple REST client for Cloud Monitoring API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Monitoring API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-monitoring_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.84.0 (published 24 days ago)
  • Last Synced: 2026-03-02T00:33:17.103Z (2 days ago)
  • Versions: 84
  • Dependent Packages: 2
  • Dependent Repositories: 391
  • Downloads: 30,871,419 Total
  • Docker Downloads: 446,684,782
  • Rankings:
    • Docker downloads count: 0.327%
    • Forks count: 0.473%
    • Stargazers count: 0.69%
    • Downloads: 1.14%
    • Dependent repos count: 1.671%
    • Average: 1.991%
    • Dependent packages count: 7.642%
  • Maintainers (1)
gem.coop: google-apis-firestore_v1

This is the simple REST client for Cloud Firestore API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Firestore API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-firestore_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.90.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:19.403Z (5 days ago)
  • Versions: 90
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 182,192 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.452%
    • Downloads: 7.357%
  • Maintainers (1)
gem.coop: google-apis-securitycenter_v1

This is the simple REST client for Security Command Center API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Security Command Center API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-securitycenter_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.114.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:20.301Z (5 days ago)
  • Versions: 114
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 90,816 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.462%
    • Downloads: 10.386%
  • Maintainers (1)
gem.coop: google-apis-gkehub_v1

This is the simple REST client for GKE Hub API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the GKE Hub API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-gkehub_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.96.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:20.119Z (5 days ago)
  • Versions: 96
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 80,988 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.739%
    • Downloads: 11.217%
  • Maintainers (1)
gem.coop: google-apis-securitycenter_v1beta2

This is the simple REST client for Security Command Center API V1beta2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Security Command Center API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-securitycenter_v1beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.96.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:19.913Z (5 days ago)
  • Versions: 96
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 73,434 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.001%
    • Downloads: 12.003%
  • Maintainers (1)
gem.coop: google-apis-servicenetworking_v1beta

This is the simple REST client for Service Networking API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Service Networking API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-servicenetworking_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.70.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:20.410Z (5 days ago)
  • Versions: 70
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 57,557 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.64%
    • Downloads: 13.919%
  • Maintainers (1)
gem.coop: google-apis-networkmanagement_v1

This is the simple REST client for Network Management API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Network Management API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-networkmanagement_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.79.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.046Z (5 days ago)
  • Versions: 79
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 57,318 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.886%
    • Downloads: 14.659%
  • Maintainers (1)
gem.coop: google-apis-sasportal_v1alpha1

This is the simple REST client for SAS Portal API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the SAS Portal API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-sasportal_v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.43.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:24.450Z (5 days ago)
  • Versions: 43
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 46,326 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.356%
    • Downloads: 16.067%
  • Maintainers (1)
gem.coop: google-apis-servicedirectory_v1beta1

This is the simple REST client for Service Directory API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Service Directory API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-servicedirectory_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.46.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:20.664Z (5 days ago)
  • Versions: 46
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 45,496 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.449%
    • Downloads: 16.346%
  • Maintainers (1)
gem.coop: google-apis-eventarc_v1beta1

This is the simple REST client for Eventarc API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Eventarc API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-eventarc_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.37.0 (published about 2 years ago)
  • Last Synced: 2026-02-26T15:02:24.907Z (5 days ago)
  • Versions: 37
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 43,967 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.599%
    • Downloads: 16.798%
  • Maintainers (1)
gem.coop: google-apis-servicedirectory_v1

This is the simple REST client for Service Directory API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Service Directory API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-servicedirectory_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.39.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:19.808Z (5 days ago)
  • Versions: 39
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 42,240 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.789%
    • Downloads: 17.367%
  • Maintainers (1)
gem.coop: google-apis-bigqueryreservation_v1

This is the simple REST client for BigQuery Reservation API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the BigQuery Reservation API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-bigqueryreservation_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.50.0 (published about 1 month ago)
  • Last Synced: 2026-02-26T15:02:25.429Z (5 days ago)
  • Versions: 50
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 42,270 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.835%
    • Downloads: 17.506%
  • Maintainers (1)
gem.coop: google-apis-reseller_v1

This is the simple REST client for Google Workspace Reseller API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Workspace Reseller API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-reseller_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.24.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:25.257Z (5 days ago)
  • Versions: 24
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 39,812 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.158%
    • Downloads: 18.474%
  • Maintainers (1)
rubygems.org: google-apis-analyticsreporting_v4

This is the simple REST client for Analytics Reporting API V4. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Analytics Reporting API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-analyticsreporting_v4/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published almost 2 years ago)
  • Last Synced: 2026-03-02T09:43:42.307Z (1 day ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 6
  • Downloads: 620,099 Total
  • Rankings:
    • Forks count: 0.475%
    • Stargazers count: 0.691%
    • Downloads: 4.777%
    • Average: 6.165%
    • Dependent repos count: 9.105%
    • Dependent packages count: 15.775%
  • Maintainers (1)
gem.coop: google-apis-deploymentmanager_alpha

This is the simple REST client for Cloud Deployment Manager V2 API Alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Deployment Manager V2 API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-deploymentmanager_alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.40.0 (published 3 months ago)
  • Last Synced: 2026-02-26T16:46:20.367Z (5 days ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 38,460 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.272%
    • Downloads: 18.815%
  • Maintainers (1)
gem.coop: google-apis-lifesciences_v2beta

This is the simple REST client for Cloud Life Sciences API V2beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Life Sciences API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-lifesciences_v2beta/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:23.777Z (5 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 37,009 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.306%
    • Downloads: 18.918%
  • Maintainers (1)
gem.coop: google-apis-vision_v1p1beta1

This is the simple REST client for Cloud Vision API V1p1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Vision API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-vision_v1p1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.31.0 (published 7 months ago)
  • Last Synced: 2026-02-26T17:41:15.029Z (5 days ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 32,095 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.006%
    • Downloads: 21.018%
  • Maintainers (1)
gem.coop: google-apis-policytroubleshooter_v1

This is the simple REST client for Policy Troubleshooter API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Policy Troubleshooter API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-policytroubleshooter_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:23.706Z (5 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 31,091 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.15%
    • Downloads: 21.451%
  • Maintainers (1)
rubygems.org: google-apis-people_v1

This is the simple REST client for People API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the People API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-people_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.42.0 (published 3 months ago)
  • Last Synced: 2026-03-01T21:50:46.900Z (2 days ago)
  • Versions: 42
  • Dependent Packages: 0
  • Dependent Repositories: 2
  • Downloads: 1,050,622 Total
  • Docker Downloads: 16
  • Rankings:
    • Forks count: 0.479%
    • Stargazers count: 0.695%
    • Downloads: 4.841%
    • Average: 7.449%
    • Dependent repos count: 15.451%
    • Dependent packages count: 15.779%
  • Maintainers (1)
gem.coop: google-apis-mybusinesslodging_v1

This is the simple REST client for My Business Lodging API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the My Business Lodging API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-mybusinesslodging_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.22.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:24.386Z (5 days ago)
  • Versions: 22
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 27,184 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 8.152%
    • Downloads: 24.457%
  • Maintainers (1)
gem.coop: google-apis-gkebackup_v1

This is the simple REST client for Backup for GKE API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Backup for GKE API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-gkebackup_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.58.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:19.414Z (5 days ago)
  • Versions: 58
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 29,200 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 8.227%
    • Downloads: 24.681%
  • Maintainers (1)
gem.coop: google-apis-walletobjects_v1

This is the simple REST client for Google Wallet API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Wallet API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-walletobjects_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.30.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:19.823Z (5 days ago)
  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 37,175 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 8.271%
    • Downloads: 24.813%
  • Maintainers (1)
rubygems.org: google-apis-secretmanager_v1

This is the simple REST client for Secret Manager API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Secret Manager API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-secretmanager_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.52.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:23.389Z (5 days ago)
  • Versions: 52
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 1,832,643 Total
  • Rankings:
    • Forks count: 0.478%
    • Stargazers count: 0.694%
    • Downloads: 2.941%
    • Average: 8.323%
    • Dependent packages count: 15.777%
    • Dependent repos count: 21.723%
  • Maintainers (1)
gem.coop: google-apis-trafficdirector_v2

This is the simple REST client for Traffic Director API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Traffic Director API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-trafficdirector_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published 6 months ago)
  • Last Synced: 2026-02-26T15:02:23.751Z (5 days ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 25,571 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 8.399%
    • Downloads: 25.197%
  • Maintainers (1)
rubygems.org: google-apis-indexing_v3

This is the simple REST client for Web Search Indexing API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Web Search Indexing API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-indexing_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.18.0 (published 10 months ago)
  • Last Synced: 2026-03-02T10:06:07.153Z (1 day ago)
  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 563,828 Total
  • Rankings:
    • Forks count: 0.475%
    • Stargazers count: 0.691%
    • Downloads: 5.676%
    • Average: 8.869%
    • Dependent packages count: 15.775%
    • Dependent repos count: 21.728%
  • Maintainers (1)
rubygems.org: google-apis-docs_v1

This is the simple REST client for Google Docs API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Docs API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-docs_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.41.0 (published about 2 months ago)
  • Last Synced: 2026-03-02T10:06:24.345Z (1 day ago)
  • Versions: 41
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 553,721 Total
  • Rankings:
    • Forks count: 0.474%
    • Stargazers count: 0.69%
    • Downloads: 6.45%
    • Average: 9.025%
    • Dependent packages count: 15.776%
    • Dependent repos count: 21.735%
  • Maintainers (1)
rubygems.org: google-apis-oslogin_v1

This is the simple REST client for Cloud OS Login API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud OS Login API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-oslogin_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.28.0 (published 3 months ago)
  • Last Synced: 2026-02-26T15:02:23.836Z (5 days ago)
  • Versions: 28
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 61,588 Total
  • Rankings:
    • Forks count: 0.475%
    • Stargazers count: 0.691%
    • Dependent packages count: 7.751%
    • Average: 10.768%
    • Dependent repos count: 21.725%
    • Downloads: 23.198%
  • Maintainers (1)
rubygems.org: google-apis-kgsearch_v1

This is the simple REST client for Knowledge Graph Search API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Knowledge Graph Search API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-kgsearch_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:25.299Z (5 days ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 3
  • Downloads: 34,966 Total
  • Rankings:
    • Forks count: 0.474%
    • Stargazers count: 0.69%
    • Average: 11.239%
    • Dependent repos count: 12.652%
    • Dependent packages count: 15.774%
    • Downloads: 26.604%
  • Maintainers (1)
rubygems.org: google-apis-apigee_v1

This is the simple REST client for Apigee API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Apigee API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-apigee_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.121.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:22.487Z (5 days ago)
  • Versions: 121
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 145,217 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Downloads: 8.595%
    • Average: 14.469%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudkms_v1

This is the simple REST client for Cloud Key Management Service (KMS) API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Key Management Service (KMS) API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-cloudkms_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.71.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.481Z (5 days ago)
  • Versions: 71
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 766,983 Total
  • Rankings:
    • Forks count: 0.519%
    • Stargazers count: 0.701%
    • Downloads: 8.996%
    • Average: 14.541%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-compute_beta

This is the simple REST client for Compute Engine API Beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Compute Engine API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-compute_beta/
  • Licenses: Apache-2.0
  • Latest release: 0.135.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.619Z (5 days ago)
  • Versions: 135
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 136,715 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.805%
    • Downloads: 12.203%
    • Average: 15.22%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-dialogflow_v2beta1

This is the simple REST client for Dialogflow API V2beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Dialogflow API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dialogflow_v2beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.119.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:22.518Z (5 days ago)
  • Versions: 119
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 99,102 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Downloads: 13.66%
    • Average: 15.448%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-compute_alpha

This is the simple REST client for Compute Engine API Alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Compute Engine API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-compute_alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.133.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.646Z (5 days ago)
  • Versions: 133
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 98,531 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Downloads: 13.619%
    • Average: 15.495%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-apis-merchantapi_accounts_v1beta

This is the simple REST client for Merchant API AccountsV1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Merchant API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-merchantapi_accounts_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.32.0 (published 10 days ago)
  • Last Synced: 2026-02-28T16:01:36.405Z (3 days ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 13,472 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 15.718%
    • Downloads: 47.155%
  • Maintainers (1)
rubygems.org: google-apis-dataflow_v1b3

This is the simple REST client for Dataflow API V1b3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Dataflow API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dataflow_v1b3/
  • Licenses: Apache-2.0
  • Latest release: 0.78.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.891Z (5 days ago)
  • Versions: 78
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 82,784 Total
  • Rankings:
    • Forks count: 0.452%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 15.937%
    • Downloads: 16.116%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-gkehub_v1alpha

This is the simple REST client for GKE Hub API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the GKE Hub API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-gkehub_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.104.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:22.640Z (5 days ago)
  • Versions: 104
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 79,523 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 16.054%
    • Downloads: 16.689%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-notebooks_v1

This is the simple REST client for Notebooks API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Notebooks API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-notebooks_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.63.0 (published 24 days ago)
  • Last Synced: 2026-02-26T15:02:24.545Z (5 days ago)
  • Versions: 63
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 62,648 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 16.076%
    • Downloads: 16.797%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudscheduler_v1

This is the simple REST client for Cloud Scheduler API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Scheduler API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-cloudscheduler_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.44.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.279Z (5 days ago)
  • Versions: 44
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 41,403 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 7.713%
    • Average: 16.155%
    • Downloads: 25.019%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-apis-appengine_v1beta5

This is the simple REST client for App Engine Admin API V1beta5. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the App Engine Admin API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-appengine_v1beta5/
  • Licenses: Apache-2.0
  • Latest release: 0.2.0 (published almost 5 years ago)
  • Last Synced: 2026-02-28T16:01:35.361Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,371 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 16.248%
    • Downloads: 48.745%
  • Maintainers (1)
rubygems.org: google-apis-run_v1alpha1

This is the simple REST client for Cloud Run Admin API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Run Admin API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-run_v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published over 3 years ago)
  • Last Synced: 2026-02-26T15:02:25.111Z (5 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 44,428 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.887%
    • Dependent packages count: 15.706%
    • Average: 16.515%
    • Downloads: 18.594%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-artifactregistry_v1beta1

This is the simple REST client for Artifact Registry API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Artifact Registry API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-artifactregistry_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.56.0 (published 17 days ago)
  • Last Synced: 2026-03-02T10:05:09.929Z (1 day ago)
  • Versions: 56
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 55,299 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.805%
    • Dependent packages count: 15.706%
    • Average: 16.617%
    • Downloads: 19.187%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-prod_tt_sasportal_v1alpha1

This is the simple REST client for SAS Portal API (Testing) V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the SAS Portal API (Testing), but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-prod_tt_sasportal_v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.44.0 (published 10 months ago)
  • Last Synced: 2026-03-02T09:16:29.621Z (1 day ago)
  • Versions: 44
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 45,097 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 16.85%
    • Downloads: 20.665%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-servicecontrol_v1

This is the simple REST client for Service Control API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Service Control API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-servicecontrol_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.46.0 (published about 1 month ago)
  • Last Synced: 2026-03-02T09:18:18.217Z (1 day ago)
  • Versions: 46
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 50,718 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 16.869%
    • Downloads: 20.493%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-texttospeech_v1beta1

This is the simple REST client for Cloud Text-to-Speech API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Text-to-Speech API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-texttospeech_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.42.0 (published about 1 month ago)
  • Last Synced: 2026-03-02T09:42:54.219Z (1 day ago)
  • Versions: 42
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 62,596 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 17.348%
    • Downloads: 23.156%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-lifesciences_v2beta

This is the simple REST client for Cloud Life Sciences API V2beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Life Sciences API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-lifesciences_v2beta/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published 10 months ago)
  • Last Synced: 2026-02-27T22:33:22.227Z (4 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 37,059 Total
  • Rankings:
    • Forks count: 0.514%
    • Stargazers count: 0.701%
    • Dependent packages count: 15.706%
    • Average: 17.381%
    • Downloads: 23.203%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudtasks_v2beta3

This is the simple REST client for Cloud Tasks API V2beta3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Tasks API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-cloudtasks_v2beta3/
  • Licenses: Apache-2.0
  • Latest release: 0.48.0 (published about 1 month ago)
  • Last Synced: 2026-03-02T09:17:15.324Z (1 day ago)
  • Versions: 48
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 43,727 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 17.552%
    • Downloads: 24.01%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-translate_v3

This is the simple REST client for Cloud Translation API V3. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Translation API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-translate_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.43.0 (published about 1 month ago)
  • Last Synced: 2026-03-02T09:43:06.747Z (1 day ago)
  • Versions: 43
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 47,010 Total
  • Rankings:
    • Forks count: 0.508%
    • Stargazers count: 0.69%
    • Dependent packages count: 15.706%
    • Average: 17.621%
    • Downloads: 24.418%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-adexchangebuyer2_v2beta1

This is the simple REST client for Ad Exchange Buyer API II V2beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Ad Exchange Buyer API II, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-adexchangebuyer2_v2beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published 10 months ago)
  • Last Synced: 2026-03-02T10:06:46.995Z (1 day ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,648 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Average: 17.948%
    • Downloads: 25.856%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudscheduler_v1beta1

This is the simple REST client for Cloud Scheduler API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Scheduler API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-cloudscheduler_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.40.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:20.952Z (5 days ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 38,421 Total
  • Rankings:
    • Forks count: 0.519%
    • Stargazers count: 0.69%
    • Dependent packages count: 15.706%
    • Average: 17.988%
    • Downloads: 26.242%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-osconfig_v1alpha

This is the simple REST client for OS Config API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the OS Config API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-osconfig_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.35.0 (published about 1 month ago)
  • Last Synced: 2026-02-26T15:02:23.727Z (5 days ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 34,303 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 17.99%
    • Downloads: 26.199%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-oslogin_v1beta

This is the simple REST client for Cloud OS Login API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud OS Login API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-oslogin_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.34.0 (published 9 months ago)
  • Last Synced: 2026-02-26T15:02:25.117Z (5 days ago)
  • Versions: 34
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 35,559 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 18.012%
    • Downloads: 26.205%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-workflows_v1

This is the simple REST client for Workflows API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Workflows API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-workflows_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.48.0 (published 24 days ago)
  • Last Synced: 2026-03-02T06:52:13.117Z (2 days ago)
  • Versions: 48
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 41,894 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 18.083%
    • Downloads: 26.833%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-clouderrorreporting_v1beta1

This is the simple REST client for Error Reporting API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Error Reporting API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-clouderrorreporting_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.31.0 (published 10 months ago)
  • Last Synced: 2026-03-02T09:21:37.548Z (1 day ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 34,409 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.887%
    • Dependent packages count: 15.706%
    • Average: 18.11%
    • Downloads: 26.57%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-webrisk_v1

This is the simple REST client for Web Risk API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Web Risk API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-webrisk_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.27.0 (published 3 months ago)
  • Last Synced: 2026-03-02T10:05:11.702Z (1 day ago)
  • Versions: 27
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 172,873 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 18.163%
    • Downloads: 27.23%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-workflows_v1beta

This is the simple REST client for Workflows API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Workflows API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-workflows_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.32.0 (published 3 months ago)
  • Last Synced: 2026-02-23T18:01:27.175Z (8 days ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 30,364 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.784%
    • Dependent packages count: 15.706%
    • Average: 18.235%
    • Downloads: 27.296%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-websecurityscanner_v1

This is the simple REST client for Web Security Scanner API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Web Security Scanner API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-websecurityscanner_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.23.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:24.488Z (5 days ago)
  • Versions: 23
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 30,013 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 18.471%
    • Downloads: 28.606%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-videointelligence_v1p3beta1

This is the simple REST client for Cloud Video Intelligence API V1p3beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Video Intelligence API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-videointelligence_v1p3beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.25.0 (published 7 months ago)
  • Last Synced: 2026-03-02T10:06:23.596Z (1 day ago)
  • Versions: 25
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 26,826 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 18.897%
    • Downloads: 30.633%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-run_v2

This is the simple REST client for Cloud Run Admin API V2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Cloud Run Admin API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-run_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.108.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:23.456Z (5 days ago)
  • Versions: 108
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 69,225 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 19.149%
    • Downloads: 32.163%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-libraryagent_v1

This is the simple REST client for Library Agent API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Library Agent API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-libraryagent_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.19.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:23.837Z (5 days ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 23,030 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Average: 19.554%
    • Downloads: 33.827%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-contactcenterinsights_v1

This is the simple REST client for Contact Center AI Insights API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Contact Center AI Insights API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-contactcenterinsights_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.84.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:22.006Z (5 days ago)
  • Versions: 84
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 51,574 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.823%
    • Dependent packages count: 15.706%
    • Average: 19.868%
    • Downloads: 35.423%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-domainsrdap_v1

This is the simple REST client for Domains RDAP API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Domains RDAP API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-domainsrdap_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published almost 2 years ago)
  • Last Synced: 2026-03-02T05:48:59.296Z (2 days ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,803 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Average: 20.475%
    • Downloads: 38.488%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-baremetalsolution_v1

This is the simple REST client for Bare Metal Solution API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Bare Metal Solution API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-baremetalsolution_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.16.0 (published about 3 years ago)
  • Last Synced: 2026-03-02T09:17:13.743Z (1 day ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,132 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.835%
    • Dependent packages count: 15.706%
    • Average: 20.508%
    • Downloads: 38.608%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-analyticsdata_v1alpha

This is the simple REST client for Google Analytics Data API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Google Analytics Data API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-analyticsdata_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published almost 5 years ago)
  • Last Synced: 2026-03-02T09:22:51.926Z (1 day ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 18,097 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Average: 21.292%
    • Downloads: 42.571%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-adsensehost_v4_1

This is the simple REST client for AdSense Host API V4_1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the AdSense Host API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-adsensehost_v4_1/
  • Licenses: Apache-2.0
  • Latest release: 0.8.0 (published over 1 year ago)
  • Last Synced: 2026-03-02T09:43:03.032Z (1 day ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 17,415 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Average: 21.448%
    • Downloads: 43.354%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-policyanalyzer_v1

This is the simple REST client for Policy Analyzer API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Policy Analyzer API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-policyanalyzer_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.16.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:18.153Z (5 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,503 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 22.528%
    • Dependent repos count: 46.782%
    • Downloads: 48.889%
  • Maintainers (1)
rubygems.org: google-apis-ideahub_v1beta

This is the simple REST client for Idea Hub API V1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Idea Hub API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-ideahub_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.10.0 (published over 3 years ago)
  • Last Synced: 2026-03-02T10:07:32.364Z (1 day ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 12,561 Total
  • Rankings:
    • Forks count: 0.714%
    • Stargazers count: 0.887%
    • Dependent packages count: 15.706%
    • Average: 23.162%
    • Dependent repos count: 46.782%
    • Downloads: 51.719%
  • Maintainers (1)
gem.coop: google-apis-secretmanager_v1beta2

This is the simple REST client for Secret Manager API V1beta2. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Secret Manager API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-secretmanager_v1beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.11.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:19.649Z (5 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,873 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 29.573%
    • Downloads: 88.718%
  • Maintainers (1)
gem.coop: google-apis-merchantapi_quota_v1beta

This is the simple REST client for Merchant API QuotaV1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Merchant API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-merchantapi_quota_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.7.0 (published 8 months ago)
  • Last Synced: 2026-02-26T15:02:24.071Z (5 days ago)
  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,508 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 29.913%
    • Downloads: 89.74%
  • Maintainers (1)
gem.coop: google-apis-merchantapi_notifications_v1beta

This is the simple REST client for Merchant API NotificationsV1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Merchant API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-merchantapi_notifications_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.9.0 (published about 1 month ago)
  • Last Synced: 2026-02-26T15:02:25.105Z (5 days ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,585 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 30.113%
    • Downloads: 90.339%
  • Maintainers (1)
gem.coop: google-apis-publicca_v1beta1

This is the simple REST client for Public Certificate Authority API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Public Certificate Authority API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-publicca_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.5.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:24.341Z (5 days ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,935 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 30.402%
    • Downloads: 91.207%
  • Maintainers (1)
gem.coop: google-apis-authorizedbuyersmarketplace_v1alpha

This is the simple REST client for Authorized Buyers Marketplace API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Authorized Buyers Marketplace API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-authorizedbuyersmarketplace_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.11.0 (published 2 months ago)
  • Last Synced: 2026-02-26T15:02:25.089Z (5 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,611 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 31.743%
    • Downloads: 95.228%
  • Maintainers (1)
gem.coop: google-apis-pollen_v1

This is the simple REST client for Pollen API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Pollen API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage:
  • Documentation: http://www.rubydoc.info/gems/google-apis-pollen_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.3.0 (published 10 months ago)
  • Last Synced: 2026-02-26T15:02:24.586Z (5 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,131 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 31.749%
    • Downloads: 95.246%
  • Maintainers (1)
gem.coop: google-apis-saasservicemgmt_v1beta1

This is the simple REST client for SaaS Runtime API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the SaaS Runtime API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-saasservicemgmt_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.9.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:19.910Z (5 days ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,366 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.156%
    • Downloads: 96.468%
  • Maintainers (1)
rubygems.org: google-apis-dataform_v1beta1

This is the simple REST client for Dataform API V1beta1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Dataform API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dataform_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.55.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.657Z (5 days ago)
  • Versions: 55
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 23,889 Total
  • Rankings:
    • Stargazers count: 0.677%
    • Forks count: 0.716%
    • Dependent packages count: 15.706%
    • Average: 32.362%
    • Dependent repos count: 46.779%
    • Downloads: 97.932%
  • Maintainers (1)
rubygems.org: google-apis-identitytoolkit_v1

This is the simple REST client for Identity Toolkit API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Identity Toolkit API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-identitytoolkit_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published 4 months ago)
  • Last Synced: 2026-03-02T05:49:10.232Z (2 days ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 81,531 Total
  • Rankings:
    • Forks count: 0.734%
    • Stargazers count: 0.94%
    • Dependent packages count: 15.706%
    • Average: 32.618%
    • Dependent repos count: 46.779%
    • Downloads: 98.932%
  • Maintainers (1)
rubygems.org: google-apis-migrationcenter_v1

This is the simple REST client for Migration Center API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Migration Center API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-migrationcenter_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.32.0 (published 24 days ago)
  • Last Synced: 2026-02-26T17:03:36.158Z (5 days ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 12,105 Total
  • Rankings:
    • Forks count: 0.471%
    • Stargazers count: 0.685%
    • Dependent packages count: 15.64%
    • Average: 32.952%
    • Dependent repos count: 48.493%
    • Downloads: 99.473%
  • Maintainers (1)
rubygems.org: google-apis-biglake_v1

This is the simple REST client for BigLake API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the BigLake API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-biglake_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.7.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.223Z (5 days ago)
  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,973 Total
  • Rankings:
    • Forks count: 0.473%
    • Stargazers count: 0.689%
    • Dependent packages count: 15.78%
    • Average: 33.057%
    • Dependent repos count: 48.956%
    • Downloads: 99.388%
  • Maintainers (1)
rubygems.org: google-apis-dataform_v1

This is the simple REST client for Dataform API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Dataform API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dataform_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.5.0 (published 10 days ago)
  • Last Synced: 2026-02-26T15:02:21.311Z (5 days ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 826 Total
  • Rankings:
    • Dependent packages count: 14.205%
    • Dependent repos count: 43.51%
    • Average: 50.11%
    • Downloads: 92.617%
  • Maintainers (1)
rubygems.org: google-apis-adsenseplatform_v1

This is the simple REST client for AdSense Platform API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the AdSense Platform API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage:
  • Documentation: http://www.rubydoc.info/gems/google-apis-adsenseplatform_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.3.0 (published 10 months ago)
  • Last Synced: 2026-03-02T09:21:39.143Z (1 day ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,561 Total
  • Rankings:
    • Dependent packages count: 14.707%
    • Dependent repos count: 45.048%
    • Average: 50.848%
    • Downloads: 92.788%
  • Maintainers (1)
rubygems.org: google-apis-merchantapi_inventories_v1beta

This is the simple REST client for Merchant API InventoriesV1beta. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Merchant API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-merchantapi_inventories_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.11.0 (published 3 months ago)
  • Last Synced: 2026-02-26T15:02:24.766Z (5 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,077 Total
  • Rankings:
    • Dependent packages count: 14.736%
    • Dependent repos count: 45.14%
    • Average: 50.883%
    • Downloads: 92.771%
  • Maintainers (1)
rubygems.org: google-apis-firebaseappdistribution_v1alpha

This is the simple REST client for Firebase App Distribution API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Firebase App Distribution API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-firebaseappdistribution_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.25.0 (published 3 months ago)
  • Last Synced: 2026-02-26T15:02:23.739Z (5 days ago)
  • Versions: 25
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 17,635,457 Total
  • Rankings:
    • Dependent packages count: 15.783%
    • Dependent repos count: 48.958%
    • Average: 54.701%
    • Downloads: 99.363%
  • Maintainers (1)

Dependencies

.github/workflows/ci.yml actions
  • actions/checkout v2 composite
  • ruby/setup-ruby v1 composite
.github/workflows/generate-updates.yml actions
  • actions/checkout v2 composite
  • ruby/setup-ruby v1 composite
.github/workflows/weekly-generate-updates.yml actions
  • actions/checkout v2 composite
  • ruby/setup-ruby v1 composite
Gemfile rubygems
  • gems ~> 1.2
  • rake ~> 13.0
generated/google-apis-abusiveexperiencereport_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-abusiveexperiencereport_v1/google-apis-abusiveexperiencereport_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-acceleratedmobilepageurl_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-acceleratedmobilepageurl_v1/google-apis-acceleratedmobilepageurl_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-accessapproval_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-accessapproval_v1/google-apis-accessapproval_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-accesscontextmanager_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-accesscontextmanager_v1/google-apis-accesscontextmanager_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-accesscontextmanager_v1beta/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-accesscontextmanager_v1beta/google-apis-accesscontextmanager_v1beta.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-adexchangebuyer2_v2beta1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-adexchangebuyer2_v2beta1/google-apis-adexchangebuyer2_v2beta1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-adexchangebuyer_v1_2/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-adexchangebuyer_v1_2/google-apis-adexchangebuyer_v1_2.gemspec rubygems
  • google-apis-core >= 0.4, < 2.a
generated/google-apis-adexchangebuyer_v1_3/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-adexchangebuyer_v1_3/google-apis-adexchangebuyer_v1_3.gemspec rubygems
  • google-apis-core >= 0.4, < 2.a
generated/google-apis-adexchangebuyer_v1_4/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-adexchangebuyer_v1_4/google-apis-adexchangebuyer_v1_4.gemspec rubygems
  • google-apis-core >= 0.4, < 2.a
generated/google-apis-adexperiencereport_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-adexperiencereport_v1/google-apis-adexperiencereport_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-admin_datatransfer_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-admin_datatransfer_v1/google-apis-admin_datatransfer_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-admin_directory_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-admin_directory_v1/google-apis-admin_directory_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-admin_reports_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-admin_reports_v1/google-apis-admin_reports_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-admob_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-admob_v1/google-apis-admob_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-admob_v1beta/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-admob_v1beta/google-apis-admob_v1beta.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-adsense_v1_4/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-adsense_v1_4/google-apis-adsense_v1_4.gemspec rubygems
  • google-apis-core >= 0.4, < 2.a
generated/google-apis-adsense_v2/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-adsense_v2/google-apis-adsense_v2.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-adsensehost_v4_1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-adsensehost_v4_1/google-apis-adsensehost_v4_1.gemspec rubygems
  • google-apis-core >= 0.4, < 2.a
generated/google-apis-alertcenter_v1beta1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-alertcenter_v1beta1/google-apis-alertcenter_v1beta1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-analytics_v3/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-analytics_v3/google-apis-analytics_v3.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-analyticsadmin_v1alpha/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-analyticsadmin_v1alpha/google-apis-analyticsadmin_v1alpha.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-analyticsadmin_v1beta/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-analyticsadmin_v1beta/google-apis-analyticsadmin_v1beta.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-analyticsdata_v1alpha/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-analyticsdata_v1alpha/google-apis-analyticsdata_v1alpha.gemspec rubygems
  • google-apis-core ~> 0.1
generated/google-apis-analyticsdata_v1beta/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-analyticsdata_v1beta/google-apis-analyticsdata_v1beta.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-analyticshub_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-analyticshub_v1/google-apis-analyticshub_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-analyticshub_v1beta1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-analyticshub_v1beta1/google-apis-analyticshub_v1beta1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-analyticsreporting_v4/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-analyticsreporting_v4/google-apis-analyticsreporting_v4.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-androiddeviceprovisioning_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-androiddeviceprovisioning_v1/google-apis-androiddeviceprovisioning_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-androidenterprise_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-androidenterprise_v1/google-apis-androidenterprise_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-androidmanagement_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-androidmanagement_v1/google-apis-androidmanagement_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-androidpublisher_v3/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-androidpublisher_v3/google-apis-androidpublisher_v3.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-apigateway_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-apigateway_v1/google-apis-apigateway_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-apigateway_v1beta/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-apigateway_v1beta/google-apis-apigateway_v1beta.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-apigee_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-apigee_v1/google-apis-apigee_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-apigeeregistry_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-apigeeregistry_v1/google-apis-apigeeregistry_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-apikeys_v2/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-apikeys_v2/google-apis-apikeys_v2.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-appengine_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-appengine_v1/google-apis-appengine_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-appengine_v1alpha/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-appengine_v1alpha/google-apis-appengine_v1alpha.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-appengine_v1beta/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-appengine_v1beta/google-apis-appengine_v1beta.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-appengine_v1beta4/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-appengine_v1beta4/google-apis-appengine_v1beta4.gemspec rubygems
  • google-apis-core ~> 0.1
generated/google-apis-appengine_v1beta5/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-appengine_v1beta5/google-apis-appengine_v1beta5.gemspec rubygems
  • google-apis-core ~> 0.1
generated/google-apis-appsmarket_v2/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-appsmarket_v2/google-apis-appsmarket_v2.gemspec rubygems
  • google-apis-core ~> 0.1
generated/google-apis-area120tables_v1alpha1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-area120tables_v1alpha1/google-apis-area120tables_v1alpha1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-artifactregistry_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-artifactregistry_v1/google-apis-artifactregistry_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-artifactregistry_v1beta1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-artifactregistry_v1beta1/google-apis-artifactregistry_v1beta1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-artifactregistry_v1beta2/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-artifactregistry_v1beta2/google-apis-artifactregistry_v1beta2.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-assuredworkloads_v1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-assuredworkloads_v1/google-apis-assuredworkloads_v1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a
generated/google-apis-assuredworkloads_v1beta1/Gemfile rubygems
  • bundler >= 1.17 development
  • jruby-openssl >= 0 development
  • opencensus ~> 0.5 development
  • rake >= 12.0 development
  • redcarpet ~> 3.5 development
  • rspec ~> 3.9 development
  • yard ~> 0.9, >= 0.9.25 development
generated/google-apis-assuredworkloads_v1beta1/google-apis-assuredworkloads_v1beta1.gemspec rubygems
  • google-apis-core >= 0.9.1, < 2.a

Score: 35.478106538364706