@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20250728 → 0.0.20250731

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 +16 -12
  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://aiplatform.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20250728
12
+ // Revision: 20250731
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -364,7 +364,7 @@ declare namespace gapi.client {
364
364
  samplingCount?: number;
365
365
  }
366
366
  interface GoogleCloudAiplatformV1AutoscalingMetricSpec {
367
- /** Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` */
367
+ /** Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.googleapis.com/prediction/online/request_count` */
368
368
  metricName?: string;
369
369
  /** The target resource utilization in percentage (1% - 100%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60%) if not provided. */
370
370
  target?: number;
@@ -1374,6 +1374,8 @@ declare namespace gapi.client {
1374
1374
  deployedIndexAuthConfig?: GoogleCloudAiplatformV1DeployedIndexAuthConfig;
1375
1375
  /** Optional. The deployment group can be no longer than 64 characters (eg: 'test', 'prod'). If not set, we will use the 'default' deployment group. Creating `deployment_groups` with `reserved_ip_ranges` is a recommended practice when the peered network has multiple peering ranges. This creates your deployments from predictable IP spaces for easier traffic administration. Also, one deployment_group (except 'default') can only be used with the same reserved_ip_ranges which means if the deployment_group has been used with reserved_ip_ranges: [a, b, c], using it with [a, b] or [d, e] is disallowed. Note: we only support up to 5 deployment groups(not including 'default'). */
1376
1376
  deploymentGroup?: string;
1377
+ /** Optional. The deployment tier that the index is deployed to. DEPLOYMENT_TIER_UNSPECIFIED defaults to PERFORMANCE. */
1378
+ deploymentTier?: string;
1377
1379
  /** The display name of the DeployedIndex. If not provided upon creation, the Index's display_name is used. */
1378
1380
  displayName?: string;
1379
1381
  /** Optional. If true, private endpoint's access logs are sent to Cloud Logging. These logs are like standard server access logs, containing information like timestamp and latency for each MatchRequest. Note that logs may incur a cost, especially if the deployed index receives a high queries per second rate (QPS). Estimate your costs before enabling this option. */
@@ -1680,7 +1682,10 @@ declare namespace gapi.client {
1680
1682
  /** Output only. Timestamp when this Endpoint was last updated. */
1681
1683
  updateTime?: string;
1682
1684
  }
1683
- interface GoogleCloudAiplatformV1EnterpriseWebSearch {}
1685
+ interface GoogleCloudAiplatformV1EnterpriseWebSearch {
1686
+ /** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. */
1687
+ excludeDomains?: string[];
1688
+ }
1684
1689
  interface GoogleCloudAiplatformV1EntityIdSelector {
1685
1690
  /** Source of Csv */
1686
1691
  csvSource?: GoogleCloudAiplatformV1CsvSource;
@@ -8714,16 +8719,14 @@ declare namespace gapi.client {
8714
8719
  interface GoogleCloudAiplatformV1Tool {
8715
8720
  /** Optional. CodeExecution tool type. Enables the model to execute code as part of generation. */
8716
8721
  codeExecution?: any;
8717
- /** Optional. Tool to support the model interacting directly with the computer. If enabled, it automatically populates computer-use specific Function Declarations. */
8718
- computerUse?: GoogleCloudAiplatformV1ToolComputerUse;
8719
8722
  /** Optional. Tool to support searching public web data, powered by Vertex AI Search and Sec4 compliance. */
8720
- enterpriseWebSearch?: any;
8723
+ enterpriseWebSearch?: GoogleCloudAiplatformV1EnterpriseWebSearch;
8721
8724
  /** Optional. Function tool type. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum 512 function declarations can be provided. */
8722
8725
  functionDeclarations?: GoogleCloudAiplatformV1FunctionDeclaration[];
8723
8726
  /** Optional. GoogleMaps tool type. Tool to support Google Maps in Model. */
8724
8727
  googleMaps?: GoogleCloudAiplatformV1GoogleMaps;
8725
8728
  /** Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. */
8726
- googleSearch?: any;
8729
+ googleSearch?: GoogleCloudAiplatformV1ToolGoogleSearch;
8727
8730
  /** Optional. GoogleSearchRetrieval tool type. Specialized retrieval tool that is powered by Google search. */
8728
8731
  googleSearchRetrieval?: GoogleCloudAiplatformV1GoogleSearchRetrieval;
8729
8732
  /** Optional. Retrieval tool type. System will always execute the provided retrieval tool(s) to get external knowledge to answer the prompt. Retrieval results are presented to the model for generation. */
@@ -8759,17 +8762,16 @@ declare namespace gapi.client {
8759
8762
  }
8760
8763
  interface GoogleCloudAiplatformV1ToolCallValidSpec {}
8761
8764
  interface GoogleCloudAiplatformV1ToolCodeExecution {}
8762
- interface GoogleCloudAiplatformV1ToolComputerUse {
8763
- /** Required. The environment being operated. */
8764
- environment?: string;
8765
- }
8766
8765
  interface GoogleCloudAiplatformV1ToolConfig {
8767
8766
  /** Optional. Function calling config. */
8768
8767
  functionCallingConfig?: GoogleCloudAiplatformV1FunctionCallingConfig;
8769
8768
  /** Optional. Retrieval config. */
8770
8769
  retrievalConfig?: GoogleCloudAiplatformV1RetrievalConfig;
8771
8770
  }
8772
- interface GoogleCloudAiplatformV1ToolGoogleSearch {}
8771
+ interface GoogleCloudAiplatformV1ToolGoogleSearch {
8772
+ /** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"]. */
8773
+ excludeDomains?: string[];
8774
+ }
8773
8775
  interface GoogleCloudAiplatformV1ToolNameMatchInput {
8774
8776
  /** Required. Repeated tool name match instances. */
8775
8777
  instances?: GoogleCloudAiplatformV1ToolNameMatchInstance[];
@@ -9320,6 +9322,8 @@ declare namespace gapi.client {
9320
9322
  interface GoogleCloudAiplatformV1VideoMetadata {
9321
9323
  /** Optional. The end offset of the video. */
9322
9324
  endOffset?: string;
9325
+ /** Optional. The frame rate of the video sent to the model. If not specified, the default value will be 1.0. The fps range is (0.0, 24.0]. */
9326
+ fps?: number;
9323
9327
  /** Optional. The start offset of the video. */
9324
9328
  startOffset?: string;
9325
9329
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1",
3
- "version": "0.0.20250728",
3
+ "version": "0.0.20250731",
4
4
  "description": "TypeScript typings for Vertex AI API v1",
5
5
  "repository": {
6
6
  "type": "git",