@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.1.20251007 → 0.1.20251023
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 +266 -50
- package/package.json +1 -1
- package/readme.md +6 -0
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: 20251023
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -372,24 +372,6 @@ declare namespace gapi.client {
|
|
|
372
372
|
/** Required. The enrollment status of a customer. */
|
|
373
373
|
enrollState?: string;
|
|
374
374
|
}
|
|
375
|
-
interface GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig {
|
|
376
|
-
/** Optional. The enrollment state of each alert. */
|
|
377
|
-
alertEnrollments?: GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment[];
|
|
378
|
-
/** Immutable. The fully qualified resource name of the AlertPolicy. */
|
|
379
|
-
alertPolicy?: string;
|
|
380
|
-
/** Optional. The contact details for each alert policy. */
|
|
381
|
-
contactDetails?: GoogleCloudDiscoveryengineV1ContactDetails[];
|
|
382
|
-
/** Optional. The language code used for notifications */
|
|
383
|
-
languageCode?: string;
|
|
384
|
-
}
|
|
385
|
-
interface GoogleCloudDiscoveryengineV1AlertPolicyResourceConfigAlertEnrollment {
|
|
386
|
-
/** Immutable. The id of an alert. */
|
|
387
|
-
alertId?: string;
|
|
388
|
-
/** Required. The enrollment status of a customer. */
|
|
389
|
-
enrollState?: string;
|
|
390
|
-
/** Optional. Parameters used to instantiate a notification. Used for notifications that are triggered when registered. Not stored. * Gemini Business welcome emails. * Gemini Business user invitation emails. */
|
|
391
|
-
notificationParams?: {[P in string]: string};
|
|
392
|
-
}
|
|
393
375
|
interface GoogleCloudDiscoveryengineV1alphaAclConfig {
|
|
394
376
|
/** Identity provider config. */
|
|
395
377
|
idpConfig?: GoogleCloudDiscoveryengineV1alphaIdpConfig;
|
|
@@ -717,6 +699,8 @@ declare namespace gapi.client {
|
|
|
717
699
|
mimeType?: string;
|
|
718
700
|
}
|
|
719
701
|
interface GoogleCloudDiscoveryengineV1alphaAssistantGroundedContent {
|
|
702
|
+
/** Source attribution of the generated content. See also https://cloud.google.com/vertex-ai/generative-ai/docs/learn/overview#citation_check */
|
|
703
|
+
citationMetadata?: GoogleCloudDiscoveryengineV1alphaCitationMetadata;
|
|
720
704
|
/** The content. */
|
|
721
705
|
content?: GoogleCloudDiscoveryengineV1alphaAssistantContent;
|
|
722
706
|
/** Metadata for grounding based on text sources. */
|
|
@@ -792,6 +776,24 @@ declare namespace gapi.client {
|
|
|
792
776
|
/** UserLicenses successfully updated. */
|
|
793
777
|
userLicenses?: GoogleCloudDiscoveryengineV1alphaUserLicense[];
|
|
794
778
|
}
|
|
779
|
+
interface GoogleCloudDiscoveryengineV1alphaCitation {
|
|
780
|
+
/** Output only. End index into the content. */
|
|
781
|
+
endIndex?: number;
|
|
782
|
+
/** Output only. License of the attribution. */
|
|
783
|
+
license?: string;
|
|
784
|
+
/** Output only. Publication date of the attribution. */
|
|
785
|
+
publicationDate?: GoogleTypeDate;
|
|
786
|
+
/** Output only. Start index into the content. */
|
|
787
|
+
startIndex?: number;
|
|
788
|
+
/** Output only. Title of the attribution. */
|
|
789
|
+
title?: string;
|
|
790
|
+
/** Output only. Url reference of the attribution. */
|
|
791
|
+
uri?: string;
|
|
792
|
+
}
|
|
793
|
+
interface GoogleCloudDiscoveryengineV1alphaCitationMetadata {
|
|
794
|
+
/** Output only. List of citations. */
|
|
795
|
+
citations?: GoogleCloudDiscoveryengineV1alphaCitation[];
|
|
796
|
+
}
|
|
795
797
|
interface GoogleCloudDiscoveryengineV1alphaCmekConfig {
|
|
796
798
|
/** Output only. The default CmekConfig for the Customer. */
|
|
797
799
|
isDefault?: boolean;
|
|
@@ -1267,6 +1269,12 @@ declare namespace gapi.client {
|
|
|
1267
1269
|
/** Operation last update time. If the operation is done, this is also the finish time. */
|
|
1268
1270
|
updateTime?: string;
|
|
1269
1271
|
}
|
|
1272
|
+
interface GoogleCloudDiscoveryengineV1alphaDeleteUserStoreMetadata {
|
|
1273
|
+
/** The number of end users under the user store that failed to be deleted. */
|
|
1274
|
+
failureCount?: string;
|
|
1275
|
+
/** The number of end users under the user store that were successfully deleted. */
|
|
1276
|
+
successCount?: string;
|
|
1277
|
+
}
|
|
1270
1278
|
interface GoogleCloudDiscoveryengineV1alphaDestinationConfig {
|
|
1271
1279
|
/** Optional. The destinations for the corresponding key. */
|
|
1272
1280
|
destinations?: GoogleCloudDiscoveryengineV1alphaDestinationConfigDestination[];
|
|
@@ -1699,6 +1707,8 @@ declare namespace gapi.client {
|
|
|
1699
1707
|
endDate?: GoogleTypeDate;
|
|
1700
1708
|
/** Optional. Whether the license config is for free trial. */
|
|
1701
1709
|
freeTrial?: boolean;
|
|
1710
|
+
/** Output only. Whether the license config is for Gemini bundle. */
|
|
1711
|
+
geminiBundle?: boolean;
|
|
1702
1712
|
/** Required. Number of licenses purchased. */
|
|
1703
1713
|
licenseCount?: string;
|
|
1704
1714
|
/** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
|
|
@@ -1771,6 +1781,8 @@ declare namespace gapi.client {
|
|
|
1771
1781
|
interface GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfig {
|
|
1772
1782
|
/** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
|
|
1773
1783
|
modelArmorConfig?: GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
|
|
1784
|
+
/** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
|
|
1785
|
+
optOutNotebookSharing?: boolean;
|
|
1774
1786
|
}
|
|
1775
1787
|
interface GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig {
|
|
1776
1788
|
/** Optional. The resource name of the Model Armor Template for sanitizing LLM responses. Format: projects/{project}/locations/{location}/templates/{template_id} If not specified, no sanitization will be applied to the LLM response. */
|
|
@@ -2256,6 +2268,8 @@ declare namespace gapi.client {
|
|
|
2256
2268
|
endTime?: string;
|
|
2257
2269
|
/** Optional. Whether the session is pinned, pinned session will be displayed on the top of the session list. */
|
|
2258
2270
|
isPinned?: boolean;
|
|
2271
|
+
/** Optional. The labels for the session. Can be set as filter in ListSessionsRequest. */
|
|
2272
|
+
labels?: string[];
|
|
2259
2273
|
/** Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/engines/{engine}/sessions/*` */
|
|
2260
2274
|
name?: string;
|
|
2261
2275
|
/** Output only. The time the session started. */
|
|
@@ -2662,24 +2676,6 @@ declare namespace gapi.client {
|
|
|
2662
2676
|
/** If set true, initial indexing is disabled for the DataStore. */
|
|
2663
2677
|
disableInitialIndex?: boolean;
|
|
2664
2678
|
}
|
|
2665
|
-
interface GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig {
|
|
2666
|
-
/** Optional. The enrollment state of each alert. */
|
|
2667
|
-
alertEnrollments?: GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment[];
|
|
2668
|
-
/** Immutable. The fully qualified resource name of the AlertPolicy. */
|
|
2669
|
-
alertPolicy?: string;
|
|
2670
|
-
/** Optional. The contact details for each alert policy. */
|
|
2671
|
-
contactDetails?: GoogleCloudDiscoveryengineV1betaContactDetails[];
|
|
2672
|
-
/** Optional. The language code used for notifications */
|
|
2673
|
-
languageCode?: string;
|
|
2674
|
-
}
|
|
2675
|
-
interface GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfigAlertEnrollment {
|
|
2676
|
-
/** Immutable. The id of an alert. */
|
|
2677
|
-
alertId?: string;
|
|
2678
|
-
/** Required. The enrollment status of a customer. */
|
|
2679
|
-
enrollState?: string;
|
|
2680
|
-
/** Optional. Parameters used to instantiate a notification. Used for notifications that are triggered when registered. Not stored. * Gemini Business welcome emails. * Gemini Business user invitation emails. */
|
|
2681
|
-
notificationParams?: {[P in string]: string};
|
|
2682
|
-
}
|
|
2683
2679
|
interface GoogleCloudDiscoveryengineV1betaAlloyDbSource {
|
|
2684
2680
|
/** Required. The AlloyDB cluster to copy the data from with a length limit of 256 characters. */
|
|
2685
2681
|
clusterId?: string;
|
|
@@ -3241,6 +3237,8 @@ declare namespace gapi.client {
|
|
|
3241
3237
|
additionalSystemInstruction?: string;
|
|
3242
3238
|
}
|
|
3243
3239
|
interface GoogleCloudDiscoveryengineV1betaAssistantGroundedContent {
|
|
3240
|
+
/** Source attribution of the generated content. See also https://cloud.google.com/vertex-ai/generative-ai/docs/learn/overview#citation_check */
|
|
3241
|
+
citationMetadata?: GoogleCloudDiscoveryengineV1betaCitationMetadata;
|
|
3244
3242
|
/** The content. */
|
|
3245
3243
|
content?: GoogleCloudDiscoveryengineV1betaAssistantContent;
|
|
3246
3244
|
/** Metadata for grounding based on text sources. */
|
|
@@ -3517,6 +3515,24 @@ declare namespace gapi.client {
|
|
|
3517
3515
|
/** Output only. The structure type of the structured content. */
|
|
3518
3516
|
structureType?: string;
|
|
3519
3517
|
}
|
|
3518
|
+
interface GoogleCloudDiscoveryengineV1betaCitation {
|
|
3519
|
+
/** Output only. End index into the content. */
|
|
3520
|
+
endIndex?: number;
|
|
3521
|
+
/** Output only. License of the attribution. */
|
|
3522
|
+
license?: string;
|
|
3523
|
+
/** Output only. Publication date of the attribution. */
|
|
3524
|
+
publicationDate?: GoogleTypeDate;
|
|
3525
|
+
/** Output only. Start index into the content. */
|
|
3526
|
+
startIndex?: number;
|
|
3527
|
+
/** Output only. Title of the attribution. */
|
|
3528
|
+
title?: string;
|
|
3529
|
+
/** Output only. Url reference of the attribution. */
|
|
3530
|
+
uri?: string;
|
|
3531
|
+
}
|
|
3532
|
+
interface GoogleCloudDiscoveryengineV1betaCitationMetadata {
|
|
3533
|
+
/** Output only. List of citations. */
|
|
3534
|
+
citations?: GoogleCloudDiscoveryengineV1betaCitation[];
|
|
3535
|
+
}
|
|
3520
3536
|
interface GoogleCloudDiscoveryengineV1betaCloudSqlSource {
|
|
3521
3537
|
/** Required. The Cloud SQL database to copy the data from with a length limit of 256 characters. */
|
|
3522
3538
|
databaseId?: string;
|
|
@@ -3603,10 +3619,6 @@ declare namespace gapi.client {
|
|
|
3603
3619
|
/** Start of time range. Range is inclusive. */
|
|
3604
3620
|
startTime?: string;
|
|
3605
3621
|
}
|
|
3606
|
-
interface GoogleCloudDiscoveryengineV1betaContactDetails {
|
|
3607
|
-
/** Optional. The email address of the contact. */
|
|
3608
|
-
emailAddress?: string;
|
|
3609
|
-
}
|
|
3610
3622
|
interface GoogleCloudDiscoveryengineV1betaControl {
|
|
3611
3623
|
/** Output only. List of all ServingConfig IDs this control is attached to. May take up to 10 minutes to update after changes. */
|
|
3612
3624
|
associatedServingConfigIds?: string[];
|
|
@@ -4494,14 +4506,14 @@ declare namespace gapi.client {
|
|
|
4494
4506
|
region?: string;
|
|
4495
4507
|
}
|
|
4496
4508
|
interface GoogleCloudDiscoveryengineV1betaLicenseConfig {
|
|
4497
|
-
/** Optional. The alert policy config for this license config. */
|
|
4498
|
-
alertPolicyResourceConfig?: GoogleCloudDiscoveryengineV1betaAlertPolicyResourceConfig;
|
|
4499
4509
|
/** Optional. Whether the license config should be auto renewed when it reaches the end date. */
|
|
4500
4510
|
autoRenew?: boolean;
|
|
4501
4511
|
/** Optional. The planed end date. */
|
|
4502
4512
|
endDate?: GoogleTypeDate;
|
|
4503
4513
|
/** Optional. Whether the license config is for free trial. */
|
|
4504
4514
|
freeTrial?: boolean;
|
|
4515
|
+
/** Output only. Whether the license config is for Gemini bundle. */
|
|
4516
|
+
geminiBundle?: boolean;
|
|
4505
4517
|
/** Required. Number of licenses purchased. */
|
|
4506
4518
|
licenseCount?: string;
|
|
4507
4519
|
/** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
|
|
@@ -4709,6 +4721,8 @@ declare namespace gapi.client {
|
|
|
4709
4721
|
interface GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfig {
|
|
4710
4722
|
/** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
|
|
4711
4723
|
modelArmorConfig?: GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
|
|
4724
|
+
/** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
|
|
4725
|
+
optOutNotebookSharing?: boolean;
|
|
4712
4726
|
}
|
|
4713
4727
|
interface GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig {
|
|
4714
4728
|
/** Optional. The resource name of the Model Armor Template for sanitizing LLM responses. Format: projects/{project}/locations/{location}/templates/{template_id} If not specified, no sanitization will be applied to the LLM response. */
|
|
@@ -5637,6 +5651,8 @@ declare namespace gapi.client {
|
|
|
5637
5651
|
endTime?: string;
|
|
5638
5652
|
/** Optional. Whether the session is pinned, pinned session will be displayed on the top of the session list. */
|
|
5639
5653
|
isPinned?: boolean;
|
|
5654
|
+
/** Optional. The labels for the session. Can be set as filter in ListSessionsRequest. */
|
|
5655
|
+
labels?: string[];
|
|
5640
5656
|
/** Immutable. Fully qualified name `projects/{project}/locations/global/collections/{collection}/engines/{engine}/sessions/*` */
|
|
5641
5657
|
name?: string;
|
|
5642
5658
|
/** Output only. The time the session started. */
|
|
@@ -5756,7 +5772,7 @@ declare namespace gapi.client {
|
|
|
5756
5772
|
answer?: GoogleCloudDiscoveryengineV1betaAssistAnswer;
|
|
5757
5773
|
/** A global unique ID that identifies the current pair of request and stream of responses. Used for feedback and support. */
|
|
5758
5774
|
assistToken?: string;
|
|
5759
|
-
/** Session information. */
|
|
5775
|
+
/** Session information. Only included in the final StreamAssistResponse of the response stream. */
|
|
5760
5776
|
sessionInfo?: GoogleCloudDiscoveryengineV1betaStreamAssistResponseSessionInfo;
|
|
5761
5777
|
}
|
|
5762
5778
|
interface GoogleCloudDiscoveryengineV1betaStreamAssistResponseSessionInfo {
|
|
@@ -5947,6 +5963,18 @@ declare namespace gapi.client {
|
|
|
5947
5963
|
/** Optional. The user profile. We user user full name(First name + Last name) as user profile. */
|
|
5948
5964
|
userProfile?: string;
|
|
5949
5965
|
}
|
|
5966
|
+
interface GoogleCloudDiscoveryengineV1betaUserStore {
|
|
5967
|
+
/** Optional. The default subscription LicenseConfig for the UserStore, if UserStore.enable_license_auto_register is true, new users will automatically register under the default subscription. If default LicenseConfig doesn't have remaining license seats left, new users will not be assigned with license and will be blocked for Vertex AI Search features. This is used if `license_assignment_tier_rules` is not configured. */
|
|
5968
|
+
defaultLicenseConfig?: string;
|
|
5969
|
+
/** The display name of the User Store. */
|
|
5970
|
+
displayName?: string;
|
|
5971
|
+
/** Optional. Whether to enable license auto update for users in this User Store. If true, users with expired licenses will automatically be updated to use the default license config as long as the default license config has seats left. */
|
|
5972
|
+
enableExpiredLicenseAutoUpdate?: boolean;
|
|
5973
|
+
/** Optional. Whether to enable license auto register for users in this User Store. If true, new users will automatically register under the default license config as long as the default license config has seats left. */
|
|
5974
|
+
enableLicenseAutoRegister?: boolean;
|
|
5975
|
+
/** Immutable. The full resource name of the User Store, in the format of `projects/{project}/locations/{location}/userStores/{user_store}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
|
|
5976
|
+
name?: string;
|
|
5977
|
+
}
|
|
5950
5978
|
interface GoogleCloudDiscoveryengineV1betaWorkspaceConfig {
|
|
5951
5979
|
/** Obfuscated Dasher customer ID. */
|
|
5952
5980
|
dasherCustomerId?: string;
|
|
@@ -6003,10 +6031,6 @@ declare namespace gapi.client {
|
|
|
6003
6031
|
/** Start of time range. Range is inclusive. */
|
|
6004
6032
|
startTime?: string;
|
|
6005
6033
|
}
|
|
6006
|
-
interface GoogleCloudDiscoveryengineV1ContactDetails {
|
|
6007
|
-
/** Optional. The email address of the contact. */
|
|
6008
|
-
emailAddress?: string;
|
|
6009
|
-
}
|
|
6010
6034
|
interface GoogleCloudDiscoveryengineV1Control {
|
|
6011
6035
|
/** Output only. List of all ServingConfig IDs this control is attached to. May take up to 10 minutes to update after changes. */
|
|
6012
6036
|
associatedServingConfigIds?: string[];
|
|
@@ -6633,14 +6657,14 @@ declare namespace gapi.client {
|
|
|
6633
6657
|
unjoinedEventsCount?: string;
|
|
6634
6658
|
}
|
|
6635
6659
|
interface GoogleCloudDiscoveryengineV1LicenseConfig {
|
|
6636
|
-
/** Optional. The alert policy config for this license config. */
|
|
6637
|
-
alertPolicyResourceConfig?: GoogleCloudDiscoveryengineV1AlertPolicyResourceConfig;
|
|
6638
6660
|
/** Optional. Whether the license config should be auto renewed when it reaches the end date. */
|
|
6639
6661
|
autoRenew?: boolean;
|
|
6640
6662
|
/** Optional. The planed end date. */
|
|
6641
6663
|
endDate?: GoogleTypeDate;
|
|
6642
6664
|
/** Optional. Whether the license config is for free trial. */
|
|
6643
6665
|
freeTrial?: boolean;
|
|
6666
|
+
/** Output only. Whether the license config is for Gemini bundle. */
|
|
6667
|
+
geminiBundle?: boolean;
|
|
6644
6668
|
/** Required. Number of licenses purchased. */
|
|
6645
6669
|
licenseCount?: string;
|
|
6646
6670
|
/** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
|
|
@@ -6675,6 +6699,8 @@ declare namespace gapi.client {
|
|
|
6675
6699
|
interface GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig {
|
|
6676
6700
|
/** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
|
|
6677
6701
|
modelArmorConfig?: GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
|
|
6702
|
+
/** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
|
|
6703
|
+
optOutNotebookSharing?: boolean;
|
|
6678
6704
|
}
|
|
6679
6705
|
interface GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig {
|
|
6680
6706
|
/** Optional. The resource name of the Model Armor Template for sanitizing LLM responses. Format: projects/{project}/locations/{location}/templates/{template_id} If not specified, no sanitization will be applied to the LLM response. */
|
|
@@ -6994,6 +7020,18 @@ declare namespace gapi.client {
|
|
|
6994
7020
|
/** Optional. The user profile. We user user full name(First name + Last name) as user profile. */
|
|
6995
7021
|
userProfile?: string;
|
|
6996
7022
|
}
|
|
7023
|
+
interface GoogleCloudDiscoveryengineV1UserStore {
|
|
7024
|
+
/** Optional. The default subscription LicenseConfig for the UserStore, if UserStore.enable_license_auto_register is true, new users will automatically register under the default subscription. If default LicenseConfig doesn't have remaining license seats left, new users will not be assigned with license and will be blocked for Vertex AI Search features. This is used if `license_assignment_tier_rules` is not configured. */
|
|
7025
|
+
defaultLicenseConfig?: string;
|
|
7026
|
+
/** The display name of the User Store. */
|
|
7027
|
+
displayName?: string;
|
|
7028
|
+
/** Optional. Whether to enable license auto update for users in this User Store. If true, users with expired licenses will automatically be updated to use the default license config as long as the default license config has seats left. */
|
|
7029
|
+
enableExpiredLicenseAutoUpdate?: boolean;
|
|
7030
|
+
/** Optional. Whether to enable license auto register for users in this User Store. If true, new users will automatically register under the default license config as long as the default license config has seats left. */
|
|
7031
|
+
enableLicenseAutoRegister?: boolean;
|
|
7032
|
+
/** Immutable. The full resource name of the User Store, in the format of `projects/{project}/locations/{location}/userStores/{user_store}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
|
|
7033
|
+
name?: string;
|
|
7034
|
+
}
|
|
6997
7035
|
interface GoogleCloudDiscoveryengineV1WorkspaceConfig {
|
|
6998
7036
|
/** Obfuscated Dasher customer ID. */
|
|
6999
7037
|
dasherCustomerId?: string;
|
|
@@ -18006,6 +18044,184 @@ declare namespace gapi.client {
|
|
|
18006
18044
|
},
|
|
18007
18045
|
body: GoogleCloudDiscoveryengineV1betaBatchUpdateUserLicensesRequest,
|
|
18008
18046
|
): Request<GoogleLongrunningOperation>;
|
|
18047
|
+
/** Creates a new User Store. */
|
|
18048
|
+
create(request: {
|
|
18049
|
+
/** V1 error format. */
|
|
18050
|
+
'$.xgafv'?: string;
|
|
18051
|
+
/** OAuth access token. */
|
|
18052
|
+
access_token?: string;
|
|
18053
|
+
/** Data format for response. */
|
|
18054
|
+
alt?: string;
|
|
18055
|
+
/** JSONP */
|
|
18056
|
+
callback?: string;
|
|
18057
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18058
|
+
fields?: string;
|
|
18059
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
18060
|
+
key?: string;
|
|
18061
|
+
/** OAuth 2.0 token for the current user. */
|
|
18062
|
+
oauth_token?: string;
|
|
18063
|
+
/** Required. The parent collection resource name, such as `projects/{project}/locations/{location}`. */
|
|
18064
|
+
parent: string;
|
|
18065
|
+
/** Returns response with indentations and line breaks. */
|
|
18066
|
+
prettyPrint?: boolean;
|
|
18067
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18068
|
+
quotaUser?: string;
|
|
18069
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18070
|
+
upload_protocol?: string;
|
|
18071
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18072
|
+
uploadType?: string;
|
|
18073
|
+
/** Required. The ID of the User Store to create. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 63 characters. */
|
|
18074
|
+
userStoreId?: string;
|
|
18075
|
+
/** Request body */
|
|
18076
|
+
resource: GoogleCloudDiscoveryengineV1betaUserStore;
|
|
18077
|
+
}): Request<GoogleCloudDiscoveryengineV1betaUserStore>;
|
|
18078
|
+
create(
|
|
18079
|
+
request: {
|
|
18080
|
+
/** V1 error format. */
|
|
18081
|
+
'$.xgafv'?: string;
|
|
18082
|
+
/** OAuth access token. */
|
|
18083
|
+
access_token?: string;
|
|
18084
|
+
/** Data format for response. */
|
|
18085
|
+
alt?: string;
|
|
18086
|
+
/** JSONP */
|
|
18087
|
+
callback?: string;
|
|
18088
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18089
|
+
fields?: string;
|
|
18090
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
18091
|
+
key?: string;
|
|
18092
|
+
/** OAuth 2.0 token for the current user. */
|
|
18093
|
+
oauth_token?: string;
|
|
18094
|
+
/** Required. The parent collection resource name, such as `projects/{project}/locations/{location}`. */
|
|
18095
|
+
parent: string;
|
|
18096
|
+
/** Returns response with indentations and line breaks. */
|
|
18097
|
+
prettyPrint?: boolean;
|
|
18098
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18099
|
+
quotaUser?: string;
|
|
18100
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18101
|
+
upload_protocol?: string;
|
|
18102
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18103
|
+
uploadType?: string;
|
|
18104
|
+
/** Required. The ID of the User Store to create. The ID must contain only letters (a-z, A-Z), numbers (0-9), underscores (_), and hyphens (-). The maximum length is 63 characters. */
|
|
18105
|
+
userStoreId?: string;
|
|
18106
|
+
},
|
|
18107
|
+
body: GoogleCloudDiscoveryengineV1betaUserStore,
|
|
18108
|
+
): Request<GoogleCloudDiscoveryengineV1betaUserStore>;
|
|
18109
|
+
/** Deletes the User Store. */
|
|
18110
|
+
delete(request?: {
|
|
18111
|
+
/** V1 error format. */
|
|
18112
|
+
'$.xgafv'?: string;
|
|
18113
|
+
/** OAuth access token. */
|
|
18114
|
+
access_token?: string;
|
|
18115
|
+
/** Data format for response. */
|
|
18116
|
+
alt?: string;
|
|
18117
|
+
/** JSONP */
|
|
18118
|
+
callback?: string;
|
|
18119
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18120
|
+
fields?: string;
|
|
18121
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
18122
|
+
key?: string;
|
|
18123
|
+
/** Required. The name of the User Store to delete. Format: `projects/{project}/locations/{location}/userStores/{user_store_id}` */
|
|
18124
|
+
name: string;
|
|
18125
|
+
/** OAuth 2.0 token for the current user. */
|
|
18126
|
+
oauth_token?: string;
|
|
18127
|
+
/** Returns response with indentations and line breaks. */
|
|
18128
|
+
prettyPrint?: boolean;
|
|
18129
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18130
|
+
quotaUser?: string;
|
|
18131
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18132
|
+
upload_protocol?: string;
|
|
18133
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18134
|
+
uploadType?: string;
|
|
18135
|
+
}): Request<GoogleLongrunningOperation>;
|
|
18136
|
+
/** Gets the User Store. */
|
|
18137
|
+
get(request?: {
|
|
18138
|
+
/** V1 error format. */
|
|
18139
|
+
'$.xgafv'?: string;
|
|
18140
|
+
/** OAuth access token. */
|
|
18141
|
+
access_token?: string;
|
|
18142
|
+
/** Data format for response. */
|
|
18143
|
+
alt?: string;
|
|
18144
|
+
/** JSONP */
|
|
18145
|
+
callback?: string;
|
|
18146
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18147
|
+
fields?: string;
|
|
18148
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
18149
|
+
key?: string;
|
|
18150
|
+
/** Required. The name of the User Store to get. Format: `projects/{project}/locations/{location}/userStores/{user_store_id}` */
|
|
18151
|
+
name: string;
|
|
18152
|
+
/** OAuth 2.0 token for the current user. */
|
|
18153
|
+
oauth_token?: string;
|
|
18154
|
+
/** Returns response with indentations and line breaks. */
|
|
18155
|
+
prettyPrint?: boolean;
|
|
18156
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18157
|
+
quotaUser?: string;
|
|
18158
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18159
|
+
upload_protocol?: string;
|
|
18160
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18161
|
+
uploadType?: string;
|
|
18162
|
+
}): Request<GoogleCloudDiscoveryengineV1betaUserStore>;
|
|
18163
|
+
/** Updates the User Store. */
|
|
18164
|
+
patch(request: {
|
|
18165
|
+
/** V1 error format. */
|
|
18166
|
+
'$.xgafv'?: string;
|
|
18167
|
+
/** OAuth access token. */
|
|
18168
|
+
access_token?: string;
|
|
18169
|
+
/** Data format for response. */
|
|
18170
|
+
alt?: string;
|
|
18171
|
+
/** JSONP */
|
|
18172
|
+
callback?: string;
|
|
18173
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18174
|
+
fields?: string;
|
|
18175
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
18176
|
+
key?: string;
|
|
18177
|
+
/** Immutable. The full resource name of the User Store, in the format of `projects/{project}/locations/{location}/userStores/{user_store}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
|
|
18178
|
+
name: string;
|
|
18179
|
+
/** OAuth 2.0 token for the current user. */
|
|
18180
|
+
oauth_token?: string;
|
|
18181
|
+
/** Returns response with indentations and line breaks. */
|
|
18182
|
+
prettyPrint?: boolean;
|
|
18183
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18184
|
+
quotaUser?: string;
|
|
18185
|
+
/** Optional. The list of fields to update. */
|
|
18186
|
+
updateMask?: string;
|
|
18187
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18188
|
+
upload_protocol?: string;
|
|
18189
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18190
|
+
uploadType?: string;
|
|
18191
|
+
/** Request body */
|
|
18192
|
+
resource: GoogleCloudDiscoveryengineV1betaUserStore;
|
|
18193
|
+
}): Request<GoogleCloudDiscoveryengineV1betaUserStore>;
|
|
18194
|
+
patch(
|
|
18195
|
+
request: {
|
|
18196
|
+
/** V1 error format. */
|
|
18197
|
+
'$.xgafv'?: string;
|
|
18198
|
+
/** OAuth access token. */
|
|
18199
|
+
access_token?: string;
|
|
18200
|
+
/** Data format for response. */
|
|
18201
|
+
alt?: string;
|
|
18202
|
+
/** JSONP */
|
|
18203
|
+
callback?: string;
|
|
18204
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18205
|
+
fields?: string;
|
|
18206
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
18207
|
+
key?: string;
|
|
18208
|
+
/** Immutable. The full resource name of the User Store, in the format of `projects/{project}/locations/{location}/userStores/{user_store}`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. */
|
|
18209
|
+
name: string;
|
|
18210
|
+
/** OAuth 2.0 token for the current user. */
|
|
18211
|
+
oauth_token?: string;
|
|
18212
|
+
/** Returns response with indentations and line breaks. */
|
|
18213
|
+
prettyPrint?: boolean;
|
|
18214
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18215
|
+
quotaUser?: string;
|
|
18216
|
+
/** Optional. The list of fields to update. */
|
|
18217
|
+
updateMask?: string;
|
|
18218
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18219
|
+
upload_protocol?: string;
|
|
18220
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18221
|
+
uploadType?: string;
|
|
18222
|
+
},
|
|
18223
|
+
body: GoogleCloudDiscoveryengineV1betaUserStore,
|
|
18224
|
+
): Request<GoogleCloudDiscoveryengineV1betaUserStore>;
|
|
18009
18225
|
userLicenses: UserLicensesResource;
|
|
18010
18226
|
}
|
|
18011
18227
|
interface LocationsResource {
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -53,6 +53,12 @@ var client_id = '',
|
|
|
53
53
|
|
|
54
54
|
// See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
|
55
55
|
'https://www.googleapis.com/auth/cloud-platform',
|
|
56
|
+
|
|
57
|
+
// View your Agentspace chat history, including uploaded files and generated reports and visualizations, and interact with the Agentspace assistant on your behalf.
|
|
58
|
+
'https://www.googleapis.com/auth/discoveryengine.assist.readwrite',
|
|
59
|
+
|
|
60
|
+
// View, edit, create, and delete all your data associated with any Discovery Engine API product, such as Agentspace, Vertex AI Search, or NotebookLM Enterprise, including both end user data and administration or configuration data.
|
|
61
|
+
'https://www.googleapis.com/auth/discoveryengine.readwrite',
|
|
56
62
|
],
|
|
57
63
|
immediate = true;
|
|
58
64
|
// ...
|