google-cloud-language-v1 0.6.0 → 0.8.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.
@@ -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/v1/language_service.proto
3
4
 
@@ -7,370 +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/v1/language_service.proto", :syntax => :proto3) do
12
- add_message "google.cloud.language.v1.Document" do
13
- optional :type, :enum, 1, "google.cloud.language.v1.Document.Type"
14
- optional :language, :string, 4
15
- oneof :source do
16
- optional :content, :string, 2
17
- optional :gcs_content_uri, :string, 3
18
- end
19
- end
20
- add_enum "google.cloud.language.v1.Document.Type" do
21
- value :TYPE_UNSPECIFIED, 0
22
- value :PLAIN_TEXT, 1
23
- value :HTML, 2
24
- end
25
- add_message "google.cloud.language.v1.Sentence" do
26
- optional :text, :message, 1, "google.cloud.language.v1.TextSpan"
27
- optional :sentiment, :message, 2, "google.cloud.language.v1.Sentiment"
28
- end
29
- add_message "google.cloud.language.v1.Entity" do
30
- optional :name, :string, 1
31
- optional :type, :enum, 2, "google.cloud.language.v1.Entity.Type"
32
- map :metadata, :string, :string, 3
33
- optional :salience, :float, 4
34
- repeated :mentions, :message, 5, "google.cloud.language.v1.EntityMention"
35
- optional :sentiment, :message, 6, "google.cloud.language.v1.Sentiment"
36
- end
37
- add_enum "google.cloud.language.v1.Entity.Type" do
38
- value :UNKNOWN, 0
39
- value :PERSON, 1
40
- value :LOCATION, 2
41
- value :ORGANIZATION, 3
42
- value :EVENT, 4
43
- value :WORK_OF_ART, 5
44
- value :CONSUMER_GOOD, 6
45
- value :OTHER, 7
46
- value :PHONE_NUMBER, 9
47
- value :ADDRESS, 10
48
- value :DATE, 11
49
- value :NUMBER, 12
50
- value :PRICE, 13
51
- end
52
- add_message "google.cloud.language.v1.Token" do
53
- optional :text, :message, 1, "google.cloud.language.v1.TextSpan"
54
- optional :part_of_speech, :message, 2, "google.cloud.language.v1.PartOfSpeech"
55
- optional :dependency_edge, :message, 3, "google.cloud.language.v1.DependencyEdge"
56
- optional :lemma, :string, 4
57
- end
58
- add_message "google.cloud.language.v1.Sentiment" do
59
- optional :magnitude, :float, 2
60
- optional :score, :float, 3
61
- end
62
- add_message "google.cloud.language.v1.PartOfSpeech" do
63
- optional :tag, :enum, 1, "google.cloud.language.v1.PartOfSpeech.Tag"
64
- optional :aspect, :enum, 2, "google.cloud.language.v1.PartOfSpeech.Aspect"
65
- optional :case, :enum, 3, "google.cloud.language.v1.PartOfSpeech.Case"
66
- optional :form, :enum, 4, "google.cloud.language.v1.PartOfSpeech.Form"
67
- optional :gender, :enum, 5, "google.cloud.language.v1.PartOfSpeech.Gender"
68
- optional :mood, :enum, 6, "google.cloud.language.v1.PartOfSpeech.Mood"
69
- optional :number, :enum, 7, "google.cloud.language.v1.PartOfSpeech.Number"
70
- optional :person, :enum, 8, "google.cloud.language.v1.PartOfSpeech.Person"
71
- optional :proper, :enum, 9, "google.cloud.language.v1.PartOfSpeech.Proper"
72
- optional :reciprocity, :enum, 10, "google.cloud.language.v1.PartOfSpeech.Reciprocity"
73
- optional :tense, :enum, 11, "google.cloud.language.v1.PartOfSpeech.Tense"
74
- optional :voice, :enum, 12, "google.cloud.language.v1.PartOfSpeech.Voice"
75
- end
76
- add_enum "google.cloud.language.v1.PartOfSpeech.Tag" do
77
- value :UNKNOWN, 0
78
- value :ADJ, 1
79
- value :ADP, 2
80
- value :ADV, 3
81
- value :CONJ, 4
82
- value :DET, 5
83
- value :NOUN, 6
84
- value :NUM, 7
85
- value :PRON, 8
86
- value :PRT, 9
87
- value :PUNCT, 10
88
- value :VERB, 11
89
- value :X, 12
90
- value :AFFIX, 13
91
- end
92
- add_enum "google.cloud.language.v1.PartOfSpeech.Aspect" do
93
- value :ASPECT_UNKNOWN, 0
94
- value :PERFECTIVE, 1
95
- value :IMPERFECTIVE, 2
96
- value :PROGRESSIVE, 3
97
- end
98
- add_enum "google.cloud.language.v1.PartOfSpeech.Case" do
99
- value :CASE_UNKNOWN, 0
100
- value :ACCUSATIVE, 1
101
- value :ADVERBIAL, 2
102
- value :COMPLEMENTIVE, 3
103
- value :DATIVE, 4
104
- value :GENITIVE, 5
105
- value :INSTRUMENTAL, 6
106
- value :LOCATIVE, 7
107
- value :NOMINATIVE, 8
108
- value :OBLIQUE, 9
109
- value :PARTITIVE, 10
110
- value :PREPOSITIONAL, 11
111
- value :REFLEXIVE_CASE, 12
112
- value :RELATIVE_CASE, 13
113
- value :VOCATIVE, 14
114
- end
115
- add_enum "google.cloud.language.v1.PartOfSpeech.Form" do
116
- value :FORM_UNKNOWN, 0
117
- value :ADNOMIAL, 1
118
- value :AUXILIARY, 2
119
- value :COMPLEMENTIZER, 3
120
- value :FINAL_ENDING, 4
121
- value :GERUND, 5
122
- value :REALIS, 6
123
- value :IRREALIS, 7
124
- value :SHORT, 8
125
- value :LONG, 9
126
- value :ORDER, 10
127
- value :SPECIFIC, 11
128
- end
129
- add_enum "google.cloud.language.v1.PartOfSpeech.Gender" do
130
- value :GENDER_UNKNOWN, 0
131
- value :FEMININE, 1
132
- value :MASCULINE, 2
133
- value :NEUTER, 3
134
- end
135
- add_enum "google.cloud.language.v1.PartOfSpeech.Mood" do
136
- value :MOOD_UNKNOWN, 0
137
- value :CONDITIONAL_MOOD, 1
138
- value :IMPERATIVE, 2
139
- value :INDICATIVE, 3
140
- value :INTERROGATIVE, 4
141
- value :JUSSIVE, 5
142
- value :SUBJUNCTIVE, 6
143
- end
144
- add_enum "google.cloud.language.v1.PartOfSpeech.Number" do
145
- value :NUMBER_UNKNOWN, 0
146
- value :SINGULAR, 1
147
- value :PLURAL, 2
148
- value :DUAL, 3
149
- end
150
- add_enum "google.cloud.language.v1.PartOfSpeech.Person" do
151
- value :PERSON_UNKNOWN, 0
152
- value :FIRST, 1
153
- value :SECOND, 2
154
- value :THIRD, 3
155
- value :REFLEXIVE_PERSON, 4
156
- end
157
- add_enum "google.cloud.language.v1.PartOfSpeech.Proper" do
158
- value :PROPER_UNKNOWN, 0
159
- value :PROPER, 1
160
- value :NOT_PROPER, 2
161
- end
162
- add_enum "google.cloud.language.v1.PartOfSpeech.Reciprocity" do
163
- value :RECIPROCITY_UNKNOWN, 0
164
- value :RECIPROCAL, 1
165
- value :NON_RECIPROCAL, 2
166
- end
167
- add_enum "google.cloud.language.v1.PartOfSpeech.Tense" do
168
- value :TENSE_UNKNOWN, 0
169
- value :CONDITIONAL_TENSE, 1
170
- value :FUTURE, 2
171
- value :PAST, 3
172
- value :PRESENT, 4
173
- value :IMPERFECT, 5
174
- value :PLUPERFECT, 6
175
- end
176
- add_enum "google.cloud.language.v1.PartOfSpeech.Voice" do
177
- value :VOICE_UNKNOWN, 0
178
- value :ACTIVE, 1
179
- value :CAUSATIVE, 2
180
- value :PASSIVE, 3
181
- end
182
- add_message "google.cloud.language.v1.DependencyEdge" do
183
- optional :head_token_index, :int32, 1
184
- optional :label, :enum, 2, "google.cloud.language.v1.DependencyEdge.Label"
185
- end
186
- add_enum "google.cloud.language.v1.DependencyEdge.Label" do
187
- value :UNKNOWN, 0
188
- value :ABBREV, 1
189
- value :ACOMP, 2
190
- value :ADVCL, 3
191
- value :ADVMOD, 4
192
- value :AMOD, 5
193
- value :APPOS, 6
194
- value :ATTR, 7
195
- value :AUX, 8
196
- value :AUXPASS, 9
197
- value :CC, 10
198
- value :CCOMP, 11
199
- value :CONJ, 12
200
- value :CSUBJ, 13
201
- value :CSUBJPASS, 14
202
- value :DEP, 15
203
- value :DET, 16
204
- value :DISCOURSE, 17
205
- value :DOBJ, 18
206
- value :EXPL, 19
207
- value :GOESWITH, 20
208
- value :IOBJ, 21
209
- value :MARK, 22
210
- value :MWE, 23
211
- value :MWV, 24
212
- value :NEG, 25
213
- value :NN, 26
214
- value :NPADVMOD, 27
215
- value :NSUBJ, 28
216
- value :NSUBJPASS, 29
217
- value :NUM, 30
218
- value :NUMBER, 31
219
- value :P, 32
220
- value :PARATAXIS, 33
221
- value :PARTMOD, 34
222
- value :PCOMP, 35
223
- value :POBJ, 36
224
- value :POSS, 37
225
- value :POSTNEG, 38
226
- value :PRECOMP, 39
227
- value :PRECONJ, 40
228
- value :PREDET, 41
229
- value :PREF, 42
230
- value :PREP, 43
231
- value :PRONL, 44
232
- value :PRT, 45
233
- value :PS, 46
234
- value :QUANTMOD, 47
235
- value :RCMOD, 48
236
- value :RCMODREL, 49
237
- value :RDROP, 50
238
- value :REF, 51
239
- value :REMNANT, 52
240
- value :REPARANDUM, 53
241
- value :ROOT, 54
242
- value :SNUM, 55
243
- value :SUFF, 56
244
- value :TMOD, 57
245
- value :TOPIC, 58
246
- value :VMOD, 59
247
- value :VOCATIVE, 60
248
- value :XCOMP, 61
249
- value :SUFFIX, 62
250
- value :TITLE, 63
251
- value :ADVPHMOD, 64
252
- value :AUXCAUS, 65
253
- value :AUXVV, 66
254
- value :DTMOD, 67
255
- value :FOREIGN, 68
256
- value :KW, 69
257
- value :LIST, 70
258
- value :NOMC, 71
259
- value :NOMCSUBJ, 72
260
- value :NOMCSUBJPASS, 73
261
- value :NUMC, 74
262
- value :COP, 75
263
- value :DISLOCATED, 76
264
- value :ASP, 77
265
- value :GMOD, 78
266
- value :GOBJ, 79
267
- value :INFMOD, 80
268
- value :MES, 81
269
- value :NCOMP, 82
270
- end
271
- add_message "google.cloud.language.v1.EntityMention" do
272
- optional :text, :message, 1, "google.cloud.language.v1.TextSpan"
273
- optional :type, :enum, 2, "google.cloud.language.v1.EntityMention.Type"
274
- optional :sentiment, :message, 3, "google.cloud.language.v1.Sentiment"
275
- end
276
- add_enum "google.cloud.language.v1.EntityMention.Type" do
277
- value :TYPE_UNKNOWN, 0
278
- value :PROPER, 1
279
- value :COMMON, 2
280
- end
281
- add_message "google.cloud.language.v1.TextSpan" do
282
- optional :content, :string, 1
283
- optional :begin_offset, :int32, 2
284
- end
285
- add_message "google.cloud.language.v1.ClassificationCategory" do
286
- optional :name, :string, 1
287
- optional :confidence, :float, 2
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
305
- add_message "google.cloud.language.v1.AnalyzeSentimentRequest" do
306
- optional :document, :message, 1, "google.cloud.language.v1.Document"
307
- optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
308
- end
309
- add_message "google.cloud.language.v1.AnalyzeSentimentResponse" do
310
- optional :document_sentiment, :message, 1, "google.cloud.language.v1.Sentiment"
311
- optional :language, :string, 2
312
- repeated :sentences, :message, 3, "google.cloud.language.v1.Sentence"
313
- end
314
- add_message "google.cloud.language.v1.AnalyzeEntitySentimentRequest" do
315
- optional :document, :message, 1, "google.cloud.language.v1.Document"
316
- optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
317
- end
318
- add_message "google.cloud.language.v1.AnalyzeEntitySentimentResponse" do
319
- repeated :entities, :message, 1, "google.cloud.language.v1.Entity"
320
- optional :language, :string, 2
321
- end
322
- add_message "google.cloud.language.v1.AnalyzeEntitiesRequest" do
323
- optional :document, :message, 1, "google.cloud.language.v1.Document"
324
- optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
325
- end
326
- add_message "google.cloud.language.v1.AnalyzeEntitiesResponse" do
327
- repeated :entities, :message, 1, "google.cloud.language.v1.Entity"
328
- optional :language, :string, 2
329
- end
330
- add_message "google.cloud.language.v1.AnalyzeSyntaxRequest" do
331
- optional :document, :message, 1, "google.cloud.language.v1.Document"
332
- optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
333
- end
334
- add_message "google.cloud.language.v1.AnalyzeSyntaxResponse" do
335
- repeated :sentences, :message, 1, "google.cloud.language.v1.Sentence"
336
- repeated :tokens, :message, 2, "google.cloud.language.v1.Token"
337
- optional :language, :string, 3
338
- end
339
- add_message "google.cloud.language.v1.ClassifyTextRequest" do
340
- optional :document, :message, 1, "google.cloud.language.v1.Document"
341
- optional :classification_model_options, :message, 3, "google.cloud.language.v1.ClassificationModelOptions"
342
- end
343
- add_message "google.cloud.language.v1.ClassifyTextResponse" do
344
- repeated :categories, :message, 1, "google.cloud.language.v1.ClassificationCategory"
345
- end
346
- add_message "google.cloud.language.v1.AnnotateTextRequest" do
347
- optional :document, :message, 1, "google.cloud.language.v1.Document"
348
- optional :features, :message, 2, "google.cloud.language.v1.AnnotateTextRequest.Features"
349
- optional :encoding_type, :enum, 3, "google.cloud.language.v1.EncodingType"
350
- end
351
- add_message "google.cloud.language.v1.AnnotateTextRequest.Features" do
352
- optional :extract_syntax, :bool, 1
353
- optional :extract_entities, :bool, 2
354
- optional :extract_document_sentiment, :bool, 3
355
- optional :extract_entity_sentiment, :bool, 4
356
- optional :classify_text, :bool, 6
357
- optional :classification_model_options, :message, 10, "google.cloud.language.v1.ClassificationModelOptions"
358
- end
359
- add_message "google.cloud.language.v1.AnnotateTextResponse" do
360
- repeated :sentences, :message, 1, "google.cloud.language.v1.Sentence"
361
- repeated :tokens, :message, 2, "google.cloud.language.v1.Token"
362
- repeated :entities, :message, 3, "google.cloud.language.v1.Entity"
363
- optional :document_sentiment, :message, 4, "google.cloud.language.v1.Sentiment"
364
- optional :language, :string, 5
365
- repeated :categories, :message, 6, "google.cloud.language.v1.ClassificationCategory"
366
- end
367
- add_enum "google.cloud.language.v1.EncodingType" do
368
- value :NONE, 0
369
- value :UTF8, 1
370
- value :UTF16, 2
371
- value :UTF32, 3
11
+
12
+ descriptor_data = "\n/google/cloud/language/v1/language_service.proto\x12\x18google.cloud.language.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\"\xc3\x01\n\x08\x44ocument\x12\x35\n\x04type\x18\x01 \x01(\x0e\x32\'.google.cloud.language.v1.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\"6\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nPLAIN_TEXT\x10\x01\x12\x08\n\x04HTML\x10\x02\x42\x08\n\x06source\"t\n\x08Sentence\x12\x30\n\x04text\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.TextSpan\x12\x36\n\tsentiment\x18\x02 \x01(\x0b\x32#.google.cloud.language.v1.Sentiment\"\xff\x03\n\x06\x45ntity\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x33\n\x04type\x18\x02 \x01(\x0e\x32%.google.cloud.language.v1.Entity.Type\x12@\n\x08metadata\x18\x03 \x03(\x0b\x32..google.cloud.language.v1.Entity.MetadataEntry\x12\x10\n\x08salience\x18\x04 \x01(\x02\x12\x39\n\x08mentions\x18\x05 \x03(\x0b\x32\'.google.cloud.language.v1.EntityMention\x12\x36\n\tsentiment\x18\x06 \x01(\x0b\x32#.google.cloud.language.v1.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\"\xcb\x01\n\x05Token\x12\x30\n\x04text\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.TextSpan\x12>\n\x0epart_of_speech\x18\x02 \x01(\x0b\x32&.google.cloud.language.v1.PartOfSpeech\x12\x41\n\x0f\x64\x65pendency_edge\x18\x03 \x01(\x0b\x32(.google.cloud.language.v1.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\"\xa3\x10\n\x0cPartOfSpeech\x12\x37\n\x03tag\x18\x01 \x01(\x0e\x32*.google.cloud.language.v1.PartOfSpeech.Tag\x12=\n\x06\x61spect\x18\x02 \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Aspect\x12\x39\n\x04\x63\x61se\x18\x03 \x01(\x0e\x32+.google.cloud.language.v1.PartOfSpeech.Case\x12\x39\n\x04\x66orm\x18\x04 \x01(\x0e\x32+.google.cloud.language.v1.PartOfSpeech.Form\x12=\n\x06gender\x18\x05 \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Gender\x12\x39\n\x04mood\x18\x06 \x01(\x0e\x32+.google.cloud.language.v1.PartOfSpeech.Mood\x12=\n\x06number\x18\x07 \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Number\x12=\n\x06person\x18\x08 \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Person\x12=\n\x06proper\x18\t \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Proper\x12G\n\x0breciprocity\x18\n \x01(\x0e\x32\x32.google.cloud.language.v1.PartOfSpeech.Reciprocity\x12;\n\x05tense\x18\x0b \x01(\x0e\x32,.google.cloud.language.v1.PartOfSpeech.Tense\x12;\n\x05voice\x18\x0c \x01(\x0e\x32,.google.cloud.language.v1.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\"\x95\x08\n\x0e\x44\x65pendencyEdge\x12\x18\n\x10head_token_index\x18\x01 \x01(\x05\x12=\n\x05label\x18\x02 \x01(\x0e\x32..google.cloud.language.v1.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\"\xe7\x01\n\rEntityMention\x12\x30\n\x04text\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.TextSpan\x12:\n\x04type\x18\x02 \x01(\x0e\x32,.google.cloud.language.v1.EntityMention.Type\x12\x36\n\tsentiment\x18\x03 \x01(\x0b\x32#.google.cloud.language.v1.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\"\xb8\x03\n\x1a\x43lassificationModelOptions\x12P\n\x08v1_model\x18\x01 \x01(\x0b\x32<.google.cloud.language.v1.ClassificationModelOptions.V1ModelH\x00\x12P\n\x08v2_model\x18\x02 \x01(\x0b\x32<.google.cloud.language.v1.ClassificationModelOptions.V2ModelH\x00\x1a\t\n\x07V1Model\x1a\xdc\x01\n\x07V2Model\x12y\n\x1a\x63ontent_categories_version\x18\x01 \x01(\x0e\x32U.google.cloud.language.v1.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\"\x93\x01\n\x17\x41nalyzeSentimentRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x02 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\"\xa4\x01\n\x18\x41nalyzeSentimentResponse\x12?\n\x12\x64ocument_sentiment\x18\x01 \x01(\x0b\x32#.google.cloud.language.v1.Sentiment\x12\x10\n\x08language\x18\x02 \x01(\t\x12\x35\n\tsentences\x18\x03 \x03(\x0b\x32\".google.cloud.language.v1.Sentence\"\x99\x01\n\x1d\x41nalyzeEntitySentimentRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x02 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\"f\n\x1e\x41nalyzeEntitySentimentResponse\x12\x32\n\x08\x65ntities\x18\x01 \x03(\x0b\x32 .google.cloud.language.v1.Entity\x12\x10\n\x08language\x18\x02 \x01(\t\"\x92\x01\n\x16\x41nalyzeEntitiesRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x02 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\"_\n\x17\x41nalyzeEntitiesResponse\x12\x32\n\x08\x65ntities\x18\x01 \x03(\x0b\x32 .google.cloud.language.v1.Entity\x12\x10\n\x08language\x18\x02 \x01(\t\"\x90\x01\n\x14\x41nalyzeSyntaxRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x02 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\"\x91\x01\n\x15\x41nalyzeSyntaxResponse\x12\x35\n\tsentences\x18\x01 \x03(\x0b\x32\".google.cloud.language.v1.Sentence\x12/\n\x06tokens\x18\x02 \x03(\x0b\x32\x1f.google.cloud.language.v1.Token\x12\x10\n\x08language\x18\x03 \x01(\t\"\xac\x01\n\x13\x43lassifyTextRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12Z\n\x1c\x63lassification_model_options\x18\x03 \x01(\x0b\x32\x34.google.cloud.language.v1.ClassificationModelOptions\"\\\n\x14\x43lassifyTextResponse\x12\x44\n\ncategories\x18\x01 \x03(\x0b\x32\x30.google.cloud.language.v1.ClassificationCategory\"P\n\x13ModerateTextRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\"g\n\x14ModerateTextResponse\x12O\n\x15moderation_categories\x18\x01 \x03(\x0b\x32\x30.google.cloud.language.v1.ClassificationCategory\"\xed\x03\n\x13\x41nnotateTextRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12M\n\x08\x66\x65\x61tures\x18\x02 \x01(\x0b\x32\x36.google.cloud.language.v1.AnnotateTextRequest.FeaturesB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x03 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\x1a\x8c\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\x12Z\n\x1c\x63lassification_model_options\x18\n \x01(\x0b\x32\x34.google.cloud.language.v1.ClassificationModelOptions\"\x9c\x03\n\x14\x41nnotateTextResponse\x12\x35\n\tsentences\x18\x01 \x03(\x0b\x32\".google.cloud.language.v1.Sentence\x12/\n\x06tokens\x18\x02 \x03(\x0b\x32\x1f.google.cloud.language.v1.Token\x12\x32\n\x08\x65ntities\x18\x03 \x03(\x0b\x32 .google.cloud.language.v1.Entity\x12?\n\x12\x64ocument_sentiment\x18\x04 \x01(\x0b\x32#.google.cloud.language.v1.Sentiment\x12\x10\n\x08language\x18\x05 \x01(\t\x12\x44\n\ncategories\x18\x06 \x03(\x0b\x32\x30.google.cloud.language.v1.ClassificationCategory\x12O\n\x15moderation_categories\x18\x07 \x03(\x0b\x32\x30.google.cloud.language.v1.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\xd2\x0b\n\x0fLanguageService\x12\xc8\x01\n\x10\x41nalyzeSentiment\x12\x31.google.cloud.language.v1.AnalyzeSentimentRequest\x1a\x32.google.cloud.language.v1.AnalyzeSentimentResponse\"M\x82\xd3\xe4\x93\x02#\"\x1e/v1/documents:analyzeSentiment:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xc4\x01\n\x0f\x41nalyzeEntities\x12\x30.google.cloud.language.v1.AnalyzeEntitiesRequest\x1a\x31.google.cloud.language.v1.AnalyzeEntitiesResponse\"L\x82\xd3\xe4\x93\x02\"\"\x1d/v1/documents:analyzeEntities:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xe0\x01\n\x16\x41nalyzeEntitySentiment\x12\x37.google.cloud.language.v1.AnalyzeEntitySentimentRequest\x1a\x38.google.cloud.language.v1.AnalyzeEntitySentimentResponse\"S\x82\xd3\xe4\x93\x02)\"$/v1/documents:analyzeEntitySentiment:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xbc\x01\n\rAnalyzeSyntax\x12..google.cloud.language.v1.AnalyzeSyntaxRequest\x1a/.google.cloud.language.v1.AnalyzeSyntaxResponse\"J\x82\xd3\xe4\x93\x02 \"\x1b/v1/documents:analyzeSyntax:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\x9f\x01\n\x0c\x43lassifyText\x12-.google.cloud.language.v1.ClassifyTextRequest\x1a..google.cloud.language.v1.ClassifyTextResponse\"0\x82\xd3\xe4\x93\x02\x1f\"\x1a/v1/documents:classifyText:\x01*\xda\x41\x08\x64ocument\x12\x9f\x01\n\x0cModerateText\x12-.google.cloud.language.v1.ModerateTextRequest\x1a..google.cloud.language.v1.ModerateTextResponse\"0\x82\xd3\xe4\x93\x02\x1f\"\x1a/v1/documents:moderateText:\x01*\xda\x41\x08\x64ocument\x12\xca\x01\n\x0c\x41nnotateText\x12-.google.cloud.language.v1.AnnotateTextRequest\x1a..google.cloud.language.v1.AnnotateTextResponse\"[\x82\xd3\xe4\x93\x02\x1f\"\x1a/v1/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-platformBp\n\x1c\x63om.google.cloud.language.v1B\x14LanguageServiceProtoP\x01Z8cloud.google.com/go/language/apiv1/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}"
372
32
  end
373
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."
374
36
  end
375
37
 
376
38
  module Google
@@ -417,6 +79,8 @@ module Google
417
79
  AnalyzeSyntaxResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnalyzeSyntaxResponse").msgclass
418
80
  ClassifyTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassifyTextRequest").msgclass
419
81
  ClassifyTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassifyTextResponse").msgclass
82
+ ModerateTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ModerateTextRequest").msgclass
83
+ ModerateTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ModerateTextResponse").msgclass
420
84
  AnnotateTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnnotateTextRequest").msgclass
421
85
  AnnotateTextRequest::Features = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnnotateTextRequest.Features").msgclass
422
86
  AnnotateTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.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::V1::AnalyzeEntitiesRequest, ::Google::Cloud::Language::V1::AnalyzeEntitiesResponse
43
- # Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.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.v1.LanguageService.AnalyzeEntities]
45
+ # in the text and analyzes sentiment associated with each entity and its
46
+ # mentions.
45
47
  rpc :AnalyzeEntitySentiment, ::Google::Cloud::Language::V1::AnalyzeEntitySentimentRequest, ::Google::Cloud::Language::V1::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::V1::AnalyzeSyntaxRequest, ::Google::Cloud::Language::V1::AnalyzeSyntaxResponse
50
52
  # Classifies a document into categories.
51
53
  rpc :ClassifyText, ::Google::Cloud::Language::V1::ClassifyTextRequest, ::Google::Cloud::Language::V1::ClassifyTextResponse
54
+ # Moderates a document for harmful and sensitive categories.
55
+ rpc :ModerateText, ::Google::Cloud::Language::V1::ModerateTextRequest, ::Google::Cloud::Language::V1::ModerateTextResponse
52
56
  # A convenience method that provides all the features that analyzeSentiment,
53
57
  # analyzeEntities, and analyzeSyntax provide in one call.
54
58
  rpc :AnnotateText, ::Google::Cloud::Language::V1::AnnotateTextRequest, ::Google::Cloud::Language::V1::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/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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Language
23
23
  module V1
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/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