@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.2.20250916 → 0.2.20250920

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 +22 -4
  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=v1beta1
12
- // Revision: 20250916
12
+ // Revision: 20250920
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -433,6 +433,8 @@ declare namespace gapi.client {
433
433
  autoraterModel?: string;
434
434
  /** Optional. Default is true. Whether to flip the candidate and baseline responses. This is only applicable to the pairwise metric. If enabled, also provide PairwiseMetricSpec.candidate_response_field_name and PairwiseMetricSpec.baseline_response_field_name. When rendering PairwiseMetricSpec.metric_prompt_template, the candidate and baseline fields will be flipped for half of the samples to reduce bias. */
435
435
  flipEnabled?: boolean;
436
+ /** Optional. Configuration options for model generation and outputs. */
437
+ generationConfig?: GoogleCloudAiplatformV1beta1GenerationConfig;
436
438
  /** Optional. Number of samples for each instance in the dataset. If not specified, the default is 4. Minimum value is 1, maximum value is 32. */
437
439
  samplingCount?: number;
438
440
  }
@@ -688,7 +690,7 @@ declare namespace gapi.client {
688
690
  candidateResponseColumns?: {[P in string]: string};
689
691
  /** Optional. The name of the column that contains the requests to evaluate. This will be in evaluation_item.EvalPrompt format. */
690
692
  promptColumn?: string;
691
- /** Optional. The name of the column that contains the rubrics. This will be in evaluation_rubric.RubricGroup format (cl/762595858). */
693
+ /** Optional. The name of the column that contains the rubrics. This is in evaluation_rubric.RubricGroup format. */
692
694
  rubricsColumn?: string;
693
695
  /** Optional. The sampling config for the bigquery resource. */
694
696
  samplingConfig?: GoogleCloudAiplatformV1beta1BigQueryRequestSetSamplingConfig;
@@ -2261,7 +2263,7 @@ declare namespace gapi.client {
2261
2263
  evaluationRequest?: GoogleCloudAiplatformV1beta1EvaluationRequest;
2262
2264
  /** Output only. The response from evaluation. */
2263
2265
  evaluationResponse?: GoogleCloudAiplatformV1beta1EvaluationResult;
2264
- /** The GCS object where the request or response is stored. */
2266
+ /** The Cloud Storage object where the request or response is stored. */
2265
2267
  gcsUri?: string;
2266
2268
  /** Optional. Labels for the EvaluationItem. */
2267
2269
  labels?: {[P in string]: string};
@@ -3704,7 +3706,7 @@ declare namespace gapi.client {
3704
3706
  args?: {[P in string]: any};
3705
3707
  /** Optional. The unique id of the function call. If populated, the client to execute the `function_call` and return the response with the matching `id`. */
3706
3708
  id?: string;
3707
- /** Required. The name of the function to call. Matches [FunctionDeclaration.name]. */
3709
+ /** Optional. The name of the function to call. Matches [FunctionDeclaration.name]. */
3708
3710
  name?: string;
3709
3711
  }
3710
3712
  interface GoogleCloudAiplatformV1beta1FunctionCallingConfig {
@@ -5013,6 +5015,16 @@ declare namespace gapi.client {
5013
5015
  /** Required. The user-defined display name of the Study */
5014
5016
  displayName?: string;
5015
5017
  }
5018
+ interface GoogleCloudAiplatformV1beta1LustreMount {
5019
+ /** Required. The name of the Lustre filesystem. */
5020
+ filesystem?: string;
5021
+ /** Required. IP address of the Lustre instance. */
5022
+ instanceIp?: string;
5023
+ /** Required. Destination mount path. The Lustre file system will be mounted for the user under /mnt/lustre/ */
5024
+ mountPoint?: string;
5025
+ /** Required. The unique identifier of the Lustre volume. */
5026
+ volumeHandle?: string;
5027
+ }
5016
5028
  interface GoogleCloudAiplatformV1beta1MachineSpec {
5017
5029
  /** The number of accelerators to attach to the machine. */
5018
5030
  acceleratorCount?: number;
@@ -8432,12 +8444,16 @@ declare namespace gapi.client {
8432
8444
  createTime?: string;
8433
8445
  /** Required. The display name of the SandboxEnvironment. */
8434
8446
  displayName?: string;
8447
+ /** Optional. Timestamp in UTC of when this SandboxEnvironment is considered expired. This is *always* provided on output, regardless of what `expiration` was sent on input. */
8448
+ expireTime?: string;
8435
8449
  /** Identifier. The name of the SandboxEnvironment. */
8436
8450
  name?: string;
8437
8451
  /** Optional. The configuration of the SandboxEnvironment. */
8438
8452
  spec?: GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec;
8439
8453
  /** Output only. The runtime state of the SandboxEnvironment. */
8440
8454
  state?: string;
8455
+ /** Optional. Input only. The TTL for the sandbox environment. The expiration time is computed: now + TTL. */
8456
+ ttl?: string;
8441
8457
  /** Output only. The timestamp when this SandboxEnvironment was most recently updated. */
8442
8458
  updateTime?: string;
8443
8459
  }
@@ -11735,6 +11751,8 @@ declare namespace gapi.client {
11735
11751
  containerSpec?: GoogleCloudAiplatformV1beta1ContainerSpec;
11736
11752
  /** Disk spec. */
11737
11753
  diskSpec?: GoogleCloudAiplatformV1beta1DiskSpec;
11754
+ /** Optional. List of Lustre mounts. */
11755
+ lustreMounts?: GoogleCloudAiplatformV1beta1LustreMount[];
11738
11756
  /** Optional. Immutable. The specification of a single machine. */
11739
11757
  machineSpec?: GoogleCloudAiplatformV1beta1MachineSpec;
11740
11758
  /** Optional. List of NFS mount spec. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.2.20250916",
3
+ "version": "0.2.20250920",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",