https://github.com/googleapis/google-cloud-ruby
Google Cloud Client Library for Ruby
https://github.com/googleapis/google-cloud-ruby
Keywords from Contributors
activejob activerecord mvc marshalling protobuf-runtime protoc protocol-buffers protocol-compiler rack rspec
Last synced: about 11 hours ago
JSON representation
Repository metadata
Google Cloud Client Library for Ruby
- Host: GitHub
- URL: https://github.com/googleapis/google-cloud-ruby
- Owner: googleapis
- License: apache-2.0
- Created: 2014-05-30T21:47:14.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2026-02-24T21:44:42.000Z (7 days ago)
- Last Synced: 2026-02-24T21:56:36.541Z (7 days ago)
- Language: Ruby
- Homepage: https://googleapis.github.io/google-cloud-ruby/
- Size: 296 MB
- Stars: 1,403
- Watchers: 118
- Forks: 567
- Open Issues: 79
- Releases: 3,938
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
README.md
Google Cloud Ruby Clients
Idiomatic Ruby client libraries for
Google Cloud Platform APIs.
This repository includes client libraries for Google Cloud Platform services,
along with a selected set of Google services unrelated to the cloud platform.
What's here
Client library gems
Most directories each correspond to a client library RubyGem, including its
code, tests, gemspec, and documentation. Some client libraries also include
handwritten samples in the samples directory, and/or autogenerated samples
in the snippets directory.
Most client libraries in this repository are automatically generated by the
GAPIC Generator. A small
number are written and maintained by hand. You can identify a generated client
library by the presence of .OwlBot.yaml in the library directory. For the
most part, do not try to edit generated libraries by hand, because changes will
be overwritten by the code generator.
Other directories
A few directories include support files, including:
.githubincludes configuration for GitHub Actions and bots that help to
maintain this repository..kokoroincludes configuration for internal Google processes that help to
maintain this repository..toysincludes scripts for running CI, releases, and maintenance tasks.acceptanceandintegrationinclude shared fixtures for acceptance tests.obsoletecontains older libraries that are obsolete and no longer
maintained.
GitHub facilities
Issues for client libraries hosted here can be filed in the
issues tab. However,
this is not an official support channel. If you have support questions, file a
support request through the normal Google support channels, or post questions
on a forum such as StackOverflow.
Pull requests are
welcome. Please see the section below on contributing.
Some maintenance tasks can be run in the
actions tab by
authorized personnel.
Using the client libraries
These client library RubyGems each include classes and methods that can be used
to make authenticated calls to specific Google APIs. Some libraries also
include additional convenience code implementing common client-side workflows
or best practices.
In general, you can expect to:
-
Activate access to the API by creating a project on
the Google Cloud Console, enabling
billing if necessary, and enabling the API. -
Choose a library and install it, typically by
adding it to your bundle. For example, here is how
you might add a the Translation service client to your Gemfile:# Gemfile # ... previous libraries ... gem "google-cloud-translate", "~> 3.2" -
Instantiate a client object. This object represents an authenticated
connection to the service. For example, here is how you might create a
client for the translation service:require "google/cloud/translate" translation_client = Google::Cloud::Translate.translation_serviceDepending on your environment and authentication needs, you might need to
provide credentials to the client object. -
Make API calls by invoking methods on the client. For example, here is how
you might translate a phrase:result = translation_client.translate_text contents: ["Hello, world!"], mime_type: "text/plain", source_language_code: "en-US", target_language_code: "ja-JP", parent: "projects/my-project-name" puts result.translations.first.translated_text # => "こんにちは世界!"
Activating the API
To access a Google Cloud API, you will generally need to activate it in the
cloud console. This typically involves three steps:
-
If you have not created a
Google Cloud Project, do
so. Point your browser to the
Google Cloud Console, sign up if
needed, and create or choose a project. Make note of the project number
(which is numeric) or project ID (which is usually three or more words
separated by hyphens). Many services will require you to pass that
information in when calling an API. -
For most services, you will need to provide billing information. If this is
your first time using Google Cloud Platform, you may be eligible for a free
trial. -
Enable the API you want to use. Click the "APIs & Services" tab in the left
navigation, then click the "Enable APIs and Services" button near the top.
Search for the API you want by name, and click "Enable". A few APIs may be
enabled automatically for you, but most APIs need to be enabled explicitly.
Once you have a project set up and have enabled an API, you are ready to begin
using a client library to call the API.
Choosing a client library
This repository contains two types of API client RubyGems: the main library
for the API (e.g. the google-cloud-translate gem
for the Translation service), and one ore more versioned libraries for
different versions of the service (e.g.
google-cloud-translate-v2 and
google-cloud-translate-v3 for versions 2 and 3
of the service, respectively). Note that we're referring to different versions
of the backend service, not of the client library gem.
In most cases, you should install the main library (the one without a service
version in the name). This library will provide all the required code for making
calls to the API. It may also provide additional convenience code implementing
common client-side workflows or best practices. Often the main library will
bring in one or more versioned libraries as dependencies, and the client and
data type classes you will use may actually be defined in a versioned library,
but installing the main library will ensure you have access to the best tools
and interfaces for interacting with the service.
The versioned libraries are lower-level libraries that target a specific
version of the service. You may choose to intall a versioned library directly,
instead of or in addition to the main library, to handle advanced use cases that
require lower level access.
Note: Many services may also provide client libraries with names beginning with
google-apis-. Those clients are developed in a
different repository,
and utilize an older client technology that lacks some of the performance and
ease of use benefits of the clients in the google-cloud-ruby repository. The
older clients may cover some services for which a google-cloud-ruby client is
not yet available, but for services that are covered, we generally recommend
the clients in the google-cloud-ruby repository over the older ones.
Most client libraries have directories in this repository, or you can look up
the name of the client library to use in the documentation for the service you
are using. Install this library as a RubyGem, or add it to your Gemfile.
Authentication
Most API calls must be accompanied by authentication information proving that
the caller has sufficient permissions to make the call.
These API client libraries provide several mechanisms for attaching credentials
to API calls.
-
If your application runs on an Google Cloud Platform hosting environment
such as Google Compute Engine, Google Container Engine, Google App Engine,
Google Cloud Run, or Google Cloud Functions, the environment will provide
"ambient" credentials which client libraries will recognize and use
automatically. You can generally configure these credentials in the hosting
environment, for example per-VM in Google Compute Engine. -
You can also provide your own service account credentials by including a
service account key file in your application's file system and setting the
environment variableGOOGLE_APPLICATION_CREDENTIALSto the path to that
file. Client libraries will read this environment variable if it is set. -
Finally, you can override credentials in code by setting the
credentials
field in the client configuration. This can be set globally on the client
class or provided when you construct a client object.
For more information, see the authentication documentation for the
client library you are using, or the
Cloud authentication documentation.
Supported Ruby Versions
These libraries are currently supported on Ruby 2.6 through Ruby 3.1. Older
versions of Ruby may still work, but are unsupported and not recommended.
In general, 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. See
https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby
support schedule.
Library Versioning
The libraries in this repository follow Semantic Versioning.
Libraries are released at one of two different support quality levels:
GA: Libraries defined at the GA (general availability) quality level,
indicated by a gem version number greater than or equal to 1.0, are stable. The
code surface will not change in backwards-incompatible ways unless absolutely
necessary (e.g. because of critical security issues), or unless accompanying a
semver-major version update (such as version 1.x to 2.x.) Issues and requests
against GA libraries are addressed with the highest priority.
Preview: Libraries defined at a Preview quality level, indicated by a gem
version number less than 1.0, are expected to be mostly stable and we're
working towards their release candidate. However, these libraries may get
backwards-incompatible updates from time to time. We will still address issues
and requests with a high priority.
Note that the gem version is distinct from the service version. Some backend
services have mulitple versions, for example versions
v2
and v3
of the translation service. These are treated as separate services and will
have separate versioned clients, e.g. the google-cloud-translate-v2 and
google-cloud-translate-v3 gems. These gems will in turn have their own gem
versions, tracking the development of the two services.
Contributing
Contributions to this repository are welcome. However, please note that many of
the clients in this repository are automatically generated. The Ruby files in
those clients will have a comment to that effect near the top; changes to those
files will not be accepted as they will simply be overwritten by the code
generator. If in doubt, please open an issue and ask the maintainers. See the
CONTRIBUTING document for more information on how to
get started.
Please note that this project is released with a Contributor Code of Conduct.
By participating in this project you agree to abide by its terms. See
Code of Conduct for more information.
License
This library is licensed under Apache 2.0. Full license text is
available in LICENSE.
Support
Please report bugs at the project on Github.
If you have questions about how to use the clients or APIs, ask on
Stack Overflow.
Owner metadata
- Name: Google APIs
- Login: googleapis
- Email:
- Kind: organization
- Description: Clients for Google APIs and tools that help produce them.
- Website: https://googleapis.github.io
- Location:
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/16785467?v=4
- Repositories: 781
- Last ynced at: 2023-04-09T04:55:29.167Z
- Profile URL: https://github.com/googleapis
GitHub Events
Total
- Create event: 4746
- Issues event: 126
- Release event: 1965
- Watch event: 43
- Delete event: 2842
- Issue comment event: 6480
- Push event: 19576
- Pull request review comment event: 261
- Pull request event: 6014
- Pull request review event: 3121
- Fork event: 24
Last Year
- Create event: 4746
- Issues event: 126
- Release event: 1965
- Watch event: 43
- Delete event: 2842
- Issue comment event: 6480
- Push event: 19576
- Pull request review comment event: 261
- Pull request event: 6014
- Pull request review event: 3121
- Fork event: 24
Committers metadata
Last synced: 8 days ago
Total Commits: 26,064
Total Committers: 204
Avg Commits per committer: 127.765
Development Distribution Score (DDS): 0.742
Commits in past year: 3,093
Committers in past year: 18
Avg Commits per committer in past year: 171.833
Development Distribution Score (DDS) in past year: 0.261
| Name | Commits | |
|---|---|---|
| release-please[bot] | 5****] | 6715 |
| Yoshi Automation Bot | y****n@g****m | 6214 |
| gcf-owl-bot[bot] | 7****] | 3437 |
| yoshi-code-bot | 7****t | 3129 |
| Mike Moore | m****e@b****m | 2318 |
| Daniel Azuma | d****a@g****m | 1405 |
| Chris Smith | q****o@g****m | 1187 |
| Heng Xiong | h****8@g****m | 296 |
| Graham Paye | p****e@g****m | 131 |
| Graham Paye | g****8@g****m | 112 |
| Jacob Geiger | j****r@g****m | 76 |
| Mend Renovate | b****t@r****m | 63 |
| André Andreassa | a****a | 62 |
| Neha Bajaj | b****7 | 58 |
| DPE bot | d****t@g****m | 57 |
| Nivedha | n****l@g****m | 56 |
| Jiren Patel | j****l@g****m | 53 |
| Ernest Landrito | l****o@g****m | 51 |
| Viacheslav Rostovtsev | 5****v | 44 |
| Sandeep Tuniki | 7****i | 39 |
| Charlotte Yun | y****n@g****m | 36 |
| Song Wang | s****g@g****m | 34 |
| Diptanshu Mittal | 4****l | 27 |
| Joe Bolinger | j****r@g****m | 26 |
| Tim Swast | s****t@g****m | 26 |
| Jun Mukai | m****i@g****m | 24 |
| Nicholas Cook | i****y | 16 |
| Hengfeng Li | h****g@g****m | 16 |
| Song Wang | s****g@n****m | 14 |
| Frank Natividad | f****n | 13 |
| and 174 more... | ||
Committer domains:
- google.com: 43
- nestlabs.com: 2
- aiming-inc.com: 2
- supership.jp: 1
- rightsup.com: 1
- jungroup.com: 1
- squareup.com: 1
- mediamarktsaturn.com: 1
- dena.jp: 1
- purdue.edu: 1
- pwc.com: 1
- alexandergraefe.de: 1
- ucsd.edu: 1
- fastly.com: 1
- platform161.com: 1
- sha.kr: 1
- sethvargo.com: 1
- enigmo.co.jp: 1
- crestdata.ai: 1
- griddynamics.com: 1
- me.com: 1
- renovateapp.com: 1
- rapicault.net: 1
- rwhogg.site: 1
- kamilabo.jp: 1
- shopify.com: 1
- osmonov.com: 1
- knapo.net: 1
- kurtruppel.com: 1
- pohorecki.pl: 1
- abevoelker.com: 1
- bitstrata.com: 1
- hey.com: 1
- luppri.ch: 1
- danielbankhead.com: 1
- longlost.info: 1
- directionless.org: 1
- papkovskiy.com: 1
- toptal.com: 1
- tottori-u.ac.jp: 1
- levosgien.net: 1
- ryanstone.io: 1
- marder.co: 1
- upec.jp: 1
- blowmage.com: 1
Issue and Pull Request metadata
Last synced: 12 days ago
Total issues: 699
Total pull requests: 12,155
Average time to close issues: 4 months
Average time to close pull requests: 3 days
Total issue authors: 111
Total pull request authors: 62
Average comments per issue: 2.9
Average comments per pull request: 0.83
Merged pull request: 9,444
Bot issues: 553
Bot pull requests: 10,928
Past year issues: 35
Past year pull requests: 3,219
Past year average time to close issues: 6 days
Past year average time to close pull requests: 2 days
Past year issue authors: 14
Past year pull request authors: 21
Past year average comments per issue: 0.37
Past year average comments per pull request: 0.37
Past year merged pull request: 1,947
Past year bot issues: 22
Past year bot pull requests: 2,949
Top Issue Authors
- github-actions[bot] (472)
- release-please[bot] (36)
- failure-checker[bot] (28)
- gcf-owl-bot[bot] (15)
- dazuma (14)
- YashSaraf11 (6)
- JesseLovelace (4)
- yoshi-code-bot (4)
- meagar (3)
- sydney-munro (3)
- quartzmo (3)
- SandeepTuniki (3)
- directionless (2)
- juseveno (2)
- bajajneha27 (2)
Top Pull Request Authors
- release-please[bot] (7,727)
- gcf-owl-bot[bot] (3,199)
- yoshi-code-bot (512)
- dazuma (222)
- renovate-bot (117)
- aandreassa (110)
- shubhangi-google (51)
- viacheslav-rostovtsev (22)
- bajajneha27 (22)
- SandeepTuniki (20)
- shivgautam (14)
- YashSaraf11 (13)
- NivedhaSenthil (12)
- cy-yun (10)
- diptanshumittal (9)
Top Issue Labels
- type: bug (490)
- nightly failure (472)
- priority: p1 (464)
- type: process (36)
- autorelease: pending (35)
- priority: p2 (28)
- type: feature request (25)
- api: storage (19)
- type: question (16)
- owl-bot-copy (14)
- api: logging (13)
- api: bigquery (9)
- priority: p3 (9)
- owlbot:run (7)
- type: cleanup (6)
- type: docs (5)
- api: pubsub (5)
- kokoro:force-run (5)
- samples (4)
- :rotating_light: (4)
- api: clouderrorreporting (3)
- api: cloudtrace (3)
- api: firestore (3)
- api: dns (2)
- stackdriver (2)
- autorelease: triggered (1)
- autorelease: tagged (1)
- api: datastore (1)
- do not merge (1)
- external (1)
Top Pull Request Labels
- autorelease: pending (5,387)
- owl-bot-copy (3,191)
- kokoro:force-run (1,957)
- autorelease: published (1,890)
- owlbot:run (686)
- autorelease: tagged (445)
- autorelease: triggered (104)
- do not merge (48)
- api: storage (37)
- samples (31)
- api: bigquery (18)
- api: spanner (18)
- api: firestore (13)
- api: pubsub (10)
- cla: yes (8)
- api: bigtable (4)
- autorelease: failed (4)
- automerge (4)
- autorelease: closed (4)
- api: monitoring (4)
- api: videostitcher (4)
- api: datastore (4)
- release freeze (3)
- api: cloudasset (2)
- api: vision (2)
- snippet-bot:no-prefix-req (2)
- dependencies (2)
- api: dlp (1)
- python (1)
- approved (1)
Package metadata
- Total packages: 100
-
Total downloads:
- rubygems: 41,115,964 total
- Total docker downloads: 23,118,932
- Total dependent packages: 30 (may contain duplicates)
- Total dependent repositories: 248 (may contain duplicates)
- Total versions: 2,021
- Total maintainers: 1
gem.coop: google-cloud-recaptcha_enterprise-v1
reCAPTCHA Enterprise is a service that protects your site from spam and abuse. Note that google-cloud-recaptcha_enterprise-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-recaptcha_enterprise instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-recaptcha_enterprise-v1/
- Licenses: Apache-2.0
- Latest release: 1.9.1 (published 4 months ago)
- Last Synced: 2026-02-23T18:01:01.034Z (8 days ago)
- Versions: 52
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,378,994 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.792%
- Downloads: 2.377%
- Maintainers (1)
gem.coop: google-cloud-trace-v1
The Cloud Trace API lets you send and retrieve latency data to and from Cloud Trace. This API provides low-level interfaces for interacting directly with the feature. For some languages, you can use OpenTelemetry, a set of open source tracing and stats instrumentation libraries that work with multiple backends. Note that google-cloud-trace-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-trace instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-trace-v1/
- Licenses: Apache-2.0
- Latest release: 1.5.1 (published 4 months ago)
- Last Synced: 2026-02-23T17:01:18.888Z (8 days ago)
- Versions: 29
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,361,409 Total
- Docker Downloads: 359,843
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.828%
- Docker downloads count: 1.581%
- Downloads: 1.733%
- Maintainers (1)
gem.coop: google-cloud-recaptcha_enterprise
reCAPTCHA Enterprise is a service that protects your site from spam and abuse.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-recaptcha_enterprise/
- Licenses: Apache-2.0
- Latest release: 2.0.3 (published 6 months ago)
- Last Synced: 2026-02-23T16:30:21.719Z (8 days ago)
- Versions: 29
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,753,430 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 0.904%
- Downloads: 2.713%
- Maintainers (1)
gem.coop: google-cloud-recaptcha_enterprise-v1beta1
reCAPTCHA Enterprise is a service that protects your site from spam and abuse. Note that google-cloud-recaptcha_enterprise-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-recaptcha_enterprise instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-recaptcha_enterprise-v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.19.1 (published 4 months ago)
- Last Synced: 2026-02-23T17:01:25.419Z (8 days ago)
- Versions: 40
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,204,880 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.058%
- Downloads: 3.174%
- Maintainers (1)
gem.coop: google-cloud-translate-v2
Cloud Translation can dynamically translate text between thousands of language pairs. Translation lets websites and programs programmatically integrate with the translation service.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-translate-v2/
- Licenses: Apache-2.0
- Latest release: 1.1.0 (published 12 months ago)
- Last Synced: 2026-02-23T18:01:50.980Z (8 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,935,343 Total
- Docker Downloads: 243
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.123%
- Downloads: 2.124%
- Docker downloads count: 2.369%
- Maintainers (1)
gem.coop: google-cloud-dialogflow-v2
Dialogflow is an end-to-end, build-once deploy-everywhere development suite for creating conversational interfaces for websites, mobile applications, popular messaging platforms, and IoT devices. You can use it to build interfaces (such as chatbots and conversational IVR) that enable natural and rich interactions between your users and your business. This client is for Dialogflow ES, providing the standard agent type suitable for small and simple agents. Note that google-cloud-dialogflow-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-dialogflow instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dialogflow-v2/
- Licenses: Apache-2.0
- Latest release: 1.13.0 (published 3 months ago)
- Last Synced: 2026-02-23T18:01:05.629Z (8 days ago)
- Versions: 75
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,511,791 Total
- Docker Downloads: 290
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.295%
- Docker downloads count: 2.342%
- Downloads: 2.84%
- Maintainers (1)
gem.coop: google-cloud-redis
Creates and manages Redis instances on the Google Cloud Platform.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-redis/
- Licenses: Apache-2.0
- Latest release: 2.0.3 (published 6 months ago)
- Last Synced: 2026-02-23T16:30:47.889Z (8 days ago)
- Versions: 37
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 405,894 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 1.552%
- Downloads: 4.657%
- Maintainers (1)
gem.coop: google-cloud-video_intelligence-v1p1beta1
Detects objects, explicit content, and scene changes in videos. It also specifies the region for annotation and transcribes speech to text. Supports both asynchronous API and streaming API. Note that google-cloud-video_intelligence-v1p1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-video_intelligence instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-video_intelligence-v1p1beta1/
- Licenses: Apache-2.0
- Latest release: 0.15.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.859Z (13 days ago)
- Versions: 34
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 173,034 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 2.689%
- Downloads: 8.067%
- Maintainers (1)
rubygems.org: google-cloud-kms
Manages keys and performs cryptographic operations in a central cloud service, for direct use by other cloud resources and applications.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-kms/
- Licenses: Apache-2.0
- Latest release: 2.10.0 (published about 1 month ago)
- Last Synced: 2026-02-18T21:08:29.390Z (13 days ago)
- Versions: 43
- Dependent Packages: 2
- Dependent Repositories: 36
- Downloads: 1,940,793 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 2.541%
- Average: 2.848%
- Dependent repos count: 4.154%
- Dependent packages count: 5.179%
- Maintainers (1)
rubygems.org: google-cloud-logging-v2
The Cloud Logging API lets you programmatically read and write log entries, set up exclusions, create logs-based metrics, and manage export sinks. Note that google-cloud-logging-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-logging instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-logging-v2/
- Licenses: Apache-2.0
- Latest release: 1.5.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:46.901Z (13 days ago)
- Versions: 35
- Dependent Packages: 1
- Dependent Repositories: 26
- Downloads: 3,944,049 Total
- Docker Downloads: 1,924,010
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Downloads: 1.991%
- Docker downloads count: 2.956%
- Average: 3.289%
- Dependent repos count: 4.767%
- Dependent packages count: 7.655%
- Maintainers (1)
rubygems.org: google-cloud-kms-v1
Manages keys and performs cryptographic operations in a central cloud service, for direct use by other cloud resources and applications. Note that google-cloud-kms-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-kms instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-kms-v1/
- Licenses: Apache-2.0
- Latest release: 1.10.0 (published about 1 month ago)
- Last Synced: 2026-01-29T03:07:29.394Z (about 1 month ago)
- Versions: 63
- Dependent Packages: 3
- Dependent Repositories: 9
- Downloads: 924,276 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 3.638%
- Dependent packages count: 3.985%
- Downloads: 4.288%
- Dependent repos count: 7.549%
- Maintainers (1)
gem.coop: grafeas-v1
The Grafeas API stores, and enables querying and retrieval of, critical metadata about all of your software artifacts. Note that grafeas-v1 is a version-specific client library. For most uses, we recommend installing the main client library grafeas instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/grafeas-v1/
- Licenses: Apache-2.0
- Latest release: 1.7.0 (published 13 days ago)
- Last Synced: 2026-02-18T19:51:44.981Z (13 days ago)
- Versions: 39
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 79,045 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.701%
- Downloads: 11.103%
- Maintainers (1)
gem.coop: google-cloud-scheduler-v1
Cloud Scheduler is a fully managed enterprise-grade cron job scheduler. It allows you to schedule virtually any job, including batch, big data jobs, cloud infrastructure operations, and more. You can automate everything, including retries in case of failure to reduce manual toil and intervention. Cloud Scheduler even acts as a single pane of glass, allowing you to manage all your automation tasks from one place. Note that google-cloud-scheduler-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-scheduler instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-scheduler-v1/
- Licenses: Apache-2.0
- Latest release: 1.4.0 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:45.589Z (13 days ago)
- Versions: 33
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 76,833 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 3.821%
- Downloads: 11.464%
- Maintainers (1)
rubygems.org: google-cloud-redis
Creates and manages Redis instances on the Google Cloud Platform.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-redis/
- Licenses: Apache-2.0
- Latest release: 2.0.3 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:41.567Z (13 days ago)
- Versions: 37
- Dependent Packages: 1
- Dependent Repositories: 28
- Downloads: 405,586 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 3.855%
- Dependent repos count: 4.628%
- Downloads: 4.628%
- Dependent packages count: 7.655%
- Maintainers (1)
gem.coop: google-cloud-certificate_manager-v1
Certificate Manager lets you acquire and manage Transport Layer Security (TLS) (SSL) certificates for use with classic external HTTP(S) load balancers in Google Cloud. Note that google-cloud-certificate_manager-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-certificate_manager instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-certificate_manager-v1/
- Licenses: Apache-2.0
- Latest release: 1.3.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.741Z (13 days ago)
- Versions: 24
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 101,278 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.1%
- Downloads: 12.301%
- Maintainers (1)
rubygems.org: google-cloud-spanner-v1
Cloud Spanner is a managed, mission-critical, globally consistent and scalable relational database service. Note that google-cloud-spanner-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-spanner instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-spanner-v1/
- Licenses: Apache-2.0
- Latest release: 1.14.0 (published 13 days ago)
- Last Synced: 2026-02-18T20:07:34.089Z (13 days ago)
- Versions: 63
- Dependent Packages: 1
- Dependent Repositories: 15
- Downloads: 1,135,980 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 4.106%
- Downloads: 4.467%
- Dependent repos count: 6.04%
- Dependent packages count: 7.655%
- Maintainers (1)
gem.coop: google-cloud-dialogflow-cx-v3
Dialogflow is an end-to-end, build-once deploy-everywhere development suite for creating conversational interfaces for websites, mobile applications, popular messaging platforms, and IoT devices. You can use it to build interfaces (such as chatbots and conversational IVR) that enable natural and rich interactions between your users and your business. This client is for Dialogflow CX, providing an advanced agent type suitable for large or very complex agents. Note that google-cloud-dialogflow-cx-v3 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-dialogflow-cx instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dialogflow-cx-v3/
- Licenses: Apache-2.0
- Latest release: 1.10.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:47.532Z (13 days ago)
- Versions: 49
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 65,014 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.234%
- Downloads: 12.701%
- Maintainers (1)
gem.coop: google-cloud-run-client
Cloud Run deploys and manages user provided container images that scale automatically based on incoming requests.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-run-client/
- Licenses: Apache-2.0
- Latest release: 1.6.0 (published about 1 month ago)
- Last Synced: 2026-02-18T21:08:45.553Z (13 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 65,382 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.505%
- Downloads: 13.514%
- Maintainers (1)
gem.coop: google-cloud-retail-v2
Retail enables you to build an end-to-end personalized recommendation system based on state-of-the-art deep learning ML models, without a need for expertise in ML or recommendation systems. Note that google-cloud-retail-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-retail instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-retail-v2/
- Licenses: Apache-2.0
- Latest release: 2.6.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:38.278Z (13 days ago)
- Versions: 48
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 61,012 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 4.55%
- Downloads: 13.65%
- Maintainers (1)
rubygems.org: grafeas-v1
The Grafeas API stores, and enables querying and retrieval of, critical metadata about all of your software artifacts. Note that grafeas-v1 is a version-specific client library. For most uses, we recommend installing the main client library grafeas instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/grafeas-v1/
- Licenses: Apache-2.0
- Latest release: 1.7.0 (published 13 days ago)
- Last Synced: 2026-02-18T20:07:34.126Z (13 days ago)
- Versions: 39
- Dependent Packages: 3
- Dependent Repositories: 12
- Downloads: 79,045 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 3.985%
- Average: 5.331%
- Dependent repos count: 6.662%
- Downloads: 13.639%
- Maintainers (1)
gem.coop: google-cloud-video-transcoder-v1
The Transcoder API allows you to convert video files and package them for optimized delivery to web, mobile and connected TVs. Note that google-cloud-video-transcoder-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-video-transcoder instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-video-transcoder-v1/
- Licenses: Apache-2.0
- Latest release: 2.4.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.260Z (13 days ago)
- Versions: 29
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 57,630 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 5.589%
- Downloads: 16.767%
- Maintainers (1)
gem.coop: google-cloud-os_login-v1beta
Use OS Login to manage SSH access to your instances using IAM without having to create and manage individual SSH keys. OS Login maintains a consistent Linux user identity across VM instances and is the recommended way to manage many users across multiple instances or projects. Note that google-cloud-os_login-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-os_login instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-os_login-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.19.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.423Z (13 days ago)
- Versions: 37
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,865 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 6.658%
- Downloads: 19.975%
- Maintainers (1)
rubygems.org: google-cloud-security_center-v1p1beta1
Security Command Center API provides access to temporal views of assets and findings within an organization. Note that google-cloud-security_center-v1p1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-security_center instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-security_center-v1p1beta1/
- Licenses: Apache-2.0
- Latest release: 0.19.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.389Z (13 days ago)
- Versions: 41
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 54,826 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Average: 7.063%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Downloads: 16.852%
- Maintainers (1)
gem.coop: google-cloud-service_control-v1
The Service Control API provides control plane functionality to managed services, such as logging, monitoring, and status checks. Note that google-cloud-service_control-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-service_control instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-service_control-v1/
- Licenses: Apache-2.0
- Latest release: 1.4.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:46.012Z (13 days ago)
- Versions: 31
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 33,318 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 7.101%
- Downloads: 21.302%
- Maintainers (1)
rubygems.org: google-cloud-access_approval-v1
An API for controlling access to data by Google personnel. Note that google-cloud-access_approval-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-access_approval instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-access_approval-v1/
- Licenses: Apache-2.0
- Latest release: 1.4.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.985Z (13 days ago)
- Versions: 38
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 41,148 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Average: 7.8%
- Dependent repos count: 8.443%
- Downloads: 20.534%
- Maintainers (1)
proxy.golang.org: github.com/googleapis/google-cloud-ruby
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: https://pkg.go.dev/github.com/googleapis/google-cloud-ruby#section-documentation
- Licenses: Apache-2.0
- Latest release: v0.20.0 (published over 9 years ago)
- Last Synced: 2026-01-31T18:55:38.061Z (about 1 month ago)
- Versions: 25
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
rubygems.org: google-cloud-app_engine-v1
The App Engine Admin API provisions and manages your App Engine applications. Note that google-cloud-app_engine-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-app_engine instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-app_engine-v1/
- Licenses: Apache-2.0
- Latest release: 1.5.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:30.401Z (13 days ago)
- Versions: 28
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 59,125 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Average: 10.085%
- Downloads: 31.96%
- Maintainers (1)
rubygems.org: google-cloud-media_translation-v1beta1
Media Translation API delivers real-time speech translation to your content and applications directly from your audio data. Leveraging Google’s machine learning technologies, the API offers enhanced accuracy and simplified integration while equipping you with a comprehensive set of features to further refine your translation results. Improve user experience with low-latency streaming translation and scale quickly with straightforward internationalization. Note that google-cloud-media_translation-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-media_translation instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-media_translation-v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.13.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.712Z (13 days ago)
- Versions: 25
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 24,188 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Average: 10.34%
- Downloads: 33.234%
- Maintainers (1)
rubygems.org: google-cloud-network_connectivity-v1alpha1
Network Connectivity is Google's suite of products that provide enterprise connectivity from your on-premises network or from another cloud provider to your Virtual Private Cloud (VPC) network. Note that google-cloud-network_connectivity-v1alpha1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-network_connectivity instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-network_connectivity-v1alpha1/
- Licenses: Apache-2.0
- Latest release: 0.14.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.841Z (13 days ago)
- Versions: 25
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 22,501 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Average: 10.923%
- Downloads: 36.152%
- Maintainers (1)
gem.coop: google-cloud-assured_workloads
Assured Workloads for Government secures government workloads and accelerates the path to running compliant workloads on Google Cloud.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-assured_workloads/
- Licenses: Apache-2.0
- Latest release: 2.0.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:42.236Z (13 days ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 18,000 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 10.939%
- Downloads: 32.816%
- Maintainers (1)
rubygems.org: google-cloud-video-transcoder-v1
The Transcoder API allows you to convert video files and package them for optimized delivery to web, mobile and connected TVs. Note that google-cloud-video-transcoder-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-video-transcoder instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-video-transcoder-v1/
- Licenses: Apache-2.0
- Latest release: 2.4.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.552Z (13 days ago)
- Versions: 29
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 57,630 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Average: 11.653%
- Downloads: 39.801%
- Maintainers (1)
gem.coop: google-cloud-ids
Cloud IDS is an intrusion detection service that provides threat detection for intrusions, malware, spyware, and command-and-control attacks on your network. Cloud IDS works by creating a Google-managed peered network with mirrored VMs. Traffic in the peered network is mirrored, and then inspected by Palo Alto Networks threat protection technologies to provide advanced threat detection. You can mirror all traffic or you can mirror filtered traffic, based on protocol, IP address range, or ingress and egress.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-ids/
- Licenses: Apache-2.0
- Latest release: 2.0.2 (published 6 months ago)
- Last Synced: 2026-02-20T07:48:34.418Z (11 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 17,306 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 12.328%
- Downloads: 36.985%
- Maintainers (1)
rubygems.org: google-cloud-run-v2
Cloud Run deploys and manages user provided container images that scale automatically based on incoming requests. Note that google-cloud-run-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-run-client instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-run-v2/
- Licenses: Apache-2.0
- Latest release: 0.28.0 (published 5 months ago)
- Last Synced: 2026-02-18T21:08:38.274Z (13 days ago)
- Versions: 36
- Dependent Packages: 1
- Dependent Repositories: 6
- Downloads: 227,267 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 9.125%
- Average: 12.379%
- Downloads: 42.751%
- Maintainers (1)
rubygems.org: google-cloud-iap-v1
IAP lets you establish a central authorization layer for applications accessed by HTTPS, so you can use an application-level access control model instead of relying on network-level firewalls. Note that google-cloud-iap-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-iap instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-iap-v1/
- Licenses: Apache-2.0
- Latest release: 1.5.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:30.363Z (13 days ago)
- Versions: 29
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 28,221 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Average: 13.284%
- Downloads: 47.958%
- Maintainers (1)
rubygems.org: google-cloud-deploy-v1
Google Cloud Deploy is a managed service that automates delivery of your applications to a series of target environments in a defined promotion sequence. Note that google-cloud-deploy-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-deploy instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-deploy-v1/
- Licenses: Apache-2.0
- Latest release: 2.4.1 (published 4 months ago)
- Last Synced: 2026-02-18T19:58:34.766Z (13 days ago)
- Versions: 44
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 26,874 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Average: 13.595%
- Downloads: 49.509%
- Maintainers (1)
rubygems.org: google-cloud-artifact_registry-v1
Artifact Registry stores and manages build artifacts in a scalable and integrated service built on Google infrastructure. Note that google-cloud-artifact_registry-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-artifact_registry instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-artifact_registry-v1/
- Licenses: Apache-2.0
- Latest release: 1.11.0 (published 13 days ago)
- Last Synced: 2026-02-18T20:07:33.804Z (13 days ago)
- Versions: 33
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 15,686,320 Total
- Docker Downloads: 20,834,546
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Average: 13.668%
- Downloads: 49.876%
- Maintainers (1)
rubygems.org: google-cloud-os_config-v1alpha
Cloud OS Config provides OS management tools that can be used for patch management, patch compliance, and configuration management on VM instances. Note that google-cloud-os_config-v1alpha is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-os_config instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-os_config-v1alpha/
- Licenses: Apache-2.0
- Latest release: 0.14.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:36.610Z (13 days ago)
- Versions: 23
- Dependent Packages: 0
- Dependent Repositories: 6
- Downloads: 18,169 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent repos count: 9.125%
- Average: 14.168%
- Dependent packages count: 15.576%
- Downloads: 43.774%
- Maintainers (1)
rubygems.org: google-cloud-binary_authorization-v1
Binary Authorization is a service on Google Cloud that provides centralized software supply-chain security for applications that run on Google Kubernetes Engine (GKE) and GKE on-prem. Note that google-cloud-binary_authorization-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-binary_authorization instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-binary_authorization-v1/
- Licenses: Apache-2.0
- Latest release: 1.4.1 (published 4 months ago)
- Last Synced: 2026-01-31T18:52:20.073Z (about 1 month ago)
- Versions: 21
- Dependent Packages: 1
- Dependent Repositories: 7
- Downloads: 13,653 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 8.443%
- Average: 16.371%
- Downloads: 63.393%
- Maintainers (1)
gem.coop: google-cloud-confidential_computing-v1
Attestation verifier for Confidential Space. Note that google-cloud-confidential_computing-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-confidential_computing instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-confidential_computing-v1/
- Licenses: Apache-2.0
- Latest release: 2.1.0 (published 13 days ago)
- Last Synced: 2026-02-18T19:51:45.206Z (13 days ago)
- Versions: 26
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 11,709 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 16.509%
- Downloads: 49.527%
- Maintainers (1)
gem.coop: google-cloud-network_management
The Network Management API provides a collection of network performance monitoring and diagnostic capabilities.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-network_management/
- Licenses: Apache-2.0
- Latest release: 2.1.0 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.349Z (13 days ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 9,908 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 16.712%
- Downloads: 50.136%
- Maintainers (1)
rubygems.org: google-cloud-video-stitcher-v1
The Video Stitcher API allows you to manipulate video content to dynamically insert ads prior to delivery to client devices. Using the Video Stitcher API, you can monetize your video-on-demand (VOD) and livestreaming videos by inserting ads as described by metadata stored on ad servers. Note that google-cloud-video-stitcher-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-video-stitcher instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-video-stitcher-v1/
- Licenses: Apache-2.0
- Latest release: 1.5.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.782Z (13 days ago)
- Versions: 23
- Dependent Packages: 1
- Dependent Repositories: 6
- Downloads: 14,846 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 9.125%
- Average: 18.057%
- Downloads: 71.141%
- Maintainers (1)
gem.coop: google-cloud-policy_simulator-v1
Policy Simulator is a collection of endpoints for creating, running, and viewing a [Replay][google.cloud.policysimulator.v1.Replay]. A `Replay` is a type of simulation that lets you see how your members' access to resources might change if you changed your IAM policy. During a `Replay`, Policy Simulator re-evaluates, or replays, past access attempts under both the current policy and your proposed policy, and compares those results to determine how your members' access might change under the proposed policy. Note that google-cloud-policy_simulator-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-policy_simulator instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-policy_simulator-v1/
- Licenses: Apache-2.0
- Latest release: 1.6.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.875Z (13 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 7,793 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 20.284%
- Downloads: 60.853%
- Maintainers (1)
rubygems.org: google-cloud-os_config
Cloud OS Config provides OS management tools that can be used for patch management, patch compliance, and configuration management on VM instances.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-os_config/
- Licenses: Apache-2.0
- Latest release: 1.7.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:46.010Z (13 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 19,492 Total
-
Rankings:
- Forks count: 0.945%
- Stargazers count: 1.337%
- Dependent packages count: 15.706%
- Average: 20.447%
- Downloads: 37.466%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-cloud-datastream-v1
Datastream is a serverless and easy-to-use change data capture (CDC) and replication service. It allows you to synchronize data across heterogeneous databases and applications reliably, and with minimal latency and downtime. Note that google-cloud-datastream-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-datastream instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-datastream-v1/
- Licenses: Apache-2.0
- Latest release: 1.5.1 (published 4 months ago)
- Last Synced: 2026-02-18T20:25:40.882Z (13 days ago)
- Versions: 25
- Dependent Packages: 1
- Dependent Repositories: 6
- Downloads: 24,289 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 9.125%
- Average: 20.566%
- Downloads: 83.686%
- Maintainers (1)
rubygems.org: google-cloud-gaming
This gem is obsolete because the related Google backend is turned down. For more information, see https://cloud.google.com/terms/deprecation.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-gaming/
- Licenses: Apache-2.0
- Latest release: 2.0.0 (published over 2 years ago)
- Last Synced: 2026-02-18T21:08:30.859Z (13 days ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 16,461 Total
-
Rankings:
- Forks count: 1.056%
- Stargazers count: 1.519%
- Dependent packages count: 15.706%
- Average: 21.222%
- Downloads: 41.045%
- Dependent repos count: 46.782%
- Maintainers (1)
rubygems.org: google-cloud-functions-v2
The Cloud Functions API manages lightweight user-provided functions executed in response to events. Note that google-cloud-functions-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-functions instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-functions-v2/
- Licenses: Apache-2.0
- Latest release: 1.3.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.380Z (13 days ago)
- Versions: 21
- Dependent Packages: 0
- Dependent Repositories: 6
- Downloads: 20,550 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent repos count: 9.125%
- Dependent packages count: 15.576%
- Average: 21.389%
- Downloads: 79.879%
- Maintainers (1)
rubygems.org: google-cloud-bigquery-data_exchange-v1beta1
Analytics Hub is a data exchange that allows you to efficiently and securely exchange data assets across organizations to address challenges of data reliability and cost. Curate a library of internal and external assets, including unique datasets like Google Trends, backed by the power of BigQuery. Note that google-cloud-bigquery-data_exchange-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-bigquery-data_exchange instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-bigquery-data_exchange-v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.11.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:31.354Z (13 days ago)
- Versions: 17
- Dependent Packages: 1
- Dependent Repositories: 6
- Downloads: 9,684 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 9.125%
- Average: 21.9%
- Downloads: 90.352%
- Maintainers (1)
rubygems.org: google-cloud-dataform-v1beta1
Dataform is a service for data analysts to develop, test, version control, and schedule complex SQL workflows for data transformation in BigQuery. Note that google-cloud-dataform-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-dataform instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-dataform-v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.14.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.391Z (13 days ago)
- Versions: 20
- Dependent Packages: 1
- Dependent Repositories: 5
- Downloads: 9,795 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent packages count: 7.655%
- Dependent repos count: 9.91%
- Average: 23.314%
- Downloads: 96.639%
- Maintainers (1)
rubygems.org: google-cloud-speech-v2
Google Speech-to-Text enables developers to convert audio to text by applying powerful neural network models in an easy-to-use API. The API recognizes more than 120 languages and variants to support your global user base. You can enable voice command-and-control, transcribe audio from call centers, and more. It can process real-time streaming or prerecorded audio, using Google's machine learning technology. Note that google-cloud-speech-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-speech instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-speech-v2/
- Licenses: Apache-2.0
- Latest release: 1.5.0 (published about 2 months ago)
- Last Synced: 2026-02-18T19:58:26.490Z (13 days ago)
- Versions: 30
- Dependent Packages: 0
- Dependent Repositories: 5
- Downloads: 146,642 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent repos count: 9.91%
- Dependent packages count: 15.576%
- Average: 23.572%
- Downloads: 90.005%
- Maintainers (1)
rubygems.org: google-cloud-resource_settings
This gem is obsolete because the related Google backend is turned down. For more information, see https://cloud.google.com/terms/deprecation.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-resource_settings/
- Licenses: Apache-2.0
- Latest release: 2.0.0 (published 12 months ago)
- Last Synced: 2026-02-18T21:08:40.598Z (13 days ago)
- Versions: 13
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 13,885 Total
-
Rankings:
- Forks count: 1.056%
- Stargazers count: 1.519%
- Dependent packages count: 15.706%
- Average: 23.672%
- Dependent repos count: 46.782%
- Downloads: 53.295%
- Maintainers (1)
gem.coop: google-cloud-config_service
Creates and manages Google Cloud Platform resources and infrastructure.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-config_service/
- Licenses: Apache-2.0
- Latest release: 2.0.2 (published 6 months ago)
- Last Synced: 2026-01-28T06:25:34.097Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,313 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 25.375%
- Downloads: 76.124%
- Maintainers (1)
rubygems.org: google-cloud-confidential_computing-v1
Attestation verifier for Confidential Space. Note that google-cloud-confidential_computing-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-confidential_computing instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-confidential_computing-v1/
- Licenses: Apache-2.0
- Latest release: 2.1.0 (published 13 days ago)
- Last Synced: 2026-02-18T20:07:34.066Z (13 days ago)
- Versions: 26
- Dependent Packages: 1
- Dependent Repositories: 2
- Downloads: 11,709 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent repos count: 15.508%
- Dependent packages count: 15.576%
- Average: 26.062%
- Downloads: 96.86%
- Maintainers (1)
gem.coop: google-maps-fleet_engine-delivery
Enables Fleet Engine for access to the On Demand Rides and Deliveries and Last Mile Fleet Solution APIs. Customer's use of Google Maps Content in the Cloud Logging Services is subject to the Google Maps Platform Terms of Service located at https://cloud.google.com/maps-platform/terms.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-maps-fleet_engine-delivery/
- Licenses: Apache-2.0
- Latest release: 1.1.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:30.326Z (13 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,645 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 26.216%
- Downloads: 78.648%
- Maintainers (1)
rubygems.org: google-cloud-data_catalog-v1beta1
Data Catalog is a centralized and unified data catalog service for all your Cloud resources, where users and systems can discover data, explore and curate its semantics, understand how to act on it, and help govern its usage. Note that google-cloud-data_catalog-v1beta1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-data_catalog instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-data_catalog-v1beta1/
- Licenses: Apache-2.0
- Latest release: 0.10.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.214Z (13 days ago)
- Versions: 22
- Dependent Packages: 0
- Dependent Repositories: 2
- Downloads: 8,139 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent repos count: 15.508%
- Dependent packages count: 15.576%
- Average: 26.376%
- Downloads: 98.429%
- Maintainers (1)
rubygems.org: google-cloud-notebooks-v2
Notebooks API is used to manage notebook resources in Google Cloud. Note that google-cloud-notebooks-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-notebooks instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-notebooks-v2/
- Licenses: Apache-2.0
- Latest release: 1.3.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.241Z (13 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 2
- Downloads: 7,019 Total
-
Rankings:
- Forks count: 0.902%
- Stargazers count: 1.464%
- Dependent repos count: 15.508%
- Dependent packages count: 15.576%
- Average: 26.386%
- Downloads: 98.479%
- Maintainers (1)
gem.coop: google-cloud-backupdr-v1
google-cloud-backupdr-v1 is the official client library for the Backup and DR Service V1 API. Note that google-cloud-backupdr-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-backupdr instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-backupdr-v1/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 13 days ago)
- Last Synced: 2026-02-18T19:51:45.530Z (13 days ago)
- Versions: 18
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,834 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 26.741%
- Downloads: 80.222%
- Maintainers (1)
gem.coop: google-cloud-oracle_database-v1
The Oracle Database@Google Cloud API provides a set of APIs to manage Oracle database services, such as Exadata and Autonomous Databases. Note that google-cloud-oracle_database-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-oracle_database instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-oracle_database-v1/
- Licenses: Apache-2.0
- Latest release: 0.11.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.369Z (13 days ago)
- Versions: 15
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,236 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 26.808%
- Downloads: 80.424%
- Maintainers (1)
gem.coop: google-cloud-storage-control
The Google Cloud Storage API allows applications to read and write data through the abstractions of buckets and objects, which are similar to directories and files except that buckets cannot contain other buckets, and directory-level operations (like directory rename) are not supported. Buckets share a single global namespace, and each bucket belongs to a specific project that has an associated owner that pays for the data stored in the bucket. This API is accessed using standard gRPC requests.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-storage-control/
- Licenses: Apache-2.0
- Latest release: 1.2.0 (published 13 days ago)
- Last Synced: 2026-02-18T19:51:44.554Z (13 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 12,052 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 27.111%
- Downloads: 81.333%
- Maintainers (1)
gem.coop: google-cloud-connectors-v1
Enables users to create and manage connections to Google Cloud services and third-party business applications using the Connectors interface. Note that google-cloud-connectors-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-connectors instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-connectors-v1/
- Licenses: Apache-2.0
- Latest release: 1.3.1 (published 4 months ago)
- Last Synced: 2026-01-31T18:58:03.608Z (about 1 month ago)
- Versions: 11
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,075 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 28.885%
- Downloads: 86.655%
- Maintainers (1)
gem.coop: google-cloud-secret_manager-v1beta2
Secret Manager Overview. Note that google-cloud-secret_manager-v1beta2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-secret_manager instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-secret_manager-v1beta2/
- Licenses: Apache-2.0
- Latest release: 0.5.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:31.386Z (13 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,812 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 29.981%
- Downloads: 89.943%
- Maintainers (1)
gem.coop: google-shopping-merchant-reviews-v1beta
Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-reviews-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-reviews instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-reviews-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.6.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:40.602Z (13 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,781 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 31.518%
- Downloads: 94.555%
- Maintainers (1)
gem.coop: google-cloud-storage_batch_operations
google-cloud-storage_batch_operations is the official client library for the Storage Batch Operations API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-storage_batch_operations/
- Licenses: Apache-2.0
- Latest release: 0.2.0 (published 13 days ago)
- Last Synced: 2026-02-18T19:51:45.245Z (13 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,740 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 32.14%
- Downloads: 96.421%
- Maintainers (1)
rubygems.org: google-cloud-bare_metal_solution
Bare Metal Solution is a managed solution that provides purpose-built HPE or Atos bare-metal servers in regional extensions that are connected to Google Cloud by a managed, high-performance connection with a low-latency network fabric.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-bare_metal_solution/
- Licenses: Apache-2.0
- Latest release: 2.0.2 (published 6 months ago)
- Last Synced: 2026-01-31T18:57:43.531Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 6,059 Total
-
Rankings:
- Forks count: 0.932%
- Stargazers count: 1.427%
- Dependent packages count: 15.706%
- Average: 32.461%
- Dependent repos count: 46.779%
- Downloads: 97.463%
- Maintainers (1)
rubygems.org: google-cloud-bigquery-migration
The BigQuery Migration Service is a comprehensive solution for migrating your data warehouse to BigQuery.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-bigquery-migration/
- Licenses: Apache-2.0
- Latest release: 1.3.3 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:46.876Z (13 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 6,689 Total
-
Rankings:
- Forks count: 0.932%
- Stargazers count: 1.427%
- Dependent packages count: 15.706%
- Average: 32.465%
- Dependent repos count: 46.779%
- Downloads: 97.482%
- Maintainers (1)
rubygems.org: google-iam-client
Manages identity and access control policies for Google Cloud Platform resources.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-iam-client/
- Licenses: Apache-2.0
- Latest release: 1.1.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:42.219Z (13 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,496 Total
-
Rankings:
- Forks count: 0.932%
- Stargazers count: 1.427%
- Dependent packages count: 15.706%
- Average: 32.583%
- Dependent repos count: 46.779%
- Downloads: 98.074%
- Maintainers (1)
rubygems.org: google-cloud-batch
Google Cloud Batch is a fully managed service used by scientists, VFX artists, developers to easily and efficiently run batch workloads on Google Cloud. This service manages provisioning of resources to satisfy the requirements of the batch jobs for a variety of workloads including ML, HPC, VFX rendering, transcoding, genomics and others.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-batch/
- Licenses: Apache-2.0
- Latest release: 2.0.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:31.370Z (13 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 8,449 Total
-
Rankings:
- Forks count: 1.122%
- Stargazers count: 1.63%
- Dependent packages count: 15.706%
- Average: 32.587%
- Dependent repos count: 46.779%
- Downloads: 97.7%
- Maintainers (1)
gem.coop: google-iam-v3beta
Manages identity and access control for Google Cloud resources, including the creation of service accounts, which you can use to authenticate to Google and make API calls. Enabling this API also enables the IAM Service Account Credentials API (iamcredentials.googleapis.com). However, disabling this API doesn't disable the IAM Service Account Credentials API. Note that google-iam-v3beta is a version-specific client library. For most uses, we recommend installing the main client library google-iam instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-iam-v3beta/
- Licenses: Apache-2.0
- Latest release: 0.3.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.528Z (13 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,389 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 32.645%
- Downloads: 97.936%
- Maintainers (1)
gem.coop: google-cloud-capacity_planner
Provides programmatic access to Capacity Planner features.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-capacity_planner/
- Licenses: Apache-2.0
- Latest release: 0.2.0 (published 5 months ago)
- Last Synced: 2026-02-18T21:08:29.267Z (13 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 989 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 32.699%
- Downloads: 98.098%
- Maintainers (1)
rubygems.org: google-cloud-gsuite_add_ons
Add-ons are customized applications that integrate with Google Workspace productivity applications.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-gsuite_add_ons/
- Licenses: Apache-2.0
- Latest release: 1.1.2 (published 6 months ago)
- Last Synced: 2026-01-31T18:55:40.652Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,059 Total
-
Rankings:
- Forks count: 0.908%
- Stargazers count: 1.616%
- Dependent packages count: 15.706%
- Average: 32.773%
- Dependent repos count: 46.779%
- Downloads: 98.857%
- Maintainers (1)
rubygems.org: google-cloud-data_catalog-lineage
DataCatalog is a centralized and unified data catalog service for all your Cloud resources, where users and systems can discover data, explore and curate its semantics, understand how to act on it, and help govern its usage. Lineage is used to track data flows between assets over time. You can create Lineage Events to record lineage between multiple sources and a single target, for example, when table data is based on data from multiple tables.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-data_catalog-lineage/
- Licenses: Apache-2.0
- Latest release: 1.1.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:44.134Z (13 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 552,778 Total
-
Rankings:
- Forks count: 0.908%
- Stargazers count: 1.616%
- Dependent packages count: 15.706%
- Average: 32.784%
- Dependent repos count: 46.779%
- Downloads: 98.913%
- Maintainers (1)
gem.coop: google-shopping-merchant-order_tracking-v1
Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment. Note that google-shopping-merchant-order_tracking-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-order_tracking instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-order_tracking-v1/
- Licenses: Apache-2.0
- Latest release: 0.2.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:31.371Z (13 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 995 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 32.828%
- Downloads: 98.485%
- Maintainers (1)
gem.coop: google-cloud-gemini_data_analytics
google-cloud-gemini_data_analytics is the official client library for the Data Analytics API with Gemini API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-gemini_data_analytics/
- Licenses: Apache-2.0
- Latest release: 0.1.1 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:37.827Z (13 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 736 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 32.896%
- Downloads: 98.687%
- Maintainers (1)
gem.coop: google-ads-data_manager
A unified ingestion API for data partners, agencies and advertisers to connect first-party data across Google advertising products.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-ads-data_manager/
- Licenses: Apache-2.0
- Latest release: 0.1.0 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:30.303Z (13 days ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 346 Total
-
Rankings:
- Dependent repos count: 0.0%
- Dependent packages count: 0.0%
- Average: 33.326%
- Downloads: 99.977%
- Maintainers (1)
rubygems.org: google-cloud-database_center-v1beta
The Database Center API provides access to an organization-wide, cross-product database fleet health platform. It aggregates health, security, and compliance signals from various Google Cloud databases, offering a single pane of glass to identify and manage issues. Note that google-cloud-database_center-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-database_center instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-database_center-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.2.0 (published about 1 month ago)
- Last Synced: 2026-01-29T03:07:26.217Z (about 1 month ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,233 Total
-
Rankings:
- Dependent packages count: 14.152%
- Dependent repos count: 43.345%
- Average: 50.048%
- Downloads: 92.648%
- Maintainers (1)
rubygems.org: google-ads-data_manager
A unified ingestion API for data partners, agencies and advertisers to connect first-party data across Google advertising products.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-ads-data_manager/
- Licenses: Apache-2.0
- Latest release: 0.1.0 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.356Z (13 days ago)
- Versions: 2
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 346 Total
-
Rankings:
- Dependent packages count: 14.212%
- Dependent repos count: 43.532%
- Average: 50.126%
- Downloads: 92.634%
- Maintainers (1)
rubygems.org: google-cloud-location_finder-v1
google-cloud-location_finder-v1 is the official client library for the Cloud Location Finder V1 API. Note that google-cloud-location_finder-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-location_finder instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-location_finder-v1/
- Licenses: Apache-2.0
- Latest release: 0.1.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.356Z (13 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 653 Total
-
Rankings:
- Dependent packages count: 14.245%
- Dependent repos count: 43.635%
- Average: 50.203%
- Downloads: 92.728%
- Maintainers (1)
rubygems.org: google-cloud-cloud_security_compliance
google-cloud-cloud_security_compliance is the official client library for the Cloud Security Compliance API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-cloud_security_compliance/
- Licenses: Apache-2.0
- Latest release: 0.2.0 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:47.833Z (13 days ago)
- Versions: 3
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 587 Total
-
Rankings:
- Dependent packages count: 14.252%
- Dependent repos count: 43.657%
- Average: 50.215%
- Downloads: 92.737%
- Maintainers (1)
rubygems.org: google-shopping-merchant-issue_resolution
Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-issue_resolution/
- Licenses: Apache-2.0
- Latest release: 0.2.1 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:42.963Z (13 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,478 Total
-
Rankings:
- Dependent packages count: 14.395%
- Dependent repos count: 44.096%
- Average: 50.419%
- Downloads: 92.766%
- Maintainers (1)
rubygems.org: google-cloud-chronicle-v1
The Google Cloud Security Operations API, popularly known as the Chronicle API, serves endpoints that enable security analysts to analyze and mitigate a security threat throughout its lifecycle. Note that google-cloud-chronicle-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-chronicle instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-chronicle-v1/
- Licenses: Apache-2.0
- Latest release: 0.3.1 (published 4 months ago)
- Last Synced: 2026-02-20T10:29:05.858Z (11 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,421 Total
-
Rankings:
- Dependent packages count: 14.404%
- Dependent repos count: 44.122%
- Average: 50.421%
- Downloads: 92.736%
- Maintainers (1)
rubygems.org: google-cloud-storage_batch_operations
google-cloud-storage_batch_operations is the official client library for the Storage Batch Operations API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-storage_batch_operations/
- Licenses: Apache-2.0
- Latest release: 0.2.0 (published 13 days ago)
- Last Synced: 2026-02-18T20:07:33.080Z (13 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 1,740 Total
-
Rankings:
- Dependent packages count: 14.432%
- Dependent repos count: 44.207%
- Average: 50.464%
- Downloads: 92.753%
- Maintainers (1)
rubygems.org: google-cloud-parameter_manager
Parameter Manager is a single source of truth to store, access and manage the lifecycle of your workload parameters. Parameter Manager aims to make management of sensitive application parameters effortless for customers without diminishing focus on security.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-parameter_manager/
- Licenses: Apache-2.0
- Latest release: 0.1.3 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:34.280Z (13 days ago)
- Versions: 4
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,116 Total
-
Rankings:
- Dependent packages count: 14.48%
- Dependent repos count: 44.355%
- Average: 50.529%
- Downloads: 92.753%
- Maintainers (1)
rubygems.org: google-cloud-cloud_quotas-v1beta
Cloud Quotas API provides Google Cloud service consumers with management and observability for resource usage, quotas, and restrictions of the services they consume. Note that google-cloud-cloud_quotas-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-cloud_quotas instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-cloud_quotas-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.6.2 (published about 1 month ago)
- Last Synced: 2026-01-29T03:07:28.486Z (about 1 month ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,937 Total
-
Rankings:
- Dependent packages count: 14.527%
- Dependent repos count: 44.494%
- Average: 50.602%
- Downloads: 92.785%
- Maintainers (1)
rubygems.org: google-cloud-parallelstore-v1
google-cloud-parallelstore-v1 is the official client library for the Parallelstore V1 API. Note that google-cloud-parallelstore-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-parallelstore instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-parallelstore-v1/
- Licenses: Apache-2.0
- Latest release: 1.5.0 (published 3 months ago)
- Last Synced: 2026-02-18T21:08:33.224Z (13 days ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,111 Total
-
Rankings:
- Dependent packages count: 14.607%
- Dependent repos count: 44.742%
- Average: 50.704%
- Downloads: 92.765%
- Maintainers (1)
rubygems.org: google-cloud-oracle_database
The Oracle Database@Google Cloud API provides a set of APIs to manage Oracle database services, such as Exadata and Autonomous Databases.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-oracle_database/
- Licenses: Apache-2.0
- Latest release: 0.2.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:38.457Z (13 days ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,251 Total
-
Rankings:
- Dependent packages count: 14.636%
- Dependent repos count: 44.832%
- Average: 50.752%
- Downloads: 92.787%
- Maintainers (1)
rubygems.org: google-cloud-developer_connect
Developer Connect streamlines integration with third-party source code management platforms by simplifying authentication, authorization, and networking configuration.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-developer_connect/
- Licenses: Apache-2.0
- Latest release: 2.1.1 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:32.637Z (13 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,312 Total
-
Rankings:
- Dependent packages count: 14.755%
- Dependent repos count: 45.197%
- Average: 50.909%
- Downloads: 92.774%
- Maintainers (1)
rubygems.org: google-cloud-storage-control
The Google Cloud Storage API allows applications to read and write data through the abstractions of buckets and objects, which are similar to directories and files except that buckets cannot contain other buckets, and directory-level operations (like directory rename) are not supported. Buckets share a single global namespace, and each bucket belongs to a specific project that has an associated owner that pays for the data stored in the bucket. This API is accessed using standard gRPC requests.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-storage-control/
- Licenses: Apache-2.0
- Latest release: 1.2.0 (published 13 days ago)
- Last Synced: 2026-02-18T20:07:32.987Z (13 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 12,052 Total
-
Rankings:
- Dependent packages count: 14.627%
- Dependent repos count: 45.37%
- Average: 51.861%
- Downloads: 95.586%
- Maintainers (1)
rubygems.org: google-shopping-merchant-lfp
Merchant API consists of multiple Sub-APIs. Accounts Sub-API: Enables you to programmatically manage your accounts. Conversions Sub-API: Enables you to programmatically manage your conversion sources for a merchant account. Datasources Sub-API: Enables you to programmatically manage your datasources. Inventories Sub-API: This bundle enables you to programmatically manage your local and regional inventories. Local Feeds Partnerships Sub-API: This bundle enables LFP partners to submit local inventories for a merchant. Notifications Sub-API: This bundle enables you to programmatically manage your notification subscriptions. Products Sub-API: This bundle enables you to programmatically manage your products. Promotions Sub-API: This bundle enables you to programmatically manage your promotions for products. Quota Sub-API: This bundle enables you to list your quotas for all APIs you are using. Reports Sub-API: This bundle enables you to programmatically retrieve reports and insights about products, their performance and their competitive environment.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-lfp/
- Licenses: Apache-2.0
- Latest release: 0.3.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:29.308Z (13 days ago)
- Versions: 6
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 2,540 Total
-
Rankings:
- Dependent packages count: 14.62%
- Dependent repos count: 45.35%
- Average: 51.888%
- Downloads: 95.695%
- Maintainers (1)
rubygems.org: google-shopping-merchant-notifications-v1beta
Programmatically manage your Merchant Center accounts. Note that google-shopping-merchant-notifications-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-merchant-notifications instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-notifications-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.5.1 (published 4 months ago)
- Last Synced: 2026-01-31T18:58:14.677Z (about 1 month ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,423 Total
-
Rankings:
- Dependent packages count: 14.62%
- Dependent repos count: 45.35%
- Average: 51.888%
- Downloads: 95.695%
- Maintainers (1)
rubygems.org: google-cloud-storage-control-v2
The Google Cloud Storage API allows applications to read and write data through the abstractions of buckets and objects, which are similar to directories and files except that buckets cannot contain other buckets, and directory-level operations (like directory rename) are not supported. Buckets share a single global namespace, and each bucket belongs to a specific project that has an associated owner that pays for the data stored in the bucket. This API is accessed using standard gRPC requests. Note that google-cloud-storage-control-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-storage-control instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-storage-control-v2/
- Licenses: Apache-2.0
- Latest release: 1.8.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:33.559Z (13 days ago)
- Versions: 14
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 15,209 Total
-
Rankings:
- Dependent packages count: 14.627%
- Dependent repos count: 45.37%
- Average: 51.982%
- Downloads: 95.947%
- Maintainers (1)
rubygems.org: google-cloud-backupdr-v1
google-cloud-backupdr-v1 is the official client library for the Backup and DR Service V1 API. Note that google-cloud-backupdr-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-backupdr instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-backupdr-v1/
- Licenses: Apache-2.0
- Latest release: 1.8.0 (published 13 days ago)
- Last Synced: 2026-02-18T20:07:33.620Z (13 days ago)
- Versions: 18
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 5,834 Total
-
Rankings:
- Dependent packages count: 14.627%
- Dependent repos count: 45.37%
- Average: 52.044%
- Downloads: 96.136%
- Maintainers (1)
rubygems.org: google-cloud-app_hub
google-cloud-app_hub is the official client library for the App Hub API.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-app_hub/
- Licenses: Apache-2.0
- Latest release: 2.0.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:47.848Z (13 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,152 Total
-
Rankings:
- Dependent packages count: 14.628%
- Dependent repos count: 45.374%
- Average: 52.06%
- Downloads: 96.176%
- Maintainers (1)
rubygems.org: google-cloud-secret_manager-v1beta2
Secret Manager Overview. Note that google-cloud-secret_manager-v1beta2 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-secret_manager instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-secret_manager-v1beta2/
- Licenses: Apache-2.0
- Latest release: 0.5.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:29.558Z (13 days ago)
- Versions: 9
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,812 Total
-
Rankings:
- Dependent packages count: 15.17%
- Dependent repos count: 47.056%
- Average: 53.374%
- Downloads: 97.896%
- Maintainers (1)
rubygems.org: google-apps-meet-v2
Create and manage meetings in Google Meet. Note that google-apps-meet-v2 is a version-specific client library. For most uses, we recommend installing the main client library google-apps-meet instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-apps-meet-v2/
- Licenses: Apache-2.0
- Latest release: 0.6.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.714Z (13 days ago)
- Versions: 11
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 21,392 Total
-
Rankings:
- Dependent packages count: 15.699%
- Dependent repos count: 48.702%
- Average: 54.565%
- Downloads: 99.295%
- Maintainers (1)
rubygems.org: google-cloud-cloud_controls_partner-v1beta
Provides insights about your customers and their Assured Workloads based on your Sovereign Controls by Partners offering. Note that google-cloud-cloud_controls_partner-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-cloud_controls_partner instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-cloud_controls_partner-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.7.1 (published 4 months ago)
- Last Synced: 2026-01-31T18:57:55.976Z (about 1 month ago)
- Versions: 12
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,160 Total
-
Rankings:
- Dependent packages count: 15.697%
- Dependent repos count: 48.696%
- Average: 54.568%
- Downloads: 99.312%
- Maintainers (1)
rubygems.org: google-cloud-parallelstore-v1beta
google-cloud-parallelstore-v1beta is the official client library for the Parallelstore V1BETA API. Note that google-cloud-parallelstore-v1beta is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-parallelstore instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-parallelstore-v1beta/
- Licenses: Apache-2.0
- Latest release: 0.11.1 (published 4 months ago)
- Last Synced: 2026-02-18T21:08:32.759Z (13 days ago)
- Versions: 17
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 6,450 Total
-
Rankings:
- Dependent packages count: 15.706%
- Dependent repos count: 48.724%
- Average: 54.579%
- Downloads: 99.309%
- Maintainers (1)
rubygems.org: google-cloud-migration_center
A unified platform that helps you accelerate your end-to-end cloud journey from your current on-premises or cloud environments to Google Cloud.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-migration_center/
- Licenses: Apache-2.0
- Latest release: 2.0.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:46.015Z (13 days ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 4,640 Total
-
Rankings:
- Dependent packages count: 15.569%
- Dependent repos count: 48.885%
- Average: 54.627%
- Downloads: 99.428%
- Maintainers (1)
rubygems.org: google-cloud-security_center_management
Management API for Security Command Center, a built-in security and risk management solution for Google Cloud. Use this API to programmatically update the settings and configuration of Security Command Center.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-security_center_management/
- Licenses: Apache-2.0
- Latest release: 1.2.2 (published 6 months ago)
- Last Synced: 2026-02-18T21:08:44.840Z (13 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,421 Total
-
Rankings:
- Dependent packages count: 15.755%
- Dependent repos count: 48.874%
- Average: 54.654%
- Downloads: 99.332%
- Maintainers (1)
rubygems.org: google-cloud-cloud_quotas-v1
Cloud Quotas API provides Google Cloud service consumers with management and observability for resource usage, quotas, and restrictions of the services they consume. Note that google-cloud-cloud_quotas-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-cloud-cloud_quotas instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-cloud-cloud_quotas-v1/
- Licenses: Apache-2.0
- Latest release: 2.2.2 (published about 1 month ago)
- Last Synced: 2026-01-29T03:07:31.940Z (about 1 month ago)
- Versions: 20
- Dependent Packages: 1
- Dependent Repositories: 0
- Downloads: 8,332 Total
-
Rankings:
- Dependent packages count: 15.755%
- Dependent repos count: 48.874%
- Average: 54.654%
- Downloads: 99.332%
- Maintainers (1)
rubygems.org: google-shopping-merchant-inventories
Programmatically manage your Merchant Center accounts.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-shopping-merchant-inventories/
- Licenses: Apache-2.0
- Latest release: 0.5.0 (published 3 months ago)
- Last Synced: 2026-02-18T21:08:44.131Z (13 days ago)
- Versions: 8
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 3,238 Total
-
Rankings:
- Dependent packages count: 15.783%
- Dependent repos count: 48.893%
- Average: 54.698%
- Downloads: 99.419%
- Maintainers (1)
rubygems.org: google-shopping-css-v1
Programmatically manage your Comparison Shopping Service (CSS) account data at scale. Note that google-shopping-css-v1 is a version-specific client library. For most uses, we recommend installing the main client library google-shopping-css instead. See the readme for more details.
- Homepage: https://github.com/googleapis/google-cloud-ruby
- Documentation: http://www.rubydoc.info/gems/google-shopping-css-v1/
- Licenses: Apache-2.0
- Latest release: 0.8.1 (published 4 months ago)
- Last Synced: 2026-01-31T18:58:21.688Z (about 1 month ago)
- Versions: 16
- Dependent Packages: 0
- Dependent Repositories: 0
- Downloads: 5,621 Total
-
Rankings:
- Dependent packages count: 15.782%
- Dependent repos count: 48.959%
- Average: 54.702%
- Downloads: 99.364%
- Maintainers (1)
Dependencies
- actions/checkout v3 composite
- actions/setup-node v3 composite
- ruby/setup-ruby v1 composite
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
- gcr.io/cloud-devrel-public-resources/storage-testbench latest docker
- actions/checkout v3 composite
- ruby/setup-ruby v1 composite
- gems ~> 1.2
- google-style ~> 1.25, >= 1.25.1
- minitest ~> 5.14
- minitest-focus ~> 1.1
- minitest-rg ~> 5.2
- pry ~> 0.14.1
- rake ~> 13.0
- redcarpet ~> 3.0
- rubocop ~> 1.13
- yard ~> 0.9, >= 0.9.26
- google-analytics-admin-v1alpha >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-analytics-admin-v1alpha >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-analytics-admin-v1alpha >= 0
- google-analytics-data-v1beta >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-analytics-data-v1beta >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-analytics-data-v1beta >= 0
- google-area120-tables-v1alpha1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-area120-tables-v1alpha1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-area120-tables-v1alpha1 >= 0
- google-cloud-access_approval-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-access_approval-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-access_approval-v1 >= 0
- google-cloud-ai_platform-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-ai_platform-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- google-iam-v1 >= 0.0, < 2.a
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-ai_platform-v1 >= 0
- google-cloud-api_gateway-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-api_gateway-v1 >= 0.1, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-api_gateway-v1 >= 0
- google-cloud-api_keys-v2 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-api_keys-v2 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-api_keys-v2 >= 0
- google-cloud-apigee_connect-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-apigee_connect-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-apigee_connect-v1 >= 0
- google-cloud-apigee_registry-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-apigee_registry-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- google-iam-v1 >= 0.0, < 2.a
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-apigee_registry-v1 >= 0
- google-cloud-app_engine-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-app_engine-v1 >= 0.3, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-app_engine-v1 >= 0
- google-cloud-artifact_registry-v1 >= 0
- google-cloud-artifact_registry-v1beta2 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-artifact_registry-v1 >= 0.0, < 2.a
- google-cloud-artifact_registry-v1beta2 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-artifact_registry-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-artifact_registry-v1beta2 >= 0
- google-cloud-asset-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-asset-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-cloud-bigquery >= 0 development
- google-cloud-pubsub >= 0 development
- google-cloud-storage >= 0 development
- minitest ~> 5.14 development
- rake >= 0 development
- google-cloud-asset >= 0
- google-cloud-asset-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-os_config-v1 > 0.0, < 2.a
- google-identity-access_context_manager-v1 > 0.0, < 2.a
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-asset-v1 >= 0
- google-cloud-assured_workloads-v1 >= 0
- google-cloud-assured_workloads-v1beta1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-assured_workloads-v1 >= 0.0, < 2.a
- google-cloud-assured_workloads-v1beta1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-assured_workloads-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-assured_workloads-v1beta1 >= 0
- google-cloud-automl-v1 >= 0
- google-cloud-automl-v1beta1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-automl-v1 >= 0.0, < 2.a
- google-cloud-automl-v1beta1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-automl-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-automl-v1beta1 >= 0
- google-cloud-bare_metal_solution-v2 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-bare_metal_solution-v2 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- google-iam-v1 >= 0.0, < 2.a
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-bare_metal_solution-v2 >= 0
- google-cloud-batch-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-batch-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- google-iam-v1 >= 0.0, < 2.a
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-batch-v1 >= 0
- google-cloud-beyond_corp-app_connections-v1 >= 0
- google-cloud-beyond_corp-app_connectors-v1 >= 0
- google-cloud-beyond_corp-app_gateways-v1 >= 0
- google-cloud-beyond_corp-client_connector_services-v1 >= 0
- google-cloud-beyond_corp-client_gateways-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-beyond_corp-app_connections-v1 >= 0.0, < 2.a
- google-cloud-beyond_corp-app_connectors-v1 >= 0.0, < 2.a
- google-cloud-beyond_corp-app_gateways-v1 >= 0.0, < 2.a
- google-cloud-beyond_corp-client_connector_services-v1 >= 0.0, < 2.a
- google-cloud-beyond_corp-client_gateways-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- google-iam-v1 >= 0.0, < 2.a
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-beyond_corp-app_connections-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- google-iam-v1 >= 0.0, < 2.a
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-beyond_corp-app_connectors-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- google-iam-v1 >= 0.0, < 2.a
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-beyond_corp-app_gateways-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- google-cloud-location >= 0.0, < 2.a
- google-iam-v1 >= 0.0, < 2.a
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-beyond_corp-client_gateways-v1 >= 0
- google-cloud-core >= 0
- google-cloud-errors >= 0
- google-cloud-storage >= 0
- minitest-reporters ~> 1.5.0
- rake >= 0
- autotest-suffix ~> 1.1 development
- google-cloud-data_catalog ~> 1.2 development
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-autotest ~> 1.0 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- yard-doctest ~> 0.1.13 development
- concurrent-ruby ~> 1.0
- google-apis-bigquery_v2 ~> 0.1
- google-cloud-core ~> 1.6
- googleauth >= 0.16.2, < 2.a
- mini_mime ~> 1.0
- google-style ~> 1.25.1 development
- minitest ~> 5.14 development
- rake >= 0 development
- google-cloud-bigquery >= 0
- google-cloud-storage >= 0 development
- google-style ~> 1.25.1 development
- minitest ~> 5.14 development
- minitest-focus ~> 1.1 development
- rake >= 0 development
- google-cloud-bigquery >= 0
- rgeo >= 0
- rgeo-geojson >= 0
- google-cloud-bigquery-analytics_hub-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-bigquery-analytics_hub-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-bigquery-analytics_hub-v1 >= 0
- google-cloud-bigquery-connection-v1 >= 0
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.9 development
- yard ~> 0.9 development
- google-cloud-bigquery-connection-v1 >= 0.0, < 2.a
- google-cloud-core ~> 1.6
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-rg ~> 5.2 development
- rake >= 13.0 development
- redcarpet ~> 3.0 development
- simplecov ~> 0.18 development
- yard ~> 0.9 development
- gapic-common >= 0.16.0, < 2.a
- google-cloud-errors ~> 1.0
- grpc-google-iam-v1 ~> 1.1
- google-style ~> 1.26.1 development
- minitest ~> 5.16 development
- minitest-focus ~> 1.1 development
- minitest-hooks ~> 1.5 development
- google-cloud-bigquery-connection-v1 >= 0
- google-cloud-bigquery-data_exchange-v1beta1 >= 0
Score: 30.597329798117343