google-cloud-language-v1 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/language/v1/language_service/rest/client.rb +739 -0
- data/lib/google/cloud/language/v1/language_service/rest/service_stub.rb +396 -0
- data/lib/google/cloud/language/v1/language_service/rest.rb +52 -0
- data/lib/google/cloud/language/v1/language_service.rb +7 -1
- data/lib/google/cloud/language/v1/rest.rb +37 -0
- data/lib/google/cloud/language/v1/version.rb +1 -1
- data/lib/google/cloud/language/v1.rb +7 -2
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/protobuf/duration.rb +98 -0
- metadata +14 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: abb61f0c742d5cad958648c8dd75ecdef4df43c0c300e04790cfb8d8c4817aa1
|
4
|
+
data.tar.gz: 1b653cb913255b96aacd5b13238ee3f3cd45db0335d9a10ec06e37cc68aa2b3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bef382fad9261f0becff13664607ac7a40d84d4df3468fe5ac7151457a4f2f6773c4d1855a4b477b134caaf934b63ea3608b0fc8edf9ef4defaebd6192c55c7
|
7
|
+
data.tar.gz: 8acc473da3977fe26bb0ddecc0294355e2fe1b48b486072ee0f0572d35f039457d45fe7693327b89b48d6a4b19edc2dc048d051861bbc6b2e02c02d3923686a3
|
data/README.md
CHANGED
@@ -46,7 +46,7 @@ for general usage information.
|
|
46
46
|
## Enabling Logging
|
47
47
|
|
48
48
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
49
|
-
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/
|
49
|
+
The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
|
50
50
|
or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
51
51
|
that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
52
52
|
and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|