google-cloud-run-v2 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +1 -1
- data/README.md +3 -3
- data/lib/google/cloud/run/v2/version.rb +1 -1
- data/proto_docs/google/protobuf/empty.rb +0 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a007073c4a186a0453d2a181e590440d464ea1e7928f8ca9afe6a8075e8dff70
|
|
4
|
+
data.tar.gz: ed2e7d6650d23b1d8d19e90816cd08403a9e11c2e85876aec57b9c4445cbec8b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 54b076c125b6d9ce629b7a6090c981f48dc4fa4d24082e1d1f0f7c81ffaeb6c2fc038617acaae1b386780a164ae60dd0395d6f9377da7519c2148d51b5e8f13e
|
|
7
|
+
data.tar.gz: 4fc93f4e239f395fb10701228385d8db5d39cffe81bb19c80018a481dba17f0dc7a1d9c8512f9770d70df9d51de491d8f3eb2637a55cc9e6a435ea20ad619299
|
data/AUTHENTICATION.md
CHANGED
|
@@ -112,7 +112,7 @@ credentials are discovered.
|
|
|
112
112
|
To configure your system for this, simply:
|
|
113
113
|
|
|
114
114
|
1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
|
|
115
|
-
2. Authenticate using OAuth 2.0 `$ gcloud auth login`
|
|
115
|
+
2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
|
|
116
116
|
3. Write code as if already authenticated.
|
|
117
117
|
|
|
118
118
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
data/README.md
CHANGED
|
@@ -9,7 +9,7 @@ https://github.com/googleapis/google-cloud-ruby
|
|
|
9
9
|
This gem is a _versioned_ client. It provides basic client classes for a
|
|
10
10
|
specific version of the Cloud Run V2 API. Most users should consider using
|
|
11
11
|
the main client gem,
|
|
12
|
-
[google-cloud-run](https://rubygems.org/gems/google-cloud-run).
|
|
12
|
+
[google-cloud-run-client](https://rubygems.org/gems/google-cloud-run-client).
|
|
13
13
|
See the section below titled *Which client should I use?* for more information.
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
@@ -88,7 +88,7 @@ support schedule.
|
|
|
88
88
|
## Which client should I use?
|
|
89
89
|
|
|
90
90
|
Most modern Ruby client libraries for Google APIs come in two flavors: the main
|
|
91
|
-
client library with a name such as `google-cloud-run`,
|
|
91
|
+
client library with a name such as `google-cloud-run-client`,
|
|
92
92
|
and lower-level _versioned_ client libraries with names such as
|
|
93
93
|
`google-cloud-run-v2`.
|
|
94
94
|
_In most cases, you should install the main client._
|
|
@@ -115,7 +115,7 @@ service version.
|
|
|
115
115
|
|
|
116
116
|
We recommend that most users install the main client gem for a service. You can
|
|
117
117
|
identify this gem as the one _without_ a version in its name, e.g.
|
|
118
|
-
`google-cloud-run`.
|
|
118
|
+
`google-cloud-run-client`.
|
|
119
119
|
The main client is recommended because it will embody the best practices for
|
|
120
120
|
accessing the service, and may also provide more convenient interfaces or
|
|
121
121
|
tighter integration into frameworks and third-party libraries. In addition, the
|
|
@@ -26,8 +26,6 @@ module Google
|
|
|
26
26
|
# service Foo {
|
|
27
27
|
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
|
28
28
|
# }
|
|
29
|
-
#
|
|
30
|
-
# The JSON representation for `Empty` is empty JSON object `{}`.
|
|
31
29
|
class Empty
|
|
32
30
|
include ::Google::Protobuf::MessageExts
|
|
33
31
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-run-v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gapic-common
|
|
@@ -172,7 +172,7 @@ dependencies:
|
|
|
172
172
|
version: '0.9'
|
|
173
173
|
description: Cloud Run deploys and manages user provided container images that scale
|
|
174
174
|
automatically based on incoming requests. Note that google-cloud-run-v2 is a version-specific
|
|
175
|
-
client library. For most uses, we recommend installing the main client library google-cloud-run
|
|
175
|
+
client library. For most uses, we recommend installing the main client library google-cloud-run-client
|
|
176
176
|
instead. See the readme for more details.
|
|
177
177
|
email: googleapis-packages@google.com
|
|
178
178
|
executables: []
|