@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20250701 → 0.0.20250715

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 -6
  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: 20250701
12
+ // Revision: 20250715
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1376,6 +1376,8 @@ declare namespace gapi.client {
1376
1376
  displayName?: string;
1377
1377
  /** 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. */
1378
1378
  enableAccessLogging?: boolean;
1379
+ /** Optional. If true, logs to Cloud Logging errors relating to datapoint upserts. Under normal operation conditions, these log entries should be very rare. However, if incompatible datapoint updates are being uploaded to an index, a high volume of log entries may be generated in a short period of time. Note that logs may incur a cost, especially if the deployed index receives a high volume of datapoint upserts. Estimate your costs before enabling this option. */
1380
+ enableDatapointUpsertLogging?: boolean;
1379
1381
  /** Required. The user specified ID of the DeployedIndex. The ID can be up to 128 characters long and must start with a letter and only contain letters, numbers, and underscores. The ID must be unique within the project it is created in. */
1380
1382
  id?: string;
1381
1383
  /** Required. The name of the Index this is the deployment of. We may refer to this Index as the DeployedIndex's "original" Index. */
@@ -1428,6 +1430,8 @@ declare namespace gapi.client {
1428
1430
  explanationSpec?: GoogleCloudAiplatformV1ExplanationSpec;
1429
1431
  /** Configuration for faster model deployment. */
1430
1432
  fasterDeploymentConfig?: GoogleCloudAiplatformV1FasterDeploymentConfig;
1433
+ /** GDC pretrained / Gemini model name. The model name is a plain model name, e.g. gemini-1.5-flash-002. */
1434
+ gdcConnectedModel?: string;
1431
1435
  /** Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID. This value should be 1-10 characters, and valid characters are `/[0-9]/`. */
1432
1436
  id?: string;
1433
1437
  /** The resource name of the Model that this is the deployment of. Note that the Model may be in a different location than the DeployedModel's Endpoint. The resource name may contain version id or version alias to specify the version. Example: `projects/{project}/locations/{location}/models/{model}@2` or `projects/{project}/locations/{location}/models/{model}@golden` if no version is specified, the default version will be deployed. */
@@ -1558,6 +1562,8 @@ declare namespace gapi.client {
1558
1562
  huggingFaceCacheEnabled?: boolean;
1559
1563
  /** Optional. The user-specified display name of the uploaded model. If not set, a default name will be used. */
1560
1564
  modelDisplayName?: string;
1565
+ /** Optional. The ID to use for the uploaded Model, which will become the final component of the model resource name. When not provided, Vertex AI will generate a value for this ID. When Model Registry model is provided, this field will be ignored. This value may be up to 63 characters, and valid characters are `[a-z0-9_-]`. The first character cannot be a number or hyphen. */
1566
+ modelUserId?: string;
1561
1567
  }
1562
1568
  interface GoogleCloudAiplatformV1DeployResponse {
1563
1569
  /** Output only. The name of the Endpoint created. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
@@ -1645,6 +1651,8 @@ declare namespace gapi.client {
1645
1651
  encryptionSpec?: GoogleCloudAiplatformV1EncryptionSpec;
1646
1652
  /** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
1647
1653
  etag?: string;
1654
+ /** Configures the Google Distributed Cloud (GDC) environment for online prediction. Only set this field when the Endpoint is to be deployed in a GDC environment. */
1655
+ gdcConfig?: GoogleCloudAiplatformV1GdcConfig;
1648
1656
  /** Optional. Configuration for GenAiAdvancedFeatures. If the endpoint is serving GenAI models, advanced features like native RAG integration can be configured. Currently, only Model Garden models are supported. */
1649
1657
  genAiAdvancedFeaturesConfig?: GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig;
1650
1658
  /** The labels with user-defined metadata to organize your Endpoints. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */
@@ -2531,7 +2539,7 @@ declare namespace gapi.client {
2531
2539
  values?: GoogleCloudAiplatformV1FeatureValue[];
2532
2540
  }
2533
2541
  interface GoogleCloudAiplatformV1FeatureValueMetadata {
2534
- /** Feature generation timestamp. Typically, it is provided by user at feature ingestion time. If not, feature store will use the system timestamp when the data is ingested into feature store. For streaming ingestion, the time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future. */
2542
+ /** Feature generation timestamp. Typically, it is provided by user at feature ingestion time. If not, feature store will use the system timestamp when the data is ingested into feature store. Legacy Feature Store: For streaming ingestion, the time, aligned by days, must be no older than five years (1825 days) and no later than one year (366 days) in the future. */
2535
2543
  generateTime?: string;
2536
2544
  }
2537
2545
  interface GoogleCloudAiplatformV1FeatureView {
@@ -2843,6 +2851,10 @@ declare namespace gapi.client {
2843
2851
  /** Required. Google Cloud Storage URI(-s) to the input file(s). May contain wildcards. For more information on wildcards, see https://cloud.google.com/storage/docs/wildcards. */
2844
2852
  uris?: string[];
2845
2853
  }
2854
+ interface GoogleCloudAiplatformV1GdcConfig {
2855
+ /** GDC zone. A cluster will be designated for the Vertex AI workload in this zone. */
2856
+ zone?: string;
2857
+ }
2846
2858
  interface GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig {
2847
2859
  /** Configuration for Retrieval Augmented Generation feature. */
2848
2860
  ragConfig?: GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfigRagConfig;
@@ -4404,7 +4416,7 @@ declare namespace gapi.client {
4404
4416
  genericMetadata?: GoogleCloudAiplatformV1GenericOperationMetadata;
4405
4417
  }
4406
4418
  interface GoogleCloudAiplatformV1MutateDeployedModelRequest {
4407
- /** Required. The DeployedModel to be mutated within the Endpoint. Only the following fields can be mutated: * `min_replica_count` in either DedicatedResources or AutomaticResources * `max_replica_count` in either DedicatedResources or AutomaticResources * autoscaling_metric_specs * `disable_container_logging` (v1 only) * `enable_container_logging` (v1beta1 only) */
4419
+ /** Required. The DeployedModel to be mutated within the Endpoint. Only the following fields can be mutated: * `min_replica_count` in either DedicatedResources or AutomaticResources * `max_replica_count` in either DedicatedResources or AutomaticResources * `required_replica_count` in DedicatedResources * autoscaling_metric_specs * `disable_container_logging` (v1 only) * `enable_container_logging` (v1beta1 only) */
4408
4420
  deployedModel?: GoogleCloudAiplatformV1DeployedModel;
4409
4421
  /** Required. The update mask applies to the resource. See google.protobuf.FieldMask. */
4410
4422
  updateMask?: string;
@@ -5097,6 +5109,8 @@ declare namespace gapi.client {
5097
5109
  taskId?: string;
5098
5110
  /** Output only. The user specified name of the task that is defined in pipeline_spec. */
5099
5111
  taskName?: string;
5112
+ /** Output only. The unique name of a task. This field is used by rerun pipeline job. Console UI and Vertex AI SDK will support triggering pipeline job reruns. The name is constructed by concatenating all the parent tasks name with the task name. For example, if a task named "child_task" has a parent task named "parent_task_1" and parent task 1 has a parent task named "parent_task_2", the task unique name will be "parent_task_2.parent_task_1.child_task". */
5113
+ taskUniqueName?: string;
5100
5114
  }
5101
5115
  interface GoogleCloudAiplatformV1PipelineTaskDetailArtifactList {
5102
5116
  /** Output only. A list of artifact metadata. */
@@ -8353,7 +8367,7 @@ declare namespace gapi.client {
8353
8367
  adapterSize?: string;
8354
8368
  /** Optional. Number of complete passes the model makes over the entire training dataset during training. */
8355
8369
  epochCount?: string;
8356
- /** Optional. Multiplier for adjusting the default learning rate. Mutually exclusive with `learning_rate`. */
8370
+ /** Optional. Multiplier for adjusting the default learning rate. Mutually exclusive with `learning_rate`. This feature is only available for 1P models. */
8357
8371
  learningRateMultiplier?: number;
8358
8372
  }
8359
8373
  interface GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution {
@@ -8946,7 +8960,7 @@ declare namespace gapi.client {
8946
8960
  checkpoints?: GoogleCloudAiplatformV1TunedModelCheckpoint[];
8947
8961
  /** Output only. A resource name of an Endpoint. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
8948
8962
  endpoint?: string;
8949
- /** Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}`. */
8963
+ /** Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base model, the version_id will be 1. For continuous tuning, the version id will be incremented by 1 from the last version id in the parent model. E.g., `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}` */
8950
8964
  model?: string;
8951
8965
  }
8952
8966
  interface GoogleCloudAiplatformV1TunedModelCheckpoint {
@@ -14335,6 +14349,8 @@ declare namespace gapi.client {
14335
14349
  fields?: string;
14336
14350
  /** Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `endpoint` supports `=` and `!=`. `endpoint` represents the Endpoint ID, i.e. the last segment of the Endpoint's resource name. * `display_name` supports `=` and `!=`. * `labels` supports general map functions that is: * `labels.key=value` - key:value equality * `labels.key:*` or `labels:key` - key existence * A key including a space must be quoted. `labels."a key"`. * `base_model_name` only supports `=`. Some examples: * `endpoint=1` * `displayName="myDisplayName"` * `labels.myKey="myValue"` * `baseModelName="text-bison"` */
14337
14351
  filter?: string;
14352
+ /** Optional. Configures the Google Distributed Cloud (GDC) environment for online prediction. Only set this field when the Endpoint is to be deployed in a GDC environment. */
14353
+ gdcZone?: string;
14338
14354
  /** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
14339
14355
  key?: string;
14340
14356
  /** OAuth 2.0 token for the current user. */
@@ -14358,7 +14374,7 @@ declare namespace gapi.client {
14358
14374
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14359
14375
  uploadType?: string;
14360
14376
  }): Request<GoogleCloudAiplatformV1ListEndpointsResponse>;
14361
- /** Updates an existing deployed model. Updatable fields include `min_replica_count`, `max_replica_count`, `autoscaling_metric_specs`, `disable_container_logging` (v1 only), and `enable_container_logging` (v1beta1 only). */
14377
+ /** Updates an existing deployed model. Updatable fields include `min_replica_count`, `max_replica_count`, `required_replica_count`, `autoscaling_metric_specs`, `disable_container_logging` (v1 only), and `enable_container_logging` (v1beta1 only). */
14362
14378
  mutateDeployedModel(request: {
14363
14379
  /** V1 error format. */
14364
14380
  '$.xgafv'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1",
3
- "version": "0.0.20250701",
3
+ "version": "0.0.20250715",
4
4
  "description": "TypeScript typings for Vertex AI API v1",
5
5
  "repository": {
6
6
  "type": "git",