google-cloud-vision-v1 0.9.0 → 0.11.0
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/vision/v1/geometry_pb.rb +24 -18
- data/lib/google/cloud/vision/v1/image_annotator/client.rb +10 -10
- data/lib/google/cloud/vision/v1/image_annotator/operations.rb +14 -16
- data/lib/google/cloud/vision/v1/image_annotator/rest/client.rb +662 -0
- data/lib/google/cloud/vision/v1/image_annotator/rest/operations.rb +814 -0
- data/lib/google/cloud/vision/v1/image_annotator/rest/service_stub.rb +344 -0
- data/lib/google/cloud/vision/v1/image_annotator/rest.rb +55 -0
- data/lib/google/cloud/vision/v1/image_annotator.rb +7 -1
- data/lib/google/cloud/vision/v1/image_annotator_pb.rb +32 -273
- data/lib/google/cloud/vision/v1/product_search/client.rb +26 -34
- data/lib/google/cloud/vision/v1/product_search/operations.rb +14 -16
- data/lib/google/cloud/vision/v1/product_search/rest/client.rb +1970 -0
- data/lib/google/cloud/vision/v1/product_search/rest/operations.rb +814 -0
- data/lib/google/cloud/vision/v1/product_search/rest/service_stub.rb +1178 -0
- data/lib/google/cloud/vision/v1/product_search/rest.rb +66 -0
- data/lib/google/cloud/vision/v1/product_search.rb +7 -1
- data/lib/google/cloud/vision/v1/product_search_pb.rb +27 -28
- data/lib/google/cloud/vision/v1/product_search_service_pb.rb +28 -148
- data/lib/google/cloud/vision/v1/rest.rb +38 -0
- data/lib/google/cloud/vision/v1/text_annotation_pb.rb +25 -65
- data/lib/google/cloud/vision/v1/version.rb +1 -1
- data/lib/google/cloud/vision/v1/web_detection_pb.rb +24 -29
- data/lib/google/cloud/vision/v1.rb +7 -2
- data/proto_docs/google/api/client.rb +381 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/vision/v1/image_annotator.rb +2 -1
- data/proto_docs/google/protobuf/any.rb +7 -4
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +21 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40df20aa44564c2dfe57aecdada11ba4de2e85f3a6f3acc1c418ac8900a92684
|
4
|
+
data.tar.gz: 1fd2c2cda39b61034b7f4763905bff6fe8d63557b879f335ca3589e0aa582e68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c7194614df273eaa6c5b5ac5a4c0704b3f53426f697b6c7baa7d1d955b71c8edbc949a838c63d22a0e8ddbd0af5455ee0a094dd943b41216b05f7fba6c7e5bc5
|
7
|
+
data.tar.gz: f8430ac20d35108d533686ff2fb0eda2427ab8a8688039efe9a364ce64cb1843e3de09dc7e1fa898dbd9a55112527808cf4da26c1a35d0d91e72104d76592356
|
data/AUTHENTICATION.md
CHANGED
@@ -114,7 +114,7 @@ credentials are discovered.
|
|
114
114
|
To configure your system for this, simply:
|
115
115
|
|
116
116
|
1. [Download and install the Cloud SDK](https://cloud.google.com/sdk)
|
117
|
-
2. Authenticate using OAuth 2.0 `$ gcloud auth login`
|
117
|
+
2. Authenticate using OAuth 2.0 `$ gcloud auth application-default login`
|
118
118
|
3. Write code as if already authenticated.
|
119
119
|
|
120
120
|
**NOTE:** This is _not_ recommended for running in production. The Cloud SDK
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Cloud Vision V1 API
|
2
2
|
|
3
|
-
|
3
|
+
Integrates Google Vision features, including image labeling, face, logo, and landmark detection, optical character recognition (OCR), and detection of explicit content, into applications.
|
4
4
|
|
5
5
|
Cloud Vision API allows developers to easily integrate vision detection features within applications, including image labeling, face and landmark detection, optical character recognition (OCR), and tagging of explicit content.
|
6
6
|
|
@@ -46,8 +46,8 @@ 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/
|
50
|
-
or a [`Google::Cloud::Logging::Logger`](https://
|
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
|
+
or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/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.
|
53
53
|
|
@@ -1,28 +1,34 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
3
|
# source: google/cloud/vision/v1/geometry.proto
|
3
4
|
|
4
5
|
require 'google/protobuf'
|
5
6
|
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
7
|
+
|
8
|
+
descriptor_data = "\n%google/cloud/vision/v1/geometry.proto\x12\x16google.cloud.vision.v1\"\x1e\n\x06Vertex\x12\t\n\x01x\x18\x01 \x01(\x05\x12\t\n\x01y\x18\x02 \x01(\x05\"(\n\x10NormalizedVertex\x12\t\n\x01x\x18\x01 \x01(\x02\x12\t\n\x01y\x18\x02 \x01(\x02\"\x87\x01\n\x0c\x42oundingPoly\x12\x30\n\x08vertices\x18\x01 \x03(\x0b\x32\x1e.google.cloud.vision.v1.Vertex\x12\x45\n\x13normalized_vertices\x18\x02 \x03(\x0b\x32(.google.cloud.vision.v1.NormalizedVertex\"+\n\x08Position\x12\t\n\x01x\x18\x01 \x01(\x02\x12\t\n\x01y\x18\x02 \x01(\x02\x12\t\n\x01z\x18\x03 \x01(\x02\x42n\n\x1a\x63om.google.cloud.vision.v1B\rGeometryProtoP\x01Z5cloud.google.com/go/vision/v2/apiv1/visionpb;visionpb\xf8\x01\x01\xa2\x02\x04GCVNb\x06proto3"
|
9
|
+
|
10
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
11
|
+
|
12
|
+
begin
|
13
|
+
pool.add_serialized_file(descriptor_data)
|
14
|
+
rescue TypeError => e
|
15
|
+
# Compatibility code: will be removed in the next major version.
|
16
|
+
require 'google/protobuf/descriptor_pb'
|
17
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
18
|
+
parsed.clear_dependency
|
19
|
+
serialized = parsed.class.encode(parsed)
|
20
|
+
file = pool.add_serialized_file(serialized)
|
21
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
22
|
+
imports = [
|
23
|
+
]
|
24
|
+
imports.each do |type_name, expected_filename|
|
25
|
+
import_file = pool.lookup(type_name).file_descriptor
|
26
|
+
if import_file.name != expected_filename
|
27
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
24
28
|
end
|
25
29
|
end
|
30
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
31
|
+
warn "This will become an error in the next major version."
|
26
32
|
end
|
27
33
|
|
28
34
|
module Google
|
@@ -430,14 +430,14 @@ module Google
|
|
430
430
|
# # Call the async_batch_annotate_images method.
|
431
431
|
# result = client.async_batch_annotate_images request
|
432
432
|
#
|
433
|
-
# # The returned object is of type Gapic::Operation. You can use
|
434
|
-
# #
|
435
|
-
# #
|
433
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
434
|
+
# # check the status of an operation, cancel it, or wait for results.
|
435
|
+
# # Here is how to wait for a response.
|
436
436
|
# result.wait_until_done! timeout: 60
|
437
437
|
# if result.response?
|
438
438
|
# p result.response
|
439
439
|
# else
|
440
|
-
# puts "
|
440
|
+
# puts "No response received."
|
441
441
|
# end
|
442
442
|
#
|
443
443
|
def async_batch_annotate_images request, options = nil
|
@@ -533,14 +533,14 @@ module Google
|
|
533
533
|
# # Call the async_batch_annotate_files method.
|
534
534
|
# result = client.async_batch_annotate_files request
|
535
535
|
#
|
536
|
-
# # The returned object is of type Gapic::Operation. You can use
|
537
|
-
# #
|
538
|
-
# #
|
536
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
537
|
+
# # check the status of an operation, cancel it, or wait for results.
|
538
|
+
# # Here is how to wait for a response.
|
539
539
|
# result.wait_until_done! timeout: 60
|
540
540
|
# if result.response?
|
541
541
|
# p result.response
|
542
542
|
# else
|
543
|
-
# puts "
|
543
|
+
# puts "No response received."
|
544
544
|
# end
|
545
545
|
#
|
546
546
|
def async_batch_annotate_files request, options = nil
|
@@ -615,9 +615,9 @@ module Google
|
|
615
615
|
# * (`String`) The path to a service account key file in JSON format
|
616
616
|
# * (`Hash`) A service account key as a Hash
|
617
617
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
618
|
-
# (see the [googleauth docs](https://
|
618
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
619
619
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
620
|
-
# (see the [signet docs](https://
|
620
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
621
621
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
622
622
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
623
623
|
# * (`nil`) indicating no credentials
|
@@ -158,13 +158,11 @@ module Google
|
|
158
158
|
# # Call the list_operations method.
|
159
159
|
# result = client.list_operations request
|
160
160
|
#
|
161
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
162
|
-
# #
|
163
|
-
#
|
164
|
-
# # methods are also available for managing paging directly.
|
165
|
-
# result.each do |response|
|
161
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
162
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
163
|
+
# result.each do |item|
|
166
164
|
# # Each element is of type ::Google::Longrunning::Operation.
|
167
|
-
# p
|
165
|
+
# p item
|
168
166
|
# end
|
169
167
|
#
|
170
168
|
def list_operations request, options = nil
|
@@ -253,14 +251,14 @@ module Google
|
|
253
251
|
# # Call the get_operation method.
|
254
252
|
# result = client.get_operation request
|
255
253
|
#
|
256
|
-
# # The returned object is of type Gapic::Operation. You can use
|
257
|
-
# #
|
258
|
-
# #
|
254
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
255
|
+
# # check the status of an operation, cancel it, or wait for results.
|
256
|
+
# # Here is how to wait for a response.
|
259
257
|
# result.wait_until_done! timeout: 60
|
260
258
|
# if result.response?
|
261
259
|
# p result.response
|
262
260
|
# else
|
263
|
-
# puts "
|
261
|
+
# puts "No response received."
|
264
262
|
# end
|
265
263
|
#
|
266
264
|
def get_operation request, options = nil
|
@@ -540,14 +538,14 @@ module Google
|
|
540
538
|
# # Call the wait_operation method.
|
541
539
|
# result = client.wait_operation request
|
542
540
|
#
|
543
|
-
# # The returned object is of type Gapic::Operation. You can use
|
544
|
-
# #
|
545
|
-
# #
|
541
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
542
|
+
# # check the status of an operation, cancel it, or wait for results.
|
543
|
+
# # Here is how to wait for a response.
|
546
544
|
# result.wait_until_done! timeout: 60
|
547
545
|
# if result.response?
|
548
546
|
# p result.response
|
549
547
|
# else
|
550
|
-
# puts "
|
548
|
+
# puts "No response received."
|
551
549
|
# end
|
552
550
|
#
|
553
551
|
def wait_operation request, options = nil
|
@@ -622,9 +620,9 @@ module Google
|
|
622
620
|
# * (`String`) The path to a service account key file in JSON format
|
623
621
|
# * (`Hash`) A service account key as a Hash
|
624
622
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
625
|
-
# (see the [googleauth docs](https://
|
623
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
626
624
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
627
|
-
# (see the [signet docs](https://
|
625
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
628
626
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
629
627
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
630
628
|
# * (`nil`) indicating no credentials
|