@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.0.20230807 → 0.0.20230811
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/index.d.ts +17 -1
- package/package.json +1 -1
- package/tests.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://discoveryengine.googleapis.com/$discovery/rest?version=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20230811
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -238,9 +238,15 @@ declare namespace gapi.client {
|
|
|
238
238
|
*/
|
|
239
239
|
exactMatch?:
|
|
240
240
|
boolean;
|
|
241
|
+
/** Output only. Failure reason. */
|
|
242
|
+
failureReason?:
|
|
243
|
+
GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReason;
|
|
241
244
|
/** Output only. This is system-generated based on the provided_uri_pattern. */
|
|
242
245
|
generatedUriPattern?:
|
|
243
246
|
string;
|
|
247
|
+
/** Output only. Indexing status. */
|
|
248
|
+
indexingStatus?:
|
|
249
|
+
string;
|
|
244
250
|
/**
|
|
245
251
|
* Output only. The fully qualified resource name of the target site.
|
|
246
252
|
* `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/siteSearchEngine/targetSites/{target_site}` The `target_site_id` is system-generated.
|
|
@@ -260,6 +266,16 @@ declare namespace gapi.client {
|
|
|
260
266
|
updateTime?:
|
|
261
267
|
string;
|
|
262
268
|
}
|
|
269
|
+
interface GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReason {
|
|
270
|
+
/** Failed due to insufficient quota. */
|
|
271
|
+
quotaFailure?:
|
|
272
|
+
GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReasonQuotaFailure;
|
|
273
|
+
}
|
|
274
|
+
interface GoogleCloudDiscoveryengineV1alphaTargetSiteFailureReasonQuotaFailure {
|
|
275
|
+
/** This number is an estimation on how much total quota this project needs to successfully complete indexing. */
|
|
276
|
+
totalRequiredQuota?:
|
|
277
|
+
string;
|
|
278
|
+
}
|
|
263
279
|
interface GoogleCloudDiscoveryengineV1betaBigQuerySource {
|
|
264
280
|
/**
|
|
265
281
|
* The schema to use when parsing the data from the source. Supported values for user event imports: * `user_event` (default): One UserEvent per row. Supported values for document
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230811
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|