google-apis-dialogflow_v3 0.112.0 → 0.113.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 848aabbdf3b4cac6f4088946fe6ab228769f28b40992733c84f198c6747be298
4
- data.tar.gz: 765ccaef5a412465db47957aee5c5f08e8961355f7a9166627848f8c11d0c245
3
+ metadata.gz: 78ec2639e4a154986d4545e06ff60ddb3f6afd6cb1f7405ea666ee553a5d842b
4
+ data.tar.gz: af70b608fd02fbeaf3b00bca8858a46877ea7cf621daf0e74fd025c5efa3f3f4
5
5
  SHA512:
6
- metadata.gz: 1ac5aeb670d9f77918dfa8f16ac43c25102c6f3e940289a3dcec5cfaa3d13815154ecc8034c5b121d55e4f218511105d0bdd59c1b36d440664710d1705f13c2c
7
- data.tar.gz: 5c5c9c732efb70877435b35399137fffa8131e99a088b6c66b9907d65e51a6d7bac6cc6102a51807b891fdb7462a9af5c33cb867ebd8fa07b56b549c386ca411
6
+ metadata.gz: 8269ff4007418e76cc92c31b2b20d309a980a011bd7d961f8bb40258737a52b364df061f3a71aecd624e940613b92bfbc0e92eed39c37d32ec00eb34fad7f5d8
7
+ data.tar.gz: bdbe2a2a6cc3229816323a3e1df9b091040600da12f6691d27f26be2fbb70c2a3685bf63aa3304ac694a0eaef5c2f050da2e2b3d2da1470c36b1d27d042080bb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.113.0 (2025-08-10)
4
+
5
+ * Regenerated from discovery document revision 20250804
6
+
3
7
  ### v0.112.0 (2025-07-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20250627
@@ -36,11 +36,23 @@ module Google
36
36
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowInvocation]
37
37
  attr_accessor :flow_invocation
38
38
 
39
+ # Stores metadata of the transition to a target CX flow. Flow transition actions
40
+ # exit the caller playbook and enter the child flow.
41
+ # Corresponds to the JSON property `flowTransition`
42
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowTransition]
43
+ attr_accessor :flow_transition
44
+
39
45
  # Stores metadata of the invocation of a child playbook.
40
46
  # Corresponds to the JSON property `playbookInvocation`
41
47
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInvocation]
42
48
  attr_accessor :playbook_invocation
43
49
 
50
+ # Stores metadata of the transition to another target playbook. Playbook
51
+ # transition actions exit the caller playbook and enter the target playbook.
52
+ # Corresponds to the JSON property `playbookTransition`
53
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookTransition]
54
+ attr_accessor :playbook_transition
55
+
44
56
  # Stores metadata of the invocation of an action supported by a tool.
45
57
  # Corresponds to the JSON property `toolUse`
46
58
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolUse]
@@ -59,7 +71,9 @@ module Google
59
71
  def update!(**args)
60
72
  @agent_utterance = args[:agent_utterance] if args.key?(:agent_utterance)
61
73
  @flow_invocation = args[:flow_invocation] if args.key?(:flow_invocation)
74
+ @flow_transition = args[:flow_transition] if args.key?(:flow_transition)
62
75
  @playbook_invocation = args[:playbook_invocation] if args.key?(:playbook_invocation)
76
+ @playbook_transition = args[:playbook_transition] if args.key?(:playbook_transition)
63
77
  @tool_use = args[:tool_use] if args.key?(:tool_use)
64
78
  @user_utterance = args[:user_utterance] if args.key?(:user_utterance)
65
79
  end
@@ -3297,6 +3311,11 @@ module Google
3297
3311
  # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler>]
3298
3312
  attr_accessor :event_handlers
3299
3313
 
3314
+ # Optional. Defined structured input parameters for this flow.
3315
+ # Corresponds to the JSON property `inputParameterDefinitions`
3316
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition>]
3317
+ attr_accessor :input_parameter_definitions
3318
+
3300
3319
  # The Knowledge Connector settings for this page or flow. This includes
3301
3320
  # information such as the attached Knowledge Bases, and the way to execute
3302
3321
  # fulfillment.
@@ -3327,6 +3346,11 @@ module Google
3327
3346
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings]
3328
3347
  attr_accessor :nlu_settings
3329
3348
 
3349
+ # Optional. Defined structured output parameters for this flow.
3350
+ # Corresponds to the JSON property `outputParameterDefinitions`
3351
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition>]
3352
+ attr_accessor :output_parameter_definitions
3353
+
3330
3354
  # A flow's transition route group serve two purposes: * They are responsible for
3331
3355
  # matching the user's first utterances in the flow. * They are inherited by
3332
3356
  # every page's transition route groups. Transition route groups defined in the
@@ -3360,11 +3384,13 @@ module Google
3360
3384
  @description = args[:description] if args.key?(:description)
3361
3385
  @display_name = args[:display_name] if args.key?(:display_name)
3362
3386
  @event_handlers = args[:event_handlers] if args.key?(:event_handlers)
3387
+ @input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
3363
3388
  @knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
3364
3389
  @locked = args[:locked] if args.key?(:locked)
3365
3390
  @multi_language_settings = args[:multi_language_settings] if args.key?(:multi_language_settings)
3366
3391
  @name = args[:name] if args.key?(:name)
3367
3392
  @nlu_settings = args[:nlu_settings] if args.key?(:nlu_settings)
3393
+ @output_parameter_definitions = args[:output_parameter_definitions] if args.key?(:output_parameter_definitions)
3368
3394
  @transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
3369
3395
  @transition_routes = args[:transition_routes] if args.key?(:transition_routes)
3370
3396
  end
@@ -3455,6 +3481,33 @@ module Google
3455
3481
  end
3456
3482
  end
3457
3483
 
3484
+ # Stores metadata of the transition to a target CX flow. Flow transition actions
3485
+ # exit the caller playbook and enter the child flow.
3486
+ class GoogleCloudDialogflowCxV3FlowTransition
3487
+ include Google::Apis::Core::Hashable
3488
+
3489
+ # Output only. The display name of the flow.
3490
+ # Corresponds to the JSON property `displayName`
3491
+ # @return [String]
3492
+ attr_accessor :display_name
3493
+
3494
+ # Required. The unique identifier of the flow. Format: `projects//locations//
3495
+ # agents/`.
3496
+ # Corresponds to the JSON property `flow`
3497
+ # @return [String]
3498
+ attr_accessor :flow
3499
+
3500
+ def initialize(**args)
3501
+ update!(**args)
3502
+ end
3503
+
3504
+ # Update properties of this object
3505
+ def update!(**args)
3506
+ @display_name = args[:display_name] if args.key?(:display_name)
3507
+ @flow = args[:flow] if args.key?(:flow)
3508
+ end
3509
+ end
3510
+
3458
3511
  # The response message for Flows.GetFlowValidationResult.
3459
3512
  class GoogleCloudDialogflowCxV3FlowValidationResult
3460
3513
  include Google::Apis::Core::Hashable
@@ -4790,6 +4843,32 @@ module Google
4790
4843
  end
4791
4844
  end
4792
4845
 
4846
+ # A type schema object that's specified inline.
4847
+ class GoogleCloudDialogflowCxV3InlineSchema
4848
+ include Google::Apis::Core::Hashable
4849
+
4850
+ # Encapsulates different type schema variations: either a reference to an a
4851
+ # schema that's already defined by a tool, or an inline definition.
4852
+ # Corresponds to the JSON property `items`
4853
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchema]
4854
+ attr_accessor :items
4855
+
4856
+ # Data type of the schema.
4857
+ # Corresponds to the JSON property `type`
4858
+ # @return [String]
4859
+ attr_accessor :type
4860
+
4861
+ def initialize(**args)
4862
+ update!(**args)
4863
+ end
4864
+
4865
+ # Update properties of this object
4866
+ def update!(**args)
4867
+ @items = args[:items] if args.key?(:items)
4868
+ @type = args[:type] if args.key?(:type)
4869
+ end
4870
+ end
4871
+
4793
4872
  # Inline source for a Dialogflow operation that reads or imports objects (e.g.
4794
4873
  # intents) into Dialogflow.
4795
4874
  class GoogleCloudDialogflowCxV3InlineSource
@@ -6441,6 +6520,45 @@ module Google
6441
6520
  end
6442
6521
  end
6443
6522
 
6523
+ # Defines the properties of a parameter. Used to define parameters used in the
6524
+ # agent and the input / output parameters for each fulfillment.
6525
+ class GoogleCloudDialogflowCxV3ParameterDefinition
6526
+ include Google::Apis::Core::Hashable
6527
+
6528
+ # Human-readable description of the parameter. Limited to 300 characters.
6529
+ # Corresponds to the JSON property `description`
6530
+ # @return [String]
6531
+ attr_accessor :description
6532
+
6533
+ # Required. Name of parameter.
6534
+ # Corresponds to the JSON property `name`
6535
+ # @return [String]
6536
+ attr_accessor :name
6537
+
6538
+ # Type of parameter.
6539
+ # Corresponds to the JSON property `type`
6540
+ # @return [String]
6541
+ attr_accessor :type
6542
+
6543
+ # Encapsulates different type schema variations: either a reference to an a
6544
+ # schema that's already defined by a tool, or an inline definition.
6545
+ # Corresponds to the JSON property `typeSchema`
6546
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchema]
6547
+ attr_accessor :type_schema
6548
+
6549
+ def initialize(**args)
6550
+ update!(**args)
6551
+ end
6552
+
6553
+ # Update properties of this object
6554
+ def update!(**args)
6555
+ @description = args[:description] if args.key?(:description)
6556
+ @name = args[:name] if args.key?(:name)
6557
+ @type = args[:type] if args.key?(:type)
6558
+ @type_schema = args[:type_schema] if args.key?(:type_schema)
6559
+ end
6560
+ end
6561
+
6444
6562
  # Text input which can be used for prompt or banned phrases.
6445
6563
  class GoogleCloudDialogflowCxV3Phrase
6446
6564
  include Google::Apis::Core::Hashable
@@ -6492,6 +6610,11 @@ module Google
6492
6610
  # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler>]
6493
6611
  attr_accessor :handlers
6494
6612
 
6613
+ # Optional. Defined structured input parameters for this playbook.
6614
+ # Corresponds to the JSON property `inputParameterDefinitions`
6615
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition>]
6616
+ attr_accessor :input_parameter_definitions
6617
+
6495
6618
  # Message of the Instruction of the playbook.
6496
6619
  # Corresponds to the JSON property `instruction`
6497
6620
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction]
@@ -6508,6 +6631,16 @@ module Google
6508
6631
  # @return [String]
6509
6632
  attr_accessor :name
6510
6633
 
6634
+ # Optional. Defined structured output parameters for this playbook.
6635
+ # Corresponds to the JSON property `outputParameterDefinitions`
6636
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition>]
6637
+ attr_accessor :output_parameter_definitions
6638
+
6639
+ # Optional. Type of the playbook.
6640
+ # Corresponds to the JSON property `playbookType`
6641
+ # @return [String]
6642
+ attr_accessor :playbook_type
6643
+
6511
6644
  # Output only. The resource name of flows referenced by the current playbook in
6512
6645
  # the instructions.
6513
6646
  # Corresponds to the JSON property `referencedFlows`
@@ -6548,9 +6681,12 @@ module Google
6548
6681
  @display_name = args[:display_name] if args.key?(:display_name)
6549
6682
  @goal = args[:goal] if args.key?(:goal)
6550
6683
  @handlers = args[:handlers] if args.key?(:handlers)
6684
+ @input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
6551
6685
  @instruction = args[:instruction] if args.key?(:instruction)
6552
6686
  @llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
6553
6687
  @name = args[:name] if args.key?(:name)
6688
+ @output_parameter_definitions = args[:output_parameter_definitions] if args.key?(:output_parameter_definitions)
6689
+ @playbook_type = args[:playbook_type] if args.key?(:playbook_type)
6554
6690
  @referenced_flows = args[:referenced_flows] if args.key?(:referenced_flows)
6555
6691
  @referenced_playbooks = args[:referenced_playbooks] if args.key?(:referenced_playbooks)
6556
6692
  @referenced_tools = args[:referenced_tools] if args.key?(:referenced_tools)
@@ -6731,6 +6867,33 @@ module Google
6731
6867
  end
6732
6868
  end
6733
6869
 
6870
+ # Stores metadata of the transition to another target playbook. Playbook
6871
+ # transition actions exit the caller playbook and enter the target playbook.
6872
+ class GoogleCloudDialogflowCxV3PlaybookTransition
6873
+ include Google::Apis::Core::Hashable
6874
+
6875
+ # Output only. The display name of the playbook.
6876
+ # Corresponds to the JSON property `displayName`
6877
+ # @return [String]
6878
+ attr_accessor :display_name
6879
+
6880
+ # Required. The unique identifier of the playbook. Format: `projects//locations//
6881
+ # agents//playbooks/`.
6882
+ # Corresponds to the JSON property `playbook`
6883
+ # @return [String]
6884
+ attr_accessor :playbook
6885
+
6886
+ def initialize(**args)
6887
+ update!(**args)
6888
+ end
6889
+
6890
+ # Update properties of this object
6891
+ def update!(**args)
6892
+ @display_name = args[:display_name] if args.key?(:display_name)
6893
+ @playbook = args[:playbook] if args.key?(:playbook)
6894
+ end
6895
+ end
6896
+
6734
6897
  # Playbook version is a snapshot of the playbook at certain timestamp.
6735
6898
  class GoogleCloudDialogflowCxV3PlaybookVersion
6736
6899
  include Google::Apis::Core::Hashable
@@ -9821,6 +9984,58 @@ module Google
9821
9984
  end
9822
9985
  end
9823
9986
 
9987
+ # Encapsulates different type schema variations: either a reference to an a
9988
+ # schema that's already defined by a tool, or an inline definition.
9989
+ class GoogleCloudDialogflowCxV3TypeSchema
9990
+ include Google::Apis::Core::Hashable
9991
+
9992
+ # A type schema object that's specified inline.
9993
+ # Corresponds to the JSON property `inlineSchema`
9994
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3InlineSchema]
9995
+ attr_accessor :inline_schema
9996
+
9997
+ # A reference to the schema of an existing tool.
9998
+ # Corresponds to the JSON property `schemaReference`
9999
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchemaSchemaReference]
10000
+ attr_accessor :schema_reference
10001
+
10002
+ def initialize(**args)
10003
+ update!(**args)
10004
+ end
10005
+
10006
+ # Update properties of this object
10007
+ def update!(**args)
10008
+ @inline_schema = args[:inline_schema] if args.key?(:inline_schema)
10009
+ @schema_reference = args[:schema_reference] if args.key?(:schema_reference)
10010
+ end
10011
+ end
10012
+
10013
+ # A reference to the schema of an existing tool.
10014
+ class GoogleCloudDialogflowCxV3TypeSchemaSchemaReference
10015
+ include Google::Apis::Core::Hashable
10016
+
10017
+ # The name of the schema.
10018
+ # Corresponds to the JSON property `schema`
10019
+ # @return [String]
10020
+ attr_accessor :schema
10021
+
10022
+ # The tool that contains this schema definition. Format: `projects//locations//
10023
+ # agents//tools/`.
10024
+ # Corresponds to the JSON property `tool`
10025
+ # @return [String]
10026
+ attr_accessor :tool
10027
+
10028
+ def initialize(**args)
10029
+ update!(**args)
10030
+ end
10031
+
10032
+ # Update properties of this object
10033
+ def update!(**args)
10034
+ @schema = args[:schema] if args.key?(:schema)
10035
+ @tool = args[:tool] if args.key?(:tool)
10036
+ end
10037
+ end
10038
+
9824
10039
  # UserUtterance represents one message sent by the customer.
9825
10040
  class GoogleCloudDialogflowCxV3UserUtterance
9826
10041
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV3
18
18
  # Version of the google-apis-dialogflow_v3 gem
19
- GEM_VERSION = "0.112.0"
19
+ GEM_VERSION = "0.113.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250627"
25
+ REVISION = "20250804"
26
26
  end
27
27
  end
28
28
  end
@@ -562,6 +562,12 @@ module Google
562
562
  include Google::Apis::Core::JsonObjectSupport
563
563
  end
564
564
 
565
+ class GoogleCloudDialogflowCxV3FlowTransition
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
565
571
  class GoogleCloudDialogflowCxV3FlowValidationResult
566
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
567
573
 
@@ -790,6 +796,12 @@ module Google
790
796
  include Google::Apis::Core::JsonObjectSupport
791
797
  end
792
798
 
799
+ class GoogleCloudDialogflowCxV3InlineSchema
800
+ class Representation < Google::Apis::Core::JsonRepresentation; end
801
+
802
+ include Google::Apis::Core::JsonObjectSupport
803
+ end
804
+
793
805
  class GoogleCloudDialogflowCxV3InlineSource
794
806
  class Representation < Google::Apis::Core::JsonRepresentation; end
795
807
 
@@ -1066,6 +1078,12 @@ module Google
1066
1078
  include Google::Apis::Core::JsonObjectSupport
1067
1079
  end
1068
1080
 
1081
+ class GoogleCloudDialogflowCxV3ParameterDefinition
1082
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1083
+
1084
+ include Google::Apis::Core::JsonObjectSupport
1085
+ end
1086
+
1069
1087
  class GoogleCloudDialogflowCxV3Phrase
1070
1088
  class Representation < Google::Apis::Core::JsonRepresentation; end
1071
1089
 
@@ -1114,6 +1132,12 @@ module Google
1114
1132
  include Google::Apis::Core::JsonObjectSupport
1115
1133
  end
1116
1134
 
1135
+ class GoogleCloudDialogflowCxV3PlaybookTransition
1136
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1137
+
1138
+ include Google::Apis::Core::JsonObjectSupport
1139
+ end
1140
+
1117
1141
  class GoogleCloudDialogflowCxV3PlaybookVersion
1118
1142
  class Representation < Google::Apis::Core::JsonRepresentation; end
1119
1143
 
@@ -1606,6 +1630,18 @@ module Google
1606
1630
  include Google::Apis::Core::JsonObjectSupport
1607
1631
  end
1608
1632
 
1633
+ class GoogleCloudDialogflowCxV3TypeSchema
1634
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1635
+
1636
+ include Google::Apis::Core::JsonObjectSupport
1637
+ end
1638
+
1639
+ class GoogleCloudDialogflowCxV3TypeSchemaSchemaReference
1640
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1641
+
1642
+ include Google::Apis::Core::JsonObjectSupport
1643
+ end
1644
+
1609
1645
  class GoogleCloudDialogflowCxV3UserUtterance
1610
1646
  class Representation < Google::Apis::Core::JsonRepresentation; end
1611
1647
 
@@ -3707,8 +3743,12 @@ module Google
3707
3743
 
3708
3744
  property :flow_invocation, as: 'flowInvocation', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowInvocation, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowInvocation::Representation
3709
3745
 
3746
+ property :flow_transition, as: 'flowTransition', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowTransition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3FlowTransition::Representation
3747
+
3710
3748
  property :playbook_invocation, as: 'playbookInvocation', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInvocation, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInvocation::Representation
3711
3749
 
3750
+ property :playbook_transition, as: 'playbookTransition', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookTransition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookTransition::Representation
3751
+
3712
3752
  property :tool_use, as: 'toolUse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolUse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolUse::Representation
3713
3753
 
3714
3754
  property :user_utterance, as: 'userUtterance', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3UserUtterance, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3UserUtterance::Representation
@@ -4586,6 +4626,8 @@ module Google
4586
4626
  property :display_name, as: 'displayName'
4587
4627
  collection :event_handlers, as: 'eventHandlers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler::Representation
4588
4628
 
4629
+ collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
4630
+
4589
4631
  property :knowledge_connector_settings, as: 'knowledgeConnectorSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings::Representation
4590
4632
 
4591
4633
  property :locked, as: 'locked'
@@ -4594,6 +4636,8 @@ module Google
4594
4636
  property :name, as: 'name'
4595
4637
  property :nlu_settings, as: 'nluSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings::Representation
4596
4638
 
4639
+ collection :output_parameter_definitions, as: 'outputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
4640
+
4597
4641
  collection :transition_route_groups, as: 'transitionRouteGroups'
4598
4642
  collection :transition_routes, as: 'transitionRoutes', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute::Representation
4599
4643
 
@@ -4624,6 +4668,14 @@ module Google
4624
4668
  end
4625
4669
  end
4626
4670
 
4671
+ class GoogleCloudDialogflowCxV3FlowTransition
4672
+ # @private
4673
+ class Representation < Google::Apis::Core::JsonRepresentation
4674
+ property :display_name, as: 'displayName'
4675
+ property :flow, as: 'flow'
4676
+ end
4677
+ end
4678
+
4627
4679
  class GoogleCloudDialogflowCxV3FlowValidationResult
4628
4680
  # @private
4629
4681
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4998,6 +5050,15 @@ module Google
4998
5050
  end
4999
5051
  end
5000
5052
 
5053
+ class GoogleCloudDialogflowCxV3InlineSchema
5054
+ # @private
5055
+ class Representation < Google::Apis::Core::JsonRepresentation
5056
+ property :items, as: 'items', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchema, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchema::Representation
5057
+
5058
+ property :type, as: 'type'
5059
+ end
5060
+ end
5061
+
5001
5062
  class GoogleCloudDialogflowCxV3InlineSource
5002
5063
  # @private
5003
5064
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5450,6 +5511,17 @@ module Google
5450
5511
  end
5451
5512
  end
5452
5513
 
5514
+ class GoogleCloudDialogflowCxV3ParameterDefinition
5515
+ # @private
5516
+ class Representation < Google::Apis::Core::JsonRepresentation
5517
+ property :description, as: 'description'
5518
+ property :name, as: 'name'
5519
+ property :type, as: 'type'
5520
+ property :type_schema, as: 'typeSchema', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchema, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchema::Representation
5521
+
5522
+ end
5523
+ end
5524
+
5453
5525
  class GoogleCloudDialogflowCxV3Phrase
5454
5526
  # @private
5455
5527
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5465,11 +5537,16 @@ module Google
5465
5537
  property :goal, as: 'goal'
5466
5538
  collection :handlers, as: 'handlers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler::Representation
5467
5539
 
5540
+ collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
5541
+
5468
5542
  property :instruction, as: 'instruction', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction::Representation
5469
5543
 
5470
5544
  property :llm_model_settings, as: 'llmModelSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings::Representation
5471
5545
 
5472
5546
  property :name, as: 'name'
5547
+ collection :output_parameter_definitions, as: 'outputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
5548
+
5549
+ property :playbook_type, as: 'playbookType'
5473
5550
  collection :referenced_flows, as: 'referencedFlows'
5474
5551
  collection :referenced_playbooks, as: 'referencedPlaybooks'
5475
5552
  collection :referenced_tools, as: 'referencedTools'
@@ -5532,6 +5609,14 @@ module Google
5532
5609
  end
5533
5610
  end
5534
5611
 
5612
+ class GoogleCloudDialogflowCxV3PlaybookTransition
5613
+ # @private
5614
+ class Representation < Google::Apis::Core::JsonRepresentation
5615
+ property :display_name, as: 'displayName'
5616
+ property :playbook, as: 'playbook'
5617
+ end
5618
+ end
5619
+
5535
5620
  class GoogleCloudDialogflowCxV3PlaybookVersion
5536
5621
  # @private
5537
5622
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6363,6 +6448,24 @@ module Google
6363
6448
  end
6364
6449
  end
6365
6450
 
6451
+ class GoogleCloudDialogflowCxV3TypeSchema
6452
+ # @private
6453
+ class Representation < Google::Apis::Core::JsonRepresentation
6454
+ property :inline_schema, as: 'inlineSchema', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3InlineSchema, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3InlineSchema::Representation
6455
+
6456
+ property :schema_reference, as: 'schemaReference', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchemaSchemaReference, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TypeSchemaSchemaReference::Representation
6457
+
6458
+ end
6459
+ end
6460
+
6461
+ class GoogleCloudDialogflowCxV3TypeSchemaSchemaReference
6462
+ # @private
6463
+ class Representation < Google::Apis::Core::JsonRepresentation
6464
+ property :schema, as: 'schema'
6465
+ property :tool, as: 'tool'
6466
+ end
6467
+ end
6468
+
6366
6469
  class GoogleCloudDialogflowCxV3UserUtterance
6367
6470
  # @private
6368
6471
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.112.0
4
+ version: 0.113.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.112.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.113.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
62
62
  rdoc_options: []
63
63
  require_paths: