google-apis-dialogflow_v3 0.111.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78ec2639e4a154986d4545e06ff60ddb3f6afd6cb1f7405ea666ee553a5d842b
|
4
|
+
data.tar.gz: af70b608fd02fbeaf3b00bca8858a46877ea7cf621daf0e74fd025c5efa3f3f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8269ff4007418e76cc92c31b2b20d309a980a011bd7d961f8bb40258737a52b364df061f3a71aecd624e940613b92bfbc0e92eed39c37d32ec00eb34fad7f5d8
|
7
|
+
data.tar.gz: bdbe2a2a6cc3229816323a3e1df9b091040600da12f6691d27f26be2fbb70c2a3685bf63aa3304ac694a0eaef5c2f050da2e2b3d2da1470c36b1d27d042080bb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.112.0 (2025-07-06)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250627
|
10
|
+
|
3
11
|
### v0.111.0 (2025-06-29)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250625
|
@@ -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
|
@@ -1720,6 +1734,11 @@ module Google
|
|
1720
1734
|
# @return [String]
|
1721
1735
|
attr_accessor :document_uri
|
1722
1736
|
|
1737
|
+
# Metadata associated with the document.
|
1738
|
+
# Corresponds to the JSON property `metadata`
|
1739
|
+
# @return [Hash<String,Object>]
|
1740
|
+
attr_accessor :metadata
|
1741
|
+
|
1723
1742
|
# Text included in the prompt.
|
1724
1743
|
# Corresponds to the JSON property `text`
|
1725
1744
|
# @return [String]
|
@@ -1733,6 +1752,7 @@ module Google
|
|
1733
1752
|
def update!(**args)
|
1734
1753
|
@document_title = args[:document_title] if args.key?(:document_title)
|
1735
1754
|
@document_uri = args[:document_uri] if args.key?(:document_uri)
|
1755
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
1736
1756
|
@text = args[:text] if args.key?(:text)
|
1737
1757
|
end
|
1738
1758
|
end
|
@@ -3291,6 +3311,11 @@ module Google
|
|
3291
3311
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler>]
|
3292
3312
|
attr_accessor :event_handlers
|
3293
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
|
+
|
3294
3319
|
# The Knowledge Connector settings for this page or flow. This includes
|
3295
3320
|
# information such as the attached Knowledge Bases, and the way to execute
|
3296
3321
|
# fulfillment.
|
@@ -3321,6 +3346,11 @@ module Google
|
|
3321
3346
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings]
|
3322
3347
|
attr_accessor :nlu_settings
|
3323
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
|
+
|
3324
3354
|
# A flow's transition route group serve two purposes: * They are responsible for
|
3325
3355
|
# matching the user's first utterances in the flow. * They are inherited by
|
3326
3356
|
# every page's transition route groups. Transition route groups defined in the
|
@@ -3354,11 +3384,13 @@ module Google
|
|
3354
3384
|
@description = args[:description] if args.key?(:description)
|
3355
3385
|
@display_name = args[:display_name] if args.key?(:display_name)
|
3356
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)
|
3357
3388
|
@knowledge_connector_settings = args[:knowledge_connector_settings] if args.key?(:knowledge_connector_settings)
|
3358
3389
|
@locked = args[:locked] if args.key?(:locked)
|
3359
3390
|
@multi_language_settings = args[:multi_language_settings] if args.key?(:multi_language_settings)
|
3360
3391
|
@name = args[:name] if args.key?(:name)
|
3361
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)
|
3362
3394
|
@transition_route_groups = args[:transition_route_groups] if args.key?(:transition_route_groups)
|
3363
3395
|
@transition_routes = args[:transition_routes] if args.key?(:transition_routes)
|
3364
3396
|
end
|
@@ -3449,6 +3481,33 @@ module Google
|
|
3449
3481
|
end
|
3450
3482
|
end
|
3451
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
|
+
|
3452
3511
|
# The response message for Flows.GetFlowValidationResult.
|
3453
3512
|
class GoogleCloudDialogflowCxV3FlowValidationResult
|
3454
3513
|
include Google::Apis::Core::Hashable
|
@@ -4784,6 +4843,32 @@ module Google
|
|
4784
4843
|
end
|
4785
4844
|
end
|
4786
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
|
+
|
4787
4872
|
# Inline source for a Dialogflow operation that reads or imports objects (e.g.
|
4788
4873
|
# intents) into Dialogflow.
|
4789
4874
|
class GoogleCloudDialogflowCxV3InlineSource
|
@@ -6435,6 +6520,45 @@ module Google
|
|
6435
6520
|
end
|
6436
6521
|
end
|
6437
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
|
+
|
6438
6562
|
# Text input which can be used for prompt or banned phrases.
|
6439
6563
|
class GoogleCloudDialogflowCxV3Phrase
|
6440
6564
|
include Google::Apis::Core::Hashable
|
@@ -6486,6 +6610,11 @@ module Google
|
|
6486
6610
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler>]
|
6487
6611
|
attr_accessor :handlers
|
6488
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
|
+
|
6489
6618
|
# Message of the Instruction of the playbook.
|
6490
6619
|
# Corresponds to the JSON property `instruction`
|
6491
6620
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction]
|
@@ -6502,6 +6631,16 @@ module Google
|
|
6502
6631
|
# @return [String]
|
6503
6632
|
attr_accessor :name
|
6504
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
|
+
|
6505
6644
|
# Output only. The resource name of flows referenced by the current playbook in
|
6506
6645
|
# the instructions.
|
6507
6646
|
# Corresponds to the JSON property `referencedFlows`
|
@@ -6542,9 +6681,12 @@ module Google
|
|
6542
6681
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6543
6682
|
@goal = args[:goal] if args.key?(:goal)
|
6544
6683
|
@handlers = args[:handlers] if args.key?(:handlers)
|
6684
|
+
@input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
|
6545
6685
|
@instruction = args[:instruction] if args.key?(:instruction)
|
6546
6686
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
6547
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)
|
6548
6690
|
@referenced_flows = args[:referenced_flows] if args.key?(:referenced_flows)
|
6549
6691
|
@referenced_playbooks = args[:referenced_playbooks] if args.key?(:referenced_playbooks)
|
6550
6692
|
@referenced_tools = args[:referenced_tools] if args.key?(:referenced_tools)
|
@@ -6725,6 +6867,33 @@ module Google
|
|
6725
6867
|
end
|
6726
6868
|
end
|
6727
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
|
+
|
6728
6897
|
# Playbook version is a snapshot of the playbook at certain timestamp.
|
6729
6898
|
class GoogleCloudDialogflowCxV3PlaybookVersion
|
6730
6899
|
include Google::Apis::Core::Hashable
|
@@ -9815,6 +9984,58 @@ module Google
|
|
9815
9984
|
end
|
9816
9985
|
end
|
9817
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
|
+
|
9818
10039
|
# UserUtterance represents one message sent by the customer.
|
9819
10040
|
class GoogleCloudDialogflowCxV3UserUtterance
|
9820
10041
|
include Google::Apis::Core::Hashable
|
@@ -10057,12 +10278,6 @@ module Google
|
|
10057
10278
|
# @return [String]
|
10058
10279
|
attr_accessor :name
|
10059
10280
|
|
10060
|
-
# Optional. The name of the second voice (non-English) if language detection is
|
10061
|
-
# supported.
|
10062
|
-
# Corresponds to the JSON property `secondLanguageModel`
|
10063
|
-
# @return [String]
|
10064
|
-
attr_accessor :second_language_model
|
10065
|
-
|
10066
10281
|
# Optional. The preferred gender of the voice. If not set, the service will
|
10067
10282
|
# choose a voice based on the other parameters such as language_code and name.
|
10068
10283
|
# Note that this is only a preference, not requirement. If a voice of the
|
@@ -10079,7 +10294,6 @@ module Google
|
|
10079
10294
|
# Update properties of this object
|
10080
10295
|
def update!(**args)
|
10081
10296
|
@name = args[:name] if args.key?(:name)
|
10082
|
-
@second_language_model = args[:second_language_model] if args.key?(:second_language_model)
|
10083
10297
|
@ssml_gender = args[:ssml_gender] if args.key?(:ssml_gender)
|
10084
10298
|
end
|
10085
10299
|
end
|
@@ -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.
|
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 = "
|
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
|
@@ -4171,6 +4211,7 @@ module Google
|
|
4171
4211
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4172
4212
|
property :document_title, as: 'documentTitle'
|
4173
4213
|
property :document_uri, as: 'documentUri'
|
4214
|
+
hash :metadata, as: 'metadata'
|
4174
4215
|
property :text, as: 'text'
|
4175
4216
|
end
|
4176
4217
|
end
|
@@ -4585,6 +4626,8 @@ module Google
|
|
4585
4626
|
property :display_name, as: 'displayName'
|
4586
4627
|
collection :event_handlers, as: 'eventHandlers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3EventHandler::Representation
|
4587
4628
|
|
4629
|
+
collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
|
4630
|
+
|
4588
4631
|
property :knowledge_connector_settings, as: 'knowledgeConnectorSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3KnowledgeConnectorSettings::Representation
|
4589
4632
|
|
4590
4633
|
property :locked, as: 'locked'
|
@@ -4593,6 +4636,8 @@ module Google
|
|
4593
4636
|
property :name, as: 'name'
|
4594
4637
|
property :nlu_settings, as: 'nluSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3NluSettings::Representation
|
4595
4638
|
|
4639
|
+
collection :output_parameter_definitions, as: 'outputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
|
4640
|
+
|
4596
4641
|
collection :transition_route_groups, as: 'transitionRouteGroups'
|
4597
4642
|
collection :transition_routes, as: 'transitionRoutes', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TransitionRoute::Representation
|
4598
4643
|
|
@@ -4623,6 +4668,14 @@ module Google
|
|
4623
4668
|
end
|
4624
4669
|
end
|
4625
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
|
+
|
4626
4679
|
class GoogleCloudDialogflowCxV3FlowValidationResult
|
4627
4680
|
# @private
|
4628
4681
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4997,6 +5050,15 @@ module Google
|
|
4997
5050
|
end
|
4998
5051
|
end
|
4999
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
|
+
|
5000
5062
|
class GoogleCloudDialogflowCxV3InlineSource
|
5001
5063
|
# @private
|
5002
5064
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5449,6 +5511,17 @@ module Google
|
|
5449
5511
|
end
|
5450
5512
|
end
|
5451
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
|
+
|
5452
5525
|
class GoogleCloudDialogflowCxV3Phrase
|
5453
5526
|
# @private
|
5454
5527
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5464,11 +5537,16 @@ module Google
|
|
5464
5537
|
property :goal, as: 'goal'
|
5465
5538
|
collection :handlers, as: 'handlers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler::Representation
|
5466
5539
|
|
5540
|
+
collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
|
5541
|
+
|
5467
5542
|
property :instruction, as: 'instruction', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction::Representation
|
5468
5543
|
|
5469
5544
|
property :llm_model_settings, as: 'llmModelSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings::Representation
|
5470
5545
|
|
5471
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'
|
5472
5550
|
collection :referenced_flows, as: 'referencedFlows'
|
5473
5551
|
collection :referenced_playbooks, as: 'referencedPlaybooks'
|
5474
5552
|
collection :referenced_tools, as: 'referencedTools'
|
@@ -5531,6 +5609,14 @@ module Google
|
|
5531
5609
|
end
|
5532
5610
|
end
|
5533
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
|
+
|
5534
5620
|
class GoogleCloudDialogflowCxV3PlaybookVersion
|
5535
5621
|
# @private
|
5536
5622
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6362,6 +6448,24 @@ module Google
|
|
6362
6448
|
end
|
6363
6449
|
end
|
6364
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
|
+
|
6365
6469
|
class GoogleCloudDialogflowCxV3UserUtterance
|
6366
6470
|
# @private
|
6367
6471
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6438,7 +6542,6 @@ module Google
|
|
6438
6542
|
# @private
|
6439
6543
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6440
6544
|
property :name, as: 'name'
|
6441
|
-
property :second_language_model, as: 'secondLanguageModel'
|
6442
6545
|
property :ssml_gender, as: 'ssmlGender'
|
6443
6546
|
end
|
6444
6547
|
end
|
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.
|
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.
|
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:
|