@google-cloud/discoveryengine 1.8.0 → 1.9.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 (199) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +33 -4
  3. package/build/protos/google/cloud/discoveryengine/v1/answer.proto +337 -0
  4. package/build/protos/google/cloud/discoveryengine/v1/common.proto +33 -0
  5. package/build/protos/google/cloud/discoveryengine/v1/control.proto +214 -0
  6. package/build/protos/google/cloud/discoveryengine/v1/control_service.proto +236 -0
  7. package/build/protos/google/cloud/discoveryengine/v1/conversation.proto +2 -2
  8. package/build/protos/google/cloud/discoveryengine/v1/conversational_search_service.proto +569 -0
  9. package/build/protos/google/cloud/discoveryengine/v1/data_store.proto +4 -0
  10. package/build/protos/google/cloud/discoveryengine/v1/data_store_service.proto +2 -2
  11. package/build/protos/google/cloud/discoveryengine/v1/document_processing_config.proto +92 -0
  12. package/build/protos/google/cloud/discoveryengine/v1/document_service.proto +6 -6
  13. package/build/protos/google/cloud/discoveryengine/v1/engine.proto +4 -4
  14. package/build/protos/google/cloud/discoveryengine/v1/grounded_generation_service.proto +149 -0
  15. package/build/protos/google/cloud/discoveryengine/v1/grounding.proto +58 -0
  16. package/build/protos/google/cloud/discoveryengine/v1/import_config.proto +4 -4
  17. package/build/protos/google/cloud/discoveryengine/v1/project.proto +103 -0
  18. package/build/protos/google/cloud/discoveryengine/v1/project_service.proto +90 -0
  19. package/build/protos/google/cloud/discoveryengine/v1/rank_service.proto +131 -0
  20. package/build/protos/google/cloud/discoveryengine/v1/recommendation_service.proto +20 -19
  21. package/build/protos/google/cloud/discoveryengine/v1/schema_service.proto +5 -5
  22. package/build/protos/google/cloud/discoveryengine/v1/search_service.proto +23 -18
  23. package/build/protos/google/cloud/discoveryengine/v1/session.proto +97 -0
  24. package/build/protos/google/cloud/discoveryengine/v1/site_search_engine.proto +3 -0
  25. package/build/protos/google/cloud/discoveryengine/v1/user_event.proto +28 -3
  26. package/build/protos/google/cloud/discoveryengine/v1/user_event_service.proto +18 -2
  27. package/build/protos/google/cloud/discoveryengine/v1alpha/answer.proto +9 -0
  28. package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +7 -0
  29. package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +16 -0
  30. package/build/protos/google/cloud/discoveryengine/v1alpha/control.proto +217 -0
  31. package/build/protos/google/cloud/discoveryengine/v1alpha/control_service.proto +236 -0
  32. package/build/protos/google/cloud/discoveryengine/v1alpha/conversation.proto +2 -2
  33. package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +19 -3
  34. package/build/protos/google/cloud/discoveryengine/v1alpha/custom_tuning_model.proto +87 -0
  35. package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +2 -2
  36. package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +1 -0
  37. package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +12 -9
  38. package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +4 -4
  39. package/build/protos/google/cloud/discoveryengine/v1alpha/grounded_generation_service.proto +30 -1
  40. package/build/protos/google/cloud/discoveryengine/v1alpha/grounding.proto +3 -0
  41. package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +4 -4
  42. package/build/protos/google/cloud/discoveryengine/v1alpha/project.proto +1 -0
  43. package/build/protos/google/cloud/discoveryengine/v1alpha/project_service.proto +2 -0
  44. package/build/protos/google/cloud/discoveryengine/v1alpha/rank_service.proto +19 -0
  45. package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +20 -19
  46. package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +37 -2
  47. package/build/protos/google/cloud/discoveryengine/v1alpha/schema_service.proto +6 -6
  48. package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +28 -31
  49. package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +39 -0
  50. package/build/protos/google/cloud/discoveryengine/v1alpha/session.proto +3 -0
  51. package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +3 -0
  52. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +29 -3
  53. package/build/protos/google/cloud/discoveryengine/v1alpha/user_event_service.proto +18 -2
  54. package/build/protos/google/cloud/discoveryengine/v1beta/answer.proto +10 -1
  55. package/build/protos/google/cloud/discoveryengine/v1beta/common.proto +16 -0
  56. package/build/protos/google/cloud/discoveryengine/v1beta/control.proto +216 -0
  57. package/build/protos/google/cloud/discoveryengine/v1beta/control_service.proto +236 -0
  58. package/build/protos/google/cloud/discoveryengine/v1beta/conversation.proto +2 -2
  59. package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +19 -3
  60. package/build/protos/google/cloud/discoveryengine/v1beta/custom_tuning_model.proto +87 -0
  61. package/build/protos/google/cloud/discoveryengine/v1beta/data_store_service.proto +2 -2
  62. package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +1 -0
  63. package/build/protos/google/cloud/discoveryengine/v1beta/document_service.proto +7 -8
  64. package/build/protos/google/cloud/discoveryengine/v1beta/engine.proto +4 -4
  65. package/build/protos/google/cloud/discoveryengine/v1beta/grounded_generation_service.proto +30 -1
  66. package/build/protos/google/cloud/discoveryengine/v1beta/grounding.proto +3 -0
  67. package/build/protos/google/cloud/discoveryengine/v1beta/import_config.proto +4 -4
  68. package/build/protos/google/cloud/discoveryengine/v1beta/project.proto +103 -0
  69. package/build/protos/google/cloud/discoveryengine/v1beta/project_service.proto +90 -0
  70. package/build/protos/google/cloud/discoveryengine/v1beta/rank_service.proto +19 -0
  71. package/build/protos/google/cloud/discoveryengine/v1beta/recommendation_service.proto +20 -19
  72. package/build/protos/google/cloud/discoveryengine/v1beta/schema_service.proto +5 -5
  73. package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +30 -24
  74. package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +39 -0
  75. package/build/protos/google/cloud/discoveryengine/v1beta/session.proto +4 -1
  76. package/build/protos/google/cloud/discoveryengine/v1beta/site_search_engine.proto +3 -0
  77. package/build/protos/google/cloud/discoveryengine/v1beta/user_event.proto +28 -3
  78. package/build/protos/google/cloud/discoveryengine/v1beta/user_event_service.proto +18 -2
  79. package/build/protos/protos.d.ts +52350 -38733
  80. package/build/protos/protos.js +136479 -103212
  81. package/build/protos/protos.json +9460 -5916
  82. package/build/src/index.d.ts +13 -1
  83. package/build/src/index.js +13 -1
  84. package/build/src/v1/completion_service_client.d.ts +549 -0
  85. package/build/src/v1/completion_service_client.js +771 -0
  86. package/build/src/v1/control_service_client.d.ts +1623 -0
  87. package/build/src/v1/control_service_client.js +2218 -0
  88. package/build/src/v1/control_service_client_config.json +63 -0
  89. package/build/src/v1/conversational_search_service_client.d.ts +893 -0
  90. package/build/src/v1/conversational_search_service_client.js +1040 -14
  91. package/build/src/v1/conversational_search_service_client_config.json +35 -0
  92. package/build/src/v1/data_store_service_client.d.ts +555 -6
  93. package/build/src/v1/data_store_service_client.js +775 -4
  94. package/build/src/v1/document_service_client.d.ts +557 -8
  95. package/build/src/v1/document_service_client.js +773 -2
  96. package/build/src/v1/engine_service_client.d.ts +549 -0
  97. package/build/src/v1/engine_service_client.js +771 -0
  98. package/build/src/v1/grounded_generation_service_client.d.ts +1439 -0
  99. package/build/src/v1/grounded_generation_service_client.js +2036 -0
  100. package/build/src/v1/grounded_generation_service_client_config.json +43 -0
  101. package/build/src/v1/index.d.ts +4 -0
  102. package/build/src/v1/index.js +9 -1
  103. package/build/src/v1/project_service_client.d.ts +1533 -0
  104. package/build/src/v1/project_service_client.js +2255 -0
  105. package/build/src/v1/project_service_client_config.json +43 -0
  106. package/build/src/v1/rank_service_client.d.ts +1449 -0
  107. package/build/src/v1/rank_service_client.js +2037 -0
  108. package/build/src/v1/rank_service_client_config.json +43 -0
  109. package/build/src/v1/recommendation_service_client.d.ts +568 -18
  110. package/build/src/v1/recommendation_service_client.js +756 -0
  111. package/build/src/v1/schema_service_client.d.ts +558 -9
  112. package/build/src/v1/schema_service_client.js +775 -4
  113. package/build/src/v1/search_service_client.d.ts +579 -21
  114. package/build/src/v1/search_service_client.js +776 -14
  115. package/build/src/v1/site_search_engine_service_client.d.ts +549 -0
  116. package/build/src/v1/site_search_engine_service_client.js +771 -0
  117. package/build/src/v1/user_event_service_client.d.ts +562 -2
  118. package/build/src/v1/user_event_service_client.js +771 -0
  119. package/build/src/v1alpha/acl_config_service_client.d.ts +237 -0
  120. package/build/src/v1alpha/acl_config_service_client.js +326 -0
  121. package/build/src/v1alpha/chunk_service_client.d.ts +237 -0
  122. package/build/src/v1alpha/chunk_service_client.js +326 -0
  123. package/build/src/v1alpha/completion_service_client.d.ts +237 -0
  124. package/build/src/v1alpha/completion_service_client.js +340 -0
  125. package/build/src/v1alpha/control_service_client.d.ts +2013 -0
  126. package/build/src/v1alpha/control_service_client.js +2757 -0
  127. package/build/src/v1alpha/control_service_client_config.json +63 -0
  128. package/build/src/v1alpha/conversational_search_service_client.d.ts +239 -2
  129. package/build/src/v1alpha/conversational_search_service_client.js +326 -0
  130. package/build/src/v1alpha/data_store_service_client.d.ts +243 -6
  131. package/build/src/v1alpha/data_store_service_client.js +344 -4
  132. package/build/src/v1alpha/document_service_client.d.ts +246 -9
  133. package/build/src/v1alpha/document_service_client.js +342 -2
  134. package/build/src/v1alpha/engine_service_client.d.ts +237 -0
  135. package/build/src/v1alpha/engine_service_client.js +340 -0
  136. package/build/src/v1alpha/estimate_billing_service_client.d.ts +237 -0
  137. package/build/src/v1alpha/estimate_billing_service_client.js +340 -0
  138. package/build/src/v1alpha/grounded_generation_service_client.d.ts +256 -1
  139. package/build/src/v1alpha/grounded_generation_service_client.js +326 -0
  140. package/build/src/v1alpha/index.d.ts +1 -0
  141. package/build/src/v1alpha/index.js +3 -1
  142. package/build/src/v1alpha/project_service_client.d.ts +239 -0
  143. package/build/src/v1alpha/project_service_client.js +340 -0
  144. package/build/src/v1alpha/project_service_client_config.json +21 -6
  145. package/build/src/v1alpha/rank_service_client.d.ts +255 -0
  146. package/build/src/v1alpha/rank_service_client.js +326 -0
  147. package/build/src/v1alpha/recommendation_service_client.d.ts +256 -18
  148. package/build/src/v1alpha/recommendation_service_client.js +326 -0
  149. package/build/src/v1alpha/schema_service_client.d.ts +247 -10
  150. package/build/src/v1alpha/schema_service_client.js +344 -4
  151. package/build/src/v1alpha/search_service_client.d.ts +267 -21
  152. package/build/src/v1alpha/search_service_client.js +346 -14
  153. package/build/src/v1alpha/search_tuning_service_client.d.ts +265 -0
  154. package/build/src/v1alpha/search_tuning_service_client.js +365 -1
  155. package/build/src/v1alpha/search_tuning_service_client_config.json +4 -0
  156. package/build/src/v1alpha/serving_config_service_client.d.ts +237 -0
  157. package/build/src/v1alpha/serving_config_service_client.js +326 -0
  158. package/build/src/v1alpha/site_search_engine_service_client.d.ts +237 -0
  159. package/build/src/v1alpha/site_search_engine_service_client.js +340 -0
  160. package/build/src/v1alpha/user_event_service_client.d.ts +250 -2
  161. package/build/src/v1alpha/user_event_service_client.js +340 -0
  162. package/build/src/v1beta/completion_service_client.d.ts +252 -0
  163. package/build/src/v1beta/completion_service_client.js +359 -0
  164. package/build/src/v1beta/control_service_client.d.ts +1860 -0
  165. package/build/src/v1beta/control_service_client.js +2545 -0
  166. package/build/src/v1beta/control_service_client_config.json +63 -0
  167. package/build/src/v1beta/conversational_search_service_client.d.ts +254 -2
  168. package/build/src/v1beta/conversational_search_service_client.js +348 -0
  169. package/build/src/v1beta/data_store_service_client.d.ts +258 -6
  170. package/build/src/v1beta/data_store_service_client.js +363 -4
  171. package/build/src/v1beta/document_service_client.d.ts +261 -10
  172. package/build/src/v1beta/document_service_client.js +361 -2
  173. package/build/src/v1beta/engine_service_client.d.ts +252 -0
  174. package/build/src/v1beta/engine_service_client.js +359 -0
  175. package/build/src/v1beta/grounded_generation_service_client.d.ts +271 -1
  176. package/build/src/v1beta/grounded_generation_service_client.js +348 -0
  177. package/build/src/v1beta/index.d.ts +2 -0
  178. package/build/src/v1beta/index.js +5 -1
  179. package/build/src/v1beta/project_service_client.d.ts +1770 -0
  180. package/build/src/v1beta/project_service_client.js +2576 -0
  181. package/build/src/v1beta/project_service_client_config.json +43 -0
  182. package/build/src/v1beta/rank_service_client.d.ts +270 -0
  183. package/build/src/v1beta/rank_service_client.js +348 -0
  184. package/build/src/v1beta/recommendation_service_client.d.ts +271 -18
  185. package/build/src/v1beta/recommendation_service_client.js +348 -0
  186. package/build/src/v1beta/schema_service_client.d.ts +261 -9
  187. package/build/src/v1beta/schema_service_client.js +363 -4
  188. package/build/src/v1beta/search_service_client.d.ts +282 -21
  189. package/build/src/v1beta/search_service_client.js +368 -14
  190. package/build/src/v1beta/search_tuning_service_client.d.ts +280 -0
  191. package/build/src/v1beta/search_tuning_service_client.js +384 -1
  192. package/build/src/v1beta/search_tuning_service_client_config.json +4 -0
  193. package/build/src/v1beta/serving_config_service_client.d.ts +237 -0
  194. package/build/src/v1beta/serving_config_service_client.js +326 -0
  195. package/build/src/v1beta/site_search_engine_service_client.d.ts +252 -0
  196. package/build/src/v1beta/site_search_engine_service_client.js +359 -0
  197. package/build/src/v1beta/user_event_service_client.d.ts +265 -2
  198. package/build/src/v1beta/user_event_service_client.js +359 -0
  199. package/package.json +2 -2
@@ -0,0 +1,1770 @@
1
+ import type * as gax from 'google-gax';
2
+ import type { Callback, CallOptions, Descriptors, ClientOptions, LROperation, LocationsClient, LocationProtos } from 'google-gax';
3
+ import * as protos from '../../protos/protos';
4
+ /**
5
+ * Service for operations on the
6
+ * {@link protos.google.cloud.discoveryengine.v1beta.Project|Project}.
7
+ * @class
8
+ * @memberof v1beta
9
+ */
10
+ export declare class ProjectServiceClient {
11
+ private _terminated;
12
+ private _opts;
13
+ private _providedCustomServicePath;
14
+ private _gaxModule;
15
+ private _gaxGrpc;
16
+ private _protos;
17
+ private _defaults;
18
+ private _universeDomain;
19
+ private _servicePath;
20
+ auth: gax.GoogleAuth;
21
+ descriptors: Descriptors;
22
+ warn: (code: string, message: string, warnType?: string) => void;
23
+ innerApiCalls: {
24
+ [name: string]: Function;
25
+ };
26
+ locationsClient: LocationsClient;
27
+ pathTemplates: {
28
+ [name: string]: gax.PathTemplate;
29
+ };
30
+ operationsClient: gax.OperationsClient;
31
+ projectServiceStub?: Promise<{
32
+ [name: string]: Function;
33
+ }>;
34
+ /**
35
+ * Construct an instance of ProjectServiceClient.
36
+ *
37
+ * @param {object} [options] - The configuration object.
38
+ * The options accepted by the constructor are described in detail
39
+ * in [this document](https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#creating-the-client-instance).
40
+ * The common options are:
41
+ * @param {object} [options.credentials] - Credentials object.
42
+ * @param {string} [options.credentials.client_email]
43
+ * @param {string} [options.credentials.private_key]
44
+ * @param {string} [options.email] - Account email address. Required when
45
+ * using a .pem or .p12 keyFilename.
46
+ * @param {string} [options.keyFilename] - Full path to the a .json, .pem, or
47
+ * .p12 key downloaded from the Google Developers Console. If you provide
48
+ * a path to a JSON file, the projectId option below is not necessary.
49
+ * NOTE: .pem and .p12 require you to specify options.email as well.
50
+ * @param {number} [options.port] - The port on which to connect to
51
+ * the remote host.
52
+ * @param {string} [options.projectId] - The project ID from the Google
53
+ * Developer's Console, e.g. 'grape-spaceship-123'. We will also check
54
+ * the environment variable GCLOUD_PROJECT for your project ID. If your
55
+ * app is running in an environment which supports
56
+ * {@link https://developers.google.com/identity/protocols/application-default-credentials Application Default Credentials},
57
+ * your project ID will be detected automatically.
58
+ * @param {string} [options.apiEndpoint] - The domain name of the
59
+ * API remote host.
60
+ * @param {gax.ClientConfig} [options.clientConfig] - Client configuration override.
61
+ * Follows the structure of {@link gapicConfig}.
62
+ * @param {boolean} [options.fallback] - Use HTTP/1.1 REST mode.
63
+ * For more information, please check the
64
+ * {@link https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#http11-rest-api-mode documentation}.
65
+ * @param {gax} [gaxInstance]: loaded instance of `google-gax`. Useful if you
66
+ * need to avoid loading the default gRPC version and want to use the fallback
67
+ * HTTP implementation. Load only fallback version and pass it to the constructor:
68
+ * ```
69
+ * const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC
70
+ * const client = new ProjectServiceClient({fallback: true}, gax);
71
+ * ```
72
+ */
73
+ constructor(opts?: ClientOptions, gaxInstance?: typeof gax | typeof gax.fallback);
74
+ /**
75
+ * Initialize the client.
76
+ * Performs asynchronous operations (such as authentication) and prepares the client.
77
+ * This function will be called automatically when any class method is called for the
78
+ * first time, but if you need to initialize it before calling an actual method,
79
+ * feel free to call initialize() directly.
80
+ *
81
+ * You can await on this method if you want to make sure the client is initialized.
82
+ *
83
+ * @returns {Promise} A promise that resolves to an authenticated service stub.
84
+ */
85
+ initialize(): Promise<{
86
+ [name: string]: Function;
87
+ }>;
88
+ /**
89
+ * The DNS address for this API service.
90
+ * @deprecated Use the apiEndpoint method of the client instance.
91
+ * @returns {string} The DNS address for this service.
92
+ */
93
+ static get servicePath(): string;
94
+ /**
95
+ * The DNS address for this API service - same as servicePath.
96
+ * @deprecated Use the apiEndpoint method of the client instance.
97
+ * @returns {string} The DNS address for this service.
98
+ */
99
+ static get apiEndpoint(): string;
100
+ /**
101
+ * The DNS address for this API service.
102
+ * @returns {string} The DNS address for this service.
103
+ */
104
+ get apiEndpoint(): string;
105
+ get universeDomain(): string;
106
+ /**
107
+ * The port for this API service.
108
+ * @returns {number} The default port for this service.
109
+ */
110
+ static get port(): number;
111
+ /**
112
+ * The scopes needed to make gRPC calls for every method defined
113
+ * in this service.
114
+ * @returns {string[]} List of default scopes.
115
+ */
116
+ static get scopes(): string[];
117
+ getProjectId(): Promise<string>;
118
+ getProjectId(callback: Callback<string, undefined, undefined>): void;
119
+ /**
120
+ * Provisions the project resource. During the
121
+ * process, related systems will get prepared and initialized.
122
+ *
123
+ * Caller must read the [Terms for data
124
+ * use](https://cloud.google.com/retail/data-use-terms), and optionally
125
+ * specify in request to provide consent to that service terms.
126
+ *
127
+ * @param {Object} request
128
+ * The request object that will be sent.
129
+ * @param {string} request.name
130
+ * Required. Full resource name of a
131
+ * {@link protos.google.cloud.discoveryengine.v1beta.Project|Project}, such as
132
+ * `projects/{project_id_or_number}`.
133
+ * @param {boolean} request.acceptDataUseTerms
134
+ * Required. Set to `true` to specify that caller has read and would like to
135
+ * give consent to the [Terms for data
136
+ * use](https://cloud.google.com/retail/data-use-terms).
137
+ * @param {string} request.dataUseTermsVersion
138
+ * Required. The version of the [Terms for data
139
+ * use](https://cloud.google.com/retail/data-use-terms) that caller has read
140
+ * and would like to give consent to.
141
+ *
142
+ * Acceptable version is `2022-11-23`, and this may change over time.
143
+ * @param {object} [options]
144
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
145
+ * @returns {Promise} - The promise which resolves to an array.
146
+ * The first element of the array is an object representing
147
+ * a long running operation. Its `promise()` method returns a promise
148
+ * you can `await` for.
149
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
150
+ * for more details and examples.
151
+ * @example <caption>include:samples/generated/v1beta/project_service.provision_project.js</caption>
152
+ * region_tag:discoveryengine_v1beta_generated_ProjectService_ProvisionProject_async
153
+ */
154
+ provisionProject(request?: protos.google.cloud.discoveryengine.v1beta.IProvisionProjectRequest, options?: CallOptions): Promise<[
155
+ LROperation<protos.google.cloud.discoveryengine.v1beta.IProject, protos.google.cloud.discoveryengine.v1beta.IProvisionProjectMetadata>,
156
+ protos.google.longrunning.IOperation | undefined,
157
+ {} | undefined
158
+ ]>;
159
+ provisionProject(request: protos.google.cloud.discoveryengine.v1beta.IProvisionProjectRequest, options: CallOptions, callback: Callback<LROperation<protos.google.cloud.discoveryengine.v1beta.IProject, protos.google.cloud.discoveryengine.v1beta.IProvisionProjectMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
160
+ provisionProject(request: protos.google.cloud.discoveryengine.v1beta.IProvisionProjectRequest, callback: Callback<LROperation<protos.google.cloud.discoveryengine.v1beta.IProject, protos.google.cloud.discoveryengine.v1beta.IProvisionProjectMetadata>, protos.google.longrunning.IOperation | null | undefined, {} | null | undefined>): void;
161
+ /**
162
+ * Check the status of the long running operation returned by `provisionProject()`.
163
+ * @param {String} name
164
+ * The operation name that will be passed.
165
+ * @returns {Promise} - The promise which resolves to an object.
166
+ * The decoded operation object has result and metadata field to get information from.
167
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#long-running-operations | documentation }
168
+ * for more details and examples.
169
+ * @example <caption>include:samples/generated/v1beta/project_service.provision_project.js</caption>
170
+ * region_tag:discoveryengine_v1beta_generated_ProjectService_ProvisionProject_async
171
+ */
172
+ checkProvisionProjectProgress(name: string): Promise<LROperation<protos.google.cloud.discoveryengine.v1beta.Project, protos.google.cloud.discoveryengine.v1beta.ProvisionProjectMetadata>>;
173
+ /**
174
+ * Gets information about a location.
175
+ *
176
+ * @param {Object} request
177
+ * The request object that will be sent.
178
+ * @param {string} request.name
179
+ * Resource name for the location.
180
+ * @param {object} [options]
181
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
182
+ * @returns {Promise} - The promise which resolves to an array.
183
+ * The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
184
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
185
+ * for more details and examples.
186
+ * @example
187
+ * ```
188
+ * const [response] = await client.getLocation(request);
189
+ * ```
190
+ */
191
+ getLocation(request: LocationProtos.google.cloud.location.IGetLocationRequest, options?: gax.CallOptions | Callback<LocationProtos.google.cloud.location.ILocation, LocationProtos.google.cloud.location.IGetLocationRequest | null | undefined, {} | null | undefined>, callback?: Callback<LocationProtos.google.cloud.location.ILocation, LocationProtos.google.cloud.location.IGetLocationRequest | null | undefined, {} | null | undefined>): Promise<LocationProtos.google.cloud.location.ILocation>;
192
+ /**
193
+ * Lists information about the supported locations for this service. Returns an iterable object.
194
+ *
195
+ * `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
196
+ * @param {Object} request
197
+ * The request object that will be sent.
198
+ * @param {string} request.name
199
+ * The resource that owns the locations collection, if applicable.
200
+ * @param {string} request.filter
201
+ * The standard list filter.
202
+ * @param {number} request.pageSize
203
+ * The standard list page size.
204
+ * @param {string} request.pageToken
205
+ * The standard list page token.
206
+ * @param {object} [options]
207
+ * Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
208
+ * @returns {Object}
209
+ * An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
210
+ * When you iterate the returned iterable, each element will be an object representing
211
+ * {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
212
+ * so you can stop the iteration when you don't need more results.
213
+ * Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
214
+ * for more details and examples.
215
+ * @example
216
+ * ```
217
+ * const iterable = client.listLocationsAsync(request);
218
+ * for await (const response of iterable) {
219
+ * // process response
220
+ * }
221
+ * ```
222
+ */
223
+ listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
224
+ /**
225
+ * Gets the latest state of a long-running operation. Clients can use this
226
+ * method to poll the operation result at intervals as recommended by the API
227
+ * service.
228
+ *
229
+ * @param {Object} request - The request object that will be sent.
230
+ * @param {string} request.name - The name of the operation resource.
231
+ * @param {Object=} options
232
+ * Optional parameters. You can override the default settings for this call,
233
+ * e.g, timeout, retries, paginations, etc. See {@link
234
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
235
+ * for the details.
236
+ * @param {function(?Error, ?Object)=} callback
237
+ * The function which will be called with the result of the API call.
238
+ *
239
+ * The second parameter to the callback is an object representing
240
+ * {@link google.longrunning.Operation | google.longrunning.Operation}.
241
+ * @return {Promise} - The promise which resolves to an array.
242
+ * The first element of the array is an object representing
243
+ * {@link google.longrunning.Operation | google.longrunning.Operation}.
244
+ * The promise has a method named "cancel" which cancels the ongoing API call.
245
+ *
246
+ * @example
247
+ * ```
248
+ * const client = longrunning.operationsClient();
249
+ * const name = '';
250
+ * const [response] = await client.getOperation({name});
251
+ * // doThingsWith(response)
252
+ * ```
253
+ */
254
+ getOperation(request: protos.google.longrunning.GetOperationRequest, options?: gax.CallOptions | Callback<protos.google.longrunning.Operation, protos.google.longrunning.GetOperationRequest, {} | null | undefined>, callback?: Callback<protos.google.longrunning.Operation, protos.google.longrunning.GetOperationRequest, {} | null | undefined>): Promise<[protos.google.longrunning.Operation]>;
255
+ /**
256
+ * Lists operations that match the specified filter in the request. If the
257
+ * server doesn't support this method, it returns `UNIMPLEMENTED`. Returns an iterable object.
258
+ *
259
+ * For-await-of syntax is used with the iterable to recursively get response element on-demand.
260
+ *
261
+ * @param {Object} request - The request object that will be sent.
262
+ * @param {string} request.name - The name of the operation collection.
263
+ * @param {string} request.filter - The standard list filter.
264
+ * @param {number=} request.pageSize -
265
+ * The maximum number of resources contained in the underlying API
266
+ * response. If page streaming is performed per-resource, this
267
+ * parameter does not affect the return value. If page streaming is
268
+ * performed per-page, this determines the maximum number of
269
+ * resources in a page.
270
+ * @param {Object=} options
271
+ * Optional parameters. You can override the default settings for this call,
272
+ * e.g, timeout, retries, paginations, etc. See {@link
273
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions} for the
274
+ * details.
275
+ * @returns {Object}
276
+ * An iterable Object that conforms to {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | iteration protocols}.
277
+ *
278
+ * @example
279
+ * ```
280
+ * const client = longrunning.operationsClient();
281
+ * for await (const response of client.listOperationsAsync(request));
282
+ * // doThingsWith(response)
283
+ * ```
284
+ */
285
+ listOperationsAsync(request: protos.google.longrunning.ListOperationsRequest, options?: gax.CallOptions): AsyncIterable<protos.google.longrunning.ListOperationsResponse>;
286
+ /**
287
+ * Starts asynchronous cancellation on a long-running operation. The server
288
+ * makes a best effort to cancel the operation, but success is not
289
+ * guaranteed. If the server doesn't support this method, it returns
290
+ * `google.rpc.Code.UNIMPLEMENTED`. Clients can use
291
+ * {@link Operations.GetOperation} or
292
+ * other methods to check whether the cancellation succeeded or whether the
293
+ * operation completed despite cancellation. On successful cancellation,
294
+ * the operation is not deleted; instead, it becomes an operation with
295
+ * an {@link Operation.error} value with a {@link google.rpc.Status.code} of
296
+ * 1, corresponding to `Code.CANCELLED`.
297
+ *
298
+ * @param {Object} request - The request object that will be sent.
299
+ * @param {string} request.name - The name of the operation resource to be cancelled.
300
+ * @param {Object=} options
301
+ * Optional parameters. You can override the default settings for this call,
302
+ * e.g, timeout, retries, paginations, etc. See {@link
303
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions} for the
304
+ * details.
305
+ * @param {function(?Error)=} callback
306
+ * The function which will be called with the result of the API call.
307
+ * @return {Promise} - The promise which resolves when API call finishes.
308
+ * The promise has a method named "cancel" which cancels the ongoing API
309
+ * call.
310
+ *
311
+ * @example
312
+ * ```
313
+ * const client = longrunning.operationsClient();
314
+ * await client.cancelOperation({name: ''});
315
+ * ```
316
+ */
317
+ cancelOperation(request: protos.google.longrunning.CancelOperationRequest, options?: gax.CallOptions | Callback<protos.google.protobuf.Empty, protos.google.longrunning.CancelOperationRequest, {} | undefined | null>, callback?: Callback<protos.google.longrunning.CancelOperationRequest, protos.google.protobuf.Empty, {} | undefined | null>): Promise<protos.google.protobuf.Empty>;
318
+ /**
319
+ * Deletes a long-running operation. This method indicates that the client is
320
+ * no longer interested in the operation result. It does not cancel the
321
+ * operation. If the server doesn't support this method, it returns
322
+ * `google.rpc.Code.UNIMPLEMENTED`.
323
+ *
324
+ * @param {Object} request - The request object that will be sent.
325
+ * @param {string} request.name - The name of the operation resource to be deleted.
326
+ * @param {Object=} options
327
+ * Optional parameters. You can override the default settings for this call,
328
+ * e.g, timeout, retries, paginations, etc. See {@link
329
+ * https://googleapis.github.io/gax-nodejs/global.html#CallOptions | gax.CallOptions}
330
+ * for the details.
331
+ * @param {function(?Error)=} callback
332
+ * The function which will be called with the result of the API call.
333
+ * @return {Promise} - The promise which resolves when API call finishes.
334
+ * The promise has a method named "cancel" which cancels the ongoing API
335
+ * call.
336
+ *
337
+ * @example
338
+ * ```
339
+ * const client = longrunning.operationsClient();
340
+ * await client.deleteOperation({name: ''});
341
+ * ```
342
+ */
343
+ 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>;
344
+ /**
345
+ * Return a fully-qualified engine resource name string.
346
+ *
347
+ * @param {string} project
348
+ * @param {string} location
349
+ * @param {string} collection
350
+ * @param {string} engine
351
+ * @returns {string} Resource name string.
352
+ */
353
+ enginePath(project: string, location: string, collection: string, engine: string): string;
354
+ /**
355
+ * Parse the project from Engine resource.
356
+ *
357
+ * @param {string} engineName
358
+ * A fully-qualified path representing Engine resource.
359
+ * @returns {string} A string representing the project.
360
+ */
361
+ matchProjectFromEngineName(engineName: string): string | number;
362
+ /**
363
+ * Parse the location from Engine resource.
364
+ *
365
+ * @param {string} engineName
366
+ * A fully-qualified path representing Engine resource.
367
+ * @returns {string} A string representing the location.
368
+ */
369
+ matchLocationFromEngineName(engineName: string): string | number;
370
+ /**
371
+ * Parse the collection from Engine resource.
372
+ *
373
+ * @param {string} engineName
374
+ * A fully-qualified path representing Engine resource.
375
+ * @returns {string} A string representing the collection.
376
+ */
377
+ matchCollectionFromEngineName(engineName: string): string | number;
378
+ /**
379
+ * Parse the engine from Engine resource.
380
+ *
381
+ * @param {string} engineName
382
+ * A fully-qualified path representing Engine resource.
383
+ * @returns {string} A string representing the engine.
384
+ */
385
+ matchEngineFromEngineName(engineName: string): string | number;
386
+ /**
387
+ * Return a fully-qualified project resource name string.
388
+ *
389
+ * @param {string} project
390
+ * @returns {string} Resource name string.
391
+ */
392
+ projectPath(project: string): string;
393
+ /**
394
+ * Parse the project from Project resource.
395
+ *
396
+ * @param {string} projectName
397
+ * A fully-qualified path representing Project resource.
398
+ * @returns {string} A string representing the project.
399
+ */
400
+ matchProjectFromProjectName(projectName: string): string | number;
401
+ /**
402
+ * Return a fully-qualified projectLocationCollectionDataStore resource name string.
403
+ *
404
+ * @param {string} project
405
+ * @param {string} location
406
+ * @param {string} collection
407
+ * @param {string} data_store
408
+ * @returns {string} Resource name string.
409
+ */
410
+ projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
411
+ /**
412
+ * Parse the project from ProjectLocationCollectionDataStore resource.
413
+ *
414
+ * @param {string} projectLocationCollectionDataStoreName
415
+ * A fully-qualified path representing project_location_collection_data_store resource.
416
+ * @returns {string} A string representing the project.
417
+ */
418
+ matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
419
+ /**
420
+ * Parse the location from ProjectLocationCollectionDataStore resource.
421
+ *
422
+ * @param {string} projectLocationCollectionDataStoreName
423
+ * A fully-qualified path representing project_location_collection_data_store resource.
424
+ * @returns {string} A string representing the location.
425
+ */
426
+ matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
427
+ /**
428
+ * Parse the collection from ProjectLocationCollectionDataStore resource.
429
+ *
430
+ * @param {string} projectLocationCollectionDataStoreName
431
+ * A fully-qualified path representing project_location_collection_data_store resource.
432
+ * @returns {string} A string representing the collection.
433
+ */
434
+ matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
435
+ /**
436
+ * Parse the data_store from ProjectLocationCollectionDataStore resource.
437
+ *
438
+ * @param {string} projectLocationCollectionDataStoreName
439
+ * A fully-qualified path representing project_location_collection_data_store resource.
440
+ * @returns {string} A string representing the data_store.
441
+ */
442
+ matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
443
+ /**
444
+ * Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
445
+ *
446
+ * @param {string} project
447
+ * @param {string} location
448
+ * @param {string} collection
449
+ * @param {string} data_store
450
+ * @param {string} branch
451
+ * @param {string} document
452
+ * @returns {string} Resource name string.
453
+ */
454
+ projectLocationCollectionDataStoreBranchDocumentPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string): string;
455
+ /**
456
+ * Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
457
+ *
458
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
459
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
460
+ * @returns {string} A string representing the project.
461
+ */
462
+ matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
463
+ /**
464
+ * Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
465
+ *
466
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
467
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
468
+ * @returns {string} A string representing the location.
469
+ */
470
+ matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
471
+ /**
472
+ * Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
473
+ *
474
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
475
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
476
+ * @returns {string} A string representing the collection.
477
+ */
478
+ matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
479
+ /**
480
+ * Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
481
+ *
482
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
483
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
484
+ * @returns {string} A string representing the data_store.
485
+ */
486
+ matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
487
+ /**
488
+ * Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
489
+ *
490
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
491
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
492
+ * @returns {string} A string representing the branch.
493
+ */
494
+ matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
495
+ /**
496
+ * Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
497
+ *
498
+ * @param {string} projectLocationCollectionDataStoreBranchDocumentName
499
+ * A fully-qualified path representing project_location_collection_data_store_branch_document resource.
500
+ * @returns {string} A string representing the document.
501
+ */
502
+ matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
503
+ /**
504
+ * Return a fully-qualified projectLocationCollectionDataStoreControl resource name string.
505
+ *
506
+ * @param {string} project
507
+ * @param {string} location
508
+ * @param {string} collection
509
+ * @param {string} data_store
510
+ * @param {string} control
511
+ * @returns {string} Resource name string.
512
+ */
513
+ projectLocationCollectionDataStoreControlPath(project: string, location: string, collection: string, dataStore: string, control: string): string;
514
+ /**
515
+ * Parse the project from ProjectLocationCollectionDataStoreControl resource.
516
+ *
517
+ * @param {string} projectLocationCollectionDataStoreControlName
518
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
519
+ * @returns {string} A string representing the project.
520
+ */
521
+ matchProjectFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
522
+ /**
523
+ * Parse the location from ProjectLocationCollectionDataStoreControl resource.
524
+ *
525
+ * @param {string} projectLocationCollectionDataStoreControlName
526
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
527
+ * @returns {string} A string representing the location.
528
+ */
529
+ matchLocationFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
530
+ /**
531
+ * Parse the collection from ProjectLocationCollectionDataStoreControl resource.
532
+ *
533
+ * @param {string} projectLocationCollectionDataStoreControlName
534
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
535
+ * @returns {string} A string representing the collection.
536
+ */
537
+ matchCollectionFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
538
+ /**
539
+ * Parse the data_store from ProjectLocationCollectionDataStoreControl resource.
540
+ *
541
+ * @param {string} projectLocationCollectionDataStoreControlName
542
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
543
+ * @returns {string} A string representing the data_store.
544
+ */
545
+ matchDataStoreFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
546
+ /**
547
+ * Parse the control from ProjectLocationCollectionDataStoreControl resource.
548
+ *
549
+ * @param {string} projectLocationCollectionDataStoreControlName
550
+ * A fully-qualified path representing project_location_collection_data_store_control resource.
551
+ * @returns {string} A string representing the control.
552
+ */
553
+ matchControlFromProjectLocationCollectionDataStoreControlName(projectLocationCollectionDataStoreControlName: string): string | number;
554
+ /**
555
+ * Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
556
+ *
557
+ * @param {string} project
558
+ * @param {string} location
559
+ * @param {string} collection
560
+ * @param {string} data_store
561
+ * @param {string} conversation
562
+ * @returns {string} Resource name string.
563
+ */
564
+ projectLocationCollectionDataStoreConversationPath(project: string, location: string, collection: string, dataStore: string, conversation: string): string;
565
+ /**
566
+ * Parse the project from ProjectLocationCollectionDataStoreConversation resource.
567
+ *
568
+ * @param {string} projectLocationCollectionDataStoreConversationName
569
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
570
+ * @returns {string} A string representing the project.
571
+ */
572
+ matchProjectFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
573
+ /**
574
+ * Parse the location from ProjectLocationCollectionDataStoreConversation resource.
575
+ *
576
+ * @param {string} projectLocationCollectionDataStoreConversationName
577
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
578
+ * @returns {string} A string representing the location.
579
+ */
580
+ matchLocationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
581
+ /**
582
+ * Parse the collection from ProjectLocationCollectionDataStoreConversation resource.
583
+ *
584
+ * @param {string} projectLocationCollectionDataStoreConversationName
585
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
586
+ * @returns {string} A string representing the collection.
587
+ */
588
+ matchCollectionFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
589
+ /**
590
+ * Parse the data_store from ProjectLocationCollectionDataStoreConversation resource.
591
+ *
592
+ * @param {string} projectLocationCollectionDataStoreConversationName
593
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
594
+ * @returns {string} A string representing the data_store.
595
+ */
596
+ matchDataStoreFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
597
+ /**
598
+ * Parse the conversation from ProjectLocationCollectionDataStoreConversation resource.
599
+ *
600
+ * @param {string} projectLocationCollectionDataStoreConversationName
601
+ * A fully-qualified path representing project_location_collection_data_store_conversation resource.
602
+ * @returns {string} A string representing the conversation.
603
+ */
604
+ matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
605
+ /**
606
+ * Return a fully-qualified projectLocationCollectionDataStoreCustomTuningModel resource name string.
607
+ *
608
+ * @param {string} project
609
+ * @param {string} location
610
+ * @param {string} collection
611
+ * @param {string} data_store
612
+ * @param {string} custom_tuning_model
613
+ * @returns {string} Resource name string.
614
+ */
615
+ projectLocationCollectionDataStoreCustomTuningModelPath(project: string, location: string, collection: string, dataStore: string, customTuningModel: string): string;
616
+ /**
617
+ * Parse the project from ProjectLocationCollectionDataStoreCustomTuningModel resource.
618
+ *
619
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
620
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
621
+ * @returns {string} A string representing the project.
622
+ */
623
+ matchProjectFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
624
+ /**
625
+ * Parse the location from ProjectLocationCollectionDataStoreCustomTuningModel resource.
626
+ *
627
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
628
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
629
+ * @returns {string} A string representing the location.
630
+ */
631
+ matchLocationFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
632
+ /**
633
+ * Parse the collection from ProjectLocationCollectionDataStoreCustomTuningModel resource.
634
+ *
635
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
636
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
637
+ * @returns {string} A string representing the collection.
638
+ */
639
+ matchCollectionFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
640
+ /**
641
+ * Parse the data_store from ProjectLocationCollectionDataStoreCustomTuningModel resource.
642
+ *
643
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
644
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
645
+ * @returns {string} A string representing the data_store.
646
+ */
647
+ matchDataStoreFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
648
+ /**
649
+ * Parse the custom_tuning_model from ProjectLocationCollectionDataStoreCustomTuningModel resource.
650
+ *
651
+ * @param {string} projectLocationCollectionDataStoreCustomTuningModelName
652
+ * A fully-qualified path representing project_location_collection_data_store_custom_tuning_model resource.
653
+ * @returns {string} A string representing the custom_tuning_model.
654
+ */
655
+ matchCustomTuningModelFromProjectLocationCollectionDataStoreCustomTuningModelName(projectLocationCollectionDataStoreCustomTuningModelName: string): string | number;
656
+ /**
657
+ * Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
658
+ *
659
+ * @param {string} project
660
+ * @param {string} location
661
+ * @param {string} collection
662
+ * @param {string} data_store
663
+ * @returns {string} Resource name string.
664
+ */
665
+ projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
666
+ /**
667
+ * Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
668
+ *
669
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
670
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
671
+ * @returns {string} A string representing the project.
672
+ */
673
+ matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
674
+ /**
675
+ * Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
676
+ *
677
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
678
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
679
+ * @returns {string} A string representing the location.
680
+ */
681
+ matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
682
+ /**
683
+ * Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
684
+ *
685
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
686
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
687
+ * @returns {string} A string representing the collection.
688
+ */
689
+ matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
690
+ /**
691
+ * Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
692
+ *
693
+ * @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
694
+ * A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
695
+ * @returns {string} A string representing the data_store.
696
+ */
697
+ matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
698
+ /**
699
+ * Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
700
+ *
701
+ * @param {string} project
702
+ * @param {string} location
703
+ * @param {string} collection
704
+ * @param {string} data_store
705
+ * @param {string} schema
706
+ * @returns {string} Resource name string.
707
+ */
708
+ projectLocationCollectionDataStoreSchemaPath(project: string, location: string, collection: string, dataStore: string, schema: string): string;
709
+ /**
710
+ * Parse the project from ProjectLocationCollectionDataStoreSchema resource.
711
+ *
712
+ * @param {string} projectLocationCollectionDataStoreSchemaName
713
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
714
+ * @returns {string} A string representing the project.
715
+ */
716
+ matchProjectFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
717
+ /**
718
+ * Parse the location from ProjectLocationCollectionDataStoreSchema resource.
719
+ *
720
+ * @param {string} projectLocationCollectionDataStoreSchemaName
721
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
722
+ * @returns {string} A string representing the location.
723
+ */
724
+ matchLocationFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
725
+ /**
726
+ * Parse the collection from ProjectLocationCollectionDataStoreSchema resource.
727
+ *
728
+ * @param {string} projectLocationCollectionDataStoreSchemaName
729
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
730
+ * @returns {string} A string representing the collection.
731
+ */
732
+ matchCollectionFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
733
+ /**
734
+ * Parse the data_store from ProjectLocationCollectionDataStoreSchema resource.
735
+ *
736
+ * @param {string} projectLocationCollectionDataStoreSchemaName
737
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
738
+ * @returns {string} A string representing the data_store.
739
+ */
740
+ matchDataStoreFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
741
+ /**
742
+ * Parse the schema from ProjectLocationCollectionDataStoreSchema resource.
743
+ *
744
+ * @param {string} projectLocationCollectionDataStoreSchemaName
745
+ * A fully-qualified path representing project_location_collection_data_store_schema resource.
746
+ * @returns {string} A string representing the schema.
747
+ */
748
+ matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
749
+ /**
750
+ * Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
751
+ *
752
+ * @param {string} project
753
+ * @param {string} location
754
+ * @param {string} collection
755
+ * @param {string} data_store
756
+ * @param {string} serving_config
757
+ * @returns {string} Resource name string.
758
+ */
759
+ projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
760
+ /**
761
+ * Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
762
+ *
763
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
764
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
765
+ * @returns {string} A string representing the project.
766
+ */
767
+ matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
768
+ /**
769
+ * Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
770
+ *
771
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
772
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
773
+ * @returns {string} A string representing the location.
774
+ */
775
+ matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
776
+ /**
777
+ * Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
778
+ *
779
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
780
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
781
+ * @returns {string} A string representing the collection.
782
+ */
783
+ matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
784
+ /**
785
+ * Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
786
+ *
787
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
788
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
789
+ * @returns {string} A string representing the data_store.
790
+ */
791
+ matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
792
+ /**
793
+ * Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
794
+ *
795
+ * @param {string} projectLocationCollectionDataStoreServingConfigName
796
+ * A fully-qualified path representing project_location_collection_data_store_serving_config resource.
797
+ * @returns {string} A string representing the serving_config.
798
+ */
799
+ matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
800
+ /**
801
+ * Return a fully-qualified projectLocationCollectionDataStoreSession resource name string.
802
+ *
803
+ * @param {string} project
804
+ * @param {string} location
805
+ * @param {string} collection
806
+ * @param {string} data_store
807
+ * @param {string} session
808
+ * @returns {string} Resource name string.
809
+ */
810
+ projectLocationCollectionDataStoreSessionPath(project: string, location: string, collection: string, dataStore: string, session: string): string;
811
+ /**
812
+ * Parse the project from ProjectLocationCollectionDataStoreSession resource.
813
+ *
814
+ * @param {string} projectLocationCollectionDataStoreSessionName
815
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
816
+ * @returns {string} A string representing the project.
817
+ */
818
+ matchProjectFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
819
+ /**
820
+ * Parse the location from ProjectLocationCollectionDataStoreSession resource.
821
+ *
822
+ * @param {string} projectLocationCollectionDataStoreSessionName
823
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
824
+ * @returns {string} A string representing the location.
825
+ */
826
+ matchLocationFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
827
+ /**
828
+ * Parse the collection from ProjectLocationCollectionDataStoreSession resource.
829
+ *
830
+ * @param {string} projectLocationCollectionDataStoreSessionName
831
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
832
+ * @returns {string} A string representing the collection.
833
+ */
834
+ matchCollectionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
835
+ /**
836
+ * Parse the data_store from ProjectLocationCollectionDataStoreSession resource.
837
+ *
838
+ * @param {string} projectLocationCollectionDataStoreSessionName
839
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
840
+ * @returns {string} A string representing the data_store.
841
+ */
842
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
843
+ /**
844
+ * Parse the session from ProjectLocationCollectionDataStoreSession resource.
845
+ *
846
+ * @param {string} projectLocationCollectionDataStoreSessionName
847
+ * A fully-qualified path representing project_location_collection_data_store_session resource.
848
+ * @returns {string} A string representing the session.
849
+ */
850
+ matchSessionFromProjectLocationCollectionDataStoreSessionName(projectLocationCollectionDataStoreSessionName: string): string | number;
851
+ /**
852
+ * Return a fully-qualified projectLocationCollectionDataStoreSessionAnswer resource name string.
853
+ *
854
+ * @param {string} project
855
+ * @param {string} location
856
+ * @param {string} collection
857
+ * @param {string} data_store
858
+ * @param {string} session
859
+ * @param {string} answer
860
+ * @returns {string} Resource name string.
861
+ */
862
+ projectLocationCollectionDataStoreSessionAnswerPath(project: string, location: string, collection: string, dataStore: string, session: string, answer: string): string;
863
+ /**
864
+ * Parse the project from ProjectLocationCollectionDataStoreSessionAnswer resource.
865
+ *
866
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
867
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
868
+ * @returns {string} A string representing the project.
869
+ */
870
+ matchProjectFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
871
+ /**
872
+ * Parse the location from ProjectLocationCollectionDataStoreSessionAnswer resource.
873
+ *
874
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
875
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
876
+ * @returns {string} A string representing the location.
877
+ */
878
+ matchLocationFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
879
+ /**
880
+ * Parse the collection from ProjectLocationCollectionDataStoreSessionAnswer resource.
881
+ *
882
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
883
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
884
+ * @returns {string} A string representing the collection.
885
+ */
886
+ matchCollectionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
887
+ /**
888
+ * Parse the data_store from ProjectLocationCollectionDataStoreSessionAnswer resource.
889
+ *
890
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
891
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
892
+ * @returns {string} A string representing the data_store.
893
+ */
894
+ matchDataStoreFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
895
+ /**
896
+ * Parse the session from ProjectLocationCollectionDataStoreSessionAnswer resource.
897
+ *
898
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
899
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
900
+ * @returns {string} A string representing the session.
901
+ */
902
+ matchSessionFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
903
+ /**
904
+ * Parse the answer from ProjectLocationCollectionDataStoreSessionAnswer resource.
905
+ *
906
+ * @param {string} projectLocationCollectionDataStoreSessionAnswerName
907
+ * A fully-qualified path representing project_location_collection_data_store_session_answer resource.
908
+ * @returns {string} A string representing the answer.
909
+ */
910
+ matchAnswerFromProjectLocationCollectionDataStoreSessionAnswerName(projectLocationCollectionDataStoreSessionAnswerName: string): string | number;
911
+ /**
912
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
913
+ *
914
+ * @param {string} project
915
+ * @param {string} location
916
+ * @param {string} collection
917
+ * @param {string} data_store
918
+ * @returns {string} Resource name string.
919
+ */
920
+ projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
921
+ /**
922
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
923
+ *
924
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
925
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
926
+ * @returns {string} A string representing the project.
927
+ */
928
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
929
+ /**
930
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
931
+ *
932
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
933
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
934
+ * @returns {string} A string representing the location.
935
+ */
936
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
937
+ /**
938
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
939
+ *
940
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
941
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
942
+ * @returns {string} A string representing the collection.
943
+ */
944
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
945
+ /**
946
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
947
+ *
948
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
949
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
950
+ * @returns {string} A string representing the data_store.
951
+ */
952
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
953
+ /**
954
+ * Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
955
+ *
956
+ * @param {string} project
957
+ * @param {string} location
958
+ * @param {string} collection
959
+ * @param {string} data_store
960
+ * @param {string} target_site
961
+ * @returns {string} Resource name string.
962
+ */
963
+ projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
964
+ /**
965
+ * Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
966
+ *
967
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
968
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
969
+ * @returns {string} A string representing the project.
970
+ */
971
+ matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
972
+ /**
973
+ * Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
974
+ *
975
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
976
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
977
+ * @returns {string} A string representing the location.
978
+ */
979
+ matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
980
+ /**
981
+ * Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
982
+ *
983
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
984
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
985
+ * @returns {string} A string representing the collection.
986
+ */
987
+ matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
988
+ /**
989
+ * Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
990
+ *
991
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
992
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
993
+ * @returns {string} A string representing the data_store.
994
+ */
995
+ matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
996
+ /**
997
+ * Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
998
+ *
999
+ * @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
1000
+ * A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
1001
+ * @returns {string} A string representing the target_site.
1002
+ */
1003
+ matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1004
+ /**
1005
+ * Return a fully-qualified projectLocationCollectionEngineControl resource name string.
1006
+ *
1007
+ * @param {string} project
1008
+ * @param {string} location
1009
+ * @param {string} collection
1010
+ * @param {string} engine
1011
+ * @param {string} control
1012
+ * @returns {string} Resource name string.
1013
+ */
1014
+ projectLocationCollectionEngineControlPath(project: string, location: string, collection: string, engine: string, control: string): string;
1015
+ /**
1016
+ * Parse the project from ProjectLocationCollectionEngineControl resource.
1017
+ *
1018
+ * @param {string} projectLocationCollectionEngineControlName
1019
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1020
+ * @returns {string} A string representing the project.
1021
+ */
1022
+ matchProjectFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1023
+ /**
1024
+ * Parse the location from ProjectLocationCollectionEngineControl resource.
1025
+ *
1026
+ * @param {string} projectLocationCollectionEngineControlName
1027
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1028
+ * @returns {string} A string representing the location.
1029
+ */
1030
+ matchLocationFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1031
+ /**
1032
+ * Parse the collection from ProjectLocationCollectionEngineControl resource.
1033
+ *
1034
+ * @param {string} projectLocationCollectionEngineControlName
1035
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1036
+ * @returns {string} A string representing the collection.
1037
+ */
1038
+ matchCollectionFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1039
+ /**
1040
+ * Parse the engine from ProjectLocationCollectionEngineControl resource.
1041
+ *
1042
+ * @param {string} projectLocationCollectionEngineControlName
1043
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1044
+ * @returns {string} A string representing the engine.
1045
+ */
1046
+ matchEngineFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1047
+ /**
1048
+ * Parse the control from ProjectLocationCollectionEngineControl resource.
1049
+ *
1050
+ * @param {string} projectLocationCollectionEngineControlName
1051
+ * A fully-qualified path representing project_location_collection_engine_control resource.
1052
+ * @returns {string} A string representing the control.
1053
+ */
1054
+ matchControlFromProjectLocationCollectionEngineControlName(projectLocationCollectionEngineControlName: string): string | number;
1055
+ /**
1056
+ * Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
1057
+ *
1058
+ * @param {string} project
1059
+ * @param {string} location
1060
+ * @param {string} collection
1061
+ * @param {string} engine
1062
+ * @param {string} conversation
1063
+ * @returns {string} Resource name string.
1064
+ */
1065
+ projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
1066
+ /**
1067
+ * Parse the project from ProjectLocationCollectionEngineConversation resource.
1068
+ *
1069
+ * @param {string} projectLocationCollectionEngineConversationName
1070
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1071
+ * @returns {string} A string representing the project.
1072
+ */
1073
+ matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1074
+ /**
1075
+ * Parse the location from ProjectLocationCollectionEngineConversation resource.
1076
+ *
1077
+ * @param {string} projectLocationCollectionEngineConversationName
1078
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1079
+ * @returns {string} A string representing the location.
1080
+ */
1081
+ matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1082
+ /**
1083
+ * Parse the collection from ProjectLocationCollectionEngineConversation resource.
1084
+ *
1085
+ * @param {string} projectLocationCollectionEngineConversationName
1086
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1087
+ * @returns {string} A string representing the collection.
1088
+ */
1089
+ matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1090
+ /**
1091
+ * Parse the engine from ProjectLocationCollectionEngineConversation resource.
1092
+ *
1093
+ * @param {string} projectLocationCollectionEngineConversationName
1094
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1095
+ * @returns {string} A string representing the engine.
1096
+ */
1097
+ matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1098
+ /**
1099
+ * Parse the conversation from ProjectLocationCollectionEngineConversation resource.
1100
+ *
1101
+ * @param {string} projectLocationCollectionEngineConversationName
1102
+ * A fully-qualified path representing project_location_collection_engine_conversation resource.
1103
+ * @returns {string} A string representing the conversation.
1104
+ */
1105
+ matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
1106
+ /**
1107
+ * Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
1108
+ *
1109
+ * @param {string} project
1110
+ * @param {string} location
1111
+ * @param {string} collection
1112
+ * @param {string} engine
1113
+ * @param {string} serving_config
1114
+ * @returns {string} Resource name string.
1115
+ */
1116
+ projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
1117
+ /**
1118
+ * Parse the project from ProjectLocationCollectionEngineServingConfig resource.
1119
+ *
1120
+ * @param {string} projectLocationCollectionEngineServingConfigName
1121
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1122
+ * @returns {string} A string representing the project.
1123
+ */
1124
+ matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1125
+ /**
1126
+ * Parse the location from ProjectLocationCollectionEngineServingConfig resource.
1127
+ *
1128
+ * @param {string} projectLocationCollectionEngineServingConfigName
1129
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1130
+ * @returns {string} A string representing the location.
1131
+ */
1132
+ matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1133
+ /**
1134
+ * Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
1135
+ *
1136
+ * @param {string} projectLocationCollectionEngineServingConfigName
1137
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1138
+ * @returns {string} A string representing the collection.
1139
+ */
1140
+ matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1141
+ /**
1142
+ * Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
1143
+ *
1144
+ * @param {string} projectLocationCollectionEngineServingConfigName
1145
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1146
+ * @returns {string} A string representing the engine.
1147
+ */
1148
+ matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1149
+ /**
1150
+ * Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
1151
+ *
1152
+ * @param {string} projectLocationCollectionEngineServingConfigName
1153
+ * A fully-qualified path representing project_location_collection_engine_serving_config resource.
1154
+ * @returns {string} A string representing the serving_config.
1155
+ */
1156
+ matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
1157
+ /**
1158
+ * Return a fully-qualified projectLocationCollectionEngineSession resource name string.
1159
+ *
1160
+ * @param {string} project
1161
+ * @param {string} location
1162
+ * @param {string} collection
1163
+ * @param {string} engine
1164
+ * @param {string} session
1165
+ * @returns {string} Resource name string.
1166
+ */
1167
+ projectLocationCollectionEngineSessionPath(project: string, location: string, collection: string, engine: string, session: string): string;
1168
+ /**
1169
+ * Parse the project from ProjectLocationCollectionEngineSession resource.
1170
+ *
1171
+ * @param {string} projectLocationCollectionEngineSessionName
1172
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1173
+ * @returns {string} A string representing the project.
1174
+ */
1175
+ matchProjectFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1176
+ /**
1177
+ * Parse the location from ProjectLocationCollectionEngineSession resource.
1178
+ *
1179
+ * @param {string} projectLocationCollectionEngineSessionName
1180
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1181
+ * @returns {string} A string representing the location.
1182
+ */
1183
+ matchLocationFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1184
+ /**
1185
+ * Parse the collection from ProjectLocationCollectionEngineSession resource.
1186
+ *
1187
+ * @param {string} projectLocationCollectionEngineSessionName
1188
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1189
+ * @returns {string} A string representing the collection.
1190
+ */
1191
+ matchCollectionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1192
+ /**
1193
+ * Parse the engine from ProjectLocationCollectionEngineSession resource.
1194
+ *
1195
+ * @param {string} projectLocationCollectionEngineSessionName
1196
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1197
+ * @returns {string} A string representing the engine.
1198
+ */
1199
+ matchEngineFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1200
+ /**
1201
+ * Parse the session from ProjectLocationCollectionEngineSession resource.
1202
+ *
1203
+ * @param {string} projectLocationCollectionEngineSessionName
1204
+ * A fully-qualified path representing project_location_collection_engine_session resource.
1205
+ * @returns {string} A string representing the session.
1206
+ */
1207
+ matchSessionFromProjectLocationCollectionEngineSessionName(projectLocationCollectionEngineSessionName: string): string | number;
1208
+ /**
1209
+ * Return a fully-qualified projectLocationCollectionEngineSessionAnswer resource name string.
1210
+ *
1211
+ * @param {string} project
1212
+ * @param {string} location
1213
+ * @param {string} collection
1214
+ * @param {string} engine
1215
+ * @param {string} session
1216
+ * @param {string} answer
1217
+ * @returns {string} Resource name string.
1218
+ */
1219
+ projectLocationCollectionEngineSessionAnswerPath(project: string, location: string, collection: string, engine: string, session: string, answer: string): string;
1220
+ /**
1221
+ * Parse the project from ProjectLocationCollectionEngineSessionAnswer resource.
1222
+ *
1223
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1224
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1225
+ * @returns {string} A string representing the project.
1226
+ */
1227
+ matchProjectFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1228
+ /**
1229
+ * Parse the location from ProjectLocationCollectionEngineSessionAnswer resource.
1230
+ *
1231
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1232
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1233
+ * @returns {string} A string representing the location.
1234
+ */
1235
+ matchLocationFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1236
+ /**
1237
+ * Parse the collection from ProjectLocationCollectionEngineSessionAnswer resource.
1238
+ *
1239
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1240
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1241
+ * @returns {string} A string representing the collection.
1242
+ */
1243
+ matchCollectionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1244
+ /**
1245
+ * Parse the engine from ProjectLocationCollectionEngineSessionAnswer resource.
1246
+ *
1247
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1248
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1249
+ * @returns {string} A string representing the engine.
1250
+ */
1251
+ matchEngineFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1252
+ /**
1253
+ * Parse the session from ProjectLocationCollectionEngineSessionAnswer resource.
1254
+ *
1255
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1256
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1257
+ * @returns {string} A string representing the session.
1258
+ */
1259
+ matchSessionFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1260
+ /**
1261
+ * Parse the answer from ProjectLocationCollectionEngineSessionAnswer resource.
1262
+ *
1263
+ * @param {string} projectLocationCollectionEngineSessionAnswerName
1264
+ * A fully-qualified path representing project_location_collection_engine_session_answer resource.
1265
+ * @returns {string} A string representing the answer.
1266
+ */
1267
+ matchAnswerFromProjectLocationCollectionEngineSessionAnswerName(projectLocationCollectionEngineSessionAnswerName: string): string | number;
1268
+ /**
1269
+ * Return a fully-qualified projectLocationDataStore resource name string.
1270
+ *
1271
+ * @param {string} project
1272
+ * @param {string} location
1273
+ * @param {string} data_store
1274
+ * @returns {string} Resource name string.
1275
+ */
1276
+ projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
1277
+ /**
1278
+ * Parse the project from ProjectLocationDataStore resource.
1279
+ *
1280
+ * @param {string} projectLocationDataStoreName
1281
+ * A fully-qualified path representing project_location_data_store resource.
1282
+ * @returns {string} A string representing the project.
1283
+ */
1284
+ matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1285
+ /**
1286
+ * Parse the location from ProjectLocationDataStore resource.
1287
+ *
1288
+ * @param {string} projectLocationDataStoreName
1289
+ * A fully-qualified path representing project_location_data_store resource.
1290
+ * @returns {string} A string representing the location.
1291
+ */
1292
+ matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1293
+ /**
1294
+ * Parse the data_store from ProjectLocationDataStore resource.
1295
+ *
1296
+ * @param {string} projectLocationDataStoreName
1297
+ * A fully-qualified path representing project_location_data_store resource.
1298
+ * @returns {string} A string representing the data_store.
1299
+ */
1300
+ matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
1301
+ /**
1302
+ * Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
1303
+ *
1304
+ * @param {string} project
1305
+ * @param {string} location
1306
+ * @param {string} data_store
1307
+ * @param {string} branch
1308
+ * @param {string} document
1309
+ * @returns {string} Resource name string.
1310
+ */
1311
+ projectLocationDataStoreBranchDocumentPath(project: string, location: string, dataStore: string, branch: string, document: string): string;
1312
+ /**
1313
+ * Parse the project from ProjectLocationDataStoreBranchDocument resource.
1314
+ *
1315
+ * @param {string} projectLocationDataStoreBranchDocumentName
1316
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1317
+ * @returns {string} A string representing the project.
1318
+ */
1319
+ matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1320
+ /**
1321
+ * Parse the location from ProjectLocationDataStoreBranchDocument resource.
1322
+ *
1323
+ * @param {string} projectLocationDataStoreBranchDocumentName
1324
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1325
+ * @returns {string} A string representing the location.
1326
+ */
1327
+ matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1328
+ /**
1329
+ * Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
1330
+ *
1331
+ * @param {string} projectLocationDataStoreBranchDocumentName
1332
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1333
+ * @returns {string} A string representing the data_store.
1334
+ */
1335
+ matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1336
+ /**
1337
+ * Parse the branch from ProjectLocationDataStoreBranchDocument resource.
1338
+ *
1339
+ * @param {string} projectLocationDataStoreBranchDocumentName
1340
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1341
+ * @returns {string} A string representing the branch.
1342
+ */
1343
+ matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1344
+ /**
1345
+ * Parse the document from ProjectLocationDataStoreBranchDocument resource.
1346
+ *
1347
+ * @param {string} projectLocationDataStoreBranchDocumentName
1348
+ * A fully-qualified path representing project_location_data_store_branch_document resource.
1349
+ * @returns {string} A string representing the document.
1350
+ */
1351
+ matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
1352
+ /**
1353
+ * Return a fully-qualified projectLocationDataStoreControl resource name string.
1354
+ *
1355
+ * @param {string} project
1356
+ * @param {string} location
1357
+ * @param {string} data_store
1358
+ * @param {string} control
1359
+ * @returns {string} Resource name string.
1360
+ */
1361
+ projectLocationDataStoreControlPath(project: string, location: string, dataStore: string, control: string): string;
1362
+ /**
1363
+ * Parse the project from ProjectLocationDataStoreControl resource.
1364
+ *
1365
+ * @param {string} projectLocationDataStoreControlName
1366
+ * A fully-qualified path representing project_location_data_store_control resource.
1367
+ * @returns {string} A string representing the project.
1368
+ */
1369
+ matchProjectFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1370
+ /**
1371
+ * Parse the location from ProjectLocationDataStoreControl resource.
1372
+ *
1373
+ * @param {string} projectLocationDataStoreControlName
1374
+ * A fully-qualified path representing project_location_data_store_control resource.
1375
+ * @returns {string} A string representing the location.
1376
+ */
1377
+ matchLocationFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1378
+ /**
1379
+ * Parse the data_store from ProjectLocationDataStoreControl resource.
1380
+ *
1381
+ * @param {string} projectLocationDataStoreControlName
1382
+ * A fully-qualified path representing project_location_data_store_control resource.
1383
+ * @returns {string} A string representing the data_store.
1384
+ */
1385
+ matchDataStoreFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1386
+ /**
1387
+ * Parse the control from ProjectLocationDataStoreControl resource.
1388
+ *
1389
+ * @param {string} projectLocationDataStoreControlName
1390
+ * A fully-qualified path representing project_location_data_store_control resource.
1391
+ * @returns {string} A string representing the control.
1392
+ */
1393
+ matchControlFromProjectLocationDataStoreControlName(projectLocationDataStoreControlName: string): string | number;
1394
+ /**
1395
+ * Return a fully-qualified projectLocationDataStoreConversation resource name string.
1396
+ *
1397
+ * @param {string} project
1398
+ * @param {string} location
1399
+ * @param {string} data_store
1400
+ * @param {string} conversation
1401
+ * @returns {string} Resource name string.
1402
+ */
1403
+ projectLocationDataStoreConversationPath(project: string, location: string, dataStore: string, conversation: string): string;
1404
+ /**
1405
+ * Parse the project from ProjectLocationDataStoreConversation resource.
1406
+ *
1407
+ * @param {string} projectLocationDataStoreConversationName
1408
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1409
+ * @returns {string} A string representing the project.
1410
+ */
1411
+ matchProjectFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1412
+ /**
1413
+ * Parse the location from ProjectLocationDataStoreConversation resource.
1414
+ *
1415
+ * @param {string} projectLocationDataStoreConversationName
1416
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1417
+ * @returns {string} A string representing the location.
1418
+ */
1419
+ matchLocationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1420
+ /**
1421
+ * Parse the data_store from ProjectLocationDataStoreConversation resource.
1422
+ *
1423
+ * @param {string} projectLocationDataStoreConversationName
1424
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1425
+ * @returns {string} A string representing the data_store.
1426
+ */
1427
+ matchDataStoreFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1428
+ /**
1429
+ * Parse the conversation from ProjectLocationDataStoreConversation resource.
1430
+ *
1431
+ * @param {string} projectLocationDataStoreConversationName
1432
+ * A fully-qualified path representing project_location_data_store_conversation resource.
1433
+ * @returns {string} A string representing the conversation.
1434
+ */
1435
+ matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
1436
+ /**
1437
+ * Return a fully-qualified projectLocationDataStoreCustomTuningModel resource name string.
1438
+ *
1439
+ * @param {string} project
1440
+ * @param {string} location
1441
+ * @param {string} data_store
1442
+ * @param {string} custom_tuning_model
1443
+ * @returns {string} Resource name string.
1444
+ */
1445
+ projectLocationDataStoreCustomTuningModelPath(project: string, location: string, dataStore: string, customTuningModel: string): string;
1446
+ /**
1447
+ * Parse the project from ProjectLocationDataStoreCustomTuningModel resource.
1448
+ *
1449
+ * @param {string} projectLocationDataStoreCustomTuningModelName
1450
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
1451
+ * @returns {string} A string representing the project.
1452
+ */
1453
+ matchProjectFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName: string): string | number;
1454
+ /**
1455
+ * Parse the location from ProjectLocationDataStoreCustomTuningModel resource.
1456
+ *
1457
+ * @param {string} projectLocationDataStoreCustomTuningModelName
1458
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
1459
+ * @returns {string} A string representing the location.
1460
+ */
1461
+ matchLocationFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName: string): string | number;
1462
+ /**
1463
+ * Parse the data_store from ProjectLocationDataStoreCustomTuningModel resource.
1464
+ *
1465
+ * @param {string} projectLocationDataStoreCustomTuningModelName
1466
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
1467
+ * @returns {string} A string representing the data_store.
1468
+ */
1469
+ matchDataStoreFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName: string): string | number;
1470
+ /**
1471
+ * Parse the custom_tuning_model from ProjectLocationDataStoreCustomTuningModel resource.
1472
+ *
1473
+ * @param {string} projectLocationDataStoreCustomTuningModelName
1474
+ * A fully-qualified path representing project_location_data_store_custom_tuning_model resource.
1475
+ * @returns {string} A string representing the custom_tuning_model.
1476
+ */
1477
+ matchCustomTuningModelFromProjectLocationDataStoreCustomTuningModelName(projectLocationDataStoreCustomTuningModelName: string): string | number;
1478
+ /**
1479
+ * Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
1480
+ *
1481
+ * @param {string} project
1482
+ * @param {string} location
1483
+ * @param {string} data_store
1484
+ * @returns {string} Resource name string.
1485
+ */
1486
+ projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
1487
+ /**
1488
+ * Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
1489
+ *
1490
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1491
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1492
+ * @returns {string} A string representing the project.
1493
+ */
1494
+ matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1495
+ /**
1496
+ * Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
1497
+ *
1498
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1499
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1500
+ * @returns {string} A string representing the location.
1501
+ */
1502
+ matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1503
+ /**
1504
+ * Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
1505
+ *
1506
+ * @param {string} projectLocationDataStoreDocumentProcessingConfigName
1507
+ * A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
1508
+ * @returns {string} A string representing the data_store.
1509
+ */
1510
+ matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
1511
+ /**
1512
+ * Return a fully-qualified projectLocationDataStoreSchema resource name string.
1513
+ *
1514
+ * @param {string} project
1515
+ * @param {string} location
1516
+ * @param {string} data_store
1517
+ * @param {string} schema
1518
+ * @returns {string} Resource name string.
1519
+ */
1520
+ projectLocationDataStoreSchemaPath(project: string, location: string, dataStore: string, schema: string): string;
1521
+ /**
1522
+ * Parse the project from ProjectLocationDataStoreSchema resource.
1523
+ *
1524
+ * @param {string} projectLocationDataStoreSchemaName
1525
+ * A fully-qualified path representing project_location_data_store_schema resource.
1526
+ * @returns {string} A string representing the project.
1527
+ */
1528
+ matchProjectFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1529
+ /**
1530
+ * Parse the location from ProjectLocationDataStoreSchema resource.
1531
+ *
1532
+ * @param {string} projectLocationDataStoreSchemaName
1533
+ * A fully-qualified path representing project_location_data_store_schema resource.
1534
+ * @returns {string} A string representing the location.
1535
+ */
1536
+ matchLocationFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1537
+ /**
1538
+ * Parse the data_store from ProjectLocationDataStoreSchema resource.
1539
+ *
1540
+ * @param {string} projectLocationDataStoreSchemaName
1541
+ * A fully-qualified path representing project_location_data_store_schema resource.
1542
+ * @returns {string} A string representing the data_store.
1543
+ */
1544
+ matchDataStoreFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1545
+ /**
1546
+ * Parse the schema from ProjectLocationDataStoreSchema resource.
1547
+ *
1548
+ * @param {string} projectLocationDataStoreSchemaName
1549
+ * A fully-qualified path representing project_location_data_store_schema resource.
1550
+ * @returns {string} A string representing the schema.
1551
+ */
1552
+ matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
1553
+ /**
1554
+ * Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
1555
+ *
1556
+ * @param {string} project
1557
+ * @param {string} location
1558
+ * @param {string} data_store
1559
+ * @param {string} serving_config
1560
+ * @returns {string} Resource name string.
1561
+ */
1562
+ projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
1563
+ /**
1564
+ * Parse the project from ProjectLocationDataStoreServingConfig resource.
1565
+ *
1566
+ * @param {string} projectLocationDataStoreServingConfigName
1567
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1568
+ * @returns {string} A string representing the project.
1569
+ */
1570
+ matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1571
+ /**
1572
+ * Parse the location from ProjectLocationDataStoreServingConfig resource.
1573
+ *
1574
+ * @param {string} projectLocationDataStoreServingConfigName
1575
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1576
+ * @returns {string} A string representing the location.
1577
+ */
1578
+ matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1579
+ /**
1580
+ * Parse the data_store from ProjectLocationDataStoreServingConfig resource.
1581
+ *
1582
+ * @param {string} projectLocationDataStoreServingConfigName
1583
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1584
+ * @returns {string} A string representing the data_store.
1585
+ */
1586
+ matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1587
+ /**
1588
+ * Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
1589
+ *
1590
+ * @param {string} projectLocationDataStoreServingConfigName
1591
+ * A fully-qualified path representing project_location_data_store_serving_config resource.
1592
+ * @returns {string} A string representing the serving_config.
1593
+ */
1594
+ matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
1595
+ /**
1596
+ * Return a fully-qualified projectLocationDataStoreSession resource name string.
1597
+ *
1598
+ * @param {string} project
1599
+ * @param {string} location
1600
+ * @param {string} data_store
1601
+ * @param {string} session
1602
+ * @returns {string} Resource name string.
1603
+ */
1604
+ projectLocationDataStoreSessionPath(project: string, location: string, dataStore: string, session: string): string;
1605
+ /**
1606
+ * Parse the project from ProjectLocationDataStoreSession resource.
1607
+ *
1608
+ * @param {string} projectLocationDataStoreSessionName
1609
+ * A fully-qualified path representing project_location_data_store_session resource.
1610
+ * @returns {string} A string representing the project.
1611
+ */
1612
+ matchProjectFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1613
+ /**
1614
+ * Parse the location from ProjectLocationDataStoreSession resource.
1615
+ *
1616
+ * @param {string} projectLocationDataStoreSessionName
1617
+ * A fully-qualified path representing project_location_data_store_session resource.
1618
+ * @returns {string} A string representing the location.
1619
+ */
1620
+ matchLocationFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1621
+ /**
1622
+ * Parse the data_store from ProjectLocationDataStoreSession resource.
1623
+ *
1624
+ * @param {string} projectLocationDataStoreSessionName
1625
+ * A fully-qualified path representing project_location_data_store_session resource.
1626
+ * @returns {string} A string representing the data_store.
1627
+ */
1628
+ matchDataStoreFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1629
+ /**
1630
+ * Parse the session from ProjectLocationDataStoreSession resource.
1631
+ *
1632
+ * @param {string} projectLocationDataStoreSessionName
1633
+ * A fully-qualified path representing project_location_data_store_session resource.
1634
+ * @returns {string} A string representing the session.
1635
+ */
1636
+ matchSessionFromProjectLocationDataStoreSessionName(projectLocationDataStoreSessionName: string): string | number;
1637
+ /**
1638
+ * Return a fully-qualified projectLocationDataStoreSessionAnswer resource name string.
1639
+ *
1640
+ * @param {string} project
1641
+ * @param {string} location
1642
+ * @param {string} data_store
1643
+ * @param {string} session
1644
+ * @param {string} answer
1645
+ * @returns {string} Resource name string.
1646
+ */
1647
+ projectLocationDataStoreSessionAnswerPath(project: string, location: string, dataStore: string, session: string, answer: string): string;
1648
+ /**
1649
+ * Parse the project from ProjectLocationDataStoreSessionAnswer resource.
1650
+ *
1651
+ * @param {string} projectLocationDataStoreSessionAnswerName
1652
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1653
+ * @returns {string} A string representing the project.
1654
+ */
1655
+ matchProjectFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1656
+ /**
1657
+ * Parse the location from ProjectLocationDataStoreSessionAnswer resource.
1658
+ *
1659
+ * @param {string} projectLocationDataStoreSessionAnswerName
1660
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1661
+ * @returns {string} A string representing the location.
1662
+ */
1663
+ matchLocationFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1664
+ /**
1665
+ * Parse the data_store from ProjectLocationDataStoreSessionAnswer resource.
1666
+ *
1667
+ * @param {string} projectLocationDataStoreSessionAnswerName
1668
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1669
+ * @returns {string} A string representing the data_store.
1670
+ */
1671
+ matchDataStoreFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1672
+ /**
1673
+ * Parse the session from ProjectLocationDataStoreSessionAnswer resource.
1674
+ *
1675
+ * @param {string} projectLocationDataStoreSessionAnswerName
1676
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1677
+ * @returns {string} A string representing the session.
1678
+ */
1679
+ matchSessionFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1680
+ /**
1681
+ * Parse the answer from ProjectLocationDataStoreSessionAnswer resource.
1682
+ *
1683
+ * @param {string} projectLocationDataStoreSessionAnswerName
1684
+ * A fully-qualified path representing project_location_data_store_session_answer resource.
1685
+ * @returns {string} A string representing the answer.
1686
+ */
1687
+ matchAnswerFromProjectLocationDataStoreSessionAnswerName(projectLocationDataStoreSessionAnswerName: string): string | number;
1688
+ /**
1689
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
1690
+ *
1691
+ * @param {string} project
1692
+ * @param {string} location
1693
+ * @param {string} data_store
1694
+ * @returns {string} Resource name string.
1695
+ */
1696
+ projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
1697
+ /**
1698
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
1699
+ *
1700
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1701
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1702
+ * @returns {string} A string representing the project.
1703
+ */
1704
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1705
+ /**
1706
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
1707
+ *
1708
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1709
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1710
+ * @returns {string} A string representing the location.
1711
+ */
1712
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1713
+ /**
1714
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
1715
+ *
1716
+ * @param {string} projectLocationDataStoreSiteSearchEngineName
1717
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
1718
+ * @returns {string} A string representing the data_store.
1719
+ */
1720
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
1721
+ /**
1722
+ * Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
1723
+ *
1724
+ * @param {string} project
1725
+ * @param {string} location
1726
+ * @param {string} data_store
1727
+ * @param {string} target_site
1728
+ * @returns {string} Resource name string.
1729
+ */
1730
+ projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
1731
+ /**
1732
+ * Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1733
+ *
1734
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1735
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1736
+ * @returns {string} A string representing the project.
1737
+ */
1738
+ matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1739
+ /**
1740
+ * Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1741
+ *
1742
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1743
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1744
+ * @returns {string} A string representing the location.
1745
+ */
1746
+ matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1747
+ /**
1748
+ * Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1749
+ *
1750
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1751
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1752
+ * @returns {string} A string representing the data_store.
1753
+ */
1754
+ matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1755
+ /**
1756
+ * Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
1757
+ *
1758
+ * @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
1759
+ * A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
1760
+ * @returns {string} A string representing the target_site.
1761
+ */
1762
+ matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
1763
+ /**
1764
+ * Terminate the gRPC channel and close the client.
1765
+ *
1766
+ * The client will no longer be usable and all future behavior is undefined.
1767
+ * @returns {Promise} A promise that resolves when the client is closed.
1768
+ */
1769
+ close(): Promise<void>;
1770
+ }