@maxim_mazurok/gapi.client.discoveryengine-v1 0.0.20240920 → 0.0.20241004
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 +27 -3
- package/package.json +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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20241004
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -362,6 +362,8 @@ declare namespace gapi.client {
|
|
|
362
362
|
createTime?: string;
|
|
363
363
|
/** The display name of the model. */
|
|
364
364
|
displayName?: string;
|
|
365
|
+
/** Currently this is only populated if the model state is `INPUT_VALIDATION_FAILED`. */
|
|
366
|
+
errorMessage?: string;
|
|
365
367
|
/** The metrics of the trained model. */
|
|
366
368
|
metrics?: {[P in string]: number};
|
|
367
369
|
/** The state that the model is in (e.g.`TRAINING` or `TRAINING_FAILED`). */
|
|
@@ -508,6 +510,8 @@ declare namespace gapi.client {
|
|
|
508
510
|
createTime?: string;
|
|
509
511
|
/** The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be associated here. Note that when used in CreateEngineRequest, one DataStore id must be provided as the system will use it for necessary initializations. */
|
|
510
512
|
dataStoreIds?: string[];
|
|
513
|
+
/** Optional. Whether to disable analytics for searches performed on this engine. */
|
|
514
|
+
disableAnalytics?: boolean;
|
|
511
515
|
/** Required. The display name of the engine. Should be human readable. UTF-8 encoded string with limit of 1024 characters. */
|
|
512
516
|
displayName?: string;
|
|
513
517
|
/** The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: If unspecified, default to `GENERIC`. Vertical on Engine has to match vertical of the DataStore linked to the engine. */
|
|
@@ -1282,6 +1286,10 @@ declare namespace gapi.client {
|
|
|
1282
1286
|
interface GoogleCloudDiscoveryengineV1alphaWorkspaceConfig {
|
|
1283
1287
|
/** Obfuscated Dasher customer ID. */
|
|
1284
1288
|
dasherCustomerId?: string;
|
|
1289
|
+
/** Optional. The super admin email address for the workspace that will be used for access token generation. For now we only use it for Native Google Drive connector data ingestion. */
|
|
1290
|
+
superAdminEmailAddress?: string;
|
|
1291
|
+
/** Optional. The super admin service account for the workspace that will be used for access token generation. For now we only use it for Native Google Drive connector data ingestion. */
|
|
1292
|
+
superAdminServiceAccount?: string;
|
|
1285
1293
|
/** The Google Workspace data source. */
|
|
1286
1294
|
type?: string;
|
|
1287
1295
|
}
|
|
@@ -1732,6 +1740,8 @@ declare namespace gapi.client {
|
|
|
1732
1740
|
createTime?: string;
|
|
1733
1741
|
/** The display name of the model. */
|
|
1734
1742
|
displayName?: string;
|
|
1743
|
+
/** Currently this is only populated if the model state is `INPUT_VALIDATION_FAILED`. */
|
|
1744
|
+
errorMessage?: string;
|
|
1735
1745
|
/** The metrics of the trained model. */
|
|
1736
1746
|
metrics?: {[P in string]: number};
|
|
1737
1747
|
/** The state that the model is in (e.g.`TRAINING` or `TRAINING_FAILED`). */
|
|
@@ -1874,6 +1884,8 @@ declare namespace gapi.client {
|
|
|
1874
1884
|
createTime?: string;
|
|
1875
1885
|
/** The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be associated here. Note that when used in CreateEngineRequest, one DataStore id must be provided as the system will use it for necessary initializations. */
|
|
1876
1886
|
dataStoreIds?: string[];
|
|
1887
|
+
/** Optional. Whether to disable analytics for searches performed on this engine. */
|
|
1888
|
+
disableAnalytics?: boolean;
|
|
1877
1889
|
/** Required. The display name of the engine. Should be human readable. UTF-8 encoded string with limit of 1024 characters. */
|
|
1878
1890
|
displayName?: string;
|
|
1879
1891
|
/** The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: If unspecified, default to `GENERIC`. Vertical on Engine has to match vertical of the DataStore linked to the engine. */
|
|
@@ -2468,6 +2480,10 @@ declare namespace gapi.client {
|
|
|
2468
2480
|
interface GoogleCloudDiscoveryengineV1betaWorkspaceConfig {
|
|
2469
2481
|
/** Obfuscated Dasher customer ID. */
|
|
2470
2482
|
dasherCustomerId?: string;
|
|
2483
|
+
/** Optional. The super admin email address for the workspace that will be used for access token generation. For now we only use it for Native Google Drive connector data ingestion. */
|
|
2484
|
+
superAdminEmailAddress?: string;
|
|
2485
|
+
/** Optional. The super admin service account for the workspace that will be used for access token generation. For now we only use it for Native Google Drive connector data ingestion. */
|
|
2486
|
+
superAdminServiceAccount?: string;
|
|
2471
2487
|
/** The Google Workspace data source. */
|
|
2472
2488
|
type?: string;
|
|
2473
2489
|
}
|
|
@@ -2800,6 +2816,8 @@ declare namespace gapi.client {
|
|
|
2800
2816
|
createTime?: string;
|
|
2801
2817
|
/** The display name of the model. */
|
|
2802
2818
|
displayName?: string;
|
|
2819
|
+
/** Currently this is only populated if the model state is `INPUT_VALIDATION_FAILED`. */
|
|
2820
|
+
errorMessage?: string;
|
|
2803
2821
|
/** The metrics of the trained model. */
|
|
2804
2822
|
metrics?: {[P in string]: number};
|
|
2805
2823
|
/** The state that the model is in (e.g.`TRAINING` or `TRAINING_FAILED`). */
|
|
@@ -2990,6 +3008,8 @@ declare namespace gapi.client {
|
|
|
2990
3008
|
createTime?: string;
|
|
2991
3009
|
/** The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be associated here. Note that when used in CreateEngineRequest, one DataStore id must be provided as the system will use it for necessary initializations. */
|
|
2992
3010
|
dataStoreIds?: string[];
|
|
3011
|
+
/** Optional. Whether to disable analytics for searches performed on this engine. */
|
|
3012
|
+
disableAnalytics?: boolean;
|
|
2993
3013
|
/** Required. The display name of the engine. Should be human readable. UTF-8 encoded string with limit of 1024 characters. */
|
|
2994
3014
|
displayName?: string;
|
|
2995
3015
|
/** The industry vertical that the engine registers. The restriction of the Engine industry vertical is based on DataStore: If unspecified, default to `GENERIC`. Vertical on Engine has to match vertical of the DataStore linked to the engine. */
|
|
@@ -4027,6 +4047,10 @@ declare namespace gapi.client {
|
|
|
4027
4047
|
interface GoogleCloudDiscoveryengineV1WorkspaceConfig {
|
|
4028
4048
|
/** Obfuscated Dasher customer ID. */
|
|
4029
4049
|
dasherCustomerId?: string;
|
|
4050
|
+
/** Optional. The super admin email address for the workspace that will be used for access token generation. For now we only use it for Native Google Drive connector data ingestion. */
|
|
4051
|
+
superAdminEmailAddress?: string;
|
|
4052
|
+
/** Optional. The super admin service account for the workspace that will be used for access token generation. For now we only use it for Native Google Drive connector data ingestion. */
|
|
4053
|
+
superAdminServiceAccount?: string;
|
|
4030
4054
|
/** The Google Workspace data source. */
|
|
4031
4055
|
type?: string;
|
|
4032
4056
|
}
|
|
@@ -11676,7 +11700,7 @@ declare namespace gapi.client {
|
|
|
11676
11700
|
uploadType?: string;
|
|
11677
11701
|
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
11678
11702
|
}
|
|
11679
|
-
interface
|
|
11703
|
+
interface IdentityMappingStoresResource {
|
|
11680
11704
|
operations: OperationsResource;
|
|
11681
11705
|
}
|
|
11682
11706
|
interface OperationsResource {
|
|
@@ -11902,7 +11926,7 @@ declare namespace gapi.client {
|
|
|
11902
11926
|
collections: CollectionsResource;
|
|
11903
11927
|
dataStores: DataStoresResource;
|
|
11904
11928
|
groundingConfigs: GroundingConfigsResource;
|
|
11905
|
-
|
|
11929
|
+
identityMappingStores: IdentityMappingStoresResource;
|
|
11906
11930
|
operations: OperationsResource;
|
|
11907
11931
|
rankingConfigs: RankingConfigsResource;
|
|
11908
11932
|
userEvents: UserEventsResource;
|