@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250131 → 0.0.20250212

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 +209 -19
  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: 20250131
12
+ // Revision: 20250212
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -350,11 +350,19 @@ declare namespace gapi.client {
350
350
  serviceAccount?: string;
351
351
  }
352
352
  interface GoogleCloudAiplatformV1beta1AutomaticResources {
353
- /** Immutable. The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale the model to that many replicas is guaranteed (barring service outages). If traffic against the DeployedModel increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, a no upper bound for scaling under heavy traffic will be assume, though Vertex AI may be unable to scale beyond certain replica number. */
353
+ /** Immutable. The maximum number of replicas that may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale to that many replicas is guaranteed (barring service outages). If traffic increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, a no upper bound for scaling under heavy traffic will be assume, though Vertex AI may be unable to scale beyond certain replica number. */
354
354
  maxReplicaCount?: number;
355
- /** Immutable. The minimum number of replicas this DeployedModel will be always deployed on. If traffic against it increases, it may dynamically be deployed onto more replicas up to max_replica_count, and as traffic decreases, some of these extra replicas may be freed. If the requested value is too large, the deployment will error. */
355
+ /** Immutable. The minimum number of replicas that will be always deployed on. If traffic against it increases, it may dynamically be deployed onto more replicas up to max_replica_count, and as traffic decreases, some of these extra replicas may be freed. If the requested value is too large, the deployment will error. */
356
356
  minReplicaCount?: number;
357
357
  }
358
+ interface GoogleCloudAiplatformV1beta1AutoraterConfig {
359
+ /** Optional. The fully qualified name of the publisher model or tuned autorater endpoint to use. Publisher model format: `projects/{project}/locations/{location}/publishers/*‍/models/*` Tuned model endpoint format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
360
+ autoraterModel?: string;
361
+ /** Optional. 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. */
362
+ flipEnabled?: boolean;
363
+ /** 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. */
364
+ samplingCount?: number;
365
+ }
358
366
  interface GoogleCloudAiplatformV1beta1AutoscalingMetricSpec {
359
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` */
360
368
  metricName?: string;
@@ -655,7 +663,7 @@ declare namespace gapi.client {
655
663
  displayName?: string;
656
664
  /** Timestamp of when this resource is considered expired. This is *always* provided on output, regardless of what was sent on input. */
657
665
  expireTime?: string;
658
- /** Immutable. The name of the publisher model to use for cached content. Format: projects/{project}/locations/{location}/publishers/{publisher}/models/{model} */
666
+ /** Immutable. The name of the `Model` to use for cached content. Currently, only the published Gemini base models are supported, in form of projects/{PROJECT}/locations/{LOCATION}/publishers/google/models/{MODEL} */
659
667
  model?: string;
660
668
  /** Immutable. Identifier. The server-generated resource name of the cached content Format: projects/{project}/locations/{location}/cachedContents/{cached_content} */
661
669
  name?: string;
@@ -1336,13 +1344,13 @@ declare namespace gapi.client {
1336
1344
  interface GoogleCloudAiplatformV1beta1DedicatedResources {
1337
1345
  /** Immutable. The metric specifications that overrides a resource utilization metric (CPU utilization, accelerator's duty cycle, and so on) target value (default to 60 if not set). At most one entry is allowed per metric. If machine_spec.accelerator_count is above 0, the autoscaling will be based on both CPU utilization and accelerator's duty cycle metrics and scale up when either metrics exceeds its target value while scale down if both metrics are under their target value. The default target value is 60 for both metrics. If machine_spec.accelerator_count is 0, the autoscaling will be based on CPU utilization metric only with default target value 60 if not explicitly set. For example, in the case of Online Prediction, if you want to override target CPU utilization to 80, you should set autoscaling_metric_specs.metric_name to `aiplatform.googleapis.com/prediction/online/cpu/utilization` and autoscaling_metric_specs.target to `80`. */
1338
1346
  autoscalingMetricSpecs?: GoogleCloudAiplatformV1beta1AutoscalingMetricSpec[];
1339
- /** Required. Immutable. The specification of a single machine used by the prediction. */
1347
+ /** Required. Immutable. The specification of a single machine being used. */
1340
1348
  machineSpec?: GoogleCloudAiplatformV1beta1MachineSpec;
1341
- /** Immutable. The maximum number of replicas this DeployedModel may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale the model to that many replicas is guaranteed (barring service outages). If traffic against the DeployedModel increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, will use min_replica_count as the default value. The value of this field impacts the charge against Vertex CPU and GPU quotas. Specifically, you will be charged for (max_replica_count * number of cores in the selected machine type) and (max_replica_count * number of GPUs per replica in the selected machine type). */
1349
+ /** Immutable. The maximum number of replicas that may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale to that many replicas is guaranteed (barring service outages). If traffic increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, will use min_replica_count as the default value. The value of this field impacts the charge against Vertex CPU and GPU quotas. Specifically, you will be charged for (max_replica_count * number of cores in the selected machine type) and (max_replica_count * number of GPUs per replica in the selected machine type). */
1342
1350
  maxReplicaCount?: number;
1343
- /** Required. Immutable. The minimum number of machine replicas this DeployedModel will be always deployed on. This value must be greater than or equal to 1. If traffic against the DeployedModel increases, it may dynamically be deployed onto more replicas, and as traffic decreases, some of these extra replicas may be freed. */
1351
+ /** Required. Immutable. The minimum number of machine replicas that will be always deployed on. This value must be greater than or equal to 1. If traffic increases, it may dynamically be deployed onto more replicas, and as traffic decreases, some of these extra replicas may be freed. */
1344
1352
  minReplicaCount?: number;
1345
- /** Optional. Number of required available replicas for the deployment to succeed. This field is only needed when partial model deployment/mutation is desired. If set, the model deploy/mutate operation will succeed once available_replica_count reaches required_replica_count, and the rest of the replicas will be retried. If not set, the default required_replica_count will be min_replica_count. */
1353
+ /** Optional. Number of required available replicas for the deployment to succeed. This field is only needed when partial deployment/mutation is desired. If set, the deploy/mutate operation will succeed once available_replica_count reaches required_replica_count, and the rest of the replicas will be retried. If not set, the default required_replica_count will be min_replica_count. */
1346
1354
  requiredReplicaCount?: number;
1347
1355
  /** Optional. If true, schedule the deployment workload on [spot VMs](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms). */
1348
1356
  spot?: boolean;
@@ -1470,6 +1478,8 @@ declare namespace gapi.client {
1470
1478
  modelVersionId?: string;
1471
1479
  /** Output only. Provide paths for users to send predict/explain/health requests directly to the deployed model services running on Cloud via private services access. This field is populated if network is configured. */
1472
1480
  privateEndpoints?: GoogleCloudAiplatformV1beta1PrivateEndpoints;
1481
+ /** Options for configuring rolling deployments. */
1482
+ rolloutOptions?: GoogleCloudAiplatformV1beta1RolloutOptions;
1473
1483
  /** The service account that the DeployedModel's container runs as. Specify the email address of the service account. If this service account is not specified, the container runs as a service account that doesn't have access to the resource project. Users deploying the Model must have the `iam.serviceAccounts.actAs` permission on this service account. */
1474
1484
  serviceAccount?: string;
1475
1485
  /** The resource name of the shared DeploymentResourcePool to deploy on. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
@@ -1550,7 +1560,7 @@ declare namespace gapi.client {
1550
1560
  endpointDisplayName?: string;
1551
1561
  /** Optional. The Hugging Face read access token used to access the model artifacts of gated models. */
1552
1562
  huggingFaceAccessToken?: string;
1553
- /** Required. The name of the PublisherModel resource. Format: `publishers/{publisher}/models/{publisher_model}@{version_id}`, or `publishers/hf-{hugging-face-author}/models/{hugging-face-model-name}@001` or Hugging Face model ID like `google/gemma-2-2b-it`. */
1563
+ /** Required. The model to deploy. Format: 1. `publishers/{publisher}/models/{publisher_model}@{version_id}`, or `publishers/hf-{hugging-face-author}/models/{hugging-face-model-name}@001`. 2. Hugging Face model ID like `google/gemma-2-2b-it`. 3. Custom model Google Cloud Storage URI like `gs://bucket`. 4. Custom model zip file like `https://abc.com/a.zip`. */
1554
1564
  model?: string;
1555
1565
  /** Optional. The user-specified display name of the uploaded model. If not set, a default name will be used. */
1556
1566
  modelDisplayName?: string;
@@ -1752,7 +1762,19 @@ declare namespace gapi.client {
1752
1762
  /** Explanation type. For AutoML Image Classification models, possible values are: * `image-integrated-gradients` * `image-xrai` */
1753
1763
  explanationType?: string;
1754
1764
  }
1765
+ interface GoogleCloudAiplatformV1beta1EvaluateDatasetRequest {
1766
+ /** Optional. Autorater config used for evaluation. */
1767
+ autoraterConfig?: GoogleCloudAiplatformV1beta1AutoraterConfig;
1768
+ /** Required. The dataset used for evaluation. */
1769
+ dataset?: GoogleCloudAiplatformV1beta1EvaluationDataset;
1770
+ /** Required. The metrics used for evaluation. */
1771
+ metrics?: GoogleCloudAiplatformV1beta1Metric[];
1772
+ /** Required. Config for evaluation output. */
1773
+ outputConfig?: GoogleCloudAiplatformV1beta1OutputConfig;
1774
+ }
1755
1775
  interface GoogleCloudAiplatformV1beta1EvaluateInstancesRequest {
1776
+ /** Optional. Autorater config used for evaluation. */
1777
+ autoraterConfig?: GoogleCloudAiplatformV1beta1AutoraterConfig;
1756
1778
  /** Instances and metric spec for bleu metric. */
1757
1779
  bleuInput?: GoogleCloudAiplatformV1beta1BleuInput;
1758
1780
  /** Input for coherence metric. */
@@ -1880,6 +1902,12 @@ declare namespace gapi.client {
1880
1902
  /** Results for trajectory single tool use metric. */
1881
1903
  trajectorySingleToolUseResults?: GoogleCloudAiplatformV1beta1TrajectorySingleToolUseResults;
1882
1904
  }
1905
+ interface GoogleCloudAiplatformV1beta1EvaluationDataset {
1906
+ /** BigQuery source holds the dataset. */
1907
+ bigquerySource?: GoogleCloudAiplatformV1beta1BigQuerySource;
1908
+ /** Cloud storage source holds the dataset. */
1909
+ gcsSource?: GoogleCloudAiplatformV1beta1GcsSource;
1910
+ }
1883
1911
  interface GoogleCloudAiplatformV1beta1Event {
1884
1912
  /** Required. The relative resource name of the Artifact in the Event. */
1885
1913
  artifact?: string;
@@ -3109,8 +3137,6 @@ declare namespace gapi.client {
3109
3137
  stopSequences?: string[];
3110
3138
  /** Optional. Controls the randomness of predictions. */
3111
3139
  temperature?: number;
3112
- /** Optional. Config for thinking features. An error will be returned if this field is set for models that don't support thinking. */
3113
- thinkingConfig?: GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig;
3114
3140
  /** Optional. If specified, top-k sampling will be used. */
3115
3141
  topK?: number;
3116
3142
  /** Optional. If specified, nucleus sampling will be used. */
@@ -3130,10 +3156,6 @@ declare namespace gapi.client {
3130
3156
  /** The model name to use. Only the public LLM models are accepted. e.g. 'gemini-1.5-pro-001'. */
3131
3157
  modelName?: string;
3132
3158
  }
3133
- interface GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig {
3134
- /** Optional. Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. */
3135
- includeThoughts?: boolean;
3136
- }
3137
3159
  interface GoogleCloudAiplatformV1beta1GenericOperationMetadata {
3138
3160
  /** Output only. Time when the operation was created. */
3139
3161
  createTime?: string;
@@ -4018,6 +4040,20 @@ declare namespace gapi.client {
4018
4040
  /** The disk utilization of the MetadataStore in bytes. */
4019
4041
  diskUtilizationBytes?: string;
4020
4042
  }
4043
+ interface GoogleCloudAiplatformV1beta1Metric {
4044
+ /** Optional. The aggregation metrics to use. */
4045
+ aggregationMetrics?: string[];
4046
+ /** Spec for bleu metric. */
4047
+ bleuSpec?: GoogleCloudAiplatformV1beta1BleuSpec;
4048
+ /** Spec for exact match metric. */
4049
+ exactMatchSpec?: any;
4050
+ /** Spec for pairwise metric. */
4051
+ pairwiseMetricSpec?: GoogleCloudAiplatformV1beta1PairwiseMetricSpec;
4052
+ /** Spec for pointwise metric. */
4053
+ pointwiseMetricSpec?: GoogleCloudAiplatformV1beta1PointwiseMetricSpec;
4054
+ /** Spec for rouge metric. */
4055
+ rougeSpec?: GoogleCloudAiplatformV1beta1RougeSpec;
4056
+ }
4021
4057
  interface GoogleCloudAiplatformV1beta1MetricxInput {
4022
4058
  /** Required. Metricx instance. */
4023
4059
  instance?: GoogleCloudAiplatformV1beta1MetricxInstance;
@@ -4415,7 +4451,7 @@ declare namespace gapi.client {
4415
4451
  interface GoogleCloudAiplatformV1beta1ModelExportFormat {
4416
4452
  /** Output only. The content of this Model that may be exported. */
4417
4453
  exportableContents?: string[];
4418
- /** Output only. The ID of the export format. The possible format IDs are: * `tflite` Used for Android mobile devices. * `edgetpu-tflite` Used for [Edge TPU](https://cloud.google.com/edge-tpu/) devices. * `tf-saved-model` A tensorflow model in SavedModel format. * `tf-js` A [TensorFlow.js](https://www.tensorflow.org/js) model that can be used in the browser and in Node.js using JavaScript. * `core-ml` Used for iOS mobile devices. * `custom-trained` A Model that was uploaded or trained by custom code. */
4454
+ /** Output only. The ID of the export format. The possible format IDs are: * `tflite` Used for Android mobile devices. * `edgetpu-tflite` Used for [Edge TPU](https://cloud.google.com/edge-tpu/) devices. * `tf-saved-model` A tensorflow model in SavedModel format. * `tf-js` A [TensorFlow.js](https://www.tensorflow.org/js) model that can be used in the browser and in Node.js using JavaScript. * `core-ml` Used for iOS mobile devices. * `custom-trained` A Model that was uploaded or trained by custom code. * `genie` A tuned Model Garden model. */
4419
4455
  id?: string;
4420
4456
  }
4421
4457
  interface GoogleCloudAiplatformV1beta1ModelGardenSource {
@@ -4833,6 +4869,8 @@ declare namespace gapi.client {
4833
4869
  checkpointId?: string;
4834
4870
  /** The epoch of the checkpoint. */
4835
4871
  epoch?: string;
4872
+ /** Identifier. The resource name of the ModelVersionCheckpoint. Format: `projects/{project}/locations/{location}/models/{model}/versions/{version}/checkpoints/{checkpoint}` */
4873
+ name?: string;
4836
4874
  /** The step of the checkpoint. */
4837
4875
  step?: string;
4838
4876
  }
@@ -5263,6 +5301,10 @@ declare namespace gapi.client {
5263
5301
  /** Optional. Post startup script config. */
5264
5302
  postStartupScriptConfig?: GoogleCloudAiplatformV1beta1PostStartupScriptConfig;
5265
5303
  }
5304
+ interface GoogleCloudAiplatformV1beta1OutputConfig {
5305
+ /** Cloud storage destination for evaluation output. */
5306
+ gcsDestination?: GoogleCloudAiplatformV1beta1GcsDestination;
5307
+ }
5266
5308
  interface GoogleCloudAiplatformV1beta1PairwiseMetricInput {
5267
5309
  /** Required. Pairwise metric instance. */
5268
5310
  instance?: GoogleCloudAiplatformV1beta1PairwiseMetricInstance;
@@ -5280,8 +5322,14 @@ declare namespace gapi.client {
5280
5322
  pairwiseChoice?: string;
5281
5323
  }
5282
5324
  interface GoogleCloudAiplatformV1beta1PairwiseMetricSpec {
5325
+ /** Optional. The field name of the baseline response. */
5326
+ baselineResponseFieldName?: string;
5327
+ /** Optional. The field name of the candidate response. */
5328
+ candidateResponseFieldName?: string;
5283
5329
  /** Required. Metric prompt template for pairwise metric. */
5284
5330
  metricPromptTemplate?: string;
5331
+ /** Optional. System instructions for pairwise metric. */
5332
+ systemInstruction?: string;
5285
5333
  }
5286
5334
  interface GoogleCloudAiplatformV1beta1PairwiseQuestionAnsweringQualityInput {
5287
5335
  /** Required. Pairwise question answering quality instance. */
@@ -5624,6 +5672,8 @@ declare namespace gapi.client {
5624
5672
  interface GoogleCloudAiplatformV1beta1PointwiseMetricSpec {
5625
5673
  /** Required. Metric prompt template for pointwise metric. */
5626
5674
  metricPromptTemplate?: string;
5675
+ /** Optional. System instructions for pointwise metric. */
5676
+ systemInstruction?: string;
5627
5677
  }
5628
5678
  interface GoogleCloudAiplatformV1beta1Port {
5629
5679
  /** The number of the port to expose on the pod's IP address. Must be a valid port number, between 1 and 65535 inclusive. */
@@ -5721,12 +5771,18 @@ declare namespace gapi.client {
5721
5771
  interface GoogleCloudAiplatformV1beta1Probe {
5722
5772
  /** ExecAction probes the health of a container by executing a command. */
5723
5773
  exec?: GoogleCloudAiplatformV1beta1ProbeExecAction;
5774
+ /** Number of consecutive failures before the probe is considered failed. Defaults to 3. Minimum value is 1. Maps to Kubernetes probe argument 'failureThreshold'. */
5775
+ failureThreshold?: number;
5724
5776
  /** GrpcAction probes the health of a container by sending a gRPC request. */
5725
5777
  grpc?: GoogleCloudAiplatformV1beta1ProbeGrpcAction;
5726
5778
  /** HttpGetAction probes the health of a container by sending an HTTP GET request. */
5727
5779
  httpGet?: GoogleCloudAiplatformV1beta1ProbeHttpGetAction;
5780
+ /** Number of seconds to wait before starting the probe. Defaults to 0. Minimum value is 0. Maps to Kubernetes probe argument 'initialDelaySeconds'. */
5781
+ initialDelaySeconds?: number;
5728
5782
  /** How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Must be less than timeout_seconds. Maps to Kubernetes probe argument 'periodSeconds'. */
5729
5783
  periodSeconds?: number;
5784
+ /** Number of consecutive successes before the probe is considered successful. Defaults to 1. Minimum value is 1. Maps to Kubernetes probe argument 'successThreshold'. */
5785
+ successThreshold?: number;
5730
5786
  /** TcpSocketAction probes the health of a container by opening a TCP socket connection. */
5731
5787
  tcpSocket?: GoogleCloudAiplatformV1beta1ProbeTcpSocketAction;
5732
5788
  /** Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Must be greater or equal to period_seconds. Maps to Kubernetes probe argument 'timeoutSeconds'. */
@@ -6650,6 +6706,20 @@ declare namespace gapi.client {
6650
6706
  /** The contexts of the query. */
6651
6707
  contexts?: GoogleCloudAiplatformV1beta1RagContexts;
6652
6708
  }
6709
+ interface GoogleCloudAiplatformV1beta1RolloutOptions {
6710
+ /** Percentage of allowed additional replicas. For autoscaling deployments, this refers to the target replica count. */
6711
+ maxSurgePercentage?: number;
6712
+ /** Absolute count of allowed additional replicas. */
6713
+ maxSurgeReplicas?: number;
6714
+ /** Percentage of replicas allowed to be unavailable. For autoscaling deployments, this refers to the target replica count. */
6715
+ maxUnavailablePercentage?: number;
6716
+ /** Absolute count of replicas allowed to be unavailable. */
6717
+ maxUnavailableReplicas?: number;
6718
+ /** ID of the DeployedModel that this deployment should replace. */
6719
+ previousDeployedModel?: string;
6720
+ /** Output only. Read-only. Revision number determines the relative priority of DeployedModels in the same rollout. The DeployedModel with the largest revision number specifies the intended state of the deployment. */
6721
+ revisionNumber?: number;
6722
+ }
6653
6723
  interface GoogleCloudAiplatformV1beta1RougeInput {
6654
6724
  /** Required. Repeated rouge instances. */
6655
6725
  instances?: GoogleCloudAiplatformV1beta1RougeInstance[];
@@ -7675,7 +7745,7 @@ declare namespace gapi.client {
7675
7745
  displayName?: string;
7676
7746
  }
7677
7747
  interface GoogleCloudAiplatformV1beta1SchemaTextDataItem {
7678
- /** Output only. Google Cloud Storage URI points to the original text in user's bucket. The text file is up to 10MB in size. */
7748
+ /** Output only. Google Cloud Storage URI points to a copy of the original text in the Vertex-managed bucket in the user's project. The text file is up to 10MB in size. */
7679
7749
  gcsUri?: string;
7680
7750
  }
7681
7751
  interface GoogleCloudAiplatformV1beta1SchemaTextDatasetMetadata {
@@ -17057,6 +17127,68 @@ declare namespace gapi.client {
17057
17127
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17058
17128
  uploadType?: string;
17059
17129
  }): Request<GoogleCloudAiplatformV1beta1ListFeatureMonitorsResponse>;
17130
+ /** Updates the parameters of a single FeatureMonitor. */
17131
+ patch(request: {
17132
+ /** V1 error format. */
17133
+ '$.xgafv'?: string;
17134
+ /** OAuth access token. */
17135
+ access_token?: string;
17136
+ /** Data format for response. */
17137
+ alt?: string;
17138
+ /** JSONP */
17139
+ callback?: string;
17140
+ /** Selector specifying which fields to include in a partial response. */
17141
+ fields?: string;
17142
+ /** 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. */
17143
+ key?: string;
17144
+ /** Identifier. Name of the FeatureMonitor. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}/featureMonitors/{featureMonitor}` */
17145
+ name: string;
17146
+ /** OAuth 2.0 token for the current user. */
17147
+ oauth_token?: string;
17148
+ /** Returns response with indentations and line breaks. */
17149
+ prettyPrint?: boolean;
17150
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17151
+ quotaUser?: string;
17152
+ /** Optional. Field mask is used to specify the fields to be overwritten in the FeatureMonitor resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `schedule_config` * `feature_selection_config` */
17153
+ updateMask?: string;
17154
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17155
+ upload_protocol?: string;
17156
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17157
+ uploadType?: string;
17158
+ /** Request body */
17159
+ resource: GoogleCloudAiplatformV1beta1FeatureMonitor;
17160
+ }): Request<GoogleLongrunningOperation>;
17161
+ patch(
17162
+ request: {
17163
+ /** V1 error format. */
17164
+ '$.xgafv'?: string;
17165
+ /** OAuth access token. */
17166
+ access_token?: string;
17167
+ /** Data format for response. */
17168
+ alt?: string;
17169
+ /** JSONP */
17170
+ callback?: string;
17171
+ /** Selector specifying which fields to include in a partial response. */
17172
+ fields?: string;
17173
+ /** 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. */
17174
+ key?: string;
17175
+ /** Identifier. Name of the FeatureMonitor. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}/featureMonitors/{featureMonitor}` */
17176
+ name: string;
17177
+ /** OAuth 2.0 token for the current user. */
17178
+ oauth_token?: string;
17179
+ /** Returns response with indentations and line breaks. */
17180
+ prettyPrint?: boolean;
17181
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17182
+ quotaUser?: string;
17183
+ /** Optional. Field mask is used to specify the fields to be overwritten in the FeatureMonitor resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `schedule_config` * `feature_selection_config` */
17184
+ updateMask?: string;
17185
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17186
+ upload_protocol?: string;
17187
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17188
+ uploadType?: string;
17189
+ },
17190
+ body: GoogleCloudAiplatformV1beta1FeatureMonitor,
17191
+ ): Request<GoogleLongrunningOperation>;
17060
17192
  featureMonitorJobs: FeatureMonitorJobsResource;
17061
17193
  operations: OperationsResource;
17062
17194
  }
@@ -17785,7 +17917,7 @@ declare namespace gapi.client {
17785
17917
  prettyPrint?: boolean;
17786
17918
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17787
17919
  quotaUser?: string;
17788
- /** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` */
17920
+ /** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` * `service_agent_type` */
17789
17921
  updateMask?: string;
17790
17922
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17791
17923
  upload_protocol?: string;
@@ -17816,7 +17948,7 @@ declare namespace gapi.client {
17816
17948
  prettyPrint?: boolean;
17817
17949
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17818
17950
  quotaUser?: string;
17819
- /** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` */
17951
+ /** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` * `service_agent_type` */
17820
17952
  updateMask?: string;
17821
17953
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17822
17954
  upload_protocol?: string;
@@ -35972,6 +36104,64 @@ declare namespace gapi.client {
35972
36104
  },
35973
36105
  body: GoogleCloudAiplatformV1beta1DeployPublisherModelRequest,
35974
36106
  ): Request<GoogleLongrunningOperation>;
36107
+ /** Evaluates a dataset based on a set of given metrics. */
36108
+ evaluateDataset(request: {
36109
+ /** V1 error format. */
36110
+ '$.xgafv'?: string;
36111
+ /** OAuth access token. */
36112
+ access_token?: string;
36113
+ /** Data format for response. */
36114
+ alt?: string;
36115
+ /** JSONP */
36116
+ callback?: string;
36117
+ /** Selector specifying which fields to include in a partial response. */
36118
+ fields?: string;
36119
+ /** 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. */
36120
+ key?: string;
36121
+ /** Required. The resource name of the Location to evaluate the dataset. Format: `projects/{project}/locations/{location}` */
36122
+ location: string;
36123
+ /** OAuth 2.0 token for the current user. */
36124
+ oauth_token?: string;
36125
+ /** Returns response with indentations and line breaks. */
36126
+ prettyPrint?: boolean;
36127
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36128
+ quotaUser?: string;
36129
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36130
+ upload_protocol?: string;
36131
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36132
+ uploadType?: string;
36133
+ /** Request body */
36134
+ resource: GoogleCloudAiplatformV1beta1EvaluateDatasetRequest;
36135
+ }): Request<GoogleLongrunningOperation>;
36136
+ evaluateDataset(
36137
+ request: {
36138
+ /** V1 error format. */
36139
+ '$.xgafv'?: string;
36140
+ /** OAuth access token. */
36141
+ access_token?: string;
36142
+ /** Data format for response. */
36143
+ alt?: string;
36144
+ /** JSONP */
36145
+ callback?: string;
36146
+ /** Selector specifying which fields to include in a partial response. */
36147
+ fields?: string;
36148
+ /** 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. */
36149
+ key?: string;
36150
+ /** Required. The resource name of the Location to evaluate the dataset. Format: `projects/{project}/locations/{location}` */
36151
+ location: string;
36152
+ /** OAuth 2.0 token for the current user. */
36153
+ oauth_token?: string;
36154
+ /** Returns response with indentations and line breaks. */
36155
+ prettyPrint?: boolean;
36156
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36157
+ quotaUser?: string;
36158
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36159
+ upload_protocol?: string;
36160
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36161
+ uploadType?: string;
36162
+ },
36163
+ body: GoogleCloudAiplatformV1beta1EvaluateDatasetRequest,
36164
+ ): Request<GoogleLongrunningOperation>;
35975
36165
  /** Evaluates instances based on a given metric. */
35976
36166
  evaluateInstances(request: {
35977
36167
  /** V1 error format. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.0.20250131",
3
+ "version": "0.0.20250212",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",