Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -367856,6 +367856,7 @@
"/texttospeech:v1/texttospeech.voices.list/languageCode": language_code
"/texttospeech:v1beta1/AdvancedVoiceOptions": advanced_voice_options
"/texttospeech:v1beta1/AdvancedVoiceOptions/lowLatencyJourneySynthesis": low_latency_journey_synthesis
"/texttospeech:v1beta1/AdvancedVoiceOptions/relaxSafetyFilters": relax_safety_filters
"/texttospeech:v1beta1/AudioConfig": audio_config
"/texttospeech:v1beta1/AudioConfig/audioEncoding": audio_encoding
"/texttospeech:v1beta1/AudioConfig/effectsProfileId": effects_profile_id
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-texttospeech_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-texttospeech_v1beta1

### v0.40.0 (2025-10-19)

* Regenerated from discovery document revision 20251014

### v0.39.0 (2025-10-12)

* Regenerated from discovery document revision 20251001
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,22 @@ class AdvancedVoiceOptions
attr_accessor :low_latency_journey_synthesis
alias_method :low_latency_journey_synthesis?, :low_latency_journey_synthesis

# Optional. Input only. If true, relaxes safety filters for Gemini TTS. Only
# supported for accounts linked to Invoiced (Offline) Cloud billing accounts.
# Otherwise, will return result google.rpc.Code.INVALID_ARGUMENT.
# Corresponds to the JSON property `relaxSafetyFilters`
# @return [Boolean]
attr_accessor :relax_safety_filters
alias_method :relax_safety_filters?, :relax_safety_filters

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

# Update properties of this object
def update!(**args)
@low_latency_journey_synthesis = args[:low_latency_journey_synthesis] if args.key?(:low_latency_journey_synthesis)
@relax_safety_filters = args[:relax_safety_filters] if args.key?(:relax_safety_filters)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module TexttospeechV1beta1
# Version of the google-apis-texttospeech_v1beta1 gem
GEM_VERSION = "0.39.0"
GEM_VERSION = "0.40.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20251001"
REVISION = "20251014"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ class AdvancedVoiceOptions
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :low_latency_journey_synthesis, as: 'lowLatencyJourneySynthesis'
property :relax_safety_filters, as: 'relaxSafetyFilters'
end
end

Expand Down