Class: Google::Apis::TexttospeechV1beta1::SynthesizeLongAudioRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/texttospeech_v1beta1/classes.rb,
lib/google/apis/texttospeech_v1beta1/representations.rb,
lib/google/apis/texttospeech_v1beta1/representations.rb

Overview

The top-level message sent by the client for the SynthesizeLongAudio method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SynthesizeLongAudioRequest

Returns a new instance of SynthesizeLongAudioRequest.



386
387
388
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 386

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#audio_configGoogle::Apis::TexttospeechV1beta1::AudioConfig

Description of audio data to be synthesized. Corresponds to the JSON property audioConfig



365
366
367
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 365

def audio_config
  @audio_config
end

#inputGoogle::Apis::TexttospeechV1beta1::SynthesisInput

Contains text input to be synthesized. Either text or ssml must be supplied. Supplying both or neither returns google.rpc.Code.INVALID_ARGUMENT. The input size is limited to 5000 bytes. Corresponds to the JSON property input



372
373
374
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 372

def input
  @input
end

#output_gcs_uriString

Required. Specifies a Cloud Storage URI for the synthesis results. Must be specified in the format: gs://bucket_name/object_name, and the bucket must already exist. Corresponds to the JSON property outputGcsUri

Returns:

  • (String)


379
380
381
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 379

def output_gcs_uri
  @output_gcs_uri
end

#voiceGoogle::Apis::TexttospeechV1beta1::VoiceSelectionParams

Description of which voice to use for a synthesis request. Corresponds to the JSON property voice



384
385
386
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 384

def voice
  @voice
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



391
392
393
394
395
396
# File 'lib/google/apis/texttospeech_v1beta1/classes.rb', line 391

def update!(**args)
  @audio_config = args[:audio_config] if args.key?(:audio_config)
  @input = args[:input] if args.key?(:input)
  @output_gcs_uri = args[:output_gcs_uri] if args.key?(:output_gcs_uri)
  @voice = args[:voice] if args.key?(:voice)
end