google-cloud-vision-v1p3beta1 0.2.0 → 0.2.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 47396fd5d4c76b7859a7d510e11e35fba685491c03e4bee3234960829697c5b9
4
- data.tar.gz: ee8f0f8608d6581cc330f55c69a85d985d8d86c1e6555da68639facdbead6c31
3
+ metadata.gz: a86b715bcb5dbe3ac177b016d175acc6dfa8dc0d10841212d9898f29814885cd
4
+ data.tar.gz: 75628a513842710ac7244d9340e1a4b1af218e66123fbc518d38fee01c3367fa
5
5
  SHA512:
6
- metadata.gz: fae793707921d472b04e8f5eb25be80b88996ca08f1fac8df5b41a30479544fbef98fb50a5d470ef34e3fa71b4686e0f8040f9e60fc98357ad2445748e1bd45a
7
- data.tar.gz: de85fc29ad8a25e6822212e870321858770176c56c88daa1a574e4822bad0f99e05125e71c47bfc13e979f5dc4078e7bb511bb12dd9c2eb2c8e06ab11d3cf707
6
+ metadata.gz: c57c9e60e323ef7ddfddfddd892a00d588d6dc3f5765682d6efa073fd9100f1dac4a70995c6aaa83db069a01fe33e8cf0289d8930b5fae577242cc8874a8f945
7
+ data.tar.gz: cc8281c5fedfeaadaaa0741bd985675a274df3b60ba8540aaee2a07c3d7badf9cbf2dca9814d2bab53c50837a24eb30dc8417d2a8b9afb0ce6967776031eeb6d
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
75
+ retry_codes: [14, 4]
76
76
  }
77
77
 
78
78
  default_config.rpcs.async_batch_annotate_files.timeout = 600.0
@@ -385,7 +385,7 @@ module Google
385
385
 
386
386
  config_attr :endpoint, "vision.googleapis.com", ::String
387
387
  config_attr :credentials, nil do |value|
388
- allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
388
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
389
389
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
390
390
  allowed.any? { |klass| klass === value }
391
391
  end
@@ -413,7 +413,7 @@ module Google
413
413
  def rpcs
414
414
  @rpcs ||= begin
415
415
  parent_rpcs = nil
416
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
416
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
417
417
  Rpcs.new parent_rpcs
418
418
  end
419
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,
@@ -473,7 +475,7 @@ module Google
473
475
 
474
476
  config_attr :endpoint, "vision.googleapis.com", ::String
475
477
  config_attr :credentials, nil do |value|
476
- allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
478
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
477
479
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
478
480
  allowed.any? { |klass| klass === value }
479
481
  end
@@ -501,7 +503,7 @@ module Google
501
503
  def rpcs
502
504
  @rpcs ||= begin
503
505
  parent_rpcs = nil
504
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
506
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
505
507
  Rpcs.new parent_rpcs
506
508
  end
507
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
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: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
214
+ retry_codes: [14, 4]
215
215
  }
216
216
 
217
217
  default_config.rpcs.import_product_sets.timeout = 600.0
@@ -1832,7 +1832,7 @@ module Google
1832
1832
 
1833
1833
  config_attr :endpoint, "vision.googleapis.com", ::String
1834
1834
  config_attr :credentials, nil do |value|
1835
- allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1835
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1836
1836
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1837
1837
  allowed.any? { |klass| klass === value }
1838
1838
  end
@@ -1860,7 +1860,7 @@ module Google
1860
1860
  def rpcs
1861
1861
  @rpcs ||= begin
1862
1862
  parent_rpcs = nil
1863
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
1863
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
1864
1864
  Rpcs.new parent_rpcs
1865
1865
  end
1866
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,
@@ -473,7 +475,7 @@ module Google
473
475
 
474
476
  config_attr :endpoint, "vision.googleapis.com", ::String
475
477
  config_attr :credentials, nil do |value|
476
- allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
478
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
477
479
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
478
480
  allowed.any? { |klass| klass === value }
479
481
  end
@@ -501,7 +503,7 @@ module Google
501
503
  def rpcs
502
504
  @rpcs ||= begin
503
505
  parent_rpcs = nil
504
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
506
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
505
507
  Rpcs.new parent_rpcs
506
508
  end
507
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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Vision
23
23
  module V1p3beta1
24
- VERSION = "0.2.0"
24
+ VERSION = "0.2.5"
25
25
  end
26
26
  end
27
27
  end
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.2.0
4
+ version: 0.2.5
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-05-20 00:00:00.000000000 Z
11
+ date: 2020-08-10 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.2'
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.2'
26
+ version: '0.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: google-cloud-errors
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -163,7 +163,6 @@ files:
163
163
  - LICENSE.md
164
164
  - README.md
165
165
  - lib/google-cloud-vision-v1p3beta1.rb
166
- - lib/google/cloud/common_resources_pb.rb
167
166
  - lib/google/cloud/vision/v1p3beta1.rb
168
167
  - lib/google/cloud/vision/v1p3beta1/geometry_pb.rb
169
168
  - lib/google/cloud/vision/v1p3beta1/image_annotator.rb
@@ -222,7 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
222
221
  - !ruby/object:Gem::Version
223
222
  version: '0'
224
223
  requirements: []
225
- rubygems_version: 3.0.6
224
+ rubygems_version: 3.1.3
226
225
  signing_key:
227
226
  specification_version: 4
228
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