google-cloud-text_to_speech-v1 0.2.0 → 0.2.5

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: ccbcbda3410051cbc869abef68be6816fc04cb020a7d9bdd0bfdc4eb0ca5286b
4
- data.tar.gz: dcbe173bb0403d3fff34550aed7786d9194cd85db697392c9d32908e9d873451
3
+ metadata.gz: a15fc2c6e14b5ff48bfc87a1b6df7deb0857651183e316477cf96b9140de4769
4
+ data.tar.gz: 6621dbd8854ee54c41c6a8a499ce7c3d3bd22e63401e6424fa3a8140dba800f4
5
5
  SHA512:
6
- metadata.gz: 17bb96acde30e55becd89e1de5fb29f9ab7e63de9427d55aa1c188a34da0699a760f8b6cac01c6a4068c678e7ebcc5dc01c5d37f74cabae9783d1323e99b6cac
7
- data.tar.gz: e4ed982e4750bdb69dfc886d97ef593a8561a6a1b7e29db4524921e336c2f8949d8c7eb47e94a24ff64b86be83ad1a787eecd3a7c00cb996a9068abcc28c5878
6
+ metadata.gz: 9abcdf8f943cbc21b45f0f1973245c4251667842cbdd417a45759cd3431c88222ec166cdd65aa1f921056f344749c7c93957993396caa2151436e0cf40824b6a
7
+ data.tar.gz: 6d4aceb17f65103c045a18f4d96646b2690b32b861e863fc26c8b4af1ad114456db7e73b0c2a57a9642026f90523bbf2080ad93edbf45b2481da03d7f5614d0e
data/README.md CHANGED
@@ -18,6 +18,7 @@ In order to use this library, you first need to go through the following steps:
18
18
 
19
19
  1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
20
20
  1. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
21
+ 1. [Enable the API.](https://console.cloud.google.com/apis/library/texttospeech.googleapis.com)
21
22
  1. {file:AUTHENTICATION.md Set up authentication.}
22
23
 
23
24
  ## Quick Start
@@ -33,6 +34,9 @@ response = client.list_voices request
33
34
  View the [Client Library Documentation](https://googleapis.dev/ruby/google-cloud-text_to_speech-v1/latest)
34
35
  for class and method documentation.
35
36
 
37
+ See also the [Product Documentation](https://cloud.google.com/text-to-speech)
38
+ for general usage information.
39
+
36
40
  ## Enabling Logging
37
41
 
38
42
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
@@ -68,7 +68,7 @@ module Google
68
68
  initial_delay: 0.1,
69
69
  max_delay: 60.0,
70
70
  multiplier: 1.3,
71
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
71
+ retry_codes: [14, 4]
72
72
  }
73
73
 
74
74
  default_config.rpcs.synthesize_speech.timeout = 600.0
@@ -76,7 +76,7 @@ module Google
76
76
  initial_delay: 0.1,
77
77
  max_delay: 60.0,
78
78
  multiplier: 1.3,
79
- retry_codes: ["UNAVAILABLE", "DEADLINE_EXCEEDED"]
79
+ retry_codes: [14, 4]
80
80
  }
81
81
 
82
82
  default_config
@@ -181,10 +181,10 @@ module Google
181
181
  # [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. If
182
182
  # specified, the ListVoices call will only return voices that can be used to
183
183
  # synthesize this language_code. E.g. when specifying "en-NZ", you will get
184
- # supported "en-*" voices; when specifying "no", you will get supported
185
- # "no-*" (Norwegian) and "nb-*" (Norwegian Bokmal) voices; specifying "zh"
186
- # will also get supported "cmn-*" voices; specifying "zh-hk" will also get
187
- # supported "yue-*" voices.
184
+ # supported "en-\*" voices; when specifying "no", you will get supported
185
+ # "no-\*" (Norwegian) and "nb-\*" (Norwegian Bokmal) voices; specifying "zh"
186
+ # will also get supported "cmn-\*" voices; specifying "zh-hk" will also get
187
+ # supported "yue-\*" voices.
188
188
  #
189
189
  # @yield [response, operation] Access the result along with the RPC operation
190
190
  # @yieldparam response [::Google::Cloud::TextToSpeech::V1::ListVoicesResponse]
@@ -375,7 +375,7 @@ module Google
375
375
 
376
376
  config_attr :endpoint, "texttospeech.googleapis.com", ::String
377
377
  config_attr :credentials, nil do |value|
378
- allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
378
+ allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
379
379
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
380
380
  allowed.any? { |klass| klass === value }
381
381
  end
@@ -403,7 +403,7 @@ module Google
403
403
  def rpcs
404
404
  @rpcs ||= begin
405
405
  parent_rpcs = nil
406
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
406
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
407
407
  Rpcs.new parent_rpcs
408
408
  end
409
409
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module TextToSpeech
23
23
  module V1
24
- VERSION = "0.2.0"
24
+ VERSION = "0.2.5"
25
25
  end
26
26
  end
27
27
  end
@@ -28,10 +28,10 @@ module Google
28
28
  # [BCP-47](https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. If
29
29
  # specified, the ListVoices call will only return voices that can be used to
30
30
  # synthesize this language_code. E.g. when specifying "en-NZ", you will get
31
- # supported "en-*" voices; when specifying "no", you will get supported
32
- # "no-*" (Norwegian) and "nb-*" (Norwegian Bokmal) voices; specifying "zh"
33
- # will also get supported "cmn-*" voices; specifying "zh-hk" will also get
34
- # supported "yue-*" voices.
31
+ # supported "en-\*" voices; when specifying "no", you will get supported
32
+ # "no-\*" (Norwegian) and "nb-\*" (Norwegian Bokmal) voices; specifying "zh"
33
+ # will also get supported "cmn-\*" voices; specifying "zh-hk" will also get
34
+ # supported "yue-\*" voices.
35
35
  class ListVoicesRequest
36
36
  include ::Google::Protobuf::MessageExts
37
37
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -93,7 +93,7 @@ module Google
93
93
  # The SSML document to be synthesized. The SSML document must be valid
94
94
  # and well-formed. Otherwise the RPC will fail and return
95
95
  # [google.rpc.Code.INVALID_ARGUMENT][]. For more information, see
96
- # [SSML](/speech/text-to-speech/docs/ssml).
96
+ # [SSML](https://cloud.google.com/text-to-speech/docs/ssml).
97
97
  class SynthesisInput
98
98
  include ::Google::Protobuf::MessageExts
99
99
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-text_to_speech-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-20 00:00:00.000000000 Z
11
+ date: 2020-08-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.2'
19
+ version: '0.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.2'
26
+ version: '0.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: google-cloud-errors
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -162,7 +162,6 @@ files:
162
162
  - LICENSE.md
163
163
  - README.md
164
164
  - lib/google-cloud-text_to_speech-v1.rb
165
- - lib/google/cloud/common_resources_pb.rb
166
165
  - lib/google/cloud/text_to_speech/v1.rb
167
166
  - lib/google/cloud/text_to_speech/v1/text_to_speech.rb
168
167
  - lib/google/cloud/text_to_speech/v1/text_to_speech/client.rb
@@ -193,7 +192,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
193
192
  - !ruby/object:Gem::Version
194
193
  version: '0'
195
194
  requirements: []
196
- rubygems_version: 3.0.6
195
+ rubygems_version: 3.1.3
197
196
  signing_key:
198
197
  specification_version: 4
199
198
  summary: API Client library for the Cloud Text-to-Speech V1 API
@@ -1,15 +0,0 @@
1
- # Generated by the protocol buffer compiler. DO NOT EDIT!
2
- # source: google/cloud/common_resources.proto
3
-
4
- require 'google/protobuf'
5
-
6
- require 'google/api/resource_pb'
7
- Google::Protobuf::DescriptorPool.generated_pool.build do
8
- add_file("google/cloud/common_resources.proto", :syntax => :proto3) do
9
- end
10
- end
11
-
12
- module Google
13
- module Cloud
14
- end
15
- end