A summary of data about the Ruby ecosystem.

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

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

Keywords from Contributors

activerecord activejob mvc rack rspec rubygems sinatra marshalling rubocop deployment

Last synced: about 8 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: 16 days ago

Total Commits: 24,406
Total Committers: 150
Avg Commits per committer: 162.707
Development Distribution Score (DDS): 0.342

Commits in past year: 4,135
Committers in past year: 8
Avg Commits per committer in past year: 516.875
Development Distribution Score (DDS) in past year: 0.008

Name Email Commits
yoshi-code-bot 7****t 16048
Yoshi Automation Bot y****n@g****m 6244
Google APIs g****r@g****m 919
Steven Bazyl s****l@g****m 320
Bob Aman b****n@g****m 200
Daniel Azuma d****a@g****m 188
Sai Cheemalapati s****s@g****m 38
Volker Zöpfel v****r@z****e 28
Neha Bajaj b****7 24
Sergio Gomes s****s@g****m 23
release-please[bot] 5****] 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
WhiteSource Renovate b****t@r****m 9
Simone Carletti w****s@w****t 9
Tim Emiola t****a@g****m 9
joker1007 k****t@g****m 8
Graham Paye g****8@g****m 8
mattpok@google.com m****k@g****m@c****f 8
Ruslan Korolev r****1@g****m 7
Graham Paye p****e@g****m 6
sanemat o****n@g****m 6
Ethan e****n@m****a 6
Michael C. Beck m****k@q****m 5
André Andreassa a****a 5
tknzk t****k@g****m 5
Matt Whisenhunt m****t@g****m 4
and 120 more...

Committer domains:


Issue and Pull Request metadata

Last synced: 6 days ago

Total issues: 122
Total pull requests: 13,299
Average time to close issues: 7 months
Average time to close pull requests: about 18 hours
Total issue authors: 78
Total pull request authors: 36
Average comments per issue: 1.65
Average comments per pull request: 0.09
Merged pull request: 11,915
Bot issues: 3
Bot pull requests: 34

Past year issues: 23
Past year pull requests: 5,740
Past year average time to close issues: 8 days
Past year average time to close pull requests: 1 day
Past year issue authors: 16
Past year pull request authors: 12
Past year average comments per issue: 0.43
Past year average comments per pull request: 0.13
Past year merged pull request: 4,925
Past year bot issues: 1
Past year bot pull requests: 13

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

Top Issue Authors

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

Top Pull Request Authors

  • yoshi-code-bot (13,099)
  • dazuma (66)
  • release-please[bot] (31)
  • yoshi-automation (22)
  • aandreassa (11)
  • shivgautam (9)
  • shubhangi-google (9)
  • byroot (4)
  • yahonda (4)
  • suztomo (4)
  • kurajiv (4)
  • viacheslav-rostovtsev (2)
  • gdubicki (2)
  • garyhtou (2)
  • morralgit116 (2)

Top Issue Labels

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

Top Pull Request Labels

  • kokoro:force-run (12,170)
  • automerge: exact (2,583)
  • automerge (2,451)
  • cla: yes (25)
  • autorelease: pending (18)
  • autorelease: published (9)
  • do not merge (6)
  • samples (4)
  • autorelease: tagged (4)
  • cla: no (1)

Package metadata

gem.coop: google-apis-container_v1beta1

This is the simple REST client for Kubernetes Engine 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 Kubernetes 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-container_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.97.0 (published 24 days ago)
  • Last Synced: 2025-12-06T22:31:56.453Z (3 days ago)
  • Versions: 97
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,280,514 Total
  • Docker Downloads: 434,111,021
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.308%
    • Docker downloads count: 0.351%
    • Downloads: 0.88%
  • Maintainers (1)
gem.coop: 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.46.0 (published 24 days ago)
  • Last Synced: 2025-12-06T23:02:24.539Z (3 days ago)
  • Versions: 46
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,817,120 Total
  • Docker Downloads: 27,010,638
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.711%
    • Docker downloads count: 0.771%
    • Downloads: 2.075%
  • Maintainers (1)
rubygems.org: google-apis-iamcredentials_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-iamcredentials_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.26.0 (published about 1 month ago)
  • Last Synced: 2025-12-08T11:02:31.314Z (2 days ago)
  • Versions: 26
  • Dependent Packages: 5
  • Dependent Repositories: 10,056
  • Downloads: 159,323,567 Total
  • Docker Downloads: 510,285,910
  • Rankings:
    • Downloads: 0.219%
    • Docker downloads count: 0.272%
    • Dependent repos count: 0.332%
    • Forks count: 0.522%
    • Stargazers count: 0.739%
    • Average: 0.816%
    • Dependent packages count: 2.811%
  • Maintainers (1)
gem.coop: google-apis-script_v1

This is the simple REST client for Apps Script 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 Apps Script 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-script_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.31.0 (published 3 months ago)
  • Last Synced: 2025-12-07T00:34:13.067Z (3 days ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 234,876 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.026%
    • Downloads: 6.079%
  • Maintainers (1)
gem.coop: google-apis-site_verification_v1

This is the simple REST client for Google Site Verification 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 Site Verification 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-site_verification_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published 7 months ago)
  • Last Synced: 2025-12-06T23:02:24.049Z (3 days ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 245,874 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.029%
    • Downloads: 6.087%
  • Maintainers (1)
gem.coop: google-apis-searchconsole_v1

This is the simple REST client for Google Search Console 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 Search Console 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-searchconsole_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published 5 months ago)
  • Last Synced: 2025-12-06T21:01:26.621Z (3 days ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 204,176 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.184%
    • Downloads: 6.551%
  • Maintainers (1)
gem.coop: google-apis-pagespeedonline_v5

This is the simple REST client for PageSpeed Insights API V5. 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 PageSpeed Insights API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-pagespeedonline_v5/
  • Licenses: Apache-2.0
  • Latest release: 0.21.0 (published 7 months ago)
  • Last Synced: 2025-12-06T07:16:05.213Z (4 days ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 171,444 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.352%
    • Downloads: 7.055%
  • Maintainers (1)
gem.coop: google-apis-firestore_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-firestore_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.85.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.231Z (24 days ago)
  • Versions: 85
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 163,044 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 2.452%
    • Downloads: 7.357%
  • Maintainers (1)
gem.coop: google-apis-dialogflow_v2

This is the simple REST client for Dialogflow 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 Dialogflow API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dialogflow_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.117.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.234Z (24 days ago)
  • Versions: 117
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 101,946 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.119%
    • Downloads: 9.358%
  • Maintainers (1)
gem.coop: google-apis-dialogflow_v2beta1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dialogflow_v2beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.116.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.257Z (24 days ago)
  • Versions: 116
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 93,542 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.281%
    • Downloads: 9.843%
  • Maintainers (1)
gem.coop: google-apis-cloudresourcemanager_v3

This is the simple REST client for Cloud Resource Manager 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 Resource Manager API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-cloudresourcemanager_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.60.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:58.255Z (24 days ago)
  • Versions: 60
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 88,905 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.368%
    • Downloads: 10.104%
  • Maintainers (1)
gem.coop: google-apis-cloudasset_v1

This is the simple REST client for Cloud Asset 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 Asset 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-cloudasset_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.92.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.237Z (24 days ago)
  • Versions: 92
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 86,800 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 3.433%
    • Downloads: 10.299%
  • Maintainers (1)
rubygems.org: google-apis-cloudbilling_v1

This is the simple REST client for Cloud Billing 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 Billing 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-cloudbilling_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.39.0 (published 7 months ago)
  • Last Synced: 2025-12-06T23:02:23.917Z (3 days ago)
  • Versions: 39
  • Dependent Packages: 0
  • Dependent Repositories: 159
  • Downloads: 20,282,108 Total
  • Docker Downloads: 434,111,021
  • Rankings:
    • Docker downloads count: 0.434%
    • Forks count: 0.485%
    • Stargazers count: 0.701%
    • Downloads: 1.45%
    • Dependent repos count: 2.328%
    • Average: 3.53%
    • Dependent packages count: 15.782%
  • Maintainers (1)
gem.coop: google-apis-sqladmin_v1

This is the simple REST client for Cloud SQL 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 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_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.89.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:04:00.738Z (24 days ago)
  • Versions: 89
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 69,050 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.011%
    • Downloads: 12.032%
  • Maintainers (1)
rubygems.org: google-apis-container_v1

This is the simple REST client for Kubernetes 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 Kubernetes 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-container_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.109.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.098Z (24 days ago)
  • Versions: 109
  • Dependent Packages: 0
  • Dependent Repositories: 21
  • Downloads: 20,239,080 Total
  • Docker Downloads: 434,111,021
  • Rankings:
    • Docker downloads count: 0.433%
    • Forks count: 0.486%
    • Stargazers count: 0.701%
    • Downloads: 1.44%
    • Average: 4.013%
    • Dependent repos count: 5.233%
    • Dependent packages count: 15.783%
  • Maintainers (1)
rubygems.org: google-apis-container_v1beta1

This is the simple REST client for Kubernetes Engine 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 Kubernetes 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-container_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.97.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.351Z (24 days ago)
  • Versions: 97
  • Dependent Packages: 0
  • Dependent Repositories: 21
  • Downloads: 20,217,854 Total
  • Docker Downloads: 434,111,021
  • Rankings:
    • Docker downloads count: 0.433%
    • Forks count: 0.486%
    • Stargazers count: 0.701%
    • Downloads: 1.442%
    • Average: 4.013%
    • Dependent repos count: 5.233%
    • Dependent packages count: 15.783%
  • Maintainers (1)
gem.coop: 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.61.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:04:01.238Z (24 days ago)
  • Versions: 61
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 59,194 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.403%
    • Downloads: 13.208%
  • Maintainers (1)
gem.coop: google-apis-spanner_v1

This is the simple REST client for Cloud Spanner 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 Spanner 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-spanner_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.46.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:04:00.567Z (24 days ago)
  • Versions: 46
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 57,431 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.463%
    • Downloads: 13.388%
  • Maintainers (1)
gem.coop: google-apis-chromemanagement_v1

This is the simple REST client for Chrome 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 Chrome 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-chromemanagement_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.73.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:58.264Z (24 days ago)
  • Versions: 73
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 56,397 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.583%
    • Downloads: 13.748%
  • Maintainers (1)
gem.coop: google-apis-networkmanagement_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-networkmanagement_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.73.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.987Z (24 days ago)
  • Versions: 73
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 52,446 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.886%
    • Downloads: 14.659%
  • Maintainers (1)
gem.coop: google-apis-datacatalog_v1

This is the simple REST client for Google Cloud Data Catalog 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 Cloud Data Catalog 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-datacatalog_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.62.0 (published about 2 months ago)
  • Last Synced: 2025-12-06T21:49:24.246Z (3 days ago)
  • Versions: 62
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 50,526 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 4.983%
    • Downloads: 14.95%
  • Maintainers (1)
gem.coop: google-apis-bigquerydatatransfer_v1

This is the simple REST client for BigQuery Data 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 BigQuery Data 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-bigquerydatatransfer_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.49.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.242Z (24 days ago)
  • Versions: 49
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 48,828 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.027%
    • Downloads: 15.082%
  • Maintainers (1)
gem.coop: google-apis-connectors_v1

This is the simple REST client for Connectors 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 Connectors 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-connectors_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.80.0 (published about 2 months ago)
  • Last Synced: 2025-12-06T23:02:23.521Z (3 days ago)
  • Versions: 80
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 47,054 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.28%
    • Downloads: 15.841%
  • Maintainers (1)
gem.coop: google-apis-contactcenterinsights_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-contactcenterinsights_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.78.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:58.260Z (24 days ago)
  • Versions: 78
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 46,806 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.283%
    • Downloads: 15.85%
  • Maintainers (1)
gem.coop: google-apis-privateca_v1

This is the simple REST client for Certificate Authority 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 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-privateca_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.57.0 (published about 1 month ago)
  • Last Synced: 2025-12-06T23:02:22.537Z (3 days ago)
  • Versions: 57
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 45,271 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.367%
    • Downloads: 16.1%
  • Maintainers (1)
gem.coop: google-apis-cloudtasks_v2beta2

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-cloudtasks_v2beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.50.0 (published about 1 month ago)
  • Last Synced: 2025-12-06T23:02:24.702Z (3 days ago)
  • Versions: 50
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 44,236 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.416%
    • Downloads: 16.247%
  • Maintainers (1)
gem.coop: google-apis-prod_tt_sasportal_v1alpha1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-prod_tt_sasportal_v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.44.0 (published 7 months ago)
  • Last Synced: 2025-12-06T07:35:47.626Z (4 days ago)
  • Versions: 44
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 43,845 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.438%
    • Downloads: 16.315%
  • Maintainers (1)
gem.coop: google-apis-managedidentities_v1beta1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-managedidentities_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.40.0 (published 7 months ago)
  • Last Synced: 2025-12-06T03:02:25.358Z (4 days ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 43,910 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.443%
    • Downloads: 16.33%
  • Maintainers (1)
gem.coop: google-apis-accessapproval_v1

This is the simple REST client for Access Approval 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 Access Approval 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-accessapproval_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.44.0 (published 3 months ago)
  • Last Synced: 2025-12-06T07:18:03.671Z (4 days ago)
  • Versions: 44
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 42,706 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.55%
    • Downloads: 16.651%
  • Maintainers (1)
gem.coop: google-apis-cloudasset_v1p5beta1

This is the simple REST client for Cloud Asset API V1p5beta1. 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 Asset 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-cloudasset_v1p5beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.45.0 (published 7 months ago)
  • Last Synced: 2025-12-06T05:22:29.142Z (4 days ago)
  • Versions: 45
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 41,360 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.72%
    • Downloads: 17.161%
  • Maintainers (1)
gem.coop: google-apis-paymentsresellersubscription_v1

This is the simple REST client for Payments Reseller Subscription 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 Payments Reseller Subscription 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-paymentsresellersubscription_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.60.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.984Z (24 days ago)
  • Versions: 60
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 41,045 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.79%
    • Downloads: 17.369%
  • Maintainers (1)
gem.coop: google-apis-vmmigration_v1alpha1

This is the simple REST client for VM Migration API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the 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_v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.67.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:04:01.644Z (24 days ago)
  • Versions: 67
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 40,399 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 5.857%
    • Downloads: 17.572%
  • Maintainers (1)
rubygems.org: google-apis-analyticsreporting_v4

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-analyticsreporting_v4/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published over 1 year ago)
  • Last Synced: 2025-12-06T23:02:21.462Z (3 days ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 6
  • Downloads: 597,027 Total
  • Rankings:
    • Forks count: 0.475%
    • Stargazers count: 0.691%
    • Downloads: 4.777%
    • Average: 6.165%
    • Dependent repos count: 9.105%
    • Dependent packages count: 15.775%
  • Maintainers (1)
gem.coop: google-apis-datafusion_v1

This is the simple REST client for Cloud Data Fusion 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 Data Fusion 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-datafusion_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.41.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:58.262Z (24 days ago)
  • Versions: 41
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,107 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.289%
    • Downloads: 18.867%
  • Maintainers (1)
gem.coop: google-apis-clouddeploy_v1

This is the simple REST client for Cloud Deploy 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 Deploy 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-clouddeploy_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.65.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:58.258Z (24 days ago)
  • Versions: 65
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,855 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.289%
    • Downloads: 18.867%
  • Maintainers (1)
gem.coop: google-apis-billingbudgets_v1

This is the simple REST client for Cloud Billing Budget 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 Billing Budget 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-billingbudgets_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.31.0 (published 7 months ago)
  • Last Synced: 2025-12-06T23:02:24.612Z (3 days ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 35,775 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.345%
    • Downloads: 19.035%
  • Maintainers (1)
gem.coop: google-apis-kgsearch_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-kgsearch_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.17.0 (published 7 months ago)
  • Last Synced: 2025-12-06T10:05:06.931Z (4 days ago)
  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,847 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.552%
    • Downloads: 19.657%
  • Maintainers (1)
gem.coop: google-apis-sts_v1beta

This is the simple REST client for Security Token Service 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 Security Token Service 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-sts_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.31.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:04:01.225Z (24 days ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,564 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.639%
    • Downloads: 19.918%
  • Maintainers (1)
gem.coop: google-apis-jobs_v3p1beta1

This is the simple REST client for Cloud Talent Solution API V3p1beta1. 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 Talent Solution API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-jobs_v3p1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.32.0 (published about 2 months ago)
  • Last Synced: 2025-12-06T23:02:23.558Z (3 days ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,497 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.708%
    • Downloads: 20.123%
  • Maintainers (1)
gem.coop: google-apis-adexchangebuyer2_v2beta1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-adexchangebuyer2_v2beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.29.0 (published 7 months ago)
  • Last Synced: 2025-12-06T03:46:05.523Z (4 days ago)
  • Versions: 29
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 32,732 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 6.78%
    • Downloads: 20.34%
  • Maintainers (1)
gem.coop: google-apis-homegraph_v1

This is the simple REST client for HomeGraph 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 HomeGraph 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-homegraph_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.26.0 (published 5 months ago)
  • Last Synced: 2025-12-06T23:02:21.863Z (3 days ago)
  • Versions: 26
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 30,151 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 7.216%
    • Downloads: 21.647%
  • Maintainers (1)
rubygems.org: google-apis-secretmanager_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-secretmanager_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.50.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.895Z (24 days ago)
  • Versions: 50
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 1,525,114 Total
  • Rankings:
    • Forks count: 0.478%
    • Stargazers count: 0.694%
    • Downloads: 2.941%
    • Average: 8.323%
    • Dependent packages count: 15.777%
    • Dependent repos count: 21.723%
  • Maintainers (1)
rubygems.org: google-apis-mybusinessbusinessinformation_v1

This is the simple REST client for My Business Business Information 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 Business 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-mybusinessbusinessinformation_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.28.0 (published 5 months ago)
  • Last Synced: 2025-12-06T11:46:09.497Z (4 days ago)
  • Versions: 28
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 934,761 Total
  • Rankings:
    • Forks count: 0.474%
    • Stargazers count: 0.69%
    • Downloads: 5.393%
    • Average: 8.814%
    • Dependent packages count: 15.776%
    • Dependent repos count: 21.738%
  • Maintainers (1)
gem.coop: google-apis-essentialcontacts_v1

This is the simple REST client for Essential Contacts 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 Essential Contacts 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-essentialcontacts_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.24.0 (published 6 months ago)
  • Last Synced: 2025-12-06T23:02:22.653Z (3 days ago)
  • Versions: 24
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 22,331 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 9.096%
    • Downloads: 27.288%
  • Maintainers (1)
gem.coop: google-apis-playdeveloperreporting_v1alpha1

This is the simple REST client for Google Play Developer Reporting API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the 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_v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.35.0 (published 7 months ago)
  • Last Synced: 2025-12-06T02:32:37.416Z (4 days ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 21,323 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 9.548%
    • Downloads: 28.643%
  • Maintainers (1)
gem.coop: google-apis-acceleratedmobilepageurl_v1

This is the simple REST client for Accelerated Mobile Pages (AMP) URL 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 Accelerated Mobile Pages (AMP) URL 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-acceleratedmobilepageurl_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.18.0 (published 7 months ago)
  • Last Synced: 2025-12-06T09:32:21.408Z (4 days ago)
  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 19,485 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 9.983%
    • Downloads: 29.95%
  • Maintainers (1)
rubygems.org: google-apis-sts_v1

This is the simple REST client for Security Token Service API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Security Token Service 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-sts_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.45.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.124Z (24 days ago)
  • Versions: 45
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 47,589 Total
  • Rankings:
    • Forks count: 0.475%
    • Stargazers count: 0.691%
    • Average: 11.652%
    • Dependent packages count: 15.775%
    • Downloads: 19.591%
    • Dependent repos count: 21.728%
  • Maintainers (1)
gem.coop: google-apis-alloydb_v1

This is the simple REST client for AlloyDB 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 AlloyDB 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-alloydb_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.50.0 (published 24 days ago)
  • Last Synced: 2025-12-06T23:02:22.979Z (3 days ago)
  • Versions: 50
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16,763 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 11.948%
    • Downloads: 35.845%
  • 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.35.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.234Z (24 days ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 15,473 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 12.217%
    • Downloads: 36.651%
  • Maintainers (1)
rubygems.org: google-apis-jobs_v3

This is the simple REST client for Cloud Talent Solution 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 Talent Solution API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-jobs_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.32.0 (published about 2 months ago)
  • Last Synced: 2025-12-06T12:33:05.756Z (4 days ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 36,637 Total
  • Rankings:
    • Forks count: 0.474%
    • Stargazers count: 0.69%
    • Average: 12.268%
    • Dependent packages count: 15.776%
    • Dependent repos count: 21.738%
    • Downloads: 22.662%
  • 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.31.0 (published about 2 months ago)
  • Last Synced: 2025-12-06T23:02:22.175Z (3 days ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 15,002 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 12.423%
    • Downloads: 37.269%
  • Maintainers (1)
rubygems.org: google-apis-content_v2_1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-content_v2_1/
  • Licenses: Apache-2.0
  • Latest release: 0.47.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.300Z (24 days ago)
  • Versions: 47
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 530,914 Total
  • Rankings:
    • Forks count: 0.514%
    • Stargazers count: 0.701%
    • Downloads: 7.787%
    • Average: 14.298%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-dialogflow_v2

This is the simple REST client for Dialogflow 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 Dialogflow API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dialogflow_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.117.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.646Z (24 days ago)
  • Versions: 117
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 101,946 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.805%
    • Downloads: 13.034%
    • Average: 15.387%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-dialogflow_v2beta1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dialogflow_v2beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.116.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.216Z (24 days ago)
  • Versions: 116
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 93,542 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Downloads: 13.66%
    • Average: 15.448%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-dialogflow_v3beta1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-dialogflow_v3beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.113.0 (published about 1 month ago)
  • Last Synced: 2025-12-06T23:02:25.018Z (3 days ago)
  • Versions: 113
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 93,295 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.805%
    • Downloads: 13.45%
    • Average: 15.47%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudasset_v1

This is the simple REST client for Cloud Asset 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 Asset 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-cloudasset_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.92.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.612Z (24 days ago)
  • Versions: 92
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 86,800 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.805%
    • Downloads: 14.089%
    • Average: 15.598%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudresourcemanager_v3

This is the simple REST client for Cloud Resource Manager 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 Resource Manager API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-cloudresourcemanager_v3/
  • Licenses: Apache-2.0
  • Latest release: 0.60.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.173Z (24 days ago)
  • Versions: 60
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 88,905 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Downloads: 14.304%
    • Average: 15.611%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudbuild_v1

This is the simple REST client for Cloud Build 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 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_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.76.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.703Z (24 days ago)
  • Versions: 76
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 73,959 Total
  • Rankings:
    • Forks count: 0.452%
    • Stargazers count: 0.63%
    • Downloads: 14.791%
    • Average: 15.672%
    • Dependent packages count: 15.706%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-spanner_v1

This is the simple REST client for Cloud Spanner 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 Spanner 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-spanner_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.46.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.560Z (24 days ago)
  • Versions: 46
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 57,431 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Downloads: 15.724%
    • Average: 15.922%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-firestore_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-firestore_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.85.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.743Z (24 days ago)
  • Versions: 85
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 163,044 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 16.072%
    • Downloads: 16.778%
    • 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.61.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.727Z (24 days ago)
  • Versions: 61
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 59,194 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)
rubygems.org: google-apis-managedidentities_v1beta1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-managedidentities_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.40.0 (published 7 months ago)
  • Last Synced: 2025-12-06T23:02:21.924Z (3 days ago)
  • Versions: 40
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 43,917 Total
  • Rankings:
    • Forks count: 0.452%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 16.742%
    • Downloads: 20.139%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-chromemanagement_v1

This is the simple REST client for Chrome 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 Chrome 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-chromemanagement_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.73.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.444Z (24 days ago)
  • Versions: 73
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 56,397 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 16.749%
    • Downloads: 19.889%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-bigquerydatatransfer_v1

This is the simple REST client for BigQuery Data 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 BigQuery Data 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-bigquerydatatransfer_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.49.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:40.820Z (24 days ago)
  • Versions: 49
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 48,828 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.805%
    • Dependent packages count: 15.706%
    • Average: 16.795%
    • Downloads: 20.074%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-apis-tpu_v2

This is the simple REST client for Cloud TPU 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 TPU 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-tpu_v2/
  • Licenses: Apache-2.0
  • Latest release: 0.20.0 (published about 2 months ago)
  • Last Synced: 2025-12-06T20:08:01.147Z (4 days ago)
  • Versions: 20
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 9,516 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 16.977%
    • Downloads: 50.931%
  • Maintainers (1)
rubygems.org: google-apis-sqladmin_v1

This is the simple REST client for Cloud SQL 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 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_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.89.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.212Z (24 days ago)
  • Versions: 89
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 69,050 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 17.016%
    • Downloads: 21.495%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-gameservices_v1beta

This is the simple REST client for Game Services 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 Game Services 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-gameservices_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.32.0 (published over 2 years ago)
  • Last Synced: 2025-12-06T23:02:22.761Z (3 days ago)
  • Versions: 32
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 38,602 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 17.04%
    • Downloads: 21.447%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-cloudbuild_v1beta1

This is the simple REST client for Cloud Build 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 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_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.30.0 (published almost 3 years ago)
  • Last Synced: 2025-12-06T23:02:22.537Z (3 days ago)
  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 37,363 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.835%
    • Dependent packages count: 15.706%
    • Average: 17.132%
    • Downloads: 21.729%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-networkmanagement_v1beta1

This is the simple REST client for Network 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 Network Management API, but note that some services may provide a separate modern client that is easier to use.

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-networkmanagement_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.69.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.746Z (24 days ago)
  • Versions: 69
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 51,596 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 17.209%
    • Downloads: 22.464%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-networkmanagement_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-networkmanagement_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.73.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.033Z (24 days ago)
  • Versions: 73
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 52,446 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 17.625%
    • Downloads: 24.27%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-sts_v1beta

This is the simple REST client for Security Token Service 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 Security Token Service 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-sts_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.31.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.095Z (24 days ago)
  • Versions: 31
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 33,564 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 17.709%
    • Downloads: 24.689%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-datafusion_v1beta1

This is the simple REST client for Cloud Data Fusion 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 Data Fusion 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-datafusion_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.41.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.284Z (24 days ago)
  • Versions: 41
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,708 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Average: 17.907%
    • Downloads: 25.589%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-datafusion_v1

This is the simple REST client for Cloud Data Fusion 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 Data Fusion 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-datafusion_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.41.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.017Z (24 days ago)
  • Versions: 41
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,107 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.85%
    • Dependent packages count: 15.706%
    • Average: 18.211%
    • Downloads: 27.167%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-paymentsresellersubscription_v1

This is the simple REST client for Payments Reseller Subscription 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 Payments Reseller Subscription 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-paymentsresellersubscription_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.60.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.447Z (24 days ago)
  • Versions: 60
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 41,045 Total
  • Rankings:
    • Forks count: 0.539%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 18.278%
    • Downloads: 27.647%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-language_v1beta1

This is the simple REST client for Cloud Natural Language 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 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_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.14.0 (published about 3 years ago)
  • Last Synced: 2025-12-06T23:02:23.931Z (3 days ago)
  • Versions: 14
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,568 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.887%
    • Dependent packages count: 15.706%
    • Average: 19.614%
    • Downloads: 34.086%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-vmmigration_v1alpha1

This is the simple REST client for VM Migration API V1alpha1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the 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_v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.67.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.098Z (24 days ago)
  • Versions: 67
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 40,399 Total
  • Rankings:
    • Forks count: 0.465%
    • Stargazers count: 0.63%
    • Dependent packages count: 15.706%
    • Average: 19.657%
    • Downloads: 34.704%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: 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.72.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.208Z (24 days ago)
  • Versions: 72
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 43,989 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 19.662%
    • Downloads: 34.558%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: 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.16.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:58.396Z (24 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,995 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 19.772%
    • Downloads: 59.315%
  • Maintainers (1)
rubygems.org: google-apis-mybusinesslodging_v1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-mybusinesslodging_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.22.0 (published 7 months ago)
  • Last Synced: 2025-12-06T23:02:22.607Z (3 days ago)
  • Versions: 22
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 26,004 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.759%
    • Dependent packages count: 15.706%
    • Average: 20.222%
    • Downloads: 37.254%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-adexperiencereport_v1

This is the simple REST client for Ad Experience Report 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 Ad Experience Report 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-adexperiencereport_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.18.0 (published 7 months ago)
  • Last Synced: 2025-12-06T12:50:28.245Z (4 days ago)
  • Versions: 18
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,553 Total
  • Rankings:
    • Forks count: 0.549%
    • Stargazers count: 0.714%
    • Dependent packages count: 15.706%
    • Average: 20.28%
    • Downloads: 37.649%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-mybusinessnotifications_v1

This is the simple REST client for My Business 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 My Business 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-mybusinessnotifications_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.14.0 (published 7 months ago)
  • Last Synced: 2025-12-02T21:48:12.756Z (7 days ago)
  • Versions: 14
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 82,804 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.835%
    • Dependent packages count: 15.706%
    • Average: 20.394%
    • Downloads: 38.041%
    • Dependent repos count: 46.782%
  • Maintainers (1)
rubygems.org: google-apis-clouddeploy_v1

This is the simple REST client for Cloud Deploy 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 Deploy 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-clouddeploy_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.65.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.801Z (24 days ago)
  • Versions: 65
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 36,855 Total
  • Rankings:
    • Forks count: 0.607%
    • Stargazers count: 0.805%
    • Dependent packages count: 15.706%
    • Average: 21.508%
    • Downloads: 43.64%
    • Dependent repos count: 46.782%
  • Maintainers (1)
gem.coop: google-apis-apphub_v1alpha

This is the simple REST client for App Hub API V1alpha. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the App 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-apphub_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.16.0 (published about 2 months ago)
  • Last Synced: 2025-12-06T11:04:41.790Z (4 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,327 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 21.521%
    • Downloads: 64.564%
  • Maintainers (1)
rubygems.org: google-apis-beyondcorp_v1alpha

This is the simple REST client for BeyondCorp 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 BeyondCorp 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-beyondcorp_v1alpha/
  • Licenses: Apache-2.0
  • Latest release: 0.57.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.125Z (24 days ago)
  • Versions: 57
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 27,864 Total
  • Rankings:
    • Forks count: 0.734%
    • Stargazers count: 0.932%
    • Dependent packages count: 15.706%
    • Average: 26.109%
    • Dependent repos count: 46.779%
    • Downloads: 66.393%
  • Maintainers (1)
gem.coop: google-apis-rapidmigrationassessment_v1

This is the simple REST client for Rapid Migration Assessment 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 Rapid Migration Assessment 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-rapidmigrationassessment_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.8.0 (published 7 months ago)
  • Last Synced: 2025-12-06T01:20:06.168Z (4 days ago)
  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,643 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 28.539%
    • Downloads: 85.618%
  • Maintainers (1)
gem.coop: google-apis-secretmanager_v1beta2

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-secretmanager_v1beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.9.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.989Z (24 days ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,037 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 29.573%
    • Downloads: 88.718%
  • Maintainers (1)
gem.coop: google-apis-securityposture_v1

This is the simple REST client for Security Posture API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Security Posture 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-securityposture_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published about 1 month ago)
  • Last Synced: 2025-12-06T23:02:22.304Z (3 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,919 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 31.871%
    • Downloads: 95.614%
  • Maintainers (1)
gem.coop: google-apis-saasservicemgmt_v1beta1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-saasservicemgmt_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:03:59.983Z (24 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,333 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.156%
    • Downloads: 96.468%
  • 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.5.0 (published 7 months ago)
  • Last Synced: 2025-12-06T23:02:21.674Z (3 days ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,735 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-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.16.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.040Z (24 days ago)
  • Versions: 16
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 6,995 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-migrationcenter_v1alpha1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-migrationcenter_v1alpha1/
  • Licenses: Apache-2.0
  • Latest release: 0.51.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:42.033Z (24 days ago)
  • Versions: 51
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 20,148 Total
  • Rankings:
    • Stargazers count: 0.677%
    • Forks count: 0.716%
    • Dependent packages count: 15.706%
    • Average: 32.675%
    • Dependent repos count: 46.779%
    • Downloads: 99.497%
  • Maintainers (1)
rubygems.org: 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.35.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.747Z (24 days ago)
  • Versions: 35
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 15,473 Total
  • Rankings:
    • Forks count: 0.485%
    • Stargazers count: 0.678%
    • Dependent packages count: 15.701%
    • Average: 32.688%
    • Dependent repos count: 46.951%
    • Downloads: 99.623%
  • Maintainers (1)
gem.coop: google-apis-parametermanager_v1

This is the simple REST client for Parameter 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 Parameter 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-parametermanager_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.4.0 (published about 1 month ago)
  • Last Synced: 2025-12-06T00:21:28.305Z (4 days ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 948 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 32.737%
    • Downloads: 98.21%
  • Maintainers (1)
rubygems.org: google-apis-dfareporting_v5

This is the simple REST client for Campaign Manager 360 API V5. 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_v5/
  • Licenses: Apache-2.0
  • Latest release: 0.4.0 (published about 1 month ago)
  • Last Synced: 2025-12-06T01:33:42.632Z (4 days ago)
  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 962 Total
  • Rankings:
    • Dependent packages count: 14.29%
    • Dependent repos count: 43.773%
    • Average: 50.263%
    • Downloads: 92.727%
  • Maintainers (1)
rubygems.org: google-apis-saasservicemgmt_v1beta1

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-saasservicemgmt_v1beta1/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.610Z (24 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,333 Total
  • Rankings:
    • Dependent packages count: 14.38%
    • Dependent repos count: 44.048%
    • Average: 50.391%
    • Downloads: 92.744%
  • Maintainers (1)
rubygems.org: google-apis-securityposture_v1

This is the simple REST client for Security Posture API V1. Simple REST clients are Ruby client libraries that provide access to Google services via their HTTP REST API endpoints. These libraries are generated and updated automatically based on the discovery documents published by the service, and they handle most concerns such as authentication, pagination, retry, timeouts, and logging. You can use this client to access the Security Posture 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-securityposture_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.6.0 (published about 1 month ago)
  • Last Synced: 2025-12-06T04:17:49.533Z (4 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,914 Total
  • Rankings:
    • Dependent packages count: 14.562%
    • Dependent repos count: 44.603%
    • Average: 50.654%
    • Downloads: 92.799%
  • Maintainers (1)
rubygems.org: google-apis-adsenseplatform_v1

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

  • Homepage:
  • Documentation: http://www.rubydoc.info/gems/google-apis-adsenseplatform_v1/
  • Licenses: Apache-2.0
  • Latest release: 0.3.0 (published 7 months ago)
  • Last Synced: 2025-12-06T16:32:27.919Z (4 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,404 Total
  • Rankings:
    • Dependent packages count: 14.707%
    • Dependent repos count: 45.048%
    • Average: 50.848%
    • Downloads: 92.788%
  • Maintainers (1)
rubygems.org: google-apis-merchantapi_promotions_v1beta

This is the simple REST client for Merchant API PromotionsV1beta. 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_promotions_v1beta/
  • Licenses: Apache-2.0
  • Latest release: 0.10.0 (published 4 months ago)
  • Last Synced: 2025-12-06T23:02:22.341Z (3 days ago)
  • Versions: 10
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,330 Total
  • Rankings:
    • Dependent packages count: 14.736%
    • Dependent repos count: 45.14%
    • Average: 50.883%
    • Downloads: 92.771%
  • Maintainers (1)
rubygems.org: google-apis-secretmanager_v1beta2

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

  • Homepage: https://github.com/google/google-api-ruby-client
  • Documentation: http://www.rubydoc.info/gems/google-apis-secretmanager_v1beta2/
  • Licenses: Apache-2.0
  • Latest release: 0.9.0 (published 24 days ago)
  • Last Synced: 2025-11-16T12:02:41.329Z (24 days ago)
  • Versions: 9
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,037 Total
  • Rankings:
    • Dependent packages count: 15.264%
    • Dependent repos count: 47.349%
    • Average: 53.532%
    • Downloads: 97.983%
  • 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.7.0 (published about 1 month ago)
  • Last Synced: 2025-12-06T23:02:24.406Z (3 days ago)
  • Versions: 7
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,927 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: 34.638773990334975