google-apis-dialogflow_v3beta1 0.95.0 → 0.97.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: '088e195a5645b6ecaf529170a84370f5612698c03c42ea983b2b20480e5acb7c'
|
4
|
+
data.tar.gz: 1948e42846435d696f255a7c01ecae238a7543d47287c389718a96a197e7c4f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 36061448596c93033da8e389735c6c28a4d03e975c6b15635be32d702f64c3883a8611d815e87abf6a661e1ee3795656ee53196d9a5a7aa1750f9ae560fb5263
|
7
|
+
data.tar.gz: da94f8c2dabc2d22cf513b2722b089e1bbb909ff6728c9aa05e704dcb3ae4ea047fd7fb7fc83569fb2bc5dae344efb95ba2e1fca5c9a1d2cf70771d17bcd3354
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
2
2
|
|
3
|
+
### v0.97.0 (2025-03-23)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250313
|
6
|
+
|
7
|
+
### v0.96.0 (2025-03-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250310
|
10
|
+
|
3
11
|
### v0.95.0 (2025-03-09)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250305
|
@@ -3769,16 +3769,33 @@ module Google
|
|
3769
3769
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentUtterance]
|
3770
3770
|
attr_accessor :agent_utterance
|
3771
3771
|
|
3772
|
+
# Event represents the event sent by the customer.
|
3773
|
+
# Corresponds to the JSON property `event`
|
3774
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Event]
|
3775
|
+
attr_accessor :event
|
3776
|
+
|
3772
3777
|
# Stores metadata of the invocation of a CX flow.
|
3773
3778
|
# Corresponds to the JSON property `flowInvocation`
|
3774
3779
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowInvocation]
|
3775
3780
|
attr_accessor :flow_invocation
|
3776
3781
|
|
3782
|
+
# Stores metadata of the transition to a target CX flow. Flow transition actions
|
3783
|
+
# exit the caller playbook and enter the child flow.
|
3784
|
+
# Corresponds to the JSON property `flowTransition`
|
3785
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowTransition]
|
3786
|
+
attr_accessor :flow_transition
|
3787
|
+
|
3777
3788
|
# Stores metadata of the invocation of a child playbook.
|
3778
3789
|
# Corresponds to the JSON property `playbookInvocation`
|
3779
3790
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInvocation]
|
3780
3791
|
attr_accessor :playbook_invocation
|
3781
3792
|
|
3793
|
+
# Stores metadata of the transition to another target playbook. Playbook
|
3794
|
+
# transition actions exit the caller playbook and enter the target playbook.
|
3795
|
+
# Corresponds to the JSON property `playbookTransition`
|
3796
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookTransition]
|
3797
|
+
attr_accessor :playbook_transition
|
3798
|
+
|
3782
3799
|
# Stores metadata of the invocation of an action supported by a tool.
|
3783
3800
|
# Corresponds to the JSON property `toolUse`
|
3784
3801
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolUse]
|
@@ -3796,8 +3813,11 @@ module Google
|
|
3796
3813
|
# Update properties of this object
|
3797
3814
|
def update!(**args)
|
3798
3815
|
@agent_utterance = args[:agent_utterance] if args.key?(:agent_utterance)
|
3816
|
+
@event = args[:event] if args.key?(:event)
|
3799
3817
|
@flow_invocation = args[:flow_invocation] if args.key?(:flow_invocation)
|
3818
|
+
@flow_transition = args[:flow_transition] if args.key?(:flow_transition)
|
3800
3819
|
@playbook_invocation = args[:playbook_invocation] if args.key?(:playbook_invocation)
|
3820
|
+
@playbook_transition = args[:playbook_transition] if args.key?(:playbook_transition)
|
3801
3821
|
@tool_use = args[:tool_use] if args.key?(:tool_use)
|
3802
3822
|
@user_utterance = args[:user_utterance] if args.key?(:user_utterance)
|
3803
3823
|
end
|
@@ -6524,6 +6544,25 @@ module Google
|
|
6524
6544
|
end
|
6525
6545
|
end
|
6526
6546
|
|
6547
|
+
# Event represents the event sent by the customer.
|
6548
|
+
class GoogleCloudDialogflowCxV3beta1Event
|
6549
|
+
include Google::Apis::Core::Hashable
|
6550
|
+
|
6551
|
+
# Required. Name of the event.
|
6552
|
+
# Corresponds to the JSON property `event`
|
6553
|
+
# @return [String]
|
6554
|
+
attr_accessor :event
|
6555
|
+
|
6556
|
+
def initialize(**args)
|
6557
|
+
update!(**args)
|
6558
|
+
end
|
6559
|
+
|
6560
|
+
# Update properties of this object
|
6561
|
+
def update!(**args)
|
6562
|
+
@event = args[:event] if args.key?(:event)
|
6563
|
+
end
|
6564
|
+
end
|
6565
|
+
|
6527
6566
|
# An event handler specifies an event that can be handled during a session. When
|
6528
6567
|
# the specified event happens, the following actions are taken in order: * If
|
6529
6568
|
# there is a `trigger_fulfillment` associated with the event, it will be called.
|
@@ -7706,6 +7745,33 @@ module Google
|
|
7706
7745
|
end
|
7707
7746
|
end
|
7708
7747
|
|
7748
|
+
# Stores metadata of the transition to a target CX flow. Flow transition actions
|
7749
|
+
# exit the caller playbook and enter the child flow.
|
7750
|
+
class GoogleCloudDialogflowCxV3beta1FlowTransition
|
7751
|
+
include Google::Apis::Core::Hashable
|
7752
|
+
|
7753
|
+
# Output only. The display name of the flow.
|
7754
|
+
# Corresponds to the JSON property `displayName`
|
7755
|
+
# @return [String]
|
7756
|
+
attr_accessor :display_name
|
7757
|
+
|
7758
|
+
# Required. The unique identifier of the flow. Format: `projects//locations//
|
7759
|
+
# agents/`.
|
7760
|
+
# Corresponds to the JSON property `flow`
|
7761
|
+
# @return [String]
|
7762
|
+
attr_accessor :flow
|
7763
|
+
|
7764
|
+
def initialize(**args)
|
7765
|
+
update!(**args)
|
7766
|
+
end
|
7767
|
+
|
7768
|
+
# Update properties of this object
|
7769
|
+
def update!(**args)
|
7770
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
7771
|
+
@flow = args[:flow] if args.key?(:flow)
|
7772
|
+
end
|
7773
|
+
end
|
7774
|
+
|
7709
7775
|
# The response message for Flows.GetFlowValidationResult.
|
7710
7776
|
class GoogleCloudDialogflowCxV3beta1FlowValidationResult
|
7711
7777
|
include Google::Apis::Core::Hashable
|
@@ -10812,6 +10878,11 @@ module Google
|
|
10812
10878
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
|
10813
10879
|
attr_accessor :output_parameter_definitions
|
10814
10880
|
|
10881
|
+
# Optional. Type of the playbook.
|
10882
|
+
# Corresponds to the JSON property `playbookType`
|
10883
|
+
# @return [String]
|
10884
|
+
attr_accessor :playbook_type
|
10885
|
+
|
10815
10886
|
# Output only. The resource name of flows referenced by the current playbook in
|
10816
10887
|
# the instructions.
|
10817
10888
|
# Corresponds to the JSON property `referencedFlows`
|
@@ -10862,6 +10933,7 @@ module Google
|
|
10862
10933
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
10863
10934
|
@name = args[:name] if args.key?(:name)
|
10864
10935
|
@output_parameter_definitions = args[:output_parameter_definitions] if args.key?(:output_parameter_definitions)
|
10936
|
+
@playbook_type = args[:playbook_type] if args.key?(:playbook_type)
|
10865
10937
|
@referenced_flows = args[:referenced_flows] if args.key?(:referenced_flows)
|
10866
10938
|
@referenced_playbooks = args[:referenced_playbooks] if args.key?(:referenced_playbooks)
|
10867
10939
|
@referenced_tools = args[:referenced_tools] if args.key?(:referenced_tools)
|
@@ -11018,6 +11090,33 @@ module Google
|
|
11018
11090
|
end
|
11019
11091
|
end
|
11020
11092
|
|
11093
|
+
# Stores metadata of the transition to another target playbook. Playbook
|
11094
|
+
# transition actions exit the caller playbook and enter the target playbook.
|
11095
|
+
class GoogleCloudDialogflowCxV3beta1PlaybookTransition
|
11096
|
+
include Google::Apis::Core::Hashable
|
11097
|
+
|
11098
|
+
# Output only. The display name of the playbook.
|
11099
|
+
# Corresponds to the JSON property `displayName`
|
11100
|
+
# @return [String]
|
11101
|
+
attr_accessor :display_name
|
11102
|
+
|
11103
|
+
# Required. The unique identifier of the playbook. Format: `projects//locations//
|
11104
|
+
# agents//playbooks/`.
|
11105
|
+
# Corresponds to the JSON property `playbook`
|
11106
|
+
# @return [String]
|
11107
|
+
attr_accessor :playbook
|
11108
|
+
|
11109
|
+
def initialize(**args)
|
11110
|
+
update!(**args)
|
11111
|
+
end
|
11112
|
+
|
11113
|
+
# Update properties of this object
|
11114
|
+
def update!(**args)
|
11115
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
11116
|
+
@playbook = args[:playbook] if args.key?(:playbook)
|
11117
|
+
end
|
11118
|
+
end
|
11119
|
+
|
11021
11120
|
# Playbook version is a snapshot of the playbook at certain timestamp.
|
11022
11121
|
class GoogleCloudDialogflowCxV3beta1PlaybookVersion
|
11023
11122
|
include Google::Apis::Core::Hashable
|
@@ -13038,6 +13137,11 @@ module Google
|
|
13038
13137
|
class GoogleCloudDialogflowCxV3beta1Tool
|
13039
13138
|
include Google::Apis::Core::Hashable
|
13040
13139
|
|
13140
|
+
# A ConnectorTool enabling using Integration Connectors Connections as tools.
|
13141
|
+
# Corresponds to the JSON property `connectorSpec`
|
13142
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorTool]
|
13143
|
+
attr_accessor :connector_spec
|
13144
|
+
|
13041
13145
|
# A DataStoreTool is a way to provide specifications needed to search a list of
|
13042
13146
|
# data stores.
|
13043
13147
|
# Corresponds to the JSON property `dataStoreSpec`
|
@@ -13087,6 +13191,7 @@ module Google
|
|
13087
13191
|
|
13088
13192
|
# Update properties of this object
|
13089
13193
|
def update!(**args)
|
13194
|
+
@connector_spec = args[:connector_spec] if args.key?(:connector_spec)
|
13090
13195
|
@data_store_spec = args[:data_store_spec] if args.key?(:data_store_spec)
|
13091
13196
|
@description = args[:description] if args.key?(:description)
|
13092
13197
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -13348,6 +13453,108 @@ module Google
|
|
13348
13453
|
end
|
13349
13454
|
end
|
13350
13455
|
|
13456
|
+
# A ConnectorTool enabling using Integration Connectors Connections as tools.
|
13457
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorTool
|
13458
|
+
include Google::Apis::Core::Hashable
|
13459
|
+
|
13460
|
+
# Required. Actions for the tool to use.
|
13461
|
+
# Corresponds to the JSON property `actions`
|
13462
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction>]
|
13463
|
+
attr_accessor :actions
|
13464
|
+
|
13465
|
+
# End-user authentication configuration used for Connection calls. The field
|
13466
|
+
# values can either be hardcoded authentication values or the names of [session
|
13467
|
+
# parameters](https://cloud.google.com/dialogflow/cx/docs/concept/parameter#
|
13468
|
+
# session-ref) or [request parameters](https://cloud.google.com/dialogflow/cx/
|
13469
|
+
# docs/concept/parameter#request-scoped). If parameter names are provided, then
|
13470
|
+
# those parameters can be used to pass the authentication values dynamically,
|
13471
|
+
# through `$session.params.param-id` or `$request.payload.param-id`.
|
13472
|
+
# Corresponds to the JSON property `endUserAuthConfig`
|
13473
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig]
|
13474
|
+
attr_accessor :end_user_auth_config
|
13475
|
+
|
13476
|
+
# Required. The full resource name of the referenced Integration Connectors
|
13477
|
+
# Connection. Format: `projects/*/locations/*/connections/*`
|
13478
|
+
# Corresponds to the JSON property `name`
|
13479
|
+
# @return [String]
|
13480
|
+
attr_accessor :name
|
13481
|
+
|
13482
|
+
def initialize(**args)
|
13483
|
+
update!(**args)
|
13484
|
+
end
|
13485
|
+
|
13486
|
+
# Update properties of this object
|
13487
|
+
def update!(**args)
|
13488
|
+
@actions = args[:actions] if args.key?(:actions)
|
13489
|
+
@end_user_auth_config = args[:end_user_auth_config] if args.key?(:end_user_auth_config)
|
13490
|
+
@name = args[:name] if args.key?(:name)
|
13491
|
+
end
|
13492
|
+
end
|
13493
|
+
|
13494
|
+
# Configuration of a Connection operation for the tool to use.
|
13495
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
|
13496
|
+
include Google::Apis::Core::Hashable
|
13497
|
+
|
13498
|
+
# ID of a Connection action for the tool to use.
|
13499
|
+
# Corresponds to the JSON property `connectionActionId`
|
13500
|
+
# @return [String]
|
13501
|
+
attr_accessor :connection_action_id
|
13502
|
+
|
13503
|
+
# Entity CRUD operation specification.
|
13504
|
+
# Corresponds to the JSON property `entityOperation`
|
13505
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation]
|
13506
|
+
attr_accessor :entity_operation
|
13507
|
+
|
13508
|
+
# Optional. Entity fields to use as inputs for the operation. If no fields are
|
13509
|
+
# specified, all fields of the Entity will be used.
|
13510
|
+
# Corresponds to the JSON property `inputFields`
|
13511
|
+
# @return [Array<String>]
|
13512
|
+
attr_accessor :input_fields
|
13513
|
+
|
13514
|
+
# Optional. Entity fields to return from the operation. If no fields are
|
13515
|
+
# specified, all fields of the Entity will be returned.
|
13516
|
+
# Corresponds to the JSON property `outputFields`
|
13517
|
+
# @return [Array<String>]
|
13518
|
+
attr_accessor :output_fields
|
13519
|
+
|
13520
|
+
def initialize(**args)
|
13521
|
+
update!(**args)
|
13522
|
+
end
|
13523
|
+
|
13524
|
+
# Update properties of this object
|
13525
|
+
def update!(**args)
|
13526
|
+
@connection_action_id = args[:connection_action_id] if args.key?(:connection_action_id)
|
13527
|
+
@entity_operation = args[:entity_operation] if args.key?(:entity_operation)
|
13528
|
+
@input_fields = args[:input_fields] if args.key?(:input_fields)
|
13529
|
+
@output_fields = args[:output_fields] if args.key?(:output_fields)
|
13530
|
+
end
|
13531
|
+
end
|
13532
|
+
|
13533
|
+
# Entity CRUD operation specification.
|
13534
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation
|
13535
|
+
include Google::Apis::Core::Hashable
|
13536
|
+
|
13537
|
+
# Required. ID of the entity.
|
13538
|
+
# Corresponds to the JSON property `entityId`
|
13539
|
+
# @return [String]
|
13540
|
+
attr_accessor :entity_id
|
13541
|
+
|
13542
|
+
# Required. Operation to perform on the entity.
|
13543
|
+
# Corresponds to the JSON property `operation`
|
13544
|
+
# @return [String]
|
13545
|
+
attr_accessor :operation
|
13546
|
+
|
13547
|
+
def initialize(**args)
|
13548
|
+
update!(**args)
|
13549
|
+
end
|
13550
|
+
|
13551
|
+
# Update properties of this object
|
13552
|
+
def update!(**args)
|
13553
|
+
@entity_id = args[:entity_id] if args.key?(:entity_id)
|
13554
|
+
@operation = args[:operation] if args.key?(:operation)
|
13555
|
+
end
|
13556
|
+
end
|
13557
|
+
|
13351
13558
|
# A DataStoreTool is a way to provide specifications needed to search a list of
|
13352
13559
|
# data stores.
|
13353
13560
|
class GoogleCloudDialogflowCxV3beta1ToolDataStoreTool
|
@@ -13389,6 +13596,87 @@ module Google
|
|
13389
13596
|
end
|
13390
13597
|
end
|
13391
13598
|
|
13599
|
+
# End-user authentication configuration used for Connection calls. The field
|
13600
|
+
# values can either be hardcoded authentication values or the names of [session
|
13601
|
+
# parameters](https://cloud.google.com/dialogflow/cx/docs/concept/parameter#
|
13602
|
+
# session-ref) or [request parameters](https://cloud.google.com/dialogflow/cx/
|
13603
|
+
# docs/concept/parameter#request-scoped). If parameter names are provided, then
|
13604
|
+
# those parameters can be used to pass the authentication values dynamically,
|
13605
|
+
# through `$session.params.param-id` or `$request.payload.param-id`.
|
13606
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig
|
13607
|
+
include Google::Apis::Core::Hashable
|
13608
|
+
|
13609
|
+
# Oauth 2.0 Authorization Code authentication configuration.
|
13610
|
+
# Corresponds to the JSON property `oauth2AuthCodeConfig`
|
13611
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig]
|
13612
|
+
attr_accessor :oauth2_auth_code_config
|
13613
|
+
|
13614
|
+
# JWT Profile Oauth 2.0 Authorization Grant authentication configuration.
|
13615
|
+
# Corresponds to the JSON property `oauth2JwtBearerConfig`
|
13616
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig]
|
13617
|
+
attr_accessor :oauth2_jwt_bearer_config
|
13618
|
+
|
13619
|
+
def initialize(**args)
|
13620
|
+
update!(**args)
|
13621
|
+
end
|
13622
|
+
|
13623
|
+
# Update properties of this object
|
13624
|
+
def update!(**args)
|
13625
|
+
@oauth2_auth_code_config = args[:oauth2_auth_code_config] if args.key?(:oauth2_auth_code_config)
|
13626
|
+
@oauth2_jwt_bearer_config = args[:oauth2_jwt_bearer_config] if args.key?(:oauth2_jwt_bearer_config)
|
13627
|
+
end
|
13628
|
+
end
|
13629
|
+
|
13630
|
+
# Oauth 2.0 Authorization Code authentication configuration.
|
13631
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig
|
13632
|
+
include Google::Apis::Core::Hashable
|
13633
|
+
|
13634
|
+
# Required. Oauth token value or parameter name to pass it through.
|
13635
|
+
# Corresponds to the JSON property `oauthToken`
|
13636
|
+
# @return [String]
|
13637
|
+
attr_accessor :oauth_token
|
13638
|
+
|
13639
|
+
def initialize(**args)
|
13640
|
+
update!(**args)
|
13641
|
+
end
|
13642
|
+
|
13643
|
+
# Update properties of this object
|
13644
|
+
def update!(**args)
|
13645
|
+
@oauth_token = args[:oauth_token] if args.key?(:oauth_token)
|
13646
|
+
end
|
13647
|
+
end
|
13648
|
+
|
13649
|
+
# JWT Profile Oauth 2.0 Authorization Grant authentication configuration.
|
13650
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
|
13651
|
+
include Google::Apis::Core::Hashable
|
13652
|
+
|
13653
|
+
# Required. Client key value or parameter name to pass it through.
|
13654
|
+
# Corresponds to the JSON property `clientKey`
|
13655
|
+
# @return [String]
|
13656
|
+
attr_accessor :client_key
|
13657
|
+
|
13658
|
+
# Required. Issuer value or parameter name to pass it through.
|
13659
|
+
# Corresponds to the JSON property `issuer`
|
13660
|
+
# @return [String]
|
13661
|
+
attr_accessor :issuer
|
13662
|
+
|
13663
|
+
# Required. Subject value or parameter name to pass it through.
|
13664
|
+
# Corresponds to the JSON property `subject`
|
13665
|
+
# @return [String]
|
13666
|
+
attr_accessor :subject
|
13667
|
+
|
13668
|
+
def initialize(**args)
|
13669
|
+
update!(**args)
|
13670
|
+
end
|
13671
|
+
|
13672
|
+
# Update properties of this object
|
13673
|
+
def update!(**args)
|
13674
|
+
@client_key = args[:client_key] if args.key?(:client_key)
|
13675
|
+
@issuer = args[:issuer] if args.key?(:issuer)
|
13676
|
+
@subject = args[:subject] if args.key?(:subject)
|
13677
|
+
end
|
13678
|
+
end
|
13679
|
+
|
13392
13680
|
# An ExtensionTool is a way to use Vertex Extensions as a tool.
|
13393
13681
|
class GoogleCloudDialogflowCxV3beta1ToolExtensionTool
|
13394
13682
|
include Google::Apis::Core::Hashable
|
@@ -13527,9 +13815,9 @@ module Google
|
|
13527
13815
|
# unspecified, Dialogflow will use Google's default trust store to verify
|
13528
13816
|
# certificates. N.B. Make sure the HTTPS server certificates are signed with "
|
13529
13817
|
# subject alt name". For instance a certificate can be self-signed using the
|
13530
|
-
# following command
|
13531
|
-
# example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
13532
|
-
# DNS:www.example.com'")
|
13818
|
+
# following command: ``` openssl x509 -req -days 200 -in example.com.csr \ -
|
13819
|
+
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
13820
|
+
# nsubjectAltName='DNS:www.example.com'") ```
|
13533
13821
|
# Corresponds to the JSON property `cert`
|
13534
13822
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
13535
13823
|
# @return [String]
|
@@ -15750,6 +16038,25 @@ module Google
|
|
15750
16038
|
end
|
15751
16039
|
end
|
15752
16040
|
|
16041
|
+
# Suggestion generated using free form generator.
|
16042
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
16043
|
+
include Google::Apis::Core::Hashable
|
16044
|
+
|
16045
|
+
# Required. Free form suggestion.
|
16046
|
+
# Corresponds to the JSON property `response`
|
16047
|
+
# @return [String]
|
16048
|
+
attr_accessor :response
|
16049
|
+
|
16050
|
+
def initialize(**args)
|
16051
|
+
update!(**args)
|
16052
|
+
end
|
16053
|
+
|
16054
|
+
# Update properties of this object
|
16055
|
+
def update!(**args)
|
16056
|
+
@response = args[:response] if args.key?(:response)
|
16057
|
+
end
|
16058
|
+
end
|
16059
|
+
|
15753
16060
|
# Google Cloud Storage location for the output.
|
15754
16061
|
class GoogleCloudDialogflowV2GcsDestination
|
15755
16062
|
include Google::Apis::Core::Hashable
|
@@ -15771,6 +16078,90 @@ module Google
|
|
15771
16078
|
end
|
15772
16079
|
end
|
15773
16080
|
|
16081
|
+
# The response message for Conversations.GenerateSuggestions.
|
16082
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
16083
|
+
include Google::Apis::Core::Hashable
|
16084
|
+
|
16085
|
+
# The answers generated for the conversation based on context.
|
16086
|
+
# Corresponds to the JSON property `generatorSuggestionAnswers`
|
16087
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer>]
|
16088
|
+
attr_accessor :generator_suggestion_answers
|
16089
|
+
|
16090
|
+
# The name of the latest conversation message used as context for compiling
|
16091
|
+
# suggestion. Format: `projects//locations//conversations//messages/`.
|
16092
|
+
# Corresponds to the JSON property `latestMessage`
|
16093
|
+
# @return [String]
|
16094
|
+
attr_accessor :latest_message
|
16095
|
+
|
16096
|
+
def initialize(**args)
|
16097
|
+
update!(**args)
|
16098
|
+
end
|
16099
|
+
|
16100
|
+
# Update properties of this object
|
16101
|
+
def update!(**args)
|
16102
|
+
@generator_suggestion_answers = args[:generator_suggestion_answers] if args.key?(:generator_suggestion_answers)
|
16103
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
16104
|
+
end
|
16105
|
+
end
|
16106
|
+
|
16107
|
+
# A GeneratorSuggestion answer.
|
16108
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
16109
|
+
include Google::Apis::Core::Hashable
|
16110
|
+
|
16111
|
+
# Answer record that uniquely identifies the suggestion. This can be used to
|
16112
|
+
# provide suggestion feedback.
|
16113
|
+
# Corresponds to the JSON property `answerRecord`
|
16114
|
+
# @return [String]
|
16115
|
+
attr_accessor :answer_record
|
16116
|
+
|
16117
|
+
# Suggestion generated using a Generator.
|
16118
|
+
# Corresponds to the JSON property `generatorSuggestion`
|
16119
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestion]
|
16120
|
+
attr_accessor :generator_suggestion
|
16121
|
+
|
16122
|
+
# The name of the generator used to generate this suggestion. Format: `projects//
|
16123
|
+
# locations//generators/`.
|
16124
|
+
# Corresponds to the JSON property `sourceGenerator`
|
16125
|
+
# @return [String]
|
16126
|
+
attr_accessor :source_generator
|
16127
|
+
|
16128
|
+
def initialize(**args)
|
16129
|
+
update!(**args)
|
16130
|
+
end
|
16131
|
+
|
16132
|
+
# Update properties of this object
|
16133
|
+
def update!(**args)
|
16134
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
16135
|
+
@generator_suggestion = args[:generator_suggestion] if args.key?(:generator_suggestion)
|
16136
|
+
@source_generator = args[:source_generator] if args.key?(:source_generator)
|
16137
|
+
end
|
16138
|
+
end
|
16139
|
+
|
16140
|
+
# Suggestion generated using a Generator.
|
16141
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
16142
|
+
include Google::Apis::Core::Hashable
|
16143
|
+
|
16144
|
+
# Suggestion generated using free form generator.
|
16145
|
+
# Corresponds to the JSON property `freeFormSuggestion`
|
16146
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2FreeFormSuggestion]
|
16147
|
+
attr_accessor :free_form_suggestion
|
16148
|
+
|
16149
|
+
# Suggested summary of the conversation.
|
16150
|
+
# Corresponds to the JSON property `summarySuggestion`
|
16151
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestion]
|
16152
|
+
attr_accessor :summary_suggestion
|
16153
|
+
|
16154
|
+
def initialize(**args)
|
16155
|
+
update!(**args)
|
16156
|
+
end
|
16157
|
+
|
16158
|
+
# Update properties of this object
|
16159
|
+
def update!(**args)
|
16160
|
+
@free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion)
|
16161
|
+
@summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion)
|
16162
|
+
end
|
16163
|
+
end
|
16164
|
+
|
15774
16165
|
# Represents a notification sent to Cloud Pub/Sub subscribers for human agent
|
15775
16166
|
# assistant events in a specific conversation.
|
15776
16167
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
@@ -18173,6 +18564,11 @@ module Google
|
|
18173
18564
|
# @return [Google::Apis::DialogflowV3beta1::GoogleRpcStatus]
|
18174
18565
|
attr_accessor :error
|
18175
18566
|
|
18567
|
+
# The response message for Conversations.GenerateSuggestions.
|
18568
|
+
# Corresponds to the JSON property `generateSuggestionsResponse`
|
18569
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponse]
|
18570
|
+
attr_accessor :generate_suggestions_response
|
18571
|
+
|
18176
18572
|
# The response message for Participants.SuggestArticles.
|
18177
18573
|
# Corresponds to the JSON property `suggestArticlesResponse`
|
18178
18574
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestArticlesResponse]
|
@@ -18200,6 +18596,7 @@ module Google
|
|
18200
18596
|
# Update properties of this object
|
18201
18597
|
def update!(**args)
|
18202
18598
|
@error = args[:error] if args.key?(:error)
|
18599
|
+
@generate_suggestions_response = args[:generate_suggestions_response] if args.key?(:generate_suggestions_response)
|
18203
18600
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
18204
18601
|
@suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
|
18205
18602
|
@suggest_knowledge_assist_response = args[:suggest_knowledge_assist_response] if args.key?(:suggest_knowledge_assist_response)
|
@@ -18207,6 +18604,50 @@ module Google
|
|
18207
18604
|
end
|
18208
18605
|
end
|
18209
18606
|
|
18607
|
+
# Suggested summary of the conversation.
|
18608
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
18609
|
+
include Google::Apis::Core::Hashable
|
18610
|
+
|
18611
|
+
# Required. All the parts of generated summary.
|
18612
|
+
# Corresponds to the JSON property `summarySections`
|
18613
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestionSummarySection>]
|
18614
|
+
attr_accessor :summary_sections
|
18615
|
+
|
18616
|
+
def initialize(**args)
|
18617
|
+
update!(**args)
|
18618
|
+
end
|
18619
|
+
|
18620
|
+
# Update properties of this object
|
18621
|
+
def update!(**args)
|
18622
|
+
@summary_sections = args[:summary_sections] if args.key?(:summary_sections)
|
18623
|
+
end
|
18624
|
+
end
|
18625
|
+
|
18626
|
+
# A component of the generated summary.
|
18627
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
18628
|
+
include Google::Apis::Core::Hashable
|
18629
|
+
|
18630
|
+
# Required. Name of the section.
|
18631
|
+
# Corresponds to the JSON property `section`
|
18632
|
+
# @return [String]
|
18633
|
+
attr_accessor :section
|
18634
|
+
|
18635
|
+
# Required. Summary text for the section.
|
18636
|
+
# Corresponds to the JSON property `summary`
|
18637
|
+
# @return [String]
|
18638
|
+
attr_accessor :summary
|
18639
|
+
|
18640
|
+
def initialize(**args)
|
18641
|
+
update!(**args)
|
18642
|
+
end
|
18643
|
+
|
18644
|
+
# Update properties of this object
|
18645
|
+
def update!(**args)
|
18646
|
+
@section = args[:section] if args.key?(:section)
|
18647
|
+
@summary = args[:summary] if args.key?(:summary)
|
18648
|
+
end
|
18649
|
+
end
|
18650
|
+
|
18210
18651
|
# Metadata for a ConversationModels.UndeployConversationModel operation.
|
18211
18652
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
18212
18653
|
include Google::Apis::Core::Hashable
|
@@ -18957,6 +19398,25 @@ module Google
|
|
18957
19398
|
end
|
18958
19399
|
end
|
18959
19400
|
|
19401
|
+
# Suggestion generated using free form generator.
|
19402
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
19403
|
+
include Google::Apis::Core::Hashable
|
19404
|
+
|
19405
|
+
# Required. Free form suggestion.
|
19406
|
+
# Corresponds to the JSON property `response`
|
19407
|
+
# @return [String]
|
19408
|
+
attr_accessor :response
|
19409
|
+
|
19410
|
+
def initialize(**args)
|
19411
|
+
update!(**args)
|
19412
|
+
end
|
19413
|
+
|
19414
|
+
# Update properties of this object
|
19415
|
+
def update!(**args)
|
19416
|
+
@response = args[:response] if args.key?(:response)
|
19417
|
+
end
|
19418
|
+
end
|
19419
|
+
|
18960
19420
|
# Google Cloud Storage location for the output.
|
18961
19421
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
18962
19422
|
include Google::Apis::Core::Hashable
|
@@ -18978,6 +19438,90 @@ module Google
|
|
18978
19438
|
end
|
18979
19439
|
end
|
18980
19440
|
|
19441
|
+
# The response message for Conversations.GenerateSuggestions.
|
19442
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
19443
|
+
include Google::Apis::Core::Hashable
|
19444
|
+
|
19445
|
+
# The answers generated for the conversation based on context.
|
19446
|
+
# Corresponds to the JSON property `generatorSuggestionAnswers`
|
19447
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer>]
|
19448
|
+
attr_accessor :generator_suggestion_answers
|
19449
|
+
|
19450
|
+
# The name of the latest conversation message used as context for compiling
|
19451
|
+
# suggestion. Format: `projects//locations//conversations//messages/`.
|
19452
|
+
# Corresponds to the JSON property `latestMessage`
|
19453
|
+
# @return [String]
|
19454
|
+
attr_accessor :latest_message
|
19455
|
+
|
19456
|
+
def initialize(**args)
|
19457
|
+
update!(**args)
|
19458
|
+
end
|
19459
|
+
|
19460
|
+
# Update properties of this object
|
19461
|
+
def update!(**args)
|
19462
|
+
@generator_suggestion_answers = args[:generator_suggestion_answers] if args.key?(:generator_suggestion_answers)
|
19463
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
19464
|
+
end
|
19465
|
+
end
|
19466
|
+
|
19467
|
+
# A GeneratorSuggestion answer.
|
19468
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
19469
|
+
include Google::Apis::Core::Hashable
|
19470
|
+
|
19471
|
+
# Answer record that uniquely identifies the suggestion. This can be used to
|
19472
|
+
# provide suggestion feedback.
|
19473
|
+
# Corresponds to the JSON property `answerRecord`
|
19474
|
+
# @return [String]
|
19475
|
+
attr_accessor :answer_record
|
19476
|
+
|
19477
|
+
# Suggestion generated using a Generator.
|
19478
|
+
# Corresponds to the JSON property `generatorSuggestion`
|
19479
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GeneratorSuggestion]
|
19480
|
+
attr_accessor :generator_suggestion
|
19481
|
+
|
19482
|
+
# The name of the generator used to generate this suggestion. Format: `projects//
|
19483
|
+
# locations//generators/`.
|
19484
|
+
# Corresponds to the JSON property `sourceGenerator`
|
19485
|
+
# @return [String]
|
19486
|
+
attr_accessor :source_generator
|
19487
|
+
|
19488
|
+
def initialize(**args)
|
19489
|
+
update!(**args)
|
19490
|
+
end
|
19491
|
+
|
19492
|
+
# Update properties of this object
|
19493
|
+
def update!(**args)
|
19494
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
19495
|
+
@generator_suggestion = args[:generator_suggestion] if args.key?(:generator_suggestion)
|
19496
|
+
@source_generator = args[:source_generator] if args.key?(:source_generator)
|
19497
|
+
end
|
19498
|
+
end
|
19499
|
+
|
19500
|
+
# Suggestion generated using a Generator.
|
19501
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
19502
|
+
include Google::Apis::Core::Hashable
|
19503
|
+
|
19504
|
+
# Suggestion generated using free form generator.
|
19505
|
+
# Corresponds to the JSON property `freeFormSuggestion`
|
19506
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1FreeFormSuggestion]
|
19507
|
+
attr_accessor :free_form_suggestion
|
19508
|
+
|
19509
|
+
# Suggested summary of the conversation.
|
19510
|
+
# Corresponds to the JSON property `summarySuggestion`
|
19511
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestion]
|
19512
|
+
attr_accessor :summary_suggestion
|
19513
|
+
|
19514
|
+
def initialize(**args)
|
19515
|
+
update!(**args)
|
19516
|
+
end
|
19517
|
+
|
19518
|
+
# Update properties of this object
|
19519
|
+
def update!(**args)
|
19520
|
+
@free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion)
|
19521
|
+
@summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion)
|
19522
|
+
end
|
19523
|
+
end
|
19524
|
+
|
18981
19525
|
# Output only. Represents a notification sent to Pub/Sub subscribers for agent
|
18982
19526
|
# assistant events in a specific conversation.
|
18983
19527
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
@@ -22133,6 +22677,11 @@ module Google
|
|
22133
22677
|
# @return [Google::Apis::DialogflowV3beta1::GoogleRpcStatus]
|
22134
22678
|
attr_accessor :error
|
22135
22679
|
|
22680
|
+
# The response message for Conversations.GenerateSuggestions.
|
22681
|
+
# Corresponds to the JSON property `generateSuggestionsResponse`
|
22682
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse]
|
22683
|
+
attr_accessor :generate_suggestions_response
|
22684
|
+
|
22136
22685
|
# The response message for Participants.SuggestArticles.
|
22137
22686
|
# Corresponds to the JSON property `suggestArticlesResponse`
|
22138
22687
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse]
|
@@ -22170,6 +22719,7 @@ module Google
|
|
22170
22719
|
# Update properties of this object
|
22171
22720
|
def update!(**args)
|
22172
22721
|
@error = args[:error] if args.key?(:error)
|
22722
|
+
@generate_suggestions_response = args[:generate_suggestions_response] if args.key?(:generate_suggestions_response)
|
22173
22723
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
22174
22724
|
@suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
|
22175
22725
|
@suggest_entity_extraction_response = args[:suggest_entity_extraction_response] if args.key?(:suggest_entity_extraction_response)
|
@@ -22179,6 +22729,50 @@ module Google
|
|
22179
22729
|
end
|
22180
22730
|
end
|
22181
22731
|
|
22732
|
+
# Suggested summary of the conversation.
|
22733
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
22734
|
+
include Google::Apis::Core::Hashable
|
22735
|
+
|
22736
|
+
# Required. All the parts of generated summary.
|
22737
|
+
# Corresponds to the JSON property `summarySections`
|
22738
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection>]
|
22739
|
+
attr_accessor :summary_sections
|
22740
|
+
|
22741
|
+
def initialize(**args)
|
22742
|
+
update!(**args)
|
22743
|
+
end
|
22744
|
+
|
22745
|
+
# Update properties of this object
|
22746
|
+
def update!(**args)
|
22747
|
+
@summary_sections = args[:summary_sections] if args.key?(:summary_sections)
|
22748
|
+
end
|
22749
|
+
end
|
22750
|
+
|
22751
|
+
# A component of the generated summary.
|
22752
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
22753
|
+
include Google::Apis::Core::Hashable
|
22754
|
+
|
22755
|
+
# Required. Name of the section.
|
22756
|
+
# Corresponds to the JSON property `section`
|
22757
|
+
# @return [String]
|
22758
|
+
attr_accessor :section
|
22759
|
+
|
22760
|
+
# Required. Summary text for the section.
|
22761
|
+
# Corresponds to the JSON property `summary`
|
22762
|
+
# @return [String]
|
22763
|
+
attr_accessor :summary
|
22764
|
+
|
22765
|
+
def initialize(**args)
|
22766
|
+
update!(**args)
|
22767
|
+
end
|
22768
|
+
|
22769
|
+
# Update properties of this object
|
22770
|
+
def update!(**args)
|
22771
|
+
@section = args[:section] if args.key?(:section)
|
22772
|
+
@summary = args[:summary] if args.key?(:summary)
|
22773
|
+
end
|
22774
|
+
end
|
22775
|
+
|
22182
22776
|
# A wrapper of repeated TelephonyDtmf digits.
|
22183
22777
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
22184
22778
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.97.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250313"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1042,6 +1042,12 @@ module Google
|
|
1042
1042
|
include Google::Apis::Core::JsonObjectSupport
|
1043
1043
|
end
|
1044
1044
|
|
1045
|
+
class GoogleCloudDialogflowCxV3beta1Event
|
1046
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1047
|
+
|
1048
|
+
include Google::Apis::Core::JsonObjectSupport
|
1049
|
+
end
|
1050
|
+
|
1045
1051
|
class GoogleCloudDialogflowCxV3beta1EventHandler
|
1046
1052
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1047
1053
|
|
@@ -1216,6 +1222,12 @@ module Google
|
|
1216
1222
|
include Google::Apis::Core::JsonObjectSupport
|
1217
1223
|
end
|
1218
1224
|
|
1225
|
+
class GoogleCloudDialogflowCxV3beta1FlowTransition
|
1226
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1227
|
+
|
1228
|
+
include Google::Apis::Core::JsonObjectSupport
|
1229
|
+
end
|
1230
|
+
|
1219
1231
|
class GoogleCloudDialogflowCxV3beta1FlowValidationResult
|
1220
1232
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1221
1233
|
|
@@ -1774,6 +1786,12 @@ module Google
|
|
1774
1786
|
include Google::Apis::Core::JsonObjectSupport
|
1775
1787
|
end
|
1776
1788
|
|
1789
|
+
class GoogleCloudDialogflowCxV3beta1PlaybookTransition
|
1790
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1791
|
+
|
1792
|
+
include Google::Apis::Core::JsonObjectSupport
|
1793
|
+
end
|
1794
|
+
|
1777
1795
|
class GoogleCloudDialogflowCxV3beta1PlaybookVersion
|
1778
1796
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1779
1797
|
|
@@ -2134,6 +2152,24 @@ module Google
|
|
2134
2152
|
include Google::Apis::Core::JsonObjectSupport
|
2135
2153
|
end
|
2136
2154
|
|
2155
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorTool
|
2156
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2157
|
+
|
2158
|
+
include Google::Apis::Core::JsonObjectSupport
|
2159
|
+
end
|
2160
|
+
|
2161
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
|
2162
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2163
|
+
|
2164
|
+
include Google::Apis::Core::JsonObjectSupport
|
2165
|
+
end
|
2166
|
+
|
2167
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation
|
2168
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2169
|
+
|
2170
|
+
include Google::Apis::Core::JsonObjectSupport
|
2171
|
+
end
|
2172
|
+
|
2137
2173
|
class GoogleCloudDialogflowCxV3beta1ToolDataStoreTool
|
2138
2174
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2139
2175
|
|
@@ -2146,6 +2182,24 @@ module Google
|
|
2146
2182
|
include Google::Apis::Core::JsonObjectSupport
|
2147
2183
|
end
|
2148
2184
|
|
2185
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig
|
2186
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2187
|
+
|
2188
|
+
include Google::Apis::Core::JsonObjectSupport
|
2189
|
+
end
|
2190
|
+
|
2191
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig
|
2192
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2193
|
+
|
2194
|
+
include Google::Apis::Core::JsonObjectSupport
|
2195
|
+
end
|
2196
|
+
|
2197
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
|
2198
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2199
|
+
|
2200
|
+
include Google::Apis::Core::JsonObjectSupport
|
2201
|
+
end
|
2202
|
+
|
2149
2203
|
class GoogleCloudDialogflowCxV3beta1ToolExtensionTool
|
2150
2204
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2151
2205
|
|
@@ -2518,12 +2572,36 @@ module Google
|
|
2518
2572
|
include Google::Apis::Core::JsonObjectSupport
|
2519
2573
|
end
|
2520
2574
|
|
2575
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
2576
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2577
|
+
|
2578
|
+
include Google::Apis::Core::JsonObjectSupport
|
2579
|
+
end
|
2580
|
+
|
2521
2581
|
class GoogleCloudDialogflowV2GcsDestination
|
2522
2582
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2523
2583
|
|
2524
2584
|
include Google::Apis::Core::JsonObjectSupport
|
2525
2585
|
end
|
2526
2586
|
|
2587
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
2588
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2589
|
+
|
2590
|
+
include Google::Apis::Core::JsonObjectSupport
|
2591
|
+
end
|
2592
|
+
|
2593
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
2594
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2595
|
+
|
2596
|
+
include Google::Apis::Core::JsonObjectSupport
|
2597
|
+
end
|
2598
|
+
|
2599
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
2600
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2601
|
+
|
2602
|
+
include Google::Apis::Core::JsonObjectSupport
|
2603
|
+
end
|
2604
|
+
|
2527
2605
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
2528
2606
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2529
2607
|
|
@@ -2908,6 +2986,18 @@ module Google
|
|
2908
2986
|
include Google::Apis::Core::JsonObjectSupport
|
2909
2987
|
end
|
2910
2988
|
|
2989
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
2990
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2991
|
+
|
2992
|
+
include Google::Apis::Core::JsonObjectSupport
|
2993
|
+
end
|
2994
|
+
|
2995
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
2996
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2997
|
+
|
2998
|
+
include Google::Apis::Core::JsonObjectSupport
|
2999
|
+
end
|
3000
|
+
|
2911
3001
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
2912
3002
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2913
3003
|
|
@@ -3016,12 +3106,36 @@ module Google
|
|
3016
3106
|
include Google::Apis::Core::JsonObjectSupport
|
3017
3107
|
end
|
3018
3108
|
|
3109
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
3110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3111
|
+
|
3112
|
+
include Google::Apis::Core::JsonObjectSupport
|
3113
|
+
end
|
3114
|
+
|
3019
3115
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
3020
3116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3021
3117
|
|
3022
3118
|
include Google::Apis::Core::JsonObjectSupport
|
3023
3119
|
end
|
3024
3120
|
|
3121
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
3122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3123
|
+
|
3124
|
+
include Google::Apis::Core::JsonObjectSupport
|
3125
|
+
end
|
3126
|
+
|
3127
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
3128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3129
|
+
|
3130
|
+
include Google::Apis::Core::JsonObjectSupport
|
3131
|
+
end
|
3132
|
+
|
3133
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
3134
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3135
|
+
|
3136
|
+
include Google::Apis::Core::JsonObjectSupport
|
3137
|
+
end
|
3138
|
+
|
3025
3139
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
3026
3140
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3027
3141
|
|
@@ -3532,6 +3646,18 @@ module Google
|
|
3532
3646
|
include Google::Apis::Core::JsonObjectSupport
|
3533
3647
|
end
|
3534
3648
|
|
3649
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
3650
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3651
|
+
|
3652
|
+
include Google::Apis::Core::JsonObjectSupport
|
3653
|
+
end
|
3654
|
+
|
3655
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
3656
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3657
|
+
|
3658
|
+
include Google::Apis::Core::JsonObjectSupport
|
3659
|
+
end
|
3660
|
+
|
3535
3661
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
3536
3662
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3537
3663
|
|
@@ -4611,10 +4737,16 @@ module Google
|
|
4611
4737
|
class Representation < Google::Apis::Core::JsonRepresentation
|
4612
4738
|
property :agent_utterance, as: 'agentUtterance', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentUtterance, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1AgentUtterance::Representation
|
4613
4739
|
|
4740
|
+
property :event, as: 'event', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Event, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Event::Representation
|
4741
|
+
|
4614
4742
|
property :flow_invocation, as: 'flowInvocation', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowInvocation, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowInvocation::Representation
|
4615
4743
|
|
4744
|
+
property :flow_transition, as: 'flowTransition', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowTransition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1FlowTransition::Representation
|
4745
|
+
|
4616
4746
|
property :playbook_invocation, as: 'playbookInvocation', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInvocation, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInvocation::Representation
|
4617
4747
|
|
4748
|
+
property :playbook_transition, as: 'playbookTransition', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookTransition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookTransition::Representation
|
4749
|
+
|
4618
4750
|
property :tool_use, as: 'toolUse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolUse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolUse::Representation
|
4619
4751
|
|
4620
4752
|
property :user_utterance, as: 'userUtterance', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1UserUtterance, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1UserUtterance::Representation
|
@@ -5357,6 +5489,13 @@ module Google
|
|
5357
5489
|
end
|
5358
5490
|
end
|
5359
5491
|
|
5492
|
+
class GoogleCloudDialogflowCxV3beta1Event
|
5493
|
+
# @private
|
5494
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5495
|
+
property :event, as: 'event'
|
5496
|
+
end
|
5497
|
+
end
|
5498
|
+
|
5360
5499
|
class GoogleCloudDialogflowCxV3beta1EventHandler
|
5361
5500
|
# @private
|
5362
5501
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5659,6 +5798,14 @@ module Google
|
|
5659
5798
|
end
|
5660
5799
|
end
|
5661
5800
|
|
5801
|
+
class GoogleCloudDialogflowCxV3beta1FlowTransition
|
5802
|
+
# @private
|
5803
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5804
|
+
property :display_name, as: 'displayName'
|
5805
|
+
property :flow, as: 'flow'
|
5806
|
+
end
|
5807
|
+
end
|
5808
|
+
|
5662
5809
|
class GoogleCloudDialogflowCxV3beta1FlowValidationResult
|
5663
5810
|
# @private
|
5664
5811
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6526,6 +6673,7 @@ module Google
|
|
6526
6673
|
property :name, as: 'name'
|
6527
6674
|
collection :output_parameter_definitions, as: 'outputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
|
6528
6675
|
|
6676
|
+
property :playbook_type, as: 'playbookType'
|
6529
6677
|
collection :referenced_flows, as: 'referencedFlows'
|
6530
6678
|
collection :referenced_playbooks, as: 'referencedPlaybooks'
|
6531
6679
|
collection :referenced_tools, as: 'referencedTools'
|
@@ -6583,6 +6731,14 @@ module Google
|
|
6583
6731
|
end
|
6584
6732
|
end
|
6585
6733
|
|
6734
|
+
class GoogleCloudDialogflowCxV3beta1PlaybookTransition
|
6735
|
+
# @private
|
6736
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6737
|
+
property :display_name, as: 'displayName'
|
6738
|
+
property :playbook, as: 'playbook'
|
6739
|
+
end
|
6740
|
+
end
|
6741
|
+
|
6586
6742
|
class GoogleCloudDialogflowCxV3beta1PlaybookVersion
|
6587
6743
|
# @private
|
6588
6744
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7113,6 +7269,8 @@ module Google
|
|
7113
7269
|
class GoogleCloudDialogflowCxV3beta1Tool
|
7114
7270
|
# @private
|
7115
7271
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7272
|
+
property :connector_spec, as: 'connectorSpec', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorTool, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorTool::Representation
|
7273
|
+
|
7116
7274
|
property :data_store_spec, as: 'dataStoreSpec', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolDataStoreTool, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolDataStoreTool::Representation
|
7117
7275
|
|
7118
7276
|
property :description, as: 'description'
|
@@ -7203,6 +7361,36 @@ module Google
|
|
7203
7361
|
end
|
7204
7362
|
end
|
7205
7363
|
|
7364
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorTool
|
7365
|
+
# @private
|
7366
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7367
|
+
collection :actions, as: 'actions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction::Representation
|
7368
|
+
|
7369
|
+
property :end_user_auth_config, as: 'endUserAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig::Representation
|
7370
|
+
|
7371
|
+
property :name, as: 'name'
|
7372
|
+
end
|
7373
|
+
end
|
7374
|
+
|
7375
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
|
7376
|
+
# @private
|
7377
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7378
|
+
property :connection_action_id, as: 'connectionActionId'
|
7379
|
+
property :entity_operation, as: 'entityOperation', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation::Representation
|
7380
|
+
|
7381
|
+
collection :input_fields, as: 'inputFields'
|
7382
|
+
collection :output_fields, as: 'outputFields'
|
7383
|
+
end
|
7384
|
+
end
|
7385
|
+
|
7386
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation
|
7387
|
+
# @private
|
7388
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7389
|
+
property :entity_id, as: 'entityId'
|
7390
|
+
property :operation, as: 'operation'
|
7391
|
+
end
|
7392
|
+
end
|
7393
|
+
|
7206
7394
|
class GoogleCloudDialogflowCxV3beta1ToolDataStoreTool
|
7207
7395
|
# @private
|
7208
7396
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7219,6 +7407,32 @@ module Google
|
|
7219
7407
|
end
|
7220
7408
|
end
|
7221
7409
|
|
7410
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig
|
7411
|
+
# @private
|
7412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7413
|
+
property :oauth2_auth_code_config, as: 'oauth2AuthCodeConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig::Representation
|
7414
|
+
|
7415
|
+
property :oauth2_jwt_bearer_config, as: 'oauth2JwtBearerConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig::Representation
|
7416
|
+
|
7417
|
+
end
|
7418
|
+
end
|
7419
|
+
|
7420
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig
|
7421
|
+
# @private
|
7422
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7423
|
+
property :oauth_token, as: 'oauthToken'
|
7424
|
+
end
|
7425
|
+
end
|
7426
|
+
|
7427
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
|
7428
|
+
# @private
|
7429
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7430
|
+
property :client_key, as: 'clientKey'
|
7431
|
+
property :issuer, as: 'issuer'
|
7432
|
+
property :subject, as: 'subject'
|
7433
|
+
end
|
7434
|
+
end
|
7435
|
+
|
7222
7436
|
class GoogleCloudDialogflowCxV3beta1ToolExtensionTool
|
7223
7437
|
# @private
|
7224
7438
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7848,6 +8062,13 @@ module Google
|
|
7848
8062
|
end
|
7849
8063
|
end
|
7850
8064
|
|
8065
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
8066
|
+
# @private
|
8067
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8068
|
+
property :response, as: 'response'
|
8069
|
+
end
|
8070
|
+
end
|
8071
|
+
|
7851
8072
|
class GoogleCloudDialogflowV2GcsDestination
|
7852
8073
|
# @private
|
7853
8074
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7855,6 +8076,35 @@ module Google
|
|
7855
8076
|
end
|
7856
8077
|
end
|
7857
8078
|
|
8079
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
8080
|
+
# @private
|
8081
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8082
|
+
collection :generator_suggestion_answers, as: 'generatorSuggestionAnswers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer::Representation
|
8083
|
+
|
8084
|
+
property :latest_message, as: 'latestMessage'
|
8085
|
+
end
|
8086
|
+
end
|
8087
|
+
|
8088
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
8089
|
+
# @private
|
8090
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8091
|
+
property :answer_record, as: 'answerRecord'
|
8092
|
+
property :generator_suggestion, as: 'generatorSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestion::Representation
|
8093
|
+
|
8094
|
+
property :source_generator, as: 'sourceGenerator'
|
8095
|
+
end
|
8096
|
+
end
|
8097
|
+
|
8098
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
8099
|
+
# @private
|
8100
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8101
|
+
property :free_form_suggestion, as: 'freeFormSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2FreeFormSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2FreeFormSuggestion::Representation
|
8102
|
+
|
8103
|
+
property :summary_suggestion, as: 'summarySuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestion::Representation
|
8104
|
+
|
8105
|
+
end
|
8106
|
+
end
|
8107
|
+
|
7858
8108
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
7859
8109
|
# @private
|
7860
8110
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8521,6 +8771,8 @@ module Google
|
|
8521
8771
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8522
8772
|
property :error, as: 'error', class: Google::Apis::DialogflowV3beta1::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3beta1::GoogleRpcStatus::Representation
|
8523
8773
|
|
8774
|
+
property :generate_suggestions_response, as: 'generateSuggestionsResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponse::Representation
|
8775
|
+
|
8524
8776
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestArticlesResponse::Representation
|
8525
8777
|
|
8526
8778
|
property :suggest_faq_answers_response, as: 'suggestFaqAnswersResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestFaqAnswersResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestFaqAnswersResponse::Representation
|
@@ -8532,6 +8784,22 @@ module Google
|
|
8532
8784
|
end
|
8533
8785
|
end
|
8534
8786
|
|
8787
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
8788
|
+
# @private
|
8789
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8790
|
+
collection :summary_sections, as: 'summarySections', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestionSummarySection, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestionSummarySection::Representation
|
8791
|
+
|
8792
|
+
end
|
8793
|
+
end
|
8794
|
+
|
8795
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
8796
|
+
# @private
|
8797
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8798
|
+
property :section, as: 'section'
|
8799
|
+
property :summary, as: 'summary'
|
8800
|
+
end
|
8801
|
+
end
|
8802
|
+
|
8535
8803
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
8536
8804
|
# @private
|
8537
8805
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8715,6 +8983,13 @@ module Google
|
|
8715
8983
|
end
|
8716
8984
|
end
|
8717
8985
|
|
8986
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
8987
|
+
# @private
|
8988
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8989
|
+
property :response, as: 'response'
|
8990
|
+
end
|
8991
|
+
end
|
8992
|
+
|
8718
8993
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
8719
8994
|
# @private
|
8720
8995
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8722,6 +8997,35 @@ module Google
|
|
8722
8997
|
end
|
8723
8998
|
end
|
8724
8999
|
|
9000
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
9001
|
+
# @private
|
9002
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9003
|
+
collection :generator_suggestion_answers, as: 'generatorSuggestionAnswers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer::Representation
|
9004
|
+
|
9005
|
+
property :latest_message, as: 'latestMessage'
|
9006
|
+
end
|
9007
|
+
end
|
9008
|
+
|
9009
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
9010
|
+
# @private
|
9011
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9012
|
+
property :answer_record, as: 'answerRecord'
|
9013
|
+
property :generator_suggestion, as: 'generatorSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GeneratorSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GeneratorSuggestion::Representation
|
9014
|
+
|
9015
|
+
property :source_generator, as: 'sourceGenerator'
|
9016
|
+
end
|
9017
|
+
end
|
9018
|
+
|
9019
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
9020
|
+
# @private
|
9021
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9022
|
+
property :free_form_suggestion, as: 'freeFormSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1FreeFormSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1FreeFormSuggestion::Representation
|
9023
|
+
|
9024
|
+
property :summary_suggestion, as: 'summarySuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestion::Representation
|
9025
|
+
|
9026
|
+
end
|
9027
|
+
end
|
9028
|
+
|
8725
9029
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
8726
9030
|
# @private
|
8727
9031
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9599,6 +9903,8 @@ module Google
|
|
9599
9903
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9600
9904
|
property :error, as: 'error', class: Google::Apis::DialogflowV3beta1::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3beta1::GoogleRpcStatus::Representation
|
9601
9905
|
|
9906
|
+
property :generate_suggestions_response, as: 'generateSuggestionsResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse::Representation
|
9907
|
+
|
9602
9908
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse::Representation
|
9603
9909
|
|
9604
9910
|
property :suggest_dialogflow_assists_response, as: 'suggestDialogflowAssistsResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
@@ -9614,6 +9920,22 @@ module Google
|
|
9614
9920
|
end
|
9615
9921
|
end
|
9616
9922
|
|
9923
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
9924
|
+
# @private
|
9925
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9926
|
+
collection :summary_sections, as: 'summarySections', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection::Representation
|
9927
|
+
|
9928
|
+
end
|
9929
|
+
end
|
9930
|
+
|
9931
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
9932
|
+
# @private
|
9933
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9934
|
+
property :section, as: 'section'
|
9935
|
+
property :summary, as: 'summary'
|
9936
|
+
end
|
9937
|
+
end
|
9938
|
+
|
9617
9939
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
9618
9940
|
# @private
|
9619
9941
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.97.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-23 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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_v3beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.97.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|