google-cloud-speech-v2 0.4.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3cf4d4c7df13e982a4445c71f9718dec880581b5d3af5d0144375a08ebe3ffb2
4
- data.tar.gz: 2383d5ae6a86525d679a6bd78a4e69b006dcca5fa9cd930bb845ebb9c3221bef
3
+ metadata.gz: 4b926ffa7fd2fc157cdabd45744b7871c9ec6ffabbad230893f3b0a9f3a716f6
4
+ data.tar.gz: 90f3d10db2dec2e15f3121340a68235d3a57b2dce358d04e0b6d4bd49e3578fb
5
5
  SHA512:
6
- metadata.gz: 6f38a8ad1754232f45056ad4bf2138347c8c189bcfae40f90ad22268a231a88d1cf5458ab4b14b7f1065c42ab415442b66862b09c811bfa5a63bf0539304534a
7
- data.tar.gz: 1dcbb075133194ce0ba9ca6989735602bd514d48a7a0106f6744a36c18fcff5e3d9873d4aee9cc6d8c003f44412db03c4e21145d8d4c9ca258e1884cc9ea1af1
6
+ metadata.gz: 312969dfffb8dc00feb019aceeb8b8d40399e3fa8dec9bea80f306cbf38eba5869bf32f59af52c89100d25b6cfa47adf39e1b37bcd96308434e4fce421fad765
7
+ data.tar.gz: 58c02b6c9ff474539a6b64653e2dc5483db08a77c9d94f76b9efa0975a89d2221073e170cf6c09bf374e643f844849a73d84a52163fc088ead2a2fe4fa3ce7f5
@@ -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/speech/v2/cloud_speech.proto
3
4
 
@@ -13,404 +14,35 @@ require 'google/protobuf/field_mask_pb'
13
14
  require 'google/protobuf/timestamp_pb'
14
15
  require 'google/rpc/status_pb'
15
16
 
16
- Google::Protobuf::DescriptorPool.generated_pool.build do
17
- add_file("google/cloud/speech/v2/cloud_speech.proto", :syntax => :proto3) do
18
- add_message "google.cloud.speech.v2.CreateRecognizerRequest" do
19
- optional :recognizer, :message, 1, "google.cloud.speech.v2.Recognizer"
20
- optional :validate_only, :bool, 2
21
- optional :recognizer_id, :string, 3
22
- optional :parent, :string, 4
23
- end
24
- add_message "google.cloud.speech.v2.OperationMetadata" do
25
- optional :create_time, :message, 1, "google.protobuf.Timestamp"
26
- optional :update_time, :message, 2, "google.protobuf.Timestamp"
27
- optional :resource, :string, 3
28
- optional :method, :string, 4
29
- optional :kms_key_name, :string, 6
30
- optional :kms_key_version_name, :string, 7
31
- optional :progress_percent, :int32, 22
32
- oneof :request do
33
- optional :batch_recognize_request, :message, 8, "google.cloud.speech.v2.BatchRecognizeRequest"
34
- optional :create_recognizer_request, :message, 9, "google.cloud.speech.v2.CreateRecognizerRequest"
35
- optional :update_recognizer_request, :message, 10, "google.cloud.speech.v2.UpdateRecognizerRequest"
36
- optional :delete_recognizer_request, :message, 11, "google.cloud.speech.v2.DeleteRecognizerRequest"
37
- optional :undelete_recognizer_request, :message, 12, "google.cloud.speech.v2.UndeleteRecognizerRequest"
38
- optional :create_custom_class_request, :message, 13, "google.cloud.speech.v2.CreateCustomClassRequest"
39
- optional :update_custom_class_request, :message, 14, "google.cloud.speech.v2.UpdateCustomClassRequest"
40
- optional :delete_custom_class_request, :message, 15, "google.cloud.speech.v2.DeleteCustomClassRequest"
41
- optional :undelete_custom_class_request, :message, 16, "google.cloud.speech.v2.UndeleteCustomClassRequest"
42
- optional :create_phrase_set_request, :message, 17, "google.cloud.speech.v2.CreatePhraseSetRequest"
43
- optional :update_phrase_set_request, :message, 18, "google.cloud.speech.v2.UpdatePhraseSetRequest"
44
- optional :delete_phrase_set_request, :message, 19, "google.cloud.speech.v2.DeletePhraseSetRequest"
45
- optional :undelete_phrase_set_request, :message, 20, "google.cloud.speech.v2.UndeletePhraseSetRequest"
46
- optional :update_config_request, :message, 21, "google.cloud.speech.v2.UpdateConfigRequest"
47
- end
48
- oneof :metadata do
49
- optional :batch_recognize_metadata, :message, 23, "google.cloud.speech.v2.BatchRecognizeMetadata"
50
- end
51
- end
52
- add_message "google.cloud.speech.v2.ListRecognizersRequest" do
53
- optional :parent, :string, 1
54
- optional :page_size, :int32, 2
55
- optional :page_token, :string, 3
56
- optional :show_deleted, :bool, 4
57
- end
58
- add_message "google.cloud.speech.v2.ListRecognizersResponse" do
59
- repeated :recognizers, :message, 1, "google.cloud.speech.v2.Recognizer"
60
- optional :next_page_token, :string, 2
61
- end
62
- add_message "google.cloud.speech.v2.GetRecognizerRequest" do
63
- optional :name, :string, 1
64
- end
65
- add_message "google.cloud.speech.v2.UpdateRecognizerRequest" do
66
- optional :recognizer, :message, 1, "google.cloud.speech.v2.Recognizer"
67
- optional :update_mask, :message, 2, "google.protobuf.FieldMask"
68
- optional :validate_only, :bool, 4
69
- end
70
- add_message "google.cloud.speech.v2.DeleteRecognizerRequest" do
71
- optional :name, :string, 1
72
- optional :validate_only, :bool, 2
73
- optional :allow_missing, :bool, 4
74
- optional :etag, :string, 3
75
- end
76
- add_message "google.cloud.speech.v2.UndeleteRecognizerRequest" do
77
- optional :name, :string, 1
78
- optional :validate_only, :bool, 3
79
- optional :etag, :string, 4
80
- end
81
- add_message "google.cloud.speech.v2.Recognizer" do
82
- optional :name, :string, 1
83
- optional :uid, :string, 2
84
- optional :display_name, :string, 3
85
- optional :model, :string, 4
86
- repeated :language_codes, :string, 17
87
- optional :default_recognition_config, :message, 6, "google.cloud.speech.v2.RecognitionConfig"
88
- map :annotations, :string, :string, 7
89
- optional :state, :enum, 8, "google.cloud.speech.v2.Recognizer.State"
90
- optional :create_time, :message, 9, "google.protobuf.Timestamp"
91
- optional :update_time, :message, 10, "google.protobuf.Timestamp"
92
- optional :delete_time, :message, 11, "google.protobuf.Timestamp"
93
- optional :expire_time, :message, 14, "google.protobuf.Timestamp"
94
- optional :etag, :string, 12
95
- optional :reconciling, :bool, 13
96
- optional :kms_key_name, :string, 15
97
- optional :kms_key_version_name, :string, 16
98
- end
99
- add_enum "google.cloud.speech.v2.Recognizer.State" do
100
- value :STATE_UNSPECIFIED, 0
101
- value :ACTIVE, 2
102
- value :DELETED, 4
103
- end
104
- add_message "google.cloud.speech.v2.AutoDetectDecodingConfig" do
105
- end
106
- add_message "google.cloud.speech.v2.ExplicitDecodingConfig" do
107
- optional :encoding, :enum, 1, "google.cloud.speech.v2.ExplicitDecodingConfig.AudioEncoding"
108
- optional :sample_rate_hertz, :int32, 2
109
- optional :audio_channel_count, :int32, 3
110
- end
111
- add_enum "google.cloud.speech.v2.ExplicitDecodingConfig.AudioEncoding" do
112
- value :AUDIO_ENCODING_UNSPECIFIED, 0
113
- value :LINEAR16, 1
114
- value :MULAW, 2
115
- value :ALAW, 3
116
- end
117
- add_message "google.cloud.speech.v2.SpeakerDiarizationConfig" do
118
- optional :min_speaker_count, :int32, 2
119
- optional :max_speaker_count, :int32, 3
120
- end
121
- add_message "google.cloud.speech.v2.RecognitionFeatures" do
122
- optional :profanity_filter, :bool, 1
123
- optional :enable_word_time_offsets, :bool, 2
124
- optional :enable_word_confidence, :bool, 3
125
- optional :enable_automatic_punctuation, :bool, 4
126
- optional :enable_spoken_punctuation, :bool, 14
127
- optional :enable_spoken_emojis, :bool, 15
128
- optional :multi_channel_mode, :enum, 17, "google.cloud.speech.v2.RecognitionFeatures.MultiChannelMode"
129
- optional :diarization_config, :message, 9, "google.cloud.speech.v2.SpeakerDiarizationConfig"
130
- optional :max_alternatives, :int32, 16
131
- end
132
- add_enum "google.cloud.speech.v2.RecognitionFeatures.MultiChannelMode" do
133
- value :MULTI_CHANNEL_MODE_UNSPECIFIED, 0
134
- value :SEPARATE_RECOGNITION_PER_CHANNEL, 1
135
- end
136
- add_message "google.cloud.speech.v2.SpeechAdaptation" do
137
- repeated :phrase_sets, :message, 1, "google.cloud.speech.v2.SpeechAdaptation.AdaptationPhraseSet"
138
- repeated :custom_classes, :message, 2, "google.cloud.speech.v2.CustomClass"
139
- end
140
- add_message "google.cloud.speech.v2.SpeechAdaptation.AdaptationPhraseSet" do
141
- oneof :value do
142
- optional :phrase_set, :string, 1
143
- optional :inline_phrase_set, :message, 2, "google.cloud.speech.v2.PhraseSet"
144
- end
145
- end
146
- add_message "google.cloud.speech.v2.RecognitionConfig" do
147
- optional :features, :message, 2, "google.cloud.speech.v2.RecognitionFeatures"
148
- optional :adaptation, :message, 6, "google.cloud.speech.v2.SpeechAdaptation"
149
- oneof :decoding_config do
150
- optional :auto_decoding_config, :message, 7, "google.cloud.speech.v2.AutoDetectDecodingConfig"
151
- optional :explicit_decoding_config, :message, 8, "google.cloud.speech.v2.ExplicitDecodingConfig"
152
- end
153
- end
154
- add_message "google.cloud.speech.v2.RecognizeRequest" do
155
- optional :recognizer, :string, 3
156
- optional :config, :message, 1, "google.cloud.speech.v2.RecognitionConfig"
157
- optional :config_mask, :message, 8, "google.protobuf.FieldMask"
158
- oneof :audio_source do
159
- optional :content, :bytes, 5
160
- optional :uri, :string, 6
161
- end
162
- end
163
- add_message "google.cloud.speech.v2.RecognitionResponseMetadata" do
164
- optional :total_billed_duration, :message, 6, "google.protobuf.Duration"
165
- end
166
- add_message "google.cloud.speech.v2.SpeechRecognitionAlternative" do
167
- optional :transcript, :string, 1
168
- optional :confidence, :float, 2
169
- repeated :words, :message, 3, "google.cloud.speech.v2.WordInfo"
170
- end
171
- add_message "google.cloud.speech.v2.WordInfo" do
172
- optional :start_offset, :message, 1, "google.protobuf.Duration"
173
- optional :end_offset, :message, 2, "google.protobuf.Duration"
174
- optional :word, :string, 3
175
- optional :confidence, :float, 4
176
- optional :speaker_label, :string, 6
177
- end
178
- add_message "google.cloud.speech.v2.SpeechRecognitionResult" do
179
- repeated :alternatives, :message, 1, "google.cloud.speech.v2.SpeechRecognitionAlternative"
180
- optional :channel_tag, :int32, 2
181
- optional :result_end_offset, :message, 4, "google.protobuf.Duration"
182
- optional :language_code, :string, 5
183
- end
184
- add_message "google.cloud.speech.v2.RecognizeResponse" do
185
- repeated :results, :message, 3, "google.cloud.speech.v2.SpeechRecognitionResult"
186
- optional :metadata, :message, 2, "google.cloud.speech.v2.RecognitionResponseMetadata"
187
- end
188
- add_message "google.cloud.speech.v2.StreamingRecognitionFeatures" do
189
- optional :enable_voice_activity_events, :bool, 1
190
- optional :interim_results, :bool, 2
191
- optional :voice_activity_timeout, :message, 3, "google.cloud.speech.v2.StreamingRecognitionFeatures.VoiceActivityTimeout"
192
- end
193
- add_message "google.cloud.speech.v2.StreamingRecognitionFeatures.VoiceActivityTimeout" do
194
- optional :speech_start_timeout, :message, 1, "google.protobuf.Duration"
195
- optional :speech_end_timeout, :message, 2, "google.protobuf.Duration"
196
- end
197
- add_message "google.cloud.speech.v2.StreamingRecognitionConfig" do
198
- optional :config, :message, 1, "google.cloud.speech.v2.RecognitionConfig"
199
- optional :config_mask, :message, 3, "google.protobuf.FieldMask"
200
- optional :streaming_features, :message, 2, "google.cloud.speech.v2.StreamingRecognitionFeatures"
201
- end
202
- add_message "google.cloud.speech.v2.StreamingRecognizeRequest" do
203
- optional :recognizer, :string, 3
204
- oneof :streaming_request do
205
- optional :streaming_config, :message, 6, "google.cloud.speech.v2.StreamingRecognitionConfig"
206
- optional :audio, :bytes, 5
207
- end
208
- end
209
- add_message "google.cloud.speech.v2.BatchRecognizeRequest" do
210
- optional :recognizer, :string, 1
211
- optional :config, :message, 4, "google.cloud.speech.v2.RecognitionConfig"
212
- optional :config_mask, :message, 5, "google.protobuf.FieldMask"
213
- repeated :files, :message, 3, "google.cloud.speech.v2.BatchRecognizeFileMetadata"
214
- optional :recognition_output_config, :message, 6, "google.cloud.speech.v2.RecognitionOutputConfig"
215
- optional :processing_strategy, :enum, 7, "google.cloud.speech.v2.BatchRecognizeRequest.ProcessingStrategy"
216
- end
217
- add_enum "google.cloud.speech.v2.BatchRecognizeRequest.ProcessingStrategy" do
218
- value :PROCESSING_STRATEGY_UNSPECIFIED, 0
219
- value :DYNAMIC_BATCHING, 1
220
- end
221
- add_message "google.cloud.speech.v2.GcsOutputConfig" do
222
- optional :uri, :string, 1
223
- end
224
- add_message "google.cloud.speech.v2.InlineOutputConfig" do
225
- end
226
- add_message "google.cloud.speech.v2.RecognitionOutputConfig" do
227
- oneof :output do
228
- optional :gcs_output_config, :message, 1, "google.cloud.speech.v2.GcsOutputConfig"
229
- optional :inline_response_config, :message, 2, "google.cloud.speech.v2.InlineOutputConfig"
230
- end
231
- end
232
- add_message "google.cloud.speech.v2.BatchRecognizeResponse" do
233
- map :results, :string, :message, 1, "google.cloud.speech.v2.BatchRecognizeFileResult"
234
- optional :total_billed_duration, :message, 2, "google.protobuf.Duration"
235
- end
236
- add_message "google.cloud.speech.v2.BatchRecognizeResults" do
237
- repeated :results, :message, 1, "google.cloud.speech.v2.SpeechRecognitionResult"
238
- optional :metadata, :message, 2, "google.cloud.speech.v2.RecognitionResponseMetadata"
239
- end
240
- add_message "google.cloud.speech.v2.BatchRecognizeFileResult" do
241
- optional :uri, :string, 1
242
- optional :error, :message, 2, "google.rpc.Status"
243
- optional :metadata, :message, 3, "google.cloud.speech.v2.RecognitionResponseMetadata"
244
- optional :transcript, :message, 4, "google.cloud.speech.v2.BatchRecognizeResults"
245
- end
246
- add_message "google.cloud.speech.v2.BatchRecognizeTranscriptionMetadata" do
247
- optional :progress_percent, :int32, 1
248
- optional :error, :message, 2, "google.rpc.Status"
249
- optional :uri, :string, 3
250
- end
251
- add_message "google.cloud.speech.v2.BatchRecognizeMetadata" do
252
- map :transcription_metadata, :string, :message, 1, "google.cloud.speech.v2.BatchRecognizeTranscriptionMetadata"
253
- end
254
- add_message "google.cloud.speech.v2.BatchRecognizeFileMetadata" do
255
- optional :config, :message, 4, "google.cloud.speech.v2.RecognitionConfig"
256
- optional :config_mask, :message, 5, "google.protobuf.FieldMask"
257
- oneof :audio_source do
258
- optional :uri, :string, 1
259
- end
260
- end
261
- add_message "google.cloud.speech.v2.StreamingRecognitionResult" do
262
- repeated :alternatives, :message, 1, "google.cloud.speech.v2.SpeechRecognitionAlternative"
263
- optional :is_final, :bool, 2
264
- optional :stability, :float, 3
265
- optional :result_end_offset, :message, 4, "google.protobuf.Duration"
266
- optional :channel_tag, :int32, 5
267
- optional :language_code, :string, 6
268
- end
269
- add_message "google.cloud.speech.v2.StreamingRecognizeResponse" do
270
- repeated :results, :message, 6, "google.cloud.speech.v2.StreamingRecognitionResult"
271
- optional :speech_event_type, :enum, 3, "google.cloud.speech.v2.StreamingRecognizeResponse.SpeechEventType"
272
- optional :speech_event_offset, :message, 7, "google.protobuf.Duration"
273
- optional :metadata, :message, 5, "google.cloud.speech.v2.RecognitionResponseMetadata"
274
- end
275
- add_enum "google.cloud.speech.v2.StreamingRecognizeResponse.SpeechEventType" do
276
- value :SPEECH_EVENT_TYPE_UNSPECIFIED, 0
277
- value :END_OF_SINGLE_UTTERANCE, 1
278
- value :SPEECH_ACTIVITY_BEGIN, 2
279
- value :SPEECH_ACTIVITY_END, 3
280
- end
281
- add_message "google.cloud.speech.v2.Config" do
282
- optional :name, :string, 1
283
- optional :kms_key_name, :string, 2
284
- optional :update_time, :message, 3, "google.protobuf.Timestamp"
285
- end
286
- add_message "google.cloud.speech.v2.GetConfigRequest" do
287
- optional :name, :string, 1
288
- end
289
- add_message "google.cloud.speech.v2.UpdateConfigRequest" do
290
- optional :config, :message, 1, "google.cloud.speech.v2.Config"
291
- optional :update_mask, :message, 2, "google.protobuf.FieldMask"
292
- end
293
- add_message "google.cloud.speech.v2.CustomClass" do
294
- optional :name, :string, 1
295
- optional :uid, :string, 2
296
- optional :display_name, :string, 4
297
- repeated :items, :message, 5, "google.cloud.speech.v2.CustomClass.ClassItem"
298
- optional :state, :enum, 15, "google.cloud.speech.v2.CustomClass.State"
299
- optional :create_time, :message, 6, "google.protobuf.Timestamp"
300
- optional :update_time, :message, 7, "google.protobuf.Timestamp"
301
- optional :delete_time, :message, 8, "google.protobuf.Timestamp"
302
- optional :expire_time, :message, 9, "google.protobuf.Timestamp"
303
- map :annotations, :string, :string, 10
304
- optional :etag, :string, 11
305
- optional :reconciling, :bool, 12
306
- optional :kms_key_name, :string, 13
307
- optional :kms_key_version_name, :string, 14
308
- end
309
- add_message "google.cloud.speech.v2.CustomClass.ClassItem" do
310
- optional :value, :string, 1
311
- end
312
- add_enum "google.cloud.speech.v2.CustomClass.State" do
313
- value :STATE_UNSPECIFIED, 0
314
- value :ACTIVE, 2
315
- value :DELETED, 4
316
- end
317
- add_message "google.cloud.speech.v2.PhraseSet" do
318
- optional :name, :string, 1
319
- optional :uid, :string, 2
320
- repeated :phrases, :message, 3, "google.cloud.speech.v2.PhraseSet.Phrase"
321
- optional :boost, :float, 4
322
- optional :display_name, :string, 5
323
- optional :state, :enum, 15, "google.cloud.speech.v2.PhraseSet.State"
324
- optional :create_time, :message, 6, "google.protobuf.Timestamp"
325
- optional :update_time, :message, 7, "google.protobuf.Timestamp"
326
- optional :delete_time, :message, 8, "google.protobuf.Timestamp"
327
- optional :expire_time, :message, 9, "google.protobuf.Timestamp"
328
- map :annotations, :string, :string, 10
329
- optional :etag, :string, 11
330
- optional :reconciling, :bool, 12
331
- optional :kms_key_name, :string, 13
332
- optional :kms_key_version_name, :string, 14
333
- end
334
- add_message "google.cloud.speech.v2.PhraseSet.Phrase" do
335
- optional :value, :string, 1
336
- optional :boost, :float, 2
337
- end
338
- add_enum "google.cloud.speech.v2.PhraseSet.State" do
339
- value :STATE_UNSPECIFIED, 0
340
- value :ACTIVE, 2
341
- value :DELETED, 4
342
- end
343
- add_message "google.cloud.speech.v2.CreateCustomClassRequest" do
344
- optional :custom_class, :message, 1, "google.cloud.speech.v2.CustomClass"
345
- optional :validate_only, :bool, 2
346
- optional :custom_class_id, :string, 3
347
- optional :parent, :string, 4
348
- end
349
- add_message "google.cloud.speech.v2.ListCustomClassesRequest" do
350
- optional :parent, :string, 1
351
- optional :page_size, :int32, 2
352
- optional :page_token, :string, 3
353
- optional :show_deleted, :bool, 4
354
- end
355
- add_message "google.cloud.speech.v2.ListCustomClassesResponse" do
356
- repeated :custom_classes, :message, 1, "google.cloud.speech.v2.CustomClass"
357
- optional :next_page_token, :string, 2
358
- end
359
- add_message "google.cloud.speech.v2.GetCustomClassRequest" do
360
- optional :name, :string, 1
361
- end
362
- add_message "google.cloud.speech.v2.UpdateCustomClassRequest" do
363
- optional :custom_class, :message, 1, "google.cloud.speech.v2.CustomClass"
364
- optional :update_mask, :message, 2, "google.protobuf.FieldMask"
365
- optional :validate_only, :bool, 4
366
- end
367
- add_message "google.cloud.speech.v2.DeleteCustomClassRequest" do
368
- optional :name, :string, 1
369
- optional :validate_only, :bool, 2
370
- optional :allow_missing, :bool, 4
371
- optional :etag, :string, 3
372
- end
373
- add_message "google.cloud.speech.v2.UndeleteCustomClassRequest" do
374
- optional :name, :string, 1
375
- optional :validate_only, :bool, 3
376
- optional :etag, :string, 4
377
- end
378
- add_message "google.cloud.speech.v2.CreatePhraseSetRequest" do
379
- optional :phrase_set, :message, 1, "google.cloud.speech.v2.PhraseSet"
380
- optional :validate_only, :bool, 2
381
- optional :phrase_set_id, :string, 3
382
- optional :parent, :string, 4
383
- end
384
- add_message "google.cloud.speech.v2.ListPhraseSetsRequest" do
385
- optional :parent, :string, 1
386
- optional :page_size, :int32, 2
387
- optional :page_token, :string, 3
388
- optional :show_deleted, :bool, 4
389
- end
390
- add_message "google.cloud.speech.v2.ListPhraseSetsResponse" do
391
- repeated :phrase_sets, :message, 1, "google.cloud.speech.v2.PhraseSet"
392
- optional :next_page_token, :string, 2
393
- end
394
- add_message "google.cloud.speech.v2.GetPhraseSetRequest" do
395
- optional :name, :string, 1
396
- end
397
- add_message "google.cloud.speech.v2.UpdatePhraseSetRequest" do
398
- optional :phrase_set, :message, 1, "google.cloud.speech.v2.PhraseSet"
399
- optional :update_mask, :message, 2, "google.protobuf.FieldMask"
400
- optional :validate_only, :bool, 4
401
- end
402
- add_message "google.cloud.speech.v2.DeletePhraseSetRequest" do
403
- optional :name, :string, 1
404
- optional :validate_only, :bool, 2
405
- optional :allow_missing, :bool, 4
406
- optional :etag, :string, 3
407
- end
408
- add_message "google.cloud.speech.v2.UndeletePhraseSetRequest" do
409
- optional :name, :string, 1
410
- optional :validate_only, :bool, 3
411
- optional :etag, :string, 4
17
+
18
+ descriptor_data = "\n)google/cloud/speech/v2/cloud_speech.proto\x12\x16google.cloud.speech.v2\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a#google/longrunning/operations.proto\x1a\x1egoogle/protobuf/duration.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x17google/rpc/status.proto\"\xbe\x01\n\x17\x43reateRecognizerRequest\x12;\n\nrecognizer\x18\x01 \x01(\x0b\x32\".google.cloud.speech.v2.RecognizerB\x03\xe0\x41\x02\x12\x15\n\rvalidate_only\x18\x02 \x01(\x08\x12\x15\n\rrecognizer_id\x18\x03 \x01(\t\x12\x38\n\x06parent\x18\x04 \x01(\tB(\xe0\x41\x02\xfa\x41\"\x12 speech.googleapis.com/Recognizer\"\xe7\x0c\n\x11OperationMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12/\n\x0bupdate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x10\n\x08resource\x18\x03 \x01(\t\x12\x0e\n\x06method\x18\x04 \x01(\t\x12<\n\x0ckms_key_name\x18\x06 \x01(\tB&\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12K\n\x14kms_key_version_name\x18\x07 \x01(\tB-\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\x12P\n\x17\x62\x61tch_recognize_request\x18\x08 \x01(\x0b\x32-.google.cloud.speech.v2.BatchRecognizeRequestH\x00\x12T\n\x19\x63reate_recognizer_request\x18\t \x01(\x0b\x32/.google.cloud.speech.v2.CreateRecognizerRequestH\x00\x12T\n\x19update_recognizer_request\x18\n \x01(\x0b\x32/.google.cloud.speech.v2.UpdateRecognizerRequestH\x00\x12T\n\x19\x64\x65lete_recognizer_request\x18\x0b \x01(\x0b\x32/.google.cloud.speech.v2.DeleteRecognizerRequestH\x00\x12X\n\x1bundelete_recognizer_request\x18\x0c \x01(\x0b\x32\x31.google.cloud.speech.v2.UndeleteRecognizerRequestH\x00\x12W\n\x1b\x63reate_custom_class_request\x18\r \x01(\x0b\x32\x30.google.cloud.speech.v2.CreateCustomClassRequestH\x00\x12W\n\x1bupdate_custom_class_request\x18\x0e \x01(\x0b\x32\x30.google.cloud.speech.v2.UpdateCustomClassRequestH\x00\x12W\n\x1b\x64\x65lete_custom_class_request\x18\x0f \x01(\x0b\x32\x30.google.cloud.speech.v2.DeleteCustomClassRequestH\x00\x12[\n\x1dundelete_custom_class_request\x18\x10 \x01(\x0b\x32\x32.google.cloud.speech.v2.UndeleteCustomClassRequestH\x00\x12S\n\x19\x63reate_phrase_set_request\x18\x11 \x01(\x0b\x32..google.cloud.speech.v2.CreatePhraseSetRequestH\x00\x12S\n\x19update_phrase_set_request\x18\x12 \x01(\x0b\x32..google.cloud.speech.v2.UpdatePhraseSetRequestH\x00\x12S\n\x19\x64\x65lete_phrase_set_request\x18\x13 \x01(\x0b\x32..google.cloud.speech.v2.DeletePhraseSetRequestH\x00\x12W\n\x1bundelete_phrase_set_request\x18\x14 \x01(\x0b\x32\x30.google.cloud.speech.v2.UndeletePhraseSetRequestH\x00\x12P\n\x15update_config_request\x18\x15 \x01(\x0b\x32+.google.cloud.speech.v2.UpdateConfigRequestB\x02\x18\x01H\x00\x12\x18\n\x10progress_percent\x18\x16 \x01(\x05\x12R\n\x18\x62\x61tch_recognize_metadata\x18\x17 \x01(\x0b\x32..google.cloud.speech.v2.BatchRecognizeMetadataH\x01\x42\t\n\x07requestB\n\n\x08metadata\"\x90\x01\n\x16ListRecognizersRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x14\n\x0cshow_deleted\x18\x04 \x01(\x08\"k\n\x17ListRecognizersResponse\x12\x37\n\x0brecognizers\x18\x01 \x03(\x0b\x32\".google.cloud.speech.v2.Recognizer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"N\n\x14GetRecognizerRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n speech.googleapis.com/Recognizer\"\x9e\x01\n\x17UpdateRecognizerRequest\x12;\n\nrecognizer\x18\x01 \x01(\x0b\x32\".google.cloud.speech.v2.RecognizerB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x15\n\rvalidate_only\x18\x04 \x01(\x08\"\x8d\x01\n\x17\x44\x65leteRecognizerRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n speech.googleapis.com/Recognizer\x12\x15\n\rvalidate_only\x18\x02 \x01(\x08\x12\x15\n\rallow_missing\x18\x04 \x01(\x08\x12\x0c\n\x04\x65tag\x18\x03 \x01(\t\"x\n\x19UndeleteRecognizerRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n speech.googleapis.com/Recognizer\x12\x15\n\rvalidate_only\x18\x03 \x01(\x08\x12\x0c\n\x04\x65tag\x18\x04 \x01(\t\"\xbe\x07\n\nRecognizer\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x14\n\x0c\x64isplay_name\x18\x03 \x01(\t\x12\x12\n\x05model\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x1b\n\x0elanguage_codes\x18\x11 \x03(\tB\x03\xe0\x41\x02\x12M\n\x1a\x64\x65\x66\x61ult_recognition_config\x18\x06 \x01(\x0b\x32).google.cloud.speech.v2.RecognitionConfig\x12H\n\x0b\x61nnotations\x18\x07 \x03(\x0b\x32\x33.google.cloud.speech.v2.Recognizer.AnnotationsEntry\x12<\n\x05state\x18\x08 \x01(\x0e\x32(.google.cloud.speech.v2.Recognizer.StateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x64\x65lete_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x65xpire_time\x18\x0e \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x11\n\x04\x65tag\x18\x0c \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0breconciling\x18\r \x01(\x08\x42\x03\xe0\x41\x03\x12?\n\x0ckms_key_name\x18\x0f \x01(\tB)\xe0\x41\x03\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12N\n\x14kms_key_version_name\x18\x10 \x01(\tB0\xe0\x41\x03\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"7\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0b\n\x07\x44\x45LETED\x10\x04:j\xea\x41g\n speech.googleapis.com/Recognizer\x12@projects/{project}/locations/{location}/recognizers/{recognizer}R\x01\x01\"\x1a\n\x18\x41utoDetectDecodingConfig\"\xf9\x01\n\x16\x45xplicitDecodingConfig\x12S\n\x08\x65ncoding\x18\x01 \x01(\x0e\x32<.google.cloud.speech.v2.ExplicitDecodingConfig.AudioEncodingB\x03\xe0\x41\x02\x12\x19\n\x11sample_rate_hertz\x18\x02 \x01(\x05\x12\x1b\n\x13\x61udio_channel_count\x18\x03 \x01(\x05\"R\n\rAudioEncoding\x12\x1e\n\x1a\x41UDIO_ENCODING_UNSPECIFIED\x10\x00\x12\x0c\n\x08LINEAR16\x10\x01\x12\t\n\x05MULAW\x10\x02\x12\x08\n\x04\x41LAW\x10\x03\"Z\n\x18SpeakerDiarizationConfig\x12\x1e\n\x11min_speaker_count\x18\x02 \x01(\x05\x42\x03\xe0\x41\x02\x12\x1e\n\x11max_speaker_count\x18\x03 \x01(\x05\x42\x03\xe0\x41\x02\"\xf8\x03\n\x13RecognitionFeatures\x12\x18\n\x10profanity_filter\x18\x01 \x01(\x08\x12 \n\x18\x65nable_word_time_offsets\x18\x02 \x01(\x08\x12\x1e\n\x16\x65nable_word_confidence\x18\x03 \x01(\x08\x12$\n\x1c\x65nable_automatic_punctuation\x18\x04 \x01(\x08\x12!\n\x19\x65nable_spoken_punctuation\x18\x0e \x01(\x08\x12\x1c\n\x14\x65nable_spoken_emojis\x18\x0f \x01(\x08\x12X\n\x12multi_channel_mode\x18\x11 \x01(\x0e\x32<.google.cloud.speech.v2.RecognitionFeatures.MultiChannelMode\x12L\n\x12\x64iarization_config\x18\t \x01(\x0b\x32\x30.google.cloud.speech.v2.SpeakerDiarizationConfig\x12\x18\n\x10max_alternatives\x18\x10 \x01(\x05\"\\\n\x10MultiChannelMode\x12\"\n\x1eMULTI_CHANNEL_MODE_UNSPECIFIED\x10\x00\x12$\n SEPARATE_RECOGNITION_PER_CHANNEL\x10\x01\"\xbf\x02\n\x10SpeechAdaptation\x12Q\n\x0bphrase_sets\x18\x01 \x03(\x0b\x32<.google.cloud.speech.v2.SpeechAdaptation.AdaptationPhraseSet\x12;\n\x0e\x63ustom_classes\x18\x02 \x03(\x0b\x32#.google.cloud.speech.v2.CustomClass\x1a\x9a\x01\n\x13\x41\x64\x61ptationPhraseSet\x12:\n\nphrase_set\x18\x01 \x01(\tB$\xfa\x41!\n\x1fspeech.googleapis.com/PhraseSetH\x00\x12>\n\x11inline_phrase_set\x18\x02 \x01(\x0b\x32!.google.cloud.speech.v2.PhraseSetH\x00\x42\x07\n\x05value\"\xc9\x02\n\x11RecognitionConfig\x12P\n\x14\x61uto_decoding_config\x18\x07 \x01(\x0b\x32\x30.google.cloud.speech.v2.AutoDetectDecodingConfigH\x00\x12R\n\x18\x65xplicit_decoding_config\x18\x08 \x01(\x0b\x32..google.cloud.speech.v2.ExplicitDecodingConfigH\x00\x12=\n\x08\x66\x65\x61tures\x18\x02 \x01(\x0b\x32+.google.cloud.speech.v2.RecognitionFeatures\x12<\n\nadaptation\x18\x06 \x01(\x0b\x32(.google.cloud.speech.v2.SpeechAdaptationB\x11\n\x0f\x64\x65\x63oding_config\"\xee\x01\n\x10RecognizeRequest\x12<\n\nrecognizer\x18\x03 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n speech.googleapis.com/Recognizer\x12\x39\n\x06\x63onfig\x18\x01 \x01(\x0b\x32).google.cloud.speech.v2.RecognitionConfig\x12/\n\x0b\x63onfig_mask\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x11\n\x07\x63ontent\x18\x05 \x01(\x0cH\x00\x12\r\n\x03uri\x18\x06 \x01(\tH\x00\x42\x0e\n\x0c\x61udio_source\"W\n\x1bRecognitionResponseMetadata\x12\x38\n\x15total_billed_duration\x18\x06 \x01(\x0b\x32\x19.google.protobuf.Duration\"w\n\x1cSpeechRecognitionAlternative\x12\x12\n\ntranscript\x18\x01 \x01(\t\x12\x12\n\nconfidence\x18\x02 \x01(\x02\x12/\n\x05words\x18\x03 \x03(\x0b\x32 .google.cloud.speech.v2.WordInfo\"\xa3\x01\n\x08WordInfo\x12/\n\x0cstart_offset\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12-\n\nend_offset\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x0c\n\x04word\x18\x03 \x01(\t\x12\x12\n\nconfidence\x18\x04 \x01(\x02\x12\x15\n\rspeaker_label\x18\x06 \x01(\t\"\xcc\x01\n\x17SpeechRecognitionResult\x12J\n\x0c\x61lternatives\x18\x01 \x03(\x0b\x32\x34.google.cloud.speech.v2.SpeechRecognitionAlternative\x12\x13\n\x0b\x63hannel_tag\x18\x02 \x01(\x05\x12\x34\n\x11result_end_offset\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x1a\n\rlanguage_code\x18\x05 \x01(\tB\x03\xe0\x41\x03\"\x9c\x01\n\x11RecognizeResponse\x12@\n\x07results\x18\x03 \x03(\x0b\x32/.google.cloud.speech.v2.SpeechRecognitionResult\x12\x45\n\x08metadata\x18\x02 \x01(\x0b\x32\x33.google.cloud.speech.v2.RecognitionResponseMetadata\"\xd1\x02\n\x1cStreamingRecognitionFeatures\x12$\n\x1c\x65nable_voice_activity_events\x18\x01 \x01(\x08\x12\x17\n\x0finterim_results\x18\x02 \x01(\x08\x12i\n\x16voice_activity_timeout\x18\x03 \x01(\x0b\x32I.google.cloud.speech.v2.StreamingRecognitionFeatures.VoiceActivityTimeout\x1a\x86\x01\n\x14VoiceActivityTimeout\x12\x37\n\x14speech_start_timeout\x18\x01 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x35\n\x12speech_end_timeout\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\"\xdf\x01\n\x1aStreamingRecognitionConfig\x12>\n\x06\x63onfig\x18\x01 \x01(\x0b\x32).google.cloud.speech.v2.RecognitionConfigB\x03\xe0\x41\x02\x12/\n\x0b\x63onfig_mask\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12P\n\x12streaming_features\x18\x02 \x01(\x0b\x32\x34.google.cloud.speech.v2.StreamingRecognitionFeatures\"\xcf\x01\n\x19StreamingRecognizeRequest\x12<\n\nrecognizer\x18\x03 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n speech.googleapis.com/Recognizer\x12N\n\x10streaming_config\x18\x06 \x01(\x0b\x32\x32.google.cloud.speech.v2.StreamingRecognitionConfigH\x00\x12\x0f\n\x05\x61udio\x18\x05 \x01(\x0cH\x00\x42\x13\n\x11streaming_request\"\x88\x04\n\x15\x42\x61tchRecognizeRequest\x12<\n\nrecognizer\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n speech.googleapis.com/Recognizer\x12\x39\n\x06\x63onfig\x18\x04 \x01(\x0b\x32).google.cloud.speech.v2.RecognitionConfig\x12/\n\x0b\x63onfig_mask\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x41\n\x05\x66iles\x18\x03 \x03(\x0b\x32\x32.google.cloud.speech.v2.BatchRecognizeFileMetadata\x12R\n\x19recognition_output_config\x18\x06 \x01(\x0b\x32/.google.cloud.speech.v2.RecognitionOutputConfig\x12]\n\x13processing_strategy\x18\x07 \x01(\x0e\x32@.google.cloud.speech.v2.BatchRecognizeRequest.ProcessingStrategy\"O\n\x12ProcessingStrategy\x12#\n\x1fPROCESSING_STRATEGY_UNSPECIFIED\x10\x00\x12\x14\n\x10\x44YNAMIC_BATCHING\x10\x01\"\x1e\n\x0fGcsOutputConfig\x12\x0b\n\x03uri\x18\x01 \x01(\t\"\x14\n\x12InlineOutputConfig\"\xb7\x01\n\x17RecognitionOutputConfig\x12\x44\n\x11gcs_output_config\x18\x01 \x01(\x0b\x32\'.google.cloud.speech.v2.GcsOutputConfigH\x00\x12L\n\x16inline_response_config\x18\x02 \x01(\x0b\x32*.google.cloud.speech.v2.InlineOutputConfigH\x00\x42\x08\n\x06output\"\x82\x02\n\x16\x42\x61tchRecognizeResponse\x12L\n\x07results\x18\x01 \x03(\x0b\x32;.google.cloud.speech.v2.BatchRecognizeResponse.ResultsEntry\x12\x38\n\x15total_billed_duration\x18\x02 \x01(\x0b\x32\x19.google.protobuf.Duration\x1a`\n\x0cResultsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12?\n\x05value\x18\x02 \x01(\x0b\x32\x30.google.cloud.speech.v2.BatchRecognizeFileResult:\x02\x38\x01\"\xa0\x01\n\x15\x42\x61tchRecognizeResults\x12@\n\x07results\x18\x01 \x03(\x0b\x32/.google.cloud.speech.v2.SpeechRecognitionResult\x12\x45\n\x08metadata\x18\x02 \x01(\x0b\x32\x33.google.cloud.speech.v2.RecognitionResponseMetadata\"\xd4\x01\n\x18\x42\x61tchRecognizeFileResult\x12\x0b\n\x03uri\x18\x01 \x01(\t\x12!\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x12.google.rpc.Status\x12\x45\n\x08metadata\x18\x03 \x01(\x0b\x32\x33.google.cloud.speech.v2.RecognitionResponseMetadata\x12\x41\n\ntranscript\x18\x04 \x01(\x0b\x32-.google.cloud.speech.v2.BatchRecognizeResults\"o\n#BatchRecognizeTranscriptionMetadata\x12\x18\n\x10progress_percent\x18\x01 \x01(\x05\x12!\n\x05\x65rror\x18\x02 \x01(\x0b\x32\x12.google.rpc.Status\x12\x0b\n\x03uri\x18\x03 \x01(\t\"\xfe\x01\n\x16\x42\x61tchRecognizeMetadata\x12i\n\x16transcription_metadata\x18\x01 \x03(\x0b\x32I.google.cloud.speech.v2.BatchRecognizeMetadata.TranscriptionMetadataEntry\x1ay\n\x1aTranscriptionMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12J\n\x05value\x18\x02 \x01(\x0b\x32;.google.cloud.speech.v2.BatchRecognizeTranscriptionMetadata:\x02\x38\x01\"\xa7\x01\n\x1a\x42\x61tchRecognizeFileMetadata\x12\r\n\x03uri\x18\x01 \x01(\tH\x00\x12\x39\n\x06\x63onfig\x18\x04 \x01(\x0b\x32).google.cloud.speech.v2.RecognitionConfig\x12/\n\x0b\x63onfig_mask\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x0e\n\x0c\x61udio_source\"\xf4\x01\n\x1aStreamingRecognitionResult\x12J\n\x0c\x61lternatives\x18\x01 \x03(\x0b\x32\x34.google.cloud.speech.v2.SpeechRecognitionAlternative\x12\x10\n\x08is_final\x18\x02 \x01(\x08\x12\x11\n\tstability\x18\x03 \x01(\x02\x12\x34\n\x11result_end_offset\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x13\n\x0b\x63hannel_tag\x18\x05 \x01(\x05\x12\x1a\n\rlanguage_code\x18\x06 \x01(\tB\x03\xe0\x41\x03\"\xc7\x03\n\x1aStreamingRecognizeResponse\x12\x43\n\x07results\x18\x06 \x03(\x0b\x32\x32.google.cloud.speech.v2.StreamingRecognitionResult\x12]\n\x11speech_event_type\x18\x03 \x01(\x0e\x32\x42.google.cloud.speech.v2.StreamingRecognizeResponse.SpeechEventType\x12\x36\n\x13speech_event_offset\x18\x07 \x01(\x0b\x32\x19.google.protobuf.Duration\x12\x45\n\x08metadata\x18\x05 \x01(\x0b\x32\x33.google.cloud.speech.v2.RecognitionResponseMetadata\"\x85\x01\n\x0fSpeechEventType\x12!\n\x1dSPEECH_EVENT_TYPE_UNSPECIFIED\x10\x00\x12\x1b\n\x17\x45ND_OF_SINGLE_UTTERANCE\x10\x01\x12\x19\n\x15SPEECH_ACTIVITY_BEGIN\x10\x02\x12\x17\n\x13SPEECH_ACTIVITY_END\x10\x03\"\xe5\x01\n\x06\x43onfig\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12?\n\x0ckms_key_name\x18\x02 \x01(\tB)\xe0\x41\x01\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:Q\xea\x41N\n\x1cspeech.googleapis.com/Config\x12.projects/{project}/locations/{location}/config\"F\n\x10GetConfigRequest\x12\x32\n\x04name\x18\x01 \x01(\tB$\xe0\x41\x02\xfa\x41\x1e\n\x1cspeech.googleapis.com/Config\"{\n\x13UpdateConfigRequest\x12\x33\n\x06\x63onfig\x18\x01 \x01(\x0b\x32\x1e.google.cloud.speech.v2.ConfigB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"\xa0\x07\n\x0b\x43ustomClass\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x14\n\x0c\x64isplay_name\x18\x04 \x01(\t\x12<\n\x05items\x18\x05 \x03(\x0b\x32-.google.cloud.speech.v2.CustomClass.ClassItem\x12=\n\x05state\x18\x0f \x01(\x0e\x32).google.cloud.speech.v2.CustomClass.StateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x64\x65lete_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x65xpire_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12I\n\x0b\x61nnotations\x18\n \x03(\x0b\x32\x34.google.cloud.speech.v2.CustomClass.AnnotationsEntry\x12\x11\n\x04\x65tag\x18\x0b \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0breconciling\x18\x0c \x01(\x08\x42\x03\xe0\x41\x03\x12?\n\x0ckms_key_name\x18\r \x01(\tB)\xe0\x41\x03\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12N\n\x14kms_key_version_name\x18\x0e \x01(\tB0\xe0\x41\x03\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\x1a\x1a\n\tClassItem\x12\r\n\x05value\x18\x01 \x01(\t\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"7\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0b\n\x07\x44\x45LETED\x10\x04:o\xea\x41l\n!speech.googleapis.com/CustomClass\x12\x44projects/{project}/locations/{location}/customClasses/{custom_class}R\x01\x01\"\xab\x07\n\tPhraseSet\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x10\n\x03uid\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x39\n\x07phrases\x18\x03 \x03(\x0b\x32(.google.cloud.speech.v2.PhraseSet.Phrase\x12\r\n\x05\x62oost\x18\x04 \x01(\x02\x12\x14\n\x0c\x64isplay_name\x18\x05 \x01(\t\x12;\n\x05state\x18\x0f \x01(\x0e\x32\'.google.cloud.speech.v2.PhraseSet.StateB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x64\x65lete_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x65xpire_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12G\n\x0b\x61nnotations\x18\n \x03(\x0b\x32\x32.google.cloud.speech.v2.PhraseSet.AnnotationsEntry\x12\x11\n\x04\x65tag\x18\x0b \x01(\tB\x03\xe0\x41\x03\x12\x18\n\x0breconciling\x18\x0c \x01(\x08\x42\x03\xe0\x41\x03\x12?\n\x0ckms_key_name\x18\r \x01(\tB)\xe0\x41\x03\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\x12N\n\x14kms_key_version_name\x18\x0e \x01(\tB0\xe0\x41\x03\xfa\x41*\n(cloudkms.googleapis.com/CryptoKeyVersion\x1a&\n\x06Phrase\x12\r\n\x05value\x18\x01 \x01(\t\x12\r\n\x05\x62oost\x18\x02 \x01(\x02\x1a\x32\n\x10\x41nnotationsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"7\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\x0b\n\x07\x44\x45LETED\x10\x04:h\xea\x41\x65\n\x1fspeech.googleapis.com/PhraseSet\x12?projects/{project}/locations/{location}/phraseSets/{phrase_set}R\x01\x01\"\xc5\x01\n\x18\x43reateCustomClassRequest\x12>\n\x0c\x63ustom_class\x18\x01 \x01(\x0b\x32#.google.cloud.speech.v2.CustomClassB\x03\xe0\x41\x02\x12\x15\n\rvalidate_only\x18\x02 \x01(\x08\x12\x17\n\x0f\x63ustom_class_id\x18\x03 \x01(\t\x12\x39\n\x06parent\x18\x04 \x01(\tB)\xe0\x41\x02\xfa\x41#\x12!speech.googleapis.com/CustomClass\"\x92\x01\n\x18ListCustomClassesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x14\n\x0cshow_deleted\x18\x04 \x01(\x08\"q\n\x19ListCustomClassesResponse\x12;\n\x0e\x63ustom_classes\x18\x01 \x03(\x0b\x32#.google.cloud.speech.v2.CustomClass\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"P\n\x15GetCustomClassRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!speech.googleapis.com/CustomClass\"\xa2\x01\n\x18UpdateCustomClassRequest\x12>\n\x0c\x63ustom_class\x18\x01 \x01(\x0b\x32#.google.cloud.speech.v2.CustomClassB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x15\n\rvalidate_only\x18\x04 \x01(\x08\"\x8f\x01\n\x18\x44\x65leteCustomClassRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!speech.googleapis.com/CustomClass\x12\x15\n\rvalidate_only\x18\x02 \x01(\x08\x12\x15\n\rallow_missing\x18\x04 \x01(\x08\x12\x0c\n\x04\x65tag\x18\x03 \x01(\t\"z\n\x1aUndeleteCustomClassRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!speech.googleapis.com/CustomClass\x12\x15\n\rvalidate_only\x18\x03 \x01(\x08\x12\x0c\n\x04\x65tag\x18\x04 \x01(\t\"\xbb\x01\n\x16\x43reatePhraseSetRequest\x12:\n\nphrase_set\x18\x01 \x01(\x0b\x32!.google.cloud.speech.v2.PhraseSetB\x03\xe0\x41\x02\x12\x15\n\rvalidate_only\x18\x02 \x01(\x08\x12\x15\n\rphrase_set_id\x18\x03 \x01(\t\x12\x37\n\x06parent\x18\x04 \x01(\tB\'\xe0\x41\x02\xfa\x41!\x12\x1fspeech.googleapis.com/PhraseSet\"\x8f\x01\n\x15ListPhraseSetsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x14\n\x0cshow_deleted\x18\x04 \x01(\x08\"i\n\x16ListPhraseSetsResponse\x12\x36\n\x0bphrase_sets\x18\x01 \x03(\x0b\x32!.google.cloud.speech.v2.PhraseSet\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"L\n\x13GetPhraseSetRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fspeech.googleapis.com/PhraseSet\"\x9c\x01\n\x16UpdatePhraseSetRequest\x12:\n\nphrase_set\x18\x01 \x01(\x0b\x32!.google.cloud.speech.v2.PhraseSetB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\x12\x15\n\rvalidate_only\x18\x04 \x01(\x08\"\x8b\x01\n\x16\x44\x65letePhraseSetRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fspeech.googleapis.com/PhraseSet\x12\x15\n\rvalidate_only\x18\x02 \x01(\x08\x12\x15\n\rallow_missing\x18\x04 \x01(\x08\x12\x0c\n\x04\x65tag\x18\x03 \x01(\t\"v\n\x18UndeletePhraseSetRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fspeech.googleapis.com/PhraseSet\x12\x15\n\rvalidate_only\x18\x03 \x01(\x08\x12\x0c\n\x04\x65tag\x18\x04 \x01(\t2\xbf%\n\x06Speech\x12\xec\x01\n\x10\x43reateRecognizer\x12/.google.cloud.speech.v2.CreateRecognizerRequest\x1a\x1d.google.longrunning.Operation\"\x87\x01\x82\xd3\xe4\x93\x02=\"//v2/{parent=projects/*/locations/*}/recognizers:\nrecognizer\xda\x41\x1fparent,recognizer,recognizer_id\xca\x41\x1f\n\nRecognizer\x12\x11OperationMetadata\x12\xb4\x01\n\x0fListRecognizers\x12..google.cloud.speech.v2.ListRecognizersRequest\x1a/.google.cloud.speech.v2.ListRecognizersResponse\"@\x82\xd3\xe4\x93\x02\x31\x12//v2/{parent=projects/*/locations/*}/recognizers\xda\x41\x06parent\x12\xa1\x01\n\rGetRecognizer\x12,.google.cloud.speech.v2.GetRecognizerRequest\x1a\".google.cloud.speech.v2.Recognizer\">\x82\xd3\xe4\x93\x02\x31\x12//v2/{name=projects/*/locations/*/recognizers/*}\xda\x41\x04name\x12\xee\x01\n\x10UpdateRecognizer\x12/.google.cloud.speech.v2.UpdateRecognizerRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\x82\xd3\xe4\x93\x02H2:/v2/{recognizer.name=projects/*/locations/*/recognizers/*}:\nrecognizer\xda\x41\x16recognizer,update_mask\xca\x41\x1f\n\nRecognizer\x12\x11OperationMetadata\x12\xc4\x01\n\x10\x44\x65leteRecognizer\x12/.google.cloud.speech.v2.DeleteRecognizerRequest\x1a\x1d.google.longrunning.Operation\"`\x82\xd3\xe4\x93\x02\x31*//v2/{name=projects/*/locations/*/recognizers/*}\xda\x41\x04name\xca\x41\x1f\n\nRecognizer\x12\x11OperationMetadata\x12\xd4\x01\n\x12UndeleteRecognizer\x12\x31.google.cloud.speech.v2.UndeleteRecognizerRequest\x1a\x1d.google.longrunning.Operation\"l\x82\xd3\xe4\x93\x02=\"8/v2/{name=projects/*/locations/*/recognizers/*}:undelete:\x01*\xda\x41\x04name\xca\x41\x1f\n\nRecognizer\x12\x11OperationMetadata\x12\xf9\x01\n\tRecognize\x12(.google.cloud.speech.v2.RecognizeRequest\x1a).google.cloud.speech.v2.RecognizeResponse\"\x96\x01\x82\xd3\xe4\x93\x02\x44\"?/v2/{recognizer=projects/*/locations/*/recognizers/*}:recognize:\x01*\xda\x41%recognizer,config,config_mask,content\xda\x41!recognizer,config,config_mask,uri\x12\x81\x01\n\x12StreamingRecognize\x12\x31.google.cloud.speech.v2.StreamingRecognizeRequest\x1a\x32.google.cloud.speech.v2.StreamingRecognizeResponse\"\x00(\x01\x30\x01\x12\x84\x02\n\x0e\x42\x61tchRecognize\x12-.google.cloud.speech.v2.BatchRecognizeRequest\x1a\x1d.google.longrunning.Operation\"\xa3\x01\x82\xd3\xe4\x93\x02I\"D/v2/{recognizer=projects/*/locations/*/recognizers/*}:batchRecognize:\x01*\xda\x41#recognizer,config,config_mask,files\xca\x41+\n\x16\x42\x61tchRecognizeResponse\x12\x11OperationMetadata\x12\x8e\x01\n\tGetConfig\x12(.google.cloud.speech.v2.GetConfigRequest\x1a\x1e.google.cloud.speech.v2.Config\"7\x82\xd3\xe4\x93\x02*\x12(/v2/{name=projects/*/locations/*/config}\xda\x41\x04name\x12\xb1\x01\n\x0cUpdateConfig\x12+.google.cloud.speech.v2.UpdateConfigRequest\x1a\x1e.google.cloud.speech.v2.Config\"T\x82\xd3\xe4\x93\x02\x39\x32//v2/{config.name=projects/*/locations/*/config}:\x06\x63onfig\xda\x41\x12\x63onfig,update_mask\x12\xf7\x01\n\x11\x43reateCustomClass\x12\x30.google.cloud.speech.v2.CreateCustomClassRequest\x1a\x1d.google.longrunning.Operation\"\x90\x01\x82\xd3\xe4\x93\x02\x41\"1/v2/{parent=projects/*/locations/*}/customClasses:\x0c\x63ustom_class\xda\x41#parent,custom_class,custom_class_id\xca\x41 \n\x0b\x43ustomClass\x12\x11OperationMetadata\x12\xbc\x01\n\x11ListCustomClasses\x12\x30.google.cloud.speech.v2.ListCustomClassesRequest\x1a\x31.google.cloud.speech.v2.ListCustomClassesResponse\"B\x82\xd3\xe4\x93\x02\x33\x12\x31/v2/{parent=projects/*/locations/*}/customClasses\xda\x41\x06parent\x12\xa6\x01\n\x0eGetCustomClass\x12-.google.cloud.speech.v2.GetCustomClassRequest\x1a#.google.cloud.speech.v2.CustomClass\"@\x82\xd3\xe4\x93\x02\x33\x12\x31/v2/{name=projects/*/locations/*/customClasses/*}\xda\x41\x04name\x12\xf9\x01\n\x11UpdateCustomClass\x12\x30.google.cloud.speech.v2.UpdateCustomClassRequest\x1a\x1d.google.longrunning.Operation\"\x92\x01\x82\xd3\xe4\x93\x02N2>/v2/{custom_class.name=projects/*/locations/*/customClasses/*}:\x0c\x63ustom_class\xda\x41\x18\x63ustom_class,update_mask\xca\x41 \n\x0b\x43ustomClass\x12\x11OperationMetadata\x12\xc9\x01\n\x11\x44\x65leteCustomClass\x12\x30.google.cloud.speech.v2.DeleteCustomClassRequest\x1a\x1d.google.longrunning.Operation\"c\x82\xd3\xe4\x93\x02\x33*1/v2/{name=projects/*/locations/*/customClasses/*}\xda\x41\x04name\xca\x41 \n\x0b\x43ustomClass\x12\x11OperationMetadata\x12\xd9\x01\n\x13UndeleteCustomClass\x12\x32.google.cloud.speech.v2.UndeleteCustomClassRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02?\":/v2/{name=projects/*/locations/*/customClasses/*}:undelete:\x01*\xda\x41\x04name\xca\x41 \n\x0b\x43ustomClass\x12\x11OperationMetadata\x12\xe8\x01\n\x0f\x43reatePhraseSet\x12..google.cloud.speech.v2.CreatePhraseSetRequest\x1a\x1d.google.longrunning.Operation\"\x85\x01\x82\xd3\xe4\x93\x02<\"./v2/{parent=projects/*/locations/*}/phraseSets:\nphrase_set\xda\x41\x1fparent,phrase_set,phrase_set_id\xca\x41\x1e\n\tPhraseSet\x12\x11OperationMetadata\x12\xb0\x01\n\x0eListPhraseSets\x12-.google.cloud.speech.v2.ListPhraseSetsRequest\x1a..google.cloud.speech.v2.ListPhraseSetsResponse\"?\x82\xd3\xe4\x93\x02\x30\x12./v2/{parent=projects/*/locations/*}/phraseSets\xda\x41\x06parent\x12\x9d\x01\n\x0cGetPhraseSet\x12+.google.cloud.speech.v2.GetPhraseSetRequest\x1a!.google.cloud.speech.v2.PhraseSet\"=\x82\xd3\xe4\x93\x02\x30\x12./v2/{name=projects/*/locations/*/phraseSets/*}\xda\x41\x04name\x12\xea\x01\n\x0fUpdatePhraseSet\x12..google.cloud.speech.v2.UpdatePhraseSetRequest\x1a\x1d.google.longrunning.Operation\"\x87\x01\x82\xd3\xe4\x93\x02G29/v2/{phrase_set.name=projects/*/locations/*/phraseSets/*}:\nphrase_set\xda\x41\x16phrase_set,update_mask\xca\x41\x1e\n\tPhraseSet\x12\x11OperationMetadata\x12\xc0\x01\n\x0f\x44\x65letePhraseSet\x12..google.cloud.speech.v2.DeletePhraseSetRequest\x1a\x1d.google.longrunning.Operation\"^\x82\xd3\xe4\x93\x02\x30*./v2/{name=projects/*/locations/*/phraseSets/*}\xda\x41\x04name\xca\x41\x1e\n\tPhraseSet\x12\x11OperationMetadata\x12\xd0\x01\n\x11UndeletePhraseSet\x12\x30.google.cloud.speech.v2.UndeletePhraseSetRequest\x1a\x1d.google.longrunning.Operation\"j\x82\xd3\xe4\x93\x02<\"7/v2/{name=projects/*/locations/*/phraseSets/*}:undelete:\x01*\xda\x41\x04name\xca\x41\x1e\n\tPhraseSet\x12\x11OperationMetadata\x1aI\xca\x41\x15speech.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\x89\x03\n\x1a\x63om.google.cloud.speech.v2B\x10\x43loudSpeechProtoP\x01Z2cloud.google.com/go/speech/apiv2/speechpb;speechpb\xea\x41x\n!cloudkms.googleapis.com/CryptoKey\x12Sprojects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}\xea\x41\xa6\x01\n(cloudkms.googleapis.com/CryptoKeyVersion\x12zprojects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version}b\x06proto3"
19
+
20
+ pool = Google::Protobuf::DescriptorPool.generated_pool
21
+
22
+ begin
23
+ pool.add_serialized_file(descriptor_data)
24
+ rescue TypeError => e
25
+ # Compatibility code: will be removed in the next major version.
26
+ require 'google/protobuf/descriptor_pb'
27
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
28
+ parsed.clear_dependency
29
+ serialized = parsed.class.encode(parsed)
30
+ file = pool.add_serialized_file(serialized)
31
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
32
+ imports = [
33
+ ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
34
+ ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
35
+ ["google.protobuf.Duration", "google/protobuf/duration.proto"],
36
+ ["google.rpc.Status", "google/rpc/status.proto"],
37
+ ]
38
+ imports.each do |type_name, expected_filename|
39
+ import_file = pool.lookup(type_name).file_descriptor
40
+ if import_file.name != expected_filename
41
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
412
42
  end
413
43
  end
44
+ warn "Each proto file must use a consistent fully-qualified name."
45
+ warn "This will become an error in the next major version."
414
46
  end
415
47
 
416
48
  module Google
@@ -129,7 +129,7 @@ module Google
129
129
  credentials = @config.credentials
130
130
  # Use self-signed JWT if the endpoint is unchanged from default,
131
131
  # but only if the default endpoint does not have a region prefix.
132
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
132
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
133
133
  !@config.endpoint.split(".").first.include?("-")
134
134
  credentials ||= Credentials.default scope: @config.scope,
135
135
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -2578,7 +2578,9 @@ module Google
2578
2578
  class Configuration
2579
2579
  extend ::Gapic::Config
2580
2580
 
2581
- config_attr :endpoint, "speech.googleapis.com", ::String
2581
+ DEFAULT_ENDPOINT = "speech.googleapis.com"
2582
+
2583
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
2582
2584
  config_attr :credentials, nil do |value|
2583
2585
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
2584
2586
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -664,7 +664,9 @@ module Google
664
664
  class Configuration
665
665
  extend ::Gapic::Config
666
666
 
667
- config_attr :endpoint, "speech.googleapis.com", ::String
667
+ DEFAULT_ENDPOINT = "speech.googleapis.com"
668
+
669
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
668
670
  config_attr :credentials, nil do |value|
669
671
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
670
672
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -125,7 +125,7 @@ module Google
125
125
  credentials = @config.credentials
126
126
  # Use self-signed JWT if the endpoint is unchanged from default,
127
127
  # but only if the default endpoint does not have a region prefix.
128
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
128
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
129
129
  !@config.endpoint.split(".").first.include?("-")
130
130
  credentials ||= Credentials.default scope: @config.scope,
131
131
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -1873,7 +1873,9 @@ module Google
1873
1873
  class Configuration
1874
1874
  extend ::Gapic::Config
1875
1875
 
1876
- config_attr :endpoint, "speech.googleapis.com", ::String
1876
+ DEFAULT_ENDPOINT = "speech.googleapis.com"
1877
+
1878
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
1877
1879
  config_attr :credentials, nil do |value|
1878
1880
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1879
1881
  allowed.any? { |klass| klass === value }
@@ -446,7 +446,9 @@ module Google
446
446
  class Configuration
447
447
  extend ::Gapic::Config
448
448
 
449
- config_attr :endpoint, "speech.googleapis.com", ::String
449
+ DEFAULT_ENDPOINT = "speech.googleapis.com"
450
+
451
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
450
452
  config_attr :credentials, nil do |value|
451
453
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
452
454
  allowed.any? { |klass| klass === value }
@@ -567,7 +569,7 @@ module Google
567
569
 
568
570
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_list_operations_request request_pb
569
571
  query_string_params = if query_string_params.any?
570
- query_string_params.to_h { |p| p.split("=", 2) }
572
+ query_string_params.to_h { |p| p.split "=", 2 }
571
573
  else
572
574
  {}
573
575
  end
@@ -605,7 +607,7 @@ module Google
605
607
 
606
608
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_get_operation_request request_pb
607
609
  query_string_params = if query_string_params.any?
608
- query_string_params.to_h { |p| p.split("=", 2) }
610
+ query_string_params.to_h { |p| p.split "=", 2 }
609
611
  else
610
612
  {}
611
613
  end
@@ -643,7 +645,7 @@ module Google
643
645
 
644
646
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_delete_operation_request request_pb
645
647
  query_string_params = if query_string_params.any?
646
- query_string_params.to_h { |p| p.split("=", 2) }
648
+ query_string_params.to_h { |p| p.split "=", 2 }
647
649
  else
648
650
  {}
649
651
  end
@@ -681,7 +683,7 @@ module Google
681
683
 
682
684
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_cancel_operation_request request_pb
683
685
  query_string_params = if query_string_params.any?
684
- query_string_params.to_h { |p| p.split("=", 2) }
686
+ query_string_params.to_h { |p| p.split "=", 2 }
685
687
  else
686
688
  {}
687
689
  end
@@ -59,7 +59,7 @@ module Google
59
59
 
60
60
  verb, uri, query_string_params, body = ServiceStub.transcode_create_recognizer_request request_pb
61
61
  query_string_params = if query_string_params.any?
62
- query_string_params.to_h { |p| p.split("=", 2) }
62
+ query_string_params.to_h { |p| p.split "=", 2 }
63
63
  else
64
64
  {}
65
65
  end
@@ -97,7 +97,7 @@ module Google
97
97
 
98
98
  verb, uri, query_string_params, body = ServiceStub.transcode_list_recognizers_request request_pb
99
99
  query_string_params = if query_string_params.any?
100
- query_string_params.to_h { |p| p.split("=", 2) }
100
+ query_string_params.to_h { |p| p.split "=", 2 }
101
101
  else
102
102
  {}
103
103
  end
@@ -135,7 +135,7 @@ module Google
135
135
 
136
136
  verb, uri, query_string_params, body = ServiceStub.transcode_get_recognizer_request request_pb
137
137
  query_string_params = if query_string_params.any?
138
- query_string_params.to_h { |p| p.split("=", 2) }
138
+ query_string_params.to_h { |p| p.split "=", 2 }
139
139
  else
140
140
  {}
141
141
  end
@@ -173,7 +173,7 @@ module Google
173
173
 
174
174
  verb, uri, query_string_params, body = ServiceStub.transcode_update_recognizer_request request_pb
175
175
  query_string_params = if query_string_params.any?
176
- query_string_params.to_h { |p| p.split("=", 2) }
176
+ query_string_params.to_h { |p| p.split "=", 2 }
177
177
  else
178
178
  {}
179
179
  end
@@ -211,7 +211,7 @@ module Google
211
211
 
212
212
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_recognizer_request request_pb
213
213
  query_string_params = if query_string_params.any?
214
- query_string_params.to_h { |p| p.split("=", 2) }
214
+ query_string_params.to_h { |p| p.split "=", 2 }
215
215
  else
216
216
  {}
217
217
  end
@@ -249,7 +249,7 @@ module Google
249
249
 
250
250
  verb, uri, query_string_params, body = ServiceStub.transcode_undelete_recognizer_request request_pb
251
251
  query_string_params = if query_string_params.any?
252
- query_string_params.to_h { |p| p.split("=", 2) }
252
+ query_string_params.to_h { |p| p.split "=", 2 }
253
253
  else
254
254
  {}
255
255
  end
@@ -287,7 +287,7 @@ module Google
287
287
 
288
288
  verb, uri, query_string_params, body = ServiceStub.transcode_recognize_request request_pb
289
289
  query_string_params = if query_string_params.any?
290
- query_string_params.to_h { |p| p.split("=", 2) }
290
+ query_string_params.to_h { |p| p.split "=", 2 }
291
291
  else
292
292
  {}
293
293
  end
@@ -325,7 +325,7 @@ module Google
325
325
 
326
326
  verb, uri, query_string_params, body = ServiceStub.transcode_batch_recognize_request request_pb
327
327
  query_string_params = if query_string_params.any?
328
- query_string_params.to_h { |p| p.split("=", 2) }
328
+ query_string_params.to_h { |p| p.split "=", 2 }
329
329
  else
330
330
  {}
331
331
  end
@@ -363,7 +363,7 @@ module Google
363
363
 
364
364
  verb, uri, query_string_params, body = ServiceStub.transcode_get_config_request request_pb
365
365
  query_string_params = if query_string_params.any?
366
- query_string_params.to_h { |p| p.split("=", 2) }
366
+ query_string_params.to_h { |p| p.split "=", 2 }
367
367
  else
368
368
  {}
369
369
  end
@@ -401,7 +401,7 @@ module Google
401
401
 
402
402
  verb, uri, query_string_params, body = ServiceStub.transcode_update_config_request request_pb
403
403
  query_string_params = if query_string_params.any?
404
- query_string_params.to_h { |p| p.split("=", 2) }
404
+ query_string_params.to_h { |p| p.split "=", 2 }
405
405
  else
406
406
  {}
407
407
  end
@@ -439,7 +439,7 @@ module Google
439
439
 
440
440
  verb, uri, query_string_params, body = ServiceStub.transcode_create_custom_class_request request_pb
441
441
  query_string_params = if query_string_params.any?
442
- query_string_params.to_h { |p| p.split("=", 2) }
442
+ query_string_params.to_h { |p| p.split "=", 2 }
443
443
  else
444
444
  {}
445
445
  end
@@ -477,7 +477,7 @@ module Google
477
477
 
478
478
  verb, uri, query_string_params, body = ServiceStub.transcode_list_custom_classes_request request_pb
479
479
  query_string_params = if query_string_params.any?
480
- query_string_params.to_h { |p| p.split("=", 2) }
480
+ query_string_params.to_h { |p| p.split "=", 2 }
481
481
  else
482
482
  {}
483
483
  end
@@ -515,7 +515,7 @@ module Google
515
515
 
516
516
  verb, uri, query_string_params, body = ServiceStub.transcode_get_custom_class_request request_pb
517
517
  query_string_params = if query_string_params.any?
518
- query_string_params.to_h { |p| p.split("=", 2) }
518
+ query_string_params.to_h { |p| p.split "=", 2 }
519
519
  else
520
520
  {}
521
521
  end
@@ -553,7 +553,7 @@ module Google
553
553
 
554
554
  verb, uri, query_string_params, body = ServiceStub.transcode_update_custom_class_request request_pb
555
555
  query_string_params = if query_string_params.any?
556
- query_string_params.to_h { |p| p.split("=", 2) }
556
+ query_string_params.to_h { |p| p.split "=", 2 }
557
557
  else
558
558
  {}
559
559
  end
@@ -591,7 +591,7 @@ module Google
591
591
 
592
592
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_custom_class_request request_pb
593
593
  query_string_params = if query_string_params.any?
594
- query_string_params.to_h { |p| p.split("=", 2) }
594
+ query_string_params.to_h { |p| p.split "=", 2 }
595
595
  else
596
596
  {}
597
597
  end
@@ -629,7 +629,7 @@ module Google
629
629
 
630
630
  verb, uri, query_string_params, body = ServiceStub.transcode_undelete_custom_class_request request_pb
631
631
  query_string_params = if query_string_params.any?
632
- query_string_params.to_h { |p| p.split("=", 2) }
632
+ query_string_params.to_h { |p| p.split "=", 2 }
633
633
  else
634
634
  {}
635
635
  end
@@ -667,7 +667,7 @@ module Google
667
667
 
668
668
  verb, uri, query_string_params, body = ServiceStub.transcode_create_phrase_set_request request_pb
669
669
  query_string_params = if query_string_params.any?
670
- query_string_params.to_h { |p| p.split("=", 2) }
670
+ query_string_params.to_h { |p| p.split "=", 2 }
671
671
  else
672
672
  {}
673
673
  end
@@ -705,7 +705,7 @@ module Google
705
705
 
706
706
  verb, uri, query_string_params, body = ServiceStub.transcode_list_phrase_sets_request request_pb
707
707
  query_string_params = if query_string_params.any?
708
- query_string_params.to_h { |p| p.split("=", 2) }
708
+ query_string_params.to_h { |p| p.split "=", 2 }
709
709
  else
710
710
  {}
711
711
  end
@@ -743,7 +743,7 @@ module Google
743
743
 
744
744
  verb, uri, query_string_params, body = ServiceStub.transcode_get_phrase_set_request request_pb
745
745
  query_string_params = if query_string_params.any?
746
- query_string_params.to_h { |p| p.split("=", 2) }
746
+ query_string_params.to_h { |p| p.split "=", 2 }
747
747
  else
748
748
  {}
749
749
  end
@@ -781,7 +781,7 @@ module Google
781
781
 
782
782
  verb, uri, query_string_params, body = ServiceStub.transcode_update_phrase_set_request request_pb
783
783
  query_string_params = if query_string_params.any?
784
- query_string_params.to_h { |p| p.split("=", 2) }
784
+ query_string_params.to_h { |p| p.split "=", 2 }
785
785
  else
786
786
  {}
787
787
  end
@@ -819,7 +819,7 @@ module Google
819
819
 
820
820
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_phrase_set_request request_pb
821
821
  query_string_params = if query_string_params.any?
822
- query_string_params.to_h { |p| p.split("=", 2) }
822
+ query_string_params.to_h { |p| p.split "=", 2 }
823
823
  else
824
824
  {}
825
825
  end
@@ -857,7 +857,7 @@ module Google
857
857
 
858
858
  verb, uri, query_string_params, body = ServiceStub.transcode_undelete_phrase_set_request request_pb
859
859
  query_string_params = if query_string_params.any?
860
- query_string_params.to_h { |p| p.split("=", 2) }
860
+ query_string_params.to_h { |p| p.split "=", 2 }
861
861
  else
862
862
  {}
863
863
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Speech
23
23
  module V2
24
- VERSION = "0.4.0"
24
+ VERSION = "0.5.1"
25
25
  end
26
26
  end
27
27
  end
@@ -43,8 +43,12 @@ module Google
43
43
  # if (any.is(Foo.class)) {
44
44
  # foo = any.unpack(Foo.class);
45
45
  # }
46
+ # // or ...
47
+ # if (any.isSameTypeAs(Foo.getDefaultInstance())) {
48
+ # foo = any.unpack(Foo.getDefaultInstance());
49
+ # }
46
50
  #
47
- # Example 3: Pack and unpack a message in Python.
51
+ # Example 3: Pack and unpack a message in Python.
48
52
  #
49
53
  # foo = Foo(...)
50
54
  # any = Any()
@@ -54,7 +58,7 @@ module Google
54
58
  # any.Unpack(foo)
55
59
  # ...
56
60
  #
57
- # Example 4: Pack and unpack a message in Go
61
+ # Example 4: Pack and unpack a message in Go
58
62
  #
59
63
  # foo := &pb.Foo{...}
60
64
  # any, err := anypb.New(foo)
@@ -73,9 +77,8 @@ module Google
73
77
  # in the type URL, for example "foo.bar.com/x/y.z" will yield type
74
78
  # name "y.z".
75
79
  #
76
- #
77
80
  # JSON
78
- #
81
+ # ====
79
82
  # The JSON representation of an `Any` value uses the regular
80
83
  # representation of the deserialized, embedded message, with an
81
84
  # additional field `@type` which contains the type URL. Example:
@@ -69,7 +69,6 @@ module Google
69
69
  # Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
70
70
  # .setNanos((int) ((millis % 1000) * 1000000)).build();
71
71
  #
72
- #
73
72
  # Example 5: Compute Timestamp from Java `Instant.now()`.
74
73
  #
75
74
  # Instant now = Instant.now();
@@ -78,7 +77,6 @@ module Google
78
77
  # Timestamp.newBuilder().setSeconds(now.getEpochSecond())
79
78
  # .setNanos(now.getNano()).build();
80
79
  #
81
- #
82
80
  # Example 6: Compute Timestamp from current time in Python.
83
81
  #
84
82
  # timestamp = Timestamp()
@@ -108,7 +106,7 @@ module Google
108
106
  # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
109
107
  # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
110
108
  # the Joda Time's [`ISODateTimeFormat.dateTime()`](
111
- # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
109
+ # http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
112
110
  # ) to obtain a formatter capable of generating timestamps in this format.
113
111
  # @!attribute [rw] seconds
114
112
  # @return [::Integer]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-speech-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-17 00:00:00.000000000 Z
11
+ date: 2023-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.18.0
19
+ version: 0.19.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.18.0
29
+ version: 0.19.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a