@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
@@ -694,6 +694,117 @@ export declare class ServingConfigServiceClient {
694
694
  * @returns {string} A string representing the serving_config.
695
695
  */
696
696
  matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
697
+ /**
698
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
699
+ *
700
+ * @param {string} project
701
+ * @param {string} location
702
+ * @param {string} collection
703
+ * @param {string} data_store
704
+ * @param {string} session
705
+ * @returns {string} Resource name string.
706
+ */
707
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
708
+ /**
709
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
710
+ *
711
+ * @param {string} projectLocationCollectionDataStoreSessionName
712
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
713
+ * @returns {string} A string representing the project.
714
+ */
715
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
716
+ /**
717
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
718
+ *
719
+ * @param {string} projectLocationCollectionDataStoreSessionName
720
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
721
+ * @returns {string} A string representing the location.
722
+ */
723
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
724
+ /**
725
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
726
+ *
727
+ * @param {string} projectLocationCollectionDataStoreSessionName
728
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
729
+ * @returns {string} A string representing the collection.
730
+ */
731
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
732
+ /**
733
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
734
+ *
735
+ * @param {string} projectLocationCollectionDataStoreSessionName
736
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
737
+ * @returns {string} A string representing the data_store.
738
+ */
739
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
740
+ /**
741
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
742
+ *
743
+ * @param {string} projectLocationCollectionDataStoreSessionName
744
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
745
+ * @returns {string} A string representing the session.
746
+ */
747
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
748
+ /**
749
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
750
+ *
751
+ * @param {string} project
752
+ * @param {string} location
753
+ * @param {string} collection
754
+ * @param {string} data_store
755
+ * @param {string} session
756
+ * @param {string} answer
757
+ * @returns {string} Resource name string.
758
+ */
759
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
760
+ /**
761
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
762
+ *
763
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
764
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
765
+ * @returns {string} A string representing the project.
766
+ */
767
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
768
+ /**
769
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
770
+ *
771
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
772
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
773
+ * @returns {string} A string representing the location.
774
+ */
775
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
776
+ /**
777
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
778
+ *
779
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
780
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
781
+ * @returns {string} A string representing the collection.
782
+ */
783
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
784
+ /**
785
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
786
+ *
787
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
788
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
789
+ * @returns {string} A string representing the data_store.
790
+ */
791
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
792
+ /**
793
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
794
+ *
795
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
796
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
797
+ * @returns {string} A string representing the session.
798
+ */
799
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
800
+ /**
801
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
802
+ *
803
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
804
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
805
+ * @returns {string} A string representing the answer.
806
+ */
807
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
697
808
  /**
698
809
  * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
699
810
  *
@@ -889,6 +1000,117 @@ export declare class ServingConfigServiceClient {
889
1000
  * @returns {string} A string representing the serving_config.
890
1001
  */
891
1002
  matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1003
+ /**
1004
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1005
+ *
1006
+ * @param {string} project
1007
+ * @param {string} location
1008
+ * @param {string} collection
1009
+ * @param {string} engine
1010
+ * @param {string} session
1011
+ * @returns {string} Resource name string.
1012
+ */
1013
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1014
+ /**
1015
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1016
+ *
1017
+ * @param {string} projectLocationCollectionEngineSessionName
1018
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1019
+ * @returns {string} A string representing the project.
1020
+ */
1021
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1022
+ /**
1023
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1024
+ *
1025
+ * @param {string} projectLocationCollectionEngineSessionName
1026
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1027
+ * @returns {string} A string representing the location.
1028
+ */
1029
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1030
+ /**
1031
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1032
+ *
1033
+ * @param {string} projectLocationCollectionEngineSessionName
1034
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1035
+ * @returns {string} A string representing the collection.
1036
+ */
1037
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1038
+ /**
1039
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1040
+ *
1041
+ * @param {string} projectLocationCollectionEngineSessionName
1042
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1043
+ * @returns {string} A string representing the engine.
1044
+ */
1045
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1046
+ /**
1047
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1048
+ *
1049
+ * @param {string} projectLocationCollectionEngineSessionName
1050
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1051
+ * @returns {string} A string representing the session.
1052
+ */
1053
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1054
+ /**
1055
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1056
+ *
1057
+ * @param {string} project
1058
+ * @param {string} location
1059
+ * @param {string} collection
1060
+ * @param {string} engine
1061
+ * @param {string} session
1062
+ * @param {string} answer
1063
+ * @returns {string} Resource name string.
1064
+ */
1065
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1066
+ /**
1067
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1068
+ *
1069
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1070
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1071
+ * @returns {string} A string representing the project.
1072
+ */
1073
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1074
+ /**
1075
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1076
+ *
1077
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1078
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1079
+ * @returns {string} A string representing the location.
1080
+ */
1081
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1082
+ /**
1083
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1084
+ *
1085
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1086
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1087
+ * @returns {string} A string representing the collection.
1088
+ */
1089
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1090
+ /**
1091
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1092
+ *
1093
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1094
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1095
+ * @returns {string} A string representing the engine.
1096
+ */
1097
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1098
+ /**
1099
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1100
+ *
1101
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1102
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1103
+ * @returns {string} A string representing the session.
1104
+ */
1105
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1106
+ /**
1107
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1108
+ *
1109
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1110
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1111
+ * @returns {string} A string representing the answer.
1112
+ */
1113
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
892
1114
  /**
893
1115
  * Return a fully-qualified projectLocationDataStore resource name string.
894
1116
  *
@@ -1132,6 +1354,99 @@ export declare class ServingConfigServiceClient {
1132
1354
  * @returns {string} A string representing the serving_config.
1133
1355
  */
1134
1356
  matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1357
+ /**
1358
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1359
+ *
1360
+ * @param {string} project
1361
+ * @param {string} location
1362
+ * @param {string} data_store
1363
+ * @param {string} session
1364
+ * @returns {string} Resource name string.
1365
+ */
1366
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1367
+ /**
1368
+ * Parse the project from ProjectLocationDataStoreSession resource.
1369
+ *
1370
+ * @param {string} projectLocationDataStoreSessionName
1371
+ * A fully-qualified path representing project_location_data_store_session resource.
1372
+ * @returns {string} A string representing the project.
1373
+ */
1374
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1375
+ /**
1376
+ * Parse the location from ProjectLocationDataStoreSession resource.
1377
+ *
1378
+ * @param {string} projectLocationDataStoreSessionName
1379
+ * A fully-qualified path representing project_location_data_store_session resource.
1380
+ * @returns {string} A string representing the location.
1381
+ */
1382
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1383
+ /**
1384
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1385
+ *
1386
+ * @param {string} projectLocationDataStoreSessionName
1387
+ * A fully-qualified path representing project_location_data_store_session resource.
1388
+ * @returns {string} A string representing the data_store.
1389
+ */
1390
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1391
+ /**
1392
+ * Parse the session from ProjectLocationDataStoreSession resource.
1393
+ *
1394
+ * @param {string} projectLocationDataStoreSessionName
1395
+ * A fully-qualified path representing project_location_data_store_session resource.
1396
+ * @returns {string} A string representing the session.
1397
+ */
1398
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1399
+ /**
1400
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1401
+ *
1402
+ * @param {string} project
1403
+ * @param {string} location
1404
+ * @param {string} data_store
1405
+ * @param {string} session
1406
+ * @param {string} answer
1407
+ * @returns {string} Resource name string.
1408
+ */
1409
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1410
+ /**
1411
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1412
+ *
1413
+ * @param {string} projectLocationDataStoreSessionAnswerName
1414
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1415
+ * @returns {string} A string representing the project.
1416
+ */
1417
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1418
+ /**
1419
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1420
+ *
1421
+ * @param {string} projectLocationDataStoreSessionAnswerName
1422
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1423
+ * @returns {string} A string representing the location.
1424
+ */
1425
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1426
+ /**
1427
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1428
+ *
1429
+ * @param {string} projectLocationDataStoreSessionAnswerName
1430
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1431
+ * @returns {string} A string representing the data_store.
1432
+ */
1433
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1434
+ /**
1435
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1436
+ *
1437
+ * @param {string} projectLocationDataStoreSessionAnswerName
1438
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1439
+ * @returns {string} A string representing the session.
1440
+ */
1441
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1442
+ /**
1443
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1444
+ *
1445
+ * @param {string} projectLocationDataStoreSessionAnswerName
1446
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1447
+ * @returns {string} A string representing the answer.
1448
+ */
1449
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1135
1450
  /**
1136
1451
  * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1137
1452
  *