@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
@@ -418,6 +418,21 @@ export declare class EstimateBillingServiceClient {
418
418
  * @returns {string} A string representing the location.
419
419
  */
420
420
  matchLocationFromLocationName(locationName: string): string | number;
421
+ /**
422
+ * Return a fully-qualified project resource name string.
423
+ *
424
+ * @param {string} project
425
+ * @returns {string} Resource name string.
426
+ */
427
+ projectPath(project: string): string;
428
+ /**
429
+ * Parse the project from Project resource.
430
+ *
431
+ * @param {string} projectName
432
+ * A fully-qualified path representing Project resource.
433
+ * @returns {string} A string representing the project.
434
+ */
435
+ matchProjectFromProjectName(projectName: string): string | number;
421
436
  /**
422
437
  * Return a fully-qualified projectLocationCollectionDataStore resource name string.
423
438
  *
@@ -784,6 +799,117 @@ export declare class EstimateBillingServiceClient {
784
799
  * @returns {string} A string representing the serving_config.
785
800
  */
786
801
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
802
+ /**
803
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
804
+ *
805
+ * @param {string} project
806
+ * @param {string} location
807
+ * @param {string} collection
808
+ * @param {string} data_store
809
+ * @param {string} session
810
+ * @returns {string} Resource name string.
811
+ */
812
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
813
+ /**
814
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
815
+ *
816
+ * @param {string} projectLocationCollectionDataStoreSessionName
817
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
818
+ * @returns {string} A string representing the project.
819
+ */
820
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
821
+ /**
822
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
823
+ *
824
+ * @param {string} projectLocationCollectionDataStoreSessionName
825
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
826
+ * @returns {string} A string representing the location.
827
+ */
828
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
829
+ /**
830
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
831
+ *
832
+ * @param {string} projectLocationCollectionDataStoreSessionName
833
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
834
+ * @returns {string} A string representing the collection.
835
+ */
836
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
837
+ /**
838
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
839
+ *
840
+ * @param {string} projectLocationCollectionDataStoreSessionName
841
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
842
+ * @returns {string} A string representing the data_store.
843
+ */
844
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
845
+ /**
846
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
847
+ *
848
+ * @param {string} projectLocationCollectionDataStoreSessionName
849
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
850
+ * @returns {string} A string representing the session.
851
+ */
852
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
853
+ /**
854
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
855
+ *
856
+ * @param {string} project
857
+ * @param {string} location
858
+ * @param {string} collection
859
+ * @param {string} data_store
860
+ * @param {string} session
861
+ * @param {string} answer
862
+ * @returns {string} Resource name string.
863
+ */
864
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
865
+ /**
866
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
867
+ *
868
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
869
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
870
+ * @returns {string} A string representing the project.
871
+ */
872
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
873
+ /**
874
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
875
+ *
876
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
877
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
878
+ * @returns {string} A string representing the location.
879
+ */
880
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
881
+ /**
882
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
883
+ *
884
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
885
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
886
+ * @returns {string} A string representing the collection.
887
+ */
888
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
889
+ /**
890
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
891
+ *
892
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
893
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
894
+ * @returns {string} A string representing the data_store.
895
+ */
896
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
897
+ /**
898
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
899
+ *
900
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
901
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
902
+ * @returns {string} A string representing the session.
903
+ */
904
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
905
+ /**
906
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
907
+ *
908
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
909
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
910
+ * @returns {string} A string representing the answer.
911
+ */
912
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
787
913
  /**
788
914
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
789
915
  *
@@ -979,6 +1105,117 @@ export declare class EstimateBillingServiceClient {
979
1105
  * @returns {string} A string representing the serving_config.
980
1106
  */
981
1107
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1108
+ /**
1109
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1110
+ *
1111
+ * @param {string} project
1112
+ * @param {string} location
1113
+ * @param {string} collection
1114
+ * @param {string} engine
1115
+ * @param {string} session
1116
+ * @returns {string} Resource name string.
1117
+ */
1118
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1119
+ /**
1120
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1121
+ *
1122
+ * @param {string} projectLocationCollectionEngineSessionName
1123
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1124
+ * @returns {string} A string representing the project.
1125
+ */
1126
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1127
+ /**
1128
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1129
+ *
1130
+ * @param {string} projectLocationCollectionEngineSessionName
1131
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1132
+ * @returns {string} A string representing the location.
1133
+ */
1134
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1135
+ /**
1136
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1137
+ *
1138
+ * @param {string} projectLocationCollectionEngineSessionName
1139
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1140
+ * @returns {string} A string representing the collection.
1141
+ */
1142
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1143
+ /**
1144
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1145
+ *
1146
+ * @param {string} projectLocationCollectionEngineSessionName
1147
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1148
+ * @returns {string} A string representing the engine.
1149
+ */
1150
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1151
+ /**
1152
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1153
+ *
1154
+ * @param {string} projectLocationCollectionEngineSessionName
1155
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1156
+ * @returns {string} A string representing the session.
1157
+ */
1158
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1159
+ /**
1160
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1161
+ *
1162
+ * @param {string} project
1163
+ * @param {string} location
1164
+ * @param {string} collection
1165
+ * @param {string} engine
1166
+ * @param {string} session
1167
+ * @param {string} answer
1168
+ * @returns {string} Resource name string.
1169
+ */
1170
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1171
+ /**
1172
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1173
+ *
1174
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1175
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1176
+ * @returns {string} A string representing the project.
1177
+ */
1178
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1179
+ /**
1180
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1181
+ *
1182
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1183
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1184
+ * @returns {string} A string representing the location.
1185
+ */
1186
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1187
+ /**
1188
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1189
+ *
1190
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1191
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1192
+ * @returns {string} A string representing the collection.
1193
+ */
1194
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1195
+ /**
1196
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1197
+ *
1198
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1199
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1200
+ * @returns {string} A string representing the engine.
1201
+ */
1202
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1203
+ /**
1204
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1205
+ *
1206
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1207
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1208
+ * @returns {string} A string representing the session.
1209
+ */
1210
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1211
+ /**
1212
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1213
+ *
1214
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1215
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1216
+ * @returns {string} A string representing the answer.
1217
+ */
1218
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
982
1219
  /**
983
1220
  * Return a fully-qualified projectLocationDataStore resource name string.
984
1221
  *
@@ -1282,6 +1519,99 @@ export declare class EstimateBillingServiceClient {
1282
1519
  * @returns {string} A string representing the serving_config.
1283
1520
  */
1284
1521
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1522
+ /**
1523
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1524
+ *
1525
+ * @param {string} project
1526
+ * @param {string} location
1527
+ * @param {string} data_store
1528
+ * @param {string} session
1529
+ * @returns {string} Resource name string.
1530
+ */
1531
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1532
+ /**
1533
+ * Parse the project from ProjectLocationDataStoreSession resource.
1534
+ *
1535
+ * @param {string} projectLocationDataStoreSessionName
1536
+ * A fully-qualified path representing project_location_data_store_session resource.
1537
+ * @returns {string} A string representing the project.
1538
+ */
1539
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1540
+ /**
1541
+ * Parse the location from ProjectLocationDataStoreSession resource.
1542
+ *
1543
+ * @param {string} projectLocationDataStoreSessionName
1544
+ * A fully-qualified path representing project_location_data_store_session resource.
1545
+ * @returns {string} A string representing the location.
1546
+ */
1547
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1548
+ /**
1549
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1550
+ *
1551
+ * @param {string} projectLocationDataStoreSessionName
1552
+ * A fully-qualified path representing project_location_data_store_session resource.
1553
+ * @returns {string} A string representing the data_store.
1554
+ */
1555
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1556
+ /**
1557
+ * Parse the session from ProjectLocationDataStoreSession resource.
1558
+ *
1559
+ * @param {string} projectLocationDataStoreSessionName
1560
+ * A fully-qualified path representing project_location_data_store_session resource.
1561
+ * @returns {string} A string representing the session.
1562
+ */
1563
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1564
+ /**
1565
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1566
+ *
1567
+ * @param {string} project
1568
+ * @param {string} location
1569
+ * @param {string} data_store
1570
+ * @param {string} session
1571
+ * @param {string} answer
1572
+ * @returns {string} Resource name string.
1573
+ */
1574
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1575
+ /**
1576
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1577
+ *
1578
+ * @param {string} projectLocationDataStoreSessionAnswerName
1579
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1580
+ * @returns {string} A string representing the project.
1581
+ */
1582
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1583
+ /**
1584
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1585
+ *
1586
+ * @param {string} projectLocationDataStoreSessionAnswerName
1587
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1588
+ * @returns {string} A string representing the location.
1589
+ */
1590
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1591
+ /**
1592
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1593
+ *
1594
+ * @param {string} projectLocationDataStoreSessionAnswerName
1595
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1596
+ * @returns {string} A string representing the data_store.
1597
+ */
1598
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1599
+ /**
1600
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1601
+ *
1602
+ * @param {string} projectLocationDataStoreSessionAnswerName
1603
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1604
+ * @returns {string} A string representing the session.
1605
+ */
1606
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1607
+ /**
1608
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1609
+ *
1610
+ * @param {string} projectLocationDataStoreSessionAnswerName
1611
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1612
+ * @returns {string} A string representing the answer.
1613
+ */
1614
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1285
1615
  /**
1286
1616
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1287
1617
  *