google-cloud-speech-v1 0.10.1 → 0.11.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/v1/adaptation/client.rb +8 -12
- data/lib/google/cloud/speech/v1/adaptation/rest/client.rb +1087 -0
- data/lib/google/cloud/speech/v1/adaptation/rest/service_stub.rb +642 -0
- data/lib/google/cloud/speech/v1/adaptation/rest.rb +52 -0
- data/lib/google/cloud/speech/v1/adaptation.rb +6 -0
- data/lib/google/cloud/speech/v1/rest.rb +38 -0
- data/lib/google/cloud/speech/v1/speech/client.rb +11 -11
- data/lib/google/cloud/speech/v1/speech/operations.rb +12 -22
- data/lib/google/cloud/speech/v1/speech/rest/client.rb +448 -0
- data/lib/google/cloud/speech/v1/speech/rest/operations.rb +791 -0
- data/lib/google/cloud/speech/v1/speech/rest/service_stub.rb +164 -0
- data/lib/google/cloud/speech/v1/speech/rest.rb +53 -0
- data/lib/google/cloud/speech/v1/speech.rb +6 -0
- data/lib/google/cloud/speech/v1/version.rb +1 -1
- data/lib/google/cloud/speech/v1.rb +5 -0
- metadata +14 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3b8d30c86908298f03ad30a9bac371535967be78d2d8876192b4e95a24c60b3a
|
4
|
+
data.tar.gz: 390bb4dedb2679807486df2974f614e66e8ffb1b82d11e7151cd78fd814533a7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bd36ba2e48c2ad07491faa766d9dc4ffc71db8f15f903044feb13bcb137906d7322ab0c10da91c041c0c73d54508a2f80b4942c4df06d8f93889733106560bcd
|
7
|
+
data.tar.gz: 34cf9fa2aa0549dccc6337151299fb93bdff1ea6069972af69abca72ac2d1002209a967405fddb85ea30ed8dcf852baefed22e83ecfc698c0882e3ec1e5b935b
|
@@ -401,13 +401,11 @@ module Google
|
|
401
401
|
# # Call the list_phrase_set method.
|
402
402
|
# result = client.list_phrase_set request
|
403
403
|
#
|
404
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
405
|
-
# #
|
406
|
-
#
|
407
|
-
# # methods are also available for managing paging directly.
|
408
|
-
# result.each do |response|
|
404
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
405
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
406
|
+
# result.each do |item|
|
409
407
|
# # Each element is of type ::Google::Cloud::Speech::V1::PhraseSet.
|
410
|
-
# p
|
408
|
+
# p item
|
411
409
|
# end
|
412
410
|
#
|
413
411
|
def list_phrase_set request, options = nil
|
@@ -886,13 +884,11 @@ module Google
|
|
886
884
|
# # Call the list_custom_classes method.
|
887
885
|
# result = client.list_custom_classes request
|
888
886
|
#
|
889
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
890
|
-
# #
|
891
|
-
#
|
892
|
-
# # methods are also available for managing paging directly.
|
893
|
-
# result.each do |response|
|
887
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
888
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
889
|
+
# result.each do |item|
|
894
890
|
# # Each element is of type ::Google::Cloud::Speech::V1::CustomClass.
|
895
|
-
# p
|
891
|
+
# p item
|
896
892
|
# end
|
897
893
|
#
|
898
894
|
def list_custom_classes request, options = nil
|