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