Skip to content

Commit 62c72b2

Browse files
feat: Automated regeneration of dialogflow v3beta1 client (googleapis#23893)
Auto-created at 2025-08-10 10:04:59 +0000 using the toys pull request generator.
1 parent 6a9df63 commit 62c72b2

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

api_names_out.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196592,11 +196592,15 @@
196592196592
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/displayName": display_name
196593196593
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/eventHandlers": event_handlers
196594196594
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/eventHandlers/event_handler": event_handler
196595+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/inputParameterDefinitions": input_parameter_definitions
196596+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/inputParameterDefinitions/input_parameter_definition": input_parameter_definition
196595196597
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/knowledgeConnectorSettings": knowledge_connector_settings
196596196598
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/locked": locked
196597196599
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/multiLanguageSettings": multi_language_settings
196598196600
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/name": name
196599196601
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/nluSettings": nlu_settings
196602+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/outputParameterDefinitions": output_parameter_definitions
196603+
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/outputParameterDefinitions/output_parameter_definition": output_parameter_definition
196600196604
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/transitionRouteGroups": transition_route_groups
196601196605
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/transitionRouteGroups/transition_route_group": transition_route_group
196602196606
"/dialogflow:v3beta1/GoogleCloudDialogflowCxV3beta1Flow/transitionRoutes": transition_routes

generated/google-apis-dialogflow_v3beta1/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_v3beta1
22

3+
### v0.107.0 (2025-08-10)
4+
5+
* Regenerated from discovery document revision 20250804
6+
37
### v0.106.0 (2025-07-06)
48

59
* Regenerated from discovery document revision 20250627

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8082,6 +8082,11 @@ class GoogleCloudDialogflowCxV3beta1Flow
80828082
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler>]
80838083
attr_accessor :event_handlers
80848084

8085+
# Optional. Defined structured input parameters for this flow.
8086+
# Corresponds to the JSON property `inputParameterDefinitions`
8087+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
8088+
attr_accessor :input_parameter_definitions
8089+
80858090
# The Knowledge Connector settings for this page or flow. This includes
80868091
# information such as the attached Knowledge Bases, and the way to execute
80878092
# fulfillment.
@@ -8112,6 +8117,11 @@ class GoogleCloudDialogflowCxV3beta1Flow
81128117
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings]
81138118
attr_accessor :nlu_settings
81148119

8120+
# Optional. Defined structured output parameters for this flow.
8121+
# Corresponds to the JSON property `outputParameterDefinitions`
8122+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
8123+
attr_accessor :output_parameter_definitions
8124+
81158125
# A flow's transition route group serve two purposes: * They are responsible for
81168126
# matching the user's first utterances in the flow. * They are inherited by
81178127
# every page's transition route groups. Transition route groups defined in the
@@ -8145,11 +8155,13 @@ def update!(**args)
81458155
@description = args[:description] if args.key?(:description)
81468156
@display_name = args[:display_name] if args.key?(:display_name)
81478157
@event_handlers = args[:event_handlers] if args.key?(:event_handlers)
8158+
@input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
81488159
@knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
81498160
@locked = args[:locked] if args.key?(:locked)
81508161
@multi_language_settings = args[:multi_language_settings] if args.key?(:multi_language_settings)
81518162
@name = args[:name] if args.key?(:name)
81528163
@nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings)
8164+
@output_parameter_definitions = args[:output_parameter_definitions] if args.key?(:output_parameter_definitions)
81538165
@transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
81548166
@transition_routes = args[:transition_routes] if args.key?(:transition_routes)
81558167
end

generated/google-apis-dialogflow_v3beta1/lib/google/apis/dialogflow_v3beta1/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 DialogflowV3beta1
1818
# Version of the google-apis-dialogflow_v3beta1 gem
19-
GEM_VERSION = "0.106.0"
19+
GEM_VERSION = "0.107.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 = "20250627"
25+
REVISION = "20250804"
2626
end
2727
end
2828
end

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6127,6 +6127,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
61276127
property :display_name, as: 'displayName'
61286128
collection :event_handlers, as: 'eventHandlers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1EventHandler::Representation
61296129

6130+
collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
6131+
61306132
property :knowledge_connector_settings, as: 'knowledgeConnectorSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1KnowledgeConnectorSettings::Representation
61316133

61326134
property :locked, as: 'locked'
@@ -6135,6 +6137,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
61356137
property :name, as: 'name'
61366138
property :nlu_settings, as: 'nluSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1NluSettings::Representation
61376139

6140+
collection :output_parameter_definitions, as: 'outputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
6141+
61386142
collection :transition_route_groups, as: 'transitionRouteGroups'
61396143
collection :transition_routes, as: 'transitionRoutes', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TransitionRoute::Representation
61406144

0 commit comments

Comments
 (0)