@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.2.20250917 → 0.2.20250926

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 +28 -10
  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: 20250917
12
+ // Revision: 20250926
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;
@@ -7964,7 +7976,7 @@ declare namespace gapi.client {
7964
7976
  classMethods?: Array<{[P in string]: any}>;
7965
7977
  /** Optional. The specification of a Reasoning Engine deployment. */
7966
7978
  deploymentSpec?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec;
7967
- /** Optional. User provided package spec of the ReasoningEngine. Ignored when users directly specify a deployment image through `deployment_spec.first_party_image_override`, but keeping the field_behavior to avoid introducing breaking changes. */
7979
+ /** Optional. User provided package spec of the ReasoningEngine. Ignored when users directly specify a deployment image through `deployment_spec.first_party_image_override`, but keeping the field_behavior to avoid introducing breaking changes. The `deployment_source` field should not be set if `package_spec` is specified. */
7968
7980
  packageSpec?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec;
7969
7981
  /** Optional. The service account that the Reasoning Engine artifact runs as. It should have "roles/storage.objectViewer" for reading the user project's Cloud Storage and "roles/aiplatform.user" for using Vertex extensions. If not specified, the Vertex AI Reasoning Engine Service Agent in the project will be used. */
7970
7982
  serviceAccount?: string;
@@ -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. */
@@ -26631,7 +26649,7 @@ declare namespace gapi.client {
26631
26649
  oauth_token?: string;
26632
26650
  /** How the list of messages is ordered. Specify the values to order by and an ordering operation. The default sorting order is ascending. To specify descending order for a field, users append a " desc" suffix; for example: "foo desc, bar". Subfields are specified with a `.` character, such as foo.bar. see https://google.aip.dev/132#ordering for more details. */
26633
26651
  orderBy?: string;
26634
- /** The maximum number of Artifacts to return. The service may return fewer. Must be in range 1-1000, inclusive. Defaults to 100. */
26652
+ /** The maximum number of Artifacts to return. The service may return fewer. Must be in range 1-100, inclusive. Defaults to 100. */
26635
26653
  pageSize?: number;
26636
26654
  /** A page token, received from a previous MetadataService.ListArtifacts call. Provide this to retrieve the subsequent page. When paginating, all other provided parameters must match the call that provided the page token. (Otherwise the request will fail with INVALID_ARGUMENT error.) */
26637
26655
  pageToken?: string;
@@ -27205,7 +27223,7 @@ declare namespace gapi.client {
27205
27223
  oauth_token?: string;
27206
27224
  /** How the list of messages is ordered. Specify the values to order by and an ordering operation. The default sorting order is ascending. To specify descending order for a field, users append a " desc" suffix; for example: "foo desc, bar". Subfields are specified with a `.` character, such as foo.bar. see https://google.aip.dev/132#ordering for more details. */
27207
27225
  orderBy?: string;
27208
- /** The maximum number of Contexts to return. The service may return fewer. Must be in range 1-1000, inclusive. Defaults to 100. */
27226
+ /** The maximum number of Contexts to return. The service may return fewer. Must be in range 1-100, inclusive. Defaults to 100. */
27209
27227
  pageSize?: number;
27210
27228
  /** A page token, received from a previous MetadataService.ListContexts call. Provide this to retrieve the subsequent page. When paginating, all other provided parameters must match the call that provided the page token. (Otherwise the request will fail with INVALID_ARGUMENT error.) */
27211
27229
  pageToken?: string;
@@ -27773,7 +27791,7 @@ declare namespace gapi.client {
27773
27791
  oauth_token?: string;
27774
27792
  /** How the list of messages is ordered. Specify the values to order by and an ordering operation. The default sorting order is ascending. To specify descending order for a field, users append a " desc" suffix; for example: "foo desc, bar". Subfields are specified with a `.` character, such as foo.bar. see https://google.aip.dev/132#ordering for more details. */
27775
27793
  orderBy?: string;
27776
- /** The maximum number of Executions to return. The service may return fewer. Must be in range 1-1000, inclusive. Defaults to 100. */
27794
+ /** The maximum number of Executions to return. The service may return fewer. Must be in range 1-100, inclusive. Defaults to 100. */
27777
27795
  pageSize?: number;
27778
27796
  /** A page token, received from a previous MetadataService.ListExecutions call. Provide this to retrieve the subsequent page. When paginating, all other provided parameters must match the call that provided the page token. (Otherwise the request will fail with an INVALID_ARGUMENT error.) */
27779
27797
  pageToken?: string;
@@ -28049,7 +28067,7 @@ declare namespace gapi.client {
28049
28067
  key?: string;
28050
28068
  /** OAuth 2.0 token for the current user. */
28051
28069
  oauth_token?: string;
28052
- /** The maximum number of MetadataSchemas to return. The service may return fewer. Must be in range 1-1000, inclusive. Defaults to 100. */
28070
+ /** The maximum number of MetadataSchemas to return. The service may return fewer. Must be in range 1-100, inclusive. Defaults to 100. */
28053
28071
  pageSize?: number;
28054
28072
  /** A page token, received from a previous MetadataService.ListMetadataSchemas call. Provide this to retrieve the next page. When paginating, all other provided parameters must match the call that provided the page token. (Otherwise the request will fail with INVALID_ARGUMENT error.) */
28055
28073
  pageToken?: string;
@@ -28345,7 +28363,7 @@ declare namespace gapi.client {
28345
28363
  key?: string;
28346
28364
  /** OAuth 2.0 token for the current user. */
28347
28365
  oauth_token?: string;
28348
- /** The maximum number of Metadata Stores to return. The service may return fewer. Must be in range 1-1000, inclusive. Defaults to 100. */
28366
+ /** The maximum number of Metadata Stores to return. The service may return fewer. Must be in range 1-100, inclusive. Defaults to 100. */
28349
28367
  pageSize?: number;
28350
28368
  /** A page token, received from a previous MetadataService.ListMetadataStores call. Provide this to retrieve the subsequent page. When paginating, all other provided parameters must match the call that provided the page token. (Otherwise the request will fail with INVALID_ARGUMENT error.) */
28351
28369
  pageToken?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.2.20250917",
3
+ "version": "0.2.20250926",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",