@maxim_mazurok/gapi.client.discoveryengine-v1beta 0.1.20260129 → 0.1.20260130
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 +31 -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: 20260130
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1251,6 +1251,8 @@ declare namespace gapi.client {
|
|
|
1251
1251
|
modelConfigs?: {[P in string]: string};
|
|
1252
1252
|
/** Immutable. Identifier. The fully qualified resource name of the engine. This field must be a UTF-8 encoded string with a length limit of 1024 characters. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}` engine should be 1-63 characters, and valid characters are /a-z0-9*/. Otherwise, an INVALID_ARGUMENT error is returned. */
|
|
1253
1253
|
name?: string;
|
|
1254
|
+
/** Optional. Observability config for the engine. */
|
|
1255
|
+
observabilityConfig?: GoogleCloudDiscoveryengineV1alphaObservabilityConfig;
|
|
1254
1256
|
/** Output only. Additional information of a recommendation engine. Only applicable if solution_type is SOLUTION_TYPE_RECOMMENDATION. */
|
|
1255
1257
|
recommendationMetadata?: GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata;
|
|
1256
1258
|
/** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
@@ -1636,6 +1638,12 @@ declare namespace gapi.client {
|
|
|
1636
1638
|
/** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
|
|
1637
1639
|
mode?: string;
|
|
1638
1640
|
}
|
|
1641
|
+
interface GoogleCloudDiscoveryengineV1alphaObservabilityConfig {
|
|
1642
|
+
/** Optional. Enables observability. If false, all other flags are ignored. */
|
|
1643
|
+
observabilityEnabled?: boolean;
|
|
1644
|
+
/** Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g. prompts, responses). If false, will sanitize all sensitive fields. */
|
|
1645
|
+
sensitiveLoggingEnabled?: boolean;
|
|
1646
|
+
}
|
|
1639
1647
|
interface GoogleCloudDiscoveryengineV1alphaObtainCrawlRateResponse {
|
|
1640
1648
|
/** The historical dedicated crawl rate timeseries data, used for monitoring. */
|
|
1641
1649
|
dedicatedCrawlRateTimeSeries?: GoogleCloudDiscoveryengineV1alphaDedicatedCrawlRateTimeSeries;
|
|
@@ -1699,6 +1707,8 @@ declare namespace gapi.client {
|
|
|
1699
1707
|
interface GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfig {
|
|
1700
1708
|
/** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
|
|
1701
1709
|
modelArmorConfig?: GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
|
|
1710
|
+
/** Optional. Observability config for NotebookLM. */
|
|
1711
|
+
observabilityConfig?: GoogleCloudDiscoveryengineV1alphaObservabilityConfig;
|
|
1702
1712
|
/** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
|
|
1703
1713
|
optOutNotebookSharing?: boolean;
|
|
1704
1714
|
}
|
|
@@ -4078,6 +4088,8 @@ declare namespace gapi.client {
|
|
|
4078
4088
|
modelConfigs?: {[P in string]: string};
|
|
4079
4089
|
/** Immutable. Identifier. The fully qualified resource name of the engine. This field must be a UTF-8 encoded string with a length limit of 1024 characters. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}` engine should be 1-63 characters, and valid characters are /a-z0-9*/. Otherwise, an INVALID_ARGUMENT error is returned. */
|
|
4080
4090
|
name?: string;
|
|
4091
|
+
/** Optional. Observability config for the engine. */
|
|
4092
|
+
observabilityConfig?: GoogleCloudDiscoveryengineV1betaObservabilityConfig;
|
|
4081
4093
|
/** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
4082
4094
|
searchEngineConfig?: GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig;
|
|
4083
4095
|
/** Required. The solutions of the engine. */
|
|
@@ -4679,6 +4691,12 @@ declare namespace gapi.client {
|
|
|
4679
4691
|
/** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
|
|
4680
4692
|
mode?: string;
|
|
4681
4693
|
}
|
|
4694
|
+
interface GoogleCloudDiscoveryengineV1betaObservabilityConfig {
|
|
4695
|
+
/** Optional. Enables observability. If false, all other flags are ignored. */
|
|
4696
|
+
observabilityEnabled?: boolean;
|
|
4697
|
+
/** Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g. prompts, responses). If false, will sanitize all sensitive fields. */
|
|
4698
|
+
sensitiveLoggingEnabled?: boolean;
|
|
4699
|
+
}
|
|
4682
4700
|
interface GoogleCloudDiscoveryengineV1betaObtainCrawlRateRequest {
|
|
4683
4701
|
/** Required. The scope of the crawl rate that the user wants to monitor. Currently, only domain and host name are supported. A domain name example: `example.com`. A host name example: `www.example.com`. Please do not include `/` in the domain or host name. */
|
|
4684
4702
|
crawlRateScope?: string;
|
|
@@ -4767,6 +4785,8 @@ declare namespace gapi.client {
|
|
|
4767
4785
|
interface GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfig {
|
|
4768
4786
|
/** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
|
|
4769
4787
|
modelArmorConfig?: GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
|
|
4788
|
+
/** Optional. Observability config for NotebookLM. */
|
|
4789
|
+
observabilityConfig?: GoogleCloudDiscoveryengineV1betaObservabilityConfig;
|
|
4770
4790
|
/** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
|
|
4771
4791
|
optOutNotebookSharing?: boolean;
|
|
4772
4792
|
}
|
|
@@ -6567,6 +6587,8 @@ declare namespace gapi.client {
|
|
|
6567
6587
|
modelConfigs?: {[P in string]: string};
|
|
6568
6588
|
/** Immutable. Identifier. The fully qualified resource name of the engine. This field must be a UTF-8 encoded string with a length limit of 1024 characters. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}` engine should be 1-63 characters, and valid characters are /a-z0-9*/. Otherwise, an INVALID_ARGUMENT error is returned. */
|
|
6569
6589
|
name?: string;
|
|
6590
|
+
/** Optional. Observability config for the engine. */
|
|
6591
|
+
observabilityConfig?: GoogleCloudDiscoveryengineV1ObservabilityConfig;
|
|
6570
6592
|
/** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
6571
6593
|
searchEngineConfig?: GoogleCloudDiscoveryengineV1EngineSearchEngineConfig;
|
|
6572
6594
|
/** Required. The solutions of the engine. */
|
|
@@ -6796,6 +6818,12 @@ declare namespace gapi.client {
|
|
|
6796
6818
|
/** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
|
|
6797
6819
|
mode?: string;
|
|
6798
6820
|
}
|
|
6821
|
+
interface GoogleCloudDiscoveryengineV1ObservabilityConfig {
|
|
6822
|
+
/** Optional. Enables observability. If false, all other flags are ignored. */
|
|
6823
|
+
observabilityEnabled?: boolean;
|
|
6824
|
+
/** Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g. prompts, responses). If false, will sanitize all sensitive fields. */
|
|
6825
|
+
sensitiveLoggingEnabled?: boolean;
|
|
6826
|
+
}
|
|
6799
6827
|
interface GoogleCloudDiscoveryengineV1Project {
|
|
6800
6828
|
/** Output only. The current status of the project's configurable billing. */
|
|
6801
6829
|
configurableBillingStatus?: GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus;
|
|
@@ -6833,6 +6861,8 @@ declare namespace gapi.client {
|
|
|
6833
6861
|
interface GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig {
|
|
6834
6862
|
/** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
|
|
6835
6863
|
modelArmorConfig?: GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
|
|
6864
|
+
/** Optional. Observability config for NotebookLM. */
|
|
6865
|
+
observabilityConfig?: GoogleCloudDiscoveryengineV1ObservabilityConfig;
|
|
6836
6866
|
/** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
|
|
6837
6867
|
optOutNotebookSharing?: boolean;
|
|
6838
6868
|
}
|