class Google::Cloud::TextToSpeech::V1::TextToSpeech::Client::Configuration::Rpcs

Configuration RPC class for the TextToSpeech API.

Includes fields providing the configuration for each RPC in this service. Each configuration object is of type `Gapic::Config::Method` and includes the following configuration fields:

*  `timeout` (*type:* `Numeric`) - The call timeout in seconds
*  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
*  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
   include the following keys:
    *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
    *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
    *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
    *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
       trigger a retry.

Attributes

list_voices[R]

RPC-specific configuration for `list_voices` @return [::Gapic::Config::Method]

synthesize_speech[R]

RPC-specific configuration for `synthesize_speech` @return [::Gapic::Config::Method]

Public Class Methods

new(parent_rpcs = nil) { |self| ... } click to toggle source

@private

# File lib/google/cloud/text_to_speech/v1/text_to_speech/client.rb, line 438
def initialize parent_rpcs = nil
  list_voices_config = parent_rpcs.list_voices if parent_rpcs.respond_to? :list_voices
  @list_voices = ::Gapic::Config::Method.new list_voices_config
  synthesize_speech_config = parent_rpcs.synthesize_speech if parent_rpcs.respond_to? :synthesize_speech
  @synthesize_speech = ::Gapic::Config::Method.new synthesize_speech_config

  yield self if block_given?
end