google-cloud-text_to_speech-v1 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 132cc7121d909330b244eca9c63675e7b806965b875992d91e0e2ceef024b4d9
4
- data.tar.gz: 80214e9c9f61924a010f7af91ae0c3a006fb462f1ebc14aa3b08693794c96511
3
+ metadata.gz: be43cfd9613410f6a75e837ccb9e9f370c58abf0212e06b15e02effa675fbb2f
4
+ data.tar.gz: 9dc9332f7e495d25e3ebad140af6076cf513d617e952570aa1913cf73b89f972
5
5
  SHA512:
6
- metadata.gz: ba74b45b67c0df18ad8cac42e0c906e26895a76215115799c0c1ab11aca4276776d0d2ad039ded71f41c9f829fcf1dc2d0e997d188d4544307c25e1f48088a5d
7
- data.tar.gz: ba0db213f75befc14423a5f9631310d2078de604de0cf2478d6594776d2930346c3f69150f2a22825dea6ebb08f659ddef7dda9a0d66d2b7646f72e43c5ffa82
6
+ metadata.gz: bebfdcebdd3c76e702a7fc143d10c81e55a3521f5f55086b1559742d111420fa9ecfb698baddb37e32cb5417eb11d55c5ecf64c2465aae35727ba8c3a2c08c98
7
+ data.tar.gz: 6f9a4de9742025d416f98e18eada01ac6907372e592fce8ff64f5defa20d6c3c86b0d0e2a35a81281c368130535c4d9996f6bae42d4c3052a3592f31cc08397a
data/AUTHENTICATION.md CHANGED
@@ -66,11 +66,11 @@ The environment variables that google-cloud-text_to_speech-v1
66
66
  checks for credentials are configured on the service Credentials class (such as
67
67
  {::Google::Cloud::TextToSpeech::V1::TextToSpeech::Credentials}):
68
68
 
69
- 1. `TEXTTOSPEECH_CREDENTIALS` - Path to JSON file, or JSON contents
70
- 2. `TEXTTOSPEECH_KEYFILE` - Path to JSON file, or JSON contents
71
- 3. `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
- 4. `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
- 5. `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
69
+ * `TEXTTOSPEECH_CREDENTIALS` - Path to JSON file, or JSON contents
70
+ * `TEXTTOSPEECH_KEYFILE` - Path to JSON file, or JSON contents
71
+ * `GOOGLE_CLOUD_CREDENTIALS` - Path to JSON file, or JSON contents
72
+ * `GOOGLE_CLOUD_KEYFILE` - Path to JSON file, or JSON contents
73
+ * `GOOGLE_APPLICATION_CREDENTIALS` - Path to JSON file
74
74
 
75
75
  ```ruby
76
76
  require "google/cloud/text_to_speech/v1"
@@ -82,8 +82,8 @@ client = ::Google::Cloud::TextToSpeech::V1::TextToSpeech::Client.new
82
82
 
83
83
  ### Configuration
84
84
 
85
- The **Credentials JSON** can be configured instead of placing them in
86
- environment variables. Either on an individual client initialization:
85
+ The path to the **Credentials JSON** file can be configured instead of storing
86
+ it in an environment variable. Either on an individual client initialization:
87
87
 
88
88
  ```ruby
89
89
  require "google/cloud/text_to_speech/v1"
@@ -93,7 +93,7 @@ client = ::Google::Cloud::TextToSpeech::V1::TextToSpeech::Client.new do |config|
93
93
  end
94
94
  ```
95
95
 
96
- Or configured globally for all clients:
96
+ Or globally for all clients:
97
97
 
98
98
  ```ruby
99
99
  require "google/cloud/text_to_speech/v1"
data/README.md CHANGED
@@ -33,7 +33,7 @@ In order to use this library, you first need to go through the following steps:
33
33
  require "google/cloud/text_to_speech/v1"
34
34
 
35
35
  client = ::Google::Cloud::TextToSpeech::V1::TextToSpeech::Client.new
36
- request = my_create_request
36
+ request = ::Google::Cloud::TextToSpeech::V1::ListVoicesRequest.new # (request fields as keyword arguments...)
37
37
  response = client.list_voices request
38
38
  ```
39
39
 
@@ -65,18 +65,12 @@ module Google
65
65
 
66
66
  default_config.rpcs.list_voices.timeout = 600.0
67
67
  default_config.rpcs.list_voices.retry_policy = {
68
- initial_delay: 0.1,
69
- max_delay: 60.0,
70
- multiplier: 1.3,
71
- retry_codes: [14, 4]
68
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
72
69
  }
73
70
 
74
71
  default_config.rpcs.synthesize_speech.timeout = 600.0
75
72
  default_config.rpcs.synthesize_speech.retry_policy = {
76
- initial_delay: 0.1,
77
- max_delay: 60.0,
78
- multiplier: 1.3,
79
- retry_codes: [14, 4]
73
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14, 4]
80
74
  }
81
75
 
82
76
  default_config
@@ -147,7 +141,7 @@ module Google
147
141
  !@config.endpoint.split(".").first.include?("-")
148
142
  credentials ||= Credentials.default scope: @config.scope,
149
143
  enable_self_signed_jwt: enable_self_signed_jwt
150
- if credentials.is_a?(String) || credentials.is_a?(Hash)
144
+ if credentials.is_a?(::String) || credentials.is_a?(::Hash)
151
145
  credentials = Credentials.new credentials, scope: @config.scope
152
146
  end
153
147
  @quota_project_id = @config.quota_project
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module TextToSpeech
23
23
  module V1
24
- VERSION = "0.4.1"
24
+ VERSION = "0.4.2"
25
25
  end
26
26
  end
27
27
  end
@@ -28,7 +28,7 @@ module Google
28
28
  # Service that implements Google Cloud Text-to-Speech API.
29
29
  class Service
30
30
 
31
- include ::GRPC::GenericService
31
+ include GRPC::GenericService
32
32
 
33
33
  self.marshal_class_method = :encode
34
34
  self.unmarshal_class_method = :decode
@@ -57,9 +57,15 @@ module Google
57
57
 
58
58
  # Denotes that a (repeated) field is an unordered list.
59
59
  # This indicates that the service may provide the elements of the list
60
- # in any arbitrary order, rather than the order the user originally
60
+ # in any arbitrary order, rather than the order the user originally
61
61
  # provided. Additionally, the list's order may or may not be stable.
62
62
  UNORDERED_LIST = 6
63
+
64
+ # Denotes that this field returns a non-empty default value if not set.
65
+ # This indicates that if the user provides the empty value in a request,
66
+ # a non-empty value will be returned. The user will not be aware of what
67
+ # non-empty value to expect.
68
+ NON_EMPTY_DEFAULT = 7
63
69
  end
64
70
  end
65
71
  end
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.4.1
4
+ version: 0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-17 00:00:00.000000000 Z
11
+ date: 2021-07-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common