Skip to content

Commit f5bd221

Browse files
feat: Automated regeneration of dialogflow v2beta1 client (googleapis#21478)
Auto-created at 2025-01-26 10:09:03 +0000 using the toys pull request generator.
1 parent aeb087c commit f5bd221

File tree

5 files changed

+26
-2
lines changed

5 files changed

+26
-2
lines changed

api_names_out.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177312,6 +177312,7 @@
177312177312
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3DataStoreConnection": google_cloud_dialogflow_cx_v3_data_store_connection
177313177313
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3DataStoreConnection/dataStore": data_store
177314177314
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3DataStoreConnection/dataStoreType": data_store_type
177315+
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3DataStoreConnection/documentProcessingMode": document_processing_mode
177315177316
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata": google_cloud_dialogflow_cx_v3_delete_document_operation_metadata
177316177317
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3DeleteDocumentOperationMetadata/genericMetadata": generic_metadata
177317177318
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3DeployFlowMetadata": google_cloud_dialogflow_cx_v3_deploy_flow_metadata
@@ -177799,6 +177800,7 @@
177799177800
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3beta1DataStoreConnection": google_cloud_dialogflow_cx_v3beta1_data_store_connection
177800177801
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3beta1DataStoreConnection/dataStore": data_store
177801177802
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3beta1DataStoreConnection/dataStoreType": data_store_type
177803+
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3beta1DataStoreConnection/documentProcessingMode": document_processing_mode
177802177804
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata": google_cloud_dialogflow_cx_v3beta1_delete_document_operation_metadata
177803177805
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3beta1DeleteDocumentOperationMetadata/genericMetadata": generic_metadata
177804177806
"/dialogflow:v2beta1/GoogleCloudDialogflowCxV3beta1DeployFlowMetadata": google_cloud_dialogflow_cx_v3beta1_deploy_flow_metadata

generated/google-apis-dialogflow_v2beta1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-dialogflow_v2beta1
22

3+
### v0.96.0 (2025-01-26)
4+
5+
* Regenerated from discovery document revision 20250121
6+
37
### v0.95.0 (2025-01-12)
48

59
* Regenerated from discovery document revision 20250103

generated/google-apis-dialogflow_v2beta1/lib/google/apis/dialogflow_v2beta1/classes.rb

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,13 @@ class GoogleCloudDialogflowCxV3DataStoreConnection
547547
# @return [String]
548548
attr_accessor :data_store_type
549549

550+
# The document processing mode for the data store connection. Should only be set
551+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
552+
# DOCUMENTS, as this is the legacy mode.
553+
# Corresponds to the JSON property `documentProcessingMode`
554+
# @return [String]
555+
attr_accessor :document_processing_mode
556+
550557
def initialize(**args)
551558
update!(**args)
552559
end
@@ -555,6 +562,7 @@ def initialize(**args)
555562
def update!(**args)
556563
@data_store = args[:data_store] if args.key?(:data_store)
557564
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
565+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
558566
end
559567
end
560568

@@ -4277,6 +4285,13 @@ class GoogleCloudDialogflowCxV3beta1DataStoreConnection
42774285
# @return [String]
42784286
attr_accessor :data_store_type
42794287

4288+
# The document processing mode for the data store connection. Should only be set
4289+
# for PUBLIC_WEB and UNSTRUCTURED data stores. If not set it is considered as
4290+
# DOCUMENTS, as this is the legacy mode.
4291+
# Corresponds to the JSON property `documentProcessingMode`
4292+
# @return [String]
4293+
attr_accessor :document_processing_mode
4294+
42804295
def initialize(**args)
42814296
update!(**args)
42824297
end
@@ -4285,6 +4300,7 @@ def initialize(**args)
42854300
def update!(**args)
42864301
@data_store = args[:data_store] if args.key?(:data_store)
42874302
@data_store_type = args[:data_store_type] if args.key?(:data_store_type)
4303+
@document_processing_mode = args[:document_processing_mode] if args.key?(:document_processing_mode)
42884304
end
42894305
end
42904306

generated/google-apis-dialogflow_v2beta1/lib/google/apis/dialogflow_v2beta1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DialogflowV2beta1
1818
# Version of the google-apis-dialogflow_v2beta1 gem
19-
GEM_VERSION = "0.95.0"
19+
GEM_VERSION = "0.96.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.16.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250103"
25+
REVISION = "20250121"
2626
end
2727
end
2828
end

generated/google-apis-dialogflow_v2beta1/lib/google/apis/dialogflow_v2beta1/representations.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3540,6 +3540,7 @@ class GoogleCloudDialogflowCxV3DataStoreConnection
35403540
class Representation < Google::Apis::Core::JsonRepresentation
35413541
property :data_store, as: 'dataStore'
35423542
property :data_store_type, as: 'dataStoreType'
3543+
property :document_processing_mode, as: 'documentProcessingMode'
35433544
end
35443545
end
35453546

@@ -4541,6 +4542,7 @@ class GoogleCloudDialogflowCxV3beta1DataStoreConnection
45414542
class Representation < Google::Apis::Core::JsonRepresentation
45424543
property :data_store, as: 'dataStore'
45434544
property :data_store_type, as: 'dataStoreType'
4545+
property :document_processing_mode, as: 'documentProcessingMode'
45444546
end
45454547
end
45464548

0 commit comments

Comments
 (0)