@google-cloud/discoveryengine 1.6.0 → 1.7.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.
Files changed (142) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/README.md +24 -0
  3. package/build/protos/google/cloud/discoveryengine/v1/common.proto +13 -1
  4. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +5 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +17 -0
  6. package/build/protos/google/cloud/discoveryengine/v1/document.proto +9 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/document_service.proto +6 -0
  8. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +2 -2
  9. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +284 -22
  10. package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +3 -0
  11. package/build/protos/google/cloud/discoveryengine/v1/recommendation_service.proto +228 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +125 -21
  13. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +16 -11
  14. package/build/protos/google/cloud/discoveryengine/v1alpha/answer.proto +328 -0
  15. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +41 -1
  16. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +21 -1
  17. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +574 -0
  18. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +19 -0
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +3 -6
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +64 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +2 -2
  22. package/build/protos/google/cloud/discoveryengine/v1alpha/grounded_generation_service.proto +120 -0
  23. package/build/protos/google/cloud/discoveryengine/v1alpha/grounding.proto +55 -0
  24. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +283 -24
  25. package/build/protos/google/cloud/discoveryengine/v1alpha/project.proto +102 -0
  26. package/build/protos/google/cloud/discoveryengine/v1alpha/project_service.proto +171 -0
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +21 -0
  28. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +158 -24
  29. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +9 -3
  30. package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config_service.proto +2 -1
  31. package/build/protos/google/cloud/discoveryengine/v1alpha/session.proto +94 -0
  32. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +1 -1
  33. package/build/protos/google/cloud/discoveryengine/v1beta/answer.proto +328 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +30 -1
  35. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +559 -0
  36. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +3 -6
  37. package/build/protos/google/cloud/discoveryengine/v1beta/document_service.proto +6 -0
  38. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +2 -2
  39. package/build/protos/google/cloud/discoveryengine/v1beta/engine_service.proto +93 -0
  40. package/build/protos/google/cloud/discoveryengine/v1beta/grounded_generation_service.proto +120 -0
  41. package/build/protos/google/cloud/discoveryengine/v1beta/grounding.proto +55 -0
  42. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +283 -24
  43. package/build/protos/google/cloud/discoveryengine/v1beta/rank_service.proto +115 -0
  44. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +142 -22
  45. package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +7 -1
  46. package/build/protos/google/cloud/discoveryengine/v1beta/session.proto +94 -0
  47. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +1 -1
  48. package/build/protos/protos.d.ts +44799 -26093
  49. package/build/protos/protos.js +120465 -74222
  50. package/build/protos/protos.json +8911 -4556
  51. package/build/src/index.d.ts +4 -1
  52. package/build/src/index.js +4 -1
  53. package/build/src/v1/conversational_search_service_client.d.ts +4 -0
  54. package/build/src/v1/document_service_client.d.ts +47 -19
  55. package/build/src/v1/index.d.ts +1 -0
  56. package/build/src/v1/index.js +3 -1
  57. package/build/src/v1/recommendation_service_client.d.ts +1087 -0
  58. package/build/src/v1/recommendation_service_client.js +1432 -0
  59. package/build/src/v1/recommendation_service_client_config.json +43 -0
  60. package/build/src/v1/search_service_client.d.ts +27 -9
  61. package/build/src/v1/search_service_client.js +18 -6
  62. package/build/src/v1/search_service_client_config.json +5 -5
  63. package/build/src/v1alpha/acl_config_service_client.d.ts +330 -0
  64. package/build/src/v1alpha/acl_config_service_client.js +454 -0
  65. package/build/src/v1alpha/chunk_service_client.d.ts +330 -0
  66. package/build/src/v1alpha/chunk_service_client.js +454 -0
  67. package/build/src/v1alpha/completion_service_client.d.ts +330 -0
  68. package/build/src/v1alpha/completion_service_client.js +457 -0
  69. package/build/src/v1alpha/conversational_search_service_client.d.ts +674 -0
  70. package/build/src/v1alpha/conversational_search_service_client.js +724 -0
  71. package/build/src/v1alpha/conversational_search_service_client_config.json +35 -0
  72. package/build/src/v1alpha/data_store_service_client.d.ts +330 -0
  73. package/build/src/v1alpha/data_store_service_client.js +457 -0
  74. package/build/src/v1alpha/document_service_client.d.ts +410 -21
  75. package/build/src/v1alpha/document_service_client.js +479 -0
  76. package/build/src/v1alpha/document_service_client_config.json +5 -0
  77. package/build/src/v1alpha/engine_service_client.d.ts +330 -0
  78. package/build/src/v1alpha/engine_service_client.js +457 -0
  79. package/build/src/v1alpha/estimate_billing_service_client.d.ts +330 -0
  80. package/build/src/v1alpha/estimate_billing_service_client.js +457 -0
  81. package/build/src/v1alpha/grounded_generation_service_client.d.ts +1574 -0
  82. package/build/src/v1alpha/grounded_generation_service_client.js +2248 -0
  83. package/build/src/v1alpha/grounded_generation_service_client_config.json +43 -0
  84. package/build/src/v1alpha/index.d.ts +3 -1
  85. package/build/src/v1alpha/index.js +7 -3
  86. package/build/src/v1alpha/project_service_client.d.ts +1756 -0
  87. package/build/src/v1alpha/project_service_client.js +2500 -0
  88. package/build/src/v1alpha/project_service_client_config.json +38 -0
  89. package/build/src/v1alpha/rank_service_client.d.ts +330 -0
  90. package/build/src/v1alpha/rank_service_client.js +454 -0
  91. package/build/src/v1alpha/rank_service_client_config.json +15 -2
  92. package/build/src/v1alpha/recommendation_service_client.d.ts +330 -0
  93. package/build/src/v1alpha/recommendation_service_client.js +454 -0
  94. package/build/src/v1alpha/schema_service_client.d.ts +330 -0
  95. package/build/src/v1alpha/schema_service_client.js +457 -0
  96. package/build/src/v1alpha/search_service_client.d.ts +360 -15
  97. package/build/src/v1alpha/search_service_client.js +474 -10
  98. package/build/src/v1alpha/search_service_client_config.json +5 -5
  99. package/build/src/v1alpha/search_tuning_service_client.d.ts +330 -0
  100. package/build/src/v1alpha/search_tuning_service_client.js +457 -0
  101. package/build/src/v1alpha/serving_config_service_client.d.ts +317 -1
  102. package/build/src/v1alpha/serving_config_service_client.js +434 -1
  103. package/build/src/v1alpha/site_search_engine_service_client.d.ts +330 -0
  104. package/build/src/v1alpha/site_search_engine_service_client.js +457 -0
  105. package/build/src/v1alpha/user_event_service_client.d.ts +330 -0
  106. package/build/src/v1alpha/user_event_service_client.js +457 -0
  107. package/build/src/v1beta/completion_service_client.d.ts +315 -0
  108. package/build/src/v1beta/completion_service_client.js +432 -0
  109. package/build/src/v1beta/conversational_search_service_client.d.ts +659 -0
  110. package/build/src/v1beta/conversational_search_service_client.js +702 -0
  111. package/build/src/v1beta/conversational_search_service_client_config.json +35 -0
  112. package/build/src/v1beta/data_store_service_client.d.ts +315 -0
  113. package/build/src/v1beta/data_store_service_client.js +432 -0
  114. package/build/src/v1beta/document_service_client.d.ts +361 -21
  115. package/build/src/v1beta/document_service_client.js +432 -0
  116. package/build/src/v1beta/engine_service_client.d.ts +410 -0
  117. package/build/src/v1beta/engine_service_client.js +518 -0
  118. package/build/src/v1beta/engine_service_client_config.json +12 -0
  119. package/build/src/v1beta/grounded_generation_service_client.d.ts +1406 -0
  120. package/build/src/v1beta/grounded_generation_service_client.js +2014 -0
  121. package/build/src/v1beta/grounded_generation_service_client_config.json +43 -0
  122. package/build/src/v1beta/index.d.ts +2 -0
  123. package/build/src/v1beta/index.js +5 -1
  124. package/build/src/v1beta/rank_service_client.d.ts +1416 -0
  125. package/build/src/v1beta/rank_service_client.js +2015 -0
  126. package/build/src/v1beta/rank_service_client_config.json +43 -0
  127. package/build/src/v1beta/recommendation_service_client.d.ts +315 -0
  128. package/build/src/v1beta/recommendation_service_client.js +432 -0
  129. package/build/src/v1beta/schema_service_client.d.ts +315 -0
  130. package/build/src/v1beta/schema_service_client.js +432 -0
  131. package/build/src/v1beta/search_service_client.d.ts +342 -12
  132. package/build/src/v1beta/search_service_client.js +450 -8
  133. package/build/src/v1beta/search_service_client_config.json +5 -5
  134. package/build/src/v1beta/search_tuning_service_client.d.ts +315 -0
  135. package/build/src/v1beta/search_tuning_service_client.js +432 -0
  136. package/build/src/v1beta/serving_config_service_client.d.ts +315 -0
  137. package/build/src/v1beta/serving_config_service_client.js +432 -0
  138. package/build/src/v1beta/site_search_engine_service_client.d.ts +315 -0
  139. package/build/src/v1beta/site_search_engine_service_client.js +432 -0
  140. package/build/src/v1beta/user_event_service_client.d.ts +315 -0
  141. package/build/src/v1beta/user_event_service_client.js +432 -0
  142. package/package.json +1 -1
@@ -744,6 +744,117 @@ export declare class UserEventServiceClient {
744
744
  * @returns {string} A string representing the serving_config.
745
745
  */
746
746
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
747
+ /**
748
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
749
+ *
750
+ * @param {string} project
751
+ * @param {string} location
752
+ * @param {string} collection
753
+ * @param {string} data_store
754
+ * @param {string} session
755
+ * @returns {string} Resource name string.
756
+ */
757
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
758
+ /**
759
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
760
+ *
761
+ * @param {string} projectLocationCollectionDataStoreSessionName
762
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
763
+ * @returns {string} A string representing the project.
764
+ */
765
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
766
+ /**
767
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
768
+ *
769
+ * @param {string} projectLocationCollectionDataStoreSessionName
770
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
771
+ * @returns {string} A string representing the location.
772
+ */
773
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
774
+ /**
775
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
776
+ *
777
+ * @param {string} projectLocationCollectionDataStoreSessionName
778
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
779
+ * @returns {string} A string representing the collection.
780
+ */
781
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
782
+ /**
783
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
784
+ *
785
+ * @param {string} projectLocationCollectionDataStoreSessionName
786
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
787
+ * @returns {string} A string representing the data_store.
788
+ */
789
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
790
+ /**
791
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
792
+ *
793
+ * @param {string} projectLocationCollectionDataStoreSessionName
794
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
795
+ * @returns {string} A string representing the session.
796
+ */
797
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
798
+ /**
799
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
800
+ *
801
+ * @param {string} project
802
+ * @param {string} location
803
+ * @param {string} collection
804
+ * @param {string} data_store
805
+ * @param {string} session
806
+ * @param {string} answer
807
+ * @returns {string} Resource name string.
808
+ */
809
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
810
+ /**
811
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
812
+ *
813
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
814
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
815
+ * @returns {string} A string representing the project.
816
+ */
817
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
818
+ /**
819
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
820
+ *
821
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
822
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
823
+ * @returns {string} A string representing the location.
824
+ */
825
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
826
+ /**
827
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
828
+ *
829
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
830
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
831
+ * @returns {string} A string representing the collection.
832
+ */
833
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
834
+ /**
835
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
836
+ *
837
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
838
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
839
+ * @returns {string} A string representing the data_store.
840
+ */
841
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
842
+ /**
843
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
844
+ *
845
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
846
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
847
+ * @returns {string} A string representing the session.
848
+ */
849
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
850
+ /**
851
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
852
+ *
853
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
854
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
855
+ * @returns {string} A string representing the answer.
856
+ */
857
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
747
858
  /**
748
859
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
749
860
  *
@@ -939,6 +1050,117 @@ export declare class UserEventServiceClient {
939
1050
  * @returns {string} A string representing the serving_config.
940
1051
  */
941
1052
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1053
+ /**
1054
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1055
+ *
1056
+ * @param {string} project
1057
+ * @param {string} location
1058
+ * @param {string} collection
1059
+ * @param {string} engine
1060
+ * @param {string} session
1061
+ * @returns {string} Resource name string.
1062
+ */
1063
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1064
+ /**
1065
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1066
+ *
1067
+ * @param {string} projectLocationCollectionEngineSessionName
1068
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1069
+ * @returns {string} A string representing the project.
1070
+ */
1071
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1072
+ /**
1073
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1074
+ *
1075
+ * @param {string} projectLocationCollectionEngineSessionName
1076
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1077
+ * @returns {string} A string representing the location.
1078
+ */
1079
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1080
+ /**
1081
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1082
+ *
1083
+ * @param {string} projectLocationCollectionEngineSessionName
1084
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1085
+ * @returns {string} A string representing the collection.
1086
+ */
1087
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1088
+ /**
1089
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1090
+ *
1091
+ * @param {string} projectLocationCollectionEngineSessionName
1092
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1093
+ * @returns {string} A string representing the engine.
1094
+ */
1095
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1096
+ /**
1097
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1098
+ *
1099
+ * @param {string} projectLocationCollectionEngineSessionName
1100
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1101
+ * @returns {string} A string representing the session.
1102
+ */
1103
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1104
+ /**
1105
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1106
+ *
1107
+ * @param {string} project
1108
+ * @param {string} location
1109
+ * @param {string} collection
1110
+ * @param {string} engine
1111
+ * @param {string} session
1112
+ * @param {string} answer
1113
+ * @returns {string} Resource name string.
1114
+ */
1115
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1116
+ /**
1117
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1118
+ *
1119
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1120
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1121
+ * @returns {string} A string representing the project.
1122
+ */
1123
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1124
+ /**
1125
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1126
+ *
1127
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1128
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1129
+ * @returns {string} A string representing the location.
1130
+ */
1131
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1132
+ /**
1133
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1134
+ *
1135
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1136
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1137
+ * @returns {string} A string representing the collection.
1138
+ */
1139
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1140
+ /**
1141
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1142
+ *
1143
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1144
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1145
+ * @returns {string} A string representing the engine.
1146
+ */
1147
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1148
+ /**
1149
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1150
+ *
1151
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1152
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1153
+ * @returns {string} A string representing the session.
1154
+ */
1155
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1156
+ /**
1157
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1158
+ *
1159
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1160
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1161
+ * @returns {string} A string representing the answer.
1162
+ */
1163
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
942
1164
  /**
943
1165
  * Return a fully-qualified projectLocationDataStore resource name string.
944
1166
  *
@@ -1182,6 +1404,99 @@ export declare class UserEventServiceClient {
1182
1404
  * @returns {string} A string representing the serving_config.
1183
1405
  */
1184
1406
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1407
+ /**
1408
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1409
+ *
1410
+ * @param {string} project
1411
+ * @param {string} location
1412
+ * @param {string} data_store
1413
+ * @param {string} session
1414
+ * @returns {string} Resource name string.
1415
+ */
1416
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1417
+ /**
1418
+ * Parse the project from ProjectLocationDataStoreSession resource.
1419
+ *
1420
+ * @param {string} projectLocationDataStoreSessionName
1421
+ * A fully-qualified path representing project_location_data_store_session resource.
1422
+ * @returns {string} A string representing the project.
1423
+ */
1424
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1425
+ /**
1426
+ * Parse the location from ProjectLocationDataStoreSession resource.
1427
+ *
1428
+ * @param {string} projectLocationDataStoreSessionName
1429
+ * A fully-qualified path representing project_location_data_store_session resource.
1430
+ * @returns {string} A string representing the location.
1431
+ */
1432
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1433
+ /**
1434
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1435
+ *
1436
+ * @param {string} projectLocationDataStoreSessionName
1437
+ * A fully-qualified path representing project_location_data_store_session resource.
1438
+ * @returns {string} A string representing the data_store.
1439
+ */
1440
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1441
+ /**
1442
+ * Parse the session from ProjectLocationDataStoreSession resource.
1443
+ *
1444
+ * @param {string} projectLocationDataStoreSessionName
1445
+ * A fully-qualified path representing project_location_data_store_session resource.
1446
+ * @returns {string} A string representing the session.
1447
+ */
1448
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1449
+ /**
1450
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1451
+ *
1452
+ * @param {string} project
1453
+ * @param {string} location
1454
+ * @param {string} data_store
1455
+ * @param {string} session
1456
+ * @param {string} answer
1457
+ * @returns {string} Resource name string.
1458
+ */
1459
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1460
+ /**
1461
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1462
+ *
1463
+ * @param {string} projectLocationDataStoreSessionAnswerName
1464
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1465
+ * @returns {string} A string representing the project.
1466
+ */
1467
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1468
+ /**
1469
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1470
+ *
1471
+ * @param {string} projectLocationDataStoreSessionAnswerName
1472
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1473
+ * @returns {string} A string representing the location.
1474
+ */
1475
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1476
+ /**
1477
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1478
+ *
1479
+ * @param {string} projectLocationDataStoreSessionAnswerName
1480
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1481
+ * @returns {string} A string representing the data_store.
1482
+ */
1483
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1484
+ /**
1485
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1486
+ *
1487
+ * @param {string} projectLocationDataStoreSessionAnswerName
1488
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1489
+ * @returns {string} A string representing the session.
1490
+ */
1491
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1492
+ /**
1493
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1494
+ *
1495
+ * @param {string} projectLocationDataStoreSessionAnswerName
1496
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1497
+ * @returns {string} A string representing the answer.
1498
+ */
1499
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1185
1500
  /**
1186
1501
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1187
1502
  *