@maxim_mazurok/gapi.client.discoveryengine-v1alpha 0.1.20260129 → 0.1.20260204

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.
Files changed (2) hide show
  1. package/index.d.ts +31 -1
  2. 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=v1alpha
12
- // Revision: 20260129
12
+ // Revision: 20260204
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -2383,6 +2383,8 @@ declare namespace gapi.client {
2383
2383
  modelConfigs?: {[P in string]: string};
2384
2384
  /** 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. */
2385
2385
  name?: string;
2386
+ /** Optional. Observability config for the engine. */
2387
+ observabilityConfig?: GoogleCloudDiscoveryengineV1alphaObservabilityConfig;
2386
2388
  /** Output only. Additional information of a recommendation engine. Only applicable if solution_type is SOLUTION_TYPE_RECOMMENDATION. */
2387
2389
  recommendationMetadata?: GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata;
2388
2390
  /** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
@@ -3257,6 +3259,12 @@ declare namespace gapi.client {
3257
3259
  /** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
3258
3260
  mode?: string;
3259
3261
  }
3262
+ interface GoogleCloudDiscoveryengineV1alphaObservabilityConfig {
3263
+ /** Optional. Enables observability. If false, all other flags are ignored. */
3264
+ observabilityEnabled?: boolean;
3265
+ /** Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g. prompts, responses). If false, will sanitize all sensitive fields. */
3266
+ sensitiveLoggingEnabled?: boolean;
3267
+ }
3260
3268
  interface GoogleCloudDiscoveryengineV1alphaObtainCrawlRateRequest {
3261
3269
  /** 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. */
3262
3270
  crawlRateScope?: string;
@@ -3365,6 +3373,8 @@ declare namespace gapi.client {
3365
3373
  interface GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfig {
3366
3374
  /** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
3367
3375
  modelArmorConfig?: GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
3376
+ /** Optional. Observability config for NotebookLM. */
3377
+ observabilityConfig?: GoogleCloudDiscoveryengineV1alphaObservabilityConfig;
3368
3378
  /** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
3369
3379
  optOutNotebookSharing?: boolean;
3370
3380
  }
@@ -5716,6 +5726,8 @@ declare namespace gapi.client {
5716
5726
  modelConfigs?: {[P in string]: string};
5717
5727
  /** 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. */
5718
5728
  name?: string;
5729
+ /** Optional. Observability config for the engine. */
5730
+ observabilityConfig?: GoogleCloudDiscoveryengineV1betaObservabilityConfig;
5719
5731
  /** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
5720
5732
  searchEngineConfig?: GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig;
5721
5733
  /** Required. The solutions of the engine. */
@@ -6005,6 +6017,12 @@ declare namespace gapi.client {
6005
6017
  /** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
6006
6018
  mode?: string;
6007
6019
  }
6020
+ interface GoogleCloudDiscoveryengineV1betaObservabilityConfig {
6021
+ /** Optional. Enables observability. If false, all other flags are ignored. */
6022
+ observabilityEnabled?: boolean;
6023
+ /** Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g. prompts, responses). If false, will sanitize all sensitive fields. */
6024
+ sensitiveLoggingEnabled?: boolean;
6025
+ }
6008
6026
  interface GoogleCloudDiscoveryengineV1betaObtainCrawlRateResponse {
6009
6027
  /** The historical dedicated crawl rate timeseries data, used for monitoring. */
6010
6028
  dedicatedCrawlRateTimeSeries?: GoogleCloudDiscoveryengineV1betaDedicatedCrawlRateTimeSeries;
@@ -6058,6 +6076,8 @@ declare namespace gapi.client {
6058
6076
  interface GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfig {
6059
6077
  /** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
6060
6078
  modelArmorConfig?: GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
6079
+ /** Optional. Observability config for NotebookLM. */
6080
+ observabilityConfig?: GoogleCloudDiscoveryengineV1betaObservabilityConfig;
6061
6081
  /** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
6062
6082
  optOutNotebookSharing?: boolean;
6063
6083
  }
@@ -7115,6 +7135,8 @@ declare namespace gapi.client {
7115
7135
  modelConfigs?: {[P in string]: string};
7116
7136
  /** 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. */
7117
7137
  name?: string;
7138
+ /** Optional. Observability config for the engine. */
7139
+ observabilityConfig?: GoogleCloudDiscoveryengineV1ObservabilityConfig;
7118
7140
  /** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
7119
7141
  searchEngineConfig?: GoogleCloudDiscoveryengineV1EngineSearchEngineConfig;
7120
7142
  /** Required. The solutions of the engine. */
@@ -7344,6 +7366,12 @@ declare namespace gapi.client {
7344
7366
  /** Mode of Natural Language Query Understanding. If this field is unset, the behavior defaults to NaturalLanguageQueryUnderstandingConfig.Mode.DISABLED. */
7345
7367
  mode?: string;
7346
7368
  }
7369
+ interface GoogleCloudDiscoveryengineV1ObservabilityConfig {
7370
+ /** Optional. Enables observability. If false, all other flags are ignored. */
7371
+ observabilityEnabled?: boolean;
7372
+ /** Optional. Enables sensitive logging. Sensitive logging includes customer core content (e.g. prompts, responses). If false, will sanitize all sensitive fields. */
7373
+ sensitiveLoggingEnabled?: boolean;
7374
+ }
7347
7375
  interface GoogleCloudDiscoveryengineV1Project {
7348
7376
  /** Output only. The current status of the project's configurable billing. */
7349
7377
  configurableBillingStatus?: GoogleCloudDiscoveryengineV1ProjectConfigurableBillingStatus;
@@ -7381,6 +7409,8 @@ declare namespace gapi.client {
7381
7409
  interface GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfig {
7382
7410
  /** Model Armor configuration to be used for sanitizing user prompts and LLM responses. */
7383
7411
  modelArmorConfig?: GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig;
7412
+ /** Optional. Observability config for NotebookLM. */
7413
+ observabilityConfig?: GoogleCloudDiscoveryengineV1ObservabilityConfig;
7384
7414
  /** Optional. Whether to disable the notebook sharing feature for the project. Default to false if not specified. */
7385
7415
  optOutNotebookSharing?: boolean;
7386
7416
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.discoveryengine-v1alpha",
3
- "version": "0.1.20260129",
3
+ "version": "0.1.20260204",
4
4
  "description": "TypeScript typings for Discovery Engine API v1alpha",
5
5
  "repository": {
6
6
  "type": "git",