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 rubygems rspec rack sinatra rubocop marshalling deployment

Last synced: about 14 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: 1 day ago

Total Commits: 26,915
Total Committers: 154
Avg Commits per committer: 174.773
Development Distribution Score (DDS): 0.312

Commits in past year: 3,641
Committers in past year: 11
Avg Commits per committer in past year: 331.0
Development Distribution Score (DDS) in past year: 0.009

Name Email Commits
yoshi-code-bot 7****t 18527
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
release-please[bot] 5****] 31
Volker Zöpfel v****r@z****e 28
Neha Bajaj b****7 24
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
Torrey Payne 1****e 10
Tim Emiola t****a@g****m 9
WhiteSource Renovate b****t@r****m 9
Simone Carletti w****s@w****t 9
Graham Paye g****8@g****m 8
joker1007 k****t@g****m 8
mattpok@google.com m****k@g****m@c****f 8
Chris Smith c****h@g****m 7
Ruslan Korolev r****1@g****m 7
sanemat o****n@g****m 6
Shubhangi Singh s****n@g****m 6
André Andreassa a****a 6
Ethan e****n@m****a 6
Graham Paye p****e@g****m 6
and 124 more...

Committer domains:


Issue and Pull Request metadata

Last synced: 1 day ago

Total issues: 137
Total pull requests: 13,982
Average time to close issues: 7 months
Average time to close pull requests: about 18 hours
Total issue authors: 93
Total pull request authors: 55
Average comments per issue: 1.77
Average comments per pull request: 0.09
Merged pull request: 12,436
Bot issues: 3
Bot pull requests: 40

Past year issues: 19
Past year pull requests: 1,734
Past year average time to close issues: 13 days
Past year average time to close pull requests: about 12 hours
Past year issue authors: 13
Past year pull request authors: 16
Past year average comments per issue: 1.0
Past year average comments per pull request: 0.08
Past year merged pull request: 1,411
Past year bot issues: 0
Past year bot pull requests: 7

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)
  • quartzmo (2)
  • ChrisCPO (1)
  • fatkodima (1)
  • Set27 (1)
  • talothman (1)
  • dazuma (1)
  • katamotokosuke (1)
  • javierjulio (1)
  • HoneyryderChuck (1)
  • mijoharas (1)

Top Pull Request Authors

  • yoshi-code-bot (13,732)
  • dazuma (66)
  • release-please[bot] (37)
  • yoshi-automation (22)
  • torreypayne (18)
  • aandreassa (13)
  • shubhangi-google (12)
  • shivgautam (9)
  • suztomo (5)
  • byroot (4)
  • kurajiv (4)
  • quartzmo (4)
  • yahonda (4)
  • morralgit116 (2)
  • garyhtou (2)

Top Issue Labels

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

Top Pull Request Labels

  • kokoro:force-run (12,810)
  • automerge: exact (2,605)
  • automerge (2,447)
  • cla: yes (26)
  • autorelease: pending (21)
  • autorelease: published (9)
  • autorelease: tagged (7)
  • do not merge (6)
  • samples (4)
  • Team-Ray (1)
  • cla: no (1)
  • 🔥 매운맛 (1)
  • kokoro:run (1)
  • needs more info (1)
  • bug (1)

Package metadata

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.106.0 (published 21 days ago)
  • Last Synced: 2026-08-15T16:41:11.356Z (1 day ago)
  • Versions: 106
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 151,566,675 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-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.85.0 (published 2 months ago)
  • Last Synced: 2026-08-15T20:11:07.740Z (about 21 hours ago)
  • Versions: 85
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 32,242,206 Total
  • Docker Downloads: 446,684,782
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.241%
    • Downloads: 0.724%
  • Maintainers (1)
gem.coop: google-apis-sqladmin_v1beta4

This is the simple REST client for Cloud SQL Admin API V1beta4. 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 SQL 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-sqladmin_v1beta4/
  • Licenses: Apache-2.0
  • Latest release: 0.104.0 (published 14 days ago)
  • Last Synced: 2026-08-15T02:02:28.437Z (1 day ago)
  • Versions: 104
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 31,724,866 Total
  • Docker Downloads: 446,684,758
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.243%
    • Downloads: 0.73%
  • Maintainers (1)
gem.coop: google-apis-pubsub_v1

This is the simple REST client for Cloud Pub/Sub 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 Pub/Sub 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-pubsub_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.70.0 (published 21 days ago)
  • Last Synced: 2026-08-16T01:41:58.624Z (about 15 hours ago)
  • Versions: 70
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 32,090,825 Total
  • Docker Downloads: 446,684,758
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.245%
    • Docker downloads count: 0.252%
    • Downloads: 0.728%
  • 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.22.0 (published 14 days ago)
  • Last Synced: 2026-08-15T02:02:12.007Z (1 day ago)
  • Versions: 22
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 27,659,857 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.315%
    • Downloads: 0.945%
  • 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.48.0 (published about 2 months ago)
  • Last Synced: 2026-08-14T12:11:36.185Z (2 days ago)
  • Versions: 48
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 29,168,219 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)
gem.coop: 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.56.0 (published about 1 month ago)
  • Last Synced: 2026-08-15T02:02:29.518Z (1 day ago)
  • Versions: 56
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,670,348 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.877%
    • Downloads: 2.632%
  • Maintainers (1)
gem.coop: google-apis-fcm_v1

This is the simple REST client for Firebase Cloud Messaging 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 Cloud Messaging 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-fcm_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.37.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:12.323Z (1 day ago)
  • Versions: 37
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,311,781 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.92%
    • Downloads: 2.759%
  • 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.32.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:27.360Z (1 day ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,149,195 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.65.0 (published 28 days ago)
  • Last Synced: 2026-08-15T02:02:26.281Z (1 day ago)
  • Versions: 65
  • Dependent Packages: 4
  • Dependent Repositories: 10,055
  • Downloads: 200,463,117 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-compute_v1

This is the simple REST client for Compute Engine 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 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_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.153.0 (published 7 days ago)
  • Last Synced: 2026-08-14T06:11:36.787Z (2 days ago)
  • Versions: 153
  • Dependent Packages: 6
  • Dependent Repositories: 397
  • Downloads: 32,493,169 Total
  • Docker Downloads: 446,684,758
  • Rankings:
    • Docker downloads count: 0.327%
    • Forks count: 0.473%
    • Stargazers count: 0.69%
    • Downloads: 1.126%
    • Average: 1.253%
    • Dependent repos count: 1.658%
    • Dependent packages count: 3.248%
  • Maintainers (1)
gem.coop: google-apis-analytics_v3

This is the simple REST client for Google Analytics 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 Analytics 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-analytics_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published over 1 year ago)
  • Last Synced: 2026-08-15T02:02:29.113Z (1 day ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 706,491 Total
  • Docker Downloads: 13
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.279%
    • Downloads: 3.836%
  • Maintainers (1)
gem.coop: 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 about 2 years ago)
  • Last Synced: 2026-08-15T02:02:29.360Z (1 day ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 658,511 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.282%
    • Downloads: 3.845%
  • Maintainers (1)
gem.coop: google-apis-slides_v1

This is the simple REST client for Google Slides 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 Slides 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-slides_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.32.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:29.226Z (1 day ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 759,567 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.42%
    • Downloads: 4.259%
  • Maintainers (1)
gem.coop: google-apis-apikeys_v2

This is the simple REST client for API Keys 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 API Keys 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-apikeys_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published 7 days ago)
  • Last Synced: 2026-08-16T00:41:54.726Z (about 16 hours ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 597,247 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.429%
    • Downloads: 4.286%
  • 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.48.0 (published about 2 months ago)
  • Last Synced: 2026-08-14T13:11:46.091Z (2 days ago)
  • Versions: 48
  • Dependent Packages: 12
  • Dependent Repositories: 146
  • Downloads: 29,168,219 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-translate_v2

This is the simple REST client for Google Cloud Translation 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 Google 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_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.18.0 (published about 2 months ago)
  • Last Synced: 2026-08-14T09:11:45.526Z (2 days ago)
  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 421,740 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 1.742%
    • Downloads: 5.226%
  • Maintainers (1)
rubygems.org: 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.19.0 (published 2 months ago)
  • Last Synced: 2026-08-14T08:41:47.717Z (2 days ago)
  • Versions: 25
  • Dependent Packages: 1
  • Dependent Repositories: 663
  • Downloads: 41,017,956 Total
  • Docker Downloads: 367,065,546
  • Rankings:
    • Forks count: 0.473%
    • Docker downloads count: 0.483%
    • Downloads: 0.675%
    • Stargazers count: 0.69%
    • Dependent repos count: 1.382%
    • Average: 1.891%
    • Dependent packages count: 7.642%
  • 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.21.0 (published 2 months ago)
  • Last Synced: 2026-08-14T06:11:36.481Z (2 days ago)
  • Versions: 22
  • Dependent Packages: 2
  • Dependent Repositories: 663
  • Downloads: 40,733,212 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-pubsub_v1

This is the simple REST client for Cloud Pub/Sub 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 Pub/Sub 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-pubsub_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.70.0 (published 21 days ago)
  • Last Synced: 2026-08-14T13:11:48.383Z (2 days ago)
  • Versions: 70
  • Dependent Packages: 1
  • Dependent Repositories: 394
  • Downloads: 32,084,454 Total
  • Docker Downloads: 446,684,758
  • Rankings:
    • Docker downloads count: 0.327%
    • Forks count: 0.473%
    • Stargazers count: 0.69%
    • Downloads: 1.136%
    • Dependent repos count: 1.666%
    • Average: 1.989%
    • 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.85.0 (published 2 months ago)
  • Last Synced: 2026-08-15T17:11:08.881Z (about 24 hours ago)
  • Versions: 85
  • Dependent Packages: 2
  • Dependent Repositories: 391
  • Downloads: 32,241,908 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-gmailpostmastertools_v1

This is the simple REST client for Gmail Postmaster Tools 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 Gmail Postmaster Tools 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-gmailpostmastertools_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.20.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.321Z (4 days ago)
  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 151,902 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.051%
    • Downloads: 9.152%
  • Maintainers (1)
gem.coop: google-apis-firebase_v1beta1

This is the simple REST client for Firebase Management 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 Firebase 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-firebase_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.53.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:27.106Z (4 days ago)
  • Versions: 53
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 117,525 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.349%
    • Downloads: 10.046%
  • Maintainers (1)
gem.coop: google-apis-mybusinessqanda_v1

This is the simple REST client for My Business Q&A 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 Q&A 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-mybusinessqanda_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.15.0 (published 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.654Z (4 days ago)
  • Versions: 15
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 101,531 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.363%
    • Downloads: 10.089%
  • Maintainers (1)
rubygems.org: google-apis-gmail_v1

This is the simple REST client for Gmail 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 Gmail 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-gmail_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.53.0 (published 7 days ago)
  • Last Synced: 2026-08-12T17:47:25.948Z (4 days ago)
  • Versions: 53
  • Dependent Packages: 1
  • Dependent Repositories: 8
  • Downloads: 4,255,019 Total
  • Docker Downloads: 27,010,638
  • Rankings:
    • Forks count: 0.485%
    • Stargazers count: 0.701%
    • Docker downloads count: 0.87%
    • Downloads: 2.706%
    • Average: 3.408%
    • Dependent packages count: 7.747%
    • Dependent repos count: 7.94%
  • Maintainers (1)
gem.coop: google-apis-appengine_v1

This is the simple REST client for App Engine Admin 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 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_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.77.0 (published 14 days ago)
  • Last Synced: 2026-08-14T01:41:14.494Z (3 days ago)
  • Versions: 77
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 86,041 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.776%
    • Downloads: 11.329%
  • Maintainers (1)
rubygems.org: 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.89.0 (published 7 days ago)
  • Last Synced: 2026-08-12T17:47:24.268Z (4 days ago)
  • Versions: 89
  • Dependent Packages: 1
  • Dependent Repositories: 18
  • Downloads: 21,909,607 Total
  • Docker Downloads: 434,111,021
  • Rankings:
    • Docker downloads count: 0.434%
    • Forks count: 0.485%
    • Stargazers count: 0.701%
    • Downloads: 1.441%
    • Average: 4.073%
    • Dependent repos count: 5.597%
    • Dependent packages count: 15.782%
  • Maintainers (1)
gem.coop: google-apis-containeranalysis_v1beta1

This is the simple REST client for Container Analysis 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 Container Analysis 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-containeranalysis_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.80.0 (published about 1 month ago)
  • Last Synced: 2026-08-12T17:47:26.447Z (4 days ago)
  • Versions: 80
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 76,659 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.227%
    • Downloads: 12.681%
  • Maintainers (1)
gem.coop: 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.119.0 (published 21 days ago)
  • Last Synced: 2026-08-12T17:47:23.888Z (4 days ago)
  • Versions: 119
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 113,137 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.299%
    • Downloads: 12.896%
  • Maintainers (1)
gem.coop: google-apis-vmmigration_v1

This is the simple REST client for VM Migration 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 VM Migration 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-vmmigration_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.78.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.165Z (4 days ago)
  • Versions: 78
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 55,093 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.541%
    • Downloads: 16.622%
  • Maintainers (1)
gem.coop: google-apis-binaryauthorization_v1

This is the simple REST client for Binary Authorization 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 Binary Authorization 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-binaryauthorization_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.43.0 (published 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.091Z (4 days ago)
  • Versions: 43
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 43,395 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.03%
    • Downloads: 18.091%
  • 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.25.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.291Z (4 days ago)
  • Versions: 25
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 45,111 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.158%
    • Downloads: 18.474%
  • 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 about 1 year ago)
  • Last Synced: 2026-08-12T17:47:22.572Z (4 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 40,016 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.306%
    • Downloads: 18.918%
  • Maintainers (1)
gem.coop: google-apis-datastore_v1beta3

This is the simple REST client for Cloud Datastore API V1beta3. 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 Datastore 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-datastore_v1beta3/
  • Licenses: Apache-2.0
  • Latest release: 0.37.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.071Z (4 days ago)
  • Versions: 37
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,981 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.746%
    • Downloads: 20.238%
  • Maintainers (1)
gem.coop: google-apis-recommendationengine_v1beta1

This is the simple REST client for Recommendations AI (Beta) 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 Recommendations AI (Beta), 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-recommendationengine_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.31.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.284Z (4 days ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 38,703 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.769%
    • Downloads: 20.307%
  • Maintainers (1)
gem.coop: google-apis-runtimeconfig_v1beta1

This is the simple REST client for Cloud Runtime Configuration 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 Runtime Configuration 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-runtimeconfig_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.31.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:11.919Z (1 day ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 35,917 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.912%
    • Downloads: 20.735%
  • Maintainers (1)
rubygems.org: google-apis-fcm_v1

This is the simple REST client for Firebase Cloud Messaging 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 Cloud Messaging 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-fcm_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.37.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.932Z (4 days ago)
  • Versions: 37
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 2,305,320 Total
  • Rankings:
    • Forks count: 0.475%
    • Stargazers count: 0.691%
    • Downloads: 4.195%
    • Average: 6.967%
    • Dependent packages count: 7.75%
    • Dependent repos count: 21.725%
  • Maintainers (1)
gem.coop: google-apis-discoveryengine_v1beta

This is the simple REST client for Discovery Engine 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 Discovery 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-discoveryengine_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.109.0 (published 7 days ago)
  • Last Synced: 2026-08-15T02:02:27.047Z (1 day ago)
  • Versions: 109
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 52,127 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.009%
    • Downloads: 21.028%
  • Maintainers (1)
gem.coop: google-apis-admob_v1beta

This is the simple REST client for AdMob 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 AdMob 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-admob_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.34.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:25.944Z (4 days ago)
  • Versions: 34
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 35,485 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.013%
    • Downloads: 21.038%
  • 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.30.0 (published 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.330Z (4 days ago)
  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,672 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.15%
    • Downloads: 21.451%
  • Maintainers (1)
gem.coop: google-apis-fitness_v1

This is the simple REST client for Fitness 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 Fitness 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-fitness_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.25.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.354Z (4 days ago)
  • Versions: 25
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,341 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.162%
    • Downloads: 21.485%
  • 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.63.0 (published 21 days ago)
  • Last Synced: 2026-08-12T17:47:26.108Z (4 days ago)
  • Versions: 63
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,718 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 8.227%
    • Downloads: 24.681%
  • Maintainers (1)
rubygems.org: google-apis-customsearch_v1

This is the simple REST client for Custom 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 Custom 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-customsearch_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.25.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T00:31:56.180Z (5 days ago)
  • Versions: 25
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 349,648 Total
  • Rankings:
    • Forks count: 0.483%
    • Stargazers count: 0.699%
    • Dependent packages count: 7.749%
    • Average: 8.616%
    • Downloads: 12.43%
    • Dependent repos count: 21.716%
  • Maintainers (1)
gem.coop: google-apis-domains_v1

This is the simple REST client for Cloud Domains 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 Domains 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-domains_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.36.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.308Z (4 days ago)
  • Versions: 36
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 28,181 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 8.999%
    • Downloads: 26.998%
  • Maintainers (1)
gem.coop: google-apis-blogger_v3

This is the simple REST client for Blogger 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 Blogger 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-blogger_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.23.0 (published 28 days ago)
  • Last Synced: 2026-08-12T17:47:26.311Z (4 days ago)
  • Versions: 23
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 25,067 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 9.349%
    • Downloads: 28.048%
  • Maintainers (1)
rubygems.org: google-apis-dfareporting_v3_5

This is the simple REST client for Campaign Manager 360 API V3_5. 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 Campaign Manager 360 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-dfareporting_v3_5/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published over 4 years ago)
  • Last Synced: 2026-08-12T17:47:27.640Z (4 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 47,729 Total
  • Rankings:
    • Forks count: 0.759%
    • Stargazers count: 0.974%
    • Average: 10.752%
    • Downloads: 14.545%
    • Dependent packages count: 15.783%
    • Dependent repos count: 21.702%
  • Maintainers (1)
gem.coop: google-apis-metastore_v1

This is the simple REST client for Dataproc Metastore 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 Dataproc Metastore 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-metastore_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.47.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.611Z (4 days ago)
  • Versions: 47
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 25,440 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 10.844%
    • Downloads: 32.532%
  • Maintainers (1)
gem.coop: 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 about 2 years ago)
  • Last Synced: 2026-08-12T17:47:20.044Z (4 days ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 19,258 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 11.096%
    • Downloads: 33.287%
  • 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.18.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.235Z (4 days ago)
  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 3
  • Downloads: 39,085 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)
gem.coop: google-apis-gkeonprem_v1

This is the simple REST client for GKE On-Prem 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 On-Prem 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-gkeonprem_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.40.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.366Z (4 days ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21,661 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 12.217%
    • Downloads: 36.651%
  • Maintainers (1)
gem.coop: google-apis-assuredworkloads_v1beta1

This is the simple REST client for Assured Workloads 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 Assured Workloads 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-assuredworkloads_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.38.0 (published 14 days ago)
  • Last Synced: 2026-08-15T02:02:12.539Z (1 day ago)
  • Versions: 38
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,201 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 12.423%
    • Downloads: 37.269%
  • Maintainers (1)
gem.coop: 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 almost 4 years ago)
  • Last Synced: 2026-08-12T17:47:26.132Z (4 days ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 13,493 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 13.834%
    • Downloads: 41.501%
  • Maintainers (1)
rubygems.org: google-apis-verifiedaccess_v1

This is the simple REST client for Chrome Verified Access 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 Chrome Verified Access 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-verifiedaccess_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.20.0 (published 2 months ago)
  • Last Synced: 2026-08-12T17:47:25.906Z (4 days ago)
  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 200,749 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.784%
    • Downloads: 5.385%
    • Average: 13.853%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudfunctions_v1

This is the simple REST client for Cloud Functions 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 Functions 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-cloudfunctions_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.71.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.090Z (4 days ago)
  • Versions: 71
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 98,384 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Downloads: 15.834%
    • Average: 15.938%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-storagetransfer_v1

This is the simple REST client for Storage Transfer 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 Storage Transfer 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-storagetransfer_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.65.0 (published about 1 month ago)
  • Last Synced: 2026-08-12T17:47:26.465Z (4 days ago)
  • Versions: 65
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 69,670 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.784%
    • Dependent packages count: 15.706%
    • Average: 16.197%
    • Downloads: 17.105%
    • 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 over 5 years ago)
  • Last Synced: 2026-08-14T01:41:16.032Z (3 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,695 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 16.248%
    • Downloads: 48.745%
  • Maintainers (1)
gem.coop: google-apis-drivelabels_v2beta

This is the simple REST client for Drive Labels 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 Drive Labels 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-drivelabels_v2beta/
  • Licenses: Apache-2.0
  • Latest release: 0.19.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:23.734Z (4 days ago)
  • Versions: 19
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 11,969 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 16.277%
    • Downloads: 48.832%
  • Maintainers (1)
rubygems.org: 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.103.0 (published 7 days ago)
  • Last Synced: 2026-08-12T17:47:24.081Z (4 days ago)
  • Versions: 103
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 86,387 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 16.592%
    • Downloads: 19.108%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-ondemandscanning_v1beta1

This is the simple REST client for On-Demand Scanning 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 On-Demand Scanning 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-ondemandscanning_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.67.0 (published about 1 month ago)
  • Last Synced: 2026-08-12T17:47:27.678Z (4 days ago)
  • Versions: 67
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 64,214 Total
  • Rankings:
    • Forks count: 0.452%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 16.616%
    • Downloads: 19.509%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-apis-merchantapi_products_v1beta

This is the simple REST client for Merchant API ProductsV1beta. 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_products_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.204Z (4 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 15,244 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 16.762%
    • Downloads: 50.285%
  • Maintainers (1)
rubygems.org: google-apis-cloudbuild_v1alpha2

This is the simple REST client for Cloud Build API V1alpha2. 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 Build 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-cloudbuild_v1alpha2/
  • Licenses: Apache-2.0
  • Latest release: 0.30.0 (published over 3 years ago)
  • Last Synced: 2026-08-12T17:47:26.527Z (4 days ago)
  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 42,805 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.835%
    • Dependent packages count: 15.706%
    • Average: 16.926%
    • Downloads: 20.699%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-civicinfo_v2

This is the simple REST client for Google Civic Information 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 Google Civic Information 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-civicinfo_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.28.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:23.913Z (4 days ago)
  • Versions: 28
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 211,692 Total
  • Rankings:
    • Forks count: 0.475%
    • Stargazers count: 0.691%
    • Dependent packages count: 15.773%
    • Average: 16.958%
    • Downloads: 18.877%
    • Dependent repos count: 48.973%
  • Maintainers (1)
rubygems.org: google-apis-testing_v1

This is the simple REST client for Cloud Testing 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 Testing 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-testing_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.58.0 (published 2 months ago)
  • Last Synced: 2026-08-12T17:47:21.744Z (4 days ago)
  • Versions: 58
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 57,248 Total
  • Rankings:
    • Forks count: 0.539%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 17.037%
    • Downloads: 21.443%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-streetviewpublish_v1

This is the simple REST client for Street View Publish 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 Street View Publish 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-streetviewpublish_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.39.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:23.741Z (4 days ago)
  • Versions: 39
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 42,215 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 17.441%
    • Downloads: 23.62%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: 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.55.0 (published 21 days ago)
  • Last Synced: 2026-08-12T17:47:27.066Z (4 days ago)
  • Versions: 55
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 47,750 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 17.586%
    • Downloads: 24.074%
    • 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.41.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.382Z (4 days ago)
  • Versions: 41
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 42,010 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-orgpolicy_v2

This is the simple REST client for Organization Policy 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 Organization Policy 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-orgpolicy_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.49.0 (published 14 days ago)
  • Last Synced: 2026-08-15T02:02:27.060Z (1 day ago)
  • Versions: 49
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 43,063 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 18.078%
    • Downloads: 26.638%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: 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.32.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.069Z (4 days ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 35,053 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 18.329%
    • Downloads: 28.065%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-apis-vpcaccess_v1beta1

This is the simple REST client for Serverless VPC Access 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 Serverless VPC Access 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-vpcaccess_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.22.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:25.331Z (1 day ago)
  • Versions: 22
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 11,451 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 18.547%
    • Downloads: 55.642%
  • 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.27.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:21.912Z (4 days ago)
  • Versions: 27
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 29,601 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-videointelligence_v1beta2

This is the simple REST client for Cloud Video Intelligence 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 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_v1beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.26.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:12.004Z (1 day ago)
  • Versions: 26
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 28,606 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 18.975%
    • Downloads: 31.123%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-apis-youtube_partner_v1

This is the simple REST client for YouTube Content ID 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 YouTube Content ID 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-youtube_partner_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.1.0 (published over 5 years ago)
  • Last Synced: 2026-08-15T02:02:12.103Z (1 day ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 8,411 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 19.061%
    • Downloads: 57.183%
  • Maintainers (1)
rubygems.org: google-apis-containeranalysis_v1

This is the simple REST client for Container Analysis 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 Container Analysis 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-containeranalysis_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.78.0 (published about 1 month ago)
  • Last Synced: 2026-08-12T17:47:26.095Z (4 days ago)
  • Versions: 78
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 53,556 Total
  • Rankings:
    • Forks count: 0.519%
    • Stargazers count: 0.69%
    • Dependent packages count: 15.706%
    • Average: 19.468%
    • Downloads: 33.646%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-firebasehosting_v1

This is the simple REST client for Firebase Hosting 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 Hosting 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-firebasehosting_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.26.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:12.132Z (1 day ago)
  • Versions: 26
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 27,932 Total
  • Rankings:
    • Forks count: 0.519%
    • Stargazers count: 0.69%
    • Dependent packages count: 15.706%
    • Average: 19.521%
    • Downloads: 33.906%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-apis-advisorynotifications_v1

This is the simple REST client for Advisory Notifications 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 Advisory Notifications 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-advisorynotifications_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.13.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.166Z (4 days ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 8,750 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 20.505%
    • Downloads: 61.515%
  • Maintainers (1)
rubygems.org: google-apis-playintegrity_v1

This is the simple REST client for Google Play Integrity 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 Play Integrity 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-playintegrity_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.35.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:28.591Z (4 days ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 511,490 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 20.571%
    • Downloads: 39.002%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-mybusinessplaceactions_v1

This is the simple REST client for My Business Place Actions 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 Place Actions 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-mybusinessplaceactions_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.150Z (4 days ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 93,588 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.835%
    • Dependent packages count: 15.706%
    • Average: 20.705%
    • Downloads: 39.594%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-networksecurity_v1

This is the simple REST client for Network Security 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 Security 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-networksecurity_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.56.0 (published 28 days ago)
  • Last Synced: 2026-08-12T17:47:26.411Z (4 days ago)
  • Versions: 56
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 34,682 Total
  • Rankings:
    • Forks count: 0.519%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 22.744%
    • Dependent repos count: 46.782%
    • Downloads: 50.001%
  • Maintainers (1)
rubygems.org: 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.63.0 (published 21 days ago)
  • Last Synced: 2026-08-12T17:47:26.351Z (4 days ago)
  • Versions: 63
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,718 Total
  • Rankings:
    • Stargazers count: 0.677%
    • Forks count: 0.716%
    • Dependent packages count: 15.706%
    • Average: 24.539%
    • Dependent repos count: 46.779%
    • Downloads: 58.818%
  • Maintainers (1)
rubygems.org: google-apis-analyticshub_v1beta1

This is the simple REST client for Analytics Hub 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 Analytics 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-analyticshub_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.37.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:28.611Z (4 days ago)
  • Versions: 37
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 25,621 Total
  • Rankings:
    • Forks count: 0.73%
    • Stargazers count: 0.924%
    • Dependent packages count: 15.706%
    • Average: 25.102%
    • Dependent repos count: 46.779%
    • Downloads: 61.373%
  • Maintainers (1)
rubygems.org: google-apis-playdeveloperreporting_v1beta1

This is the simple REST client for Google Play Developer 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 Google Play Developer 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-playdeveloperreporting_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.42.0 (published about 1 month ago)
  • Last Synced: 2026-08-12T17:47:24.183Z (4 days ago)
  • Versions: 42
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 28,674 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.784%
    • Dependent packages count: 15.706%
    • Average: 26.249%
    • Dependent repos count: 46.782%
    • Downloads: 67.369%
  • Maintainers (1)
gem.coop: google-apis-bigquerydatapolicy_v1

This is the simple REST client for BigQuery Data Policy 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 Data Policy 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-bigquerydatapolicy_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.10.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:25.249Z (4 days ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,114 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 27.865%
    • Downloads: 83.596%
  • Maintainers (1)
gem.coop: google-apis-solar_v1

This is the simple REST client for Solar 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 Solar 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-solar_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.12.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:29.097Z (1 day ago)
  • Versions: 12
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,196 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 29.423%
    • Downloads: 88.268%
  • Maintainers (1)
rubygems.org: google-apis-cloudcommerceprocurement_v1

This is the simple REST client for Cloud Commerce Partner Procurement 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 Commerce Partner Procurement 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-cloudcommerceprocurement_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:28.248Z (4 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 10,087 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Average: 31.455%
    • Dependent repos count: 46.782%
    • Downloads: 93.332%
  • Maintainers (1)
gem.coop: google-apis-osconfig_v2

This is the simple REST client for OS Config 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 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_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.9.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.052Z (4 days ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,333 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.078%
    • Downloads: 96.233%
  • Maintainers (1)
rubygems.org: 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.6.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.851Z (4 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,616 Total
  • Rankings:
    • Forks count: 0.482%
    • Stargazers count: 0.677%
    • Dependent packages count: 15.706%
    • Average: 32.65%
    • Dependent repos count: 46.779%
    • Downloads: 99.605%
  • Maintainers (1)
rubygems.org: google-apis-cloudsupport_v2

This is the simple REST client for Google Cloud Support 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 Google Cloud Support 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-cloudsupport_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.26.0 (published 7 days ago)
  • Last Synced: 2026-08-12T17:47:28.540Z (4 days ago)
  • Versions: 26
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 12,106 Total
  • Rankings:
    • Forks count: 0.487%
    • Stargazers count: 0.679%
    • Dependent packages count: 15.634%
    • Average: 32.666%
    • Dependent repos count: 46.917%
    • Downloads: 99.614%
  • Maintainers (1)
rubygems.org: google-apis-checks_v1alpha

This is the simple REST client for Checks 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 Checks 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-checks_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.877Z (4 days ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,492 Total
  • Rankings:
    • Forks count: 0.467%
    • Stargazers count: 0.677%
    • Dependent packages count: 15.643%
    • Average: 32.675%
    • Dependent repos count: 46.937%
    • Downloads: 99.65%
  • Maintainers (1)
rubygems.org: google-apis-searchads360_v0

This is the simple REST client for Search Ads 360 Reporting API V0. 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 Search Ads 360 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-searchads360_v0/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published 7 days ago)
  • Last Synced: 2026-08-12T17:47:21.876Z (4 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 27,650 Total
  • Rankings:
    • Forks count: 0.734%
    • Stargazers count: 0.932%
    • Dependent packages count: 15.706%
    • Average: 32.697%
    • Dependent repos count: 46.779%
    • Downloads: 99.334%
  • Maintainers (1)
rubygems.org: google-apis-advisorynotifications_v1

This is the simple REST client for Advisory Notifications 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 Advisory Notifications 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-advisorynotifications_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.13.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T00:31:56.362Z (5 days ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 8,750 Total
  • Rankings:
    • Forks count: 0.734%
    • Stargazers count: 0.942%
    • Dependent packages count: 15.706%
    • Average: 32.743%
    • Dependent repos count: 46.779%
    • Downloads: 99.556%
  • Maintainers (1)
gem.coop: google-apis-threatintelligence_v1beta

This is the simple REST client for Threat Intelligence 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 Threat 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-threatintelligence_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.13.0 (published 7 days ago)
  • Last Synced: 2026-08-12T17:47:28.750Z (4 days ago)
  • Versions: 13
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,513 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.856%
    • Downloads: 98.567%
  • Maintainers (1)
rubygems.org: google-apis-language_v2

This is the simple REST client for Cloud Natural Language 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 Natural Language 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-language_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.11.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:24.287Z (4 days ago)
  • Versions: 11
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,577 Total
  • Rankings:
    • Forks count: 0.47%
    • Stargazers count: 0.685%
    • Dependent packages count: 15.608%
    • Average: 33.002%
    • Dependent repos count: 48.859%
    • Downloads: 99.389%
  • Maintainers (1)
gem.coop: google-apis-hypercomputecluster_v1

This is the simple REST client for Cluster Director 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 Cluster 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-hypercomputecluster_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.9.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:21.117Z (4 days ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,151 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 33.025%
    • Downloads: 99.076%
  • Maintainers (1)
gem.coop: google-apis-developerknowledge_v1alpha

This is the simple REST client for Developer Knowledge 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 Developer Knowledge 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-developerknowledge_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published 21 days ago)
  • Last Synced: 2026-08-12T17:47:25.949Z (4 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,244 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 33.267%
    • Downloads: 99.801%
  • Maintainers (1)
gem.coop: google-apis-developerknowledge_v1

This is the simple REST client for Developer Knowledge 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 Developer Knowledge 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-developerknowledge_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.7.0 (published 7 days ago)
  • Last Synced: 2026-08-12T17:47:26.543Z (4 days ago)
  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,463 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 33.267%
    • Downloads: 99.802%
  • Maintainers (1)
rubygems.org: google-apis-cloudnumberregistry_v1alpha

This is the simple REST client for Cloud Number Registry 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 Cloud Number 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-cloudnumberregistry_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.3.0 (published about 1 month ago)
  • Last Synced: 2026-08-12T17:47:26.383Z (4 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 880 Total
  • Rankings:
    • Dependent packages count: 13.76%
    • Dependent repos count: 42.146%
    • Average: 49.391%
    • Downloads: 92.268%
  • Maintainers (1)
rubygems.org: google-apis-chromewebstore_v1_1

This is the simple REST client for Chrome Web Store API V1_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 Chrome Web Store 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-chromewebstore_v1_1/
  • Licenses: Apache-2.0
  • Latest release: 0.2.0 (published 10 months ago)
  • Last Synced: 2026-08-12T17:47:26.341Z (4 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 657 Total
  • Rankings:
    • Dependent packages count: 14.23%
    • Dependent repos count: 43.588%
    • Average: 50.145%
    • Downloads: 92.617%
  • Maintainers (1)
rubygems.org: 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.9.0 (published 28 days ago)
  • Last Synced: 2026-08-12T17:47:23.565Z (4 days ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,903 Total
  • Rankings:
    • Dependent packages count: 14.747%
    • Dependent repos count: 45.174%
    • Average: 50.897%
    • Downloads: 92.771%
  • Maintainers (1)
rubygems.org: 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: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-pollen_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.4.0 (published about 2 months ago)
  • Last Synced: 2026-08-12T17:47:26.350Z (4 days ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,728 Total
  • Rankings:
    • Dependent packages count: 14.747%
    • Dependent repos count: 45.174%
    • Average: 50.899%
    • Downloads: 92.775%
  • Maintainers (1)
rubygems.org: google-apis-marketingplatformadmin_v1alpha

This is the simple REST client for Google Marketing Platform Admin 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 Marketing Platform 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-marketingplatformadmin_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.9.0 (published about 2 months ago)
  • Last Synced: 2026-08-15T02:02:12.536Z (1 day ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,380 Total
  • Rankings:
    • Dependent packages count: 15.441%
    • Dependent repos count: 47.9%
    • Average: 53.868%
    • Downloads: 98.262%
  • 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.46652691022037