google-cloud-language-v1beta2 0.6.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/cloud/language/v1beta2/language_service.proto
3
4
 
@@ -7,377 +8,31 @@ require 'google/api/annotations_pb'
7
8
  require 'google/api/client_pb'
8
9
  require 'google/api/field_behavior_pb'
9
10
 
10
- Google::Protobuf::DescriptorPool.generated_pool.build do
11
- add_file("google/cloud/language/v1beta2/language_service.proto", :syntax => :proto3) do
12
- add_message "google.cloud.language.v1beta2.Document" do
13
- optional :type, :enum, 1, "google.cloud.language.v1beta2.Document.Type"
14
- optional :language, :string, 4
15
- optional :reference_web_uri, :string, 5
16
- optional :boilerplate_handling, :enum, 6, "google.cloud.language.v1beta2.Document.BoilerplateHandling"
17
- oneof :source do
18
- optional :content, :string, 2
19
- optional :gcs_content_uri, :string, 3
20
- end
21
- end
22
- add_enum "google.cloud.language.v1beta2.Document.Type" do
23
- value :TYPE_UNSPECIFIED, 0
24
- value :PLAIN_TEXT, 1
25
- value :HTML, 2
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
32
- add_message "google.cloud.language.v1beta2.Sentence" do
33
- optional :text, :message, 1, "google.cloud.language.v1beta2.TextSpan"
34
- optional :sentiment, :message, 2, "google.cloud.language.v1beta2.Sentiment"
35
- end
36
- add_message "google.cloud.language.v1beta2.Entity" do
37
- optional :name, :string, 1
38
- optional :type, :enum, 2, "google.cloud.language.v1beta2.Entity.Type"
39
- map :metadata, :string, :string, 3
40
- optional :salience, :float, 4
41
- repeated :mentions, :message, 5, "google.cloud.language.v1beta2.EntityMention"
42
- optional :sentiment, :message, 6, "google.cloud.language.v1beta2.Sentiment"
43
- end
44
- add_enum "google.cloud.language.v1beta2.Entity.Type" do
45
- value :UNKNOWN, 0
46
- value :PERSON, 1
47
- value :LOCATION, 2
48
- value :ORGANIZATION, 3
49
- value :EVENT, 4
50
- value :WORK_OF_ART, 5
51
- value :CONSUMER_GOOD, 6
52
- value :OTHER, 7
53
- value :PHONE_NUMBER, 9
54
- value :ADDRESS, 10
55
- value :DATE, 11
56
- value :NUMBER, 12
57
- value :PRICE, 13
58
- end
59
- add_message "google.cloud.language.v1beta2.Token" do
60
- optional :text, :message, 1, "google.cloud.language.v1beta2.TextSpan"
61
- optional :part_of_speech, :message, 2, "google.cloud.language.v1beta2.PartOfSpeech"
62
- optional :dependency_edge, :message, 3, "google.cloud.language.v1beta2.DependencyEdge"
63
- optional :lemma, :string, 4
64
- end
65
- add_message "google.cloud.language.v1beta2.Sentiment" do
66
- optional :magnitude, :float, 2
67
- optional :score, :float, 3
68
- end
69
- add_message "google.cloud.language.v1beta2.PartOfSpeech" do
70
- optional :tag, :enum, 1, "google.cloud.language.v1beta2.PartOfSpeech.Tag"
71
- optional :aspect, :enum, 2, "google.cloud.language.v1beta2.PartOfSpeech.Aspect"
72
- optional :case, :enum, 3, "google.cloud.language.v1beta2.PartOfSpeech.Case"
73
- optional :form, :enum, 4, "google.cloud.language.v1beta2.PartOfSpeech.Form"
74
- optional :gender, :enum, 5, "google.cloud.language.v1beta2.PartOfSpeech.Gender"
75
- optional :mood, :enum, 6, "google.cloud.language.v1beta2.PartOfSpeech.Mood"
76
- optional :number, :enum, 7, "google.cloud.language.v1beta2.PartOfSpeech.Number"
77
- optional :person, :enum, 8, "google.cloud.language.v1beta2.PartOfSpeech.Person"
78
- optional :proper, :enum, 9, "google.cloud.language.v1beta2.PartOfSpeech.Proper"
79
- optional :reciprocity, :enum, 10, "google.cloud.language.v1beta2.PartOfSpeech.Reciprocity"
80
- optional :tense, :enum, 11, "google.cloud.language.v1beta2.PartOfSpeech.Tense"
81
- optional :voice, :enum, 12, "google.cloud.language.v1beta2.PartOfSpeech.Voice"
82
- end
83
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Tag" do
84
- value :UNKNOWN, 0
85
- value :ADJ, 1
86
- value :ADP, 2
87
- value :ADV, 3
88
- value :CONJ, 4
89
- value :DET, 5
90
- value :NOUN, 6
91
- value :NUM, 7
92
- value :PRON, 8
93
- value :PRT, 9
94
- value :PUNCT, 10
95
- value :VERB, 11
96
- value :X, 12
97
- value :AFFIX, 13
98
- end
99
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Aspect" do
100
- value :ASPECT_UNKNOWN, 0
101
- value :PERFECTIVE, 1
102
- value :IMPERFECTIVE, 2
103
- value :PROGRESSIVE, 3
104
- end
105
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Case" do
106
- value :CASE_UNKNOWN, 0
107
- value :ACCUSATIVE, 1
108
- value :ADVERBIAL, 2
109
- value :COMPLEMENTIVE, 3
110
- value :DATIVE, 4
111
- value :GENITIVE, 5
112
- value :INSTRUMENTAL, 6
113
- value :LOCATIVE, 7
114
- value :NOMINATIVE, 8
115
- value :OBLIQUE, 9
116
- value :PARTITIVE, 10
117
- value :PREPOSITIONAL, 11
118
- value :REFLEXIVE_CASE, 12
119
- value :RELATIVE_CASE, 13
120
- value :VOCATIVE, 14
121
- end
122
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Form" do
123
- value :FORM_UNKNOWN, 0
124
- value :ADNOMIAL, 1
125
- value :AUXILIARY, 2
126
- value :COMPLEMENTIZER, 3
127
- value :FINAL_ENDING, 4
128
- value :GERUND, 5
129
- value :REALIS, 6
130
- value :IRREALIS, 7
131
- value :SHORT, 8
132
- value :LONG, 9
133
- value :ORDER, 10
134
- value :SPECIFIC, 11
135
- end
136
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Gender" do
137
- value :GENDER_UNKNOWN, 0
138
- value :FEMININE, 1
139
- value :MASCULINE, 2
140
- value :NEUTER, 3
141
- end
142
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Mood" do
143
- value :MOOD_UNKNOWN, 0
144
- value :CONDITIONAL_MOOD, 1
145
- value :IMPERATIVE, 2
146
- value :INDICATIVE, 3
147
- value :INTERROGATIVE, 4
148
- value :JUSSIVE, 5
149
- value :SUBJUNCTIVE, 6
150
- end
151
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Number" do
152
- value :NUMBER_UNKNOWN, 0
153
- value :SINGULAR, 1
154
- value :PLURAL, 2
155
- value :DUAL, 3
156
- end
157
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Person" do
158
- value :PERSON_UNKNOWN, 0
159
- value :FIRST, 1
160
- value :SECOND, 2
161
- value :THIRD, 3
162
- value :REFLEXIVE_PERSON, 4
163
- end
164
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Proper" do
165
- value :PROPER_UNKNOWN, 0
166
- value :PROPER, 1
167
- value :NOT_PROPER, 2
168
- end
169
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Reciprocity" do
170
- value :RECIPROCITY_UNKNOWN, 0
171
- value :RECIPROCAL, 1
172
- value :NON_RECIPROCAL, 2
173
- end
174
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Tense" do
175
- value :TENSE_UNKNOWN, 0
176
- value :CONDITIONAL_TENSE, 1
177
- value :FUTURE, 2
178
- value :PAST, 3
179
- value :PRESENT, 4
180
- value :IMPERFECT, 5
181
- value :PLUPERFECT, 6
182
- end
183
- add_enum "google.cloud.language.v1beta2.PartOfSpeech.Voice" do
184
- value :VOICE_UNKNOWN, 0
185
- value :ACTIVE, 1
186
- value :CAUSATIVE, 2
187
- value :PASSIVE, 3
188
- end
189
- add_message "google.cloud.language.v1beta2.DependencyEdge" do
190
- optional :head_token_index, :int32, 1
191
- optional :label, :enum, 2, "google.cloud.language.v1beta2.DependencyEdge.Label"
192
- end
193
- add_enum "google.cloud.language.v1beta2.DependencyEdge.Label" do
194
- value :UNKNOWN, 0
195
- value :ABBREV, 1
196
- value :ACOMP, 2
197
- value :ADVCL, 3
198
- value :ADVMOD, 4
199
- value :AMOD, 5
200
- value :APPOS, 6
201
- value :ATTR, 7
202
- value :AUX, 8
203
- value :AUXPASS, 9
204
- value :CC, 10
205
- value :CCOMP, 11
206
- value :CONJ, 12
207
- value :CSUBJ, 13
208
- value :CSUBJPASS, 14
209
- value :DEP, 15
210
- value :DET, 16
211
- value :DISCOURSE, 17
212
- value :DOBJ, 18
213
- value :EXPL, 19
214
- value :GOESWITH, 20
215
- value :IOBJ, 21
216
- value :MARK, 22
217
- value :MWE, 23
218
- value :MWV, 24
219
- value :NEG, 25
220
- value :NN, 26
221
- value :NPADVMOD, 27
222
- value :NSUBJ, 28
223
- value :NSUBJPASS, 29
224
- value :NUM, 30
225
- value :NUMBER, 31
226
- value :P, 32
227
- value :PARATAXIS, 33
228
- value :PARTMOD, 34
229
- value :PCOMP, 35
230
- value :POBJ, 36
231
- value :POSS, 37
232
- value :POSTNEG, 38
233
- value :PRECOMP, 39
234
- value :PRECONJ, 40
235
- value :PREDET, 41
236
- value :PREF, 42
237
- value :PREP, 43
238
- value :PRONL, 44
239
- value :PRT, 45
240
- value :PS, 46
241
- value :QUANTMOD, 47
242
- value :RCMOD, 48
243
- value :RCMODREL, 49
244
- value :RDROP, 50
245
- value :REF, 51
246
- value :REMNANT, 52
247
- value :REPARANDUM, 53
248
- value :ROOT, 54
249
- value :SNUM, 55
250
- value :SUFF, 56
251
- value :TMOD, 57
252
- value :TOPIC, 58
253
- value :VMOD, 59
254
- value :VOCATIVE, 60
255
- value :XCOMP, 61
256
- value :SUFFIX, 62
257
- value :TITLE, 63
258
- value :ADVPHMOD, 64
259
- value :AUXCAUS, 65
260
- value :AUXVV, 66
261
- value :DTMOD, 67
262
- value :FOREIGN, 68
263
- value :KW, 69
264
- value :LIST, 70
265
- value :NOMC, 71
266
- value :NOMCSUBJ, 72
267
- value :NOMCSUBJPASS, 73
268
- value :NUMC, 74
269
- value :COP, 75
270
- value :DISLOCATED, 76
271
- value :ASP, 77
272
- value :GMOD, 78
273
- value :GOBJ, 79
274
- value :INFMOD, 80
275
- value :MES, 81
276
- value :NCOMP, 82
277
- end
278
- add_message "google.cloud.language.v1beta2.EntityMention" do
279
- optional :text, :message, 1, "google.cloud.language.v1beta2.TextSpan"
280
- optional :type, :enum, 2, "google.cloud.language.v1beta2.EntityMention.Type"
281
- optional :sentiment, :message, 3, "google.cloud.language.v1beta2.Sentiment"
282
- end
283
- add_enum "google.cloud.language.v1beta2.EntityMention.Type" do
284
- value :TYPE_UNKNOWN, 0
285
- value :PROPER, 1
286
- value :COMMON, 2
287
- end
288
- add_message "google.cloud.language.v1beta2.TextSpan" do
289
- optional :content, :string, 1
290
- optional :begin_offset, :int32, 2
291
- end
292
- add_message "google.cloud.language.v1beta2.ClassificationCategory" do
293
- optional :name, :string, 1
294
- optional :confidence, :float, 2
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
312
- add_message "google.cloud.language.v1beta2.AnalyzeSentimentRequest" do
313
- optional :document, :message, 1, "google.cloud.language.v1beta2.Document"
314
- optional :encoding_type, :enum, 2, "google.cloud.language.v1beta2.EncodingType"
315
- end
316
- add_message "google.cloud.language.v1beta2.AnalyzeSentimentResponse" do
317
- optional :document_sentiment, :message, 1, "google.cloud.language.v1beta2.Sentiment"
318
- optional :language, :string, 2
319
- repeated :sentences, :message, 3, "google.cloud.language.v1beta2.Sentence"
320
- end
321
- add_message "google.cloud.language.v1beta2.AnalyzeEntitySentimentRequest" do
322
- optional :document, :message, 1, "google.cloud.language.v1beta2.Document"
323
- optional :encoding_type, :enum, 2, "google.cloud.language.v1beta2.EncodingType"
324
- end
325
- add_message "google.cloud.language.v1beta2.AnalyzeEntitySentimentResponse" do
326
- repeated :entities, :message, 1, "google.cloud.language.v1beta2.Entity"
327
- optional :language, :string, 2
328
- end
329
- add_message "google.cloud.language.v1beta2.AnalyzeEntitiesRequest" do
330
- optional :document, :message, 1, "google.cloud.language.v1beta2.Document"
331
- optional :encoding_type, :enum, 2, "google.cloud.language.v1beta2.EncodingType"
332
- end
333
- add_message "google.cloud.language.v1beta2.AnalyzeEntitiesResponse" do
334
- repeated :entities, :message, 1, "google.cloud.language.v1beta2.Entity"
335
- optional :language, :string, 2
336
- end
337
- add_message "google.cloud.language.v1beta2.AnalyzeSyntaxRequest" do
338
- optional :document, :message, 1, "google.cloud.language.v1beta2.Document"
339
- optional :encoding_type, :enum, 2, "google.cloud.language.v1beta2.EncodingType"
340
- end
341
- add_message "google.cloud.language.v1beta2.AnalyzeSyntaxResponse" do
342
- repeated :sentences, :message, 1, "google.cloud.language.v1beta2.Sentence"
343
- repeated :tokens, :message, 2, "google.cloud.language.v1beta2.Token"
344
- optional :language, :string, 3
345
- end
346
- add_message "google.cloud.language.v1beta2.ClassifyTextRequest" do
347
- optional :document, :message, 1, "google.cloud.language.v1beta2.Document"
348
- optional :classification_model_options, :message, 3, "google.cloud.language.v1beta2.ClassificationModelOptions"
349
- end
350
- add_message "google.cloud.language.v1beta2.ClassifyTextResponse" do
351
- repeated :categories, :message, 1, "google.cloud.language.v1beta2.ClassificationCategory"
352
- end
353
- add_message "google.cloud.language.v1beta2.AnnotateTextRequest" do
354
- optional :document, :message, 1, "google.cloud.language.v1beta2.Document"
355
- optional :features, :message, 2, "google.cloud.language.v1beta2.AnnotateTextRequest.Features"
356
- optional :encoding_type, :enum, 3, "google.cloud.language.v1beta2.EncodingType"
357
- end
358
- add_message "google.cloud.language.v1beta2.AnnotateTextRequest.Features" do
359
- optional :extract_syntax, :bool, 1
360
- optional :extract_entities, :bool, 2
361
- optional :extract_document_sentiment, :bool, 3
362
- optional :extract_entity_sentiment, :bool, 4
363
- optional :classify_text, :bool, 6
364
- optional :classification_model_options, :message, 10, "google.cloud.language.v1beta2.ClassificationModelOptions"
365
- end
366
- add_message "google.cloud.language.v1beta2.AnnotateTextResponse" do
367
- repeated :sentences, :message, 1, "google.cloud.language.v1beta2.Sentence"
368
- repeated :tokens, :message, 2, "google.cloud.language.v1beta2.Token"
369
- repeated :entities, :message, 3, "google.cloud.language.v1beta2.Entity"
370
- optional :document_sentiment, :message, 4, "google.cloud.language.v1beta2.Sentiment"
371
- optional :language, :string, 5
372
- repeated :categories, :message, 6, "google.cloud.language.v1beta2.ClassificationCategory"
373
- end
374
- add_enum "google.cloud.language.v1beta2.EncodingType" do
375
- value :NONE, 0
376
- value :UTF8, 1
377
- value :UTF16, 2
378
- value :UTF32, 3
11
+
12
+ descriptor_data = "\n4google/cloud/language/v1beta2/language_service.proto\x12\x1dgoogle.cloud.language.v1beta2\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\"\xa7\x03\n\x08\x44ocument\x12:\n\x04type\x18\x01 \x01(\x0e\x32,.google.cloud.language.v1beta2.Document.Type\x12\x11\n\x07\x63ontent\x18\x02 \x01(\tH\x00\x12\x19\n\x0fgcs_content_uri\x18\x03 \x01(\tH\x00\x12\x10\n\x08language\x18\x04 \x01(\t\x12\x19\n\x11reference_web_uri\x18\x05 \x01(\t\x12Y\n\x14\x62oilerplate_handling\x18\x06 \x01(\x0e\x32;.google.cloud.language.v1beta2.Document.BoilerplateHandling\"6\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nPLAIN_TEXT\x10\x01\x12\x08\n\x04HTML\x10\x02\"g\n\x13\x42oilerplateHandling\x12$\n BOILERPLATE_HANDLING_UNSPECIFIED\x10\x00\x12\x14\n\x10SKIP_BOILERPLATE\x10\x01\x12\x14\n\x10KEEP_BOILERPLATE\x10\x02\x42\x08\n\x06source\"~\n\x08Sentence\x12\x35\n\x04text\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.TextSpan\x12;\n\tsentiment\x18\x02 \x01(\x0b\x32(.google.cloud.language.v1beta2.Sentiment\"\x93\x04\n\x06\x45ntity\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x38\n\x04type\x18\x02 \x01(\x0e\x32*.google.cloud.language.v1beta2.Entity.Type\x12\x45\n\x08metadata\x18\x03 \x03(\x0b\x32\x33.google.cloud.language.v1beta2.Entity.MetadataEntry\x12\x10\n\x08salience\x18\x04 \x01(\x02\x12>\n\x08mentions\x18\x05 \x03(\x0b\x32,.google.cloud.language.v1beta2.EntityMention\x12;\n\tsentiment\x18\x06 \x01(\x0b\x32(.google.cloud.language.v1beta2.Sentiment\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb9\x01\n\x04Type\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06PERSON\x10\x01\x12\x0c\n\x08LOCATION\x10\x02\x12\x10\n\x0cORGANIZATION\x10\x03\x12\t\n\x05\x45VENT\x10\x04\x12\x0f\n\x0bWORK_OF_ART\x10\x05\x12\x11\n\rCONSUMER_GOOD\x10\x06\x12\t\n\x05OTHER\x10\x07\x12\x10\n\x0cPHONE_NUMBER\x10\t\x12\x0b\n\x07\x41\x44\x44RESS\x10\n\x12\x08\n\x04\x44\x41TE\x10\x0b\x12\n\n\x06NUMBER\x10\x0c\x12\t\n\x05PRICE\x10\r\"\xda\x01\n\x05Token\x12\x35\n\x04text\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.TextSpan\x12\x43\n\x0epart_of_speech\x18\x02 \x01(\x0b\x32+.google.cloud.language.v1beta2.PartOfSpeech\x12\x46\n\x0f\x64\x65pendency_edge\x18\x03 \x01(\x0b\x32-.google.cloud.language.v1beta2.DependencyEdge\x12\r\n\x05lemma\x18\x04 \x01(\t\"-\n\tSentiment\x12\x11\n\tmagnitude\x18\x02 \x01(\x02\x12\r\n\x05score\x18\x03 \x01(\x02\"\xdf\x10\n\x0cPartOfSpeech\x12<\n\x03tag\x18\x01 \x01(\x0e\x32/.google.cloud.language.v1beta2.PartOfSpeech.Tag\x12\x42\n\x06\x61spect\x18\x02 \x01(\x0e\x32\x32.google.cloud.language.v1beta2.PartOfSpeech.Aspect\x12>\n\x04\x63\x61se\x18\x03 \x01(\x0e\x32\x30.google.cloud.language.v1beta2.PartOfSpeech.Case\x12>\n\x04\x66orm\x18\x04 \x01(\x0e\x32\x30.google.cloud.language.v1beta2.PartOfSpeech.Form\x12\x42\n\x06gender\x18\x05 \x01(\x0e\x32\x32.google.cloud.language.v1beta2.PartOfSpeech.Gender\x12>\n\x04mood\x18\x06 \x01(\x0e\x32\x30.google.cloud.language.v1beta2.PartOfSpeech.Mood\x12\x42\n\x06number\x18\x07 \x01(\x0e\x32\x32.google.cloud.language.v1beta2.PartOfSpeech.Number\x12\x42\n\x06person\x18\x08 \x01(\x0e\x32\x32.google.cloud.language.v1beta2.PartOfSpeech.Person\x12\x42\n\x06proper\x18\t \x01(\x0e\x32\x32.google.cloud.language.v1beta2.PartOfSpeech.Proper\x12L\n\x0breciprocity\x18\n \x01(\x0e\x32\x37.google.cloud.language.v1beta2.PartOfSpeech.Reciprocity\x12@\n\x05tense\x18\x0b \x01(\x0e\x32\x31.google.cloud.language.v1beta2.PartOfSpeech.Tense\x12@\n\x05voice\x18\x0c \x01(\x0e\x32\x31.google.cloud.language.v1beta2.PartOfSpeech.Voice\"\x8d\x01\n\x03Tag\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x41\x44J\x10\x01\x12\x07\n\x03\x41\x44P\x10\x02\x12\x07\n\x03\x41\x44V\x10\x03\x12\x08\n\x04\x43ONJ\x10\x04\x12\x07\n\x03\x44\x45T\x10\x05\x12\x08\n\x04NOUN\x10\x06\x12\x07\n\x03NUM\x10\x07\x12\x08\n\x04PRON\x10\x08\x12\x07\n\x03PRT\x10\t\x12\t\n\x05PUNCT\x10\n\x12\x08\n\x04VERB\x10\x0b\x12\x05\n\x01X\x10\x0c\x12\t\n\x05\x41\x46\x46IX\x10\r\"O\n\x06\x41spect\x12\x12\n\x0e\x41SPECT_UNKNOWN\x10\x00\x12\x0e\n\nPERFECTIVE\x10\x01\x12\x10\n\x0cIMPERFECTIVE\x10\x02\x12\x0f\n\x0bPROGRESSIVE\x10\x03\"\xf8\x01\n\x04\x43\x61se\x12\x10\n\x0c\x43\x41SE_UNKNOWN\x10\x00\x12\x0e\n\nACCUSATIVE\x10\x01\x12\r\n\tADVERBIAL\x10\x02\x12\x11\n\rCOMPLEMENTIVE\x10\x03\x12\n\n\x06\x44\x41TIVE\x10\x04\x12\x0c\n\x08GENITIVE\x10\x05\x12\x10\n\x0cINSTRUMENTAL\x10\x06\x12\x0c\n\x08LOCATIVE\x10\x07\x12\x0e\n\nNOMINATIVE\x10\x08\x12\x0b\n\x07OBLIQUE\x10\t\x12\r\n\tPARTITIVE\x10\n\x12\x11\n\rPREPOSITIONAL\x10\x0b\x12\x12\n\x0eREFLEXIVE_CASE\x10\x0c\x12\x11\n\rRELATIVE_CASE\x10\r\x12\x0c\n\x08VOCATIVE\x10\x0e\"\xaf\x01\n\x04\x46orm\x12\x10\n\x0c\x46ORM_UNKNOWN\x10\x00\x12\x0c\n\x08\x41\x44NOMIAL\x10\x01\x12\r\n\tAUXILIARY\x10\x02\x12\x12\n\x0e\x43OMPLEMENTIZER\x10\x03\x12\x10\n\x0c\x46INAL_ENDING\x10\x04\x12\n\n\x06GERUND\x10\x05\x12\n\n\x06REALIS\x10\x06\x12\x0c\n\x08IRREALIS\x10\x07\x12\t\n\x05SHORT\x10\x08\x12\x08\n\x04LONG\x10\t\x12\t\n\x05ORDER\x10\n\x12\x0c\n\x08SPECIFIC\x10\x0b\"E\n\x06Gender\x12\x12\n\x0eGENDER_UNKNOWN\x10\x00\x12\x0c\n\x08\x46\x45MININE\x10\x01\x12\r\n\tMASCULINE\x10\x02\x12\n\n\x06NEUTER\x10\x03\"\x7f\n\x04Mood\x12\x10\n\x0cMOOD_UNKNOWN\x10\x00\x12\x14\n\x10\x43ONDITIONAL_MOOD\x10\x01\x12\x0e\n\nIMPERATIVE\x10\x02\x12\x0e\n\nINDICATIVE\x10\x03\x12\x11\n\rINTERROGATIVE\x10\x04\x12\x0b\n\x07JUSSIVE\x10\x05\x12\x0f\n\x0bSUBJUNCTIVE\x10\x06\"@\n\x06Number\x12\x12\n\x0eNUMBER_UNKNOWN\x10\x00\x12\x0c\n\x08SINGULAR\x10\x01\x12\n\n\x06PLURAL\x10\x02\x12\x08\n\x04\x44UAL\x10\x03\"T\n\x06Person\x12\x12\n\x0ePERSON_UNKNOWN\x10\x00\x12\t\n\x05\x46IRST\x10\x01\x12\n\n\x06SECOND\x10\x02\x12\t\n\x05THIRD\x10\x03\x12\x14\n\x10REFLEXIVE_PERSON\x10\x04\"8\n\x06Proper\x12\x12\n\x0ePROPER_UNKNOWN\x10\x00\x12\n\n\x06PROPER\x10\x01\x12\x0e\n\nNOT_PROPER\x10\x02\"J\n\x0bReciprocity\x12\x17\n\x13RECIPROCITY_UNKNOWN\x10\x00\x12\x0e\n\nRECIPROCAL\x10\x01\x12\x12\n\x0eNON_RECIPROCAL\x10\x02\"s\n\x05Tense\x12\x11\n\rTENSE_UNKNOWN\x10\x00\x12\x15\n\x11\x43ONDITIONAL_TENSE\x10\x01\x12\n\n\x06\x46UTURE\x10\x02\x12\x08\n\x04PAST\x10\x03\x12\x0b\n\x07PRESENT\x10\x04\x12\r\n\tIMPERFECT\x10\x05\x12\x0e\n\nPLUPERFECT\x10\x06\"B\n\x05Voice\x12\x11\n\rVOICE_UNKNOWN\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x12\r\n\tCAUSATIVE\x10\x02\x12\x0b\n\x07PASSIVE\x10\x03\"\x9a\x08\n\x0e\x44\x65pendencyEdge\x12\x18\n\x10head_token_index\x18\x01 \x01(\x05\x12\x42\n\x05label\x18\x02 \x01(\x0e\x32\x33.google.cloud.language.v1beta2.DependencyEdge.Label\"\xa9\x07\n\x05Label\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06\x41\x42\x42REV\x10\x01\x12\t\n\x05\x41\x43OMP\x10\x02\x12\t\n\x05\x41\x44VCL\x10\x03\x12\n\n\x06\x41\x44VMOD\x10\x04\x12\x08\n\x04\x41MOD\x10\x05\x12\t\n\x05\x41PPOS\x10\x06\x12\x08\n\x04\x41TTR\x10\x07\x12\x07\n\x03\x41UX\x10\x08\x12\x0b\n\x07\x41UXPASS\x10\t\x12\x06\n\x02\x43\x43\x10\n\x12\t\n\x05\x43\x43OMP\x10\x0b\x12\x08\n\x04\x43ONJ\x10\x0c\x12\t\n\x05\x43SUBJ\x10\r\x12\r\n\tCSUBJPASS\x10\x0e\x12\x07\n\x03\x44\x45P\x10\x0f\x12\x07\n\x03\x44\x45T\x10\x10\x12\r\n\tDISCOURSE\x10\x11\x12\x08\n\x04\x44OBJ\x10\x12\x12\x08\n\x04\x45XPL\x10\x13\x12\x0c\n\x08GOESWITH\x10\x14\x12\x08\n\x04IOBJ\x10\x15\x12\x08\n\x04MARK\x10\x16\x12\x07\n\x03MWE\x10\x17\x12\x07\n\x03MWV\x10\x18\x12\x07\n\x03NEG\x10\x19\x12\x06\n\x02NN\x10\x1a\x12\x0c\n\x08NPADVMOD\x10\x1b\x12\t\n\x05NSUBJ\x10\x1c\x12\r\n\tNSUBJPASS\x10\x1d\x12\x07\n\x03NUM\x10\x1e\x12\n\n\x06NUMBER\x10\x1f\x12\x05\n\x01P\x10 \x12\r\n\tPARATAXIS\x10!\x12\x0b\n\x07PARTMOD\x10\"\x12\t\n\x05PCOMP\x10#\x12\x08\n\x04POBJ\x10$\x12\x08\n\x04POSS\x10%\x12\x0b\n\x07POSTNEG\x10&\x12\x0b\n\x07PRECOMP\x10\'\x12\x0b\n\x07PRECONJ\x10(\x12\n\n\x06PREDET\x10)\x12\x08\n\x04PREF\x10*\x12\x08\n\x04PREP\x10+\x12\t\n\x05PRONL\x10,\x12\x07\n\x03PRT\x10-\x12\x06\n\x02PS\x10.\x12\x0c\n\x08QUANTMOD\x10/\x12\t\n\x05RCMOD\x10\x30\x12\x0c\n\x08RCMODREL\x10\x31\x12\t\n\x05RDROP\x10\x32\x12\x07\n\x03REF\x10\x33\x12\x0b\n\x07REMNANT\x10\x34\x12\x0e\n\nREPARANDUM\x10\x35\x12\x08\n\x04ROOT\x10\x36\x12\x08\n\x04SNUM\x10\x37\x12\x08\n\x04SUFF\x10\x38\x12\x08\n\x04TMOD\x10\x39\x12\t\n\x05TOPIC\x10:\x12\x08\n\x04VMOD\x10;\x12\x0c\n\x08VOCATIVE\x10<\x12\t\n\x05XCOMP\x10=\x12\n\n\x06SUFFIX\x10>\x12\t\n\x05TITLE\x10?\x12\x0c\n\x08\x41\x44VPHMOD\x10@\x12\x0b\n\x07\x41UXCAUS\x10\x41\x12\t\n\x05\x41UXVV\x10\x42\x12\t\n\x05\x44TMOD\x10\x43\x12\x0b\n\x07\x46OREIGN\x10\x44\x12\x06\n\x02KW\x10\x45\x12\x08\n\x04LIST\x10\x46\x12\x08\n\x04NOMC\x10G\x12\x0c\n\x08NOMCSUBJ\x10H\x12\x10\n\x0cNOMCSUBJPASS\x10I\x12\x08\n\x04NUMC\x10J\x12\x07\n\x03\x43OP\x10K\x12\x0e\n\nDISLOCATED\x10L\x12\x07\n\x03\x41SP\x10M\x12\x08\n\x04GMOD\x10N\x12\x08\n\x04GOBJ\x10O\x12\n\n\x06INFMOD\x10P\x12\x07\n\x03MES\x10Q\x12\t\n\x05NCOMP\x10R\"\xf6\x01\n\rEntityMention\x12\x35\n\x04text\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.TextSpan\x12?\n\x04type\x18\x02 \x01(\x0e\x32\x31.google.cloud.language.v1beta2.EntityMention.Type\x12;\n\tsentiment\x18\x03 \x01(\x0b\x32(.google.cloud.language.v1beta2.Sentiment\"0\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\n\n\x06PROPER\x10\x01\x12\n\n\x06\x43OMMON\x10\x02\"1\n\x08TextSpan\x12\x0f\n\x07\x63ontent\x18\x01 \x01(\t\x12\x14\n\x0c\x62\x65gin_offset\x18\x02 \x01(\x05\":\n\x16\x43lassificationCategory\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\nconfidence\x18\x02 \x01(\x02\"\xc7\x03\n\x1a\x43lassificationModelOptions\x12U\n\x08v1_model\x18\x01 \x01(\x0b\x32\x41.google.cloud.language.v1beta2.ClassificationModelOptions.V1ModelH\x00\x12U\n\x08v2_model\x18\x02 \x01(\x0b\x32\x41.google.cloud.language.v1beta2.ClassificationModelOptions.V2ModelH\x00\x1a\t\n\x07V1Model\x1a\xe1\x01\n\x07V2Model\x12~\n\x1a\x63ontent_categories_version\x18\x01 \x01(\x0e\x32Z.google.cloud.language.v1beta2.ClassificationModelOptions.V2Model.ContentCategoriesVersion\"V\n\x18\x43ontentCategoriesVersion\x12*\n&CONTENT_CATEGORIES_VERSION_UNSPECIFIED\x10\x00\x12\x06\n\x02V1\x10\x01\x12\x06\n\x02V2\x10\x02\x42\x0c\n\nmodel_type\"\x9d\x01\n\x17\x41nalyzeSentimentRequest\x12>\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.DocumentB\x03\xe0\x41\x02\x12\x42\n\rencoding_type\x18\x02 \x01(\x0e\x32+.google.cloud.language.v1beta2.EncodingType\"\xae\x01\n\x18\x41nalyzeSentimentResponse\x12\x44\n\x12\x64ocument_sentiment\x18\x01 \x01(\x0b\x32(.google.cloud.language.v1beta2.Sentiment\x12\x10\n\x08language\x18\x02 \x01(\t\x12:\n\tsentences\x18\x03 \x03(\x0b\x32\'.google.cloud.language.v1beta2.Sentence\"\xa3\x01\n\x1d\x41nalyzeEntitySentimentRequest\x12>\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.DocumentB\x03\xe0\x41\x02\x12\x42\n\rencoding_type\x18\x02 \x01(\x0e\x32+.google.cloud.language.v1beta2.EncodingType\"k\n\x1e\x41nalyzeEntitySentimentResponse\x12\x37\n\x08\x65ntities\x18\x01 \x03(\x0b\x32%.google.cloud.language.v1beta2.Entity\x12\x10\n\x08language\x18\x02 \x01(\t\"\x9c\x01\n\x16\x41nalyzeEntitiesRequest\x12>\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.DocumentB\x03\xe0\x41\x02\x12\x42\n\rencoding_type\x18\x02 \x01(\x0e\x32+.google.cloud.language.v1beta2.EncodingType\"d\n\x17\x41nalyzeEntitiesResponse\x12\x37\n\x08\x65ntities\x18\x01 \x03(\x0b\x32%.google.cloud.language.v1beta2.Entity\x12\x10\n\x08language\x18\x02 \x01(\t\"\x9a\x01\n\x14\x41nalyzeSyntaxRequest\x12>\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.DocumentB\x03\xe0\x41\x02\x12\x42\n\rencoding_type\x18\x02 \x01(\x0e\x32+.google.cloud.language.v1beta2.EncodingType\"\x9b\x01\n\x15\x41nalyzeSyntaxResponse\x12:\n\tsentences\x18\x01 \x03(\x0b\x32\'.google.cloud.language.v1beta2.Sentence\x12\x34\n\x06tokens\x18\x02 \x03(\x0b\x32$.google.cloud.language.v1beta2.Token\x12\x10\n\x08language\x18\x03 \x01(\t\"\xb6\x01\n\x13\x43lassifyTextRequest\x12>\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.DocumentB\x03\xe0\x41\x02\x12_\n\x1c\x63lassification_model_options\x18\x03 \x01(\x0b\x32\x39.google.cloud.language.v1beta2.ClassificationModelOptions\"a\n\x14\x43lassifyTextResponse\x12I\n\ncategories\x18\x01 \x03(\x0b\x32\x35.google.cloud.language.v1beta2.ClassificationCategory\"U\n\x13ModerateTextRequest\x12>\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.DocumentB\x03\xe0\x41\x02\"l\n\x14ModerateTextResponse\x12T\n\x15moderation_categories\x18\x01 \x03(\x0b\x32\x35.google.cloud.language.v1beta2.ClassificationCategory\"\x81\x04\n\x13\x41nnotateTextRequest\x12>\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\'.google.cloud.language.v1beta2.DocumentB\x03\xe0\x41\x02\x12R\n\x08\x66\x65\x61tures\x18\x02 \x01(\x0b\x32;.google.cloud.language.v1beta2.AnnotateTextRequest.FeaturesB\x03\xe0\x41\x02\x12\x42\n\rencoding_type\x18\x03 \x01(\x0e\x32+.google.cloud.language.v1beta2.EncodingType\x1a\x91\x02\n\x08\x46\x65\x61tures\x12\x16\n\x0e\x65xtract_syntax\x18\x01 \x01(\x08\x12\x18\n\x10\x65xtract_entities\x18\x02 \x01(\x08\x12\"\n\x1a\x65xtract_document_sentiment\x18\x03 \x01(\x08\x12 \n\x18\x65xtract_entity_sentiment\x18\x04 \x01(\x08\x12\x15\n\rclassify_text\x18\x06 \x01(\x08\x12\x15\n\rmoderate_text\x18\x0b \x01(\x08\x12_\n\x1c\x63lassification_model_options\x18\n \x01(\x0b\x32\x39.google.cloud.language.v1beta2.ClassificationModelOptions\"\xba\x03\n\x14\x41nnotateTextResponse\x12:\n\tsentences\x18\x01 \x03(\x0b\x32\'.google.cloud.language.v1beta2.Sentence\x12\x34\n\x06tokens\x18\x02 \x03(\x0b\x32$.google.cloud.language.v1beta2.Token\x12\x37\n\x08\x65ntities\x18\x03 \x03(\x0b\x32%.google.cloud.language.v1beta2.Entity\x12\x44\n\x12\x64ocument_sentiment\x18\x04 \x01(\x0b\x32(.google.cloud.language.v1beta2.Sentiment\x12\x10\n\x08language\x18\x05 \x01(\t\x12I\n\ncategories\x18\x06 \x03(\x0b\x32\x35.google.cloud.language.v1beta2.ClassificationCategory\x12T\n\x15moderation_categories\x18\x08 \x03(\x0b\x32\x35.google.cloud.language.v1beta2.ClassificationCategory*8\n\x0c\x45ncodingType\x12\x08\n\x04NONE\x10\x00\x12\x08\n\x04UTF8\x10\x01\x12\t\n\x05UTF16\x10\x02\x12\t\n\x05UTF32\x10\x03\x32\xbb\x0c\n\x0fLanguageService\x12\xd7\x01\n\x10\x41nalyzeSentiment\x12\x36.google.cloud.language.v1beta2.AnalyzeSentimentRequest\x1a\x37.google.cloud.language.v1beta2.AnalyzeSentimentResponse\"R\x82\xd3\xe4\x93\x02(\"#/v1beta2/documents:analyzeSentiment:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xd3\x01\n\x0f\x41nalyzeEntities\x12\x35.google.cloud.language.v1beta2.AnalyzeEntitiesRequest\x1a\x36.google.cloud.language.v1beta2.AnalyzeEntitiesResponse\"Q\x82\xd3\xe4\x93\x02\'\"\"/v1beta2/documents:analyzeEntities:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xef\x01\n\x16\x41nalyzeEntitySentiment\x12<.google.cloud.language.v1beta2.AnalyzeEntitySentimentRequest\x1a=.google.cloud.language.v1beta2.AnalyzeEntitySentimentResponse\"X\x82\xd3\xe4\x93\x02.\")/v1beta2/documents:analyzeEntitySentiment:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xcb\x01\n\rAnalyzeSyntax\x12\x33.google.cloud.language.v1beta2.AnalyzeSyntaxRequest\x1a\x34.google.cloud.language.v1beta2.AnalyzeSyntaxResponse\"O\x82\xd3\xe4\x93\x02%\" /v1beta2/documents:analyzeSyntax:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xae\x01\n\x0c\x43lassifyText\x12\x32.google.cloud.language.v1beta2.ClassifyTextRequest\x1a\x33.google.cloud.language.v1beta2.ClassifyTextResponse\"5\x82\xd3\xe4\x93\x02$\"\x1f/v1beta2/documents:classifyText:\x01*\xda\x41\x08\x64ocument\x12\xae\x01\n\x0cModerateText\x12\x32.google.cloud.language.v1beta2.ModerateTextRequest\x1a\x33.google.cloud.language.v1beta2.ModerateTextResponse\"5\x82\xd3\xe4\x93\x02$\"\x1f/v1beta2/documents:moderateText:\x01*\xda\x41\x08\x64ocument\x12\xd9\x01\n\x0c\x41nnotateText\x12\x32.google.cloud.language.v1beta2.AnnotateTextRequest\x1a\x33.google.cloud.language.v1beta2.AnnotateTextResponse\"`\x82\xd3\xe4\x93\x02$\"\x1f/v1beta2/documents:annotateText:\x01*\xda\x41\x1f\x64ocument,features,encoding_type\xda\x41\x11\x64ocument,features\x1az\xca\x41\x17language.googleapis.com\xd2\x41]https://www.googleapis.com/auth/cloud-language,https://www.googleapis.com/auth/cloud-platformBz\n!com.google.cloud.language.v1beta2B\x14LanguageServiceProtoP\x01Z=cloud.google.com/go/language/apiv1beta2/languagepb;languagepbb\x06proto3"
13
+
14
+ pool = Google::Protobuf::DescriptorPool.generated_pool
15
+
16
+ begin
17
+ pool.add_serialized_file(descriptor_data)
18
+ rescue TypeError => e
19
+ # Compatibility code: will be removed in the next major version.
20
+ require 'google/protobuf/descriptor_pb'
21
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
22
+ parsed.clear_dependency
23
+ serialized = parsed.class.encode(parsed)
24
+ file = pool.add_serialized_file(serialized)
25
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
26
+ imports = [
27
+ ]
28
+ imports.each do |type_name, expected_filename|
29
+ import_file = pool.lookup(type_name).file_descriptor
30
+ if import_file.name != expected_filename
31
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
379
32
  end
380
33
  end
34
+ warn "Each proto file must use a consistent fully-qualified name."
35
+ warn "This will become an error in the next major version."
381
36
  end
382
37
 
383
38
  module Google
@@ -425,6 +80,8 @@ module Google
425
80
  AnalyzeSyntaxResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.AnalyzeSyntaxResponse").msgclass
426
81
  ClassifyTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ClassifyTextRequest").msgclass
427
82
  ClassifyTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ClassifyTextResponse").msgclass
83
+ ModerateTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ModerateTextRequest").msgclass
84
+ ModerateTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.ModerateTextResponse").msgclass
428
85
  AnnotateTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.AnnotateTextRequest").msgclass
429
86
  AnnotateTextRequest::Features = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.AnnotateTextRequest.Features").msgclass
430
87
  AnnotateTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1beta2.AnnotateTextResponse").msgclass
@@ -40,8 +40,10 @@ module Google
40
40
  # along with entity types, salience, mentions for each entity, and
41
41
  # other properties.
42
42
  rpc :AnalyzeEntities, ::Google::Cloud::Language::V1beta2::AnalyzeEntitiesRequest, ::Google::Cloud::Language::V1beta2::AnalyzeEntitiesResponse
43
- # Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1beta2.LanguageService.AnalyzeEntities] in the text and analyzes
44
- # sentiment associated with each entity and its mentions.
43
+ # Finds entities, similar to
44
+ # [AnalyzeEntities][google.cloud.language.v1beta2.LanguageService.AnalyzeEntities]
45
+ # in the text and analyzes sentiment associated with each entity and its
46
+ # mentions.
45
47
  rpc :AnalyzeEntitySentiment, ::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentRequest, ::Google::Cloud::Language::V1beta2::AnalyzeEntitySentimentResponse
46
48
  # Analyzes the syntax of the text and provides sentence boundaries and
47
49
  # tokenization along with part of speech tags, dependency trees, and other
@@ -49,6 +51,8 @@ module Google
49
51
  rpc :AnalyzeSyntax, ::Google::Cloud::Language::V1beta2::AnalyzeSyntaxRequest, ::Google::Cloud::Language::V1beta2::AnalyzeSyntaxResponse
50
52
  # Classifies a document into categories.
51
53
  rpc :ClassifyText, ::Google::Cloud::Language::V1beta2::ClassifyTextRequest, ::Google::Cloud::Language::V1beta2::ClassifyTextResponse
54
+ # Moderates a document for harmful and sensitive categories.
55
+ rpc :ModerateText, ::Google::Cloud::Language::V1beta2::ModerateTextRequest, ::Google::Cloud::Language::V1beta2::ModerateTextResponse
52
56
  # A convenience method that provides all syntax, sentiment, entity, and
53
57
  # classification features in one call.
54
58
  rpc :AnnotateText, ::Google::Cloud::Language::V1beta2::AnnotateTextRequest, ::Google::Cloud::Language::V1beta2::AnnotateTextResponse
@@ -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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Language
23
23
  module V1beta2
24
- VERSION = "0.6.0"
24
+ VERSION = "0.8.0"
25
25
  end
26
26
  end
27
27
  end
@@ -23,13 +23,18 @@ module Google
23
23
  module Cloud
24
24
  module Language
25
25
  ##
26
- # To load this package, including all its services, and instantiate a client:
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