@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.0.20240224 → 0.0.20240227
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 +23 -1
- 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=v1beta
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240227
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -82,6 +82,12 @@ declare namespace gapi.client {
|
|
|
82
82
|
/** Human-readable name of a function or method—for example, `google.cloud.discoveryengine.v1alpha.RecommendationService.Recommend`. */
|
|
83
83
|
functionName?: string;
|
|
84
84
|
}
|
|
85
|
+
interface GoogleCloudDiscoveryengineV1alphaAclConfig {
|
|
86
|
+
/** Identity provider config. */
|
|
87
|
+
idpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfig;
|
|
88
|
+
/** Immutable. The full resource name of the acl configuration. Format: `projects/{project}/locations/{location}/aclConfig`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
|
|
89
|
+
name?: string;
|
|
90
|
+
}
|
|
85
91
|
interface GoogleCloudDiscoveryengineV1alphaBatchCreateTargetSiteMetadata {
|
|
86
92
|
/** Operation create time. */
|
|
87
93
|
createTime?: string;
|
|
@@ -117,6 +123,8 @@ declare namespace gapi.client {
|
|
|
117
123
|
updateTime?: string;
|
|
118
124
|
}
|
|
119
125
|
interface GoogleCloudDiscoveryengineV1alphaDataStore {
|
|
126
|
+
/** Immutable. Whether data in the DataStore has ACL information. If set to `true`, the source data must have ACL. ACL will be ingested when data is ingested by DocumentService.ImportDocuments methods. When ACL is enabled for the DataStore, Document can't be accessed by calling DocumentService.GetDocument or DocumentService.ListDocuments. Currently ACL is only supported in `GENERIC` industry vertical with non-`PUBLIC_WEBSITE` content config. */
|
|
127
|
+
aclEnabled?: boolean;
|
|
120
128
|
/** Immutable. The content config of the data store. If this field is unset, the server behavior defaults to ContentConfig.NO_CONTENT. */
|
|
121
129
|
contentConfig?: string;
|
|
122
130
|
/** Output only. Timestamp the DataStore was created at. */
|
|
@@ -127,6 +135,8 @@ declare namespace gapi.client {
|
|
|
127
135
|
displayName?: string;
|
|
128
136
|
/** Configuration for Document understanding and enrichment. */
|
|
129
137
|
documentProcessingConfig?: GoogleCloudDiscoveryengineV1alphaDocumentProcessingConfig;
|
|
138
|
+
/** Output only. Data store level identity provider config. */
|
|
139
|
+
idpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfig;
|
|
130
140
|
/** Immutable. The industry vertical that the data store registers. */
|
|
131
141
|
industryVertical?: string;
|
|
132
142
|
/** Immutable. The full resource name of the data store. Format: `projects/{project}/locations/{location}/collections/{collection_id}/dataStores/{data_store_id}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
|
|
@@ -196,6 +206,8 @@ declare namespace gapi.client {
|
|
|
196
206
|
}
|
|
197
207
|
interface GoogleCloudDiscoveryengineV1alphaEnableAdvancedSiteSearchResponse {}
|
|
198
208
|
interface GoogleCloudDiscoveryengineV1alphaEngine {
|
|
209
|
+
/** Whether the search engine can associate with multiple data stores. If true, the generic search engine can associate with one or more data stores. This is an input-only field. */
|
|
210
|
+
allowMultipleDataStoresSearchEngine?: boolean;
|
|
199
211
|
/** Configurations for the Chat Engine. Only applicable if solution_type is SOLUTION_TYPE_CHAT. */
|
|
200
212
|
chatEngineConfig?: GoogleCloudDiscoveryengineV1alphaEngineChatEngineConfig;
|
|
201
213
|
/** Output only. Additional information of the Chat Engine. Only applicable if solution_type is SOLUTION_TYPE_CHAT. */
|
|
@@ -312,6 +324,16 @@ declare namespace gapi.client {
|
|
|
312
324
|
/** If searchable_option is SEARCHABLE_ENABLED, field values are searchable by text queries in SearchService.Search. If SEARCHABLE_ENABLED but field type is numerical, field values will not be searchable by text queries in SearchService.Search, as there are no text values associated to numerical fields. If searchable_option is unset, the server behavior defaults to SEARCHABLE_DISABLED for fields that support setting searchable options. Only `string` fields that have no key property mapping support setting searchable_option. For those fields that do not support setting searchable options, the server will skip searchable option setting, and setting searchable_option for those fields will throw `INVALID_ARGUMENT` error. */
|
|
313
325
|
searchableOption?: string;
|
|
314
326
|
}
|
|
327
|
+
interface GoogleCloudDiscoveryengineV1alphaIdpConfig {
|
|
328
|
+
/** External Identity provider config. */
|
|
329
|
+
externalIdpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfigExternalIdpConfig;
|
|
330
|
+
/** Identity provider type configured. */
|
|
331
|
+
idpType?: string;
|
|
332
|
+
}
|
|
333
|
+
interface GoogleCloudDiscoveryengineV1alphaIdpConfigExternalIdpConfig {
|
|
334
|
+
/** Workforce pool name. Example: "locations/global/workforcePools/pool_id" */
|
|
335
|
+
workforcePoolName?: string;
|
|
336
|
+
}
|
|
315
337
|
interface GoogleCloudDiscoveryengineV1alphaImportDocumentsMetadata {
|
|
316
338
|
/** Operation create time. */
|
|
317
339
|
createTime?: string;
|