@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.3.20260705 → 0.3.20260712
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 +21 -7
- 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: 20260712
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1395,6 +1395,8 @@ declare namespace gapi.client {
|
|
|
1395
1395
|
federatedSearchConfig?: GoogleCloudDiscoveryengineV1alphaDataStoreFederatedSearchConfig;
|
|
1396
1396
|
/** Optional. Configuration for `HEALTHCARE_FHIR` vertical. */
|
|
1397
1397
|
healthcareFhirConfig?: GoogleCloudDiscoveryengineV1alphaHealthcareFhirConfig;
|
|
1398
|
+
/** Output only. Provides the icon URI of the data store's connector source, if this is a connector-backed data store. Empty for data stores without an associated connector source. In DataStoreService.ListDataStores and DataStoreService.GetDataStore, this is only populated when DataStoreView.DATA_STORE_VIEW_FULL is requested via ListDataStoresRequest.view or GetDataStoreRequest.view respectively. */
|
|
1399
|
+
iconUri?: string;
|
|
1398
1400
|
/** Immutable. The fully qualified resource name of the associated IdentityMappingStore. This field can only be set for acl_enabled DataStores with `THIRD_PARTY` or `GSUITE` IdP. Format: `projects/{project}/locations/{location}/identityMappingStores/{identity_mapping_store}`. */
|
|
1399
1401
|
identityMappingStore?: string;
|
|
1400
1402
|
/** Output only. Data store level identity provider config. */
|
|
@@ -1863,7 +1865,8 @@ declare namespace gapi.client {
|
|
|
1863
1865
|
| 'SUBSCRIPTION_TIER_EDU_EMERGING'
|
|
1864
1866
|
| 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
|
|
1865
1867
|
| 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
|
|
1866
|
-
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
1868
|
+
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
1869
|
+
| 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
|
|
1867
1870
|
/** The add-on that this search engine enables. */
|
|
1868
1871
|
searchAddOns?: 'SEARCH_ADD_ON_UNSPECIFIED' | 'SEARCH_ADD_ON_LLM'[];
|
|
1869
1872
|
/** The search feature tier of this engine. Different tiers might have different pricing. To learn more, check the pricing documentation. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified. */
|
|
@@ -2155,6 +2158,8 @@ declare namespace gapi.client {
|
|
|
2155
2158
|
freeTrial?: boolean;
|
|
2156
2159
|
/** Output only. Whether the license config is for Gemini bundle. */
|
|
2157
2160
|
geminiBundle?: boolean;
|
|
2161
|
+
/** Optional. Timestamp of the most recent user-initiated update (seat count change or subscription term change). Unlike `update_time`, this field is only stamped when a customer explicitly updates the license (e.g. via the UI), and is not touched by system-driven writes (subscription pipeline, BALC propagation, etc.). */
|
|
2162
|
+
lastUserUpdateTime?: string;
|
|
2158
2163
|
/** Required. Number of licenses purchased. */
|
|
2159
2164
|
licenseCount?: string;
|
|
2160
2165
|
/** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
|
|
@@ -2192,7 +2197,8 @@ declare namespace gapi.client {
|
|
|
2192
2197
|
| 'SUBSCRIPTION_TIER_EDU_EMERGING'
|
|
2193
2198
|
| 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
|
|
2194
2199
|
| 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
|
|
2195
|
-
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
2200
|
+
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
2201
|
+
| 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
|
|
2196
2202
|
}
|
|
2197
2203
|
interface GoogleCloudDiscoveryengineV1alphaListSessionsRequest {
|
|
2198
2204
|
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/global/collections/default_collection/engines/" "default_engine/collaborative_projects/cp1"` */
|
|
@@ -5290,7 +5296,8 @@ declare namespace gapi.client {
|
|
|
5290
5296
|
| 'SUBSCRIPTION_TIER_EDU_EMERGING'
|
|
5291
5297
|
| 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
|
|
5292
5298
|
| 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
|
|
5293
|
-
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
5299
|
+
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
5300
|
+
| 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
|
|
5294
5301
|
/** The add-on that this search engine enables. */
|
|
5295
5302
|
searchAddOns?: 'SEARCH_ADD_ON_UNSPECIFIED' | 'SEARCH_ADD_ON_LLM'[];
|
|
5296
5303
|
/** The search feature tier of this engine. Different tiers might have different pricing. To learn more, check the pricing documentation. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified. */
|
|
@@ -5705,6 +5712,8 @@ declare namespace gapi.client {
|
|
|
5705
5712
|
freeTrial?: boolean;
|
|
5706
5713
|
/** Output only. Whether the license config is for Gemini bundle. */
|
|
5707
5714
|
geminiBundle?: boolean;
|
|
5715
|
+
/** Optional. Timestamp of the most recent user-initiated update (seat count change or subscription term change). Unlike `update_time`, this field is only stamped when a customer explicitly updates the license (e.g. via the UI), and is not touched by system-driven writes (subscription pipeline, BALC propagation, etc.). */
|
|
5716
|
+
lastUserUpdateTime?: string;
|
|
5708
5717
|
/** Required. Number of licenses purchased. */
|
|
5709
5718
|
licenseCount?: string;
|
|
5710
5719
|
/** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
|
|
@@ -5742,7 +5751,8 @@ declare namespace gapi.client {
|
|
|
5742
5751
|
| 'SUBSCRIPTION_TIER_EDU_EMERGING'
|
|
5743
5752
|
| 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
|
|
5744
5753
|
| 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
|
|
5745
|
-
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
5754
|
+
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
5755
|
+
| 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
|
|
5746
5756
|
}
|
|
5747
5757
|
interface GoogleCloudDiscoveryengineV1betaLicenseConfigUsageStats {
|
|
5748
5758
|
/** Required. The LicenseConfig name. */
|
|
@@ -8296,7 +8306,8 @@ declare namespace gapi.client {
|
|
|
8296
8306
|
| 'SUBSCRIPTION_TIER_EDU_EMERGING'
|
|
8297
8307
|
| 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
|
|
8298
8308
|
| 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
|
|
8299
|
-
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
8309
|
+
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
8310
|
+
| 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
|
|
8300
8311
|
/** The add-on that this search engine enables. */
|
|
8301
8312
|
searchAddOns?: 'SEARCH_ADD_ON_UNSPECIFIED' | 'SEARCH_ADD_ON_LLM'[];
|
|
8302
8313
|
/** The search feature tier of this engine. Different tiers might have different pricing. To learn more, check the pricing documentation. Defaults to SearchTier.SEARCH_TIER_STANDARD if not specified. */
|
|
@@ -8426,6 +8437,8 @@ declare namespace gapi.client {
|
|
|
8426
8437
|
freeTrial?: boolean;
|
|
8427
8438
|
/** Output only. Whether the license config is for Gemini bundle. */
|
|
8428
8439
|
geminiBundle?: boolean;
|
|
8440
|
+
/** Optional. Timestamp of the most recent user-initiated update (seat count change or subscription term change). Unlike `update_time`, this field is only stamped when a customer explicitly updates the license (e.g. via the UI), and is not touched by system-driven writes (subscription pipeline, BALC propagation, etc.). */
|
|
8441
|
+
lastUserUpdateTime?: string;
|
|
8429
8442
|
/** Required. Number of licenses purchased. */
|
|
8430
8443
|
licenseCount?: string;
|
|
8431
8444
|
/** Immutable. Identifier. The fully qualified resource name of the license config. Format: `projects/{project}/locations/{location}/licenseConfigs/{license_config}` */
|
|
@@ -8463,7 +8476,8 @@ declare namespace gapi.client {
|
|
|
8463
8476
|
| 'SUBSCRIPTION_TIER_EDU_EMERGING'
|
|
8464
8477
|
| 'SUBSCRIPTION_TIER_EDU_PRO_EMERGING'
|
|
8465
8478
|
| 'SUBSCRIPTION_TIER_FRONTLINE_STARTER'
|
|
8466
|
-
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
8479
|
+
| 'SUBSCRIPTION_TIER_CONSUMPTION_ONLY'
|
|
8480
|
+
| 'SUBSCRIPTION_TIER_EDU_GOV_EMERGING';
|
|
8467
8481
|
}
|
|
8468
8482
|
interface GoogleCloudDiscoveryengineV1NaturalLanguageQueryUnderstandingConfig {
|
|
8469
8483
|
/** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
|