google-cloud-language-v1 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/v1/language_service/client.rb +11 -8
- data/lib/google/cloud/language/v1/language_service/rest/client.rb +739 -0
- data/lib/google/cloud/language/v1/language_service/rest/service_stub.rb +396 -0
- data/lib/google/cloud/language/v1/language_service/rest.rb +52 -0
- data/lib/google/cloud/language/v1/language_service.rb +7 -1
- data/lib/google/cloud/language/v1/language_service_pb.rb +22 -0
- data/lib/google/cloud/language/v1/language_service_services_pb.rb +1 -2
- data/lib/google/cloud/language/v1/rest.rb +37 -0
- data/lib/google/cloud/language/v1/version.rb +1 -1
- data/lib/google/cloud/language/v1.rb +7 -2
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/language/v1/language_service.rb +94 -34
- data/proto_docs/google/protobuf/duration.rb +98 -0
- metadata +14 -7
@@ -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/v1/language_service_pb"
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Cloud
|
23
|
+
module Language
|
24
|
+
module V1
|
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::V1::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::V1::AnalyzeSentimentResponse]
|
53
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
54
|
+
#
|
55
|
+
# @return [::Google::Cloud::Language::V1::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::V1::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::V1::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::V1::AnalyzeEntitiesResponse]
|
91
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
92
|
+
#
|
93
|
+
# @return [::Google::Cloud::Language::V1::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::V1::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::V1::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::V1::AnalyzeEntitySentimentResponse]
|
129
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
130
|
+
#
|
131
|
+
# @return [::Google::Cloud::Language::V1::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::V1::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::V1::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::V1::AnalyzeSyntaxResponse]
|
167
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
168
|
+
#
|
169
|
+
# @return [::Google::Cloud::Language::V1::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::V1::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::V1::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::V1::ClassifyTextResponse]
|
205
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
206
|
+
#
|
207
|
+
# @return [::Google::Cloud::Language::V1::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::V1::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::V1::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::V1::AnnotateTextResponse]
|
243
|
+
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
244
|
+
#
|
245
|
+
# @return [::Google::Cloud::Language::V1::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::V1::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::V1::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: "/v1/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::V1::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: "/v1/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::V1::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: "/v1/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::V1::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: "/v1/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::V1::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: "/v1/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::V1::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: "/v1/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/v1/version"
|
24
|
+
|
25
|
+
require "google/cloud/language/v1/language_service/credentials"
|
26
|
+
require "google/cloud/language/v1/language_service/rest/client"
|
27
|
+
|
28
|
+
module Google
|
29
|
+
module Cloud
|
30
|
+
module Language
|
31
|
+
module V1
|
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/v1/language_service/rest"
|
39
|
+
# client = ::Google::Cloud::Language::V1::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/v1/language_service/rest/helpers" if ::File.file? helper_path
|
@@ -24,6 +24,7 @@ require "google/cloud/language/v1/version"
|
|
24
24
|
|
25
25
|
require "google/cloud/language/v1/language_service/credentials"
|
26
26
|
require "google/cloud/language/v1/language_service/client"
|
27
|
+
require "google/cloud/language/v1/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/v1/language_service"
|
39
40
|
# client = ::Google::Cloud::Language::V1::LanguageService::Client.new
|
40
41
|
#
|
42
|
+
# @example Load this service and instantiate a REST client
|
43
|
+
#
|
44
|
+
# require "google/cloud/language/v1/language_service/rest"
|
45
|
+
# client = ::Google::Cloud::Language::V1::LanguageService::Rest::Client.new
|
46
|
+
#
|
41
47
|
module LanguageService
|
42
48
|
end
|
43
49
|
end
|
@@ -286,6 +286,22 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
286
286
|
optional :name, :string, 1
|
287
287
|
optional :confidence, :float, 2
|
288
288
|
end
|
289
|
+
add_message "google.cloud.language.v1.ClassificationModelOptions" do
|
290
|
+
oneof :model_type do
|
291
|
+
optional :v1_model, :message, 1, "google.cloud.language.v1.ClassificationModelOptions.V1Model"
|
292
|
+
optional :v2_model, :message, 2, "google.cloud.language.v1.ClassificationModelOptions.V2Model"
|
293
|
+
end
|
294
|
+
end
|
295
|
+
add_message "google.cloud.language.v1.ClassificationModelOptions.V1Model" do
|
296
|
+
end
|
297
|
+
add_message "google.cloud.language.v1.ClassificationModelOptions.V2Model" do
|
298
|
+
optional :content_categories_version, :enum, 1, "google.cloud.language.v1.ClassificationModelOptions.V2Model.ContentCategoriesVersion"
|
299
|
+
end
|
300
|
+
add_enum "google.cloud.language.v1.ClassificationModelOptions.V2Model.ContentCategoriesVersion" do
|
301
|
+
value :CONTENT_CATEGORIES_VERSION_UNSPECIFIED, 0
|
302
|
+
value :V1, 1
|
303
|
+
value :V2, 2
|
304
|
+
end
|
289
305
|
add_message "google.cloud.language.v1.AnalyzeSentimentRequest" do
|
290
306
|
optional :document, :message, 1, "google.cloud.language.v1.Document"
|
291
307
|
optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
|
@@ -322,6 +338,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
322
338
|
end
|
323
339
|
add_message "google.cloud.language.v1.ClassifyTextRequest" do
|
324
340
|
optional :document, :message, 1, "google.cloud.language.v1.Document"
|
341
|
+
optional :classification_model_options, :message, 3, "google.cloud.language.v1.ClassificationModelOptions"
|
325
342
|
end
|
326
343
|
add_message "google.cloud.language.v1.ClassifyTextResponse" do
|
327
344
|
repeated :categories, :message, 1, "google.cloud.language.v1.ClassificationCategory"
|
@@ -337,6 +354,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
337
354
|
optional :extract_document_sentiment, :bool, 3
|
338
355
|
optional :extract_entity_sentiment, :bool, 4
|
339
356
|
optional :classify_text, :bool, 6
|
357
|
+
optional :classification_model_options, :message, 10, "google.cloud.language.v1.ClassificationModelOptions"
|
340
358
|
end
|
341
359
|
add_message "google.cloud.language.v1.AnnotateTextResponse" do
|
342
360
|
repeated :sentences, :message, 1, "google.cloud.language.v1.Sentence"
|
@@ -385,6 +403,10 @@ module Google
|
|
385
403
|
EntityMention::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.EntityMention.Type").enummodule
|
386
404
|
TextSpan = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.TextSpan").msgclass
|
387
405
|
ClassificationCategory = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassificationCategory").msgclass
|
406
|
+
ClassificationModelOptions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassificationModelOptions").msgclass
|
407
|
+
ClassificationModelOptions::V1Model = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassificationModelOptions.V1Model").msgclass
|
408
|
+
ClassificationModelOptions::V2Model = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassificationModelOptions.V2Model").msgclass
|
409
|
+
ClassificationModelOptions::V2Model::ContentCategoriesVersion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassificationModelOptions.V2Model.ContentCategoriesVersion").enummodule
|
388
410
|
AnalyzeSentimentRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnalyzeSentimentRequest").msgclass
|
389
411
|
AnalyzeSentimentResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnalyzeSentimentResponse").msgclass
|
390
412
|
AnalyzeEntitySentimentRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnalyzeEntitySentimentRequest").msgclass
|
@@ -1,7 +1,7 @@
|
|
1
1
|
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
2
2
|
# Source: google/cloud/language/v1/language_service.proto for package 'google.cloud.language.v1'
|
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/v1/language_service_pb'
|
@@ -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/v1/language_service/rest"
|
20
|
+
require "google/cloud/language/v1/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/v1/rest"
|
31
|
+
# client = ::Google::Cloud::Language::V1::LanguageService::Rest::Client.new
|
32
|
+
#
|
33
|
+
module V1
|
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/v1"
|
31
31
|
# client = ::Google::Cloud::Language::V1::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/v1"
|
36
|
+
# client = ::Google::Cloud::Language::V1::LanguageService::Rest::Client.new
|
37
|
+
#
|
33
38
|
module V1
|
34
39
|
end
|
35
40
|
end
|