google-apis-dialogflow_v2 0.78.0 → 0.80.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: 1c75ee4fbedf1b5d2150b96579ccc9f6f16cd9cc6f293e9698698270d4c0b36b
4
- data.tar.gz: cb9e491023dbc54e15a0c5a8496c16074bfef84b10ea5e9ad4e774a1531a65cf
3
+ metadata.gz: a50b8786a8a19cc719a0cf92c67117e74b18efc1c7934b22a90b337cf4950c9f
4
+ data.tar.gz: 40f1c547ebefe8254cc70277e56b7616c2193cac83a4b7f66a4dcec3e453d339
5
5
  SHA512:
6
- metadata.gz: 14291638961f08e832cf8edb80100c57560ee5ceba241f15503784c9e07557b2d6e66f98e7a8ee45a0664adcbf4d0bbb481fe399f261a2228c8494e3c9da9553
7
- data.tar.gz: '0808525b975b6c8512912e2e35995b9308f65c5b64d9d001026ee261660bd5dea22a7b9713046f70f3c26765569bc254bd87a6cebf6510d78991d2390ea7ee84'
6
+ metadata.gz: 1ab8a802196d578b7094882d3fa91e10a1a2ddf7f50ed037fc6def175e1a4dd6e121d593a8a15501dc35e3bda435b59b24693b4dea71fb47b15922633a7440e7
7
+ data.tar.gz: 137137e346931adbd46eb87d6880ded4388b91973a3be876e3d462d16b3d3b0b9f29f9f27ec26865e447fca802ea038cf5123978a62db617708f31249db8f34c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.80.0 (2024-02-11)
4
+
5
+ * Regenerated from discovery document revision 20240131
6
+
7
+ ### v0.79.0 (2024-01-28)
8
+
9
+ * Regenerated from discovery document revision 20240122
10
+ * Regenerated using generator version 0.13.1
11
+
3
12
  ### v0.78.0 (2024-01-23)
4
13
 
5
14
  * Regenerated from discovery document revision 20240113
@@ -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::DialogflowV2::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::DialogflowV2::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
@@ -1593,7 +1701,9 @@ module Google
1593
1701
  attr_accessor :model_variant
1594
1702
 
1595
1703
  # If `true`, the request will opt out for STT conformer model migration. This
1596
- # field will be deprecated once force migration takes place in June 2024.
1704
+ # field will be deprecated once force migration takes place in June 2024. Please
1705
+ # refer to [Dialogflow CX Speech model migration](https://cloud.google.com/
1706
+ # dialogflow/cx/docs/concept/speech-model-migration).
1597
1707
  # Corresponds to the JSON property `optOutConformerModelMigration`
1598
1708
  # @return [Boolean]
1599
1709
  attr_accessor :opt_out_conformer_model_migration
@@ -4438,6 +4548,46 @@ module Google
4438
4548
  end
4439
4549
  end
4440
4550
 
4551
+ # Metadata returned for the EntityTypes.ExportEntityTypes long running operation.
4552
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata
4553
+ include Google::Apis::Core::Hashable
4554
+
4555
+ def initialize(**args)
4556
+ update!(**args)
4557
+ end
4558
+
4559
+ # Update properties of this object
4560
+ def update!(**args)
4561
+ end
4562
+ end
4563
+
4564
+ # The response message for EntityTypes.ExportEntityTypes.
4565
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
4566
+ include Google::Apis::Core::Hashable
4567
+
4568
+ # Inline destination for a Dialogflow operation that writes or exports objects (
4569
+ # e.g. intents) outside of Dialogflow.
4570
+ # Corresponds to the JSON property `entityTypesContent`
4571
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1InlineDestination]
4572
+ attr_accessor :entity_types_content
4573
+
4574
+ # The URI to a file containing the exported entity types. This field is
4575
+ # populated only if `entity_types_uri` is specified in ExportEntityTypesRequest.
4576
+ # Corresponds to the JSON property `entityTypesUri`
4577
+ # @return [String]
4578
+ attr_accessor :entity_types_uri
4579
+
4580
+ def initialize(**args)
4581
+ update!(**args)
4582
+ end
4583
+
4584
+ # Update properties of this object
4585
+ def update!(**args)
4586
+ @entity_types_content = args[:entity_types_content] if args.key?(:entity_types_content)
4587
+ @entity_types_uri = args[:entity_types_uri] if args.key?(:entity_types_uri)
4588
+ end
4589
+ end
4590
+
4441
4591
  # The response message for Flows.ExportFlow.
4442
4592
  class GoogleCloudDialogflowCxV3beta1ExportFlowResponse
4443
4593
  include Google::Apis::Core::Hashable
@@ -4978,6 +5128,74 @@ module Google
4978
5128
  end
4979
5129
  end
4980
5130
 
5131
+ # Metadata returned for the EntityTypes.ImportEntityTypes long running operation.
5132
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
5133
+ include Google::Apis::Core::Hashable
5134
+
5135
+ def initialize(**args)
5136
+ update!(**args)
5137
+ end
5138
+
5139
+ # Update properties of this object
5140
+ def update!(**args)
5141
+ end
5142
+ end
5143
+
5144
+ # The response message for EntityTypes.ImportEntityTypes.
5145
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
5146
+ include Google::Apis::Core::Hashable
5147
+
5148
+ # Conflicting resources detected during the import process. Only filled when
5149
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
5150
+ # names.
5151
+ # Corresponds to the JSON property `conflictingResources`
5152
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources]
5153
+ attr_accessor :conflicting_resources
5154
+
5155
+ # The unique identifier of the imported entity types. Format: `projects//
5156
+ # locations//agents//entity_types/`.
5157
+ # Corresponds to the JSON property `entityTypes`
5158
+ # @return [Array<String>]
5159
+ attr_accessor :entity_types
5160
+
5161
+ def initialize(**args)
5162
+ update!(**args)
5163
+ end
5164
+
5165
+ # Update properties of this object
5166
+ def update!(**args)
5167
+ @conflicting_resources = args[:conflicting_resources] if args.key?(:conflicting_resources)
5168
+ @entity_types = args[:entity_types] if args.key?(:entity_types)
5169
+ end
5170
+ end
5171
+
5172
+ # Conflicting resources detected during the import process. Only filled when
5173
+ # REPORT_CONFLICT is set in the request and there are conflicts in the display
5174
+ # names.
5175
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources
5176
+ include Google::Apis::Core::Hashable
5177
+
5178
+ # Display names of conflicting entities.
5179
+ # Corresponds to the JSON property `entityDisplayNames`
5180
+ # @return [Array<String>]
5181
+ attr_accessor :entity_display_names
5182
+
5183
+ # Display names of conflicting entity types.
5184
+ # Corresponds to the JSON property `entityTypeDisplayNames`
5185
+ # @return [Array<String>]
5186
+ attr_accessor :entity_type_display_names
5187
+
5188
+ def initialize(**args)
5189
+ update!(**args)
5190
+ end
5191
+
5192
+ # Update properties of this object
5193
+ def update!(**args)
5194
+ @entity_display_names = args[:entity_display_names] if args.key?(:entity_display_names)
5195
+ @entity_type_display_names = args[:entity_type_display_names] if args.key?(:entity_type_display_names)
5196
+ end
5197
+ end
5198
+
4981
5199
  # The response message for Flows.ImportFlow.
4982
5200
  class GoogleCloudDialogflowCxV3beta1ImportFlowResponse
4983
5201
  include Google::Apis::Core::Hashable
@@ -5177,7 +5395,9 @@ module Google
5177
5395
  attr_accessor :model_variant
5178
5396
 
5179
5397
  # If `true`, the request will opt out for STT conformer model migration. This
5180
- # field will be deprecated once force migration takes place in June 2024.
5398
+ # field will be deprecated once force migration takes place in June 2024. Please
5399
+ # refer to [Dialogflow CX Speech model migration](https://cloud.google.com/
5400
+ # dialogflow/cx/docs/concept/speech-model-migration).
5181
5401
  # Corresponds to the JSON property `optOutConformerModelMigration`
5182
5402
  # @return [Boolean]
5183
5403
  attr_accessor :opt_out_conformer_model_migration
@@ -7393,6 +7613,11 @@ module Google
7393
7613
  # @return [String]
7394
7614
  attr_accessor :summary_text
7395
7615
 
7616
+ # Optional. Actual text sections of submitted summary.
7617
+ # Corresponds to the JSON property `textSections`
7618
+ # @return [Hash<String,String>]
7619
+ attr_accessor :text_sections
7620
+
7396
7621
  def initialize(**args)
7397
7622
  update!(**args)
7398
7623
  end
@@ -7402,6 +7627,7 @@ module Google
7402
7627
  @start_time = args[:start_time] if args.key?(:start_time)
7403
7628
  @submit_time = args[:submit_time] if args.key?(:submit_time)
7404
7629
  @summary_text = args[:summary_text] if args.key?(:summary_text)
7630
+ @text_sections = args[:text_sections] if args.key?(:text_sections)
7405
7631
  end
7406
7632
  end
7407
7633
 
@@ -10927,7 +11153,9 @@ module Google
10927
11153
  attr_accessor :model_variant
10928
11154
 
10929
11155
  # If `true`, the request will opt out for STT conformer model migration. This
10930
- # field will be deprecated once force migration takes place in June 2024.
11156
+ # field will be deprecated once force migration takes place in June 2024. Please
11157
+ # refer to [Dialogflow ES Speech model migration](https://cloud.google.com/
11158
+ # dialogflow/es/docs/speech-model-migration).
10931
11159
  # Corresponds to the JSON property `optOutConformerModelMigration`
10932
11160
  # @return [Boolean]
10933
11161
  attr_accessor :opt_out_conformer_model_migration
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DialogflowV2
18
18
  # Version of the google-apis-dialogflow_v2 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
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240113"
25
+ REVISION = "20240131"
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
 
@@ -772,6 +802,18 @@ module Google
772
802
  include Google::Apis::Core::JsonObjectSupport
773
803
  end
774
804
 
805
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata
806
+ class Representation < Google::Apis::Core::JsonRepresentation; end
807
+
808
+ include Google::Apis::Core::JsonObjectSupport
809
+ end
810
+
811
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
812
+ class Representation < Google::Apis::Core::JsonRepresentation; end
813
+
814
+ include Google::Apis::Core::JsonObjectSupport
815
+ end
816
+
775
817
  class GoogleCloudDialogflowCxV3beta1ExportFlowResponse
776
818
  class Representation < Google::Apis::Core::JsonRepresentation; end
777
819
 
@@ -874,6 +916,24 @@ module Google
874
916
  include Google::Apis::Core::JsonObjectSupport
875
917
  end
876
918
 
919
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
920
+ class Representation < Google::Apis::Core::JsonRepresentation; end
921
+
922
+ include Google::Apis::Core::JsonObjectSupport
923
+ end
924
+
925
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
926
+ class Representation < Google::Apis::Core::JsonRepresentation; end
927
+
928
+ include Google::Apis::Core::JsonObjectSupport
929
+ end
930
+
931
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources
932
+ class Representation < Google::Apis::Core::JsonRepresentation; end
933
+
934
+ include Google::Apis::Core::JsonObjectSupport
935
+ end
936
+
877
937
  class GoogleCloudDialogflowCxV3beta1ImportFlowResponse
878
938
  class Representation < Google::Apis::Core::JsonRepresentation; end
879
939
 
@@ -3307,6 +3367,21 @@ module Google
3307
3367
  end
3308
3368
  end
3309
3369
 
3370
+ class GoogleCloudDialogflowCxV3ExportEntityTypesMetadata
3371
+ # @private
3372
+ class Representation < Google::Apis::Core::JsonRepresentation
3373
+ end
3374
+ end
3375
+
3376
+ class GoogleCloudDialogflowCxV3ExportEntityTypesResponse
3377
+ # @private
3378
+ class Representation < Google::Apis::Core::JsonRepresentation
3379
+ property :entity_types_content, as: 'entityTypesContent', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3InlineDestination, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3InlineDestination::Representation
3380
+
3381
+ property :entity_types_uri, as: 'entityTypesUri'
3382
+ end
3383
+ end
3384
+
3310
3385
  class GoogleCloudDialogflowCxV3ExportFlowResponse
3311
3386
  # @private
3312
3387
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3461,6 +3536,29 @@ module Google
3461
3536
  end
3462
3537
  end
3463
3538
 
3539
+ class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
3540
+ # @private
3541
+ class Representation < Google::Apis::Core::JsonRepresentation
3542
+ end
3543
+ end
3544
+
3545
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponse
3546
+ # @private
3547
+ class Representation < Google::Apis::Core::JsonRepresentation
3548
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources::Representation
3549
+
3550
+ collection :entity_types, as: 'entityTypes'
3551
+ end
3552
+ end
3553
+
3554
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
3555
+ # @private
3556
+ class Representation < Google::Apis::Core::JsonRepresentation
3557
+ collection :entity_display_names, as: 'entityDisplayNames'
3558
+ collection :entity_type_display_names, as: 'entityTypeDisplayNames'
3559
+ end
3560
+ end
3561
+
3464
3562
  class GoogleCloudDialogflowCxV3ImportFlowResponse
3465
3563
  # @private
3466
3564
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4285,6 +4383,21 @@ module Google
4285
4383
  end
4286
4384
  end
4287
4385
 
4386
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata
4387
+ # @private
4388
+ class Representation < Google::Apis::Core::JsonRepresentation
4389
+ end
4390
+ end
4391
+
4392
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
4393
+ # @private
4394
+ class Representation < Google::Apis::Core::JsonRepresentation
4395
+ property :entity_types_content, as: 'entityTypesContent', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1InlineDestination, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1InlineDestination::Representation
4396
+
4397
+ property :entity_types_uri, as: 'entityTypesUri'
4398
+ end
4399
+ end
4400
+
4288
4401
  class GoogleCloudDialogflowCxV3beta1ExportFlowResponse
4289
4402
  # @private
4290
4403
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4439,6 +4552,29 @@ module Google
4439
4552
  end
4440
4553
  end
4441
4554
 
4555
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
4556
+ # @private
4557
+ class Representation < Google::Apis::Core::JsonRepresentation
4558
+ end
4559
+ end
4560
+
4561
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
4562
+ # @private
4563
+ class Representation < Google::Apis::Core::JsonRepresentation
4564
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources::Representation
4565
+
4566
+ collection :entity_types, as: 'entityTypes'
4567
+ end
4568
+ end
4569
+
4570
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources
4571
+ # @private
4572
+ class Representation < Google::Apis::Core::JsonRepresentation
4573
+ collection :entity_display_names, as: 'entityDisplayNames'
4574
+ collection :entity_type_display_names, as: 'entityTypeDisplayNames'
4575
+ end
4576
+ end
4577
+
4442
4578
  class GoogleCloudDialogflowCxV3beta1ImportFlowResponse
4443
4579
  # @private
4444
4580
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5064,6 +5200,7 @@ module Google
5064
5200
  property :start_time, as: 'startTime'
5065
5201
  property :submit_time, as: 'submitTime'
5066
5202
  property :summary_text, as: 'summaryText'
5203
+ hash :text_sections, as: 'textSections'
5067
5204
  end
5068
5205
  end
5069
5206
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v2
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-23 00:00:00.000000000 Z
11
+ date: 2024-02-11 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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.78.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.80.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
63
63
  post_install_message:
64
64
  rdoc_options: []