File tree Expand file tree Collapse file tree 5 files changed +17
-2
lines changed
generated/google-apis-texttospeech_v1beta1
lib/google/apis/texttospeech_v1beta1 Expand file tree Collapse file tree 5 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -368184,6 +368184,7 @@
368184368184"/texttospeech:v1/texttospeech.voices.list/languageCode": language_code
368185368185"/texttospeech:v1beta1/AdvancedVoiceOptions": advanced_voice_options
368186368186"/texttospeech:v1beta1/AdvancedVoiceOptions/lowLatencyJourneySynthesis": low_latency_journey_synthesis
368187+ "/texttospeech:v1beta1/AdvancedVoiceOptions/relaxSafetyFilters": relax_safety_filters
368187368188"/texttospeech:v1beta1/AudioConfig": audio_config
368188368189"/texttospeech:v1beta1/AudioConfig/audioEncoding": audio_encoding
368189368190"/texttospeech:v1beta1/AudioConfig/effectsProfileId": effects_profile_id
Original file line number Diff line number Diff line change 11# Release history for google-apis-texttospeech_v1beta1
22
3+ ### v0.40.0 (2025-10-19)
4+
5+ * Regenerated from discovery document revision 20251014
6+
37### v0.39.0 (2025-10-12)
48
59* Regenerated from discovery document revision 20251001
Original file line number Diff line number Diff line change @@ -33,13 +33,22 @@ class AdvancedVoiceOptions
3333 attr_accessor :low_latency_journey_synthesis
3434 alias_method :low_latency_journey_synthesis? , :low_latency_journey_synthesis
3535
36+ # Optional. Input only. If true, relaxes safety filters for Gemini TTS. Only
37+ # supported for accounts linked to Invoiced (Offline) Cloud billing accounts.
38+ # Otherwise, will return result google.rpc.Code.INVALID_ARGUMENT.
39+ # Corresponds to the JSON property `relaxSafetyFilters`
40+ # @return [Boolean]
41+ attr_accessor :relax_safety_filters
42+ alias_method :relax_safety_filters? , :relax_safety_filters
43+
3644 def initialize ( **args )
3745 update! ( **args )
3846 end
3947
4048 # Update properties of this object
4149 def update! ( **args )
4250 @low_latency_journey_synthesis = args [ :low_latency_journey_synthesis ] if args . key? ( :low_latency_journey_synthesis )
51+ @relax_safety_filters = args [ :relax_safety_filters ] if args . key? ( :relax_safety_filters )
4352 end
4453 end
4554
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
1616 module Apis
1717 module TexttospeechV1beta1
1818 # Version of the google-apis-texttospeech_v1beta1 gem
19- GEM_VERSION = "0.39 .0"
19+ GEM_VERSION = "0.40 .0"
2020
2121 # Version of the code generator used to generate this client
2222 GENERATOR_VERSION = "0.18.0"
2323
2424 # Revision of the discovery document this client was generated from
25- REVISION = "20251001 "
25+ REVISION = "20251014 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ class AdvancedVoiceOptions
164164 # @private
165165 class Representation < Google ::Apis ::Core ::JsonRepresentation
166166 property :low_latency_journey_synthesis , as : 'lowLatencyJourneySynthesis'
167+ property :relax_safety_filters , as : 'relaxSafetyFilters'
167168 end
168169 end
169170
You can’t perform that action at this time.
0 commit comments