google-apis-dialogflow_v2beta1 0.78.0 → 0.80.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4cf538970dda50172bf25fa89b564f724966416cebf57a269093ce50de6bb858
4
- data.tar.gz: 2bd3bc060195816bdc481e2facab5a7f39f7c1aff43cd279cfdc64f19a47d20e
3
+ metadata.gz: 14ba360988befb449b3300590d38230f3876bba0e39337c3b94553eb612052e8
4
+ data.tar.gz: bf924eb24701ad73703db3693f84215c9cd54591da3fbfae5e1d720711b9acb1
5
5
  SHA512:
6
- metadata.gz: 564fd708f760274e6bfcb8170add2879155ba851621f4c1a56309a23ea1c2f62aea6c483beb0a68e4093b05b02b5025b217896bc477e0fea3513792d275ccf88
7
- data.tar.gz: 4bbde3d57d4673b4e24cbc215a88b82ec3114504906a41cdb5ab22403fc749f7ab27f4c077a611c8816e6a1678dfc93b4494041ee9f2422f97366ccff9ac88bd
6
+ metadata.gz: fe4a4d6c134d50e0e7b0874e1bf44f5e6572325da3234372c5a0730394931f968f028748f3d3d78042720cf2763bcad15442fdc0302065df804f72a69dc477ac
7
+ data.tar.gz: c9cfc5efbdc773b9fd8fb029573106f1feafc17064f7a722ed09bca0027883c53fc59e4d60d52cdd233c5555e444a7cff9cf2356bed21656d94ace30f4370c93
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.80.0 (2024-02-18)
4
+
5
+ * Regenerated from discovery document revision 20240215
6
+
7
+ ### v0.79.0 (2024-02-11)
8
+
9
+ * Regenerated from discovery document revision 20240131
10
+
3
11
  ### v0.78.0 (2024-01-28)
4
12
 
5
13
  * Regenerated from discovery document revision 20240122
@@ -854,6 +854,46 @@ module Google
854
854
  end
855
855
  end
856
856
 
857
+ # Metadata returned for the EntityTypes.ExportEntityTypes long running operation.
858
+ class GoogleCloudDialogflowCxV3ExportEntityTypesMetadata
859
+ include Google::Apis::Core::Hashable
860
+
861
+ def initialize(**args)
862
+ update!(**args)
863
+ end
864
+
865
+ # Update properties of this object
866
+ def update!(**args)
867
+ end
868
+ end
869
+
870
+ # The response message for EntityTypes.ExportEntityTypes.
871
+ class GoogleCloudDialogflowCxV3ExportEntityTypesResponse
872
+ include Google::Apis::Core::Hashable
873
+
874
+ # Inline destination for a Dialogflow operation that writes or exports objects (
875
+ # e.g. intents) outside of Dialogflow.
876
+ # Corresponds to the JSON property `entityTypesContent`
877
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination]
878
+ attr_accessor :entity_types_content
879
+
880
+ # The URI to a file containing the exported entity types. This field is
881
+ # populated only if `entity_types_uri` is specified in ExportEntityTypesRequest.
882
+ # Corresponds to the JSON property `entityTypesUri`
883
+ # @return [String]
884
+ attr_accessor :entity_types_uri
885
+
886
+ def initialize(**args)
887
+ update!(**args)
888
+ end
889
+
890
+ # Update properties of this object
891
+ def update!(**args)
892
+ @entity_types_content = args[:entity_types_content] if args.key?(:entity_types_content)
893
+ @entity_types_uri = args[:entity_types_uri] if args.key?(:entity_types_uri)
894
+ end
895
+ end
896
+
857
897
  # The response message for Flows.ExportFlow.
858
898
  class GoogleCloudDialogflowCxV3ExportFlowResponse
859
899
  include Google::Apis::Core::Hashable
@@ -1394,6 +1434,74 @@ module Google
1394
1434
  end
1395
1435
  end
1396
1436
 
1437
+ # Metadata returned for the EntityTypes.ImportEntityTypes long running operation.
1438
+ class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
1439
+ include Google::Apis::Core::Hashable
1440
+
1441
+ def initialize(**args)
1442
+ update!(**args)
1443
+ end
1444
+
1445
+ # Update properties of this object
1446
+ def update!(**args)
1447
+ end
1448
+ end
1449
+
1450
+ # The response message for EntityTypes.ImportEntityTypes.
1451
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponse
1452
+ include Google::Apis::Core::Hashable
1453
+
1454
+ # Conflicting resources detected during the import process. Only filled when
1455
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
1456
+ # names.
1457
+ # Corresponds to the JSON property `conflictingResources`
1458
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources]
1459
+ attr_accessor :conflicting_resources
1460
+
1461
+ # The unique identifier of the imported entity types. Format: `projects//
1462
+ # locations//agents//entity_types/`.
1463
+ # Corresponds to the JSON property `entityTypes`
1464
+ # @return [Array<String>]
1465
+ attr_accessor :entity_types
1466
+
1467
+ def initialize(**args)
1468
+ update!(**args)
1469
+ end
1470
+
1471
+ # Update properties of this object
1472
+ def update!(**args)
1473
+ @conflicting_resources = args[:conflicting_resources] if args.key?(:conflicting_resources)
1474
+ @entity_types = args[:entity_types] if args.key?(:entity_types)
1475
+ end
1476
+ end
1477
+
1478
+ # Conflicting resources detected during the import process. Only filled when
1479
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
1480
+ # names.
1481
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
1482
+ include Google::Apis::Core::Hashable
1483
+
1484
+ # Display names of conflicting entities.
1485
+ # Corresponds to the JSON property `entityDisplayNames`
1486
+ # @return [Array<String>]
1487
+ attr_accessor :entity_display_names
1488
+
1489
+ # Display names of conflicting entity types.
1490
+ # Corresponds to the JSON property `entityTypeDisplayNames`
1491
+ # @return [Array<String>]
1492
+ attr_accessor :entity_type_display_names
1493
+
1494
+ def initialize(**args)
1495
+ update!(**args)
1496
+ end
1497
+
1498
+ # Update properties of this object
1499
+ def update!(**args)
1500
+ @entity_display_names = args[:entity_display_names] if args.key?(:entity_display_names)
1501
+ @entity_type_display_names = args[:entity_type_display_names] if args.key?(:entity_type_display_names)
1502
+ end
1503
+ end
1504
+
1397
1505
  # The response message for Flows.ImportFlow.
1398
1506
  class GoogleCloudDialogflowCxV3ImportFlowResponse
1399
1507
  include Google::Apis::Core::Hashable
@@ -2325,6 +2433,11 @@ module Google
2325
2433
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageText]
2326
2434
  attr_accessor :text
2327
2435
 
2436
+ # Represents a call of a specific tool's action with the specified inputs.
2437
+ # Corresponds to the JSON property `toolCall`
2438
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ToolCall]
2439
+ attr_accessor :tool_call
2440
+
2328
2441
  def initialize(**args)
2329
2442
  update!(**args)
2330
2443
  end
@@ -2343,6 +2456,7 @@ module Google
2343
2456
  @response_type = args[:response_type] if args.key?(:response_type)
2344
2457
  @telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
2345
2458
  @text = args[:text] if args.key?(:text)
2459
+ @tool_call = args[:tool_call] if args.key?(:tool_call)
2346
2460
  end
2347
2461
  end
2348
2462
 
@@ -2965,6 +3079,38 @@ module Google
2965
3079
  end
2966
3080
  end
2967
3081
 
3082
+ # Represents a call of a specific tool's action with the specified inputs.
3083
+ class GoogleCloudDialogflowCxV3ToolCall
3084
+ include Google::Apis::Core::Hashable
3085
+
3086
+ # Required. The name of the tool's action associated with this call.
3087
+ # Corresponds to the JSON property `action`
3088
+ # @return [String]
3089
+ attr_accessor :action
3090
+
3091
+ # Optional. The action's input parameters.
3092
+ # Corresponds to the JSON property `inputParameters`
3093
+ # @return [Hash<String,Object>]
3094
+ attr_accessor :input_parameters
3095
+
3096
+ # Required. The tool associated with this call. Format: `projects//locations//
3097
+ # agents//tools/`.
3098
+ # Corresponds to the JSON property `tool`
3099
+ # @return [String]
3100
+ attr_accessor :tool
3101
+
3102
+ def initialize(**args)
3103
+ update!(**args)
3104
+ end
3105
+
3106
+ # Update properties of this object
3107
+ def update!(**args)
3108
+ @action = args[:action] if args.key?(:action)
3109
+ @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
3110
+ @tool = args[:tool] if args.key?(:tool)
3111
+ end
3112
+ end
3113
+
2968
3114
  # A transition route specifies a intent that can be matched and/or a data
2969
3115
  # condition that can be evaluated during a session. When a specified transition
2970
3116
  # is matched, the following actions are taken in order: * If there is a `
@@ -4440,6 +4586,46 @@ module Google
4440
4586
  end
4441
4587
  end
4442
4588
 
4589
+ # Metadata returned for the EntityTypes.ExportEntityTypes long running operation.
4590
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata
4591
+ include Google::Apis::Core::Hashable
4592
+
4593
+ def initialize(**args)
4594
+ update!(**args)
4595
+ end
4596
+
4597
+ # Update properties of this object
4598
+ def update!(**args)
4599
+ end
4600
+ end
4601
+
4602
+ # The response message for EntityTypes.ExportEntityTypes.
4603
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
4604
+ include Google::Apis::Core::Hashable
4605
+
4606
+ # Inline destination for a Dialogflow operation that writes or exports objects (
4607
+ # e.g. intents) outside of Dialogflow.
4608
+ # Corresponds to the JSON property `entityTypesContent`
4609
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination]
4610
+ attr_accessor :entity_types_content
4611
+
4612
+ # The URI to a file containing the exported entity types. This field is
4613
+ # populated only if `entity_types_uri` is specified in ExportEntityTypesRequest.
4614
+ # Corresponds to the JSON property `entityTypesUri`
4615
+ # @return [String]
4616
+ attr_accessor :entity_types_uri
4617
+
4618
+ def initialize(**args)
4619
+ update!(**args)
4620
+ end
4621
+
4622
+ # Update properties of this object
4623
+ def update!(**args)
4624
+ @entity_types_content = args[:entity_types_content] if args.key?(:entity_types_content)
4625
+ @entity_types_uri = args[:entity_types_uri] if args.key?(:entity_types_uri)
4626
+ end
4627
+ end
4628
+
4443
4629
  # The response message for Flows.ExportFlow.
4444
4630
  class GoogleCloudDialogflowCxV3beta1ExportFlowResponse
4445
4631
  include Google::Apis::Core::Hashable
@@ -4980,6 +5166,74 @@ module Google
4980
5166
  end
4981
5167
  end
4982
5168
 
5169
+ # Metadata returned for the EntityTypes.ImportEntityTypes long running operation.
5170
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
5171
+ include Google::Apis::Core::Hashable
5172
+
5173
+ def initialize(**args)
5174
+ update!(**args)
5175
+ end
5176
+
5177
+ # Update properties of this object
5178
+ def update!(**args)
5179
+ end
5180
+ end
5181
+
5182
+ # The response message for EntityTypes.ImportEntityTypes.
5183
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
5184
+ include Google::Apis::Core::Hashable
5185
+
5186
+ # Conflicting resources detected during the import process. Only filled when
5187
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
5188
+ # names.
5189
+ # Corresponds to the JSON property `conflictingResources`
5190
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources]
5191
+ attr_accessor :conflicting_resources
5192
+
5193
+ # The unique identifier of the imported entity types. Format: `projects//
5194
+ # locations//agents//entity_types/`.
5195
+ # Corresponds to the JSON property `entityTypes`
5196
+ # @return [Array<String>]
5197
+ attr_accessor :entity_types
5198
+
5199
+ def initialize(**args)
5200
+ update!(**args)
5201
+ end
5202
+
5203
+ # Update properties of this object
5204
+ def update!(**args)
5205
+ @conflicting_resources = args[:conflicting_resources] if args.key?(:conflicting_resources)
5206
+ @entity_types = args[:entity_types] if args.key?(:entity_types)
5207
+ end
5208
+ end
5209
+
5210
+ # Conflicting resources detected during the import process. Only filled when
5211
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
5212
+ # names.
5213
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources
5214
+ include Google::Apis::Core::Hashable
5215
+
5216
+ # Display names of conflicting entities.
5217
+ # Corresponds to the JSON property `entityDisplayNames`
5218
+ # @return [Array<String>]
5219
+ attr_accessor :entity_display_names
5220
+
5221
+ # Display names of conflicting entity types.
5222
+ # Corresponds to the JSON property `entityTypeDisplayNames`
5223
+ # @return [Array<String>]
5224
+ attr_accessor :entity_type_display_names
5225
+
5226
+ def initialize(**args)
5227
+ update!(**args)
5228
+ end
5229
+
5230
+ # Update properties of this object
5231
+ def update!(**args)
5232
+ @entity_display_names = args[:entity_display_names] if args.key?(:entity_display_names)
5233
+ @entity_type_display_names = args[:entity_type_display_names] if args.key?(:entity_type_display_names)
5234
+ end
5235
+ end
5236
+
4983
5237
  # The response message for Flows.ImportFlow.
4984
5238
  class GoogleCloudDialogflowCxV3beta1ImportFlowResponse
4985
5239
  include Google::Apis::Core::Hashable
@@ -5778,6 +6032,11 @@ module Google
5778
6032
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TextInput]
5779
6033
  attr_accessor :text
5780
6034
 
6035
+ # The result of calling a tool's action that has been executed by the client.
6036
+ # Corresponds to the JSON property `toolCallResult`
6037
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResult]
6038
+ attr_accessor :tool_call_result
6039
+
5781
6040
  def initialize(**args)
5782
6041
  update!(**args)
5783
6042
  end
@@ -5790,6 +6049,7 @@ module Google
5790
6049
  @intent = args[:intent] if args.key?(:intent)
5791
6050
  @language_code = args[:language_code] if args.key?(:language_code)
5792
6051
  @text = args[:text] if args.key?(:text)
6052
+ @tool_call_result = args[:tool_call_result] if args.key?(:tool_call_result)
5793
6053
  end
5794
6054
  end
5795
6055
 
@@ -5906,6 +6166,11 @@ module Google
5906
6166
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText]
5907
6167
  attr_accessor :text
5908
6168
 
6169
+ # Represents a call of a specific tool's action with the specified inputs.
6170
+ # Corresponds to the JSON property `toolCall`
6171
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCall]
6172
+ attr_accessor :tool_call
6173
+
5909
6174
  def initialize(**args)
5910
6175
  update!(**args)
5911
6176
  end
@@ -5923,6 +6188,7 @@ module Google
5923
6188
  @play_audio = args[:play_audio] if args.key?(:play_audio)
5924
6189
  @telephony_transfer_call = args[:telephony_transfer_call] if args.key?(:telephony_transfer_call)
5925
6190
  @text = args[:text] if args.key?(:text)
6191
+ @tool_call = args[:tool_call] if args.key?(:tool_call)
5926
6192
  end
5927
6193
  end
5928
6194
 
@@ -6545,6 +6811,95 @@ module Google
6545
6811
  end
6546
6812
  end
6547
6813
 
6814
+ # Represents a call of a specific tool's action with the specified inputs.
6815
+ class GoogleCloudDialogflowCxV3beta1ToolCall
6816
+ include Google::Apis::Core::Hashable
6817
+
6818
+ # Required. The name of the tool's action associated with this call.
6819
+ # Corresponds to the JSON property `action`
6820
+ # @return [String]
6821
+ attr_accessor :action
6822
+
6823
+ # Optional. The action's input parameters.
6824
+ # Corresponds to the JSON property `inputParameters`
6825
+ # @return [Hash<String,Object>]
6826
+ attr_accessor :input_parameters
6827
+
6828
+ # Required. The tool associated with this call. Format: `projects//locations//
6829
+ # agents//tools/`.
6830
+ # Corresponds to the JSON property `tool`
6831
+ # @return [String]
6832
+ attr_accessor :tool
6833
+
6834
+ def initialize(**args)
6835
+ update!(**args)
6836
+ end
6837
+
6838
+ # Update properties of this object
6839
+ def update!(**args)
6840
+ @action = args[:action] if args.key?(:action)
6841
+ @input_parameters = args[:input_parameters] if args.key?(:input_parameters)
6842
+ @tool = args[:tool] if args.key?(:tool)
6843
+ end
6844
+ end
6845
+
6846
+ # The result of calling a tool's action that has been executed by the client.
6847
+ class GoogleCloudDialogflowCxV3beta1ToolCallResult
6848
+ include Google::Apis::Core::Hashable
6849
+
6850
+ # Required. The name of the tool's action associated with this call.
6851
+ # Corresponds to the JSON property `action`
6852
+ # @return [String]
6853
+ attr_accessor :action
6854
+
6855
+ # An error produced by the tool call.
6856
+ # Corresponds to the JSON property `error`
6857
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResultError]
6858
+ attr_accessor :error
6859
+
6860
+ # The tool call's output parameters.
6861
+ # Corresponds to the JSON property `outputParameters`
6862
+ # @return [Hash<String,Object>]
6863
+ attr_accessor :output_parameters
6864
+
6865
+ # Required. The tool associated with this call. Format: `projects//locations//
6866
+ # agents//tools/`.
6867
+ # Corresponds to the JSON property `tool`
6868
+ # @return [String]
6869
+ attr_accessor :tool
6870
+
6871
+ def initialize(**args)
6872
+ update!(**args)
6873
+ end
6874
+
6875
+ # Update properties of this object
6876
+ def update!(**args)
6877
+ @action = args[:action] if args.key?(:action)
6878
+ @error = args[:error] if args.key?(:error)
6879
+ @output_parameters = args[:output_parameters] if args.key?(:output_parameters)
6880
+ @tool = args[:tool] if args.key?(:tool)
6881
+ end
6882
+ end
6883
+
6884
+ # An error produced by the tool call.
6885
+ class GoogleCloudDialogflowCxV3beta1ToolCallResultError
6886
+ include Google::Apis::Core::Hashable
6887
+
6888
+ # Optional. The error message of the function.
6889
+ # Corresponds to the JSON property `message`
6890
+ # @return [String]
6891
+ attr_accessor :message
6892
+
6893
+ def initialize(**args)
6894
+ update!(**args)
6895
+ end
6896
+
6897
+ # Update properties of this object
6898
+ def update!(**args)
6899
+ @message = args[:message] if args.key?(:message)
6900
+ end
6901
+ end
6902
+
6548
6903
  # A transition route specifies a intent that can be matched and/or a data
6549
6904
  # condition that can be evaluated during a session. When a specified transition
6550
6905
  # is matched, the following actions are taken in order: * If there is a `
@@ -10394,6 +10749,11 @@ module Google
10394
10749
  # @return [String]
10395
10750
  attr_accessor :summary_text
10396
10751
 
10752
+ # Optional. Actual text sections of submitted summary.
10753
+ # Corresponds to the JSON property `textSections`
10754
+ # @return [Hash<String,String>]
10755
+ attr_accessor :text_sections
10756
+
10397
10757
  def initialize(**args)
10398
10758
  update!(**args)
10399
10759
  end
@@ -10403,6 +10763,7 @@ module Google
10403
10763
  @start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp)
10404
10764
  @submit_timestamp = args[:submit_timestamp] if args.key?(:submit_timestamp)
10405
10765
  @summary_text = args[:summary_text] if args.key?(:summary_text)
10766
+ @text_sections = args[:text_sections] if args.key?(:text_sections)
10406
10767
  end
10407
10768
  end
10408
10769
 
@@ -10478,6 +10839,12 @@ module Google
10478
10839
  # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EventInput]
10479
10840
  attr_accessor :event_input
10480
10841
 
10842
+ # Represents the intent to trigger programmatically rather than as a result of
10843
+ # natural language processing. The intent input is only used for V3 agent.
10844
+ # Corresponds to the JSON property `intentInput`
10845
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentInput]
10846
+ attr_accessor :intent_input
10847
+
10481
10848
  # Optional. The send time of the message from end user or human agent's
10482
10849
  # perspective. It is used for identifying the same message under one participant.
10483
10850
  # Given two messages under the same participant: * If send time are different
@@ -10531,6 +10898,7 @@ module Google
10531
10898
  @cx_current_page = args[:cx_current_page] if args.key?(:cx_current_page)
10532
10899
  @cx_parameters = args[:cx_parameters] if args.key?(:cx_parameters)
10533
10900
  @event_input = args[:event_input] if args.key?(:event_input)
10901
+ @intent_input = args[:intent_input] if args.key?(:intent_input)
10534
10902
  @message_send_time = args[:message_send_time] if args.key?(:message_send_time)
10535
10903
  @query_params = args[:query_params] if args.key?(:query_params)
10536
10904
  @reply_audio_config = args[:reply_audio_config] if args.key?(:reply_audio_config)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2beta1
18
18
  # Version of the google-apis-dialogflow_v2beta1 gem
19
- GEM_VERSION = "0.78.0"
19
+ GEM_VERSION = "0.80.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240122"
25
+ REVISION = "20240215"
26
26
  end
27
27
  end
28
28
  end
@@ -178,6 +178,18 @@ module Google
178
178
  include Google::Apis::Core::JsonObjectSupport
179
179
  end
180
180
 
181
+ class GoogleCloudDialogflowCxV3ExportEntityTypesMetadata
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
187
+ class GoogleCloudDialogflowCxV3ExportEntityTypesResponse
188
+ class Representation < Google::Apis::Core::JsonRepresentation; end
189
+
190
+ include Google::Apis::Core::JsonObjectSupport
191
+ end
192
+
181
193
  class GoogleCloudDialogflowCxV3ExportFlowResponse
182
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
183
195
 
@@ -280,6 +292,24 @@ module Google
280
292
  include Google::Apis::Core::JsonObjectSupport
281
293
  end
282
294
 
295
+ class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
296
+ class Representation < Google::Apis::Core::JsonRepresentation; end
297
+
298
+ include Google::Apis::Core::JsonObjectSupport
299
+ end
300
+
301
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponse
302
+ class Representation < Google::Apis::Core::JsonRepresentation; end
303
+
304
+ include Google::Apis::Core::JsonObjectSupport
305
+ end
306
+
307
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
283
313
  class GoogleCloudDialogflowCxV3ImportFlowResponse
284
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
285
315
 
@@ -538,6 +568,12 @@ module Google
538
568
  include Google::Apis::Core::JsonObjectSupport
539
569
  end
540
570
 
571
+ class GoogleCloudDialogflowCxV3ToolCall
572
+ class Representation < Google::Apis::Core::JsonRepresentation; end
573
+
574
+ include Google::Apis::Core::JsonObjectSupport
575
+ end
576
+
541
577
  class GoogleCloudDialogflowCxV3TransitionRoute
542
578
  class Representation < Google::Apis::Core::JsonRepresentation; end
543
579
 
@@ -772,6 +808,18 @@ module Google
772
808
  include Google::Apis::Core::JsonObjectSupport
773
809
  end
774
810
 
811
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata
812
+ class Representation < Google::Apis::Core::JsonRepresentation; end
813
+
814
+ include Google::Apis::Core::JsonObjectSupport
815
+ end
816
+
817
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
818
+ class Representation < Google::Apis::Core::JsonRepresentation; end
819
+
820
+ include Google::Apis::Core::JsonObjectSupport
821
+ end
822
+
775
823
  class GoogleCloudDialogflowCxV3beta1ExportFlowResponse
776
824
  class Representation < Google::Apis::Core::JsonRepresentation; end
777
825
 
@@ -874,6 +922,24 @@ module Google
874
922
  include Google::Apis::Core::JsonObjectSupport
875
923
  end
876
924
 
925
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
926
+ class Representation < Google::Apis::Core::JsonRepresentation; end
927
+
928
+ include Google::Apis::Core::JsonObjectSupport
929
+ end
930
+
931
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
932
+ class Representation < Google::Apis::Core::JsonRepresentation; end
933
+
934
+ include Google::Apis::Core::JsonObjectSupport
935
+ end
936
+
937
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources
938
+ class Representation < Google::Apis::Core::JsonRepresentation; end
939
+
940
+ include Google::Apis::Core::JsonObjectSupport
941
+ end
942
+
877
943
  class GoogleCloudDialogflowCxV3beta1ImportFlowResponse
878
944
  class Representation < Google::Apis::Core::JsonRepresentation; end
879
945
 
@@ -1132,6 +1198,24 @@ module Google
1132
1198
  include Google::Apis::Core::JsonObjectSupport
1133
1199
  end
1134
1200
 
1201
+ class GoogleCloudDialogflowCxV3beta1ToolCall
1202
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1203
+
1204
+ include Google::Apis::Core::JsonObjectSupport
1205
+ end
1206
+
1207
+ class GoogleCloudDialogflowCxV3beta1ToolCallResult
1208
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1209
+
1210
+ include Google::Apis::Core::JsonObjectSupport
1211
+ end
1212
+
1213
+ class GoogleCloudDialogflowCxV3beta1ToolCallResultError
1214
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1215
+
1216
+ include Google::Apis::Core::JsonObjectSupport
1217
+ end
1218
+
1135
1219
  class GoogleCloudDialogflowCxV3beta1TransitionRoute
1136
1220
  class Representation < Google::Apis::Core::JsonRepresentation; end
1137
1221
 
@@ -3325,6 +3409,21 @@ module Google
3325
3409
  end
3326
3410
  end
3327
3411
 
3412
+ class GoogleCloudDialogflowCxV3ExportEntityTypesMetadata
3413
+ # @private
3414
+ class Representation < Google::Apis::Core::JsonRepresentation
3415
+ end
3416
+ end
3417
+
3418
+ class GoogleCloudDialogflowCxV3ExportEntityTypesResponse
3419
+ # @private
3420
+ class Representation < Google::Apis::Core::JsonRepresentation
3421
+ property :entity_types_content, as: 'entityTypesContent', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination::Representation
3422
+
3423
+ property :entity_types_uri, as: 'entityTypesUri'
3424
+ end
3425
+ end
3426
+
3328
3427
  class GoogleCloudDialogflowCxV3ExportFlowResponse
3329
3428
  # @private
3330
3429
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3479,6 +3578,29 @@ module Google
3479
3578
  end
3480
3579
  end
3481
3580
 
3581
+ class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
3582
+ # @private
3583
+ class Representation < Google::Apis::Core::JsonRepresentation
3584
+ end
3585
+ end
3586
+
3587
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponse
3588
+ # @private
3589
+ class Representation < Google::Apis::Core::JsonRepresentation
3590
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources::Representation
3591
+
3592
+ collection :entity_types, as: 'entityTypes'
3593
+ end
3594
+ end
3595
+
3596
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
3597
+ # @private
3598
+ class Representation < Google::Apis::Core::JsonRepresentation
3599
+ collection :entity_display_names, as: 'entityDisplayNames'
3600
+ collection :entity_type_display_names, as: 'entityTypeDisplayNames'
3601
+ end
3602
+ end
3603
+
3482
3604
  class GoogleCloudDialogflowCxV3ImportFlowResponse
3483
3605
  # @private
3484
3606
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3711,6 +3833,8 @@ module Google
3711
3833
 
3712
3834
  property :text, as: 'text', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageText, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageText::Representation
3713
3835
 
3836
+ property :tool_call, as: 'toolCall', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ToolCall, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ToolCall::Representation
3837
+
3714
3838
  end
3715
3839
  end
3716
3840
 
@@ -3900,6 +4024,15 @@ module Google
3900
4024
  end
3901
4025
  end
3902
4026
 
4027
+ class GoogleCloudDialogflowCxV3ToolCall
4028
+ # @private
4029
+ class Representation < Google::Apis::Core::JsonRepresentation
4030
+ property :action, as: 'action'
4031
+ hash :input_parameters, as: 'inputParameters'
4032
+ property :tool, as: 'tool'
4033
+ end
4034
+ end
4035
+
3903
4036
  class GoogleCloudDialogflowCxV3TransitionRoute
3904
4037
  # @private
3905
4038
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4303,6 +4436,21 @@ module Google
4303
4436
  end
4304
4437
  end
4305
4438
 
4439
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata
4440
+ # @private
4441
+ class Representation < Google::Apis::Core::JsonRepresentation
4442
+ end
4443
+ end
4444
+
4445
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
4446
+ # @private
4447
+ class Representation < Google::Apis::Core::JsonRepresentation
4448
+ property :entity_types_content, as: 'entityTypesContent', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination::Representation
4449
+
4450
+ property :entity_types_uri, as: 'entityTypesUri'
4451
+ end
4452
+ end
4453
+
4306
4454
  class GoogleCloudDialogflowCxV3beta1ExportFlowResponse
4307
4455
  # @private
4308
4456
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4457,6 +4605,29 @@ module Google
4457
4605
  end
4458
4606
  end
4459
4607
 
4608
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
4609
+ # @private
4610
+ class Representation < Google::Apis::Core::JsonRepresentation
4611
+ end
4612
+ end
4613
+
4614
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
4615
+ # @private
4616
+ class Representation < Google::Apis::Core::JsonRepresentation
4617
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources::Representation
4618
+
4619
+ collection :entity_types, as: 'entityTypes'
4620
+ end
4621
+ end
4622
+
4623
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources
4624
+ # @private
4625
+ class Representation < Google::Apis::Core::JsonRepresentation
4626
+ collection :entity_display_names, as: 'entityDisplayNames'
4627
+ collection :entity_type_display_names, as: 'entityTypeDisplayNames'
4628
+ end
4629
+ end
4630
+
4460
4631
  class GoogleCloudDialogflowCxV3beta1ImportFlowResponse
4461
4632
  # @private
4462
4633
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4654,6 +4825,8 @@ module Google
4654
4825
  property :language_code, as: 'languageCode'
4655
4826
  property :text, as: 'text', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TextInput, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1TextInput::Representation
4656
4827
 
4828
+ property :tool_call_result, as: 'toolCallResult', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResult, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResult::Representation
4829
+
4657
4830
  end
4658
4831
  end
4659
4832
 
@@ -4688,6 +4861,8 @@ module Google
4688
4861
 
4689
4862
  property :text, as: 'text', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText::Representation
4690
4863
 
4864
+ property :tool_call, as: 'toolCall', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCall, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCall::Representation
4865
+
4691
4866
  end
4692
4867
  end
4693
4868
 
@@ -4877,6 +5052,33 @@ module Google
4877
5052
  end
4878
5053
  end
4879
5054
 
5055
+ class GoogleCloudDialogflowCxV3beta1ToolCall
5056
+ # @private
5057
+ class Representation < Google::Apis::Core::JsonRepresentation
5058
+ property :action, as: 'action'
5059
+ hash :input_parameters, as: 'inputParameters'
5060
+ property :tool, as: 'tool'
5061
+ end
5062
+ end
5063
+
5064
+ class GoogleCloudDialogflowCxV3beta1ToolCallResult
5065
+ # @private
5066
+ class Representation < Google::Apis::Core::JsonRepresentation
5067
+ property :action, as: 'action'
5068
+ property :error, as: 'error', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResultError, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ToolCallResultError::Representation
5069
+
5070
+ hash :output_parameters, as: 'outputParameters'
5071
+ property :tool, as: 'tool'
5072
+ end
5073
+ end
5074
+
5075
+ class GoogleCloudDialogflowCxV3beta1ToolCallResultError
5076
+ # @private
5077
+ class Representation < Google::Apis::Core::JsonRepresentation
5078
+ property :message, as: 'message'
5079
+ end
5080
+ end
5081
+
4880
5082
  class GoogleCloudDialogflowCxV3beta1TransitionRoute
4881
5083
  # @private
4882
5084
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5895,6 +6097,7 @@ module Google
5895
6097
  property :start_timestamp, as: 'startTimestamp'
5896
6098
  property :submit_timestamp, as: 'submitTimestamp'
5897
6099
  property :summary_text, as: 'summaryText'
6100
+ hash :text_sections, as: 'textSections'
5898
6101
  end
5899
6102
  end
5900
6103
 
@@ -5921,6 +6124,8 @@ module Google
5921
6124
  hash :cx_parameters, as: 'cxParameters'
5922
6125
  property :event_input, as: 'eventInput', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EventInput, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EventInput::Representation
5923
6126
 
6127
+ property :intent_input, as: 'intentInput', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentInput, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1IntentInput::Representation
6128
+
5924
6129
  property :message_send_time, as: 'messageSendTime'
5925
6130
  property :query_params, as: 'queryParams', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryParameters, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1QueryParameters::Representation
5926
6131
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.78.0
4
+ version: 0.80.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-28 00:00:00.000000000 Z
11
+ date: 2024-02-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.78.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.80.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
63
63
  post_install_message:
64
64
  rdoc_options: []