google-cloud-language-v1beta2 0.5.0 → 0.7.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 +1 -1
- data/lib/google/cloud/language/v1beta2/language_service/client.rb +5 -2
- data/lib/google/cloud/language/v1beta2/language_service/rest/client.rb +740 -0
- data/lib/google/cloud/language/v1beta2/language_service/rest/service_stub.rb +396 -0
- data/lib/google/cloud/language/v1beta2/language_service/rest.rb +52 -0
- data/lib/google/cloud/language/v1beta2/language_service.rb +7 -1
- data/lib/google/cloud/language/v1beta2/language_service_pb.rb +30 -1
- data/lib/google/cloud/language/v1beta2/language_service_services_pb.rb +2 -3
- data/lib/google/cloud/language/v1beta2/rest.rb +37 -0
- data/lib/google/cloud/language/v1beta2/version.rb +1 -1
- data/lib/google/cloud/language/v1beta2.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/cloud/language/v1beta2/language_service.rb +74 -1
- data/proto_docs/google/protobuf/duration.rb +98 -0
- metadata +14 -8
- data/proto_docs/google/protobuf/timestamp.rb +0 -129
@@ -0,0 +1,396 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/language/v1beta2/language_service_pb"
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Cloud
|
23
|
+
module Language
|
24
|
+
module V1beta2
|
25
|
+
module LanguageService
|
26
|
+
module Rest
|
27
|
+
##
|
28
|
+
# REST service stub for the LanguageService service.
|
29
|
+
# Service stub contains baseline method implementations
|
30
|
+
# including transcoding, making the REST call, and deserialing the response.
|
31
|
+
#
|
32
|
+
class ServiceStub
|
33
|
+
def initialize endpoint:, credentials:
|
34
|
+
# These require statements are intentionally placed here to initialize
|
35
|
+
# the REST modules only when it's required.
|
36
|
+
require "gapic/rest"
|
37
|
+
|
38
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials,
|
39
|
+
numeric_enums: true,
|
40
|
+
raise_faraday_errors: false
|
41
|
+
end
|
42
|
+
|
43
|
+
##
|
44
|
+
# Baseline implementation for the analyze_sentiment REST call
|
45
|
+
#
|
46
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnalyzeSentimentRequest]
|
47
|
+
# A request object representing the call parameters. Required.
|
48
|
+
# @param options [::Gapic::CallOptions]
|
49
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
50
|
+
#
|
51
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
52
|
+
# @yieldparam result [::Google::Cloud::Language::V1beta2::AnalyzeSentimentResponse]
|
53
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
54
|
+
#
|
55
|
+
# @return [::Google::Cloud::Language::V1beta2::AnalyzeSentimentResponse]
|
56
|
+
# A result object deserialized from the server's reply
|
57
|
+
def analyze_sentiment request_pb, options = nil
|
58
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
59
|
+
|
60
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_analyze_sentiment_request request_pb
|
61
|
+
query_string_params = if query_string_params.any?
|
62
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
63
|
+
else
|
64
|
+
{}
|
65
|
+
end
|
66
|
+
|
67
|
+
response = @client_stub.make_http_request(
|
68
|
+
verb,
|
69
|
+
uri: uri,
|
70
|
+
body: body || "",
|
71
|
+
params: query_string_params,
|
72
|
+
options: options
|
73
|
+
)
|
74
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
75
|
+
result = ::Google::Cloud::Language::V1beta2::AnalyzeSentimentResponse.decode_json response.body, ignore_unknown_fields: true
|
76
|
+
|
77
|
+
yield result, operation if block_given?
|
78
|
+
result
|
79
|
+
end
|
80
|
+
|
81
|
+
##
|
82
|
+
# Baseline implementation for the analyze_entities REST call
|
83
|
+
#
|
84
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnalyzeEntitiesRequest]
|
85
|
+
# A request object representing the call parameters. Required.
|
86
|
+
# @param options [::Gapic::CallOptions]
|
87
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
88
|
+
#
|
89
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
90
|
+
# @yieldparam result [::Google::Cloud::Language::V1beta2::AnalyzeEntitiesResponse]
|
91
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
92
|
+
#
|
93
|
+
# @return [::Google::Cloud::Language::V1beta2::AnalyzeEntitiesResponse]
|
94
|
+
# A result object deserialized from the server's reply
|
95
|
+
def analyze_entities request_pb, options = nil
|
96
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
97
|
+
|
98
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_analyze_entities_request request_pb
|
99
|
+
query_string_params = if query_string_params.any?
|
100
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
101
|
+
else
|
102
|
+
{}
|
103
|
+
end
|
104
|
+
|
105
|
+
response = @client_stub.make_http_request(
|
106
|
+
verb,
|
107
|
+
uri: uri,
|
108
|
+
body: body || "",
|
109
|
+
params: query_string_params,
|
110
|
+
options: options
|
111
|
+
)
|
112
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
113
|
+
result = ::Google::Cloud::Language::V1beta2::AnalyzeEntitiesResponse.decode_json response.body, ignore_unknown_fields: true
|
114
|
+
|
115
|
+
yield result, operation if block_given?
|
116
|
+
result
|
117
|
+
end
|
118
|
+
|
119
|
+
##
|
120
|
+
# Baseline implementation for the analyze_entity_sentiment REST call
|
121
|
+
#
|
122
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentRequest]
|
123
|
+
# A request object representing the call parameters. Required.
|
124
|
+
# @param options [::Gapic::CallOptions]
|
125
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
126
|
+
#
|
127
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
128
|
+
# @yieldparam result [::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentResponse]
|
129
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
130
|
+
#
|
131
|
+
# @return [::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentResponse]
|
132
|
+
# A result object deserialized from the server's reply
|
133
|
+
def analyze_entity_sentiment request_pb, options = nil
|
134
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
135
|
+
|
136
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_analyze_entity_sentiment_request request_pb
|
137
|
+
query_string_params = if query_string_params.any?
|
138
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
139
|
+
else
|
140
|
+
{}
|
141
|
+
end
|
142
|
+
|
143
|
+
response = @client_stub.make_http_request(
|
144
|
+
verb,
|
145
|
+
uri: uri,
|
146
|
+
body: body || "",
|
147
|
+
params: query_string_params,
|
148
|
+
options: options
|
149
|
+
)
|
150
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
151
|
+
result = ::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentResponse.decode_json response.body, ignore_unknown_fields: true
|
152
|
+
|
153
|
+
yield result, operation if block_given?
|
154
|
+
result
|
155
|
+
end
|
156
|
+
|
157
|
+
##
|
158
|
+
# Baseline implementation for the analyze_syntax REST call
|
159
|
+
#
|
160
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnalyzeSyntaxRequest]
|
161
|
+
# A request object representing the call parameters. Required.
|
162
|
+
# @param options [::Gapic::CallOptions]
|
163
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
164
|
+
#
|
165
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
166
|
+
# @yieldparam result [::Google::Cloud::Language::V1beta2::AnalyzeSyntaxResponse]
|
167
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
168
|
+
#
|
169
|
+
# @return [::Google::Cloud::Language::V1beta2::AnalyzeSyntaxResponse]
|
170
|
+
# A result object deserialized from the server's reply
|
171
|
+
def analyze_syntax request_pb, options = nil
|
172
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
173
|
+
|
174
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_analyze_syntax_request request_pb
|
175
|
+
query_string_params = if query_string_params.any?
|
176
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
177
|
+
else
|
178
|
+
{}
|
179
|
+
end
|
180
|
+
|
181
|
+
response = @client_stub.make_http_request(
|
182
|
+
verb,
|
183
|
+
uri: uri,
|
184
|
+
body: body || "",
|
185
|
+
params: query_string_params,
|
186
|
+
options: options
|
187
|
+
)
|
188
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
189
|
+
result = ::Google::Cloud::Language::V1beta2::AnalyzeSyntaxResponse.decode_json response.body, ignore_unknown_fields: true
|
190
|
+
|
191
|
+
yield result, operation if block_given?
|
192
|
+
result
|
193
|
+
end
|
194
|
+
|
195
|
+
##
|
196
|
+
# Baseline implementation for the classify_text REST call
|
197
|
+
#
|
198
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::ClassifyTextRequest]
|
199
|
+
# A request object representing the call parameters. Required.
|
200
|
+
# @param options [::Gapic::CallOptions]
|
201
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
202
|
+
#
|
203
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
204
|
+
# @yieldparam result [::Google::Cloud::Language::V1beta2::ClassifyTextResponse]
|
205
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
206
|
+
#
|
207
|
+
# @return [::Google::Cloud::Language::V1beta2::ClassifyTextResponse]
|
208
|
+
# A result object deserialized from the server's reply
|
209
|
+
def classify_text request_pb, options = nil
|
210
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
211
|
+
|
212
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_classify_text_request request_pb
|
213
|
+
query_string_params = if query_string_params.any?
|
214
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
215
|
+
else
|
216
|
+
{}
|
217
|
+
end
|
218
|
+
|
219
|
+
response = @client_stub.make_http_request(
|
220
|
+
verb,
|
221
|
+
uri: uri,
|
222
|
+
body: body || "",
|
223
|
+
params: query_string_params,
|
224
|
+
options: options
|
225
|
+
)
|
226
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
227
|
+
result = ::Google::Cloud::Language::V1beta2::ClassifyTextResponse.decode_json response.body, ignore_unknown_fields: true
|
228
|
+
|
229
|
+
yield result, operation if block_given?
|
230
|
+
result
|
231
|
+
end
|
232
|
+
|
233
|
+
##
|
234
|
+
# Baseline implementation for the annotate_text REST call
|
235
|
+
#
|
236
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnnotateTextRequest]
|
237
|
+
# A request object representing the call parameters. Required.
|
238
|
+
# @param options [::Gapic::CallOptions]
|
239
|
+
# Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
|
240
|
+
#
|
241
|
+
# @yield [result, operation] Access the result along with the TransportOperation object
|
242
|
+
# @yieldparam result [::Google::Cloud::Language::V1beta2::AnnotateTextResponse]
|
243
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
244
|
+
#
|
245
|
+
# @return [::Google::Cloud::Language::V1beta2::AnnotateTextResponse]
|
246
|
+
# A result object deserialized from the server's reply
|
247
|
+
def annotate_text request_pb, options = nil
|
248
|
+
raise ::ArgumentError, "request must be provided" if request_pb.nil?
|
249
|
+
|
250
|
+
verb, uri, query_string_params, body = ServiceStub.transcode_annotate_text_request request_pb
|
251
|
+
query_string_params = if query_string_params.any?
|
252
|
+
query_string_params.to_h { |p| p.split("=", 2) }
|
253
|
+
else
|
254
|
+
{}
|
255
|
+
end
|
256
|
+
|
257
|
+
response = @client_stub.make_http_request(
|
258
|
+
verb,
|
259
|
+
uri: uri,
|
260
|
+
body: body || "",
|
261
|
+
params: query_string_params,
|
262
|
+
options: options
|
263
|
+
)
|
264
|
+
operation = ::Gapic::Rest::TransportOperation.new response
|
265
|
+
result = ::Google::Cloud::Language::V1beta2::AnnotateTextResponse.decode_json response.body, ignore_unknown_fields: true
|
266
|
+
|
267
|
+
yield result, operation if block_given?
|
268
|
+
result
|
269
|
+
end
|
270
|
+
|
271
|
+
##
|
272
|
+
# @private
|
273
|
+
#
|
274
|
+
# GRPC transcoding helper method for the analyze_sentiment REST call
|
275
|
+
#
|
276
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnalyzeSentimentRequest]
|
277
|
+
# A request object representing the call parameters. Required.
|
278
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
279
|
+
# Uri, Body, Query string parameters
|
280
|
+
def self.transcode_analyze_sentiment_request request_pb
|
281
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
282
|
+
.with_bindings(
|
283
|
+
uri_method: :post,
|
284
|
+
uri_template: "/v1beta2/documents:analyzeSentiment",
|
285
|
+
body: "*",
|
286
|
+
matches: []
|
287
|
+
)
|
288
|
+
transcoder.transcode request_pb
|
289
|
+
end
|
290
|
+
|
291
|
+
##
|
292
|
+
# @private
|
293
|
+
#
|
294
|
+
# GRPC transcoding helper method for the analyze_entities REST call
|
295
|
+
#
|
296
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnalyzeEntitiesRequest]
|
297
|
+
# A request object representing the call parameters. Required.
|
298
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
299
|
+
# Uri, Body, Query string parameters
|
300
|
+
def self.transcode_analyze_entities_request request_pb
|
301
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
302
|
+
.with_bindings(
|
303
|
+
uri_method: :post,
|
304
|
+
uri_template: "/v1beta2/documents:analyzeEntities",
|
305
|
+
body: "*",
|
306
|
+
matches: []
|
307
|
+
)
|
308
|
+
transcoder.transcode request_pb
|
309
|
+
end
|
310
|
+
|
311
|
+
##
|
312
|
+
# @private
|
313
|
+
#
|
314
|
+
# GRPC transcoding helper method for the analyze_entity_sentiment REST call
|
315
|
+
#
|
316
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentRequest]
|
317
|
+
# A request object representing the call parameters. Required.
|
318
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
319
|
+
# Uri, Body, Query string parameters
|
320
|
+
def self.transcode_analyze_entity_sentiment_request request_pb
|
321
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
322
|
+
.with_bindings(
|
323
|
+
uri_method: :post,
|
324
|
+
uri_template: "/v1beta2/documents:analyzeEntitySentiment",
|
325
|
+
body: "*",
|
326
|
+
matches: []
|
327
|
+
)
|
328
|
+
transcoder.transcode request_pb
|
329
|
+
end
|
330
|
+
|
331
|
+
##
|
332
|
+
# @private
|
333
|
+
#
|
334
|
+
# GRPC transcoding helper method for the analyze_syntax REST call
|
335
|
+
#
|
336
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnalyzeSyntaxRequest]
|
337
|
+
# A request object representing the call parameters. Required.
|
338
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
339
|
+
# Uri, Body, Query string parameters
|
340
|
+
def self.transcode_analyze_syntax_request request_pb
|
341
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
342
|
+
.with_bindings(
|
343
|
+
uri_method: :post,
|
344
|
+
uri_template: "/v1beta2/documents:analyzeSyntax",
|
345
|
+
body: "*",
|
346
|
+
matches: []
|
347
|
+
)
|
348
|
+
transcoder.transcode request_pb
|
349
|
+
end
|
350
|
+
|
351
|
+
##
|
352
|
+
# @private
|
353
|
+
#
|
354
|
+
# GRPC transcoding helper method for the classify_text REST call
|
355
|
+
#
|
356
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::ClassifyTextRequest]
|
357
|
+
# A request object representing the call parameters. Required.
|
358
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
359
|
+
# Uri, Body, Query string parameters
|
360
|
+
def self.transcode_classify_text_request request_pb
|
361
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
362
|
+
.with_bindings(
|
363
|
+
uri_method: :post,
|
364
|
+
uri_template: "/v1beta2/documents:classifyText",
|
365
|
+
body: "*",
|
366
|
+
matches: []
|
367
|
+
)
|
368
|
+
transcoder.transcode request_pb
|
369
|
+
end
|
370
|
+
|
371
|
+
##
|
372
|
+
# @private
|
373
|
+
#
|
374
|
+
# GRPC transcoding helper method for the annotate_text REST call
|
375
|
+
#
|
376
|
+
# @param request_pb [::Google::Cloud::Language::V1beta2::AnnotateTextRequest]
|
377
|
+
# A request object representing the call parameters. Required.
|
378
|
+
# @return [Array(String, [String, nil], Hash{String => String})]
|
379
|
+
# Uri, Body, Query string parameters
|
380
|
+
def self.transcode_annotate_text_request request_pb
|
381
|
+
transcoder = Gapic::Rest::GrpcTranscoder.new
|
382
|
+
.with_bindings(
|
383
|
+
uri_method: :post,
|
384
|
+
uri_template: "/v1beta2/documents:annotateText",
|
385
|
+
body: "*",
|
386
|
+
matches: []
|
387
|
+
)
|
388
|
+
transcoder.transcode request_pb
|
389
|
+
end
|
390
|
+
end
|
391
|
+
end
|
392
|
+
end
|
393
|
+
end
|
394
|
+
end
|
395
|
+
end
|
396
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/rest"
|
20
|
+
require "gapic/config"
|
21
|
+
require "gapic/config/method"
|
22
|
+
|
23
|
+
require "google/cloud/language/v1beta2/version"
|
24
|
+
|
25
|
+
require "google/cloud/language/v1beta2/language_service/credentials"
|
26
|
+
require "google/cloud/language/v1beta2/language_service/rest/client"
|
27
|
+
|
28
|
+
module Google
|
29
|
+
module Cloud
|
30
|
+
module Language
|
31
|
+
module V1beta2
|
32
|
+
##
|
33
|
+
# Provides text analysis operations such as sentiment analysis and entity
|
34
|
+
# recognition.
|
35
|
+
#
|
36
|
+
# To load this service and instantiate a REST client:
|
37
|
+
#
|
38
|
+
# require "google/cloud/language/v1beta2/language_service/rest"
|
39
|
+
# client = ::Google::Cloud::Language::V1beta2::LanguageService::Rest::Client.new
|
40
|
+
#
|
41
|
+
module LanguageService
|
42
|
+
# Client for the REST transport
|
43
|
+
module Rest
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
helper_path = ::File.join __dir__, "rest", "helpers.rb"
|
52
|
+
require "google/cloud/language/v1beta2/language_service/rest/helpers" if ::File.file? helper_path
|
@@ -24,6 +24,7 @@ require "google/cloud/language/v1beta2/version"
|
|
24
24
|
|
25
25
|
require "google/cloud/language/v1beta2/language_service/credentials"
|
26
26
|
require "google/cloud/language/v1beta2/language_service/client"
|
27
|
+
require "google/cloud/language/v1beta2/language_service/rest"
|
27
28
|
|
28
29
|
module Google
|
29
30
|
module Cloud
|
@@ -33,11 +34,16 @@ module Google
|
|
33
34
|
# Provides text analysis operations such as sentiment analysis and entity
|
34
35
|
# recognition.
|
35
36
|
#
|
36
|
-
#
|
37
|
+
# @example Load this service and instantiate a gRPC client
|
37
38
|
#
|
38
39
|
# require "google/cloud/language/v1beta2/language_service"
|
39
40
|
# client = ::Google::Cloud::Language::V1beta2::LanguageService::Client.new
|
40
41
|
#
|
42
|
+
# @example Load this service and instantiate a REST client
|
43
|
+
#
|
44
|
+
# require "google/cloud/language/v1beta2/language_service/rest"
|
45
|
+
# client = ::Google::Cloud::Language::V1beta2::LanguageService::Rest::Client.new
|
46
|
+
#
|
41
47
|
module LanguageService
|
42
48
|
end
|
43
49
|
end
|
@@ -6,13 +6,14 @@ require 'google/protobuf'
|
|
6
6
|
require 'google/api/annotations_pb'
|
7
7
|
require 'google/api/client_pb'
|
8
8
|
require 'google/api/field_behavior_pb'
|
9
|
-
require 'google/protobuf/timestamp_pb'
|
10
9
|
|
11
10
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
12
11
|
add_file("google/cloud/language/v1beta2/language_service.proto", :syntax => :proto3) do
|
13
12
|
add_message "google.cloud.language.v1beta2.Document" do
|
14
13
|
optional :type, :enum, 1, "google.cloud.language.v1beta2.Document.Type"
|
15
14
|
optional :language, :string, 4
|
15
|
+
optional :reference_web_uri, :string, 5
|
16
|
+
optional :boilerplate_handling, :enum, 6, "google.cloud.language.v1beta2.Document.BoilerplateHandling"
|
16
17
|
oneof :source do
|
17
18
|
optional :content, :string, 2
|
18
19
|
optional :gcs_content_uri, :string, 3
|
@@ -23,6 +24,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
23
24
|
value :PLAIN_TEXT, 1
|
24
25
|
value :HTML, 2
|
25
26
|
end
|
27
|
+
add_enum "google.cloud.language.v1beta2.Document.BoilerplateHandling" do
|
28
|
+
value :BOILERPLATE_HANDLING_UNSPECIFIED, 0
|
29
|
+
value :SKIP_BOILERPLATE, 1
|
30
|
+
value :KEEP_BOILERPLATE, 2
|
31
|
+
end
|
26
32
|
add_message "google.cloud.language.v1beta2.Sentence" do
|
27
33
|
optional :text, :message, 1, "google.cloud.language.v1beta2.TextSpan"
|
28
34
|
optional :sentiment, :message, 2, "google.cloud.language.v1beta2.Sentiment"
|
@@ -287,6 +293,22 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
287
293
|
optional :name, :string, 1
|
288
294
|
optional :confidence, :float, 2
|
289
295
|
end
|
296
|
+
add_message "google.cloud.language.v1beta2.ClassificationModelOptions" do
|
297
|
+
oneof :model_type do
|
298
|
+
optional :v1_model, :message, 1, "google.cloud.language.v1beta2.ClassificationModelOptions.V1Model"
|
299
|
+
optional :v2_model, :message, 2, "google.cloud.language.v1beta2.ClassificationModelOptions.V2Model"
|
300
|
+
end
|
301
|
+
end
|
302
|
+
add_message "google.cloud.language.v1beta2.ClassificationModelOptions.V1Model" do
|
303
|
+
end
|
304
|
+
add_message "google.cloud.language.v1beta2.ClassificationModelOptions.V2Model" do
|
305
|
+
optional :content_categories_version, :enum, 1, "google.cloud.language.v1beta2.ClassificationModelOptions.V2Model.ContentCategoriesVersion"
|
306
|
+
end
|
307
|
+
add_enum "google.cloud.language.v1beta2.ClassificationModelOptions.V2Model.ContentCategoriesVersion" do
|
308
|
+
value :CONTENT_CATEGORIES_VERSION_UNSPECIFIED, 0
|
309
|
+
value :V1, 1
|
310
|
+
value :V2, 2
|
311
|
+
end
|
290
312
|
add_message "google.cloud.language.v1beta2.AnalyzeSentimentRequest" do
|
291
313
|
optional :document, :message, 1, "google.cloud.language.v1beta2.Document"
|
292
314
|
optional :encoding_type, :enum, 2, "google.cloud.language.v1beta2.EncodingType"
|
@@ -323,6 +345,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
323
345
|
end
|
324
346
|
add_message "google.cloud.language.v1beta2.ClassifyTextRequest" do
|
325
347
|
optional :document, :message, 1, "google.cloud.language.v1beta2.Document"
|
348
|
+
optional :classification_model_options, :message, 3, "google.cloud.language.v1beta2.ClassificationModelOptions"
|
326
349
|
end
|
327
350
|
add_message "google.cloud.language.v1beta2.ClassifyTextResponse" do
|
328
351
|
repeated :categories, :message, 1, "google.cloud.language.v1beta2.ClassificationCategory"
|
@@ -338,6 +361,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
338
361
|
optional :extract_document_sentiment, :bool, 3
|
339
362
|
optional :extract_entity_sentiment, :bool, 4
|
340
363
|
optional :classify_text, :bool, 6
|
364
|
+
optional :classification_model_options, :message, 10, "google.cloud.language.v1beta2.ClassificationModelOptions"
|
341
365
|
end
|
342
366
|
add_message "google.cloud.language.v1beta2.AnnotateTextResponse" do
|
343
367
|
repeated :sentences, :message, 1, "google.cloud.language.v1beta2.Sentence"
|
@@ -362,6 +386,7 @@ module Google
|
|
362
386
|
module V1beta2
|
363
387
|
Document = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.Document").msgclass
|
364
388
|
Document::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.Document.Type").enummodule
|
389
|
+
Document::BoilerplateHandling = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.Document.BoilerplateHandling").enummodule
|
365
390
|
Sentence = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.Sentence").msgclass
|
366
391
|
Entity = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.Entity").msgclass
|
367
392
|
Entity::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.Entity.Type").enummodule
|
@@ -386,6 +411,10 @@ module Google
|
|
386
411
|
EntityMention::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.EntityMention.Type").enummodule
|
387
412
|
TextSpan = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.TextSpan").msgclass
|
388
413
|
ClassificationCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ClassificationCategory").msgclass
|
414
|
+
ClassificationModelOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ClassificationModelOptions").msgclass
|
415
|
+
ClassificationModelOptions::V1Model = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ClassificationModelOptions.V1Model").msgclass
|
416
|
+
ClassificationModelOptions::V2Model = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ClassificationModelOptions.V2Model").msgclass
|
417
|
+
ClassificationModelOptions::V2Model::ContentCategoriesVersion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ClassificationModelOptions.V2Model.ContentCategoriesVersion").enummodule
|
389
418
|
AnalyzeSentimentRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.AnalyzeSentimentRequest").msgclass
|
390
419
|
AnalyzeSentimentResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.AnalyzeSentimentResponse").msgclass
|
391
420
|
AnalyzeEntitySentimentRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.AnalyzeEntitySentimentRequest").msgclass
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# Source: google/cloud/language/v1beta2/language_service.proto for package 'google.cloud.language.v1beta2'
|
3
3
|
# Original file comments:
|
4
|
-
# Copyright
|
4
|
+
# Copyright 2022 Google LLC
|
5
5
|
#
|
6
6
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
7
|
# you may not use this file except in compliance with the License.
|
@@ -15,7 +15,6 @@
|
|
15
15
|
# See the License for the specific language governing permissions and
|
16
16
|
# limitations under the License.
|
17
17
|
#
|
18
|
-
#
|
19
18
|
|
20
19
|
require 'grpc'
|
21
20
|
require 'google/cloud/language/v1beta2/language_service_pb'
|
@@ -45,7 +44,7 @@ module Google
|
|
45
44
|
# sentiment associated with each entity and its mentions.
|
46
45
|
rpc :AnalyzeEntitySentiment, ::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentRequest, ::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentResponse
|
47
46
|
# Analyzes the syntax of the text and provides sentence boundaries and
|
48
|
-
# tokenization along with part
|
47
|
+
# tokenization along with part of speech tags, dependency trees, and other
|
49
48
|
# properties.
|
50
49
|
rpc :AnalyzeSyntax, ::Google::Cloud::Language::V1beta2::AnalyzeSyntaxRequest, ::Google::Cloud::Language::V1beta2::AnalyzeSyntaxResponse
|
51
50
|
# Classifies a document into categories.
|
@@ -0,0 +1,37 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "google/cloud/language/v1beta2/language_service/rest"
|
20
|
+
require "google/cloud/language/v1beta2/version"
|
21
|
+
|
22
|
+
module Google
|
23
|
+
module Cloud
|
24
|
+
module Language
|
25
|
+
##
|
26
|
+
# To load just the REST part of this package, including all its services, and instantiate a REST client:
|
27
|
+
#
|
28
|
+
# @example
|
29
|
+
#
|
30
|
+
# require "google/cloud/language/v1beta2/rest"
|
31
|
+
# client = ::Google::Cloud::Language::V1beta2::LanguageService::Rest::Client.new
|
32
|
+
#
|
33
|
+
module V1beta2
|
34
|
+
end
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
@@ -23,13 +23,18 @@ module Google
|
|
23
23
|
module Cloud
|
24
24
|
module Language
|
25
25
|
##
|
26
|
-
#
|
26
|
+
# API client module.
|
27
27
|
#
|
28
|
-
# @example
|
28
|
+
# @example Load this package, including all its services, and instantiate a gRPC client
|
29
29
|
#
|
30
30
|
# require "google/cloud/language/v1beta2"
|
31
31
|
# client = ::Google::Cloud::Language::V1beta2::LanguageService::Client.new
|
32
32
|
#
|
33
|
+
# @example Load this package, including all its services, and instantiate a REST client
|
34
|
+
#
|
35
|
+
# require "google/cloud/language/v1beta2"
|
36
|
+
# client = ::Google::Cloud::Language::V1beta2::LanguageService::Rest::Client.new
|
37
|
+
#
|
33
38
|
module V1beta2
|
34
39
|
end
|
35
40
|
end
|