From 4cfc386e8d3af38d0e077c0ca4cb43ae83f0817d Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Sun, 19 Oct 2025 10:08:34 +0000 Subject: [PATCH] feat: Automated regeneration of texttospeech v1beta1 client --- api_names_out.yaml | 1 + generated/google-apis-texttospeech_v1beta1/CHANGELOG.md | 4 ++++ .../lib/google/apis/texttospeech_v1beta1/classes.rb | 9 +++++++++ .../lib/google/apis/texttospeech_v1beta1/gem_version.rb | 4 ++-- .../google/apis/texttospeech_v1beta1/representations.rb | 1 + 5 files changed, 17 insertions(+), 2 deletions(-) diff --git a/api_names_out.yaml b/api_names_out.yaml index 3e72c8b351a..01db242ff90 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -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 diff --git a/generated/google-apis-texttospeech_v1beta1/CHANGELOG.md b/generated/google-apis-texttospeech_v1beta1/CHANGELOG.md index 87d173e2eb7..911bea8bb03 100644 --- a/generated/google-apis-texttospeech_v1beta1/CHANGELOG.md +++ b/generated/google-apis-texttospeech_v1beta1/CHANGELOG.md @@ -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 diff --git a/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/classes.rb b/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/classes.rb index 0f4f2943d02..90faadac9c5 100644 --- a/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/classes.rb +++ b/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/classes.rb @@ -33,6 +33,14 @@ 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 @@ -40,6 +48,7 @@ def initialize(**args) # 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 diff --git a/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/gem_version.rb b/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/gem_version.rb index 692cb8e6f7a..021eccae836 100644 --- a/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/gem_version.rb +++ b/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/gem_version.rb @@ -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 diff --git a/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/representations.rb b/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/representations.rb index 4c1c8888bf1..e4c0bb013f2 100644 --- a/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/representations.rb +++ b/generated/google-apis-texttospeech_v1beta1/lib/google/apis/texttospeech_v1beta1/representations.rb @@ -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