google-apis-dialogflow_v2beta1 0.78.0 → 0.79.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: 3cda50f6d509ee4d3d4b1bf288b2c7bdb8d3c14143c1481438881e92e7ef6be8
4
+ data.tar.gz: 4037fb2597f5b1d9cc694fc59696f270ff62f8e446b70155df8f5eae23abff98
5
5
  SHA512:
6
- metadata.gz: 564fd708f760274e6bfcb8170add2879155ba851621f4c1a56309a23ea1c2f62aea6c483beb0a68e4093b05b02b5025b217896bc477e0fea3513792d275ccf88
7
- data.tar.gz: 4bbde3d57d4673b4e24cbc215a88b82ec3114504906a41cdb5ab22403fc749f7ab27f4c077a611c8816e6a1678dfc93b4494041ee9f2422f97366ccff9ac88bd
6
+ metadata.gz: d091d5faceab78ca3bece2815e375601f2505be6828be8208fba3dfec3d01a2b4915eb15dd2038a9fac8754fba6bd5d1d1ade55ea92fc761344c658cb3f96ada
7
+ data.tar.gz: f5854fa929740cac989023f776243165a1afc943b6468a0d9c1762b77b972a1ac533b696a16a79356d6f033a52b4e00298e281821778aa73c0e51429827f3253
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.79.0 (2024-02-11)
4
+
5
+ * Regenerated from discovery document revision 20240131
6
+
3
7
  ### v0.78.0 (2024-01-28)
4
8
 
5
9
  * 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
@@ -4440,6 +4548,46 @@ module Google
4440
4548
  end
4441
4549
  end
4442
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::DialogflowV2beta1::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
+
4443
4591
  # The response message for Flows.ExportFlow.
4444
4592
  class GoogleCloudDialogflowCxV3beta1ExportFlowResponse
4445
4593
  include Google::Apis::Core::Hashable
@@ -4980,6 +5128,74 @@ module Google
4980
5128
  end
4981
5129
  end
4982
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::DialogflowV2beta1::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
+
4983
5199
  # The response message for Flows.ImportFlow.
4984
5200
  class GoogleCloudDialogflowCxV3beta1ImportFlowResponse
4985
5201
  include Google::Apis::Core::Hashable
@@ -10394,6 +10610,11 @@ module Google
10394
10610
  # @return [String]
10395
10611
  attr_accessor :summary_text
10396
10612
 
10613
+ # Optional. Actual text sections of submitted summary.
10614
+ # Corresponds to the JSON property `textSections`
10615
+ # @return [Hash<String,String>]
10616
+ attr_accessor :text_sections
10617
+
10397
10618
  def initialize(**args)
10398
10619
  update!(**args)
10399
10620
  end
@@ -10403,6 +10624,7 @@ module Google
10403
10624
  @start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp)
10404
10625
  @submit_timestamp = args[:submit_timestamp] if args.key?(:submit_timestamp)
10405
10626
  @summary_text = args[:summary_text] if args.key?(:summary_text)
10627
+ @text_sections = args[:text_sections] if args.key?(:text_sections)
10406
10628
  end
10407
10629
  end
10408
10630
 
@@ -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.79.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 = "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
 
@@ -3325,6 +3385,21 @@ module Google
3325
3385
  end
3326
3386
  end
3327
3387
 
3388
+ class GoogleCloudDialogflowCxV3ExportEntityTypesMetadata
3389
+ # @private
3390
+ class Representation < Google::Apis::Core::JsonRepresentation
3391
+ end
3392
+ end
3393
+
3394
+ class GoogleCloudDialogflowCxV3ExportEntityTypesResponse
3395
+ # @private
3396
+ class Representation < Google::Apis::Core::JsonRepresentation
3397
+ property :entity_types_content, as: 'entityTypesContent', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3InlineDestination::Representation
3398
+
3399
+ property :entity_types_uri, as: 'entityTypesUri'
3400
+ end
3401
+ end
3402
+
3328
3403
  class GoogleCloudDialogflowCxV3ExportFlowResponse
3329
3404
  # @private
3330
3405
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3479,6 +3554,29 @@ module Google
3479
3554
  end
3480
3555
  end
3481
3556
 
3557
+ class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
3558
+ # @private
3559
+ class Representation < Google::Apis::Core::JsonRepresentation
3560
+ end
3561
+ end
3562
+
3563
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponse
3564
+ # @private
3565
+ class Representation < Google::Apis::Core::JsonRepresentation
3566
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources::Representation
3567
+
3568
+ collection :entity_types, as: 'entityTypes'
3569
+ end
3570
+ end
3571
+
3572
+ class GoogleCloudDialogflowCxV3ImportEntityTypesResponseConflictingResources
3573
+ # @private
3574
+ class Representation < Google::Apis::Core::JsonRepresentation
3575
+ collection :entity_display_names, as: 'entityDisplayNames'
3576
+ collection :entity_type_display_names, as: 'entityTypeDisplayNames'
3577
+ end
3578
+ end
3579
+
3482
3580
  class GoogleCloudDialogflowCxV3ImportFlowResponse
3483
3581
  # @private
3484
3582
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4303,6 +4401,21 @@ module Google
4303
4401
  end
4304
4402
  end
4305
4403
 
4404
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesMetadata
4405
+ # @private
4406
+ class Representation < Google::Apis::Core::JsonRepresentation
4407
+ end
4408
+ end
4409
+
4410
+ class GoogleCloudDialogflowCxV3beta1ExportEntityTypesResponse
4411
+ # @private
4412
+ class Representation < Google::Apis::Core::JsonRepresentation
4413
+ property :entity_types_content, as: 'entityTypesContent', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1InlineDestination::Representation
4414
+
4415
+ property :entity_types_uri, as: 'entityTypesUri'
4416
+ end
4417
+ end
4418
+
4306
4419
  class GoogleCloudDialogflowCxV3beta1ExportFlowResponse
4307
4420
  # @private
4308
4421
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4457,6 +4570,29 @@ module Google
4457
4570
  end
4458
4571
  end
4459
4572
 
4573
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesMetadata
4574
+ # @private
4575
+ class Representation < Google::Apis::Core::JsonRepresentation
4576
+ end
4577
+ end
4578
+
4579
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponse
4580
+ # @private
4581
+ class Representation < Google::Apis::Core::JsonRepresentation
4582
+ property :conflicting_resources, as: 'conflictingResources', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources::Representation
4583
+
4584
+ collection :entity_types, as: 'entityTypes'
4585
+ end
4586
+ end
4587
+
4588
+ class GoogleCloudDialogflowCxV3beta1ImportEntityTypesResponseConflictingResources
4589
+ # @private
4590
+ class Representation < Google::Apis::Core::JsonRepresentation
4591
+ collection :entity_display_names, as: 'entityDisplayNames'
4592
+ collection :entity_type_display_names, as: 'entityTypeDisplayNames'
4593
+ end
4594
+ end
4595
+
4460
4596
  class GoogleCloudDialogflowCxV3beta1ImportFlowResponse
4461
4597
  # @private
4462
4598
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5895,6 +6031,7 @@ module Google
5895
6031
  property :start_timestamp, as: 'startTimestamp'
5896
6032
  property :submit_timestamp, as: 'submitTimestamp'
5897
6033
  property :summary_text, as: 'summaryText'
6034
+ hash :text_sections, as: 'textSections'
5898
6035
  end
5899
6036
  end
5900
6037
 
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.79.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-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_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.79.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: []