@google-cloud/discoveryengine 1.4.0 → 1.5.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.
- package/CHANGELOG.md +14 -0
- package/README.md +15 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config.proto +49 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/acl_config_service.proto +79 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/chunk.proto +106 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/chunk_service.proto +137 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/common.proto +97 -4
- package/build/protos/google/cloud/discoveryengine/v1alpha/completion.proto +52 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/completion_service.proto +44 -2
- package/build/protos/google/cloud/discoveryengine/v1alpha/conversational_search_service.proto +6 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/data_store.proto +44 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/data_store_service.proto +80 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/document.proto +102 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/document_processing_config.proto +127 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/document_service.proto +70 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/engine.proto +13 -8
- package/build/protos/google/cloud/discoveryengine/v1alpha/engine_service.proto +3 -2
- package/build/protos/google/cloud/discoveryengine/v1alpha/estimate_billing_service.proto +130 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/import_config.proto +376 -21
- package/build/protos/google/cloud/discoveryengine/v1alpha/purge_config.proto +66 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/rank_service.proto +115 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/recommendation_service.proto +3 -1
- package/build/protos/google/cloud/discoveryengine/v1alpha/schema.proto +3 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/search_service.proto +221 -30
- package/build/protos/google/cloud/discoveryengine/v1alpha/search_tuning_service.proto +27 -20
- package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config.proto +271 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/serving_config_service.proto +148 -0
- package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine.proto +9 -3
- package/build/protos/google/cloud/discoveryengine/v1alpha/site_search_engine_service.proto +7 -4
- package/build/protos/google/cloud/discoveryengine/v1alpha/user_event.proto +4 -3
- package/build/protos/google/cloud/discoveryengine/v1beta/conversational_search_service.proto +5 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/data_store.proto +22 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/document.proto +9 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/document_processing_config.proto +94 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/purge_config.proto +3 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/search_service.proto +19 -4
- package/build/protos/google/cloud/discoveryengine/v1beta/search_tuning_service.proto +151 -0
- package/build/protos/google/cloud/discoveryengine/v1beta/serving_config.proto +4 -3
- package/build/protos/google/cloud/discoveryengine/v1beta/serving_config_service.proto +6 -5
- package/build/protos/protos.d.ts +18160 -8292
- package/build/protos/protos.js +50325 -25400
- package/build/protos/protos.json +4864 -2447
- package/build/src/v1/completion_service_client.js +10 -7
- package/build/src/v1/conversational_search_service_client.js +10 -7
- package/build/src/v1/data_store_service_client.js +10 -7
- package/build/src/v1/document_service_client.js +10 -7
- package/build/src/v1/engine_service_client.js +10 -7
- package/build/src/v1/schema_service_client.js +10 -7
- package/build/src/v1/search_service_client.js +10 -7
- package/build/src/v1/site_search_engine_service_client.js +10 -7
- package/build/src/v1/user_event_service_client.js +10 -7
- package/build/src/v1alpha/acl_config_service_client.d.ts +1233 -0
- package/build/src/v1alpha/acl_config_service_client.js +1768 -0
- package/build/src/v1alpha/acl_config_service_client_config.json +34 -0
- package/build/src/v1alpha/chunk_service_client.d.ts +1350 -0
- package/build/src/v1alpha/chunk_service_client.js +1889 -0
- package/build/src/v1alpha/chunk_service_client_config.json +34 -0
- package/build/src/v1alpha/completion_service_client.d.ts +588 -3
- package/build/src/v1alpha/completion_service_client.js +844 -9
- package/build/src/v1alpha/completion_service_client_config.json +10 -0
- package/build/src/v1alpha/conversational_search_service_client.d.ts +233 -1
- package/build/src/v1alpha/conversational_search_service_client.js +326 -7
- package/build/src/v1alpha/data_store_service_client.d.ts +451 -3
- package/build/src/v1alpha/data_store_service_client.js +575 -9
- package/build/src/v1alpha/data_store_service_client_config.json +8 -0
- package/build/src/v1alpha/document_service_client.d.ts +462 -21
- package/build/src/v1alpha/document_service_client.js +549 -7
- package/build/src/v1alpha/document_service_client_config.json +5 -0
- package/build/src/v1alpha/engine_service_client.d.ts +375 -2
- package/build/src/v1alpha/engine_service_client.js +527 -7
- package/build/src/v1alpha/estimate_billing_service_client.d.ts +1367 -0
- package/build/src/v1alpha/estimate_billing_service_client.js +2034 -0
- package/build/src/v1alpha/estimate_billing_service_client_config.json +30 -0
- package/build/src/v1alpha/index.d.ts +5 -0
- package/build/src/v1alpha/index.js +11 -1
- package/build/src/v1alpha/rank_service_client.d.ts +1254 -0
- package/build/src/v1alpha/rank_service_client.js +1796 -0
- package/build/src/v1alpha/rank_service_client_config.json +30 -0
- package/build/src/v1alpha/recommendation_service_client.d.ts +231 -1
- package/build/src/v1alpha/recommendation_service_client.js +326 -7
- package/build/src/v1alpha/schema_service_client.d.ts +372 -0
- package/build/src/v1alpha/schema_service_client.js +527 -7
- package/build/src/v1alpha/search_service_client.d.ts +288 -30
- package/build/src/v1alpha/search_service_client.js +366 -27
- package/build/src/v1alpha/search_tuning_service_client.d.ts +373 -1
- package/build/src/v1alpha/search_tuning_service_client.js +527 -7
- package/build/src/v1alpha/serving_config_service_client.d.ts +1370 -0
- package/build/src/v1alpha/serving_config_service_client.js +1939 -0
- package/build/src/v1alpha/serving_config_service_client_config.json +38 -0
- package/build/src/v1alpha/site_search_engine_service_client.d.ts +372 -0
- package/build/src/v1alpha/site_search_engine_service_client.js +527 -7
- package/build/src/v1alpha/user_event_service_client.d.ts +372 -0
- package/build/src/v1alpha/user_event_service_client.js +527 -7
- package/build/src/v1beta/completion_service_client.d.ts +75 -0
- package/build/src/v1beta/completion_service_client.js +114 -7
- package/build/src/v1beta/conversational_search_service_client.d.ts +79 -0
- package/build/src/v1beta/conversational_search_service_client.js +114 -7
- package/build/src/v1beta/data_store_service_client.d.ts +75 -0
- package/build/src/v1beta/data_store_service_client.js +114 -7
- package/build/src/v1beta/document_service_client.d.ts +75 -0
- package/build/src/v1beta/document_service_client.js +114 -7
- package/build/src/v1beta/engine_service_client.d.ts +75 -0
- package/build/src/v1beta/engine_service_client.js +114 -7
- package/build/src/v1beta/index.d.ts +1 -0
- package/build/src/v1beta/index.js +3 -1
- package/build/src/v1beta/recommendation_service_client.d.ts +75 -0
- package/build/src/v1beta/recommendation_service_client.js +114 -7
- package/build/src/v1beta/schema_service_client.d.ts +75 -0
- package/build/src/v1beta/schema_service_client.js +114 -7
- package/build/src/v1beta/search_service_client.d.ts +81 -0
- package/build/src/v1beta/search_service_client.js +118 -7
- package/build/src/v1beta/search_tuning_service_client.d.ts +1196 -0
- package/build/src/v1beta/search_tuning_service_client.js +1784 -0
- package/build/src/v1beta/search_tuning_service_client_config.json +30 -0
- package/build/src/v1beta/serving_config_service_client.d.ts +123 -8
- package/build/src/v1beta/serving_config_service_client.js +176 -12
- package/build/src/v1beta/site_search_engine_service_client.d.ts +75 -0
- package/build/src/v1beta/site_search_engine_service_client.js +114 -7
- package/build/src/v1beta/user_event_service_client.d.ts +75 -0
- package/build/src/v1beta/user_event_service_client.js +114 -7
- package/package.json +3 -3
@@ -0,0 +1,1350 @@
|
|
1
|
+
/// <reference types="node" />
|
2
|
+
import type * as gax from 'google-gax';
|
3
|
+
import type { Callback, CallOptions, Descriptors, ClientOptions, PaginationCallback, LocationsClient, LocationProtos } from 'google-gax';
|
4
|
+
import { Transform } from 'stream';
|
5
|
+
import * as protos from '../../protos/protos';
|
6
|
+
/**
|
7
|
+
* Service for displaying processed
|
8
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk} information of the
|
9
|
+
* customer's unstructured data.
|
10
|
+
* @class
|
11
|
+
* @memberof v1alpha
|
12
|
+
*/
|
13
|
+
export declare class ChunkServiceClient {
|
14
|
+
private _terminated;
|
15
|
+
private _opts;
|
16
|
+
private _providedCustomServicePath;
|
17
|
+
private _gaxModule;
|
18
|
+
private _gaxGrpc;
|
19
|
+
private _protos;
|
20
|
+
private _defaults;
|
21
|
+
private _universeDomain;
|
22
|
+
private _servicePath;
|
23
|
+
auth: gax.GoogleAuth;
|
24
|
+
descriptors: Descriptors;
|
25
|
+
warn: (code: string, message: string, warnType?: string) => void;
|
26
|
+
innerApiCalls: {
|
27
|
+
[name: string]: Function;
|
28
|
+
};
|
29
|
+
locationsClient: LocationsClient;
|
30
|
+
pathTemplates: {
|
31
|
+
[name: string]: gax.PathTemplate;
|
32
|
+
};
|
33
|
+
chunkServiceStub?: Promise<{
|
34
|
+
[name: string]: Function;
|
35
|
+
}>;
|
36
|
+
/**
|
37
|
+
* Construct an instance of ChunkServiceClient.
|
38
|
+
*
|
39
|
+
* @param {object} [options] - The configuration object.
|
40
|
+
* The options accepted by the constructor are described in detail
|
41
|
+
* in [this document](https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#creating-the-client-instance).
|
42
|
+
* The common options are:
|
43
|
+
* @param {object} [options.credentials] - Credentials object.
|
44
|
+
* @param {string} [options.credentials.client_email]
|
45
|
+
* @param {string} [options.credentials.private_key]
|
46
|
+
* @param {string} [options.email] - Account email address. Required when
|
47
|
+
* using a .pem or .p12 keyFilename.
|
48
|
+
* @param {string} [options.keyFilename] - Full path to the a .json, .pem, or
|
49
|
+
* .p12 key downloaded from the Google Developers Console. If you provide
|
50
|
+
* a path to a JSON file, the projectId option below is not necessary.
|
51
|
+
* NOTE: .pem and .p12 require you to specify options.email as well.
|
52
|
+
* @param {number} [options.port] - The port on which to connect to
|
53
|
+
* the remote host.
|
54
|
+
* @param {string} [options.projectId] - The project ID from the Google
|
55
|
+
* Developer's Console, e.g. 'grape-spaceship-123'. We will also check
|
56
|
+
* the environment variable GCLOUD_PROJECT for your project ID. If your
|
57
|
+
* app is running in an environment which supports
|
58
|
+
* {@link https://developers.google.com/identity/protocols/application-default-credentials Application Default Credentials},
|
59
|
+
* your project ID will be detected automatically.
|
60
|
+
* @param {string} [options.apiEndpoint] - The domain name of the
|
61
|
+
* API remote host.
|
62
|
+
* @param {gax.ClientConfig} [options.clientConfig] - Client configuration override.
|
63
|
+
* Follows the structure of {@link gapicConfig}.
|
64
|
+
* @param {boolean} [options.fallback] - Use HTTP/1.1 REST mode.
|
65
|
+
* For more information, please check the
|
66
|
+
* {@link https://github.com/googleapis/gax-nodejs/blob/main/client-libraries.md#http11-rest-api-mode documentation}.
|
67
|
+
* @param {gax} [gaxInstance]: loaded instance of `google-gax`. Useful if you
|
68
|
+
* need to avoid loading the default gRPC version and want to use the fallback
|
69
|
+
* HTTP implementation. Load only fallback version and pass it to the constructor:
|
70
|
+
* ```
|
71
|
+
* const gax = require('google-gax/build/src/fallback'); // avoids loading google-gax with gRPC
|
72
|
+
* const client = new ChunkServiceClient({fallback: true}, gax);
|
73
|
+
* ```
|
74
|
+
*/
|
75
|
+
constructor(opts?: ClientOptions, gaxInstance?: typeof gax | typeof gax.fallback);
|
76
|
+
/**
|
77
|
+
* Initialize the client.
|
78
|
+
* Performs asynchronous operations (such as authentication) and prepares the client.
|
79
|
+
* This function will be called automatically when any class method is called for the
|
80
|
+
* first time, but if you need to initialize it before calling an actual method,
|
81
|
+
* feel free to call initialize() directly.
|
82
|
+
*
|
83
|
+
* You can await on this method if you want to make sure the client is initialized.
|
84
|
+
*
|
85
|
+
* @returns {Promise} A promise that resolves to an authenticated service stub.
|
86
|
+
*/
|
87
|
+
initialize(): Promise<{
|
88
|
+
[name: string]: Function;
|
89
|
+
}>;
|
90
|
+
/**
|
91
|
+
* The DNS address for this API service.
|
92
|
+
* @deprecated Use the apiEndpoint method of the client instance.
|
93
|
+
* @returns {string} The DNS address for this service.
|
94
|
+
*/
|
95
|
+
static get servicePath(): string;
|
96
|
+
/**
|
97
|
+
* The DNS address for this API service - same as servicePath.
|
98
|
+
* @deprecated Use the apiEndpoint method of the client instance.
|
99
|
+
* @returns {string} The DNS address for this service.
|
100
|
+
*/
|
101
|
+
static get apiEndpoint(): string;
|
102
|
+
/**
|
103
|
+
* The DNS address for this API service.
|
104
|
+
* @returns {string} The DNS address for this service.
|
105
|
+
*/
|
106
|
+
get apiEndpoint(): string;
|
107
|
+
get universeDomain(): string;
|
108
|
+
/**
|
109
|
+
* The port for this API service.
|
110
|
+
* @returns {number} The default port for this service.
|
111
|
+
*/
|
112
|
+
static get port(): number;
|
113
|
+
/**
|
114
|
+
* The scopes needed to make gRPC calls for every method defined
|
115
|
+
* in this service.
|
116
|
+
* @returns {string[]} List of default scopes.
|
117
|
+
*/
|
118
|
+
static get scopes(): string[];
|
119
|
+
getProjectId(): Promise<string>;
|
120
|
+
getProjectId(callback: Callback<string, undefined, undefined>): void;
|
121
|
+
/**
|
122
|
+
* Gets a {@link protos.google.cloud.discoveryengine.v1alpha.Document|Document}.
|
123
|
+
*
|
124
|
+
* @param {Object} request
|
125
|
+
* The request object that will be sent.
|
126
|
+
* @param {string} request.name
|
127
|
+
* Required. Full resource name of
|
128
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}, such as
|
129
|
+
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}/chunks/{chunk}`.
|
130
|
+
*
|
131
|
+
* If the caller does not have permission to access the
|
132
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}, regardless of whether
|
133
|
+
* or not it exists, a `PERMISSION_DENIED` error is returned.
|
134
|
+
*
|
135
|
+
* If the requested {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk} does
|
136
|
+
* not exist, a `NOT_FOUND` error is returned.
|
137
|
+
* @param {object} [options]
|
138
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
139
|
+
* @returns {Promise} - The promise which resolves to an array.
|
140
|
+
* The first element of the array is an object representing {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}.
|
141
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
142
|
+
* for more details and examples.
|
143
|
+
* @example <caption>include:samples/generated/v1alpha/chunk_service.get_chunk.js</caption>
|
144
|
+
* region_tag:discoveryengine_v1alpha_generated_ChunkService_GetChunk_async
|
145
|
+
*/
|
146
|
+
getChunk(request?: protos.google.cloud.discoveryengine.v1alpha.IGetChunkRequest, options?: CallOptions): Promise<[
|
147
|
+
protos.google.cloud.discoveryengine.v1alpha.IChunk,
|
148
|
+
protos.google.cloud.discoveryengine.v1alpha.IGetChunkRequest | undefined,
|
149
|
+
{} | undefined
|
150
|
+
]>;
|
151
|
+
getChunk(request: protos.google.cloud.discoveryengine.v1alpha.IGetChunkRequest, options: CallOptions, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IChunk, protos.google.cloud.discoveryengine.v1alpha.IGetChunkRequest | null | undefined, {} | null | undefined>): void;
|
152
|
+
getChunk(request: protos.google.cloud.discoveryengine.v1alpha.IGetChunkRequest, callback: Callback<protos.google.cloud.discoveryengine.v1alpha.IChunk, protos.google.cloud.discoveryengine.v1alpha.IGetChunkRequest | null | undefined, {} | null | undefined>): void;
|
153
|
+
/**
|
154
|
+
* Gets a list of {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}s.
|
155
|
+
*
|
156
|
+
* @param {Object} request
|
157
|
+
* The request object that will be sent.
|
158
|
+
* @param {string} request.parent
|
159
|
+
* Required. The parent document resource name, such as
|
160
|
+
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}`.
|
161
|
+
*
|
162
|
+
* If the caller does not have permission to list
|
163
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}s under this document,
|
164
|
+
* regardless of whether or not this document exists, a `PERMISSION_DENIED`
|
165
|
+
* error is returned.
|
166
|
+
* @param {number} request.pageSize
|
167
|
+
* Maximum number of {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}s to
|
168
|
+
* return. If unspecified, defaults to 100. The maximum allowed value is 1000.
|
169
|
+
* Values above 1000 will be coerced to 1000.
|
170
|
+
*
|
171
|
+
* If this field is negative, an `INVALID_ARGUMENT` error is returned.
|
172
|
+
* @param {string} request.pageToken
|
173
|
+
* A page token
|
174
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ListChunksResponse.next_page_token|ListChunksResponse.next_page_token},
|
175
|
+
* received from a previous
|
176
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ChunkService.ListChunks|ChunkService.ListChunks}
|
177
|
+
* call. Provide this to retrieve the subsequent page.
|
178
|
+
*
|
179
|
+
* When paginating, all other parameters provided to
|
180
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ChunkService.ListChunks|ChunkService.ListChunks}
|
181
|
+
* must match the call that provided the page token. Otherwise, an
|
182
|
+
* `INVALID_ARGUMENT` error is returned.
|
183
|
+
* @param {object} [options]
|
184
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
185
|
+
* @returns {Promise} - The promise which resolves to an array.
|
186
|
+
* The first element of the array is Array of {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}.
|
187
|
+
* The client library will perform auto-pagination by default: it will call the API as many
|
188
|
+
* times as needed and will merge results from all the pages into this array.
|
189
|
+
* Note that it can affect your quota.
|
190
|
+
* We recommend using `listChunksAsync()`
|
191
|
+
* method described below for async iteration which you can stop as needed.
|
192
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
193
|
+
* for more details and examples.
|
194
|
+
*/
|
195
|
+
listChunks(request?: protos.google.cloud.discoveryengine.v1alpha.IListChunksRequest, options?: CallOptions): Promise<[
|
196
|
+
protos.google.cloud.discoveryengine.v1alpha.IChunk[],
|
197
|
+
protos.google.cloud.discoveryengine.v1alpha.IListChunksRequest | null,
|
198
|
+
protos.google.cloud.discoveryengine.v1alpha.IListChunksResponse
|
199
|
+
]>;
|
200
|
+
listChunks(request: protos.google.cloud.discoveryengine.v1alpha.IListChunksRequest, options: CallOptions, callback: PaginationCallback<protos.google.cloud.discoveryengine.v1alpha.IListChunksRequest, protos.google.cloud.discoveryengine.v1alpha.IListChunksResponse | null | undefined, protos.google.cloud.discoveryengine.v1alpha.IChunk>): void;
|
201
|
+
listChunks(request: protos.google.cloud.discoveryengine.v1alpha.IListChunksRequest, callback: PaginationCallback<protos.google.cloud.discoveryengine.v1alpha.IListChunksRequest, protos.google.cloud.discoveryengine.v1alpha.IListChunksResponse | null | undefined, protos.google.cloud.discoveryengine.v1alpha.IChunk>): void;
|
202
|
+
/**
|
203
|
+
* Equivalent to `method.name.toCamelCase()`, but returns a NodeJS Stream object.
|
204
|
+
* @param {Object} request
|
205
|
+
* The request object that will be sent.
|
206
|
+
* @param {string} request.parent
|
207
|
+
* Required. The parent document resource name, such as
|
208
|
+
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}`.
|
209
|
+
*
|
210
|
+
* If the caller does not have permission to list
|
211
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}s under this document,
|
212
|
+
* regardless of whether or not this document exists, a `PERMISSION_DENIED`
|
213
|
+
* error is returned.
|
214
|
+
* @param {number} request.pageSize
|
215
|
+
* Maximum number of {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}s to
|
216
|
+
* return. If unspecified, defaults to 100. The maximum allowed value is 1000.
|
217
|
+
* Values above 1000 will be coerced to 1000.
|
218
|
+
*
|
219
|
+
* If this field is negative, an `INVALID_ARGUMENT` error is returned.
|
220
|
+
* @param {string} request.pageToken
|
221
|
+
* A page token
|
222
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ListChunksResponse.next_page_token|ListChunksResponse.next_page_token},
|
223
|
+
* received from a previous
|
224
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ChunkService.ListChunks|ChunkService.ListChunks}
|
225
|
+
* call. Provide this to retrieve the subsequent page.
|
226
|
+
*
|
227
|
+
* When paginating, all other parameters provided to
|
228
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ChunkService.ListChunks|ChunkService.ListChunks}
|
229
|
+
* must match the call that provided the page token. Otherwise, an
|
230
|
+
* `INVALID_ARGUMENT` error is returned.
|
231
|
+
* @param {object} [options]
|
232
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
233
|
+
* @returns {Stream}
|
234
|
+
* An object stream which emits an object representing {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk} on 'data' event.
|
235
|
+
* The client library will perform auto-pagination by default: it will call the API as many
|
236
|
+
* times as needed. Note that it can affect your quota.
|
237
|
+
* We recommend using `listChunksAsync()`
|
238
|
+
* method described below for async iteration which you can stop as needed.
|
239
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
240
|
+
* for more details and examples.
|
241
|
+
*/
|
242
|
+
listChunksStream(request?: protos.google.cloud.discoveryengine.v1alpha.IListChunksRequest, options?: CallOptions): Transform;
|
243
|
+
/**
|
244
|
+
* Equivalent to `listChunks`, but returns an iterable object.
|
245
|
+
*
|
246
|
+
* `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
|
247
|
+
* @param {Object} request
|
248
|
+
* The request object that will be sent.
|
249
|
+
* @param {string} request.parent
|
250
|
+
* Required. The parent document resource name, such as
|
251
|
+
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/branches/{branch}/documents/{document}`.
|
252
|
+
*
|
253
|
+
* If the caller does not have permission to list
|
254
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}s under this document,
|
255
|
+
* regardless of whether or not this document exists, a `PERMISSION_DENIED`
|
256
|
+
* error is returned.
|
257
|
+
* @param {number} request.pageSize
|
258
|
+
* Maximum number of {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}s to
|
259
|
+
* return. If unspecified, defaults to 100. The maximum allowed value is 1000.
|
260
|
+
* Values above 1000 will be coerced to 1000.
|
261
|
+
*
|
262
|
+
* If this field is negative, an `INVALID_ARGUMENT` error is returned.
|
263
|
+
* @param {string} request.pageToken
|
264
|
+
* A page token
|
265
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ListChunksResponse.next_page_token|ListChunksResponse.next_page_token},
|
266
|
+
* received from a previous
|
267
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ChunkService.ListChunks|ChunkService.ListChunks}
|
268
|
+
* call. Provide this to retrieve the subsequent page.
|
269
|
+
*
|
270
|
+
* When paginating, all other parameters provided to
|
271
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.ChunkService.ListChunks|ChunkService.ListChunks}
|
272
|
+
* must match the call that provided the page token. Otherwise, an
|
273
|
+
* `INVALID_ARGUMENT` error is returned.
|
274
|
+
* @param {object} [options]
|
275
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
276
|
+
* @returns {Object}
|
277
|
+
* An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
|
278
|
+
* When you iterate the returned iterable, each element will be an object representing
|
279
|
+
* {@link protos.google.cloud.discoveryengine.v1alpha.Chunk|Chunk}. The API will be called under the hood as needed, once per the page,
|
280
|
+
* so you can stop the iteration when you don't need more results.
|
281
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
282
|
+
* for more details and examples.
|
283
|
+
* @example <caption>include:samples/generated/v1alpha/chunk_service.list_chunks.js</caption>
|
284
|
+
* region_tag:discoveryengine_v1alpha_generated_ChunkService_ListChunks_async
|
285
|
+
*/
|
286
|
+
listChunksAsync(request?: protos.google.cloud.discoveryengine.v1alpha.IListChunksRequest, options?: CallOptions): AsyncIterable<protos.google.cloud.discoveryengine.v1alpha.IChunk>;
|
287
|
+
/**
|
288
|
+
* Gets information about a location.
|
289
|
+
*
|
290
|
+
* @param {Object} request
|
291
|
+
* The request object that will be sent.
|
292
|
+
* @param {string} request.name
|
293
|
+
* Resource name for the location.
|
294
|
+
* @param {object} [options]
|
295
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html | CallOptions} for more details.
|
296
|
+
* @returns {Promise} - The promise which resolves to an array.
|
297
|
+
* The first element of the array is an object representing {@link google.cloud.location.Location | Location}.
|
298
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#regular-methods | documentation }
|
299
|
+
* for more details and examples.
|
300
|
+
* @example
|
301
|
+
* ```
|
302
|
+
* const [response] = await client.getLocation(request);
|
303
|
+
* ```
|
304
|
+
*/
|
305
|
+
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>;
|
306
|
+
/**
|
307
|
+
* Lists information about the supported locations for this service. Returns an iterable object.
|
308
|
+
*
|
309
|
+
* `for`-`await`-`of` syntax is used with the iterable to get response elements on-demand.
|
310
|
+
* @param {Object} request
|
311
|
+
* The request object that will be sent.
|
312
|
+
* @param {string} request.name
|
313
|
+
* The resource that owns the locations collection, if applicable.
|
314
|
+
* @param {string} request.filter
|
315
|
+
* The standard list filter.
|
316
|
+
* @param {number} request.pageSize
|
317
|
+
* The standard list page size.
|
318
|
+
* @param {string} request.pageToken
|
319
|
+
* The standard list page token.
|
320
|
+
* @param {object} [options]
|
321
|
+
* Call options. See {@link https://googleapis.dev/nodejs/google-gax/latest/interfaces/CallOptions.html|CallOptions} for more details.
|
322
|
+
* @returns {Object}
|
323
|
+
* An iterable Object that allows {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols | async iteration }.
|
324
|
+
* When you iterate the returned iterable, each element will be an object representing
|
325
|
+
* {@link google.cloud.location.Location | Location}. The API will be called under the hood as needed, once per the page,
|
326
|
+
* so you can stop the iteration when you don't need more results.
|
327
|
+
* Please see the {@link https://github.com/googleapis/gax-nodejs/blob/master/client-libraries.md#auto-pagination | documentation }
|
328
|
+
* for more details and examples.
|
329
|
+
* @example
|
330
|
+
* ```
|
331
|
+
* const iterable = client.listLocationsAsync(request);
|
332
|
+
* for await (const response of iterable) {
|
333
|
+
* // process response
|
334
|
+
* }
|
335
|
+
* ```
|
336
|
+
*/
|
337
|
+
listLocationsAsync(request: LocationProtos.google.cloud.location.IListLocationsRequest, options?: CallOptions): AsyncIterable<LocationProtos.google.cloud.location.ILocation>;
|
338
|
+
/**
|
339
|
+
* Return a fully-qualified aclConfig resource name string.
|
340
|
+
*
|
341
|
+
* @param {string} project
|
342
|
+
* @param {string} location
|
343
|
+
* @returns {string} Resource name string.
|
344
|
+
*/
|
345
|
+
aclConfigPath(project: string, location: string): string;
|
346
|
+
/**
|
347
|
+
* Parse the project from AclConfig resource.
|
348
|
+
*
|
349
|
+
* @param {string} aclConfigName
|
350
|
+
* A fully-qualified path representing AclConfig resource.
|
351
|
+
* @returns {string} A string representing the project.
|
352
|
+
*/
|
353
|
+
matchProjectFromAclConfigName(aclConfigName: string): string | number;
|
354
|
+
/**
|
355
|
+
* Parse the location from AclConfig resource.
|
356
|
+
*
|
357
|
+
* @param {string} aclConfigName
|
358
|
+
* A fully-qualified path representing AclConfig resource.
|
359
|
+
* @returns {string} A string representing the location.
|
360
|
+
*/
|
361
|
+
matchLocationFromAclConfigName(aclConfigName: string): string | number;
|
362
|
+
/**
|
363
|
+
* Return a fully-qualified engine resource name string.
|
364
|
+
*
|
365
|
+
* @param {string} project
|
366
|
+
* @param {string} location
|
367
|
+
* @param {string} collection
|
368
|
+
* @param {string} engine
|
369
|
+
* @returns {string} Resource name string.
|
370
|
+
*/
|
371
|
+
enginePath(project: string, location: string, collection: string, engine: string): string;
|
372
|
+
/**
|
373
|
+
* Parse the project from Engine resource.
|
374
|
+
*
|
375
|
+
* @param {string} engineName
|
376
|
+
* A fully-qualified path representing Engine resource.
|
377
|
+
* @returns {string} A string representing the project.
|
378
|
+
*/
|
379
|
+
matchProjectFromEngineName(engineName: string): string | number;
|
380
|
+
/**
|
381
|
+
* Parse the location from Engine resource.
|
382
|
+
*
|
383
|
+
* @param {string} engineName
|
384
|
+
* A fully-qualified path representing Engine resource.
|
385
|
+
* @returns {string} A string representing the location.
|
386
|
+
*/
|
387
|
+
matchLocationFromEngineName(engineName: string): string | number;
|
388
|
+
/**
|
389
|
+
* Parse the collection from Engine resource.
|
390
|
+
*
|
391
|
+
* @param {string} engineName
|
392
|
+
* A fully-qualified path representing Engine resource.
|
393
|
+
* @returns {string} A string representing the collection.
|
394
|
+
*/
|
395
|
+
matchCollectionFromEngineName(engineName: string): string | number;
|
396
|
+
/**
|
397
|
+
* Parse the engine from Engine resource.
|
398
|
+
*
|
399
|
+
* @param {string} engineName
|
400
|
+
* A fully-qualified path representing Engine resource.
|
401
|
+
* @returns {string} A string representing the engine.
|
402
|
+
*/
|
403
|
+
matchEngineFromEngineName(engineName: string): string | number;
|
404
|
+
/**
|
405
|
+
* Return a fully-qualified projectLocationCollectionDataStore resource name string.
|
406
|
+
*
|
407
|
+
* @param {string} project
|
408
|
+
* @param {string} location
|
409
|
+
* @param {string} collection
|
410
|
+
* @param {string} data_store
|
411
|
+
* @returns {string} Resource name string.
|
412
|
+
*/
|
413
|
+
projectLocationCollectionDataStorePath(project: string, location: string, collection: string, dataStore: string): string;
|
414
|
+
/**
|
415
|
+
* Parse the project from ProjectLocationCollectionDataStore resource.
|
416
|
+
*
|
417
|
+
* @param {string} projectLocationCollectionDataStoreName
|
418
|
+
* A fully-qualified path representing project_location_collection_data_store resource.
|
419
|
+
* @returns {string} A string representing the project.
|
420
|
+
*/
|
421
|
+
matchProjectFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
|
422
|
+
/**
|
423
|
+
* Parse the location from ProjectLocationCollectionDataStore resource.
|
424
|
+
*
|
425
|
+
* @param {string} projectLocationCollectionDataStoreName
|
426
|
+
* A fully-qualified path representing project_location_collection_data_store resource.
|
427
|
+
* @returns {string} A string representing the location.
|
428
|
+
*/
|
429
|
+
matchLocationFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
|
430
|
+
/**
|
431
|
+
* Parse the collection from ProjectLocationCollectionDataStore resource.
|
432
|
+
*
|
433
|
+
* @param {string} projectLocationCollectionDataStoreName
|
434
|
+
* A fully-qualified path representing project_location_collection_data_store resource.
|
435
|
+
* @returns {string} A string representing the collection.
|
436
|
+
*/
|
437
|
+
matchCollectionFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
|
438
|
+
/**
|
439
|
+
* Parse the data_store from ProjectLocationCollectionDataStore resource.
|
440
|
+
*
|
441
|
+
* @param {string} projectLocationCollectionDataStoreName
|
442
|
+
* A fully-qualified path representing project_location_collection_data_store resource.
|
443
|
+
* @returns {string} A string representing the data_store.
|
444
|
+
*/
|
445
|
+
matchDataStoreFromProjectLocationCollectionDataStoreName(projectLocationCollectionDataStoreName: string): string | number;
|
446
|
+
/**
|
447
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocument resource name string.
|
448
|
+
*
|
449
|
+
* @param {string} project
|
450
|
+
* @param {string} location
|
451
|
+
* @param {string} collection
|
452
|
+
* @param {string} data_store
|
453
|
+
* @param {string} branch
|
454
|
+
* @param {string} document
|
455
|
+
* @returns {string} Resource name string.
|
456
|
+
*/
|
457
|
+
projectLocationCollectionDataStoreBranchDocumentPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string): string;
|
458
|
+
/**
|
459
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocument resource.
|
460
|
+
*
|
461
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentName
|
462
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document resource.
|
463
|
+
* @returns {string} A string representing the project.
|
464
|
+
*/
|
465
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
466
|
+
/**
|
467
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocument resource.
|
468
|
+
*
|
469
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentName
|
470
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document resource.
|
471
|
+
* @returns {string} A string representing the location.
|
472
|
+
*/
|
473
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
474
|
+
/**
|
475
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocument resource.
|
476
|
+
*
|
477
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentName
|
478
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document resource.
|
479
|
+
* @returns {string} A string representing the collection.
|
480
|
+
*/
|
481
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
482
|
+
/**
|
483
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocument resource.
|
484
|
+
*
|
485
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentName
|
486
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document resource.
|
487
|
+
* @returns {string} A string representing the data_store.
|
488
|
+
*/
|
489
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
490
|
+
/**
|
491
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocument resource.
|
492
|
+
*
|
493
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentName
|
494
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document resource.
|
495
|
+
* @returns {string} A string representing the branch.
|
496
|
+
*/
|
497
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
498
|
+
/**
|
499
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocument resource.
|
500
|
+
*
|
501
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentName
|
502
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document resource.
|
503
|
+
* @returns {string} A string representing the document.
|
504
|
+
*/
|
505
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentName(projectLocationCollectionDataStoreBranchDocumentName: string): string | number;
|
506
|
+
/**
|
507
|
+
* Return a fully-qualified projectLocationCollectionDataStoreBranchDocumentChunk resource name string.
|
508
|
+
*
|
509
|
+
* @param {string} project
|
510
|
+
* @param {string} location
|
511
|
+
* @param {string} collection
|
512
|
+
* @param {string} data_store
|
513
|
+
* @param {string} branch
|
514
|
+
* @param {string} document
|
515
|
+
* @param {string} chunk
|
516
|
+
* @returns {string} Resource name string.
|
517
|
+
*/
|
518
|
+
projectLocationCollectionDataStoreBranchDocumentChunkPath(project: string, location: string, collection: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
519
|
+
/**
|
520
|
+
* Parse the project from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
521
|
+
*
|
522
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
523
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
524
|
+
* @returns {string} A string representing the project.
|
525
|
+
*/
|
526
|
+
matchProjectFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
527
|
+
/**
|
528
|
+
* Parse the location from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
529
|
+
*
|
530
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
531
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
532
|
+
* @returns {string} A string representing the location.
|
533
|
+
*/
|
534
|
+
matchLocationFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
535
|
+
/**
|
536
|
+
* Parse the collection from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
537
|
+
*
|
538
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
539
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
540
|
+
* @returns {string} A string representing the collection.
|
541
|
+
*/
|
542
|
+
matchCollectionFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
543
|
+
/**
|
544
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
545
|
+
*
|
546
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
547
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
548
|
+
* @returns {string} A string representing the data_store.
|
549
|
+
*/
|
550
|
+
matchDataStoreFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
551
|
+
/**
|
552
|
+
* Parse the branch from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
553
|
+
*
|
554
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
555
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
556
|
+
* @returns {string} A string representing the branch.
|
557
|
+
*/
|
558
|
+
matchBranchFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
559
|
+
/**
|
560
|
+
* Parse the document from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
561
|
+
*
|
562
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
563
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
564
|
+
* @returns {string} A string representing the document.
|
565
|
+
*/
|
566
|
+
matchDocumentFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
567
|
+
/**
|
568
|
+
* Parse the chunk from ProjectLocationCollectionDataStoreBranchDocumentChunk resource.
|
569
|
+
*
|
570
|
+
* @param {string} projectLocationCollectionDataStoreBranchDocumentChunkName
|
571
|
+
* A fully-qualified path representing project_location_collection_data_store_branch_document_chunk resource.
|
572
|
+
* @returns {string} A string representing the chunk.
|
573
|
+
*/
|
574
|
+
matchChunkFromProjectLocationCollectionDataStoreBranchDocumentChunkName(projectLocationCollectionDataStoreBranchDocumentChunkName: string): string | number;
|
575
|
+
/**
|
576
|
+
* Return a fully-qualified projectLocationCollectionDataStoreConversation resource name string.
|
577
|
+
*
|
578
|
+
* @param {string} project
|
579
|
+
* @param {string} location
|
580
|
+
* @param {string} collection
|
581
|
+
* @param {string} data_store
|
582
|
+
* @param {string} conversation
|
583
|
+
* @returns {string} Resource name string.
|
584
|
+
*/
|
585
|
+
projectLocationCollectionDataStoreConversationPath(project: string, location: string, collection: string, dataStore: string, conversation: string): string;
|
586
|
+
/**
|
587
|
+
* Parse the project from ProjectLocationCollectionDataStoreConversation resource.
|
588
|
+
*
|
589
|
+
* @param {string} projectLocationCollectionDataStoreConversationName
|
590
|
+
* A fully-qualified path representing project_location_collection_data_store_conversation resource.
|
591
|
+
* @returns {string} A string representing the project.
|
592
|
+
*/
|
593
|
+
matchProjectFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
594
|
+
/**
|
595
|
+
* Parse the location from ProjectLocationCollectionDataStoreConversation resource.
|
596
|
+
*
|
597
|
+
* @param {string} projectLocationCollectionDataStoreConversationName
|
598
|
+
* A fully-qualified path representing project_location_collection_data_store_conversation resource.
|
599
|
+
* @returns {string} A string representing the location.
|
600
|
+
*/
|
601
|
+
matchLocationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
602
|
+
/**
|
603
|
+
* Parse the collection from ProjectLocationCollectionDataStoreConversation resource.
|
604
|
+
*
|
605
|
+
* @param {string} projectLocationCollectionDataStoreConversationName
|
606
|
+
* A fully-qualified path representing project_location_collection_data_store_conversation resource.
|
607
|
+
* @returns {string} A string representing the collection.
|
608
|
+
*/
|
609
|
+
matchCollectionFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
610
|
+
/**
|
611
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreConversation resource.
|
612
|
+
*
|
613
|
+
* @param {string} projectLocationCollectionDataStoreConversationName
|
614
|
+
* A fully-qualified path representing project_location_collection_data_store_conversation resource.
|
615
|
+
* @returns {string} A string representing the data_store.
|
616
|
+
*/
|
617
|
+
matchDataStoreFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
618
|
+
/**
|
619
|
+
* Parse the conversation from ProjectLocationCollectionDataStoreConversation resource.
|
620
|
+
*
|
621
|
+
* @param {string} projectLocationCollectionDataStoreConversationName
|
622
|
+
* A fully-qualified path representing project_location_collection_data_store_conversation resource.
|
623
|
+
* @returns {string} A string representing the conversation.
|
624
|
+
*/
|
625
|
+
matchConversationFromProjectLocationCollectionDataStoreConversationName(projectLocationCollectionDataStoreConversationName: string): string | number;
|
626
|
+
/**
|
627
|
+
* Return a fully-qualified projectLocationCollectionDataStoreDocumentProcessingConfig resource name string.
|
628
|
+
*
|
629
|
+
* @param {string} project
|
630
|
+
* @param {string} location
|
631
|
+
* @param {string} collection
|
632
|
+
* @param {string} data_store
|
633
|
+
* @returns {string} Resource name string.
|
634
|
+
*/
|
635
|
+
projectLocationCollectionDataStoreDocumentProcessingConfigPath(project: string, location: string, collection: string, dataStore: string): string;
|
636
|
+
/**
|
637
|
+
* Parse the project from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
638
|
+
*
|
639
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
640
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
641
|
+
* @returns {string} A string representing the project.
|
642
|
+
*/
|
643
|
+
matchProjectFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
644
|
+
/**
|
645
|
+
* Parse the location from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
646
|
+
*
|
647
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
648
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
649
|
+
* @returns {string} A string representing the location.
|
650
|
+
*/
|
651
|
+
matchLocationFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
652
|
+
/**
|
653
|
+
* Parse the collection from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
654
|
+
*
|
655
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
656
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
657
|
+
* @returns {string} A string representing the collection.
|
658
|
+
*/
|
659
|
+
matchCollectionFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
660
|
+
/**
|
661
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreDocumentProcessingConfig resource.
|
662
|
+
*
|
663
|
+
* @param {string} projectLocationCollectionDataStoreDocumentProcessingConfigName
|
664
|
+
* A fully-qualified path representing project_location_collection_data_store_documentProcessingConfig resource.
|
665
|
+
* @returns {string} A string representing the data_store.
|
666
|
+
*/
|
667
|
+
matchDataStoreFromProjectLocationCollectionDataStoreDocumentProcessingConfigName(projectLocationCollectionDataStoreDocumentProcessingConfigName: string): string | number;
|
668
|
+
/**
|
669
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSchema resource name string.
|
670
|
+
*
|
671
|
+
* @param {string} project
|
672
|
+
* @param {string} location
|
673
|
+
* @param {string} collection
|
674
|
+
* @param {string} data_store
|
675
|
+
* @param {string} schema
|
676
|
+
* @returns {string} Resource name string.
|
677
|
+
*/
|
678
|
+
projectLocationCollectionDataStoreSchemaPath(project: string, location: string, collection: string, dataStore: string, schema: string): string;
|
679
|
+
/**
|
680
|
+
* Parse the project from ProjectLocationCollectionDataStoreSchema resource.
|
681
|
+
*
|
682
|
+
* @param {string} projectLocationCollectionDataStoreSchemaName
|
683
|
+
* A fully-qualified path representing project_location_collection_data_store_schema resource.
|
684
|
+
* @returns {string} A string representing the project.
|
685
|
+
*/
|
686
|
+
matchProjectFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
687
|
+
/**
|
688
|
+
* Parse the location from ProjectLocationCollectionDataStoreSchema resource.
|
689
|
+
*
|
690
|
+
* @param {string} projectLocationCollectionDataStoreSchemaName
|
691
|
+
* A fully-qualified path representing project_location_collection_data_store_schema resource.
|
692
|
+
* @returns {string} A string representing the location.
|
693
|
+
*/
|
694
|
+
matchLocationFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
695
|
+
/**
|
696
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSchema resource.
|
697
|
+
*
|
698
|
+
* @param {string} projectLocationCollectionDataStoreSchemaName
|
699
|
+
* A fully-qualified path representing project_location_collection_data_store_schema resource.
|
700
|
+
* @returns {string} A string representing the collection.
|
701
|
+
*/
|
702
|
+
matchCollectionFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
703
|
+
/**
|
704
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSchema resource.
|
705
|
+
*
|
706
|
+
* @param {string} projectLocationCollectionDataStoreSchemaName
|
707
|
+
* A fully-qualified path representing project_location_collection_data_store_schema resource.
|
708
|
+
* @returns {string} A string representing the data_store.
|
709
|
+
*/
|
710
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
711
|
+
/**
|
712
|
+
* Parse the schema from ProjectLocationCollectionDataStoreSchema resource.
|
713
|
+
*
|
714
|
+
* @param {string} projectLocationCollectionDataStoreSchemaName
|
715
|
+
* A fully-qualified path representing project_location_collection_data_store_schema resource.
|
716
|
+
* @returns {string} A string representing the schema.
|
717
|
+
*/
|
718
|
+
matchSchemaFromProjectLocationCollectionDataStoreSchemaName(projectLocationCollectionDataStoreSchemaName: string): string | number;
|
719
|
+
/**
|
720
|
+
* Return a fully-qualified projectLocationCollectionDataStoreServingConfig resource name string.
|
721
|
+
*
|
722
|
+
* @param {string} project
|
723
|
+
* @param {string} location
|
724
|
+
* @param {string} collection
|
725
|
+
* @param {string} data_store
|
726
|
+
* @param {string} serving_config
|
727
|
+
* @returns {string} Resource name string.
|
728
|
+
*/
|
729
|
+
projectLocationCollectionDataStoreServingConfigPath(project: string, location: string, collection: string, dataStore: string, servingConfig: string): string;
|
730
|
+
/**
|
731
|
+
* Parse the project from ProjectLocationCollectionDataStoreServingConfig resource.
|
732
|
+
*
|
733
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
734
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
735
|
+
* @returns {string} A string representing the project.
|
736
|
+
*/
|
737
|
+
matchProjectFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
738
|
+
/**
|
739
|
+
* Parse the location from ProjectLocationCollectionDataStoreServingConfig resource.
|
740
|
+
*
|
741
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
742
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
743
|
+
* @returns {string} A string representing the location.
|
744
|
+
*/
|
745
|
+
matchLocationFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
746
|
+
/**
|
747
|
+
* Parse the collection from ProjectLocationCollectionDataStoreServingConfig resource.
|
748
|
+
*
|
749
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
750
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
751
|
+
* @returns {string} A string representing the collection.
|
752
|
+
*/
|
753
|
+
matchCollectionFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
754
|
+
/**
|
755
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreServingConfig resource.
|
756
|
+
*
|
757
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
758
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
759
|
+
* @returns {string} A string representing the data_store.
|
760
|
+
*/
|
761
|
+
matchDataStoreFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
762
|
+
/**
|
763
|
+
* Parse the serving_config from ProjectLocationCollectionDataStoreServingConfig resource.
|
764
|
+
*
|
765
|
+
* @param {string} projectLocationCollectionDataStoreServingConfigName
|
766
|
+
* A fully-qualified path representing project_location_collection_data_store_serving_config resource.
|
767
|
+
* @returns {string} A string representing the serving_config.
|
768
|
+
*/
|
769
|
+
matchServingConfigFromProjectLocationCollectionDataStoreServingConfigName(projectLocationCollectionDataStoreServingConfigName: string): string | number;
|
770
|
+
/**
|
771
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngine resource name string.
|
772
|
+
*
|
773
|
+
* @param {string} project
|
774
|
+
* @param {string} location
|
775
|
+
* @param {string} collection
|
776
|
+
* @param {string} data_store
|
777
|
+
* @returns {string} Resource name string.
|
778
|
+
*/
|
779
|
+
projectLocationCollectionDataStoreSiteSearchEnginePath(project: string, location: string, collection: string, dataStore: string): string;
|
780
|
+
/**
|
781
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
|
782
|
+
*
|
783
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
|
784
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
|
785
|
+
* @returns {string} A string representing the project.
|
786
|
+
*/
|
787
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
788
|
+
/**
|
789
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
|
790
|
+
*
|
791
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
|
792
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
|
793
|
+
* @returns {string} A string representing the location.
|
794
|
+
*/
|
795
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
796
|
+
/**
|
797
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
|
798
|
+
*
|
799
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
|
800
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
|
801
|
+
* @returns {string} A string representing the collection.
|
802
|
+
*/
|
803
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
804
|
+
/**
|
805
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngine resource.
|
806
|
+
*
|
807
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineName
|
808
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine resource.
|
809
|
+
* @returns {string} A string representing the data_store.
|
810
|
+
*/
|
811
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineName(projectLocationCollectionDataStoreSiteSearchEngineName: string): string | number;
|
812
|
+
/**
|
813
|
+
* Return a fully-qualified projectLocationCollectionDataStoreSiteSearchEngineTargetSite resource name string.
|
814
|
+
*
|
815
|
+
* @param {string} project
|
816
|
+
* @param {string} location
|
817
|
+
* @param {string} collection
|
818
|
+
* @param {string} data_store
|
819
|
+
* @param {string} target_site
|
820
|
+
* @returns {string} Resource name string.
|
821
|
+
*/
|
822
|
+
projectLocationCollectionDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, collection: string, dataStore: string, targetSite: string): string;
|
823
|
+
/**
|
824
|
+
* Parse the project from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
|
825
|
+
*
|
826
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
|
827
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
|
828
|
+
* @returns {string} A string representing the project.
|
829
|
+
*/
|
830
|
+
matchProjectFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
831
|
+
/**
|
832
|
+
* Parse the location from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
|
833
|
+
*
|
834
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
|
835
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
|
836
|
+
* @returns {string} A string representing the location.
|
837
|
+
*/
|
838
|
+
matchLocationFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
839
|
+
/**
|
840
|
+
* Parse the collection from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
|
841
|
+
*
|
842
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
|
843
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
|
844
|
+
* @returns {string} A string representing the collection.
|
845
|
+
*/
|
846
|
+
matchCollectionFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
847
|
+
/**
|
848
|
+
* Parse the data_store from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
|
849
|
+
*
|
850
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
|
851
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
|
852
|
+
* @returns {string} A string representing the data_store.
|
853
|
+
*/
|
854
|
+
matchDataStoreFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
855
|
+
/**
|
856
|
+
* Parse the target_site from ProjectLocationCollectionDataStoreSiteSearchEngineTargetSite resource.
|
857
|
+
*
|
858
|
+
* @param {string} projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName
|
859
|
+
* A fully-qualified path representing project_location_collection_data_store_siteSearchEngine_target_site resource.
|
860
|
+
* @returns {string} A string representing the target_site.
|
861
|
+
*/
|
862
|
+
matchTargetSiteFromProjectLocationCollectionDataStoreSiteSearchEngineTargetSiteName(projectLocationCollectionDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
863
|
+
/**
|
864
|
+
* Return a fully-qualified projectLocationCollectionEngineConversation resource name string.
|
865
|
+
*
|
866
|
+
* @param {string} project
|
867
|
+
* @param {string} location
|
868
|
+
* @param {string} collection
|
869
|
+
* @param {string} engine
|
870
|
+
* @param {string} conversation
|
871
|
+
* @returns {string} Resource name string.
|
872
|
+
*/
|
873
|
+
projectLocationCollectionEngineConversationPath(project: string, location: string, collection: string, engine: string, conversation: string): string;
|
874
|
+
/**
|
875
|
+
* Parse the project from ProjectLocationCollectionEngineConversation resource.
|
876
|
+
*
|
877
|
+
* @param {string} projectLocationCollectionEngineConversationName
|
878
|
+
* A fully-qualified path representing project_location_collection_engine_conversation resource.
|
879
|
+
* @returns {string} A string representing the project.
|
880
|
+
*/
|
881
|
+
matchProjectFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
882
|
+
/**
|
883
|
+
* Parse the location from ProjectLocationCollectionEngineConversation resource.
|
884
|
+
*
|
885
|
+
* @param {string} projectLocationCollectionEngineConversationName
|
886
|
+
* A fully-qualified path representing project_location_collection_engine_conversation resource.
|
887
|
+
* @returns {string} A string representing the location.
|
888
|
+
*/
|
889
|
+
matchLocationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
890
|
+
/**
|
891
|
+
* Parse the collection from ProjectLocationCollectionEngineConversation resource.
|
892
|
+
*
|
893
|
+
* @param {string} projectLocationCollectionEngineConversationName
|
894
|
+
* A fully-qualified path representing project_location_collection_engine_conversation resource.
|
895
|
+
* @returns {string} A string representing the collection.
|
896
|
+
*/
|
897
|
+
matchCollectionFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
898
|
+
/**
|
899
|
+
* Parse the engine from ProjectLocationCollectionEngineConversation resource.
|
900
|
+
*
|
901
|
+
* @param {string} projectLocationCollectionEngineConversationName
|
902
|
+
* A fully-qualified path representing project_location_collection_engine_conversation resource.
|
903
|
+
* @returns {string} A string representing the engine.
|
904
|
+
*/
|
905
|
+
matchEngineFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
906
|
+
/**
|
907
|
+
* Parse the conversation from ProjectLocationCollectionEngineConversation resource.
|
908
|
+
*
|
909
|
+
* @param {string} projectLocationCollectionEngineConversationName
|
910
|
+
* A fully-qualified path representing project_location_collection_engine_conversation resource.
|
911
|
+
* @returns {string} A string representing the conversation.
|
912
|
+
*/
|
913
|
+
matchConversationFromProjectLocationCollectionEngineConversationName(projectLocationCollectionEngineConversationName: string): string | number;
|
914
|
+
/**
|
915
|
+
* Return a fully-qualified projectLocationCollectionEngineServingConfig resource name string.
|
916
|
+
*
|
917
|
+
* @param {string} project
|
918
|
+
* @param {string} location
|
919
|
+
* @param {string} collection
|
920
|
+
* @param {string} engine
|
921
|
+
* @param {string} serving_config
|
922
|
+
* @returns {string} Resource name string.
|
923
|
+
*/
|
924
|
+
projectLocationCollectionEngineServingConfigPath(project: string, location: string, collection: string, engine: string, servingConfig: string): string;
|
925
|
+
/**
|
926
|
+
* Parse the project from ProjectLocationCollectionEngineServingConfig resource.
|
927
|
+
*
|
928
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
929
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
930
|
+
* @returns {string} A string representing the project.
|
931
|
+
*/
|
932
|
+
matchProjectFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
933
|
+
/**
|
934
|
+
* Parse the location from ProjectLocationCollectionEngineServingConfig resource.
|
935
|
+
*
|
936
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
937
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
938
|
+
* @returns {string} A string representing the location.
|
939
|
+
*/
|
940
|
+
matchLocationFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
941
|
+
/**
|
942
|
+
* Parse the collection from ProjectLocationCollectionEngineServingConfig resource.
|
943
|
+
*
|
944
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
945
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
946
|
+
* @returns {string} A string representing the collection.
|
947
|
+
*/
|
948
|
+
matchCollectionFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
949
|
+
/**
|
950
|
+
* Parse the engine from ProjectLocationCollectionEngineServingConfig resource.
|
951
|
+
*
|
952
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
953
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
954
|
+
* @returns {string} A string representing the engine.
|
955
|
+
*/
|
956
|
+
matchEngineFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
957
|
+
/**
|
958
|
+
* Parse the serving_config from ProjectLocationCollectionEngineServingConfig resource.
|
959
|
+
*
|
960
|
+
* @param {string} projectLocationCollectionEngineServingConfigName
|
961
|
+
* A fully-qualified path representing project_location_collection_engine_serving_config resource.
|
962
|
+
* @returns {string} A string representing the serving_config.
|
963
|
+
*/
|
964
|
+
matchServingConfigFromProjectLocationCollectionEngineServingConfigName(projectLocationCollectionEngineServingConfigName: string): string | number;
|
965
|
+
/**
|
966
|
+
* Return a fully-qualified projectLocationDataStore resource name string.
|
967
|
+
*
|
968
|
+
* @param {string} project
|
969
|
+
* @param {string} location
|
970
|
+
* @param {string} data_store
|
971
|
+
* @returns {string} Resource name string.
|
972
|
+
*/
|
973
|
+
projectLocationDataStorePath(project: string, location: string, dataStore: string): string;
|
974
|
+
/**
|
975
|
+
* Parse the project from ProjectLocationDataStore resource.
|
976
|
+
*
|
977
|
+
* @param {string} projectLocationDataStoreName
|
978
|
+
* A fully-qualified path representing project_location_data_store resource.
|
979
|
+
* @returns {string} A string representing the project.
|
980
|
+
*/
|
981
|
+
matchProjectFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
|
982
|
+
/**
|
983
|
+
* Parse the location from ProjectLocationDataStore resource.
|
984
|
+
*
|
985
|
+
* @param {string} projectLocationDataStoreName
|
986
|
+
* A fully-qualified path representing project_location_data_store resource.
|
987
|
+
* @returns {string} A string representing the location.
|
988
|
+
*/
|
989
|
+
matchLocationFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
|
990
|
+
/**
|
991
|
+
* Parse the data_store from ProjectLocationDataStore resource.
|
992
|
+
*
|
993
|
+
* @param {string} projectLocationDataStoreName
|
994
|
+
* A fully-qualified path representing project_location_data_store resource.
|
995
|
+
* @returns {string} A string representing the data_store.
|
996
|
+
*/
|
997
|
+
matchDataStoreFromProjectLocationDataStoreName(projectLocationDataStoreName: string): string | number;
|
998
|
+
/**
|
999
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocument resource name string.
|
1000
|
+
*
|
1001
|
+
* @param {string} project
|
1002
|
+
* @param {string} location
|
1003
|
+
* @param {string} data_store
|
1004
|
+
* @param {string} branch
|
1005
|
+
* @param {string} document
|
1006
|
+
* @returns {string} Resource name string.
|
1007
|
+
*/
|
1008
|
+
projectLocationDataStoreBranchDocumentPath(project: string, location: string, dataStore: string, branch: string, document: string): string;
|
1009
|
+
/**
|
1010
|
+
* Parse the project from ProjectLocationDataStoreBranchDocument resource.
|
1011
|
+
*
|
1012
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
1013
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
1014
|
+
* @returns {string} A string representing the project.
|
1015
|
+
*/
|
1016
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1017
|
+
/**
|
1018
|
+
* Parse the location from ProjectLocationDataStoreBranchDocument resource.
|
1019
|
+
*
|
1020
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
1021
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
1022
|
+
* @returns {string} A string representing the location.
|
1023
|
+
*/
|
1024
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1025
|
+
/**
|
1026
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocument resource.
|
1027
|
+
*
|
1028
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
1029
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
1030
|
+
* @returns {string} A string representing the data_store.
|
1031
|
+
*/
|
1032
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1033
|
+
/**
|
1034
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocument resource.
|
1035
|
+
*
|
1036
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
1037
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
1038
|
+
* @returns {string} A string representing the branch.
|
1039
|
+
*/
|
1040
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1041
|
+
/**
|
1042
|
+
* Parse the document from ProjectLocationDataStoreBranchDocument resource.
|
1043
|
+
*
|
1044
|
+
* @param {string} projectLocationDataStoreBranchDocumentName
|
1045
|
+
* A fully-qualified path representing project_location_data_store_branch_document resource.
|
1046
|
+
* @returns {string} A string representing the document.
|
1047
|
+
*/
|
1048
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentName(projectLocationDataStoreBranchDocumentName: string): string | number;
|
1049
|
+
/**
|
1050
|
+
* Return a fully-qualified projectLocationDataStoreBranchDocumentChunk resource name string.
|
1051
|
+
*
|
1052
|
+
* @param {string} project
|
1053
|
+
* @param {string} location
|
1054
|
+
* @param {string} data_store
|
1055
|
+
* @param {string} branch
|
1056
|
+
* @param {string} document
|
1057
|
+
* @param {string} chunk
|
1058
|
+
* @returns {string} Resource name string.
|
1059
|
+
*/
|
1060
|
+
projectLocationDataStoreBranchDocumentChunkPath(project: string, location: string, dataStore: string, branch: string, document: string, chunk: string): string;
|
1061
|
+
/**
|
1062
|
+
* Parse the project from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1063
|
+
*
|
1064
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1065
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1066
|
+
* @returns {string} A string representing the project.
|
1067
|
+
*/
|
1068
|
+
matchProjectFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1069
|
+
/**
|
1070
|
+
* Parse the location from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1071
|
+
*
|
1072
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1073
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1074
|
+
* @returns {string} A string representing the location.
|
1075
|
+
*/
|
1076
|
+
matchLocationFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1077
|
+
/**
|
1078
|
+
* Parse the data_store from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1079
|
+
*
|
1080
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1081
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1082
|
+
* @returns {string} A string representing the data_store.
|
1083
|
+
*/
|
1084
|
+
matchDataStoreFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1085
|
+
/**
|
1086
|
+
* Parse the branch from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1087
|
+
*
|
1088
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1089
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1090
|
+
* @returns {string} A string representing the branch.
|
1091
|
+
*/
|
1092
|
+
matchBranchFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1093
|
+
/**
|
1094
|
+
* Parse the document from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1095
|
+
*
|
1096
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1097
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1098
|
+
* @returns {string} A string representing the document.
|
1099
|
+
*/
|
1100
|
+
matchDocumentFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1101
|
+
/**
|
1102
|
+
* Parse the chunk from ProjectLocationDataStoreBranchDocumentChunk resource.
|
1103
|
+
*
|
1104
|
+
* @param {string} projectLocationDataStoreBranchDocumentChunkName
|
1105
|
+
* A fully-qualified path representing project_location_data_store_branch_document_chunk resource.
|
1106
|
+
* @returns {string} A string representing the chunk.
|
1107
|
+
*/
|
1108
|
+
matchChunkFromProjectLocationDataStoreBranchDocumentChunkName(projectLocationDataStoreBranchDocumentChunkName: string): string | number;
|
1109
|
+
/**
|
1110
|
+
* Return a fully-qualified projectLocationDataStoreConversation resource name string.
|
1111
|
+
*
|
1112
|
+
* @param {string} project
|
1113
|
+
* @param {string} location
|
1114
|
+
* @param {string} data_store
|
1115
|
+
* @param {string} conversation
|
1116
|
+
* @returns {string} Resource name string.
|
1117
|
+
*/
|
1118
|
+
projectLocationDataStoreConversationPath(project: string, location: string, dataStore: string, conversation: string): string;
|
1119
|
+
/**
|
1120
|
+
* Parse the project from ProjectLocationDataStoreConversation resource.
|
1121
|
+
*
|
1122
|
+
* @param {string} projectLocationDataStoreConversationName
|
1123
|
+
* A fully-qualified path representing project_location_data_store_conversation resource.
|
1124
|
+
* @returns {string} A string representing the project.
|
1125
|
+
*/
|
1126
|
+
matchProjectFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1127
|
+
/**
|
1128
|
+
* Parse the location from ProjectLocationDataStoreConversation resource.
|
1129
|
+
*
|
1130
|
+
* @param {string} projectLocationDataStoreConversationName
|
1131
|
+
* A fully-qualified path representing project_location_data_store_conversation resource.
|
1132
|
+
* @returns {string} A string representing the location.
|
1133
|
+
*/
|
1134
|
+
matchLocationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1135
|
+
/**
|
1136
|
+
* Parse the data_store from ProjectLocationDataStoreConversation resource.
|
1137
|
+
*
|
1138
|
+
* @param {string} projectLocationDataStoreConversationName
|
1139
|
+
* A fully-qualified path representing project_location_data_store_conversation resource.
|
1140
|
+
* @returns {string} A string representing the data_store.
|
1141
|
+
*/
|
1142
|
+
matchDataStoreFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1143
|
+
/**
|
1144
|
+
* Parse the conversation from ProjectLocationDataStoreConversation resource.
|
1145
|
+
*
|
1146
|
+
* @param {string} projectLocationDataStoreConversationName
|
1147
|
+
* A fully-qualified path representing project_location_data_store_conversation resource.
|
1148
|
+
* @returns {string} A string representing the conversation.
|
1149
|
+
*/
|
1150
|
+
matchConversationFromProjectLocationDataStoreConversationName(projectLocationDataStoreConversationName: string): string | number;
|
1151
|
+
/**
|
1152
|
+
* Return a fully-qualified projectLocationDataStoreDocumentProcessingConfig resource name string.
|
1153
|
+
*
|
1154
|
+
* @param {string} project
|
1155
|
+
* @param {string} location
|
1156
|
+
* @param {string} data_store
|
1157
|
+
* @returns {string} Resource name string.
|
1158
|
+
*/
|
1159
|
+
projectLocationDataStoreDocumentProcessingConfigPath(project: string, location: string, dataStore: string): string;
|
1160
|
+
/**
|
1161
|
+
* Parse the project from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1162
|
+
*
|
1163
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1164
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1165
|
+
* @returns {string} A string representing the project.
|
1166
|
+
*/
|
1167
|
+
matchProjectFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1168
|
+
/**
|
1169
|
+
* Parse the location from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1170
|
+
*
|
1171
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1172
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1173
|
+
* @returns {string} A string representing the location.
|
1174
|
+
*/
|
1175
|
+
matchLocationFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1176
|
+
/**
|
1177
|
+
* Parse the data_store from ProjectLocationDataStoreDocumentProcessingConfig resource.
|
1178
|
+
*
|
1179
|
+
* @param {string} projectLocationDataStoreDocumentProcessingConfigName
|
1180
|
+
* A fully-qualified path representing project_location_data_store_documentProcessingConfig resource.
|
1181
|
+
* @returns {string} A string representing the data_store.
|
1182
|
+
*/
|
1183
|
+
matchDataStoreFromProjectLocationDataStoreDocumentProcessingConfigName(projectLocationDataStoreDocumentProcessingConfigName: string): string | number;
|
1184
|
+
/**
|
1185
|
+
* Return a fully-qualified projectLocationDataStoreSchema resource name string.
|
1186
|
+
*
|
1187
|
+
* @param {string} project
|
1188
|
+
* @param {string} location
|
1189
|
+
* @param {string} data_store
|
1190
|
+
* @param {string} schema
|
1191
|
+
* @returns {string} Resource name string.
|
1192
|
+
*/
|
1193
|
+
projectLocationDataStoreSchemaPath(project: string, location: string, dataStore: string, schema: string): string;
|
1194
|
+
/**
|
1195
|
+
* Parse the project from ProjectLocationDataStoreSchema resource.
|
1196
|
+
*
|
1197
|
+
* @param {string} projectLocationDataStoreSchemaName
|
1198
|
+
* A fully-qualified path representing project_location_data_store_schema resource.
|
1199
|
+
* @returns {string} A string representing the project.
|
1200
|
+
*/
|
1201
|
+
matchProjectFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1202
|
+
/**
|
1203
|
+
* Parse the location from ProjectLocationDataStoreSchema resource.
|
1204
|
+
*
|
1205
|
+
* @param {string} projectLocationDataStoreSchemaName
|
1206
|
+
* A fully-qualified path representing project_location_data_store_schema resource.
|
1207
|
+
* @returns {string} A string representing the location.
|
1208
|
+
*/
|
1209
|
+
matchLocationFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1210
|
+
/**
|
1211
|
+
* Parse the data_store from ProjectLocationDataStoreSchema resource.
|
1212
|
+
*
|
1213
|
+
* @param {string} projectLocationDataStoreSchemaName
|
1214
|
+
* A fully-qualified path representing project_location_data_store_schema resource.
|
1215
|
+
* @returns {string} A string representing the data_store.
|
1216
|
+
*/
|
1217
|
+
matchDataStoreFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1218
|
+
/**
|
1219
|
+
* Parse the schema from ProjectLocationDataStoreSchema resource.
|
1220
|
+
*
|
1221
|
+
* @param {string} projectLocationDataStoreSchemaName
|
1222
|
+
* A fully-qualified path representing project_location_data_store_schema resource.
|
1223
|
+
* @returns {string} A string representing the schema.
|
1224
|
+
*/
|
1225
|
+
matchSchemaFromProjectLocationDataStoreSchemaName(projectLocationDataStoreSchemaName: string): string | number;
|
1226
|
+
/**
|
1227
|
+
* Return a fully-qualified projectLocationDataStoreServingConfig resource name string.
|
1228
|
+
*
|
1229
|
+
* @param {string} project
|
1230
|
+
* @param {string} location
|
1231
|
+
* @param {string} data_store
|
1232
|
+
* @param {string} serving_config
|
1233
|
+
* @returns {string} Resource name string.
|
1234
|
+
*/
|
1235
|
+
projectLocationDataStoreServingConfigPath(project: string, location: string, dataStore: string, servingConfig: string): string;
|
1236
|
+
/**
|
1237
|
+
* Parse the project from ProjectLocationDataStoreServingConfig resource.
|
1238
|
+
*
|
1239
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1240
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1241
|
+
* @returns {string} A string representing the project.
|
1242
|
+
*/
|
1243
|
+
matchProjectFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1244
|
+
/**
|
1245
|
+
* Parse the location from ProjectLocationDataStoreServingConfig resource.
|
1246
|
+
*
|
1247
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1248
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1249
|
+
* @returns {string} A string representing the location.
|
1250
|
+
*/
|
1251
|
+
matchLocationFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1252
|
+
/**
|
1253
|
+
* Parse the data_store from ProjectLocationDataStoreServingConfig resource.
|
1254
|
+
*
|
1255
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1256
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1257
|
+
* @returns {string} A string representing the data_store.
|
1258
|
+
*/
|
1259
|
+
matchDataStoreFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1260
|
+
/**
|
1261
|
+
* Parse the serving_config from ProjectLocationDataStoreServingConfig resource.
|
1262
|
+
*
|
1263
|
+
* @param {string} projectLocationDataStoreServingConfigName
|
1264
|
+
* A fully-qualified path representing project_location_data_store_serving_config resource.
|
1265
|
+
* @returns {string} A string representing the serving_config.
|
1266
|
+
*/
|
1267
|
+
matchServingConfigFromProjectLocationDataStoreServingConfigName(projectLocationDataStoreServingConfigName: string): string | number;
|
1268
|
+
/**
|
1269
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngine resource name string.
|
1270
|
+
*
|
1271
|
+
* @param {string} project
|
1272
|
+
* @param {string} location
|
1273
|
+
* @param {string} data_store
|
1274
|
+
* @returns {string} Resource name string.
|
1275
|
+
*/
|
1276
|
+
projectLocationDataStoreSiteSearchEnginePath(project: string, location: string, dataStore: string): string;
|
1277
|
+
/**
|
1278
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngine resource.
|
1279
|
+
*
|
1280
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineName
|
1281
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
|
1282
|
+
* @returns {string} A string representing the project.
|
1283
|
+
*/
|
1284
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
1285
|
+
/**
|
1286
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngine resource.
|
1287
|
+
*
|
1288
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineName
|
1289
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
|
1290
|
+
* @returns {string} A string representing the location.
|
1291
|
+
*/
|
1292
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
1293
|
+
/**
|
1294
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngine resource.
|
1295
|
+
*
|
1296
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineName
|
1297
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine resource.
|
1298
|
+
* @returns {string} A string representing the data_store.
|
1299
|
+
*/
|
1300
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineName(projectLocationDataStoreSiteSearchEngineName: string): string | number;
|
1301
|
+
/**
|
1302
|
+
* Return a fully-qualified projectLocationDataStoreSiteSearchEngineTargetSite resource name string.
|
1303
|
+
*
|
1304
|
+
* @param {string} project
|
1305
|
+
* @param {string} location
|
1306
|
+
* @param {string} data_store
|
1307
|
+
* @param {string} target_site
|
1308
|
+
* @returns {string} Resource name string.
|
1309
|
+
*/
|
1310
|
+
projectLocationDataStoreSiteSearchEngineTargetSitePath(project: string, location: string, dataStore: string, targetSite: string): string;
|
1311
|
+
/**
|
1312
|
+
* Parse the project from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
|
1313
|
+
*
|
1314
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
|
1315
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
|
1316
|
+
* @returns {string} A string representing the project.
|
1317
|
+
*/
|
1318
|
+
matchProjectFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
1319
|
+
/**
|
1320
|
+
* Parse the location from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
|
1321
|
+
*
|
1322
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
|
1323
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
|
1324
|
+
* @returns {string} A string representing the location.
|
1325
|
+
*/
|
1326
|
+
matchLocationFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
1327
|
+
/**
|
1328
|
+
* Parse the data_store from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
|
1329
|
+
*
|
1330
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
|
1331
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
|
1332
|
+
* @returns {string} A string representing the data_store.
|
1333
|
+
*/
|
1334
|
+
matchDataStoreFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
1335
|
+
/**
|
1336
|
+
* Parse the target_site from ProjectLocationDataStoreSiteSearchEngineTargetSite resource.
|
1337
|
+
*
|
1338
|
+
* @param {string} projectLocationDataStoreSiteSearchEngineTargetSiteName
|
1339
|
+
* A fully-qualified path representing project_location_data_store_siteSearchEngine_target_site resource.
|
1340
|
+
* @returns {string} A string representing the target_site.
|
1341
|
+
*/
|
1342
|
+
matchTargetSiteFromProjectLocationDataStoreSiteSearchEngineTargetSiteName(projectLocationDataStoreSiteSearchEngineTargetSiteName: string): string | number;
|
1343
|
+
/**
|
1344
|
+
* Terminate the gRPC channel and close the client.
|
1345
|
+
*
|
1346
|
+
* The client will no longer be usable and all future behavior is undefined.
|
1347
|
+
* @returns {Promise} A promise that resolves when the client is closed.
|
1348
|
+
*/
|
1349
|
+
close(): Promise<void>;
|
1350
|
+
}
|