@maxim_mazurok/gapi.client.discoveryengine-v1 0.0.20250322 → 0.0.20250331
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 -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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250331
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -692,6 +692,8 @@ declare namespace gapi.client {
|
|
|
692
692
|
privateConnectivityProjectId?: string;
|
|
693
693
|
/** Output only. real-time sync state */
|
|
694
694
|
realtimeState?: string;
|
|
695
|
+
/** Optional. The configuration for realtime sync. */
|
|
696
|
+
realtimeSyncConfig?: GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig;
|
|
695
697
|
/** Required. The refresh interval for data sync. If duration is set to 0, the data will be synced in real time. The streaming feature is not supported yet. The minimum is 30 minutes and maximum is 7 days. */
|
|
696
698
|
refreshInterval?: string;
|
|
697
699
|
/** Output only. State of the connector. */
|
|
@@ -705,6 +707,12 @@ declare namespace gapi.client {
|
|
|
705
707
|
/** Output only. Timestamp the DataConnector was last updated. */
|
|
706
708
|
updateTime?: string;
|
|
707
709
|
}
|
|
710
|
+
interface GoogleCloudDiscoveryengineV1alphaDataConnectorRealtimeSyncConfig {
|
|
711
|
+
/** Optional. The ID of the Secret Manager secret used for webhook secret. */
|
|
712
|
+
realtimeSyncSecret?: string;
|
|
713
|
+
/** Optional. Webhook url for the connector to specify additional params for realtime sync. */
|
|
714
|
+
webhookUri?: string;
|
|
715
|
+
}
|
|
708
716
|
interface GoogleCloudDiscoveryengineV1alphaDataConnectorSourceEntity {
|
|
709
717
|
/** Output only. The full resource name of the associated data store for the source entity. Format: `projects/*/locations/*/collections/*/dataStores/*`. When the connector is initialized by the DataConnectorService.SetUpDataConnector method, a DataStore is automatically created for each source entity. */
|
|
710
718
|
dataStore?: string;
|
|
@@ -3855,6 +3863,8 @@ declare namespace gapi.client {
|
|
|
3855
3863
|
interface GoogleCloudDiscoveryengineV1DisableAdvancedSiteSearchRequest {}
|
|
3856
3864
|
interface GoogleCloudDiscoveryengineV1DisableAdvancedSiteSearchResponse {}
|
|
3857
3865
|
interface GoogleCloudDiscoveryengineV1Document {
|
|
3866
|
+
/** Access control information for the document. */
|
|
3867
|
+
aclInfo?: GoogleCloudDiscoveryengineV1DocumentAclInfo;
|
|
3858
3868
|
/** The unstructured data linked to this document. Content must be set if this document is under a `CONTENT_REQUIRED` data store. */
|
|
3859
3869
|
content?: GoogleCloudDiscoveryengineV1DocumentContent;
|
|
3860
3870
|
/** Output only. This field is OUTPUT_ONLY. It contains derived data that are not in the original input document. */
|
|
@@ -3876,6 +3886,16 @@ declare namespace gapi.client {
|
|
|
3876
3886
|
/** The structured JSON data for the document. It should conform to the registered Schema or an `INVALID_ARGUMENT` error is thrown. */
|
|
3877
3887
|
structData?: {[P in string]: any};
|
|
3878
3888
|
}
|
|
3889
|
+
interface GoogleCloudDiscoveryengineV1DocumentAclInfo {
|
|
3890
|
+
/** Readers of the document. */
|
|
3891
|
+
readers?: GoogleCloudDiscoveryengineV1DocumentAclInfoAccessRestriction[];
|
|
3892
|
+
}
|
|
3893
|
+
interface GoogleCloudDiscoveryengineV1DocumentAclInfoAccessRestriction {
|
|
3894
|
+
/** All users within the Identity Provider. */
|
|
3895
|
+
idpWide?: boolean;
|
|
3896
|
+
/** List of principals. */
|
|
3897
|
+
principals?: GoogleCloudDiscoveryengineV1Principal[];
|
|
3898
|
+
}
|
|
3879
3899
|
interface GoogleCloudDiscoveryengineV1DocumentContent {
|
|
3880
3900
|
/** The MIME type of the content. Supported types: * `application/pdf` (PDF, only native PDFs are supported for now) * `text/html` (HTML) * `application/vnd.openxmlformats-officedocument.wordprocessingml.document` (DOCX) * `application/vnd.openxmlformats-officedocument.presentationml.presentation` (PPTX) * `text/plain` (TXT) See https://www.iana.org/assignments/media-types/media-types.xhtml. */
|
|
3881
3901
|
mimeType?: string;
|
|
@@ -4375,6 +4395,12 @@ declare namespace gapi.client {
|
|
|
4375
4395
|
/** The total number of panels, including this one, shown to the user. Must be set if panel_position is set. */
|
|
4376
4396
|
totalPanels?: number;
|
|
4377
4397
|
}
|
|
4398
|
+
interface GoogleCloudDiscoveryengineV1Principal {
|
|
4399
|
+
/** Group identifier. For Google Workspace user account, group_id should be the google workspace group email. For non-google identity provider user account, group_id is the mapped group identifier configured during the workforcepool config. */
|
|
4400
|
+
groupId?: string;
|
|
4401
|
+
/** User identifier. For Google Workspace user account, user_id should be the google workspace user email. For non-google identity provider user account, user_id is the mapped user identifier configured during the workforcepool config. */
|
|
4402
|
+
userId?: string;
|
|
4403
|
+
}
|
|
4378
4404
|
interface GoogleCloudDiscoveryengineV1Project {
|
|
4379
4405
|
/** Output only. The timestamp when this project is created. */
|
|
4380
4406
|
createTime?: string;
|