@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.v1beta.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
+ }
@@ -18,6 +18,8 @@ export declare class DocumentServiceClient {
18
18
  private _gaxGrpc;
19
19
  private _protos;
20
20
  private _defaults;
21
+ private _universeDomain;
22
+ private _servicePath;
21
23
  auth: gax.GoogleAuth;
22
24
  descriptors: Descriptors;
23
25
  warn: (code: string, message: string, warnType?: string) => void;
@@ -88,15 +90,22 @@ export declare class DocumentServiceClient {
88
90
  }>;
89
91
  /**
90
92
  * The DNS address for this API service.
93
+ * @deprecated Use the apiEndpoint method of the client instance.
91
94
  * @returns {string} The DNS address for this service.
92
95
  */
93
96
  static get servicePath(): string;
94
97
  /**
95
- * The DNS address for this API service - same as servicePath(),
96
- * exists for compatibility reasons.
98
+ * The DNS address for this API service - same as servicePath.
99
+ * @deprecated Use the apiEndpoint method of the client instance.
97
100
  * @returns {string} The DNS address for this service.
98
101
  */
99
102
  static get apiEndpoint(): string;
103
+ /**
104
+ * The DNS address for this API service.
105
+ * @returns {string} The DNS address for this service.
106
+ */
107
+ get apiEndpoint(): string;
108
+ get universeDomain(): string;
100
109
  /**
101
110
  * The port for this API service.
102
111
  * @returns {number} The default port for this service.
@@ -737,6 +746,90 @@ export declare class DocumentServiceClient {
737
746
  * ```
738
747
  */
739
748
  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>;
749
+ /**
750
+ * Return a fully-qualified engine resource name string.
751
+ *
752
+ * @param {string} project
753
+ * @param {string} location
754
+ * @param {string} collection
755
+ * @param {string} engine
756
+ * @returns {string} Resource name string.
757
+ */
758
+ enginePath(project: string, location: string, collection: string, engine: string): string;
759
+ /**
760
+ * Parse the project from Engine resource.
761
+ *
762
+ * @param {string} engineName
763
+ * A fully-qualified path representing Engine resource.
764
+ * @returns {string} A string representing the project.
765
+ */
766
+ matchProjectFromEngineName(engineName: string): string | number;
767
+ /**
768
+ * Parse the location from Engine resource.
769
+ *
770
+ * @param {string} engineName
771
+ * A fully-qualified path representing Engine resource.
772
+ * @returns {string} A string representing the location.
773
+ */
774
+ matchLocationFromEngineName(engineName: string): string | number;
775
+ /**
776
+ * Parse the collection from Engine resource.
777
+ *
778
+ * @param {string} engineName
779
+ * A fully-qualified path representing Engine resource.
780
+ * @returns {string} A string representing the collection.
781
+ */
782
+ matchCollectionFromEngineName(engineName: string): string | number;
783
+ /**
784
+ * Parse the engine from Engine resource.
785
+ *
786
+ * @param {string} engineName
787
+ * A fully-qualified path representing Engine resource.
788
+ * @returns {string} A string representing the engine.
789
+ */
790
+ matchEngineFromEngineName(engineName: string): string | number;
791
+ /**
792
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
793
+ *
794
+ * @param {string} project
795
+ * @param {string} location
796
+ * @param {string} collection
797
+ * @param {string} data_store
798
+ * @returns {string} Resource name string.
799
+ */
800
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
801
+ /**
802
+ * Parse the project from ProjectLocationCollectionDataStore resource.
803
+ *
804
+ * @param {string} projectLocationCollectionDataStoreName
805
+ * A fully-qualified path representing project_location_collection_data_store resource.
806
+ * @returns {string} A string representing the project.
807
+ */
808
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
809
+ /**
810
+ * Parse the location from ProjectLocationCollectionDataStore resource.
811
+ *
812
+ * @param {string} projectLocationCollectionDataStoreName
813
+ * A fully-qualified path representing project_location_collection_data_store resource.
814
+ * @returns {string} A string representing the location.
815
+ */
816
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
817
+ /**
818
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
819
+ *
820
+ * @param {string} projectLocationCollectionDataStoreName
821
+ * A fully-qualified path representing project_location_collection_data_store resource.
822
+ * @returns {string} A string representing the collection.
823
+ */
824
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
825
+ /**
826
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
827
+ *
828
+ * @param {string} projectLocationCollectionDataStoreName
829
+ * A fully-qualified path representing project_location_collection_data_store resource.
830
+ * @returns {string} A string representing the data_store.
831
+ */
832
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
740
833
  /**
741
834
  * Return a fully-qualified projectLocationCollectionDataStoreBranch resource name string.
742
835
  *
@@ -950,6 +1043,285 @@ export declare class DocumentServiceClient {
950
1043
  * @returns {string} A string representing the schema.
951
1044
  */
952
1045
  matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
1046
+ /**
1047
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
1048
+ *
1049
+ * @param {string} project
1050
+ * @param {string} location
1051
+ * @param {string} collection
1052
+ * @param {string} data_store
1053
+ * @param {string} serving_config
1054
+ * @returns {string} Resource name string.
1055
+ */
1056
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
1057
+ /**
1058
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
1059
+ *
1060
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1061
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1062
+ * @returns {string} A string representing the project.
1063
+ */
1064
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1065
+ /**
1066
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
1067
+ *
1068
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1069
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1070
+ * @returns {string} A string representing the location.
1071
+ */
1072
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1073
+ /**
1074
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
1075
+ *
1076
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1077
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1078
+ * @returns {string} A string representing the collection.
1079
+ */
1080
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1081
+ /**
1082
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
1083
+ *
1084
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1085
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1086
+ * @returns {string} A string representing the data_store.
1087
+ */
1088
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1089
+ /**
1090
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
1091
+ *
1092
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
1093
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
1094
+ * @returns {string} A string representing the serving_config.
1095
+ */
1096
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
1097
+ /**
1098
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
1099
+ *
1100
+ * @param {string} project
1101
+ * @param {string} location
1102
+ * @param {string} collection
1103
+ * @param {string} data_store
1104
+ * @returns {string} Resource name string.
1105
+ */
1106
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
1107
+ /**
1108
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1109
+ *
1110
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1111
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1112
+ * @returns {string} A string representing the project.
1113
+ */
1114
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1115
+ /**
1116
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1117
+ *
1118
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1119
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1120
+ * @returns {string} A string representing the location.
1121
+ */
1122
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1123
+ /**
1124
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1125
+ *
1126
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1127
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1128
+ * @returns {string} A string representing the collection.
1129
+ */
1130
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1131
+ /**
1132
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
1133
+ *
1134
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
1135
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
1136
+ * @returns {string} A string representing the data_store.
1137
+ */
1138
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
1139
+ /**
1140
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
1141
+ *
1142
+ * @param {string} project
1143
+ * @param {string} location
1144
+ * @param {string} collection
1145
+ * @param {string} data_store
1146
+ * @param {string} target_site
1147
+ * @returns {string} Resource name string.
1148
+ */
1149
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
1150
+ /**
1151
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1152
+ *
1153
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1154
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1155
+ * @returns {string} A string representing the project.
1156
+ */
1157
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1158
+ /**
1159
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1160
+ *
1161
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1162
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1163
+ * @returns {string} A string representing the location.
1164
+ */
1165
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1166
+ /**
1167
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1168
+ *
1169
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1170
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1171
+ * @returns {string} A string representing the collection.
1172
+ */
1173
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1174
+ /**
1175
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1176
+ *
1177
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1178
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1179
+ * @returns {string} A string representing the data_store.
1180
+ */
1181
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1182
+ /**
1183
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
1184
+ *
1185
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1186
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1187
+ * @returns {string} A string representing the target_site.
1188
+ */
1189
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1190
+ /**
1191
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
1192
+ *
1193
+ * @param {string} project
1194
+ * @param {string} location
1195
+ * @param {string} collection
1196
+ * @param {string} engine
1197
+ * @param {string} conversation
1198
+ * @returns {string} Resource name string.
1199
+ */
1200
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
1201
+ /**
1202
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
1203
+ *
1204
+ * @param {string} projectLocationCollectionEngineConversationName
1205
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1206
+ * @returns {string} A string representing the project.
1207
+ */
1208
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1209
+ /**
1210
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
1211
+ *
1212
+ * @param {string} projectLocationCollectionEngineConversationName
1213
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1214
+ * @returns {string} A string representing the location.
1215
+ */
1216
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1217
+ /**
1218
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
1219
+ *
1220
+ * @param {string} projectLocationCollectionEngineConversationName
1221
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1222
+ * @returns {string} A string representing the collection.
1223
+ */
1224
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1225
+ /**
1226
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
1227
+ *
1228
+ * @param {string} projectLocationCollectionEngineConversationName
1229
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1230
+ * @returns {string} A string representing the engine.
1231
+ */
1232
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1233
+ /**
1234
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
1235
+ *
1236
+ * @param {string} projectLocationCollectionEngineConversationName
1237
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1238
+ * @returns {string} A string representing the conversation.
1239
+ */
1240
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1241
+ /**
1242
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
1243
+ *
1244
+ * @param {string} project
1245
+ * @param {string} location
1246
+ * @param {string} collection
1247
+ * @param {string} engine
1248
+ * @param {string} serving_config
1249
+ * @returns {string} Resource name string.
1250
+ */
1251
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
1252
+ /**
1253
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
1254
+ *
1255
+ * @param {string} projectLocationCollectionEngineServingConfigName
1256
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1257
+ * @returns {string} A string representing the project.
1258
+ */
1259
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1260
+ /**
1261
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
1262
+ *
1263
+ * @param {string} projectLocationCollectionEngineServingConfigName
1264
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1265
+ * @returns {string} A string representing the location.
1266
+ */
1267
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1268
+ /**
1269
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
1270
+ *
1271
+ * @param {string} projectLocationCollectionEngineServingConfigName
1272
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1273
+ * @returns {string} A string representing the collection.
1274
+ */
1275
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1276
+ /**
1277
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
1278
+ *
1279
+ * @param {string} projectLocationCollectionEngineServingConfigName
1280
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1281
+ * @returns {string} A string representing the engine.
1282
+ */
1283
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1284
+ /**
1285
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
1286
+ *
1287
+ * @param {string} projectLocationCollectionEngineServingConfigName
1288
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1289
+ * @returns {string} A string representing the serving_config.
1290
+ */
1291
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1292
+ /**
1293
+ * Return a fully-qualified projectLocationDataStore resource name string.
1294
+ *
1295
+ * @param {string} project
1296
+ * @param {string} location
1297
+ * @param {string} data_store
1298
+ * @returns {string} Resource name string.
1299
+ */
1300
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
1301
+ /**
1302
+ * Parse the project from ProjectLocationDataStore resource.
1303
+ *
1304
+ * @param {string} projectLocationDataStoreName
1305
+ * A fully-qualified path representing project_location_data_store resource.
1306
+ * @returns {string} A string representing the project.
1307
+ */
1308
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1309
+ /**
1310
+ * Parse the location from ProjectLocationDataStore resource.
1311
+ *
1312
+ * @param {string} projectLocationDataStoreName
1313
+ * A fully-qualified path representing project_location_data_store resource.
1314
+ * @returns {string} A string representing the location.
1315
+ */
1316
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1317
+ /**
1318
+ * Parse the data_store from ProjectLocationDataStore resource.
1319
+ *
1320
+ * @param {string} projectLocationDataStoreName
1321
+ * A fully-qualified path representing project_location_data_store resource.
1322
+ * @returns {string} A string representing the data_store.
1323
+ */
1324
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
953
1325
  /**
954
1326
  * Return a fully-qualified projectLocationDataStoreBranch resource name string.
955
1327
  *
@@ -1127,6 +1499,123 @@ export declare class DocumentServiceClient {
1127
1499
  * @returns {string} A string representing the schema.
1128
1500
  */
1129
1501
  matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1502
+ /**
1503
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1504
+ *
1505
+ * @param {string} project
1506
+ * @param {string} location
1507
+ * @param {string} data_store
1508
+ * @param {string} serving_config
1509
+ * @returns {string} Resource name string.
1510
+ */
1511
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1512
+ /**
1513
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1514
+ *
1515
+ * @param {string} projectLocationDataStoreServingConfigName
1516
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1517
+ * @returns {string} A string representing the project.
1518
+ */
1519
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1520
+ /**
1521
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1522
+ *
1523
+ * @param {string} projectLocationDataStoreServingConfigName
1524
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1525
+ * @returns {string} A string representing the location.
1526
+ */
1527
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1528
+ /**
1529
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1530
+ *
1531
+ * @param {string} projectLocationDataStoreServingConfigName
1532
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1533
+ * @returns {string} A string representing the data_store.
1534
+ */
1535
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1536
+ /**
1537
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1538
+ *
1539
+ * @param {string} projectLocationDataStoreServingConfigName
1540
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1541
+ * @returns {string} A string representing the serving_config.
1542
+ */
1543
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1544
+ /**
1545
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1546
+ *
1547
+ * @param {string} project
1548
+ * @param {string} location
1549
+ * @param {string} data_store
1550
+ * @returns {string} Resource name string.
1551
+ */
1552
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1553
+ /**
1554
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1555
+ *
1556
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1557
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1558
+ * @returns {string} A string representing the project.
1559
+ */
1560
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1561
+ /**
1562
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1563
+ *
1564
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1565
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1566
+ * @returns {string} A string representing the location.
1567
+ */
1568
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1569
+ /**
1570
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1571
+ *
1572
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1573
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1574
+ * @returns {string} A string representing the data_store.
1575
+ */
1576
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1577
+ /**
1578
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1579
+ *
1580
+ * @param {string} project
1581
+ * @param {string} location
1582
+ * @param {string} data_store
1583
+ * @param {string} target_site
1584
+ * @returns {string} Resource name string.
1585
+ */
1586
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1587
+ /**
1588
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1589
+ *
1590
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1591
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1592
+ * @returns {string} A string representing the project.
1593
+ */
1594
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1595
+ /**
1596
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1597
+ *
1598
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1599
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1600
+ * @returns {string} A string representing the location.
1601
+ */
1602
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1603
+ /**
1604
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1605
+ *
1606
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1607
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1608
+ * @returns {string} A string representing the data_store.
1609
+ */
1610
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1611
+ /**
1612
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1613
+ *
1614
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1615
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1616
+ * @returns {string} A string representing the target_site.
1617
+ */
1618
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1130
1619
  /**
1131
1620
  * Terminate the gRPC channel and close the client.
1132
1621
  *