google-cloud-speech-v2 0.6.0 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/speech/v2/speech/client.rb +10 -1
- data/lib/google/cloud/speech/v2/speech/operations.rb +10 -1
- data/lib/google/cloud/speech/v2/speech/rest/client.rb +455 -0
- data/lib/google/cloud/speech/v2/speech/rest/operations.rb +75 -0
- data/lib/google/cloud/speech/v2/version.rb +1 -1
- data/proto_docs/google/api/field_behavior.rb +14 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6b95b8221216b4904c62396a4ab6e2f7736492a919db18a6828909e1a6f63cd0
|
4
|
+
data.tar.gz: fa34c98b4ea88783faaed06fcc9a62d7a05ebeeba2c4b6e759f4aa6cf629b03a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 99e60ddac960c810190d1b124e54fb4c97347aa7533b8dbaf9395afe53325f0a0802c4bbe03a64cd9936140ba3a186a9faaaf6279a74d08ab4105c4767d5cf71
|
7
|
+
data.tar.gz: 629389dbd64a340304c13f0b76398187f8f4a5efab2b44f108fc39bc4917171f7455c287825c9751aa282faaefb0317c4ac60961dad1e5fca1d10e5e458a6765
|
@@ -156,7 +156,8 @@ module Google
|
|
156
156
|
credentials: credentials,
|
157
157
|
endpoint: @config.endpoint,
|
158
158
|
channel_args: @config.channel_args,
|
159
|
-
interceptors: @config.interceptors
|
159
|
+
interceptors: @config.interceptors,
|
160
|
+
channel_pool_config: @config.channel_pool
|
160
161
|
)
|
161
162
|
end
|
162
163
|
|
@@ -2619,6 +2620,14 @@ module Google
|
|
2619
2620
|
end
|
2620
2621
|
end
|
2621
2622
|
|
2623
|
+
##
|
2624
|
+
# Configuration for the channel pool
|
2625
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
2626
|
+
#
|
2627
|
+
def channel_pool
|
2628
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
2629
|
+
end
|
2630
|
+
|
2622
2631
|
##
|
2623
2632
|
# Configuration RPC class for the Speech API.
|
2624
2633
|
#
|
@@ -93,7 +93,8 @@ module Google
|
|
93
93
|
credentials: credentials,
|
94
94
|
endpoint: @config.endpoint,
|
95
95
|
channel_args: @config.channel_args,
|
96
|
-
interceptors: @config.interceptors
|
96
|
+
interceptors: @config.interceptors,
|
97
|
+
channel_pool_config: @config.channel_pool
|
97
98
|
)
|
98
99
|
|
99
100
|
# Used by an LRO wrapper for some methods of this service
|
@@ -701,6 +702,14 @@ module Google
|
|
701
702
|
end
|
702
703
|
end
|
703
704
|
|
705
|
+
##
|
706
|
+
# Configuration for the channel pool
|
707
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
708
|
+
#
|
709
|
+
def channel_pool
|
710
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
711
|
+
end
|
712
|
+
|
704
713
|
##
|
705
714
|
# Configuration RPC class for the Operations API.
|
706
715
|
#
|
@@ -207,6 +207,29 @@ module Google
|
|
207
207
|
# @return [::Gapic::Operation]
|
208
208
|
#
|
209
209
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
210
|
+
#
|
211
|
+
# @example Basic example
|
212
|
+
# require "google/cloud/speech/v2"
|
213
|
+
#
|
214
|
+
# # Create a client object. The client can be reused for multiple calls.
|
215
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
216
|
+
#
|
217
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
218
|
+
# request = Google::Cloud::Speech::V2::CreateRecognizerRequest.new
|
219
|
+
#
|
220
|
+
# # Call the create_recognizer method.
|
221
|
+
# result = client.create_recognizer request
|
222
|
+
#
|
223
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
224
|
+
# # check the status of an operation, cancel it, or wait for results.
|
225
|
+
# # Here is how to wait for a response.
|
226
|
+
# result.wait_until_done! timeout: 60
|
227
|
+
# if result.response?
|
228
|
+
# p result.response
|
229
|
+
# else
|
230
|
+
# puts "No response received."
|
231
|
+
# end
|
232
|
+
#
|
210
233
|
def create_recognizer request, options = nil
|
211
234
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
212
235
|
|
@@ -285,6 +308,26 @@ module Google
|
|
285
308
|
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Speech::V2::Recognizer>]
|
286
309
|
#
|
287
310
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
311
|
+
#
|
312
|
+
# @example Basic example
|
313
|
+
# require "google/cloud/speech/v2"
|
314
|
+
#
|
315
|
+
# # Create a client object. The client can be reused for multiple calls.
|
316
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
317
|
+
#
|
318
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
319
|
+
# request = Google::Cloud::Speech::V2::ListRecognizersRequest.new
|
320
|
+
#
|
321
|
+
# # Call the list_recognizers method.
|
322
|
+
# result = client.list_recognizers request
|
323
|
+
#
|
324
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
325
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
326
|
+
# result.each do |item|
|
327
|
+
# # Each element is of type ::Google::Cloud::Speech::V2::Recognizer.
|
328
|
+
# p item
|
329
|
+
# end
|
330
|
+
#
|
288
331
|
def list_recognizers request, options = nil
|
289
332
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
290
333
|
|
@@ -352,6 +395,22 @@ module Google
|
|
352
395
|
# @return [::Google::Cloud::Speech::V2::Recognizer]
|
353
396
|
#
|
354
397
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
398
|
+
#
|
399
|
+
# @example Basic example
|
400
|
+
# require "google/cloud/speech/v2"
|
401
|
+
#
|
402
|
+
# # Create a client object. The client can be reused for multiple calls.
|
403
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
404
|
+
#
|
405
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
406
|
+
# request = Google::Cloud::Speech::V2::GetRecognizerRequest.new
|
407
|
+
#
|
408
|
+
# # Call the get_recognizer method.
|
409
|
+
# result = client.get_recognizer request
|
410
|
+
#
|
411
|
+
# # The returned object is of type Google::Cloud::Speech::V2::Recognizer.
|
412
|
+
# p result
|
413
|
+
#
|
355
414
|
def get_recognizer request, options = nil
|
356
415
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
357
416
|
|
@@ -423,6 +482,29 @@ module Google
|
|
423
482
|
# @return [::Gapic::Operation]
|
424
483
|
#
|
425
484
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
485
|
+
#
|
486
|
+
# @example Basic example
|
487
|
+
# require "google/cloud/speech/v2"
|
488
|
+
#
|
489
|
+
# # Create a client object. The client can be reused for multiple calls.
|
490
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
491
|
+
#
|
492
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
493
|
+
# request = Google::Cloud::Speech::V2::UpdateRecognizerRequest.new
|
494
|
+
#
|
495
|
+
# # Call the update_recognizer method.
|
496
|
+
# result = client.update_recognizer request
|
497
|
+
#
|
498
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
499
|
+
# # check the status of an operation, cancel it, or wait for results.
|
500
|
+
# # Here is how to wait for a response.
|
501
|
+
# result.wait_until_done! timeout: 60
|
502
|
+
# if result.response?
|
503
|
+
# p result.response
|
504
|
+
# else
|
505
|
+
# puts "No response received."
|
506
|
+
# end
|
507
|
+
#
|
426
508
|
def update_recognizer request, options = nil
|
427
509
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
428
510
|
|
@@ -497,6 +579,29 @@ module Google
|
|
497
579
|
# @return [::Gapic::Operation]
|
498
580
|
#
|
499
581
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
582
|
+
#
|
583
|
+
# @example Basic example
|
584
|
+
# require "google/cloud/speech/v2"
|
585
|
+
#
|
586
|
+
# # Create a client object. The client can be reused for multiple calls.
|
587
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
588
|
+
#
|
589
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
590
|
+
# request = Google::Cloud::Speech::V2::DeleteRecognizerRequest.new
|
591
|
+
#
|
592
|
+
# # Call the delete_recognizer method.
|
593
|
+
# result = client.delete_recognizer request
|
594
|
+
#
|
595
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
596
|
+
# # check the status of an operation, cancel it, or wait for results.
|
597
|
+
# # Here is how to wait for a response.
|
598
|
+
# result.wait_until_done! timeout: 60
|
599
|
+
# if result.response?
|
600
|
+
# p result.response
|
601
|
+
# else
|
602
|
+
# puts "No response received."
|
603
|
+
# end
|
604
|
+
#
|
500
605
|
def delete_recognizer request, options = nil
|
501
606
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
502
607
|
|
@@ -568,6 +673,29 @@ module Google
|
|
568
673
|
# @return [::Gapic::Operation]
|
569
674
|
#
|
570
675
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
676
|
+
#
|
677
|
+
# @example Basic example
|
678
|
+
# require "google/cloud/speech/v2"
|
679
|
+
#
|
680
|
+
# # Create a client object. The client can be reused for multiple calls.
|
681
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
682
|
+
#
|
683
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
684
|
+
# request = Google::Cloud::Speech::V2::UndeleteRecognizerRequest.new
|
685
|
+
#
|
686
|
+
# # Call the undelete_recognizer method.
|
687
|
+
# result = client.undelete_recognizer request
|
688
|
+
#
|
689
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
690
|
+
# # check the status of an operation, cancel it, or wait for results.
|
691
|
+
# # Here is how to wait for a response.
|
692
|
+
# result.wait_until_done! timeout: 60
|
693
|
+
# if result.response?
|
694
|
+
# p result.response
|
695
|
+
# else
|
696
|
+
# puts "No response received."
|
697
|
+
# end
|
698
|
+
#
|
571
699
|
def undelete_recognizer request, options = nil
|
572
700
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
573
701
|
|
@@ -670,6 +798,22 @@ module Google
|
|
670
798
|
# @return [::Google::Cloud::Speech::V2::RecognizeResponse]
|
671
799
|
#
|
672
800
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
801
|
+
#
|
802
|
+
# @example Basic example
|
803
|
+
# require "google/cloud/speech/v2"
|
804
|
+
#
|
805
|
+
# # Create a client object. The client can be reused for multiple calls.
|
806
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
807
|
+
#
|
808
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
809
|
+
# request = Google::Cloud::Speech::V2::RecognizeRequest.new
|
810
|
+
#
|
811
|
+
# # Call the recognize method.
|
812
|
+
# result = client.recognize request
|
813
|
+
#
|
814
|
+
# # The returned object is of type Google::Cloud::Speech::V2::RecognizeResponse.
|
815
|
+
# p result
|
816
|
+
#
|
673
817
|
def recognize request, options = nil
|
674
818
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
675
819
|
|
@@ -765,6 +909,29 @@ module Google
|
|
765
909
|
# @return [::Gapic::Operation]
|
766
910
|
#
|
767
911
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
912
|
+
#
|
913
|
+
# @example Basic example
|
914
|
+
# require "google/cloud/speech/v2"
|
915
|
+
#
|
916
|
+
# # Create a client object. The client can be reused for multiple calls.
|
917
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
918
|
+
#
|
919
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
920
|
+
# request = Google::Cloud::Speech::V2::BatchRecognizeRequest.new
|
921
|
+
#
|
922
|
+
# # Call the batch_recognize method.
|
923
|
+
# result = client.batch_recognize request
|
924
|
+
#
|
925
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
926
|
+
# # check the status of an operation, cancel it, or wait for results.
|
927
|
+
# # Here is how to wait for a response.
|
928
|
+
# result.wait_until_done! timeout: 60
|
929
|
+
# if result.response?
|
930
|
+
# p result.response
|
931
|
+
# else
|
932
|
+
# puts "No response received."
|
933
|
+
# end
|
934
|
+
#
|
768
935
|
def batch_recognize request, options = nil
|
769
936
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
770
937
|
|
@@ -830,6 +997,22 @@ module Google
|
|
830
997
|
# @return [::Google::Cloud::Speech::V2::Config]
|
831
998
|
#
|
832
999
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1000
|
+
#
|
1001
|
+
# @example Basic example
|
1002
|
+
# require "google/cloud/speech/v2"
|
1003
|
+
#
|
1004
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1005
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1006
|
+
#
|
1007
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1008
|
+
# request = Google::Cloud::Speech::V2::GetConfigRequest.new
|
1009
|
+
#
|
1010
|
+
# # Call the get_config method.
|
1011
|
+
# result = client.get_config request
|
1012
|
+
#
|
1013
|
+
# # The returned object is of type Google::Cloud::Speech::V2::Config.
|
1014
|
+
# p result
|
1015
|
+
#
|
833
1016
|
def get_config request, options = nil
|
834
1017
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
835
1018
|
|
@@ -897,6 +1080,22 @@ module Google
|
|
897
1080
|
# @return [::Google::Cloud::Speech::V2::Config]
|
898
1081
|
#
|
899
1082
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1083
|
+
#
|
1084
|
+
# @example Basic example
|
1085
|
+
# require "google/cloud/speech/v2"
|
1086
|
+
#
|
1087
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1088
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1089
|
+
#
|
1090
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1091
|
+
# request = Google::Cloud::Speech::V2::UpdateConfigRequest.new
|
1092
|
+
#
|
1093
|
+
# # Call the update_config method.
|
1094
|
+
# result = client.update_config request
|
1095
|
+
#
|
1096
|
+
# # The returned object is of type Google::Cloud::Speech::V2::Config.
|
1097
|
+
# p result
|
1098
|
+
#
|
900
1099
|
def update_config request, options = nil
|
901
1100
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
902
1101
|
|
@@ -971,6 +1170,29 @@ module Google
|
|
971
1170
|
# @return [::Gapic::Operation]
|
972
1171
|
#
|
973
1172
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1173
|
+
#
|
1174
|
+
# @example Basic example
|
1175
|
+
# require "google/cloud/speech/v2"
|
1176
|
+
#
|
1177
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1178
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1179
|
+
#
|
1180
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1181
|
+
# request = Google::Cloud::Speech::V2::CreateCustomClassRequest.new
|
1182
|
+
#
|
1183
|
+
# # Call the create_custom_class method.
|
1184
|
+
# result = client.create_custom_class request
|
1185
|
+
#
|
1186
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1187
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1188
|
+
# # Here is how to wait for a response.
|
1189
|
+
# result.wait_until_done! timeout: 60
|
1190
|
+
# if result.response?
|
1191
|
+
# p result.response
|
1192
|
+
# else
|
1193
|
+
# puts "No response received."
|
1194
|
+
# end
|
1195
|
+
#
|
974
1196
|
def create_custom_class request, options = nil
|
975
1197
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
976
1198
|
|
@@ -1050,6 +1272,26 @@ module Google
|
|
1050
1272
|
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Speech::V2::CustomClass>]
|
1051
1273
|
#
|
1052
1274
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1275
|
+
#
|
1276
|
+
# @example Basic example
|
1277
|
+
# require "google/cloud/speech/v2"
|
1278
|
+
#
|
1279
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1280
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1281
|
+
#
|
1282
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1283
|
+
# request = Google::Cloud::Speech::V2::ListCustomClassesRequest.new
|
1284
|
+
#
|
1285
|
+
# # Call the list_custom_classes method.
|
1286
|
+
# result = client.list_custom_classes request
|
1287
|
+
#
|
1288
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
1289
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
1290
|
+
# result.each do |item|
|
1291
|
+
# # Each element is of type ::Google::Cloud::Speech::V2::CustomClass.
|
1292
|
+
# p item
|
1293
|
+
# end
|
1294
|
+
#
|
1053
1295
|
def list_custom_classes request, options = nil
|
1054
1296
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1055
1297
|
|
@@ -1115,6 +1357,22 @@ module Google
|
|
1115
1357
|
# @return [::Google::Cloud::Speech::V2::CustomClass]
|
1116
1358
|
#
|
1117
1359
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1360
|
+
#
|
1361
|
+
# @example Basic example
|
1362
|
+
# require "google/cloud/speech/v2"
|
1363
|
+
#
|
1364
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1365
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1366
|
+
#
|
1367
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1368
|
+
# request = Google::Cloud::Speech::V2::GetCustomClassRequest.new
|
1369
|
+
#
|
1370
|
+
# # Call the get_custom_class method.
|
1371
|
+
# result = client.get_custom_class request
|
1372
|
+
#
|
1373
|
+
# # The returned object is of type Google::Cloud::Speech::V2::CustomClass.
|
1374
|
+
# p result
|
1375
|
+
#
|
1118
1376
|
def get_custom_class request, options = nil
|
1119
1377
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1120
1378
|
|
@@ -1187,6 +1445,29 @@ module Google
|
|
1187
1445
|
# @return [::Gapic::Operation]
|
1188
1446
|
#
|
1189
1447
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1448
|
+
#
|
1449
|
+
# @example Basic example
|
1450
|
+
# require "google/cloud/speech/v2"
|
1451
|
+
#
|
1452
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1453
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1454
|
+
#
|
1455
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1456
|
+
# request = Google::Cloud::Speech::V2::UpdateCustomClassRequest.new
|
1457
|
+
#
|
1458
|
+
# # Call the update_custom_class method.
|
1459
|
+
# result = client.update_custom_class request
|
1460
|
+
#
|
1461
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1462
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1463
|
+
# # Here is how to wait for a response.
|
1464
|
+
# result.wait_until_done! timeout: 60
|
1465
|
+
# if result.response?
|
1466
|
+
# p result.response
|
1467
|
+
# else
|
1468
|
+
# puts "No response received."
|
1469
|
+
# end
|
1470
|
+
#
|
1190
1471
|
def update_custom_class request, options = nil
|
1191
1472
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1192
1473
|
|
@@ -1262,6 +1543,29 @@ module Google
|
|
1262
1543
|
# @return [::Gapic::Operation]
|
1263
1544
|
#
|
1264
1545
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1546
|
+
#
|
1547
|
+
# @example Basic example
|
1548
|
+
# require "google/cloud/speech/v2"
|
1549
|
+
#
|
1550
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1551
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1552
|
+
#
|
1553
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1554
|
+
# request = Google::Cloud::Speech::V2::DeleteCustomClassRequest.new
|
1555
|
+
#
|
1556
|
+
# # Call the delete_custom_class method.
|
1557
|
+
# result = client.delete_custom_class request
|
1558
|
+
#
|
1559
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1560
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1561
|
+
# # Here is how to wait for a response.
|
1562
|
+
# result.wait_until_done! timeout: 60
|
1563
|
+
# if result.response?
|
1564
|
+
# p result.response
|
1565
|
+
# else
|
1566
|
+
# puts "No response received."
|
1567
|
+
# end
|
1568
|
+
#
|
1265
1569
|
def delete_custom_class request, options = nil
|
1266
1570
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1267
1571
|
|
@@ -1334,6 +1638,29 @@ module Google
|
|
1334
1638
|
# @return [::Gapic::Operation]
|
1335
1639
|
#
|
1336
1640
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1641
|
+
#
|
1642
|
+
# @example Basic example
|
1643
|
+
# require "google/cloud/speech/v2"
|
1644
|
+
#
|
1645
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1646
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1647
|
+
#
|
1648
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1649
|
+
# request = Google::Cloud::Speech::V2::UndeleteCustomClassRequest.new
|
1650
|
+
#
|
1651
|
+
# # Call the undelete_custom_class method.
|
1652
|
+
# result = client.undelete_custom_class request
|
1653
|
+
#
|
1654
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1655
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1656
|
+
# # Here is how to wait for a response.
|
1657
|
+
# result.wait_until_done! timeout: 60
|
1658
|
+
# if result.response?
|
1659
|
+
# p result.response
|
1660
|
+
# else
|
1661
|
+
# puts "No response received."
|
1662
|
+
# end
|
1663
|
+
#
|
1337
1664
|
def undelete_custom_class request, options = nil
|
1338
1665
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1339
1666
|
|
@@ -1409,6 +1736,29 @@ module Google
|
|
1409
1736
|
# @return [::Gapic::Operation]
|
1410
1737
|
#
|
1411
1738
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1739
|
+
#
|
1740
|
+
# @example Basic example
|
1741
|
+
# require "google/cloud/speech/v2"
|
1742
|
+
#
|
1743
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1744
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1745
|
+
#
|
1746
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1747
|
+
# request = Google::Cloud::Speech::V2::CreatePhraseSetRequest.new
|
1748
|
+
#
|
1749
|
+
# # Call the create_phrase_set method.
|
1750
|
+
# result = client.create_phrase_set request
|
1751
|
+
#
|
1752
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
1753
|
+
# # check the status of an operation, cancel it, or wait for results.
|
1754
|
+
# # Here is how to wait for a response.
|
1755
|
+
# result.wait_until_done! timeout: 60
|
1756
|
+
# if result.response?
|
1757
|
+
# p result.response
|
1758
|
+
# else
|
1759
|
+
# puts "No response received."
|
1760
|
+
# end
|
1761
|
+
#
|
1412
1762
|
def create_phrase_set request, options = nil
|
1413
1763
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1414
1764
|
|
@@ -1487,6 +1837,26 @@ module Google
|
|
1487
1837
|
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Speech::V2::PhraseSet>]
|
1488
1838
|
#
|
1489
1839
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1840
|
+
#
|
1841
|
+
# @example Basic example
|
1842
|
+
# require "google/cloud/speech/v2"
|
1843
|
+
#
|
1844
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1845
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1846
|
+
#
|
1847
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1848
|
+
# request = Google::Cloud::Speech::V2::ListPhraseSetsRequest.new
|
1849
|
+
#
|
1850
|
+
# # Call the list_phrase_sets method.
|
1851
|
+
# result = client.list_phrase_sets request
|
1852
|
+
#
|
1853
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
1854
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
1855
|
+
# result.each do |item|
|
1856
|
+
# # Each element is of type ::Google::Cloud::Speech::V2::PhraseSet.
|
1857
|
+
# p item
|
1858
|
+
# end
|
1859
|
+
#
|
1490
1860
|
def list_phrase_sets request, options = nil
|
1491
1861
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1492
1862
|
|
@@ -1552,6 +1922,22 @@ module Google
|
|
1552
1922
|
# @return [::Google::Cloud::Speech::V2::PhraseSet]
|
1553
1923
|
#
|
1554
1924
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
1925
|
+
#
|
1926
|
+
# @example Basic example
|
1927
|
+
# require "google/cloud/speech/v2"
|
1928
|
+
#
|
1929
|
+
# # Create a client object. The client can be reused for multiple calls.
|
1930
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
1931
|
+
#
|
1932
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
1933
|
+
# request = Google::Cloud::Speech::V2::GetPhraseSetRequest.new
|
1934
|
+
#
|
1935
|
+
# # Call the get_phrase_set method.
|
1936
|
+
# result = client.get_phrase_set request
|
1937
|
+
#
|
1938
|
+
# # The returned object is of type Google::Cloud::Speech::V2::PhraseSet.
|
1939
|
+
# p result
|
1940
|
+
#
|
1555
1941
|
def get_phrase_set request, options = nil
|
1556
1942
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1557
1943
|
|
@@ -1623,6 +2009,29 @@ module Google
|
|
1623
2009
|
# @return [::Gapic::Operation]
|
1624
2010
|
#
|
1625
2011
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2012
|
+
#
|
2013
|
+
# @example Basic example
|
2014
|
+
# require "google/cloud/speech/v2"
|
2015
|
+
#
|
2016
|
+
# # Create a client object. The client can be reused for multiple calls.
|
2017
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
2018
|
+
#
|
2019
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
2020
|
+
# request = Google::Cloud::Speech::V2::UpdatePhraseSetRequest.new
|
2021
|
+
#
|
2022
|
+
# # Call the update_phrase_set method.
|
2023
|
+
# result = client.update_phrase_set request
|
2024
|
+
#
|
2025
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
2026
|
+
# # check the status of an operation, cancel it, or wait for results.
|
2027
|
+
# # Here is how to wait for a response.
|
2028
|
+
# result.wait_until_done! timeout: 60
|
2029
|
+
# if result.response?
|
2030
|
+
# p result.response
|
2031
|
+
# else
|
2032
|
+
# puts "No response received."
|
2033
|
+
# end
|
2034
|
+
#
|
1626
2035
|
def update_phrase_set request, options = nil
|
1627
2036
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1628
2037
|
|
@@ -1697,6 +2106,29 @@ module Google
|
|
1697
2106
|
# @return [::Gapic::Operation]
|
1698
2107
|
#
|
1699
2108
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2109
|
+
#
|
2110
|
+
# @example Basic example
|
2111
|
+
# require "google/cloud/speech/v2"
|
2112
|
+
#
|
2113
|
+
# # Create a client object. The client can be reused for multiple calls.
|
2114
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
2115
|
+
#
|
2116
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
2117
|
+
# request = Google::Cloud::Speech::V2::DeletePhraseSetRequest.new
|
2118
|
+
#
|
2119
|
+
# # Call the delete_phrase_set method.
|
2120
|
+
# result = client.delete_phrase_set request
|
2121
|
+
#
|
2122
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
2123
|
+
# # check the status of an operation, cancel it, or wait for results.
|
2124
|
+
# # Here is how to wait for a response.
|
2125
|
+
# result.wait_until_done! timeout: 60
|
2126
|
+
# if result.response?
|
2127
|
+
# p result.response
|
2128
|
+
# else
|
2129
|
+
# puts "No response received."
|
2130
|
+
# end
|
2131
|
+
#
|
1700
2132
|
def delete_phrase_set request, options = nil
|
1701
2133
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1702
2134
|
|
@@ -1768,6 +2200,29 @@ module Google
|
|
1768
2200
|
# @return [::Gapic::Operation]
|
1769
2201
|
#
|
1770
2202
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
2203
|
+
#
|
2204
|
+
# @example Basic example
|
2205
|
+
# require "google/cloud/speech/v2"
|
2206
|
+
#
|
2207
|
+
# # Create a client object. The client can be reused for multiple calls.
|
2208
|
+
# client = Google::Cloud::Speech::V2::Speech::Rest::Client.new
|
2209
|
+
#
|
2210
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
2211
|
+
# request = Google::Cloud::Speech::V2::UndeletePhraseSetRequest.new
|
2212
|
+
#
|
2213
|
+
# # Call the undelete_phrase_set method.
|
2214
|
+
# result = client.undelete_phrase_set request
|
2215
|
+
#
|
2216
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
2217
|
+
# # check the status of an operation, cancel it, or wait for results.
|
2218
|
+
# # Here is how to wait for a response.
|
2219
|
+
# result.wait_until_done! timeout: 60
|
2220
|
+
# if result.response?
|
2221
|
+
# p result.response
|
2222
|
+
# else
|
2223
|
+
# puts "No response received."
|
2224
|
+
# end
|
2225
|
+
#
|
1771
2226
|
def undelete_phrase_set request, options = nil
|
1772
2227
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
1773
2228
|
|
@@ -136,6 +136,26 @@ module Google
|
|
136
136
|
# @return [::Gapic::Operation]
|
137
137
|
#
|
138
138
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
139
|
+
#
|
140
|
+
# @example Basic example
|
141
|
+
# require "google/longrunning"
|
142
|
+
#
|
143
|
+
# # Create a client object. The client can be reused for multiple calls.
|
144
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
145
|
+
#
|
146
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
147
|
+
# request = Google::Longrunning::ListOperationsRequest.new
|
148
|
+
#
|
149
|
+
# # Call the list_operations method.
|
150
|
+
# result = client.list_operations request
|
151
|
+
#
|
152
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
153
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
154
|
+
# result.each do |item|
|
155
|
+
# # Each element is of type ::Google::Longrunning::Operation.
|
156
|
+
# p item
|
157
|
+
# end
|
158
|
+
#
|
139
159
|
def list_operations request, options = nil
|
140
160
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
141
161
|
|
@@ -201,6 +221,29 @@ module Google
|
|
201
221
|
# @return [::Gapic::Operation]
|
202
222
|
#
|
203
223
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
224
|
+
#
|
225
|
+
# @example Basic example
|
226
|
+
# require "google/longrunning"
|
227
|
+
#
|
228
|
+
# # Create a client object. The client can be reused for multiple calls.
|
229
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
230
|
+
#
|
231
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
232
|
+
# request = Google::Longrunning::GetOperationRequest.new
|
233
|
+
#
|
234
|
+
# # Call the get_operation method.
|
235
|
+
# result = client.get_operation request
|
236
|
+
#
|
237
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
238
|
+
# # check the status of an operation, cancel it, or wait for results.
|
239
|
+
# # Here is how to wait for a response.
|
240
|
+
# result.wait_until_done! timeout: 60
|
241
|
+
# if result.response?
|
242
|
+
# p result.response
|
243
|
+
# else
|
244
|
+
# puts "No response received."
|
245
|
+
# end
|
246
|
+
#
|
204
247
|
def get_operation request, options = nil
|
205
248
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
206
249
|
|
@@ -267,6 +310,22 @@ module Google
|
|
267
310
|
# @return [::Google::Protobuf::Empty]
|
268
311
|
#
|
269
312
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
313
|
+
#
|
314
|
+
# @example Basic example
|
315
|
+
# require "google/longrunning"
|
316
|
+
#
|
317
|
+
# # Create a client object. The client can be reused for multiple calls.
|
318
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
319
|
+
#
|
320
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
321
|
+
# request = Google::Longrunning::DeleteOperationRequest.new
|
322
|
+
#
|
323
|
+
# # Call the delete_operation method.
|
324
|
+
# result = client.delete_operation request
|
325
|
+
#
|
326
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
327
|
+
# p result
|
328
|
+
#
|
270
329
|
def delete_operation request, options = nil
|
271
330
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
272
331
|
|
@@ -338,6 +397,22 @@ module Google
|
|
338
397
|
# @return [::Google::Protobuf::Empty]
|
339
398
|
#
|
340
399
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
400
|
+
#
|
401
|
+
# @example Basic example
|
402
|
+
# require "google/longrunning"
|
403
|
+
#
|
404
|
+
# # Create a client object. The client can be reused for multiple calls.
|
405
|
+
# client = Google::Longrunning::Operations::Rest::Client.new
|
406
|
+
#
|
407
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
408
|
+
# request = Google::Longrunning::CancelOperationRequest.new
|
409
|
+
#
|
410
|
+
# # Call the cancel_operation method.
|
411
|
+
# result = client.cancel_operation request
|
412
|
+
#
|
413
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
414
|
+
# p result
|
415
|
+
#
|
341
416
|
def cancel_operation request, options = nil
|
342
417
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
343
418
|
|
@@ -66,6 +66,20 @@ module Google
|
|
66
66
|
# a non-empty value will be returned. The user will not be aware of what
|
67
67
|
# non-empty value to expect.
|
68
68
|
NON_EMPTY_DEFAULT = 7
|
69
|
+
|
70
|
+
# Denotes that the field in a resource (a message annotated with
|
71
|
+
# google.api.resource) is used in the resource name to uniquely identify the
|
72
|
+
# resource. For AIP-compliant APIs, this should only be applied to the
|
73
|
+
# `name` field on the resource.
|
74
|
+
#
|
75
|
+
# This behavior should not be applied to references to other resources within
|
76
|
+
# the message.
|
77
|
+
#
|
78
|
+
# The identifier field of resources often have different field behavior
|
79
|
+
# depending on the request it is embedded in (e.g. for Create methods name
|
80
|
+
# is optional and unused, while for Update methods it is required). Instead
|
81
|
+
# of method-specific annotations, only `IDENTIFIER` is required.
|
82
|
+
IDENTIFIER = 8
|
69
83
|
end
|
70
84
|
end
|
71
85
|
end
|
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
|
+
version: 0.7.0
|
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-
|
11
|
+
date: 2023-09-12 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.
|
19
|
+
version: 0.20.0
|
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.
|
29
|
+
version: 0.20.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -241,7 +241,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
241
241
|
- !ruby/object:Gem::Version
|
242
242
|
version: '0'
|
243
243
|
requirements: []
|
244
|
-
rubygems_version: 3.4.
|
244
|
+
rubygems_version: 3.4.19
|
245
245
|
signing_key:
|
246
246
|
specification_version: 4
|
247
247
|
summary: Converts audio to text by applying powerful neural network models.
|