google-cloud-vision-v1p3beta1 0.1.5 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/google/cloud/vision/v1p3beta1/image_annotator/client.rb +18 -13
- data/lib/google/cloud/vision/v1p3beta1/image_annotator/operations.rb +17 -11
- data/lib/google/cloud/vision/v1p3beta1/image_annotator_services_pb.rb +2 -2
- data/lib/google/cloud/vision/v1p3beta1/product_search/client.rb +27 -22
- data/lib/google/cloud/vision/v1p3beta1/product_search/operations.rb +17 -11
- data/lib/google/cloud/vision/v1p3beta1/product_search_service_services_pb.rb +18 -18
- data/lib/google/cloud/vision/v1p3beta1/version.rb +1 -1
- metadata +35 -8
- data/lib/google/cloud/common_resources_pb.rb +0 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9946e7c01582598447f5e5a684dd8299867887017aad2ff7b792b8866781ebec
|
4
|
+
data.tar.gz: 35f3dcbdac46d401ee2608d60c618070cfb39aebc2100507b8f062c73ea90a30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd1ffe9868e0ea41e679d4bd9c851c5d9f59571a342e380f411026701d40710790f199f72345f35af35cfc8b2f2bd1b3fb659c7849fdfed07648d9f3d168a4fa
|
7
|
+
data.tar.gz: 744eefc0e48b4e47d67d3d40ab78382fdea8002e0156da8338d6a5874fd85b4ff587227b5e6f4f06498cfb5aab1fcfe4ab2a14fe50ff3ec3f2693e02fc3649eb
|
data/README.md
CHANGED
@@ -18,6 +18,7 @@ In order to use this library, you first need to go through the following steps:
|
|
18
18
|
|
19
19
|
1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
20
20
|
1. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
21
|
+
1. [Enable the API.](https://console.cloud.google.com/apis/library/vision.googleapis.com)
|
21
22
|
1. {file:AUTHENTICATION.md Set up authentication.}
|
22
23
|
|
23
24
|
## Quick Start
|
@@ -33,6 +34,9 @@ response = client.create_product_set request
|
|
33
34
|
View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-vision-v1p3beta1/latest)
|
34
35
|
for class and method documentation.
|
35
36
|
|
37
|
+
See also the [Product Documentation](https://cloud.google.com/vision)
|
38
|
+
for general usage information.
|
39
|
+
|
36
40
|
## Enabling Logging
|
37
41
|
|
38
42
|
To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
@@ -72,7 +72,7 @@ module Google
|
|
72
72
|
initial_delay: 0.1,
|
73
73
|
max_delay: 60.0,
|
74
74
|
multiplier: 1.3,
|
75
|
-
retry_codes: [
|
75
|
+
retry_codes: [14, 4]
|
76
76
|
}
|
77
77
|
|
78
78
|
default_config.rpcs.async_batch_annotate_files.timeout = 600.0
|
@@ -148,7 +148,8 @@ module Google
|
|
148
148
|
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
149
149
|
credentials = Credentials.new credentials, scope: @config.scope
|
150
150
|
end
|
151
|
-
@quota_project_id =
|
151
|
+
@quota_project_id = @config.quota_project
|
152
|
+
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
152
153
|
|
153
154
|
@operations_client = Operations.new do |config|
|
154
155
|
config.credentials = credentials
|
@@ -375,24 +376,28 @@ module Google
|
|
375
376
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
376
377
|
# trigger a retry.
|
377
378
|
# @return [::Hash]
|
379
|
+
# @!attribute [rw] quota_project
|
380
|
+
# A separate project against which to charge quota.
|
381
|
+
# @return [::String]
|
378
382
|
#
|
379
383
|
class Configuration
|
380
384
|
extend ::Gapic::Config
|
381
385
|
|
382
|
-
config_attr :endpoint,
|
383
|
-
config_attr :credentials,
|
386
|
+
config_attr :endpoint, "vision.googleapis.com", ::String
|
387
|
+
config_attr :credentials, nil do |value|
|
384
388
|
allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
385
389
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
386
390
|
allowed.any? { |klass| klass === value }
|
387
391
|
end
|
388
|
-
config_attr :scope,
|
389
|
-
config_attr :lib_name,
|
390
|
-
config_attr :lib_version,
|
391
|
-
config_attr(:channel_args,
|
392
|
-
config_attr :interceptors,
|
393
|
-
config_attr :timeout,
|
394
|
-
config_attr :metadata,
|
395
|
-
config_attr :retry_policy,
|
392
|
+
config_attr :scope, nil, ::String, ::Array, nil
|
393
|
+
config_attr :lib_name, nil, ::String, nil
|
394
|
+
config_attr :lib_version, nil, ::String, nil
|
395
|
+
config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
|
396
|
+
config_attr :interceptors, nil, ::Array, nil
|
397
|
+
config_attr :timeout, nil, ::Numeric, nil
|
398
|
+
config_attr :metadata, nil, ::Hash, nil
|
399
|
+
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
400
|
+
config_attr :quota_project, nil, ::String, nil
|
396
401
|
|
397
402
|
# @private
|
398
403
|
def initialize parent_config = nil
|
@@ -408,7 +413,7 @@ module Google
|
|
408
413
|
def rpcs
|
409
414
|
@rpcs ||= begin
|
410
415
|
parent_rpcs = nil
|
411
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
416
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
412
417
|
Rpcs.new parent_rpcs
|
413
418
|
end
|
414
419
|
end
|
@@ -85,6 +85,8 @@ module Google
|
|
85
85
|
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
86
86
|
credentials = Credentials.new credentials, scope: @config.scope
|
87
87
|
end
|
88
|
+
@quota_project_id = @config.quota_project
|
89
|
+
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
88
90
|
|
89
91
|
@operations_stub = ::Gapic::ServiceStub.new(
|
90
92
|
::Google::Longrunning::Operations::Stub,
|
@@ -464,24 +466,28 @@ module Google
|
|
464
466
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
465
467
|
# trigger a retry.
|
466
468
|
# @return [::Hash]
|
469
|
+
# @!attribute [rw] quota_project
|
470
|
+
# A separate project against which to charge quota.
|
471
|
+
# @return [::String]
|
467
472
|
#
|
468
473
|
class Configuration
|
469
474
|
extend ::Gapic::Config
|
470
475
|
|
471
|
-
config_attr :endpoint,
|
472
|
-
config_attr :credentials,
|
476
|
+
config_attr :endpoint, "vision.googleapis.com", ::String
|
477
|
+
config_attr :credentials, nil do |value|
|
473
478
|
allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
474
479
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
475
480
|
allowed.any? { |klass| klass === value }
|
476
481
|
end
|
477
|
-
config_attr :scope,
|
478
|
-
config_attr :lib_name,
|
479
|
-
config_attr :lib_version,
|
480
|
-
config_attr(:channel_args,
|
481
|
-
config_attr :interceptors,
|
482
|
-
config_attr :timeout,
|
483
|
-
config_attr :metadata,
|
484
|
-
config_attr :retry_policy,
|
482
|
+
config_attr :scope, nil, ::String, ::Array, nil
|
483
|
+
config_attr :lib_name, nil, ::String, nil
|
484
|
+
config_attr :lib_version, nil, ::String, nil
|
485
|
+
config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
|
486
|
+
config_attr :interceptors, nil, ::Array, nil
|
487
|
+
config_attr :timeout, nil, ::Numeric, nil
|
488
|
+
config_attr :metadata, nil, ::Hash, nil
|
489
|
+
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
490
|
+
config_attr :quota_project, nil, ::String, nil
|
485
491
|
|
486
492
|
# @private
|
487
493
|
def initialize parent_config = nil
|
@@ -497,7 +503,7 @@ module Google
|
|
497
503
|
def rpcs
|
498
504
|
@rpcs ||= begin
|
499
505
|
parent_rpcs = nil
|
500
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
506
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
501
507
|
Rpcs.new parent_rpcs
|
502
508
|
end
|
503
509
|
end
|
@@ -37,14 +37,14 @@ module Google
|
|
37
37
|
self.service_name = 'google.cloud.vision.v1p3beta1.ImageAnnotator'
|
38
38
|
|
39
39
|
# Run image detection and annotation for a batch of images.
|
40
|
-
rpc :BatchAnnotateImages, BatchAnnotateImagesRequest, BatchAnnotateImagesResponse
|
40
|
+
rpc :BatchAnnotateImages, Google::Cloud::Vision::V1p3beta1::BatchAnnotateImagesRequest, Google::Cloud::Vision::V1p3beta1::BatchAnnotateImagesResponse
|
41
41
|
# Run asynchronous image detection and annotation for a list of generic
|
42
42
|
# files, such as PDF files, which may contain multiple pages and multiple
|
43
43
|
# images per page. Progress and results can be retrieved through the
|
44
44
|
# `google.longrunning.Operations` interface.
|
45
45
|
# `Operation.metadata` contains `OperationMetadata` (metadata).
|
46
46
|
# `Operation.response` contains `AsyncBatchAnnotateFilesResponse` (results).
|
47
|
-
rpc :AsyncBatchAnnotateFiles, AsyncBatchAnnotateFilesRequest, Google::Longrunning::Operation
|
47
|
+
rpc :AsyncBatchAnnotateFiles, Google::Cloud::Vision::V1p3beta1::AsyncBatchAnnotateFilesRequest, Google::Longrunning::Operation
|
48
48
|
end
|
49
49
|
|
50
50
|
Stub = Service.rpc_stub_class
|
@@ -91,7 +91,7 @@ module Google
|
|
91
91
|
initial_delay: 0.1,
|
92
92
|
max_delay: 60.0,
|
93
93
|
multiplier: 1.3,
|
94
|
-
retry_codes: [
|
94
|
+
retry_codes: [14, 4]
|
95
95
|
}
|
96
96
|
|
97
97
|
default_config.rpcs.get_product_set.timeout = 600.0
|
@@ -99,7 +99,7 @@ module Google
|
|
99
99
|
initial_delay: 0.1,
|
100
100
|
max_delay: 60.0,
|
101
101
|
multiplier: 1.3,
|
102
|
-
retry_codes: [
|
102
|
+
retry_codes: [14, 4]
|
103
103
|
}
|
104
104
|
|
105
105
|
default_config.rpcs.update_product_set.timeout = 600.0
|
@@ -115,7 +115,7 @@ module Google
|
|
115
115
|
initial_delay: 0.1,
|
116
116
|
max_delay: 60.0,
|
117
117
|
multiplier: 1.3,
|
118
|
-
retry_codes: [
|
118
|
+
retry_codes: [14, 4]
|
119
119
|
}
|
120
120
|
|
121
121
|
default_config.rpcs.create_product.timeout = 600.0
|
@@ -131,7 +131,7 @@ module Google
|
|
131
131
|
initial_delay: 0.1,
|
132
132
|
max_delay: 60.0,
|
133
133
|
multiplier: 1.3,
|
134
|
-
retry_codes: [
|
134
|
+
retry_codes: [14, 4]
|
135
135
|
}
|
136
136
|
|
137
137
|
default_config.rpcs.get_product.timeout = 600.0
|
@@ -139,7 +139,7 @@ module Google
|
|
139
139
|
initial_delay: 0.1,
|
140
140
|
max_delay: 60.0,
|
141
141
|
multiplier: 1.3,
|
142
|
-
retry_codes: [
|
142
|
+
retry_codes: [14, 4]
|
143
143
|
}
|
144
144
|
|
145
145
|
default_config.rpcs.update_product.timeout = 600.0
|
@@ -155,7 +155,7 @@ module Google
|
|
155
155
|
initial_delay: 0.1,
|
156
156
|
max_delay: 60.0,
|
157
157
|
multiplier: 1.3,
|
158
|
-
retry_codes: [
|
158
|
+
retry_codes: [14, 4]
|
159
159
|
}
|
160
160
|
|
161
161
|
default_config.rpcs.create_reference_image.timeout = 600.0
|
@@ -171,7 +171,7 @@ module Google
|
|
171
171
|
initial_delay: 0.1,
|
172
172
|
max_delay: 60.0,
|
173
173
|
multiplier: 1.3,
|
174
|
-
retry_codes: [
|
174
|
+
retry_codes: [14, 4]
|
175
175
|
}
|
176
176
|
|
177
177
|
default_config.rpcs.list_reference_images.timeout = 600.0
|
@@ -179,7 +179,7 @@ module Google
|
|
179
179
|
initial_delay: 0.1,
|
180
180
|
max_delay: 60.0,
|
181
181
|
multiplier: 1.3,
|
182
|
-
retry_codes: [
|
182
|
+
retry_codes: [14, 4]
|
183
183
|
}
|
184
184
|
|
185
185
|
default_config.rpcs.get_reference_image.timeout = 600.0
|
@@ -187,7 +187,7 @@ module Google
|
|
187
187
|
initial_delay: 0.1,
|
188
188
|
max_delay: 60.0,
|
189
189
|
multiplier: 1.3,
|
190
|
-
retry_codes: [
|
190
|
+
retry_codes: [14, 4]
|
191
191
|
}
|
192
192
|
|
193
193
|
default_config.rpcs.add_product_to_product_set.timeout = 600.0
|
@@ -211,7 +211,7 @@ module Google
|
|
211
211
|
initial_delay: 0.1,
|
212
212
|
max_delay: 60.0,
|
213
213
|
multiplier: 1.3,
|
214
|
-
retry_codes: [
|
214
|
+
retry_codes: [14, 4]
|
215
215
|
}
|
216
216
|
|
217
217
|
default_config.rpcs.import_product_sets.timeout = 600.0
|
@@ -287,7 +287,8 @@ module Google
|
|
287
287
|
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
288
288
|
credentials = Credentials.new credentials, scope: @config.scope
|
289
289
|
end
|
290
|
-
@quota_project_id =
|
290
|
+
@quota_project_id = @config.quota_project
|
291
|
+
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
291
292
|
|
292
293
|
@operations_client = Operations.new do |config|
|
293
294
|
config.credentials = credentials
|
@@ -1822,24 +1823,28 @@ module Google
|
|
1822
1823
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
1823
1824
|
# trigger a retry.
|
1824
1825
|
# @return [::Hash]
|
1826
|
+
# @!attribute [rw] quota_project
|
1827
|
+
# A separate project against which to charge quota.
|
1828
|
+
# @return [::String]
|
1825
1829
|
#
|
1826
1830
|
class Configuration
|
1827
1831
|
extend ::Gapic::Config
|
1828
1832
|
|
1829
|
-
config_attr :endpoint,
|
1830
|
-
config_attr :credentials,
|
1833
|
+
config_attr :endpoint, "vision.googleapis.com", ::String
|
1834
|
+
config_attr :credentials, nil do |value|
|
1831
1835
|
allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1832
1836
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
1833
1837
|
allowed.any? { |klass| klass === value }
|
1834
1838
|
end
|
1835
|
-
config_attr :scope,
|
1836
|
-
config_attr :lib_name,
|
1837
|
-
config_attr :lib_version,
|
1838
|
-
config_attr(:channel_args,
|
1839
|
-
config_attr :interceptors,
|
1840
|
-
config_attr :timeout,
|
1841
|
-
config_attr :metadata,
|
1842
|
-
config_attr :retry_policy,
|
1839
|
+
config_attr :scope, nil, ::String, ::Array, nil
|
1840
|
+
config_attr :lib_name, nil, ::String, nil
|
1841
|
+
config_attr :lib_version, nil, ::String, nil
|
1842
|
+
config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
|
1843
|
+
config_attr :interceptors, nil, ::Array, nil
|
1844
|
+
config_attr :timeout, nil, ::Numeric, nil
|
1845
|
+
config_attr :metadata, nil, ::Hash, nil
|
1846
|
+
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
1847
|
+
config_attr :quota_project, nil, ::String, nil
|
1843
1848
|
|
1844
1849
|
# @private
|
1845
1850
|
def initialize parent_config = nil
|
@@ -1855,7 +1860,7 @@ module Google
|
|
1855
1860
|
def rpcs
|
1856
1861
|
@rpcs ||= begin
|
1857
1862
|
parent_rpcs = nil
|
1858
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
1863
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
1859
1864
|
Rpcs.new parent_rpcs
|
1860
1865
|
end
|
1861
1866
|
end
|
@@ -85,6 +85,8 @@ module Google
|
|
85
85
|
if credentials.is_a?(String) || credentials.is_a?(Hash)
|
86
86
|
credentials = Credentials.new credentials, scope: @config.scope
|
87
87
|
end
|
88
|
+
@quota_project_id = @config.quota_project
|
89
|
+
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
88
90
|
|
89
91
|
@operations_stub = ::Gapic::ServiceStub.new(
|
90
92
|
::Google::Longrunning::Operations::Stub,
|
@@ -464,24 +466,28 @@ module Google
|
|
464
466
|
# * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
|
465
467
|
# trigger a retry.
|
466
468
|
# @return [::Hash]
|
469
|
+
# @!attribute [rw] quota_project
|
470
|
+
# A separate project against which to charge quota.
|
471
|
+
# @return [::String]
|
467
472
|
#
|
468
473
|
class Configuration
|
469
474
|
extend ::Gapic::Config
|
470
475
|
|
471
|
-
config_attr :endpoint,
|
472
|
-
config_attr :credentials,
|
476
|
+
config_attr :endpoint, "vision.googleapis.com", ::String
|
477
|
+
config_attr :credentials, nil do |value|
|
473
478
|
allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
474
479
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
475
480
|
allowed.any? { |klass| klass === value }
|
476
481
|
end
|
477
|
-
config_attr :scope,
|
478
|
-
config_attr :lib_name,
|
479
|
-
config_attr :lib_version,
|
480
|
-
config_attr(:channel_args,
|
481
|
-
config_attr :interceptors,
|
482
|
-
config_attr :timeout,
|
483
|
-
config_attr :metadata,
|
484
|
-
config_attr :retry_policy,
|
482
|
+
config_attr :scope, nil, ::String, ::Array, nil
|
483
|
+
config_attr :lib_name, nil, ::String, nil
|
484
|
+
config_attr :lib_version, nil, ::String, nil
|
485
|
+
config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
|
486
|
+
config_attr :interceptors, nil, ::Array, nil
|
487
|
+
config_attr :timeout, nil, ::Numeric, nil
|
488
|
+
config_attr :metadata, nil, ::Hash, nil
|
489
|
+
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
490
|
+
config_attr :quota_project, nil, ::String, nil
|
485
491
|
|
486
492
|
# @private
|
487
493
|
def initialize parent_config = nil
|
@@ -497,7 +503,7 @@ module Google
|
|
497
503
|
def rpcs
|
498
504
|
@rpcs ||= begin
|
499
505
|
parent_rpcs = nil
|
500
|
-
parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to?
|
506
|
+
parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
|
501
507
|
Rpcs.new parent_rpcs
|
502
508
|
end
|
503
509
|
end
|
@@ -53,20 +53,20 @@ module Google
|
|
53
53
|
#
|
54
54
|
# * Returns INVALID_ARGUMENT if display_name is missing, or is longer than
|
55
55
|
# 4096 characters.
|
56
|
-
rpc :CreateProductSet, CreateProductSetRequest, ProductSet
|
56
|
+
rpc :CreateProductSet, Google::Cloud::Vision::V1p3beta1::CreateProductSetRequest, Google::Cloud::Vision::V1p3beta1::ProductSet
|
57
57
|
# Lists ProductSets in an unspecified order.
|
58
58
|
#
|
59
59
|
# Possible errors:
|
60
60
|
#
|
61
61
|
# * Returns INVALID_ARGUMENT if page_size is greater than 100, or less
|
62
62
|
# than 1.
|
63
|
-
rpc :ListProductSets, ListProductSetsRequest, ListProductSetsResponse
|
63
|
+
rpc :ListProductSets, Google::Cloud::Vision::V1p3beta1::ListProductSetsRequest, Google::Cloud::Vision::V1p3beta1::ListProductSetsResponse
|
64
64
|
# Gets information associated with a ProductSet.
|
65
65
|
#
|
66
66
|
# Possible errors:
|
67
67
|
#
|
68
68
|
# * Returns NOT_FOUND if the ProductSet does not exist.
|
69
|
-
rpc :GetProductSet, GetProductSetRequest, ProductSet
|
69
|
+
rpc :GetProductSet, Google::Cloud::Vision::V1p3beta1::GetProductSetRequest, Google::Cloud::Vision::V1p3beta1::ProductSet
|
70
70
|
# Makes changes to a ProductSet resource.
|
71
71
|
# Only display_name can be updated currently.
|
72
72
|
#
|
@@ -75,7 +75,7 @@ module Google
|
|
75
75
|
# * Returns NOT_FOUND if the ProductSet does not exist.
|
76
76
|
# * Returns INVALID_ARGUMENT if display_name is present in update_mask but
|
77
77
|
# missing from the request or longer than 4096 characters.
|
78
|
-
rpc :UpdateProductSet, UpdateProductSetRequest, ProductSet
|
78
|
+
rpc :UpdateProductSet, Google::Cloud::Vision::V1p3beta1::UpdateProductSetRequest, Google::Cloud::Vision::V1p3beta1::ProductSet
|
79
79
|
# Permanently deletes a ProductSet. All Products and ReferenceImages in the
|
80
80
|
# ProductSet will be deleted.
|
81
81
|
#
|
@@ -84,7 +84,7 @@ module Google
|
|
84
84
|
# Possible errors:
|
85
85
|
#
|
86
86
|
# * Returns NOT_FOUND if the ProductSet does not exist.
|
87
|
-
rpc :DeleteProductSet, DeleteProductSetRequest, Google::Protobuf::Empty
|
87
|
+
rpc :DeleteProductSet, Google::Cloud::Vision::V1p3beta1::DeleteProductSetRequest, Google::Protobuf::Empty
|
88
88
|
# Creates and returns a new product resource.
|
89
89
|
#
|
90
90
|
# Possible errors:
|
@@ -93,19 +93,19 @@ module Google
|
|
93
93
|
# characters.
|
94
94
|
# * Returns INVALID_ARGUMENT if description is longer than 4096 characters.
|
95
95
|
# * Returns INVALID_ARGUMENT if product_category is missing or invalid.
|
96
|
-
rpc :CreateProduct, CreateProductRequest, Product
|
96
|
+
rpc :CreateProduct, Google::Cloud::Vision::V1p3beta1::CreateProductRequest, Google::Cloud::Vision::V1p3beta1::Product
|
97
97
|
# Lists products in an unspecified order.
|
98
98
|
#
|
99
99
|
# Possible errors:
|
100
100
|
#
|
101
101
|
# * Returns INVALID_ARGUMENT if page_size is greater than 100 or less than 1.
|
102
|
-
rpc :ListProducts, ListProductsRequest, ListProductsResponse
|
102
|
+
rpc :ListProducts, Google::Cloud::Vision::V1p3beta1::ListProductsRequest, Google::Cloud::Vision::V1p3beta1::ListProductsResponse
|
103
103
|
# Gets information associated with a Product.
|
104
104
|
#
|
105
105
|
# Possible errors:
|
106
106
|
#
|
107
107
|
# * Returns NOT_FOUND if the Product does not exist.
|
108
|
-
rpc :GetProduct, GetProductRequest, Product
|
108
|
+
rpc :GetProduct, Google::Cloud::Vision::V1p3beta1::GetProductRequest, Google::Cloud::Vision::V1p3beta1::Product
|
109
109
|
# Makes changes to a Product resource.
|
110
110
|
# Only display_name, description and labels can be updated right now.
|
111
111
|
#
|
@@ -120,7 +120,7 @@ module Google
|
|
120
120
|
# * Returns INVALID_ARGUMENT if description is present in update_mask but is
|
121
121
|
# longer than 4096 characters.
|
122
122
|
# * Returns INVALID_ARGUMENT if product_category is present in update_mask.
|
123
|
-
rpc :UpdateProduct, UpdateProductRequest, Product
|
123
|
+
rpc :UpdateProduct, Google::Cloud::Vision::V1p3beta1::UpdateProductRequest, Google::Cloud::Vision::V1p3beta1::Product
|
124
124
|
# Permanently deletes a product and its reference images.
|
125
125
|
#
|
126
126
|
# Metadata of the product and all its images will be deleted right away, but
|
@@ -130,7 +130,7 @@ module Google
|
|
130
130
|
# Possible errors:
|
131
131
|
#
|
132
132
|
# * Returns NOT_FOUND if the product does not exist.
|
133
|
-
rpc :DeleteProduct, DeleteProductRequest, Google::Protobuf::Empty
|
133
|
+
rpc :DeleteProduct, Google::Cloud::Vision::V1p3beta1::DeleteProductRequest, Google::Protobuf::Empty
|
134
134
|
# Creates and returns a new ReferenceImage resource.
|
135
135
|
#
|
136
136
|
# The `bounding_poly` field is optional. If `bounding_poly` is not specified,
|
@@ -150,7 +150,7 @@ module Google
|
|
150
150
|
# * Returns INVALID_ARGUMENT if bounding_poly is not provided, and nothing
|
151
151
|
# compatible with the parent product's product_category is detected.
|
152
152
|
# * Returns INVALID_ARGUMENT if bounding_poly contains more than 10 polygons.
|
153
|
-
rpc :CreateReferenceImage, CreateReferenceImageRequest, ReferenceImage
|
153
|
+
rpc :CreateReferenceImage, Google::Cloud::Vision::V1p3beta1::CreateReferenceImageRequest, Google::Cloud::Vision::V1p3beta1::ReferenceImage
|
154
154
|
# Permanently deletes a reference image.
|
155
155
|
#
|
156
156
|
# The image metadata will be deleted right away, but search queries
|
@@ -162,7 +162,7 @@ module Google
|
|
162
162
|
# Possible errors:
|
163
163
|
#
|
164
164
|
# * Returns NOT_FOUND if the reference image does not exist.
|
165
|
-
rpc :DeleteReferenceImage, DeleteReferenceImageRequest, Google::Protobuf::Empty
|
165
|
+
rpc :DeleteReferenceImage, Google::Cloud::Vision::V1p3beta1::DeleteReferenceImageRequest, Google::Protobuf::Empty
|
166
166
|
# Lists reference images.
|
167
167
|
#
|
168
168
|
# Possible errors:
|
@@ -170,13 +170,13 @@ module Google
|
|
170
170
|
# * Returns NOT_FOUND if the parent product does not exist.
|
171
171
|
# * Returns INVALID_ARGUMENT if the page_size is greater than 100, or less
|
172
172
|
# than 1.
|
173
|
-
rpc :ListReferenceImages, ListReferenceImagesRequest, ListReferenceImagesResponse
|
173
|
+
rpc :ListReferenceImages, Google::Cloud::Vision::V1p3beta1::ListReferenceImagesRequest, Google::Cloud::Vision::V1p3beta1::ListReferenceImagesResponse
|
174
174
|
# Gets information associated with a ReferenceImage.
|
175
175
|
#
|
176
176
|
# Possible errors:
|
177
177
|
#
|
178
178
|
# * Returns NOT_FOUND if the specified image does not exist.
|
179
|
-
rpc :GetReferenceImage, GetReferenceImageRequest, ReferenceImage
|
179
|
+
rpc :GetReferenceImage, Google::Cloud::Vision::V1p3beta1::GetReferenceImageRequest, Google::Cloud::Vision::V1p3beta1::ReferenceImage
|
180
180
|
# Adds a Product to the specified ProductSet. If the Product is already
|
181
181
|
# present, no change is made.
|
182
182
|
#
|
@@ -185,13 +185,13 @@ module Google
|
|
185
185
|
# Possible errors:
|
186
186
|
#
|
187
187
|
# * Returns NOT_FOUND if the Product or the ProductSet doesn't exist.
|
188
|
-
rpc :AddProductToProductSet, AddProductToProductSetRequest, Google::Protobuf::Empty
|
188
|
+
rpc :AddProductToProductSet, Google::Cloud::Vision::V1p3beta1::AddProductToProductSetRequest, Google::Protobuf::Empty
|
189
189
|
# Removes a Product from the specified ProductSet.
|
190
190
|
#
|
191
191
|
# Possible errors:
|
192
192
|
#
|
193
193
|
# * Returns NOT_FOUND If the Product is not found under the ProductSet.
|
194
|
-
rpc :RemoveProductFromProductSet, RemoveProductFromProductSetRequest, Google::Protobuf::Empty
|
194
|
+
rpc :RemoveProductFromProductSet, Google::Cloud::Vision::V1p3beta1::RemoveProductFromProductSetRequest, Google::Protobuf::Empty
|
195
195
|
# Lists the Products in a ProductSet, in an unspecified order. If the
|
196
196
|
# ProductSet does not exist, the products field of the response will be
|
197
197
|
# empty.
|
@@ -199,7 +199,7 @@ module Google
|
|
199
199
|
# Possible errors:
|
200
200
|
#
|
201
201
|
# * Returns INVALID_ARGUMENT if page_size is greater than 100 or less than 1.
|
202
|
-
rpc :ListProductsInProductSet, ListProductsInProductSetRequest, ListProductsInProductSetResponse
|
202
|
+
rpc :ListProductsInProductSet, Google::Cloud::Vision::V1p3beta1::ListProductsInProductSetRequest, Google::Cloud::Vision::V1p3beta1::ListProductsInProductSetResponse
|
203
203
|
# Asynchronous API that imports a list of reference images to specified
|
204
204
|
# product sets based on a list of image information.
|
205
205
|
#
|
@@ -211,7 +211,7 @@ module Google
|
|
211
211
|
# The input source of this method is a csv file on Google Cloud Storage.
|
212
212
|
# For the format of the csv file please see
|
213
213
|
# [ImportProductSetsGcsSource.csv_file_uri][google.cloud.vision.v1p3beta1.ImportProductSetsGcsSource.csv_file_uri].
|
214
|
-
rpc :ImportProductSets, ImportProductSetsRequest, Google::Longrunning::Operation
|
214
|
+
rpc :ImportProductSets, Google::Cloud::Vision::V1p3beta1::ImportProductSetsRequest, Google::Longrunning::Operation
|
215
215
|
end
|
216
216
|
|
217
217
|
Stub = Service.rpc_stub_class
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-vision-v1p3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
26
|
+
version: '0.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: google-cloud-errors
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -58,14 +58,42 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '5.
|
61
|
+
version: '5.14'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '5.
|
68
|
+
version: '5.14'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: minitest-focus
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.1'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.1'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: minitest-rg
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '5.2'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '5.2'
|
69
97
|
- !ruby/object:Gem::Dependency
|
70
98
|
name: rake
|
71
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -135,7 +163,6 @@ files:
|
|
135
163
|
- LICENSE.md
|
136
164
|
- README.md
|
137
165
|
- lib/google-cloud-vision-v1p3beta1.rb
|
138
|
-
- lib/google/cloud/common_resources_pb.rb
|
139
166
|
- lib/google/cloud/vision/v1p3beta1.rb
|
140
167
|
- lib/google/cloud/vision/v1p3beta1/geometry_pb.rb
|
141
168
|
- lib/google/cloud/vision/v1p3beta1/image_annotator.rb
|
@@ -194,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
194
221
|
- !ruby/object:Gem::Version
|
195
222
|
version: '0'
|
196
223
|
requirements: []
|
197
|
-
rubygems_version: 3.
|
224
|
+
rubygems_version: 3.1.3
|
198
225
|
signing_key:
|
199
226
|
specification_version: 4
|
200
227
|
summary: API Client library for the Cloud Vision V1p3beta1 API
|
@@ -1,15 +0,0 @@
|
|
1
|
-
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
|
-
# source: google/cloud/common_resources.proto
|
3
|
-
|
4
|
-
require 'google/protobuf'
|
5
|
-
|
6
|
-
require 'google/api/resource_pb'
|
7
|
-
Google::Protobuf::DescriptorPool.generated_pool.build do
|
8
|
-
add_file("google/cloud/common_resources.proto", :syntax => :proto3) do
|
9
|
-
end
|
10
|
-
end
|
11
|
-
|
12
|
-
module Google
|
13
|
-
module Cloud
|
14
|
-
end
|
15
|
-
end
|