Skip to content

Commit

Permalink
feat: Automated regeneration of dialogflow v3beta1 client (#19266)
Browse files Browse the repository at this point in the history
Auto-created at 2024-05-19 11:06:03 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored May 21, 2024
1 parent e41da8c commit d0e5244
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 4 deletions.
5 changes: 5 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170900,7 +170900,9 @@
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettings/speechSettings": speech_settings
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings": google_cloud_dialogflow_cx_v3_advanced_settings_dtmf_settings
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings/enabled": enabled
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings/endpointingTimeoutDuration": endpointing_timeout_duration
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings/finishDigit": finish_digit
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings/interdigitTimeoutDuration": interdigit_timeout_duration
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings/maxDigits": max_digits
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings": google_cloud_dialogflow_cx_v3_advanced_settings_logging_settings
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3AdvancedSettingsLoggingSettings/enableInteractionLogging": enable_interaction_logging
Expand Down Expand Up @@ -171392,7 +171394,9 @@
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettings/speechSettings": speech_settings
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings": google_cloud_dialogflow_cx_v3beta1_advanced_settings_dtmf_settings
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings/enabled": enabled
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings/endpointingTimeoutDuration": endpointing_timeout_duration
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings/finishDigit": finish_digit
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings/interdigitTimeoutDuration": interdigit_timeout_duration
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings/maxDigits": max_digits
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings": google_cloud_dialogflow_cx_v3beta1_advanced_settings_logging_settings
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1AdvancedSettingsLoggingSettings/enableInteractionLogging": enable_interaction_logging
Expand Down Expand Up @@ -172451,6 +172455,7 @@
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings/audioFormat": audio_format
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings/enableAudioRedaction": enable_audio_redaction
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings/gcsBucket": gcs_bucket
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings/storeTtsAudio": store_tts_audio
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings": google_cloud_dialogflow_cx_v3beta1_security_settings_insights_export_settings
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1SecuritySettingsInsightsExportSettings/enableInsightsExport": enable_insights_export
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1SentimentAnalysisResult": google_cloud_dialogflow_cx_v3beta1_sentiment_analysis_result
Expand Down
5 changes: 5 additions & 0 deletions generated/google-apis-dialogflow_v3beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Release history for google-apis-dialogflow_v3beta1

### v0.86.0 (2024-05-19)

* Regenerated from discovery document revision 20240507
* Regenerated using generator version 0.15.0

### v0.85.0 (2024-04-21)

* Regenerated from discovery document revision 20240417
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]

gem.required_ruby_version = '>= 2.7'
gem.add_runtime_dependency "google-apis-core", ">= 0.14.0", "< 2.a"
gem.add_runtime_dependency "google-apis-core", ">= 0.15.0", "< 2.a"
end
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,21 @@ class GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings
attr_accessor :enabled
alias_method :enabled?, :enabled

# Endpoint timeout setting for matching dtmf input to regex.
# Corresponds to the JSON property `endpointingTimeoutDuration`
# @return [String]
attr_accessor :endpointing_timeout_duration

# The digit that terminates a DTMF digit sequence.
# Corresponds to the JSON property `finishDigit`
# @return [String]
attr_accessor :finish_digit

# Interdigit timeout setting for matching dtmf input to regex.
# Corresponds to the JSON property `interdigitTimeoutDuration`
# @return [String]
attr_accessor :interdigit_timeout_duration

# Max length of DTMF digits.
# Corresponds to the JSON property `maxDigits`
# @return [Fixnum]
Expand All @@ -98,7 +108,9 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@enabled = args[:enabled] if args.key?(:enabled)
@endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
@finish_digit = args[:finish_digit] if args.key?(:finish_digit)
@interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
@max_digits = args[:max_digits] if args.key?(:max_digits)
end
end
Expand Down Expand Up @@ -3915,11 +3927,21 @@ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings
attr_accessor :enabled
alias_method :enabled?, :enabled

# Endpoint timeout setting for matching dtmf input to regex.
# Corresponds to the JSON property `endpointingTimeoutDuration`
# @return [String]
attr_accessor :endpointing_timeout_duration

# The digit that terminates a DTMF digit sequence.
# Corresponds to the JSON property `finishDigit`
# @return [String]
attr_accessor :finish_digit

# Interdigit timeout setting for matching dtmf input to regex.
# Corresponds to the JSON property `interdigitTimeoutDuration`
# @return [String]
attr_accessor :interdigit_timeout_duration

# Max length of DTMF digits.
# Corresponds to the JSON property `maxDigits`
# @return [Fixnum]
Expand All @@ -3932,7 +3954,9 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@enabled = args[:enabled] if args.key?(:enabled)
@endpointing_timeout_duration = args[:endpointing_timeout_duration] if args.key?(:endpointing_timeout_duration)
@finish_digit = args[:finish_digit] if args.key?(:finish_digit)
@interdigit_timeout_duration = args[:interdigit_timeout_duration] if args.key?(:interdigit_timeout_duration)
@max_digits = args[:max_digits] if args.key?(:max_digits)
end
end
Expand Down Expand Up @@ -11268,6 +11292,13 @@ class GoogleCloudDialogflowCxV3beta1SecuritySettingsAudioExportSettings
# @return [String]
attr_accessor :gcs_bucket

# Whether to store TTS audio. By default, TTS audio from the virtual agent is
# not exported.
# Corresponds to the JSON property `storeTtsAudio`
# @return [Boolean]
attr_accessor :store_tts_audio
alias_method :store_tts_audio?, :store_tts_audio

def initialize(**args)
update!(**args)
end
Expand All @@ -11278,6 +11309,7 @@ def update!(**args)
@audio_format = args[:audio_format] if args.key?(:audio_format)
@enable_audio_redaction = args[:enable_audio_redaction] if args.key?(:enable_audio_redaction)
@gcs_bucket = args[:gcs_bucket] if args.key?(:gcs_bucket)
@store_tts_audio = args[:store_tts_audio] if args.key?(:store_tts_audio)
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 DialogflowV3beta1
# Version of the google-apis-dialogflow_v3beta1 gem
GEM_VERSION = "0.85.0"
GEM_VERSION = "0.86.0"

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

# Revision of the discovery document this client was generated from
REVISION = "20240417"
REVISION = "20240507"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -3226,7 +3226,9 @@ class GoogleCloudDialogflowCxV3AdvancedSettingsDtmfSettings
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :enabled, as: 'enabled'
property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
property :finish_digit, as: 'finishDigit'
property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
property :max_digits, as: 'maxDigits'
end
end
Expand Down Expand Up @@ -4278,7 +4280,9 @@ class GoogleCloudDialogflowCxV3beta1AdvancedSettingsDtmfSettings
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :enabled, as: 'enabled'
property :endpointing_timeout_duration, as: 'endpointingTimeoutDuration'
property :finish_digit, as: 'finishDigit'
property :interdigit_timeout_duration, as: 'interdigitTimeoutDuration'
property :max_digits, as: 'maxDigits'
end
end
Expand Down Expand Up @@ -6269,6 +6273,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :audio_format, as: 'audioFormat'
property :enable_audio_redaction, as: 'enableAudioRedaction'
property :gcs_bucket, as: 'gcsBucket'
property :store_tts_audio, as: 'storeTtsAudio'
end
end

Expand Down

0 comments on commit d0e5244

Please sign in to comment.