@google-cloud/discoveryengine 1.3.0 → 1.4.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 (131) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/README.md +63 -0
  3. package/build/protos/google/cloud/discoveryengine/v1/common.proto +54 -3
  4. package/build/protos/google/cloud/discoveryengine/v1/completion.proto +52 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/completion_service.proto +51 -4
  6. package/build/protos/google/cloud/discoveryengine/v1/conversation.proto +3 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +40 -1
  8. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +98 -0
  9. package/build/protos/google/cloud/discoveryengine/v1/data_store_service.proto +304 -0
  10. package/build/protos/google/cloud/discoveryengine/v1/document.proto +1 -1
  11. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +215 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/engine_service.proto +242 -0
  13. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +64 -0
  14. package/build/protos/google/cloud/discoveryengine/v1/purge_config.proto +38 -0
  15. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +137 -4
  16. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine.proto +170 -0
  17. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine_service.proto +691 -0
  18. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +3 -3
  19. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +0 -5
  20. package/build/protos/google/cloud/discoveryengine/v1alpha/conversation.proto +3 -0
  21. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +39 -0
  22. package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +1 -1
  23. package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +1 -1
  24. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +97 -0
  25. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +147 -0
  26. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +164 -0
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +540 -0
  28. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +59 -8
  29. package/build/protos/google/cloud/discoveryengine/v1beta/completion.proto +52 -0
  30. package/build/protos/google/cloud/discoveryengine/v1beta/completion_service.proto +51 -4
  31. package/build/protos/google/cloud/discoveryengine/v1beta/conversation.proto +3 -0
  32. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +40 -1
  33. package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +98 -0
  34. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +306 -0
  35. package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +1 -1
  36. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +220 -0
  37. package/build/protos/google/cloud/discoveryengine/v1beta/engine_service.proto +244 -0
  38. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +64 -0
  39. package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +38 -0
  40. package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +26 -3
  41. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +150 -11
  42. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +264 -0
  43. package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +147 -0
  44. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine.proto +170 -0
  45. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine_service.proto +695 -0
  46. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +4 -3
  47. package/build/protos/protos.d.ts +42822 -21397
  48. package/build/protos/protos.js +110509 -61572
  49. package/build/protos/protos.json +11779 -6752
  50. package/build/src/index.d.ts +10 -1
  51. package/build/src/index.js +11 -2
  52. package/build/src/v1/completion_service_client.d.ts +489 -7
  53. package/build/src/v1/completion_service_client.js +716 -12
  54. package/build/src/v1/completion_service_client_config.json +10 -0
  55. package/build/src/v1/conversational_search_service_client.d.ts +341 -3
  56. package/build/src/v1/conversational_search_service_client.js +467 -10
  57. package/build/src/v1/data_store_service_client.d.ts +1286 -0
  58. package/build/src/v1/data_store_service_client.js +1768 -0
  59. package/build/src/v1/data_store_service_client_config.json +46 -0
  60. package/build/src/v1/document_service_client.d.ts +347 -2
  61. package/build/src/v1/document_service_client.js +507 -10
  62. package/build/src/v1/engine_service_client.d.ts +1211 -0
  63. package/build/src/v1/engine_service_client.js +1731 -0
  64. package/build/src/v1/engine_service_client_config.json +46 -0
  65. package/build/src/v1/index.d.ts +3 -0
  66. package/build/src/v1/index.js +8 -2
  67. package/build/src/v1/schema_service_client.d.ts +272 -2
  68. package/build/src/v1/schema_service_client.js +403 -10
  69. package/build/src/v1/search_service_client.d.ts +515 -11
  70. package/build/src/v1/search_service_client.js +649 -16
  71. package/build/src/v1/site_search_engine_service_client.d.ts +1564 -0
  72. package/build/src/v1/site_search_engine_service_client.js +2075 -0
  73. package/build/src/v1/site_search_engine_service_client_config.json +74 -0
  74. package/build/src/v1/user_event_service_client.d.ts +272 -2
  75. package/build/src/v1/user_event_service_client.js +403 -10
  76. package/build/src/v1alpha/completion_service_client.d.ts +230 -2
  77. package/build/src/v1alpha/completion_service_client.js +339 -10
  78. package/build/src/v1alpha/conversational_search_service_client.d.ts +247 -2
  79. package/build/src/v1alpha/conversational_search_service_client.js +339 -10
  80. package/build/src/v1alpha/data_store_service_client.d.ts +230 -2
  81. package/build/src/v1alpha/data_store_service_client.js +347 -12
  82. package/build/src/v1alpha/document_service_client.d.ts +230 -2
  83. package/build/src/v1alpha/document_service_client.js +347 -12
  84. package/build/src/v1alpha/engine_service_client.d.ts +231 -3
  85. package/build/src/v1alpha/engine_service_client.js +347 -12
  86. package/build/src/v1alpha/index.d.ts +1 -0
  87. package/build/src/v1alpha/index.js +4 -2
  88. package/build/src/v1alpha/recommendation_service_client.d.ts +230 -2
  89. package/build/src/v1alpha/recommendation_service_client.js +339 -10
  90. package/build/src/v1alpha/schema_service_client.d.ts +230 -2
  91. package/build/src/v1alpha/schema_service_client.js +347 -12
  92. package/build/src/v1alpha/search_service_client.d.ts +269 -2
  93. package/build/src/v1alpha/search_service_client.js +365 -10
  94. package/build/src/v1alpha/search_tuning_service_client.d.ts +977 -0
  95. package/build/src/v1alpha/search_tuning_service_client.js +1479 -0
  96. package/build/src/v1alpha/search_tuning_service_client_config.json +30 -0
  97. package/build/src/v1alpha/site_search_engine_service_client.d.ts +750 -3
  98. package/build/src/v1alpha/site_search_engine_service_client.js +838 -14
  99. package/build/src/v1alpha/site_search_engine_service_client_config.json +44 -0
  100. package/build/src/v1alpha/user_event_service_client.d.ts +230 -2
  101. package/build/src/v1alpha/user_event_service_client.js +347 -12
  102. package/build/src/v1beta/completion_service_client.d.ts +633 -7
  103. package/build/src/v1beta/completion_service_client.js +912 -12
  104. package/build/src/v1beta/completion_service_client_config.json +10 -0
  105. package/build/src/v1beta/conversational_search_service_client.d.ts +341 -3
  106. package/build/src/v1beta/conversational_search_service_client.js +467 -10
  107. package/build/src/v1beta/data_store_service_client.d.ts +1433 -0
  108. package/build/src/v1beta/data_store_service_client.js +1966 -0
  109. package/build/src/v1beta/data_store_service_client_config.json +46 -0
  110. package/build/src/v1beta/document_service_client.d.ts +491 -2
  111. package/build/src/v1beta/document_service_client.js +707 -12
  112. package/build/src/v1beta/engine_service_client.d.ts +1357 -0
  113. package/build/src/v1beta/engine_service_client.js +1928 -0
  114. package/build/src/v1beta/engine_service_client_config.json +46 -0
  115. package/build/src/v1beta/index.d.ts +4 -0
  116. package/build/src/v1beta/index.js +10 -2
  117. package/build/src/v1beta/recommendation_service_client.d.ts +420 -5
  118. package/build/src/v1beta/recommendation_service_client.js +571 -10
  119. package/build/src/v1beta/schema_service_client.d.ts +416 -2
  120. package/build/src/v1beta/schema_service_client.js +603 -12
  121. package/build/src/v1beta/search_service_client.d.ts +539 -29
  122. package/build/src/v1beta/search_service_client.js +665 -28
  123. package/build/src/v1beta/serving_config_service_client.d.ts +1102 -0
  124. package/build/src/v1beta/serving_config_service_client.js +1563 -0
  125. package/build/src/v1beta/serving_config_service_client_config.json +38 -0
  126. package/build/src/v1beta/site_search_engine_service_client.d.ts +1712 -0
  127. package/build/src/v1beta/site_search_engine_service_client.js +2271 -0
  128. package/build/src/v1beta/site_search_engine_service_client_config.json +74 -0
  129. package/build/src/v1beta/user_event_service_client.d.ts +416 -2
  130. package/build/src/v1beta/user_event_service_client.js +603 -12
  131. package/package.json +3 -3
@@ -0,0 +1,46 @@
1
+ {
2
+ "interfaces": {
3
+ "google.cloud.discoveryengine.v1.DataStoreService": {
4
+ "retry_codes": {
5
+ "non_idempotent": [],
6
+ "idempotent": [
7
+ "DEADLINE_EXCEEDED",
8
+ "UNAVAILABLE"
9
+ ]
10
+ },
11
+ "retry_params": {
12
+ "default": {
13
+ "initial_retry_delay_millis": 100,
14
+ "retry_delay_multiplier": 1.3,
15
+ "max_retry_delay_millis": 60000,
16
+ "initial_rpc_timeout_millis": 60000,
17
+ "rpc_timeout_multiplier": 1,
18
+ "max_rpc_timeout_millis": 60000,
19
+ "total_timeout_millis": 600000
20
+ }
21
+ },
22
+ "methods": {
23
+ "CreateDataStore": {
24
+ "retry_codes_name": "non_idempotent",
25
+ "retry_params_name": "default"
26
+ },
27
+ "GetDataStore": {
28
+ "retry_codes_name": "non_idempotent",
29
+ "retry_params_name": "default"
30
+ },
31
+ "ListDataStores": {
32
+ "retry_codes_name": "non_idempotent",
33
+ "retry_params_name": "default"
34
+ },
35
+ "DeleteDataStore": {
36
+ "retry_codes_name": "non_idempotent",
37
+ "retry_params_name": "default"
38
+ },
39
+ "UpdateDataStore": {
40
+ "retry_codes_name": "non_idempotent",
41
+ "retry_params_name": "default"
42
+ }
43
+ }
44
+ }
45
+ }
46
+ }
@@ -17,6 +17,8 @@ export declare class DocumentServiceClient {
17
17
  private _gaxGrpc;
18
18
  private _protos;
19
19
  private _defaults;
20
+ private _universeDomain;
21
+ private _servicePath;
20
22
  auth: gax.GoogleAuth;
21
23
  descriptors: Descriptors;
22
24
  warn: (code: string, message: string, warnType?: string) => void;
@@ -87,15 +89,22 @@ export declare class DocumentServiceClient {
87
89
  }>;
88
90
  /**
89
91
  * The DNS address for this API service.
92
+ * @deprecated Use the apiEndpoint method of the client instance.
90
93
  * @returns {string} The DNS address for this service.
91
94
  */
92
95
  static get servicePath(): string;
93
96
  /**
94
- * The DNS address for this API service - same as servicePath(),
95
- * exists for compatibility reasons.
97
+ * The DNS address for this API service - same as servicePath.
98
+ * @deprecated Use the apiEndpoint method of the client instance.
96
99
  * @returns {string} The DNS address for this service.
97
100
  */
98
101
  static get apiEndpoint(): string;
102
+ /**
103
+ * The DNS address for this API service.
104
+ * @returns {string} The DNS address for this service.
105
+ */
106
+ get apiEndpoint(): string;
107
+ get universeDomain(): string;
99
108
  /**
100
109
  * The port for this API service.
101
110
  * @returns {number} The default port for this service.
@@ -731,6 +740,90 @@ export declare class DocumentServiceClient {
731
740
  * ```
732
741
  */
733
742
  deleteOperation(request: protos.google.longrunning.DeleteOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.protobuf.Empty, protos.google.longrunning.DeleteOperationRequest, {} | null | undefined>): Promise<protos.google.protobuf.Empty>;
743
+ /**
744
+ * Return a fully-qualified engine resource name string.
745
+ *
746
+ * @param {string} project
747
+ * @param {string} location
748
+ * @param {string} collection
749
+ * @param {string} engine
750
+ * @returns {string} Resource name string.
751
+ */
752
+ enginePath(project: string, location: string, collection: string, engine: string): string;
753
+ /**
754
+ * Parse the project from Engine resource.
755
+ *
756
+ * @param {string} engineName
757
+ * A fully-qualified path representing Engine resource.
758
+ * @returns {string} A string representing the project.
759
+ */
760
+ matchProjectFromEngineName(engineName: string): string | number;
761
+ /**
762
+ * Parse the location from Engine resource.
763
+ *
764
+ * @param {string} engineName
765
+ * A fully-qualified path representing Engine resource.
766
+ * @returns {string} A string representing the location.
767
+ */
768
+ matchLocationFromEngineName(engineName: string): string | number;
769
+ /**
770
+ * Parse the collection from Engine resource.
771
+ *
772
+ * @param {string} engineName
773
+ * A fully-qualified path representing Engine resource.
774
+ * @returns {string} A string representing the collection.
775
+ */
776
+ matchCollectionFromEngineName(engineName: string): string | number;
777
+ /**
778
+ * Parse the engine from Engine resource.
779
+ *
780
+ * @param {string} engineName
781
+ * A fully-qualified path representing Engine resource.
782
+ * @returns {string} A string representing the engine.
783
+ */
784
+ matchEngineFromEngineName(engineName: string): string | number;
785
+ /**
786
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
787
+ *
788
+ * @param {string} project
789
+ * @param {string} location
790
+ * @param {string} collection
791
+ * @param {string} data_store
792
+ * @returns {string} Resource name string.
793
+ */
794
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
795
+ /**
796
+ * Parse the project from ProjectLocationCollectionDataStore resource.
797
+ *
798
+ * @param {string} projectLocationCollectionDataStoreName
799
+ * A fully-qualified path representing project_location_collection_data_store resource.
800
+ * @returns {string} A string representing the project.
801
+ */
802
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
803
+ /**
804
+ * Parse the location from ProjectLocationCollectionDataStore resource.
805
+ *
806
+ * @param {string} projectLocationCollectionDataStoreName
807
+ * A fully-qualified path representing project_location_collection_data_store resource.
808
+ * @returns {string} A string representing the location.
809
+ */
810
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
811
+ /**
812
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
813
+ *
814
+ * @param {string} projectLocationCollectionDataStoreName
815
+ * A fully-qualified path representing project_location_collection_data_store resource.
816
+ * @returns {string} A string representing the collection.
817
+ */
818
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
819
+ /**
820
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
821
+ *
822
+ * @param {string} projectLocationCollectionDataStoreName
823
+ * A fully-qualified path representing project_location_collection_data_store resource.
824
+ * @returns {string} A string representing the data_store.
825
+ */
826
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
734
827
  /**
735
828
  * Return a fully-qualified projectLocationCollectionDataStoreBranch resource name string.
736
829
  *
@@ -944,6 +1037,183 @@ export declare class DocumentServiceClient {
944
1037
  * @returns {string} A string representing the schema.
945
1038
  */
946
1039
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
1040
+ /**
1041
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
1042
+ *
1043
+ * @param {string} project
1044
+ * @param {string} location
1045
+ * @param {string} collection
1046
+ * @param {string} data_store
1047
+ * @returns {string} Resource name string.
1048
+ */
1049
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
1050
+ /**
1051
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1052
+ *
1053
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1054
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1055
+ * @returns {string} A string representing the project.
1056
+ */
1057
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1058
+ /**
1059
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1060
+ *
1061
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1062
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1063
+ * @returns {string} A string representing the location.
1064
+ */
1065
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1066
+ /**
1067
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1068
+ *
1069
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1070
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1071
+ * @returns {string} A string representing the collection.
1072
+ */
1073
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1074
+ /**
1075
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1076
+ *
1077
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1078
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1079
+ * @returns {string} A string representing the data_store.
1080
+ */
1081
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1082
+ /**
1083
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
1084
+ *
1085
+ * @param {string} project
1086
+ * @param {string} location
1087
+ * @param {string} collection
1088
+ * @param {string} data_store
1089
+ * @param {string} target_site
1090
+ * @returns {string} Resource name string.
1091
+ */
1092
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
1093
+ /**
1094
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1095
+ *
1096
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1097
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1098
+ * @returns {string} A string representing the project.
1099
+ */
1100
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1101
+ /**
1102
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1103
+ *
1104
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1105
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1106
+ * @returns {string} A string representing the location.
1107
+ */
1108
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1109
+ /**
1110
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1111
+ *
1112
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1113
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1114
+ * @returns {string} A string representing the collection.
1115
+ */
1116
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1117
+ /**
1118
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1119
+ *
1120
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1121
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1122
+ * @returns {string} A string representing the data_store.
1123
+ */
1124
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1125
+ /**
1126
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1127
+ *
1128
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1129
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1130
+ * @returns {string} A string representing the target_site.
1131
+ */
1132
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1133
+ /**
1134
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
1135
+ *
1136
+ * @param {string} project
1137
+ * @param {string} location
1138
+ * @param {string} collection
1139
+ * @param {string} engine
1140
+ * @param {string} conversation
1141
+ * @returns {string} Resource name string.
1142
+ */
1143
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
1144
+ /**
1145
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
1146
+ *
1147
+ * @param {string} projectLocationCollectionEngineConversationName
1148
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1149
+ * @returns {string} A string representing the project.
1150
+ */
1151
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1152
+ /**
1153
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
1154
+ *
1155
+ * @param {string} projectLocationCollectionEngineConversationName
1156
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1157
+ * @returns {string} A string representing the location.
1158
+ */
1159
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1160
+ /**
1161
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
1162
+ *
1163
+ * @param {string} projectLocationCollectionEngineConversationName
1164
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1165
+ * @returns {string} A string representing the collection.
1166
+ */
1167
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1168
+ /**
1169
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
1170
+ *
1171
+ * @param {string} projectLocationCollectionEngineConversationName
1172
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1173
+ * @returns {string} A string representing the engine.
1174
+ */
1175
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1176
+ /**
1177
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
1178
+ *
1179
+ * @param {string} projectLocationCollectionEngineConversationName
1180
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1181
+ * @returns {string} A string representing the conversation.
1182
+ */
1183
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1184
+ /**
1185
+ * Return a fully-qualified projectLocationDataStore resource name string.
1186
+ *
1187
+ * @param {string} project
1188
+ * @param {string} location
1189
+ * @param {string} data_store
1190
+ * @returns {string} Resource name string.
1191
+ */
1192
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
1193
+ /**
1194
+ * Parse the project from ProjectLocationDataStore resource.
1195
+ *
1196
+ * @param {string} projectLocationDataStoreName
1197
+ * A fully-qualified path representing project_location_data_store resource.
1198
+ * @returns {string} A string representing the project.
1199
+ */
1200
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1201
+ /**
1202
+ * Parse the location from ProjectLocationDataStore resource.
1203
+ *
1204
+ * @param {string} projectLocationDataStoreName
1205
+ * A fully-qualified path representing project_location_data_store resource.
1206
+ * @returns {string} A string representing the location.
1207
+ */
1208
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1209
+ /**
1210
+ * Parse the data_store from ProjectLocationDataStore resource.
1211
+ *
1212
+ * @param {string} projectLocationDataStoreName
1213
+ * A fully-qualified path representing project_location_data_store resource.
1214
+ * @returns {string} A string representing the data_store.
1215
+ */
1216
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
947
1217
  /**
948
1218
  * Return a fully-qualified projectLocationDataStoreBranch resource name string.
949
1219
  *
@@ -1121,6 +1391,81 @@ export declare class DocumentServiceClient {
1121
1391
  * @returns {string} A string representing the schema.
1122
1392
  */
1123
1393
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1394
+ /**
1395
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1396
+ *
1397
+ * @param {string} project
1398
+ * @param {string} location
1399
+ * @param {string} data_store
1400
+ * @returns {string} Resource name string.
1401
+ */
1402
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1403
+ /**
1404
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1405
+ *
1406
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1407
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1408
+ * @returns {string} A string representing the project.
1409
+ */
1410
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1411
+ /**
1412
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1413
+ *
1414
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1415
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1416
+ * @returns {string} A string representing the location.
1417
+ */
1418
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1419
+ /**
1420
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1421
+ *
1422
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1423
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1424
+ * @returns {string} A string representing the data_store.
1425
+ */
1426
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1427
+ /**
1428
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1429
+ *
1430
+ * @param {string} project
1431
+ * @param {string} location
1432
+ * @param {string} data_store
1433
+ * @param {string} target_site
1434
+ * @returns {string} Resource name string.
1435
+ */
1436
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1437
+ /**
1438
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1439
+ *
1440
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1441
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1442
+ * @returns {string} A string representing the project.
1443
+ */
1444
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1445
+ /**
1446
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1447
+ *
1448
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1449
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1450
+ * @returns {string} A string representing the location.
1451
+ */
1452
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1453
+ /**
1454
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1455
+ *
1456
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1457
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1458
+ * @returns {string} A string representing the data_store.
1459
+ */
1460
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1461
+ /**
1462
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1463
+ *
1464
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1465
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1466
+ * @returns {string} A string representing the target_site.
1467
+ */
1468
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1124
1469
  /**
1125
1470
  * Terminate the gRPC channel and close the client.
1126
1471
  *