Skip to content

Commit 71ed526

Browse files
feat: Automated regeneration of dialogflow v2 client (googleapis#27333)
Auto-created at 2026-07-12 11:49:07 +0000 using the toys pull request generator.
1 parent 327eee9 commit 71ed526

5 files changed

Lines changed: 24 additions & 2 deletions

File tree

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216764,6 +216764,7 @@
216764216764
"/dialogflow:v2/GoogleCloudDialogflowV2InputAudioConfig/audioEncoding": audio_encoding
216765216765
"/dialogflow:v2/GoogleCloudDialogflowV2InputAudioConfig/disableNoSpeechRecognizedEvent": disable_no_speech_recognized_event
216766216766
"/dialogflow:v2/GoogleCloudDialogflowV2InputAudioConfig/enableAutomaticPunctuation": enable_automatic_punctuation
216767+
"/dialogflow:v2/GoogleCloudDialogflowV2InputAudioConfig/enableVoiceActivityEvents": enable_voice_activity_events
216767216768
"/dialogflow:v2/GoogleCloudDialogflowV2InputAudioConfig/enableWordInfo": enable_word_info
216768216769
"/dialogflow:v2/GoogleCloudDialogflowV2InputAudioConfig/languageCode": language_code
216769216770
"/dialogflow:v2/GoogleCloudDialogflowV2InputAudioConfig/model": model
@@ -217243,6 +217244,8 @@
217243217244
"/dialogflow:v2/GoogleCloudDialogflowV2SearchKnowledgeAnswerAnswerSource/title": title
217244217245
"/dialogflow:v2/GoogleCloudDialogflowV2SearchKnowledgeAnswerAnswerSource/uri": uri
217245217246
"/dialogflow:v2/GoogleCloudDialogflowV2SearchKnowledgeDebugInfo": google_cloud_dialogflow_v2_search_knowledge_debug_info
217247+
"/dialogflow:v2/GoogleCloudDialogflowV2SearchKnowledgeDebugInfo/cesDebugInfo": ces_debug_info
217248+
"/dialogflow:v2/GoogleCloudDialogflowV2SearchKnowledgeDebugInfo/cesDebugInfo/ces_debug_info": ces_debug_info
217246217249
"/dialogflow:v2/GoogleCloudDialogflowV2SearchKnowledgeDebugInfo/datastoreResponseReason": datastore_response_reason
217247217250
"/dialogflow:v2/GoogleCloudDialogflowV2SearchKnowledgeDebugInfo/ingestedContextReferenceDebugInfo": ingested_context_reference_debug_info
217248217251
"/dialogflow:v2/GoogleCloudDialogflowV2SearchKnowledgeDebugInfo/searchKnowledgeBehavior": search_knowledge_behavior

generated/google-apis-dialogflow_v2/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-dialogflow_v2
22

3+
### v0.127.0 (2026-07-12)
4+
5+
* Regenerated from discovery document revision 20260701
6+
37
### v0.126.0 (2026-06-21)
48

59
* Regenerated from discovery document revision 20260616

generated/google-apis-dialogflow_v2/lib/google/apis/dialogflow_v2/classes.rb

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11777,6 +11777,12 @@ class GoogleCloudDialogflowV2InputAudioConfig
1177711777
attr_accessor :enable_automatic_punctuation
1177811778
alias_method :enable_automatic_punctuation?, :enable_automatic_punctuation
1177911779

11780+
#
11781+
# Corresponds to the JSON property `enableVoiceActivityEvents`
11782+
# @return [Boolean]
11783+
attr_accessor :enable_voice_activity_events
11784+
alias_method :enable_voice_activity_events?, :enable_voice_activity_events
11785+
1178011786
#
1178111787
# Corresponds to the JSON property `enableWordInfo`
1178211788
# @return [Boolean]
@@ -11839,6 +11845,7 @@ def update!(**args)
1183911845
@audio_encoding = args[:audio_encoding] if args.key?(:audio_encoding)
1184011846
@disable_no_speech_recognized_event = args[:disable_no_speech_recognized_event] if args.key?(:disable_no_speech_recognized_event)
1184111847
@enable_automatic_punctuation = args[:enable_automatic_punctuation] if args.key?(:enable_automatic_punctuation)
11848+
@enable_voice_activity_events = args[:enable_voice_activity_events] if args.key?(:enable_voice_activity_events)
1184211849
@enable_word_info = args[:enable_word_info] if args.key?(:enable_word_info)
1184311850
@language_code = args[:language_code] if args.key?(:language_code)
1184411851
@model = args[:model] if args.key?(:model)
@@ -14878,6 +14885,11 @@ def update!(**args)
1487814885
class GoogleCloudDialogflowV2SearchKnowledgeDebugInfo
1487914886
include Google::Apis::Core::Hashable
1488014887

14888+
#
14889+
# Corresponds to the JSON property `cesDebugInfo`
14890+
# @return [Hash<String,Object>]
14891+
attr_accessor :ces_debug_info
14892+
1488114893
#
1488214894
# Corresponds to the JSON property `datastoreResponseReason`
1488314895
# @return [String]
@@ -14904,6 +14916,7 @@ def initialize(**args)
1490414916

1490514917
# Update properties of this object
1490614918
def update!(**args)
14919+
@ces_debug_info = args[:ces_debug_info] if args.key?(:ces_debug_info)
1490714920
@datastore_response_reason = args[:datastore_response_reason] if args.key?(:datastore_response_reason)
1490814921
@ingested_context_reference_debug_info = args[:ingested_context_reference_debug_info] if args.key?(:ingested_context_reference_debug_info)
1490914922
@search_knowledge_behavior = args[:search_knowledge_behavior] if args.key?(:search_knowledge_behavior)

generated/google-apis-dialogflow_v2/lib/google/apis/dialogflow_v2/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DialogflowV2
1818
# Version of the google-apis-dialogflow_v2 gem
19-
GEM_VERSION = "0.126.0"
19+
GEM_VERSION = "0.127.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.19.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20260616"
25+
REVISION = "20260701"
2626
end
2727
end
2828
end

generated/google-apis-dialogflow_v2/lib/google/apis/dialogflow_v2/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7842,6 +7842,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
78427842
property :audio_encoding, as: 'audioEncoding'
78437843
property :disable_no_speech_recognized_event, as: 'disableNoSpeechRecognizedEvent'
78447844
property :enable_automatic_punctuation, as: 'enableAutomaticPunctuation'
7845+
property :enable_voice_activity_events, as: 'enableVoiceActivityEvents'
78457846
property :enable_word_info, as: 'enableWordInfo'
78467847
property :language_code, as: 'languageCode'
78477848
property :model, as: 'model'
@@ -8801,6 +8802,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
88018802
class GoogleCloudDialogflowV2SearchKnowledgeDebugInfo
88028803
# @private
88038804
class Representation < Google::Apis::Core::JsonRepresentation
8805+
hash :ces_debug_info, as: 'cesDebugInfo'
88048806
property :datastore_response_reason, as: 'datastoreResponseReason'
88058807
property :ingested_context_reference_debug_info, as: 'ingestedContextReferenceDebugInfo', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2IngestedContextReferenceDebugInfo::Representation
88068808

0 commit comments

Comments
 (0)