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