@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250120 → 0.0.20250205

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 (3) hide show
  1. package/index.d.ts +573 -226
  2. package/package.json +1 -1
  3. package/readme.md +7 -2
package/index.d.ts CHANGED
@@ -9,14 +9,14 @@
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: 20250120
12
+ // Revision: 20250205
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
16
16
  declare namespace gapi.client {
17
17
  /** Load Vertex AI API v1beta1 */
18
18
  function load(
19
- urlOrObject: 'https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1'
19
+ urlOrObject: 'https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1',
20
20
  ): Promise<void>;
21
21
  /** @deprecated Please load APIs with discovery documents. */
22
22
  function load(name: 'aiplatform', version: 'v1beta1'): Promise<void>;
@@ -24,7 +24,7 @@ declare namespace gapi.client {
24
24
  function load(
25
25
  name: 'aiplatform',
26
26
  version: 'v1beta1',
27
- callback: () => any
27
+ callback: () => any,
28
28
  ): void;
29
29
 
30
30
  namespace aiplatform {
@@ -355,6 +355,14 @@ declare namespace gapi.client {
355
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. */
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;
@@ -627,6 +635,8 @@ declare namespace gapi.client {
627
635
  interface GoogleCloudAiplatformV1beta1Blob {
628
636
  /** Required. Raw bytes. */
629
637
  data?: string;
638
+ /** Optional. Display name of the blob. Used to provide a label or filename to distinguish blobs. This field is only returned in PromptMessage for prompt management. It is not currently used in the Gemini GenerateContent calls. */
639
+ displayName?: string;
630
640
  /** Required. The IANA standard MIME type of the source data. */
631
641
  mimeType?: string;
632
642
  }
@@ -647,7 +657,7 @@ declare namespace gapi.client {
647
657
  interface GoogleCloudAiplatformV1beta1CachedContent {
648
658
  /** Optional. Input only. Immutable. The content to cache */
649
659
  contents?: GoogleCloudAiplatformV1beta1Content[];
650
- /** Output only. Creatation time of the cache entry. */
660
+ /** Output only. Creation time of the cache entry. */
651
661
  createTime?: string;
652
662
  /** Optional. Immutable. The user-generated meaningful display name of the cached content. */
653
663
  displayName?: string;
@@ -942,6 +952,8 @@ declare namespace gapi.client {
942
952
  tools?: GoogleCloudAiplatformV1beta1Tool[];
943
953
  }
944
954
  interface GoogleCloudAiplatformV1beta1CountTokensResponse {
955
+ /** Output only. List of modalities that were processed in the request input. */
956
+ promptTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
945
957
  /** The total number of billable characters counted across all instances from the request. */
946
958
  totalBillableCharacters?: number;
947
959
  /** The total number of tokens counted across all instances from the request. */
@@ -1466,10 +1478,14 @@ declare namespace gapi.client {
1466
1478
  modelVersionId?: string;
1467
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. */
1468
1480
  privateEndpoints?: GoogleCloudAiplatformV1beta1PrivateEndpoints;
1481
+ /** Options for configuring rolling deployments. */
1482
+ rolloutOptions?: GoogleCloudAiplatformV1beta1RolloutOptions;
1469
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. */
1470
1484
  serviceAccount?: string;
1471
1485
  /** The resource name of the shared DeploymentResourcePool to deploy on. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
1472
1486
  sharedResources?: string;
1487
+ /** Optional. Spec for configuring speculative decoding. */
1488
+ speculativeDecodingSpec?: GoogleCloudAiplatformV1beta1SpeculativeDecodingSpec;
1473
1489
  /** Output only. Runtime status of the deployed model. */
1474
1490
  status?: GoogleCloudAiplatformV1beta1DeployedModelStatus;
1475
1491
  /** System labels to apply to Model Garden deployments. System labels are managed by Google for internal use only. */
@@ -1651,6 +1667,8 @@ declare namespace gapi.client {
1651
1667
  encryptionSpec?: GoogleCloudAiplatformV1beta1EncryptionSpec;
1652
1668
  /** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
1653
1669
  etag?: string;
1670
+ /** 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. */
1671
+ genAiAdvancedFeaturesConfig?: GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfig;
1654
1672
  /** 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. */
1655
1673
  labels?: {[P in string]: string};
1656
1674
  /** Output only. Resource name of the Model Monitoring job associated with this Endpoint if monitoring is enabled by JobService.CreateModelDeploymentMonitoringJob. Format: `projects/{project}/locations/{location}/modelDeploymentMonitoringJobs/{model_deployment_monitoring_job}` */
@@ -1745,6 +1763,8 @@ declare namespace gapi.client {
1745
1763
  explanationType?: string;
1746
1764
  }
1747
1765
  interface GoogleCloudAiplatformV1beta1EvaluateInstancesRequest {
1766
+ /** Optional. Autorater config used for evaluation. */
1767
+ autoraterConfig?: GoogleCloudAiplatformV1beta1AutoraterConfig;
1748
1768
  /** Instances and metric spec for bleu metric. */
1749
1769
  bleuInput?: GoogleCloudAiplatformV1beta1BleuInput;
1750
1770
  /** Input for coherence metric. */
@@ -2827,6 +2847,8 @@ declare namespace gapi.client {
2827
2847
  operationName?: string;
2828
2848
  }
2829
2849
  interface GoogleCloudAiplatformV1beta1FileData {
2850
+ /** Optional. Display name of the file data. Used to provide a label or filename to distinguish file datas. This field is only returned in PromptMessage for prompt management. It is not currently used in the Gemini GenerateContent calls. */
2851
+ displayName?: string;
2830
2852
  /** Required. URI. */
2831
2853
  fileUri?: string;
2832
2854
  /** Required. The IANA standard MIME type of the source data. */
@@ -2980,6 +3002,14 @@ declare namespace gapi.client {
2980
3002
  /** 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/gsutil/addlhelp/WildcardNames. */
2981
3003
  uris?: string[];
2982
3004
  }
3005
+ interface GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfig {
3006
+ /** Configuration for Retrieval Augmented Generation feature. */
3007
+ ragConfig?: GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfigRagConfig;
3008
+ }
3009
+ interface GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfigRagConfig {
3010
+ /** If true, enable Retrieval Augmented Generation in ChatCompletion request. Once enabled, the endpoint will be identified as GenAI endpoint and Arthedain router will be used. */
3011
+ enableRag?: boolean;
3012
+ }
2983
3013
  interface GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest {
2984
3014
  /** Required. The VM identity token (a JWT) for authenticating the VM. https://cloud.google.com/compute/docs/instances/verifying-instance-identity */
2985
3015
  vmToken?: string;
@@ -3015,10 +3045,14 @@ declare namespace gapi.client {
3015
3045
  interface GoogleCloudAiplatformV1beta1GenerateContentResponse {
3016
3046
  /** Output only. Generated candidates. */
3017
3047
  candidates?: GoogleCloudAiplatformV1beta1Candidate[];
3048
+ /** Output only. Timestamp when the request is made to the server. */
3049
+ createTime?: string;
3018
3050
  /** Output only. The model version used to generate the response. */
3019
3051
  modelVersion?: string;
3020
3052
  /** Output only. Content filter results for a prompt sent in the request. Note: Sent only in the first stream chunk. Only happens when no candidates were generated due to content violations. */
3021
3053
  promptFeedback?: GoogleCloudAiplatformV1beta1GenerateContentResponsePromptFeedback;
3054
+ /** Output only. response_id is used to identify each response. It is the encoding of the event_id. */
3055
+ responseId?: string;
3022
3056
  /** Usage metadata about the response(s). */
3023
3057
  usageMetadata?: GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata;
3024
3058
  }
@@ -3033,10 +3067,16 @@ declare namespace gapi.client {
3033
3067
  interface GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata {
3034
3068
  /** Output only. Number of tokens in the cached part in the input (the cached content). */
3035
3069
  cachedContentTokenCount?: number;
3070
+ /** Output only. List of modalities of the cached content in the request input. */
3071
+ cacheTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
3036
3072
  /** Number of tokens in the response(s). */
3037
3073
  candidatesTokenCount?: number;
3074
+ /** Output only. List of modalities that were returned in the response. */
3075
+ candidatesTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
3038
3076
  /** Number of tokens in the request. When `cached_content` is set, this is still the total effective prompt size meaning this includes the number of tokens in the cached content. */
3039
3077
  promptTokenCount?: number;
3078
+ /** Output only. List of modalities that were processed in the request input. */
3079
+ promptTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
3040
3080
  /** Total token count for prompt and response candidates. */
3041
3081
  totalTokenCount?: number;
3042
3082
  }
@@ -3081,6 +3121,8 @@ declare namespace gapi.client {
3081
3121
  stopSequences?: string[];
3082
3122
  /** Optional. Controls the randomness of predictions. */
3083
3123
  temperature?: number;
3124
+ /** Optional. Config for thinking features. An error will be returned if this field is set for models that don't support thinking. */
3125
+ thinkingConfig?: GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig;
3084
3126
  /** Optional. If specified, top-k sampling will be used. */
3085
3127
  topK?: number;
3086
3128
  /** Optional. If specified, nucleus sampling will be used. */
@@ -3100,6 +3142,10 @@ declare namespace gapi.client {
3100
3142
  /** The model name to use. Only the public LLM models are accepted. e.g. 'gemini-1.5-pro-001'. */
3101
3143
  modelName?: string;
3102
3144
  }
3145
+ interface GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig {
3146
+ /** Optional. Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. */
3147
+ includeThoughts?: boolean;
3148
+ }
3103
3149
  interface GoogleCloudAiplatformV1beta1GenericOperationMetadata {
3104
3150
  /** Output only. Time when the operation was created. */
3105
3151
  createTime?: string;
@@ -3742,6 +3788,12 @@ declare namespace gapi.client {
3742
3788
  /** A token to retrieve next page of results. Pass to ListModelsRequest.page_token to obtain that page. */
3743
3789
  nextPageToken?: string;
3744
3790
  }
3791
+ interface GoogleCloudAiplatformV1beta1ListModelVersionCheckpointsResponse {
3792
+ /** List of Model Version checkpoints. */
3793
+ checkpoints?: GoogleCloudAiplatformV1beta1ModelVersionCheckpoint[];
3794
+ /** A token to retrieve the next page of results. Pass to ListModelVersionCheckpointsRequest.page_token to obtain that page. */
3795
+ nextPageToken?: string;
3796
+ }
3745
3797
  interface GoogleCloudAiplatformV1beta1ListModelVersionsResponse {
3746
3798
  /** List of Model versions in the requested page. In the returned Model name field, version ID instead of regvision tag will be included. */
3747
3799
  models?: GoogleCloudAiplatformV1beta1Model[];
@@ -3913,6 +3965,8 @@ declare namespace gapi.client {
3913
3965
  acceleratorType?: string;
3914
3966
  /** Immutable. The type of the machine. See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types) See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types). For DeployedModel this field is optional, and the default value is `n1-standard-2`. For BatchPredictionJob or as part of WorkerPoolSpec this field is required. */
3915
3967
  machineType?: string;
3968
+ /** Optional. Immutable. The number of nodes per replica for multihost GPU deployments. */
3969
+ multihostGpuNodeCount?: number;
3916
3970
  /** Optional. Immutable. Configuration controlling how this resource pool consumes reservation. */
3917
3971
  reservationAffinity?: GoogleCloudAiplatformV1beta1ReservationAffinity;
3918
3972
  /** Immutable. The topology of the TPUs. Corresponds to the TPU topologies available from GKE. (Example: tpu_topology: "2x2x1"). */
@@ -4100,6 +4154,12 @@ declare namespace gapi.client {
4100
4154
  /** Migrated Model's resource name. */
4101
4155
  model?: string;
4102
4156
  }
4157
+ interface GoogleCloudAiplatformV1beta1ModalityTokenCount {
4158
+ /** The modality associated with this token count. */
4159
+ modality?: string;
4160
+ /** Number of tokens. */
4161
+ tokenCount?: number;
4162
+ }
4103
4163
  interface GoogleCloudAiplatformV1beta1Model {
4104
4164
  /** Immutable. The path to the directory containing the Model artifact and any of its supporting files. Not required for AutoML Models. */
4105
4165
  artifactUri?: string;
@@ -4109,6 +4169,8 @@ declare namespace gapi.client {
4109
4169
  containerSpec?: GoogleCloudAiplatformV1beta1ModelContainerSpec;
4110
4170
  /** Output only. Timestamp when this Model was uploaded into Vertex AI. */
4111
4171
  createTime?: string;
4172
+ /** The default checkpoint id of a model version. */
4173
+ defaultCheckpointId?: string;
4112
4174
  /** Output only. The pointers to DeployedModels created from this Model. Note that Model could have been deployed to Endpoints in different Locations. */
4113
4175
  deployedModels?: GoogleCloudAiplatformV1beta1DeployedModelRef[];
4114
4176
  /** The description of the Model. */
@@ -4367,12 +4429,16 @@ declare namespace gapi.client {
4367
4429
  interface GoogleCloudAiplatformV1beta1ModelExportFormat {
4368
4430
  /** Output only. The content of this Model that may be exported. */
4369
4431
  exportableContents?: string[];
4370
- /** 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. */
4432
+ /** 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. */
4371
4433
  id?: string;
4372
4434
  }
4373
4435
  interface GoogleCloudAiplatformV1beta1ModelGardenSource {
4374
4436
  /** Required. The model garden source model resource name. */
4375
4437
  publicModelName?: string;
4438
+ /** Optional. Whether to avoid pulling the model from the HF cache. */
4439
+ skipHfModelCache?: boolean;
4440
+ /** Optional. The model garden source model version ID. */
4441
+ versionId?: string;
4376
4442
  }
4377
4443
  interface GoogleCloudAiplatformV1beta1ModelMonitor {
4378
4444
  /** Output only. Timestamp when this ModelMonitor was created. */
@@ -4776,6 +4842,14 @@ declare namespace gapi.client {
4776
4842
  /** Type of the model source. */
4777
4843
  sourceType?: string;
4778
4844
  }
4845
+ interface GoogleCloudAiplatformV1beta1ModelVersionCheckpoint {
4846
+ /** The ID of the checkpoint. */
4847
+ checkpointId?: string;
4848
+ /** The epoch of the checkpoint. */
4849
+ epoch?: string;
4850
+ /** The step of the checkpoint. */
4851
+ step?: string;
4852
+ }
4779
4853
  interface GoogleCloudAiplatformV1beta1MutateDeployedIndexOperationMetadata {
4780
4854
  /** The unique index id specified by user */
4781
4855
  deployedIndexId?: string;
@@ -5146,6 +5220,8 @@ declare namespace gapi.client {
5146
5220
  serviceAccount?: string;
5147
5221
  /** Output only. Runtime Shielded VM spec. */
5148
5222
  shieldedVmConfig?: GoogleCloudAiplatformV1beta1ShieldedVmConfig;
5223
+ /** Output only. Software config of the notebook runtime. */
5224
+ softwareConfig?: GoogleCloudAiplatformV1beta1NotebookSoftwareConfig;
5149
5225
  /** Output only. Timestamp when this NotebookRuntime was most recently updated. */
5150
5226
  updateTime?: string;
5151
5227
  /** Output only. The VM os image version of NotebookRuntime. */
@@ -5186,6 +5262,8 @@ declare namespace gapi.client {
5186
5262
  serviceAccount?: string;
5187
5263
  /** Optional. Immutable. Runtime Shielded VM spec. */
5188
5264
  shieldedVmConfig?: GoogleCloudAiplatformV1beta1ShieldedVmConfig;
5265
+ /** Optional. The notebook software configuration of the notebook runtime. */
5266
+ softwareConfig?: GoogleCloudAiplatformV1beta1NotebookSoftwareConfig;
5189
5267
  /** Output only. Timestamp when this NotebookRuntimeTemplate was most recently updated. */
5190
5268
  updateTime?: string;
5191
5269
  }
@@ -5193,6 +5271,12 @@ declare namespace gapi.client {
5193
5271
  /** Immutable. A resource name of the NotebookRuntimeTemplate. */
5194
5272
  notebookRuntimeTemplate?: string;
5195
5273
  }
5274
+ interface GoogleCloudAiplatformV1beta1NotebookSoftwareConfig {
5275
+ /** Optional. Environment variables to be passed to the container. Maximum limit is 100. */
5276
+ env?: GoogleCloudAiplatformV1beta1EnvVar[];
5277
+ /** Optional. Post startup script config. */
5278
+ postStartupScriptConfig?: GoogleCloudAiplatformV1beta1PostStartupScriptConfig;
5279
+ }
5196
5280
  interface GoogleCloudAiplatformV1beta1PairwiseMetricInput {
5197
5281
  /** Required. Pairwise metric instance. */
5198
5282
  instance?: GoogleCloudAiplatformV1beta1PairwiseMetricInstance;
@@ -5210,8 +5294,14 @@ declare namespace gapi.client {
5210
5294
  pairwiseChoice?: string;
5211
5295
  }
5212
5296
  interface GoogleCloudAiplatformV1beta1PairwiseMetricSpec {
5297
+ /** Optional. The field name of the baseline response. */
5298
+ baselineResponseFieldName?: string;
5299
+ /** Optional. The field name of the candidate response. */
5300
+ candidateResponseFieldName?: string;
5213
5301
  /** Required. Metric prompt template for pairwise metric. */
5214
5302
  metricPromptTemplate?: string;
5303
+ /** Optional. System instructions for pairwise metric. */
5304
+ systemInstruction?: string;
5215
5305
  }
5216
5306
  interface GoogleCloudAiplatformV1beta1PairwiseQuestionAnsweringQualityInput {
5217
5307
  /** Required. Pairwise question answering quality instance. */
@@ -5554,11 +5644,21 @@ declare namespace gapi.client {
5554
5644
  interface GoogleCloudAiplatformV1beta1PointwiseMetricSpec {
5555
5645
  /** Required. Metric prompt template for pointwise metric. */
5556
5646
  metricPromptTemplate?: string;
5647
+ /** Optional. System instructions for pointwise metric. */
5648
+ systemInstruction?: string;
5557
5649
  }
5558
5650
  interface GoogleCloudAiplatformV1beta1Port {
5559
5651
  /** The number of the port to expose on the pod's IP address. Must be a valid port number, between 1 and 65535 inclusive. */
5560
5652
  containerPort?: number;
5561
5653
  }
5654
+ interface GoogleCloudAiplatformV1beta1PostStartupScriptConfig {
5655
+ /** Optional. Post startup script to run after runtime is started. */
5656
+ postStartupScript?: string;
5657
+ /** Optional. Post startup script behavior that defines download and execution behavior. */
5658
+ postStartupScriptBehavior?: string;
5659
+ /** Optional. Post startup script url to download. Example: https://bucket/script.sh */
5660
+ postStartupScriptUrl?: string;
5661
+ }
5562
5662
  interface GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig {
5563
5663
  /** The name of the preset voice to use. */
5564
5664
  voiceName?: string;
@@ -5643,12 +5743,18 @@ declare namespace gapi.client {
5643
5743
  interface GoogleCloudAiplatformV1beta1Probe {
5644
5744
  /** ExecAction probes the health of a container by executing a command. */
5645
5745
  exec?: GoogleCloudAiplatformV1beta1ProbeExecAction;
5746
+ /** Number of consecutive failures before the probe is considered failed. Defaults to 3. Minimum value is 1. Maps to Kubernetes probe argument 'failureThreshold'. */
5747
+ failureThreshold?: number;
5646
5748
  /** GrpcAction probes the health of a container by sending a gRPC request. */
5647
5749
  grpc?: GoogleCloudAiplatformV1beta1ProbeGrpcAction;
5648
5750
  /** HttpGetAction probes the health of a container by sending an HTTP GET request. */
5649
5751
  httpGet?: GoogleCloudAiplatformV1beta1ProbeHttpGetAction;
5752
+ /** Number of seconds to wait before starting the probe. Defaults to 0. Minimum value is 0. Maps to Kubernetes probe argument 'initialDelaySeconds'. */
5753
+ initialDelaySeconds?: number;
5650
5754
  /** 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'. */
5651
5755
  periodSeconds?: number;
5756
+ /** Number of consecutive successes before the probe is considered successful. Defaults to 1. Minimum value is 1. Maps to Kubernetes probe argument 'successThreshold'. */
5757
+ successThreshold?: number;
5652
5758
  /** TcpSocketAction probes the health of a container by opening a TCP socket connection. */
5653
5759
  tcpSocket?: GoogleCloudAiplatformV1beta1ProbeTcpSocketAction;
5654
5760
  /** 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'. */
@@ -6089,6 +6195,8 @@ declare namespace gapi.client {
6089
6195
  name?: string;
6090
6196
  /** Optional. Immutable. The embedding model config of the RagCorpus. */
6091
6197
  ragEmbeddingModelConfig?: GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig;
6198
+ /** Output only. Number of RagFiles in the RagCorpus. */
6199
+ ragFilesCount?: number;
6092
6200
  /** Optional. Immutable. The Vector DB config of the RagCorpus. */
6093
6201
  ragVectorDbConfig?: GoogleCloudAiplatformV1beta1RagVectorDbConfig;
6094
6202
  /** Output only. Timestamp when this RagCorpus was last updated. */
@@ -6199,7 +6307,7 @@ declare namespace gapi.client {
6199
6307
  customParsingPrompt?: string;
6200
6308
  /** The maximum number of requests the job is allowed to make to the LLM model per minute. Consult https://cloud.google.com/vertex-ai/generative-ai/docs/quotas and your document size to set an appropriate value here. If unspecified, a default value of 5000 QPM would be used. */
6201
6309
  maxParsingRequestsPerMin?: number;
6202
- /** The name of a LLM model used for parsing. Format: `gemini-1.5-pro-002` */
6310
+ /** The name of a LLM model used for parsing. Format: * `projects/{project_id}/locations/{location}/publishers/{publisher}/models/{model}` */
6203
6311
  modelName?: string;
6204
6312
  }
6205
6313
  interface GoogleCloudAiplatformV1beta1RagFileTransformationConfig {
@@ -6570,6 +6678,20 @@ declare namespace gapi.client {
6570
6678
  /** The contexts of the query. */
6571
6679
  contexts?: GoogleCloudAiplatformV1beta1RagContexts;
6572
6680
  }
6681
+ interface GoogleCloudAiplatformV1beta1RolloutOptions {
6682
+ /** Percentage of allowed additional replicas. For autoscaling deployments, this refers to the target replica count. */
6683
+ maxSurgePercentage?: number;
6684
+ /** Absolute count of allowed additional replicas. */
6685
+ maxSurgeReplicas?: number;
6686
+ /** Percentage of replicas allowed to be unavailable. For autoscaling deployments, this refers to the target replica count. */
6687
+ maxUnavailablePercentage?: number;
6688
+ /** Absolute count of replicas allowed to be unavailable. */
6689
+ maxUnavailableReplicas?: number;
6690
+ /** ID of the DeployedModel that this deployment should replace. */
6691
+ previousDeployedModel?: string;
6692
+ /** 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. */
6693
+ revisionNumber?: number;
6694
+ }
6573
6695
  interface GoogleCloudAiplatformV1beta1RougeInput {
6574
6696
  /** Required. Repeated rouge instances. */
6575
6697
  instances?: GoogleCloudAiplatformV1beta1RougeInstance[];
@@ -8472,6 +8594,22 @@ declare namespace gapi.client {
8472
8594
  /** The email addresses of workers in the SpecialistPool. */
8473
8595
  specialistWorkerEmails?: string[];
8474
8596
  }
8597
+ interface GoogleCloudAiplatformV1beta1SpeculativeDecodingSpec {
8598
+ /** draft model speculation. */
8599
+ draftModelSpeculation?: GoogleCloudAiplatformV1beta1SpeculativeDecodingSpecDraftModelSpeculation;
8600
+ /** N-Gram speculation. */
8601
+ ngramSpeculation?: GoogleCloudAiplatformV1beta1SpeculativeDecodingSpecNgramSpeculation;
8602
+ /** The number of speculative tokens to generate at each step. */
8603
+ speculativeTokenCount?: number;
8604
+ }
8605
+ interface GoogleCloudAiplatformV1beta1SpeculativeDecodingSpecDraftModelSpeculation {
8606
+ /** Required. The resource name of the draft model. */
8607
+ draftModel?: string;
8608
+ }
8609
+ interface GoogleCloudAiplatformV1beta1SpeculativeDecodingSpecNgramSpeculation {
8610
+ /** The number of last N input tokens used as ngram to search/match against the previous prompt sequence. This is equal to the N in N-Gram. The default value is 3 if not specified. */
8611
+ ngramSize?: number;
8612
+ }
8475
8613
  interface GoogleCloudAiplatformV1beta1SpeechConfig {
8476
8614
  /** The configuration for the speaker to use. */
8477
8615
  voiceConfig?: GoogleCloudAiplatformV1beta1VoiceConfig;
@@ -9498,7 +9636,7 @@ declare namespace gapi.client {
9498
9636
  state?: string;
9499
9637
  /** Tuning Spec for Supervised Fine Tuning. */
9500
9638
  supervisedTuningSpec?: GoogleCloudAiplatformV1beta1SupervisedTuningSpec;
9501
- /** Output only. The tuned model resources assiociated with this TuningJob. */
9639
+ /** Output only. The tuned model resources associated with this TuningJob. */
9502
9640
  tunedModel?: GoogleCloudAiplatformV1beta1TunedModel;
9503
9641
  /** Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
9504
9642
  tunedModelDisplayName?: string;
@@ -9941,7 +10079,7 @@ declare namespace gapi.client {
9941
10079
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9942
10080
  uploadType?: string;
9943
10081
  },
9944
- body: GoogleCloudAiplatformV1beta1DatasetVersion
10082
+ body: GoogleCloudAiplatformV1beta1DatasetVersion,
9945
10083
  ): Request<GoogleLongrunningOperation>;
9946
10084
  /** Deletes a Dataset version. */
9947
10085
  delete(request?: {
@@ -10096,7 +10234,7 @@ declare namespace gapi.client {
10096
10234
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10097
10235
  uploadType?: string;
10098
10236
  },
10099
- body: GoogleCloudAiplatformV1beta1DatasetVersion
10237
+ body: GoogleCloudAiplatformV1beta1DatasetVersion,
10100
10238
  ): Request<GoogleCloudAiplatformV1beta1DatasetVersion>;
10101
10239
  /** Restores a dataset version. */
10102
10240
  restore(request?: {
@@ -10183,7 +10321,7 @@ declare namespace gapi.client {
10183
10321
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10184
10322
  uploadType?: string;
10185
10323
  },
10186
- body: GoogleCloudAiplatformV1beta1Dataset
10324
+ body: GoogleCloudAiplatformV1beta1Dataset,
10187
10325
  ): Request<GoogleLongrunningOperation>;
10188
10326
  /** Deletes a Dataset. */
10189
10327
  delete(request?: {
@@ -10338,7 +10476,7 @@ declare namespace gapi.client {
10338
10476
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10339
10477
  uploadType?: string;
10340
10478
  },
10341
- body: GoogleCloudAiplatformV1beta1Dataset
10479
+ body: GoogleCloudAiplatformV1beta1Dataset,
10342
10480
  ): Request<GoogleCloudAiplatformV1beta1Dataset>;
10343
10481
  datasetVersions: DatasetVersionsResource;
10344
10482
  }
@@ -10399,7 +10537,7 @@ declare namespace gapi.client {
10399
10537
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10400
10538
  uploadType?: string;
10401
10539
  },
10402
- body: GoogleCloudAiplatformV1beta1ComputeTokensRequest
10540
+ body: GoogleCloudAiplatformV1beta1ComputeTokensRequest,
10403
10541
  ): Request<GoogleCloudAiplatformV1beta1ComputeTokensResponse>;
10404
10542
  /** Perform a token counting. */
10405
10543
  countTokens(request: {
@@ -10457,7 +10595,7 @@ declare namespace gapi.client {
10457
10595
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10458
10596
  uploadType?: string;
10459
10597
  },
10460
- body: GoogleCloudAiplatformV1beta1CountTokensRequest
10598
+ body: GoogleCloudAiplatformV1beta1CountTokensRequest,
10461
10599
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
10462
10600
  /** Generate content with multimodal inputs. */
10463
10601
  generateContent(request: {
@@ -10515,8 +10653,66 @@ declare namespace gapi.client {
10515
10653
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10516
10654
  uploadType?: string;
10517
10655
  },
10518
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
10656
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
10519
10657
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
10658
+ /** Perform an online prediction. */
10659
+ predict(request: {
10660
+ /** V1 error format. */
10661
+ '$.xgafv'?: string;
10662
+ /** OAuth access token. */
10663
+ access_token?: string;
10664
+ /** Data format for response. */
10665
+ alt?: string;
10666
+ /** JSONP */
10667
+ callback?: string;
10668
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
10669
+ endpoint: string;
10670
+ /** Selector specifying which fields to include in a partial response. */
10671
+ fields?: string;
10672
+ /** 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. */
10673
+ key?: string;
10674
+ /** OAuth 2.0 token for the current user. */
10675
+ oauth_token?: string;
10676
+ /** Returns response with indentations and line breaks. */
10677
+ prettyPrint?: boolean;
10678
+ /** 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. */
10679
+ quotaUser?: string;
10680
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
10681
+ upload_protocol?: string;
10682
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10683
+ uploadType?: string;
10684
+ /** Request body */
10685
+ resource: GoogleCloudAiplatformV1beta1PredictRequest;
10686
+ }): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
10687
+ predict(
10688
+ request: {
10689
+ /** V1 error format. */
10690
+ '$.xgafv'?: string;
10691
+ /** OAuth access token. */
10692
+ access_token?: string;
10693
+ /** Data format for response. */
10694
+ alt?: string;
10695
+ /** JSONP */
10696
+ callback?: string;
10697
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
10698
+ endpoint: string;
10699
+ /** Selector specifying which fields to include in a partial response. */
10700
+ fields?: string;
10701
+ /** 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. */
10702
+ key?: string;
10703
+ /** OAuth 2.0 token for the current user. */
10704
+ oauth_token?: string;
10705
+ /** Returns response with indentations and line breaks. */
10706
+ prettyPrint?: boolean;
10707
+ /** 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. */
10708
+ quotaUser?: string;
10709
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
10710
+ upload_protocol?: string;
10711
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10712
+ uploadType?: string;
10713
+ },
10714
+ body: GoogleCloudAiplatformV1beta1PredictRequest,
10715
+ ): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
10520
10716
  /** Generate content with multimodal inputs with streaming support. */
10521
10717
  streamGenerateContent(request: {
10522
10718
  /** V1 error format. */
@@ -10573,7 +10769,7 @@ declare namespace gapi.client {
10573
10769
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10574
10770
  uploadType?: string;
10575
10771
  },
10576
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
10772
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
10577
10773
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
10578
10774
  }
10579
10775
  interface MediaResource {
@@ -10633,7 +10829,7 @@ declare namespace gapi.client {
10633
10829
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10634
10830
  uploadType?: string;
10635
10831
  },
10636
- body: GoogleCloudAiplatformV1beta1UploadRagFileRequest
10832
+ body: GoogleCloudAiplatformV1beta1UploadRagFileRequest,
10637
10833
  ): Request<GoogleCloudAiplatformV1beta1UploadRagFileResponse>;
10638
10834
  }
10639
10835
  interface OperationsResource {
@@ -10989,7 +11185,7 @@ declare namespace gapi.client {
10989
11185
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10990
11186
  uploadType?: string;
10991
11187
  },
10992
- body: GoogleCloudAiplatformV1beta1CancelBatchPredictionJobRequest
11188
+ body: GoogleCloudAiplatformV1beta1CancelBatchPredictionJobRequest,
10993
11189
  ): Request<{}>;
10994
11190
  /** Creates a BatchPredictionJob. A BatchPredictionJob once created will right away be attempted to start. */
10995
11191
  create(request: {
@@ -11047,7 +11243,7 @@ declare namespace gapi.client {
11047
11243
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11048
11244
  uploadType?: string;
11049
11245
  },
11050
- body: GoogleCloudAiplatformV1beta1BatchPredictionJob
11246
+ body: GoogleCloudAiplatformV1beta1BatchPredictionJob,
11051
11247
  ): Request<GoogleCloudAiplatformV1beta1BatchPredictionJob>;
11052
11248
  /** Deletes a BatchPredictionJob. Can only be called on jobs that already finished. */
11053
11249
  delete(request?: {
@@ -11196,7 +11392,7 @@ declare namespace gapi.client {
11196
11392
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11197
11393
  uploadType?: string;
11198
11394
  },
11199
- body: GoogleCloudAiplatformV1beta1CachedContent
11395
+ body: GoogleCloudAiplatformV1beta1CachedContent,
11200
11396
  ): Request<GoogleCloudAiplatformV1beta1CachedContent>;
11201
11397
  /** Deletes cached content */
11202
11398
  delete(request?: {
@@ -11343,7 +11539,7 @@ declare namespace gapi.client {
11343
11539
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11344
11540
  uploadType?: string;
11345
11541
  },
11346
- body: GoogleCloudAiplatformV1beta1CachedContent
11542
+ body: GoogleCloudAiplatformV1beta1CachedContent,
11347
11543
  ): Request<GoogleCloudAiplatformV1beta1CachedContent>;
11348
11544
  }
11349
11545
  interface OperationsResource {
@@ -11548,7 +11744,7 @@ declare namespace gapi.client {
11548
11744
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11549
11745
  uploadType?: string;
11550
11746
  },
11551
- body: GoogleCloudAiplatformV1beta1CancelCustomJobRequest
11747
+ body: GoogleCloudAiplatformV1beta1CancelCustomJobRequest,
11552
11748
  ): Request<{}>;
11553
11749
  /** Creates a CustomJob. A created CustomJob right away will be attempted to be run. */
11554
11750
  create(request: {
@@ -11606,7 +11802,7 @@ declare namespace gapi.client {
11606
11802
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11607
11803
  uploadType?: string;
11608
11804
  },
11609
- body: GoogleCloudAiplatformV1beta1CustomJob
11805
+ body: GoogleCloudAiplatformV1beta1CustomJob,
11610
11806
  ): Request<GoogleCloudAiplatformV1beta1CustomJob>;
11611
11807
  /** Deletes a CustomJob. */
11612
11808
  delete(request?: {
@@ -11901,7 +12097,7 @@ declare namespace gapi.client {
11901
12097
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11902
12098
  uploadType?: string;
11903
12099
  },
11904
- body: GoogleCloudAiplatformV1beta1CancelDataLabelingJobRequest
12100
+ body: GoogleCloudAiplatformV1beta1CancelDataLabelingJobRequest,
11905
12101
  ): Request<{}>;
11906
12102
  /** Creates a DataLabelingJob. */
11907
12103
  create(request: {
@@ -11959,7 +12155,7 @@ declare namespace gapi.client {
11959
12155
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11960
12156
  uploadType?: string;
11961
12157
  },
11962
- body: GoogleCloudAiplatformV1beta1DataLabelingJob
12158
+ body: GoogleCloudAiplatformV1beta1DataLabelingJob,
11963
12159
  ): Request<GoogleCloudAiplatformV1beta1DataLabelingJob>;
11964
12160
  /** Deletes a DataLabelingJob. */
11965
12161
  delete(request?: {
@@ -12659,7 +12855,7 @@ declare namespace gapi.client {
12659
12855
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12660
12856
  uploadType?: string;
12661
12857
  },
12662
- body: GoogleCloudAiplatformV1beta1DatasetVersion
12858
+ body: GoogleCloudAiplatformV1beta1DatasetVersion,
12663
12859
  ): Request<GoogleLongrunningOperation>;
12664
12860
  /** Deletes a Dataset version. */
12665
12861
  delete(request?: {
@@ -12814,7 +13010,7 @@ declare namespace gapi.client {
12814
13010
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12815
13011
  uploadType?: string;
12816
13012
  },
12817
- body: GoogleCloudAiplatformV1beta1DatasetVersion
13013
+ body: GoogleCloudAiplatformV1beta1DatasetVersion,
12818
13014
  ): Request<GoogleCloudAiplatformV1beta1DatasetVersion>;
12819
13015
  /** Restores a dataset version. */
12820
13016
  restore(request?: {
@@ -13258,7 +13454,7 @@ declare namespace gapi.client {
13258
13454
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13259
13455
  uploadType?: string;
13260
13456
  },
13261
- body: GoogleCloudAiplatformV1beta1Dataset
13457
+ body: GoogleCloudAiplatformV1beta1Dataset,
13262
13458
  ): Request<GoogleLongrunningOperation>;
13263
13459
  /** Deletes a Dataset. */
13264
13460
  delete(request?: {
@@ -13343,7 +13539,7 @@ declare namespace gapi.client {
13343
13539
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13344
13540
  uploadType?: string;
13345
13541
  },
13346
- body: GoogleCloudAiplatformV1beta1ExportDataRequest
13542
+ body: GoogleCloudAiplatformV1beta1ExportDataRequest,
13347
13543
  ): Request<GoogleLongrunningOperation>;
13348
13544
  /** Gets a Dataset. */
13349
13545
  get(request?: {
@@ -13430,7 +13626,7 @@ declare namespace gapi.client {
13430
13626
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13431
13627
  uploadType?: string;
13432
13628
  },
13433
- body: GoogleCloudAiplatformV1beta1ImportDataRequest
13629
+ body: GoogleCloudAiplatformV1beta1ImportDataRequest,
13434
13630
  ): Request<GoogleLongrunningOperation>;
13435
13631
  /** Lists Datasets in a Location. */
13436
13632
  list(request?: {
@@ -13529,7 +13725,7 @@ declare namespace gapi.client {
13529
13725
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13530
13726
  uploadType?: string;
13531
13727
  },
13532
- body: GoogleCloudAiplatformV1beta1Dataset
13728
+ body: GoogleCloudAiplatformV1beta1Dataset,
13533
13729
  ): Request<GoogleCloudAiplatformV1beta1Dataset>;
13534
13730
  /** Searches DataItems in a Dataset. */
13535
13731
  searchDataItems(request?: {
@@ -13792,7 +13988,7 @@ declare namespace gapi.client {
13792
13988
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13793
13989
  uploadType?: string;
13794
13990
  },
13795
- body: GoogleCloudAiplatformV1beta1CreateDeploymentResourcePoolRequest
13991
+ body: GoogleCloudAiplatformV1beta1CreateDeploymentResourcePoolRequest,
13796
13992
  ): Request<GoogleLongrunningOperation>;
13797
13993
  /** Delete a DeploymentResourcePool. */
13798
13994
  delete(request?: {
@@ -13939,7 +14135,7 @@ declare namespace gapi.client {
13939
14135
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13940
14136
  uploadType?: string;
13941
14137
  },
13942
- body: GoogleCloudAiplatformV1beta1DeploymentResourcePool
14138
+ body: GoogleCloudAiplatformV1beta1DeploymentResourcePool,
13943
14139
  ): Request<GoogleLongrunningOperation>;
13944
14140
  /** List DeployedModels that have been deployed on this DeploymentResourcePool. */
13945
14141
  queryDeployedModels(request?: {
@@ -14179,7 +14375,7 @@ declare namespace gapi.client {
14179
14375
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14180
14376
  uploadType?: string;
14181
14377
  },
14182
- body: GoogleApiHttpBody
14378
+ body: GoogleApiHttpBody,
14183
14379
  ): Request<GoogleApiHttpBody>;
14184
14380
  }
14185
14381
  interface OperationsResource {
@@ -14384,7 +14580,7 @@ declare namespace gapi.client {
14384
14580
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14385
14581
  uploadType?: string;
14386
14582
  },
14387
- body: GoogleCloudAiplatformV1beta1ComputeTokensRequest
14583
+ body: GoogleCloudAiplatformV1beta1ComputeTokensRequest,
14388
14584
  ): Request<GoogleCloudAiplatformV1beta1ComputeTokensResponse>;
14389
14585
  /** Perform a token counting. */
14390
14586
  countTokens(request: {
@@ -14442,7 +14638,7 @@ declare namespace gapi.client {
14442
14638
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14443
14639
  uploadType?: string;
14444
14640
  },
14445
- body: GoogleCloudAiplatformV1beta1CountTokensRequest
14641
+ body: GoogleCloudAiplatformV1beta1CountTokensRequest,
14446
14642
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
14447
14643
  /** Creates an Endpoint. */
14448
14644
  create(request: {
@@ -14504,7 +14700,7 @@ declare namespace gapi.client {
14504
14700
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14505
14701
  uploadType?: string;
14506
14702
  },
14507
- body: GoogleCloudAiplatformV1beta1Endpoint
14703
+ body: GoogleCloudAiplatformV1beta1Endpoint,
14508
14704
  ): Request<GoogleLongrunningOperation>;
14509
14705
  /** Deletes an Endpoint. */
14510
14706
  delete(request?: {
@@ -14589,7 +14785,7 @@ declare namespace gapi.client {
14589
14785
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14590
14786
  uploadType?: string;
14591
14787
  },
14592
- body: GoogleCloudAiplatformV1beta1DeployModelRequest
14788
+ body: GoogleCloudAiplatformV1beta1DeployModelRequest,
14593
14789
  ): Request<GoogleLongrunningOperation>;
14594
14790
  /** Perform an unary online prediction request to a gRPC model server for Vertex first-party products and frameworks. */
14595
14791
  directPredict(request: {
@@ -14647,7 +14843,7 @@ declare namespace gapi.client {
14647
14843
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14648
14844
  uploadType?: string;
14649
14845
  },
14650
- body: GoogleCloudAiplatformV1beta1DirectPredictRequest
14846
+ body: GoogleCloudAiplatformV1beta1DirectPredictRequest,
14651
14847
  ): Request<GoogleCloudAiplatformV1beta1DirectPredictResponse>;
14652
14848
  /** Perform an unary online prediction request to a gRPC model server for custom containers. */
14653
14849
  directRawPredict(request: {
@@ -14705,7 +14901,7 @@ declare namespace gapi.client {
14705
14901
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14706
14902
  uploadType?: string;
14707
14903
  },
14708
- body: GoogleCloudAiplatformV1beta1DirectRawPredictRequest
14904
+ body: GoogleCloudAiplatformV1beta1DirectRawPredictRequest,
14709
14905
  ): Request<GoogleCloudAiplatformV1beta1DirectRawPredictResponse>;
14710
14906
  /** Perform an online explanation. If deployed_model_id is specified, the corresponding DeployModel must have explanation_spec populated. If deployed_model_id is not specified, all DeployedModels must have explanation_spec populated. */
14711
14907
  explain(request: {
@@ -14763,7 +14959,7 @@ declare namespace gapi.client {
14763
14959
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14764
14960
  uploadType?: string;
14765
14961
  },
14766
- body: GoogleCloudAiplatformV1beta1ExplainRequest
14962
+ body: GoogleCloudAiplatformV1beta1ExplainRequest,
14767
14963
  ): Request<GoogleCloudAiplatformV1beta1ExplainResponse>;
14768
14964
  /** Fetch an asynchronous online prediction operation. */
14769
14965
  fetchPredictOperation(request: {
@@ -14821,7 +15017,7 @@ declare namespace gapi.client {
14821
15017
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14822
15018
  uploadType?: string;
14823
15019
  },
14824
- body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest
15020
+ body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest,
14825
15021
  ): Request<GoogleLongrunningOperation>;
14826
15022
  /** Generate content with multimodal inputs. */
14827
15023
  generateContent(request: {
@@ -14879,7 +15075,7 @@ declare namespace gapi.client {
14879
15075
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14880
15076
  uploadType?: string;
14881
15077
  },
14882
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
15078
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
14883
15079
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
14884
15080
  /** Gets an Endpoint. */
14885
15081
  get(request?: {
@@ -15028,7 +15224,7 @@ declare namespace gapi.client {
15028
15224
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15029
15225
  uploadType?: string;
15030
15226
  },
15031
- body: GoogleCloudAiplatformV1beta1MutateDeployedModelRequest
15227
+ body: GoogleCloudAiplatformV1beta1MutateDeployedModelRequest,
15032
15228
  ): Request<GoogleLongrunningOperation>;
15033
15229
  /** Updates an Endpoint. */
15034
15230
  patch(request: {
@@ -15090,7 +15286,7 @@ declare namespace gapi.client {
15090
15286
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15091
15287
  uploadType?: string;
15092
15288
  },
15093
- body: GoogleCloudAiplatformV1beta1Endpoint
15289
+ body: GoogleCloudAiplatformV1beta1Endpoint,
15094
15290
  ): Request<GoogleCloudAiplatformV1beta1Endpoint>;
15095
15291
  /** Perform an online prediction. */
15096
15292
  predict(request: {
@@ -15148,7 +15344,7 @@ declare namespace gapi.client {
15148
15344
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15149
15345
  uploadType?: string;
15150
15346
  },
15151
- body: GoogleCloudAiplatformV1beta1PredictRequest
15347
+ body: GoogleCloudAiplatformV1beta1PredictRequest,
15152
15348
  ): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
15153
15349
  predictLongRunning(request: {
15154
15350
  /** V1 error format. */
@@ -15205,7 +15401,7 @@ declare namespace gapi.client {
15205
15401
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15206
15402
  uploadType?: string;
15207
15403
  },
15208
- body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest
15404
+ body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest,
15209
15405
  ): Request<GoogleLongrunningOperation>;
15210
15406
  /** Perform an online prediction with an arbitrary HTTP payload. The response includes the following HTTP headers: * `X-Vertex-AI-Endpoint-Id`: ID of the Endpoint that served this prediction. * `X-Vertex-AI-Deployed-Model-Id`: ID of the Endpoint's DeployedModel that served this prediction. */
15211
15407
  rawPredict(request: {
@@ -15263,7 +15459,7 @@ declare namespace gapi.client {
15263
15459
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15264
15460
  uploadType?: string;
15265
15461
  },
15266
- body: GoogleCloudAiplatformV1beta1RawPredictRequest
15462
+ body: GoogleCloudAiplatformV1beta1RawPredictRequest,
15267
15463
  ): Request<GoogleApiHttpBody>;
15268
15464
  /** Perform a server-side streaming online prediction request for Vertex LLM streaming. */
15269
15465
  serverStreamingPredict(request: {
@@ -15321,7 +15517,7 @@ declare namespace gapi.client {
15321
15517
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15322
15518
  uploadType?: string;
15323
15519
  },
15324
- body: GoogleCloudAiplatformV1beta1StreamingPredictRequest
15520
+ body: GoogleCloudAiplatformV1beta1StreamingPredictRequest,
15325
15521
  ): Request<GoogleCloudAiplatformV1beta1StreamingPredictResponse>;
15326
15522
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
15327
15523
  setIamPolicy(
@@ -15351,7 +15547,7 @@ declare namespace gapi.client {
15351
15547
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15352
15548
  uploadType?: string;
15353
15549
  },
15354
- body: GoogleIamV1SetIamPolicyRequest
15550
+ body: GoogleIamV1SetIamPolicyRequest,
15355
15551
  ): Request<GoogleIamV1Policy>;
15356
15552
  /** Generate content with multimodal inputs with streaming support. */
15357
15553
  streamGenerateContent(request: {
@@ -15409,7 +15605,7 @@ declare namespace gapi.client {
15409
15605
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15410
15606
  uploadType?: string;
15411
15607
  },
15412
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
15608
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
15413
15609
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
15414
15610
  /** Perform a streaming online prediction with an arbitrary HTTP payload. */
15415
15611
  streamRawPredict(request: {
@@ -15467,7 +15663,7 @@ declare namespace gapi.client {
15467
15663
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15468
15664
  uploadType?: string;
15469
15665
  },
15470
- body: GoogleCloudAiplatformV1beta1StreamRawPredictRequest
15666
+ body: GoogleCloudAiplatformV1beta1StreamRawPredictRequest,
15471
15667
  ): Request<GoogleApiHttpBody>;
15472
15668
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
15473
15669
  testIamPermissions(request?: {
@@ -15554,7 +15750,7 @@ declare namespace gapi.client {
15554
15750
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15555
15751
  uploadType?: string;
15556
15752
  },
15557
- body: GoogleCloudAiplatformV1beta1UndeployModelRequest
15753
+ body: GoogleCloudAiplatformV1beta1UndeployModelRequest,
15558
15754
  ): Request<GoogleLongrunningOperation>;
15559
15755
  /** Updates an Endpoint with a long running operation. */
15560
15756
  update(request: {
@@ -15612,7 +15808,7 @@ declare namespace gapi.client {
15612
15808
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15613
15809
  uploadType?: string;
15614
15810
  },
15615
- body: GoogleCloudAiplatformV1beta1UpdateEndpointLongRunningRequest
15811
+ body: GoogleCloudAiplatformV1beta1UpdateEndpointLongRunningRequest,
15616
15812
  ): Request<GoogleLongrunningOperation>;
15617
15813
  chat: ChatResource;
15618
15814
  operations: OperationsResource;
@@ -16263,7 +16459,7 @@ declare namespace gapi.client {
16263
16459
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16264
16460
  uploadType?: string;
16265
16461
  },
16266
- body: GoogleCloudAiplatformV1beta1ExecuteExtensionRequest
16462
+ body: GoogleCloudAiplatformV1beta1ExecuteExtensionRequest,
16267
16463
  ): Request<GoogleCloudAiplatformV1beta1ExecuteExtensionResponse>;
16268
16464
  /** Gets an Extension. */
16269
16465
  get(request?: {
@@ -16348,7 +16544,7 @@ declare namespace gapi.client {
16348
16544
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16349
16545
  uploadType?: string;
16350
16546
  },
16351
- body: GoogleCloudAiplatformV1beta1Extension
16547
+ body: GoogleCloudAiplatformV1beta1Extension,
16352
16548
  ): Request<GoogleLongrunningOperation>;
16353
16549
  /** Lists Extensions in a location. */
16354
16550
  list(request?: {
@@ -16445,7 +16641,7 @@ declare namespace gapi.client {
16445
16641
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16446
16642
  uploadType?: string;
16447
16643
  },
16448
- body: GoogleCloudAiplatformV1beta1Extension
16644
+ body: GoogleCloudAiplatformV1beta1Extension,
16449
16645
  ): Request<GoogleCloudAiplatformV1beta1Extension>;
16450
16646
  /** Queries an extension with a default controller. */
16451
16647
  query(request: {
@@ -16503,7 +16699,7 @@ declare namespace gapi.client {
16503
16699
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16504
16700
  uploadType?: string;
16505
16701
  },
16506
- body: GoogleCloudAiplatformV1beta1QueryExtensionRequest
16702
+ body: GoogleCloudAiplatformV1beta1QueryExtensionRequest,
16507
16703
  ): Request<GoogleCloudAiplatformV1beta1QueryExtensionResponse>;
16508
16704
  operations: OperationsResource;
16509
16705
  }
@@ -16568,7 +16764,7 @@ declare namespace gapi.client {
16568
16764
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16569
16765
  uploadType?: string;
16570
16766
  },
16571
- body: GoogleCloudAiplatformV1beta1FeatureMonitorJob
16767
+ body: GoogleCloudAiplatformV1beta1FeatureMonitorJob,
16572
16768
  ): Request<GoogleCloudAiplatformV1beta1FeatureMonitorJob>;
16573
16769
  /** Get a feature monitor job. */
16574
16770
  get(request?: {
@@ -16812,7 +17008,7 @@ declare namespace gapi.client {
16812
17008
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16813
17009
  uploadType?: string;
16814
17010
  },
16815
- body: GoogleCloudAiplatformV1beta1FeatureMonitor
17011
+ body: GoogleCloudAiplatformV1beta1FeatureMonitor,
16816
17012
  ): Request<GoogleLongrunningOperation>;
16817
17013
  /** Deletes a single FeatureMonitor. */
16818
17014
  delete(request?: {
@@ -16903,6 +17099,68 @@ declare namespace gapi.client {
16903
17099
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16904
17100
  uploadType?: string;
16905
17101
  }): Request<GoogleCloudAiplatformV1beta1ListFeatureMonitorsResponse>;
17102
+ /** Updates the parameters of a single FeatureMonitor. */
17103
+ patch(request: {
17104
+ /** V1 error format. */
17105
+ '$.xgafv'?: string;
17106
+ /** OAuth access token. */
17107
+ access_token?: string;
17108
+ /** Data format for response. */
17109
+ alt?: string;
17110
+ /** JSONP */
17111
+ callback?: string;
17112
+ /** Selector specifying which fields to include in a partial response. */
17113
+ fields?: string;
17114
+ /** 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. */
17115
+ key?: string;
17116
+ /** Identifier. Name of the FeatureMonitor. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}/featureMonitors/{featureMonitor}` */
17117
+ name: string;
17118
+ /** OAuth 2.0 token for the current user. */
17119
+ oauth_token?: string;
17120
+ /** Returns response with indentations and line breaks. */
17121
+ prettyPrint?: boolean;
17122
+ /** 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. */
17123
+ quotaUser?: string;
17124
+ /** 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` */
17125
+ updateMask?: string;
17126
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17127
+ upload_protocol?: string;
17128
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17129
+ uploadType?: string;
17130
+ /** Request body */
17131
+ resource: GoogleCloudAiplatformV1beta1FeatureMonitor;
17132
+ }): Request<GoogleLongrunningOperation>;
17133
+ patch(
17134
+ request: {
17135
+ /** V1 error format. */
17136
+ '$.xgafv'?: string;
17137
+ /** OAuth access token. */
17138
+ access_token?: string;
17139
+ /** Data format for response. */
17140
+ alt?: string;
17141
+ /** JSONP */
17142
+ callback?: string;
17143
+ /** Selector specifying which fields to include in a partial response. */
17144
+ fields?: string;
17145
+ /** 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. */
17146
+ key?: string;
17147
+ /** Identifier. Name of the FeatureMonitor. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}/featureMonitors/{featureMonitor}` */
17148
+ name: string;
17149
+ /** OAuth 2.0 token for the current user. */
17150
+ oauth_token?: string;
17151
+ /** Returns response with indentations and line breaks. */
17152
+ prettyPrint?: boolean;
17153
+ /** 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. */
17154
+ quotaUser?: string;
17155
+ /** 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` */
17156
+ updateMask?: string;
17157
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
17158
+ upload_protocol?: string;
17159
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17160
+ uploadType?: string;
17161
+ },
17162
+ body: GoogleCloudAiplatformV1beta1FeatureMonitor,
17163
+ ): Request<GoogleLongrunningOperation>;
16906
17164
  featureMonitorJobs: FeatureMonitorJobsResource;
16907
17165
  operations: OperationsResource;
16908
17166
  }
@@ -17081,7 +17339,7 @@ declare namespace gapi.client {
17081
17339
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17082
17340
  uploadType?: string;
17083
17341
  },
17084
- body: GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest
17342
+ body: GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest,
17085
17343
  ): Request<GoogleLongrunningOperation>;
17086
17344
  /** Creates a new Feature in a given FeatureGroup. */
17087
17345
  create(request: {
@@ -17143,7 +17401,7 @@ declare namespace gapi.client {
17143
17401
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17144
17402
  uploadType?: string;
17145
17403
  },
17146
- body: GoogleCloudAiplatformV1beta1Feature
17404
+ body: GoogleCloudAiplatformV1beta1Feature,
17147
17405
  ): Request<GoogleLongrunningOperation>;
17148
17406
  /** Deletes a single Feature. */
17149
17407
  delete(request?: {
@@ -17304,7 +17562,7 @@ declare namespace gapi.client {
17304
17562
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17305
17563
  uploadType?: string;
17306
17564
  },
17307
- body: GoogleCloudAiplatformV1beta1Feature
17565
+ body: GoogleCloudAiplatformV1beta1Feature,
17308
17566
  ): Request<GoogleLongrunningOperation>;
17309
17567
  operations: OperationsResource;
17310
17568
  }
@@ -17487,7 +17745,7 @@ declare namespace gapi.client {
17487
17745
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17488
17746
  uploadType?: string;
17489
17747
  },
17490
- body: GoogleCloudAiplatformV1beta1FeatureGroup
17748
+ body: GoogleCloudAiplatformV1beta1FeatureGroup,
17491
17749
  ): Request<GoogleLongrunningOperation>;
17492
17750
  /** Deletes a single FeatureGroup. */
17493
17751
  delete(request?: {
@@ -17631,7 +17889,7 @@ declare namespace gapi.client {
17631
17889
  prettyPrint?: boolean;
17632
17890
  /** 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. */
17633
17891
  quotaUser?: string;
17634
- /** 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` */
17892
+ /** 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` */
17635
17893
  updateMask?: string;
17636
17894
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17637
17895
  upload_protocol?: string;
@@ -17662,14 +17920,14 @@ declare namespace gapi.client {
17662
17920
  prettyPrint?: boolean;
17663
17921
  /** 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. */
17664
17922
  quotaUser?: string;
17665
- /** 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` */
17923
+ /** 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` */
17666
17924
  updateMask?: string;
17667
17925
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17668
17926
  upload_protocol?: string;
17669
17927
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17670
17928
  uploadType?: string;
17671
17929
  },
17672
- body: GoogleCloudAiplatformV1beta1FeatureGroup
17930
+ body: GoogleCloudAiplatformV1beta1FeatureGroup,
17673
17931
  ): Request<GoogleLongrunningOperation>;
17674
17932
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
17675
17933
  setIamPolicy(
@@ -17699,7 +17957,7 @@ declare namespace gapi.client {
17699
17957
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17700
17958
  uploadType?: string;
17701
17959
  },
17702
- body: GoogleIamV1SetIamPolicyRequest
17960
+ body: GoogleIamV1SetIamPolicyRequest,
17703
17961
  ): Request<GoogleIamV1Policy>;
17704
17962
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
17705
17963
  testIamPermissions(request?: {
@@ -17981,7 +18239,7 @@ declare namespace gapi.client {
17981
18239
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17982
18240
  uploadType?: string;
17983
18241
  },
17984
- body: GoogleCloudAiplatformV1beta1FeatureView
18242
+ body: GoogleCloudAiplatformV1beta1FeatureView,
17985
18243
  ): Request<GoogleLongrunningOperation>;
17986
18244
  /** Deletes a single FeatureView. */
17987
18245
  delete(request?: {
@@ -18066,7 +18324,7 @@ declare namespace gapi.client {
18066
18324
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18067
18325
  uploadType?: string;
18068
18326
  },
18069
- body: GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest
18327
+ body: GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest,
18070
18328
  ): Request<GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse>;
18071
18329
  /** Gets details of a single FeatureView. */
18072
18330
  get(request?: {
@@ -18219,7 +18477,7 @@ declare namespace gapi.client {
18219
18477
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18220
18478
  uploadType?: string;
18221
18479
  },
18222
- body: GoogleCloudAiplatformV1beta1FeatureView
18480
+ body: GoogleCloudAiplatformV1beta1FeatureView,
18223
18481
  ): Request<GoogleLongrunningOperation>;
18224
18482
  /** Search the nearest entities under a FeatureView. Search only works for indexable feature view; if a feature view isn't indexable, returns Invalid argument response. */
18225
18483
  searchNearestEntities(request: {
@@ -18277,7 +18535,7 @@ declare namespace gapi.client {
18277
18535
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18278
18536
  uploadType?: string;
18279
18537
  },
18280
- body: GoogleCloudAiplatformV1beta1SearchNearestEntitiesRequest
18538
+ body: GoogleCloudAiplatformV1beta1SearchNearestEntitiesRequest,
18281
18539
  ): Request<GoogleCloudAiplatformV1beta1SearchNearestEntitiesResponse>;
18282
18540
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
18283
18541
  setIamPolicy(
@@ -18307,7 +18565,7 @@ declare namespace gapi.client {
18307
18565
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18308
18566
  uploadType?: string;
18309
18567
  },
18310
- body: GoogleIamV1SetIamPolicyRequest
18568
+ body: GoogleIamV1SetIamPolicyRequest,
18311
18569
  ): Request<GoogleIamV1Policy>;
18312
18570
  /** Bidirectional streaming RPC to fetch feature values under a FeatureView. Requests may not have a one-to-one mapping to responses and responses may be returned out-of-order to reduce latency. */
18313
18571
  streamingFetchFeatureValues(request: {
@@ -18365,7 +18623,7 @@ declare namespace gapi.client {
18365
18623
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18366
18624
  uploadType?: string;
18367
18625
  },
18368
- body: GoogleCloudAiplatformV1beta1StreamingFetchFeatureValuesRequest
18626
+ body: GoogleCloudAiplatformV1beta1StreamingFetchFeatureValuesRequest,
18369
18627
  ): Request<GoogleCloudAiplatformV1beta1StreamingFetchFeatureValuesResponse>;
18370
18628
  /** Triggers on-demand sync for the FeatureView. */
18371
18629
  sync(request: {
@@ -18423,7 +18681,7 @@ declare namespace gapi.client {
18423
18681
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18424
18682
  uploadType?: string;
18425
18683
  },
18426
- body: GoogleCloudAiplatformV1beta1SyncFeatureViewRequest
18684
+ body: GoogleCloudAiplatformV1beta1SyncFeatureViewRequest,
18427
18685
  ): Request<GoogleCloudAiplatformV1beta1SyncFeatureViewResponse>;
18428
18686
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
18429
18687
  testIamPermissions(request?: {
@@ -18636,7 +18894,7 @@ declare namespace gapi.client {
18636
18894
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18637
18895
  uploadType?: string;
18638
18896
  },
18639
- body: GoogleCloudAiplatformV1beta1FeatureOnlineStore
18897
+ body: GoogleCloudAiplatformV1beta1FeatureOnlineStore,
18640
18898
  ): Request<GoogleLongrunningOperation>;
18641
18899
  /** Deletes a single FeatureOnlineStore. The FeatureOnlineStore must not contain any FeatureViews. */
18642
18900
  delete(request?: {
@@ -18818,7 +19076,7 @@ declare namespace gapi.client {
18818
19076
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18819
19077
  uploadType?: string;
18820
19078
  },
18821
- body: GoogleCloudAiplatformV1beta1FeatureOnlineStore
19079
+ body: GoogleCloudAiplatformV1beta1FeatureOnlineStore,
18822
19080
  ): Request<GoogleLongrunningOperation>;
18823
19081
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
18824
19082
  setIamPolicy(
@@ -18848,7 +19106,7 @@ declare namespace gapi.client {
18848
19106
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18849
19107
  uploadType?: string;
18850
19108
  },
18851
- body: GoogleIamV1SetIamPolicyRequest
19109
+ body: GoogleIamV1SetIamPolicyRequest,
18852
19110
  ): Request<GoogleIamV1Policy>;
18853
19111
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
18854
19112
  testIamPermissions(request?: {
@@ -19084,7 +19342,7 @@ declare namespace gapi.client {
19084
19342
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19085
19343
  uploadType?: string;
19086
19344
  },
19087
- body: GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest
19345
+ body: GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest,
19088
19346
  ): Request<GoogleLongrunningOperation>;
19089
19347
  /** Creates a new Feature in a given EntityType. */
19090
19348
  create(request: {
@@ -19146,7 +19404,7 @@ declare namespace gapi.client {
19146
19404
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19147
19405
  uploadType?: string;
19148
19406
  },
19149
- body: GoogleCloudAiplatformV1beta1Feature
19407
+ body: GoogleCloudAiplatformV1beta1Feature,
19150
19408
  ): Request<GoogleLongrunningOperation>;
19151
19409
  /** Deletes a single Feature. */
19152
19410
  delete(request?: {
@@ -19307,7 +19565,7 @@ declare namespace gapi.client {
19307
19565
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19308
19566
  uploadType?: string;
19309
19567
  },
19310
- body: GoogleCloudAiplatformV1beta1Feature
19568
+ body: GoogleCloudAiplatformV1beta1Feature,
19311
19569
  ): Request<GoogleCloudAiplatformV1beta1Feature>;
19312
19570
  operations: OperationsResource;
19313
19571
  }
@@ -19517,7 +19775,7 @@ declare namespace gapi.client {
19517
19775
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19518
19776
  uploadType?: string;
19519
19777
  },
19520
- body: GoogleCloudAiplatformV1beta1EntityType
19778
+ body: GoogleCloudAiplatformV1beta1EntityType,
19521
19779
  ): Request<GoogleLongrunningOperation>;
19522
19780
  /** Deletes a single EntityType. The EntityType must not have any Features or `force` must be set to true for the request to succeed. */
19523
19781
  delete(request?: {
@@ -19604,7 +19862,7 @@ declare namespace gapi.client {
19604
19862
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19605
19863
  uploadType?: string;
19606
19864
  },
19607
- body: GoogleCloudAiplatformV1beta1DeleteFeatureValuesRequest
19865
+ body: GoogleCloudAiplatformV1beta1DeleteFeatureValuesRequest,
19608
19866
  ): Request<GoogleLongrunningOperation>;
19609
19867
  /** Exports Feature values from all the entities of a target EntityType. */
19610
19868
  exportFeatureValues(request: {
@@ -19662,7 +19920,7 @@ declare namespace gapi.client {
19662
19920
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19663
19921
  uploadType?: string;
19664
19922
  },
19665
- body: GoogleCloudAiplatformV1beta1ExportFeatureValuesRequest
19923
+ body: GoogleCloudAiplatformV1beta1ExportFeatureValuesRequest,
19666
19924
  ): Request<GoogleLongrunningOperation>;
19667
19925
  /** Gets details of a single EntityType. */
19668
19926
  get(request?: {
@@ -19776,7 +20034,7 @@ declare namespace gapi.client {
19776
20034
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19777
20035
  uploadType?: string;
19778
20036
  },
19779
- body: GoogleCloudAiplatformV1beta1ImportFeatureValuesRequest
20037
+ body: GoogleCloudAiplatformV1beta1ImportFeatureValuesRequest,
19780
20038
  ): Request<GoogleLongrunningOperation>;
19781
20039
  /** Lists EntityTypes in a given Featurestore. */
19782
20040
  list(request?: {
@@ -19875,7 +20133,7 @@ declare namespace gapi.client {
19875
20133
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19876
20134
  uploadType?: string;
19877
20135
  },
19878
- body: GoogleCloudAiplatformV1beta1EntityType
20136
+ body: GoogleCloudAiplatformV1beta1EntityType,
19879
20137
  ): Request<GoogleCloudAiplatformV1beta1EntityType>;
19880
20138
  /** Reads Feature values of a specific entity of an EntityType. For reading feature values of multiple entities of an EntityType, please use StreamingReadFeatureValues. */
19881
20139
  readFeatureValues(request: {
@@ -19933,7 +20191,7 @@ declare namespace gapi.client {
19933
20191
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19934
20192
  uploadType?: string;
19935
20193
  },
19936
- body: GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest
20194
+ body: GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest,
19937
20195
  ): Request<GoogleCloudAiplatformV1beta1ReadFeatureValuesResponse>;
19938
20196
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
19939
20197
  setIamPolicy(
@@ -19963,7 +20221,7 @@ declare namespace gapi.client {
19963
20221
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19964
20222
  uploadType?: string;
19965
20223
  },
19966
- body: GoogleIamV1SetIamPolicyRequest
20224
+ body: GoogleIamV1SetIamPolicyRequest,
19967
20225
  ): Request<GoogleIamV1Policy>;
19968
20226
  /** Reads Feature values for multiple entities. Depending on their size, data for different entities may be broken up across multiple responses. */
19969
20227
  streamingReadFeatureValues(request: {
@@ -20021,7 +20279,7 @@ declare namespace gapi.client {
20021
20279
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20022
20280
  uploadType?: string;
20023
20281
  },
20024
- body: GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest
20282
+ body: GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest,
20025
20283
  ): Request<GoogleCloudAiplatformV1beta1ReadFeatureValuesResponse>;
20026
20284
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
20027
20285
  testIamPermissions(request?: {
@@ -20108,7 +20366,7 @@ declare namespace gapi.client {
20108
20366
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20109
20367
  uploadType?: string;
20110
20368
  },
20111
- body: GoogleCloudAiplatformV1beta1WriteFeatureValuesRequest
20369
+ body: GoogleCloudAiplatformV1beta1WriteFeatureValuesRequest,
20112
20370
  ): Request<{}>;
20113
20371
  features: FeaturesResource;
20114
20372
  operations: OperationsResource;
@@ -20315,7 +20573,7 @@ declare namespace gapi.client {
20315
20573
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20316
20574
  uploadType?: string;
20317
20575
  },
20318
- body: GoogleCloudAiplatformV1beta1BatchReadFeatureValuesRequest
20576
+ body: GoogleCloudAiplatformV1beta1BatchReadFeatureValuesRequest,
20319
20577
  ): Request<GoogleLongrunningOperation>;
20320
20578
  /** Creates a new Featurestore in a given project and location. */
20321
20579
  create(request: {
@@ -20377,7 +20635,7 @@ declare namespace gapi.client {
20377
20635
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20378
20636
  uploadType?: string;
20379
20637
  },
20380
- body: GoogleCloudAiplatformV1beta1Featurestore
20638
+ body: GoogleCloudAiplatformV1beta1Featurestore,
20381
20639
  ): Request<GoogleLongrunningOperation>;
20382
20640
  /** Deletes a single Featurestore. The Featurestore must not contain any EntityTypes or `force` must be set to true for the request to succeed. */
20383
20641
  delete(request?: {
@@ -20463,7 +20721,7 @@ declare namespace gapi.client {
20463
20721
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20464
20722
  uploadType?: string;
20465
20723
  },
20466
- body: GoogleIamV1GetIamPolicyRequest
20724
+ body: GoogleIamV1GetIamPolicyRequest,
20467
20725
  ): Request<GoogleIamV1Policy>;
20468
20726
  /** Lists Featurestores in a given project and location. */
20469
20727
  list(request?: {
@@ -20562,7 +20820,7 @@ declare namespace gapi.client {
20562
20820
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20563
20821
  uploadType?: string;
20564
20822
  },
20565
- body: GoogleCloudAiplatformV1beta1Featurestore
20823
+ body: GoogleCloudAiplatformV1beta1Featurestore,
20566
20824
  ): Request<GoogleLongrunningOperation>;
20567
20825
  /** Searches Features matching a query in a given project. */
20568
20826
  searchFeatures(request?: {
@@ -20625,7 +20883,7 @@ declare namespace gapi.client {
20625
20883
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20626
20884
  uploadType?: string;
20627
20885
  },
20628
- body: GoogleIamV1SetIamPolicyRequest
20886
+ body: GoogleIamV1SetIamPolicyRequest,
20629
20887
  ): Request<GoogleIamV1Policy>;
20630
20888
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
20631
20889
  testIamPermissions(
@@ -20655,7 +20913,7 @@ declare namespace gapi.client {
20655
20913
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20656
20914
  uploadType?: string;
20657
20915
  },
20658
- body: GoogleIamV1TestIamPermissionsRequest
20916
+ body: GoogleIamV1TestIamPermissionsRequest,
20659
20917
  ): Request<GoogleIamV1TestIamPermissionsResponse>;
20660
20918
  entityTypes: EntityTypesResource;
20661
20919
  operations: OperationsResource;
@@ -20862,7 +21120,7 @@ declare namespace gapi.client {
20862
21120
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20863
21121
  uploadType?: string;
20864
21122
  },
20865
- body: GoogleCloudAiplatformV1beta1CancelHyperparameterTuningJobRequest
21123
+ body: GoogleCloudAiplatformV1beta1CancelHyperparameterTuningJobRequest,
20866
21124
  ): Request<{}>;
20867
21125
  /** Creates a HyperparameterTuningJob */
20868
21126
  create(request: {
@@ -20920,7 +21178,7 @@ declare namespace gapi.client {
20920
21178
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20921
21179
  uploadType?: string;
20922
21180
  },
20923
- body: GoogleCloudAiplatformV1beta1HyperparameterTuningJob
21181
+ body: GoogleCloudAiplatformV1beta1HyperparameterTuningJob,
20924
21182
  ): Request<GoogleCloudAiplatformV1beta1HyperparameterTuningJob>;
20925
21183
  /** Deletes a HyperparameterTuningJob. */
20926
21184
  delete(request?: {
@@ -21215,7 +21473,7 @@ declare namespace gapi.client {
21215
21473
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21216
21474
  uploadType?: string;
21217
21475
  },
21218
- body: GoogleCloudAiplatformV1beta1IndexEndpoint
21476
+ body: GoogleCloudAiplatformV1beta1IndexEndpoint,
21219
21477
  ): Request<GoogleLongrunningOperation>;
21220
21478
  /** Deletes an IndexEndpoint. */
21221
21479
  delete(request?: {
@@ -21244,7 +21502,7 @@ declare namespace gapi.client {
21244
21502
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21245
21503
  uploadType?: string;
21246
21504
  }): Request<GoogleLongrunningOperation>;
21247
- /** Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. Only non-empty Indexes can be deployed. */
21505
+ /** Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. */
21248
21506
  deployIndex(request: {
21249
21507
  /** V1 error format. */
21250
21508
  '$.xgafv'?: string;
@@ -21300,7 +21558,7 @@ declare namespace gapi.client {
21300
21558
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21301
21559
  uploadType?: string;
21302
21560
  },
21303
- body: GoogleCloudAiplatformV1beta1DeployIndexRequest
21561
+ body: GoogleCloudAiplatformV1beta1DeployIndexRequest,
21304
21562
  ): Request<GoogleLongrunningOperation>;
21305
21563
  /** Finds the nearest neighbors of each vector within the request. */
21306
21564
  findNeighbors(request: {
@@ -21358,7 +21616,7 @@ declare namespace gapi.client {
21358
21616
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21359
21617
  uploadType?: string;
21360
21618
  },
21361
- body: GoogleCloudAiplatformV1beta1FindNeighborsRequest
21619
+ body: GoogleCloudAiplatformV1beta1FindNeighborsRequest,
21362
21620
  ): Request<GoogleCloudAiplatformV1beta1FindNeighborsResponse>;
21363
21621
  /** Gets an IndexEndpoint. */
21364
21622
  get(request?: {
@@ -21478,7 +21736,7 @@ declare namespace gapi.client {
21478
21736
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21479
21737
  uploadType?: string;
21480
21738
  },
21481
- body: GoogleCloudAiplatformV1beta1DeployedIndex
21739
+ body: GoogleCloudAiplatformV1beta1DeployedIndex,
21482
21740
  ): Request<GoogleLongrunningOperation>;
21483
21741
  /** Updates an IndexEndpoint. */
21484
21742
  patch(request: {
@@ -21540,7 +21798,7 @@ declare namespace gapi.client {
21540
21798
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21541
21799
  uploadType?: string;
21542
21800
  },
21543
- body: GoogleCloudAiplatformV1beta1IndexEndpoint
21801
+ body: GoogleCloudAiplatformV1beta1IndexEndpoint,
21544
21802
  ): Request<GoogleCloudAiplatformV1beta1IndexEndpoint>;
21545
21803
  /** Reads the datapoints/vectors of the given IDs. A maximum of 1000 datapoints can be retrieved in a batch. */
21546
21804
  readIndexDatapoints(request: {
@@ -21598,7 +21856,7 @@ declare namespace gapi.client {
21598
21856
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21599
21857
  uploadType?: string;
21600
21858
  },
21601
- body: GoogleCloudAiplatformV1beta1ReadIndexDatapointsRequest
21859
+ body: GoogleCloudAiplatformV1beta1ReadIndexDatapointsRequest,
21602
21860
  ): Request<GoogleCloudAiplatformV1beta1ReadIndexDatapointsResponse>;
21603
21861
  /** Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using. */
21604
21862
  undeployIndex(request: {
@@ -21656,7 +21914,7 @@ declare namespace gapi.client {
21656
21914
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21657
21915
  uploadType?: string;
21658
21916
  },
21659
- body: GoogleCloudAiplatformV1beta1UndeployIndexRequest
21917
+ body: GoogleCloudAiplatformV1beta1UndeployIndexRequest,
21660
21918
  ): Request<GoogleLongrunningOperation>;
21661
21919
  operations: OperationsResource;
21662
21920
  }
@@ -21862,7 +22120,7 @@ declare namespace gapi.client {
21862
22120
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21863
22121
  uploadType?: string;
21864
22122
  },
21865
- body: GoogleCloudAiplatformV1beta1Index
22123
+ body: GoogleCloudAiplatformV1beta1Index,
21866
22124
  ): Request<GoogleLongrunningOperation>;
21867
22125
  /** Deletes an Index. An Index can only be deleted when all its DeployedIndexes had been undeployed. */
21868
22126
  delete(request?: {
@@ -22013,7 +22271,7 @@ declare namespace gapi.client {
22013
22271
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22014
22272
  uploadType?: string;
22015
22273
  },
22016
- body: GoogleCloudAiplatformV1beta1Index
22274
+ body: GoogleCloudAiplatformV1beta1Index,
22017
22275
  ): Request<GoogleLongrunningOperation>;
22018
22276
  /** Remove Datapoints from an Index. */
22019
22277
  removeDatapoints(request: {
@@ -22071,7 +22329,7 @@ declare namespace gapi.client {
22071
22329
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22072
22330
  uploadType?: string;
22073
22331
  },
22074
- body: GoogleCloudAiplatformV1beta1RemoveDatapointsRequest
22332
+ body: GoogleCloudAiplatformV1beta1RemoveDatapointsRequest,
22075
22333
  ): Request<{}>;
22076
22334
  /** Add/update Datapoints into an Index. */
22077
22335
  upsertDatapoints(request: {
@@ -22129,7 +22387,7 @@ declare namespace gapi.client {
22129
22387
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22130
22388
  uploadType?: string;
22131
22389
  },
22132
- body: GoogleCloudAiplatformV1beta1UpsertDatapointsRequest
22390
+ body: GoogleCloudAiplatformV1beta1UpsertDatapointsRequest,
22133
22391
  ): Request<{}>;
22134
22392
  operations: OperationsResource;
22135
22393
  }
@@ -22339,7 +22597,7 @@ declare namespace gapi.client {
22339
22597
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22340
22598
  uploadType?: string;
22341
22599
  },
22342
- body: GoogleCloudAiplatformV1beta1Artifact
22600
+ body: GoogleCloudAiplatformV1beta1Artifact,
22343
22601
  ): Request<GoogleCloudAiplatformV1beta1Artifact>;
22344
22602
  /** Deletes an Artifact. */
22345
22603
  delete(request?: {
@@ -22496,7 +22754,7 @@ declare namespace gapi.client {
22496
22754
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22497
22755
  uploadType?: string;
22498
22756
  },
22499
- body: GoogleCloudAiplatformV1beta1Artifact
22757
+ body: GoogleCloudAiplatformV1beta1Artifact,
22500
22758
  ): Request<GoogleCloudAiplatformV1beta1Artifact>;
22501
22759
  /** Purges Artifacts. */
22502
22760
  purge(request: {
@@ -22554,7 +22812,7 @@ declare namespace gapi.client {
22554
22812
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22555
22813
  uploadType?: string;
22556
22814
  },
22557
- body: GoogleCloudAiplatformV1beta1PurgeArtifactsRequest
22815
+ body: GoogleCloudAiplatformV1beta1PurgeArtifactsRequest,
22558
22816
  ): Request<GoogleLongrunningOperation>;
22559
22817
  /** Retrieves lineage of an Artifact represented through Artifacts and Executions connected by Event edges and returned as a LineageSubgraph. */
22560
22818
  queryArtifactLineageSubgraph(request?: {
@@ -22791,7 +23049,7 @@ declare namespace gapi.client {
22791
23049
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22792
23050
  uploadType?: string;
22793
23051
  },
22794
- body: GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest
23052
+ body: GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest,
22795
23053
  ): Request<{}>;
22796
23054
  /** Adds a set of Contexts as children to a parent Context. If any of the child Contexts have already been added to the parent Context, they are simply skipped. If this call would create a cycle or cause any Context to have more than 10 parents, the request will fail with an INVALID_ARGUMENT error. */
22797
23055
  addContextChildren(request: {
@@ -22849,7 +23107,7 @@ declare namespace gapi.client {
22849
23107
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22850
23108
  uploadType?: string;
22851
23109
  },
22852
- body: GoogleCloudAiplatformV1beta1AddContextChildrenRequest
23110
+ body: GoogleCloudAiplatformV1beta1AddContextChildrenRequest,
22853
23111
  ): Request<{}>;
22854
23112
  /** Creates a Context associated with a MetadataStore. */
22855
23113
  create(request: {
@@ -22911,7 +23169,7 @@ declare namespace gapi.client {
22911
23169
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22912
23170
  uploadType?: string;
22913
23171
  },
22914
- body: GoogleCloudAiplatformV1beta1Context
23172
+ body: GoogleCloudAiplatformV1beta1Context,
22915
23173
  ): Request<GoogleCloudAiplatformV1beta1Context>;
22916
23174
  /** Deletes a stored Context. */
22917
23175
  delete(request?: {
@@ -23070,7 +23328,7 @@ declare namespace gapi.client {
23070
23328
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23071
23329
  uploadType?: string;
23072
23330
  },
23073
- body: GoogleCloudAiplatformV1beta1Context
23331
+ body: GoogleCloudAiplatformV1beta1Context,
23074
23332
  ): Request<GoogleCloudAiplatformV1beta1Context>;
23075
23333
  /** Purges Contexts. */
23076
23334
  purge(request: {
@@ -23128,7 +23386,7 @@ declare namespace gapi.client {
23128
23386
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23129
23387
  uploadType?: string;
23130
23388
  },
23131
- body: GoogleCloudAiplatformV1beta1PurgeContextsRequest
23389
+ body: GoogleCloudAiplatformV1beta1PurgeContextsRequest,
23132
23390
  ): Request<GoogleLongrunningOperation>;
23133
23391
  /** Retrieves Artifacts and Executions within the specified Context, connected by Event edges and returned as a LineageSubgraph. */
23134
23392
  queryContextLineageSubgraph(request?: {
@@ -23213,7 +23471,7 @@ declare namespace gapi.client {
23213
23471
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23214
23472
  uploadType?: string;
23215
23473
  },
23216
- body: GoogleCloudAiplatformV1beta1RemoveContextChildrenRequest
23474
+ body: GoogleCloudAiplatformV1beta1RemoveContextChildrenRequest,
23217
23475
  ): Request<{}>;
23218
23476
  operations: OperationsResource;
23219
23477
  }
@@ -23419,7 +23677,7 @@ declare namespace gapi.client {
23419
23677
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23420
23678
  uploadType?: string;
23421
23679
  },
23422
- body: GoogleCloudAiplatformV1beta1AddExecutionEventsRequest
23680
+ body: GoogleCloudAiplatformV1beta1AddExecutionEventsRequest,
23423
23681
  ): Request<{}>;
23424
23682
  /** Creates an Execution associated with a MetadataStore. */
23425
23683
  create(request: {
@@ -23481,7 +23739,7 @@ declare namespace gapi.client {
23481
23739
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23482
23740
  uploadType?: string;
23483
23741
  },
23484
- body: GoogleCloudAiplatformV1beta1Execution
23742
+ body: GoogleCloudAiplatformV1beta1Execution,
23485
23743
  ): Request<GoogleCloudAiplatformV1beta1Execution>;
23486
23744
  /** Deletes an Execution. */
23487
23745
  delete(request?: {
@@ -23638,7 +23896,7 @@ declare namespace gapi.client {
23638
23896
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23639
23897
  uploadType?: string;
23640
23898
  },
23641
- body: GoogleCloudAiplatformV1beta1Execution
23899
+ body: GoogleCloudAiplatformV1beta1Execution,
23642
23900
  ): Request<GoogleCloudAiplatformV1beta1Execution>;
23643
23901
  /** Purges Executions. */
23644
23902
  purge(request: {
@@ -23696,7 +23954,7 @@ declare namespace gapi.client {
23696
23954
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23697
23955
  uploadType?: string;
23698
23956
  },
23699
- body: GoogleCloudAiplatformV1beta1PurgeExecutionsRequest
23957
+ body: GoogleCloudAiplatformV1beta1PurgeExecutionsRequest,
23700
23958
  ): Request<GoogleLongrunningOperation>;
23701
23959
  /** Obtains the set of input and output Artifacts for this Execution, in the form of LineageSubgraph that also contains the Execution and connecting Events. */
23702
23960
  queryExecutionInputsAndOutputs(request?: {
@@ -23788,7 +24046,7 @@ declare namespace gapi.client {
23788
24046
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23789
24047
  uploadType?: string;
23790
24048
  },
23791
- body: GoogleCloudAiplatformV1beta1MetadataSchema
24049
+ body: GoogleCloudAiplatformV1beta1MetadataSchema,
23792
24050
  ): Request<GoogleCloudAiplatformV1beta1MetadataSchema>;
23793
24051
  /** Retrieves a specific MetadataSchema. */
23794
24052
  get(request?: {
@@ -24057,7 +24315,7 @@ declare namespace gapi.client {
24057
24315
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24058
24316
  uploadType?: string;
24059
24317
  },
24060
- body: GoogleCloudAiplatformV1beta1MetadataStore
24318
+ body: GoogleCloudAiplatformV1beta1MetadataStore,
24061
24319
  ): Request<GoogleLongrunningOperation>;
24062
24320
  /** Deletes a single MetadataStore and all its child resources (Artifacts, Executions, and Contexts). */
24063
24321
  delete(request?: {
@@ -24354,7 +24612,7 @@ declare namespace gapi.client {
24354
24612
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24355
24613
  uploadType?: string;
24356
24614
  },
24357
- body: GoogleCloudAiplatformV1beta1BatchMigrateResourcesRequest
24615
+ body: GoogleCloudAiplatformV1beta1BatchMigrateResourcesRequest,
24358
24616
  ): Request<GoogleLongrunningOperation>;
24359
24617
  /** Searches all of the resources in automl.googleapis.com, datalabeling.googleapis.com and ml.googleapis.com that can be migrated to Vertex AI's given location. */
24360
24618
  search(request: {
@@ -24412,7 +24670,7 @@ declare namespace gapi.client {
24412
24670
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24413
24671
  uploadType?: string;
24414
24672
  },
24415
- body: GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest
24673
+ body: GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest,
24416
24674
  ): Request<GoogleCloudAiplatformV1beta1SearchMigratableResourcesResponse>;
24417
24675
  operations: OperationsResource;
24418
24676
  }
@@ -24618,7 +24876,7 @@ declare namespace gapi.client {
24618
24876
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24619
24877
  uploadType?: string;
24620
24878
  },
24621
- body: GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob
24879
+ body: GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob,
24622
24880
  ): Request<GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob>;
24623
24881
  /** Deletes a ModelDeploymentMonitoringJob. */
24624
24882
  delete(request?: {
@@ -24769,7 +25027,7 @@ declare namespace gapi.client {
24769
25027
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24770
25028
  uploadType?: string;
24771
25029
  },
24772
- body: GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob
25030
+ body: GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob,
24773
25031
  ): Request<GoogleLongrunningOperation>;
24774
25032
  /** Pauses a ModelDeploymentMonitoringJob. If the job is running, the server makes a best effort to cancel the job. Will mark ModelDeploymentMonitoringJob.state to 'PAUSED'. */
24775
25033
  pause(request: {
@@ -24827,7 +25085,7 @@ declare namespace gapi.client {
24827
25085
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24828
25086
  uploadType?: string;
24829
25087
  },
24830
- body: GoogleCloudAiplatformV1beta1PauseModelDeploymentMonitoringJobRequest
25088
+ body: GoogleCloudAiplatformV1beta1PauseModelDeploymentMonitoringJobRequest,
24831
25089
  ): Request<{}>;
24832
25090
  /** Resumes a paused ModelDeploymentMonitoringJob. It will start to run from next scheduled time. A deleted ModelDeploymentMonitoringJob can't be resumed. */
24833
25091
  resume(request: {
@@ -24885,7 +25143,7 @@ declare namespace gapi.client {
24885
25143
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24886
25144
  uploadType?: string;
24887
25145
  },
24888
- body: GoogleCloudAiplatformV1beta1ResumeModelDeploymentMonitoringJobRequest
25146
+ body: GoogleCloudAiplatformV1beta1ResumeModelDeploymentMonitoringJobRequest,
24889
25147
  ): Request<{}>;
24890
25148
  /** Searches Model Monitoring Statistics generated within a given time window. */
24891
25149
  searchModelDeploymentMonitoringStatsAnomalies(request: {
@@ -24943,7 +25201,7 @@ declare namespace gapi.client {
24943
25201
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24944
25202
  uploadType?: string;
24945
25203
  },
24946
- body: GoogleCloudAiplatformV1beta1SearchModelDeploymentMonitoringStatsAnomaliesRequest
25204
+ body: GoogleCloudAiplatformV1beta1SearchModelDeploymentMonitoringStatsAnomaliesRequest,
24947
25205
  ): Request<GoogleCloudAiplatformV1beta1SearchModelDeploymentMonitoringStatsAnomaliesResponse>;
24948
25206
  operations: OperationsResource;
24949
25207
  }
@@ -25008,7 +25266,7 @@ declare namespace gapi.client {
25008
25266
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25009
25267
  uploadType?: string;
25010
25268
  },
25011
- body: GoogleCloudAiplatformV1beta1ModelMonitoringJob
25269
+ body: GoogleCloudAiplatformV1beta1ModelMonitoringJob,
25012
25270
  ): Request<GoogleCloudAiplatformV1beta1ModelMonitoringJob>;
25013
25271
  /** Deletes a ModelMonitoringJob. */
25014
25272
  delete(request?: {
@@ -25306,7 +25564,7 @@ declare namespace gapi.client {
25306
25564
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25307
25565
  uploadType?: string;
25308
25566
  },
25309
- body: GoogleCloudAiplatformV1beta1ModelMonitor
25567
+ body: GoogleCloudAiplatformV1beta1ModelMonitor,
25310
25568
  ): Request<GoogleLongrunningOperation>;
25311
25569
  /** Deletes a ModelMonitor. */
25312
25570
  delete(request?: {
@@ -25459,7 +25717,7 @@ declare namespace gapi.client {
25459
25717
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25460
25718
  uploadType?: string;
25461
25719
  },
25462
- body: GoogleCloudAiplatformV1beta1ModelMonitor
25720
+ body: GoogleCloudAiplatformV1beta1ModelMonitor,
25463
25721
  ): Request<GoogleLongrunningOperation>;
25464
25722
  /** Returns the Model Monitoring alerts. */
25465
25723
  searchModelMonitoringAlerts(request: {
@@ -25517,7 +25775,7 @@ declare namespace gapi.client {
25517
25775
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25518
25776
  uploadType?: string;
25519
25777
  },
25520
- body: GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsRequest
25778
+ body: GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsRequest,
25521
25779
  ): Request<GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsResponse>;
25522
25780
  /** Searches Model Monitoring Stats generated within a given time window. */
25523
25781
  searchModelMonitoringStats(request: {
@@ -25575,7 +25833,7 @@ declare namespace gapi.client {
25575
25833
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25576
25834
  uploadType?: string;
25577
25835
  },
25578
- body: GoogleCloudAiplatformV1beta1SearchModelMonitoringStatsRequest
25836
+ body: GoogleCloudAiplatformV1beta1SearchModelMonitoringStatsRequest,
25579
25837
  ): Request<GoogleCloudAiplatformV1beta1SearchModelMonitoringStatsResponse>;
25580
25838
  modelMonitoringJobs: ModelMonitoringJobsResource;
25581
25839
  operations: OperationsResource;
@@ -25782,7 +26040,7 @@ declare namespace gapi.client {
25782
26040
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25783
26041
  uploadType?: string;
25784
26042
  },
25785
- body: GoogleCloudAiplatformV1beta1BatchImportEvaluatedAnnotationsRequest
26043
+ body: GoogleCloudAiplatformV1beta1BatchImportEvaluatedAnnotationsRequest,
25786
26044
  ): Request<GoogleCloudAiplatformV1beta1BatchImportEvaluatedAnnotationsResponse>;
25787
26045
  /** Gets a ModelEvaluationSlice. */
25788
26046
  get(request?: {
@@ -25931,7 +26189,7 @@ declare namespace gapi.client {
25931
26189
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25932
26190
  uploadType?: string;
25933
26191
  },
25934
- body: GoogleCloudAiplatformV1beta1ImportModelEvaluationRequest
26192
+ body: GoogleCloudAiplatformV1beta1ImportModelEvaluationRequest,
25935
26193
  ): Request<GoogleCloudAiplatformV1beta1ModelEvaluation>;
25936
26194
  /** Lists ModelEvaluations in a Model. */
25937
26195
  list(request?: {
@@ -26173,7 +26431,7 @@ declare namespace gapi.client {
26173
26431
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26174
26432
  uploadType?: string;
26175
26433
  },
26176
- body: GoogleCloudAiplatformV1beta1CopyModelRequest
26434
+ body: GoogleCloudAiplatformV1beta1CopyModelRequest,
26177
26435
  ): Request<GoogleLongrunningOperation>;
26178
26436
  /** Deletes a Model. A model cannot be deleted if any Endpoint resource has a DeployedModel based on the model in its deployed_models field. */
26179
26437
  delete(request?: {
@@ -26285,7 +26543,7 @@ declare namespace gapi.client {
26285
26543
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26286
26544
  uploadType?: string;
26287
26545
  },
26288
- body: GoogleCloudAiplatformV1beta1ExportModelRequest
26546
+ body: GoogleCloudAiplatformV1beta1ExportModelRequest,
26289
26547
  ): Request<GoogleLongrunningOperation>;
26290
26548
  /** Gets a Model. */
26291
26549
  get(request?: {
@@ -26378,6 +26636,37 @@ declare namespace gapi.client {
26378
26636
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26379
26637
  uploadType?: string;
26380
26638
  }): Request<GoogleCloudAiplatformV1beta1ListModelsResponse>;
26639
+ /** Lists checkpoints of the specified model version. */
26640
+ listCheckpoints(request?: {
26641
+ /** V1 error format. */
26642
+ '$.xgafv'?: string;
26643
+ /** OAuth access token. */
26644
+ access_token?: string;
26645
+ /** Data format for response. */
26646
+ alt?: string;
26647
+ /** JSONP */
26648
+ callback?: string;
26649
+ /** Selector specifying which fields to include in a partial response. */
26650
+ fields?: string;
26651
+ /** 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. */
26652
+ key?: string;
26653
+ /** Required. The name of the model version to list checkpoints for. `projects/{project}/locations/{location}/models/{model}@{version}` Example: `projects/{project}/locations/{location}/models/{model}@2` or `projects/{project}/locations/{location}/models/{model}@golden` If no version ID or alias is specified, the latest version will be used. */
26654
+ name: string;
26655
+ /** OAuth 2.0 token for the current user. */
26656
+ oauth_token?: string;
26657
+ /** Optional. The standard list page size. */
26658
+ pageSize?: number;
26659
+ /** Optional. The standard list page token. Typically obtained via next_page_token of the previous ListModelVersionCheckpoints call. */
26660
+ pageToken?: string;
26661
+ /** Returns response with indentations and line breaks. */
26662
+ prettyPrint?: boolean;
26663
+ /** 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. */
26664
+ quotaUser?: string;
26665
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
26666
+ upload_protocol?: string;
26667
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26668
+ uploadType?: string;
26669
+ }): Request<GoogleCloudAiplatformV1beta1ListModelVersionCheckpointsResponse>;
26381
26670
  /** Lists versions of the specified model. */
26382
26671
  listVersions(request?: {
26383
26672
  /** V1 error format. */
@@ -26471,7 +26760,7 @@ declare namespace gapi.client {
26471
26760
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26472
26761
  uploadType?: string;
26473
26762
  },
26474
- body: GoogleCloudAiplatformV1beta1MergeVersionAliasesRequest
26763
+ body: GoogleCloudAiplatformV1beta1MergeVersionAliasesRequest,
26475
26764
  ): Request<GoogleCloudAiplatformV1beta1Model>;
26476
26765
  /** Updates a Model. */
26477
26766
  patch(request: {
@@ -26533,7 +26822,7 @@ declare namespace gapi.client {
26533
26822
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26534
26823
  uploadType?: string;
26535
26824
  },
26536
- body: GoogleCloudAiplatformV1beta1Model
26825
+ body: GoogleCloudAiplatformV1beta1Model,
26537
26826
  ): Request<GoogleCloudAiplatformV1beta1Model>;
26538
26827
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
26539
26828
  setIamPolicy(
@@ -26563,7 +26852,7 @@ declare namespace gapi.client {
26563
26852
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26564
26853
  uploadType?: string;
26565
26854
  },
26566
- body: GoogleIamV1SetIamPolicyRequest
26855
+ body: GoogleIamV1SetIamPolicyRequest,
26567
26856
  ): Request<GoogleIamV1Policy>;
26568
26857
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
26569
26858
  testIamPermissions(request?: {
@@ -26650,7 +26939,7 @@ declare namespace gapi.client {
26650
26939
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26651
26940
  uploadType?: string;
26652
26941
  },
26653
- body: GoogleCloudAiplatformV1beta1UpdateExplanationDatasetRequest
26942
+ body: GoogleCloudAiplatformV1beta1UpdateExplanationDatasetRequest,
26654
26943
  ): Request<GoogleLongrunningOperation>;
26655
26944
  /** Uploads a Model artifact into Vertex AI. */
26656
26945
  upload(request: {
@@ -26708,7 +26997,7 @@ declare namespace gapi.client {
26708
26997
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26709
26998
  uploadType?: string;
26710
26999
  },
26711
- body: GoogleCloudAiplatformV1beta1UploadModelRequest
27000
+ body: GoogleCloudAiplatformV1beta1UploadModelRequest,
26712
27001
  ): Request<GoogleLongrunningOperation>;
26713
27002
  evaluations: EvaluationsResource;
26714
27003
  operations: OperationsResource;
@@ -26830,7 +27119,7 @@ declare namespace gapi.client {
26830
27119
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26831
27120
  uploadType?: string;
26832
27121
  },
26833
- body: GoogleCloudAiplatformV1beta1CancelNasJobRequest
27122
+ body: GoogleCloudAiplatformV1beta1CancelNasJobRequest,
26834
27123
  ): Request<{}>;
26835
27124
  /** Creates a NasJob */
26836
27125
  create(request: {
@@ -26888,7 +27177,7 @@ declare namespace gapi.client {
26888
27177
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26889
27178
  uploadType?: string;
26890
27179
  },
26891
- body: GoogleCloudAiplatformV1beta1NasJob
27180
+ body: GoogleCloudAiplatformV1beta1NasJob,
26892
27181
  ): Request<GoogleCloudAiplatformV1beta1NasJob>;
26893
27182
  /** Deletes a NasJob. */
26894
27183
  delete(request?: {
@@ -27187,7 +27476,7 @@ declare namespace gapi.client {
27187
27476
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27188
27477
  uploadType?: string;
27189
27478
  },
27190
- body: GoogleCloudAiplatformV1beta1NotebookExecutionJob
27479
+ body: GoogleCloudAiplatformV1beta1NotebookExecutionJob,
27191
27480
  ): Request<GoogleLongrunningOperation>;
27192
27481
  /** Deletes a NotebookExecutionJob. */
27193
27482
  delete(request?: {
@@ -27272,7 +27561,7 @@ declare namespace gapi.client {
27272
27561
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27273
27562
  uploadType?: string;
27274
27563
  },
27275
- body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest
27564
+ body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest,
27276
27565
  ): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
27277
27566
  /** Gets a NotebookExecutionJob. */
27278
27567
  get(request?: {
@@ -27395,7 +27684,7 @@ declare namespace gapi.client {
27395
27684
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27396
27685
  uploadType?: string;
27397
27686
  },
27398
- body: GoogleCloudAiplatformV1beta1ReportExecutionEventRequest
27687
+ body: GoogleCloudAiplatformV1beta1ReportExecutionEventRequest,
27399
27688
  ): Request<{}>;
27400
27689
  operations: OperationsResource;
27401
27690
  }
@@ -27601,7 +27890,7 @@ declare namespace gapi.client {
27601
27890
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27602
27891
  uploadType?: string;
27603
27892
  },
27604
- body: GoogleCloudAiplatformV1beta1AssignNotebookRuntimeRequest
27893
+ body: GoogleCloudAiplatformV1beta1AssignNotebookRuntimeRequest,
27605
27894
  ): Request<GoogleLongrunningOperation>;
27606
27895
  /** Deletes a NotebookRuntime. */
27607
27896
  delete(request?: {
@@ -27686,7 +27975,7 @@ declare namespace gapi.client {
27686
27975
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27687
27976
  uploadType?: string;
27688
27977
  },
27689
- body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest
27978
+ body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest,
27690
27979
  ): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
27691
27980
  /** Gets a NotebookRuntime. */
27692
27981
  get(request?: {
@@ -27807,7 +28096,7 @@ declare namespace gapi.client {
27807
28096
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27808
28097
  uploadType?: string;
27809
28098
  },
27810
- body: GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest
28099
+ body: GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest,
27811
28100
  ): Request<GoogleCloudAiplatformV1beta1ReportRuntimeEventResponse>;
27812
28101
  /** Starts a NotebookRuntime. */
27813
28102
  start(request: {
@@ -27865,7 +28154,7 @@ declare namespace gapi.client {
27865
28154
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27866
28155
  uploadType?: string;
27867
28156
  },
27868
- body: GoogleCloudAiplatformV1beta1StartNotebookRuntimeRequest
28157
+ body: GoogleCloudAiplatformV1beta1StartNotebookRuntimeRequest,
27869
28158
  ): Request<GoogleLongrunningOperation>;
27870
28159
  /** Stops a NotebookRuntime. */
27871
28160
  stop(request: {
@@ -27923,7 +28212,7 @@ declare namespace gapi.client {
27923
28212
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27924
28213
  uploadType?: string;
27925
28214
  },
27926
- body: GoogleCloudAiplatformV1beta1StopNotebookRuntimeRequest
28215
+ body: GoogleCloudAiplatformV1beta1StopNotebookRuntimeRequest,
27927
28216
  ): Request<GoogleLongrunningOperation>;
27928
28217
  /** Upgrades a NotebookRuntime. */
27929
28218
  upgrade(request: {
@@ -27981,7 +28270,7 @@ declare namespace gapi.client {
27981
28270
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27982
28271
  uploadType?: string;
27983
28272
  },
27984
- body: GoogleCloudAiplatformV1beta1UpgradeNotebookRuntimeRequest
28273
+ body: GoogleCloudAiplatformV1beta1UpgradeNotebookRuntimeRequest,
27985
28274
  ): Request<GoogleLongrunningOperation>;
27986
28275
  operations: OperationsResource;
27987
28276
  }
@@ -28191,7 +28480,7 @@ declare namespace gapi.client {
28191
28480
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28192
28481
  uploadType?: string;
28193
28482
  },
28194
- body: GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate
28483
+ body: GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate,
28195
28484
  ): Request<GoogleLongrunningOperation>;
28196
28485
  /** Deletes a NotebookRuntimeTemplate. */
28197
28486
  delete(request?: {
@@ -28373,7 +28662,7 @@ declare namespace gapi.client {
28373
28662
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28374
28663
  uploadType?: string;
28375
28664
  },
28376
- body: GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate
28665
+ body: GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate,
28377
28666
  ): Request<GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate>;
28378
28667
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
28379
28668
  setIamPolicy(
@@ -28403,7 +28692,7 @@ declare namespace gapi.client {
28403
28692
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28404
28693
  uploadType?: string;
28405
28694
  },
28406
- body: GoogleIamV1SetIamPolicyRequest
28695
+ body: GoogleIamV1SetIamPolicyRequest,
28407
28696
  ): Request<GoogleIamV1Policy>;
28408
28697
  /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
28409
28698
  testIamPermissions(request?: {
@@ -28787,7 +29076,7 @@ declare namespace gapi.client {
28787
29076
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28788
29077
  uploadType?: string;
28789
29078
  },
28790
- body: GoogleCloudAiplatformV1beta1PersistentResource
29079
+ body: GoogleCloudAiplatformV1beta1PersistentResource,
28791
29080
  ): Request<GoogleLongrunningOperation>;
28792
29081
  /** Deletes a PersistentResource. */
28793
29082
  delete(request?: {
@@ -28934,7 +29223,7 @@ declare namespace gapi.client {
28934
29223
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28935
29224
  uploadType?: string;
28936
29225
  },
28937
- body: GoogleCloudAiplatformV1beta1PersistentResource
29226
+ body: GoogleCloudAiplatformV1beta1PersistentResource,
28938
29227
  ): Request<GoogleLongrunningOperation>;
28939
29228
  /** Reboots a PersistentResource. */
28940
29229
  reboot(request: {
@@ -28992,7 +29281,7 @@ declare namespace gapi.client {
28992
29281
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28993
29282
  uploadType?: string;
28994
29283
  },
28995
- body: GoogleCloudAiplatformV1beta1RebootPersistentResourceRequest
29284
+ body: GoogleCloudAiplatformV1beta1RebootPersistentResourceRequest,
28996
29285
  ): Request<GoogleLongrunningOperation>;
28997
29286
  operations: OperationsResource;
28998
29287
  }
@@ -29198,7 +29487,7 @@ declare namespace gapi.client {
29198
29487
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29199
29488
  uploadType?: string;
29200
29489
  },
29201
- body: GoogleCloudAiplatformV1beta1BatchCancelPipelineJobsRequest
29490
+ body: GoogleCloudAiplatformV1beta1BatchCancelPipelineJobsRequest,
29202
29491
  ): Request<GoogleLongrunningOperation>;
29203
29492
  /** Batch deletes PipelineJobs The Operation is atomic. If it fails, none of the PipelineJobs are deleted. If it succeeds, all of the PipelineJobs are deleted. */
29204
29493
  batchDelete(request: {
@@ -29256,7 +29545,7 @@ declare namespace gapi.client {
29256
29545
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29257
29546
  uploadType?: string;
29258
29547
  },
29259
- body: GoogleCloudAiplatformV1beta1BatchDeletePipelineJobsRequest
29548
+ body: GoogleCloudAiplatformV1beta1BatchDeletePipelineJobsRequest,
29260
29549
  ): Request<GoogleLongrunningOperation>;
29261
29550
  /** Cancels a PipelineJob. Starts asynchronous cancellation on the PipelineJob. The server makes a best effort to cancel the pipeline, but success is not guaranteed. Clients can use PipelineService.GetPipelineJob or other methods to check whether the cancellation succeeded or whether the pipeline completed despite cancellation. On successful cancellation, the PipelineJob is not deleted; instead it becomes a pipeline with a PipelineJob.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`, and PipelineJob.state is set to `CANCELLED`. */
29262
29551
  cancel(request: {
@@ -29314,7 +29603,7 @@ declare namespace gapi.client {
29314
29603
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29315
29604
  uploadType?: string;
29316
29605
  },
29317
- body: GoogleCloudAiplatformV1beta1CancelPipelineJobRequest
29606
+ body: GoogleCloudAiplatformV1beta1CancelPipelineJobRequest,
29318
29607
  ): Request<{}>;
29319
29608
  /** Creates a PipelineJob. A PipelineJob will run immediately when created. */
29320
29609
  create(request: {
@@ -29376,7 +29665,7 @@ declare namespace gapi.client {
29376
29665
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29377
29666
  uploadType?: string;
29378
29667
  },
29379
- body: GoogleCloudAiplatformV1beta1PipelineJob
29668
+ body: GoogleCloudAiplatformV1beta1PipelineJob,
29380
29669
  ): Request<GoogleCloudAiplatformV1beta1PipelineJob>;
29381
29670
  /** Deletes a PipelineJob. */
29382
29671
  delete(request?: {
@@ -29528,7 +29817,7 @@ declare namespace gapi.client {
29528
29817
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29529
29818
  uploadType?: string;
29530
29819
  },
29531
- body: GoogleCloudAiplatformV1beta1ComputeTokensRequest
29820
+ body: GoogleCloudAiplatformV1beta1ComputeTokensRequest,
29532
29821
  ): Request<GoogleCloudAiplatformV1beta1ComputeTokensResponse>;
29533
29822
  /** Perform a token counting. */
29534
29823
  countTokens(request: {
@@ -29586,7 +29875,7 @@ declare namespace gapi.client {
29586
29875
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29587
29876
  uploadType?: string;
29588
29877
  },
29589
- body: GoogleCloudAiplatformV1beta1CountTokensRequest
29878
+ body: GoogleCloudAiplatformV1beta1CountTokensRequest,
29590
29879
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
29591
29880
  /** Fetch an asynchronous online prediction operation. */
29592
29881
  fetchPredictOperation(request: {
@@ -29644,7 +29933,7 @@ declare namespace gapi.client {
29644
29933
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29645
29934
  uploadType?: string;
29646
29935
  },
29647
- body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest
29936
+ body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest,
29648
29937
  ): Request<GoogleLongrunningOperation>;
29649
29938
  /** Generate content with multimodal inputs. */
29650
29939
  generateContent(request: {
@@ -29702,7 +29991,7 @@ declare namespace gapi.client {
29702
29991
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29703
29992
  uploadType?: string;
29704
29993
  },
29705
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
29994
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
29706
29995
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
29707
29996
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
29708
29997
  getIamPolicy(request?: {
@@ -29789,7 +30078,7 @@ declare namespace gapi.client {
29789
30078
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29790
30079
  uploadType?: string;
29791
30080
  },
29792
- body: GoogleCloudAiplatformV1beta1PredictRequest
30081
+ body: GoogleCloudAiplatformV1beta1PredictRequest,
29793
30082
  ): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
29794
30083
  predictLongRunning(request: {
29795
30084
  /** V1 error format. */
@@ -29846,7 +30135,7 @@ declare namespace gapi.client {
29846
30135
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29847
30136
  uploadType?: string;
29848
30137
  },
29849
- body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest
30138
+ body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest,
29850
30139
  ): Request<GoogleLongrunningOperation>;
29851
30140
  /** Perform an online prediction with an arbitrary HTTP payload. The response includes the following HTTP headers: * `X-Vertex-AI-Endpoint-Id`: ID of the Endpoint that served this prediction. * `X-Vertex-AI-Deployed-Model-Id`: ID of the Endpoint's DeployedModel that served this prediction. */
29852
30141
  rawPredict(request: {
@@ -29904,7 +30193,7 @@ declare namespace gapi.client {
29904
30193
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29905
30194
  uploadType?: string;
29906
30195
  },
29907
- body: GoogleCloudAiplatformV1beta1RawPredictRequest
30196
+ body: GoogleCloudAiplatformV1beta1RawPredictRequest,
29908
30197
  ): Request<GoogleApiHttpBody>;
29909
30198
  /** Perform a server-side streaming online prediction request for Vertex LLM streaming. */
29910
30199
  serverStreamingPredict(request: {
@@ -29962,7 +30251,7 @@ declare namespace gapi.client {
29962
30251
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29963
30252
  uploadType?: string;
29964
30253
  },
29965
- body: GoogleCloudAiplatformV1beta1StreamingPredictRequest
30254
+ body: GoogleCloudAiplatformV1beta1StreamingPredictRequest,
29966
30255
  ): Request<GoogleCloudAiplatformV1beta1StreamingPredictResponse>;
29967
30256
  /** Generate content with multimodal inputs with streaming support. */
29968
30257
  streamGenerateContent(request: {
@@ -30020,7 +30309,7 @@ declare namespace gapi.client {
30020
30309
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30021
30310
  uploadType?: string;
30022
30311
  },
30023
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
30312
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
30024
30313
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
30025
30314
  /** Perform a streaming online prediction with an arbitrary HTTP payload. */
30026
30315
  streamRawPredict(request: {
@@ -30078,7 +30367,7 @@ declare namespace gapi.client {
30078
30367
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30079
30368
  uploadType?: string;
30080
30369
  },
30081
- body: GoogleCloudAiplatformV1beta1StreamRawPredictRequest
30370
+ body: GoogleCloudAiplatformV1beta1StreamRawPredictRequest,
30082
30371
  ): Request<GoogleApiHttpBody>;
30083
30372
  }
30084
30373
  interface PublishersResource {
@@ -30485,7 +30774,7 @@ declare namespace gapi.client {
30485
30774
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30486
30775
  uploadType?: string;
30487
30776
  },
30488
- body: GoogleCloudAiplatformV1beta1ImportRagFilesRequest
30777
+ body: GoogleCloudAiplatformV1beta1ImportRagFilesRequest,
30489
30778
  ): Request<GoogleLongrunningOperation>;
30490
30779
  /** Lists RagFiles in a RagCorpus. */
30491
30780
  list(request?: {
@@ -30577,7 +30866,7 @@ declare namespace gapi.client {
30577
30866
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30578
30867
  uploadType?: string;
30579
30868
  },
30580
- body: GoogleCloudAiplatformV1beta1RagCorpus
30869
+ body: GoogleCloudAiplatformV1beta1RagCorpus,
30581
30870
  ): Request<GoogleLongrunningOperation>;
30582
30871
  /** Deletes a RagCorpus. */
30583
30872
  delete(request?: {
@@ -30722,7 +31011,7 @@ declare namespace gapi.client {
30722
31011
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30723
31012
  uploadType?: string;
30724
31013
  },
30725
- body: GoogleCloudAiplatformV1beta1RagCorpus
31014
+ body: GoogleCloudAiplatformV1beta1RagCorpus,
30726
31015
  ): Request<GoogleLongrunningOperation>;
30727
31016
  operations: OperationsResource;
30728
31017
  ragFiles: RagFilesResource;
@@ -30929,7 +31218,7 @@ declare namespace gapi.client {
30929
31218
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30930
31219
  uploadType?: string;
30931
31220
  },
30932
- body: GoogleCloudAiplatformV1beta1ReasoningEngine
31221
+ body: GoogleCloudAiplatformV1beta1ReasoningEngine,
30933
31222
  ): Request<GoogleLongrunningOperation>;
30934
31223
  /** Deletes a reasoning engine. */
30935
31224
  delete(request?: {
@@ -31078,7 +31367,7 @@ declare namespace gapi.client {
31078
31367
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31079
31368
  uploadType?: string;
31080
31369
  },
31081
- body: GoogleCloudAiplatformV1beta1ReasoningEngine
31370
+ body: GoogleCloudAiplatformV1beta1ReasoningEngine,
31082
31371
  ): Request<GoogleLongrunningOperation>;
31083
31372
  /** Queries using a reasoning engine. */
31084
31373
  query(request: {
@@ -31136,7 +31425,7 @@ declare namespace gapi.client {
31136
31425
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31137
31426
  uploadType?: string;
31138
31427
  },
31139
- body: GoogleCloudAiplatformV1beta1QueryReasoningEngineRequest
31428
+ body: GoogleCloudAiplatformV1beta1QueryReasoningEngineRequest,
31140
31429
  ): Request<GoogleCloudAiplatformV1beta1QueryReasoningEngineResponse>;
31141
31430
  /** Streams queries using a reasoning engine. */
31142
31431
  streamQuery(request: {
@@ -31194,7 +31483,7 @@ declare namespace gapi.client {
31194
31483
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31195
31484
  uploadType?: string;
31196
31485
  },
31197
- body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest
31486
+ body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest,
31198
31487
  ): Request<GoogleApiHttpBody>;
31199
31488
  operations: OperationsResource;
31200
31489
  }
@@ -31400,7 +31689,7 @@ declare namespace gapi.client {
31400
31689
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31401
31690
  uploadType?: string;
31402
31691
  },
31403
- body: GoogleCloudAiplatformV1beta1Schedule
31692
+ body: GoogleCloudAiplatformV1beta1Schedule,
31404
31693
  ): Request<GoogleCloudAiplatformV1beta1Schedule>;
31405
31694
  /** Deletes a Schedule. */
31406
31695
  delete(request?: {
@@ -31551,7 +31840,7 @@ declare namespace gapi.client {
31551
31840
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31552
31841
  uploadType?: string;
31553
31842
  },
31554
- body: GoogleCloudAiplatformV1beta1Schedule
31843
+ body: GoogleCloudAiplatformV1beta1Schedule,
31555
31844
  ): Request<GoogleCloudAiplatformV1beta1Schedule>;
31556
31845
  /** Pauses a Schedule. Will mark Schedule.state to 'PAUSED'. If the schedule is paused, no new runs will be created. Already created runs will NOT be paused or canceled. */
31557
31846
  pause(request: {
@@ -31609,7 +31898,7 @@ declare namespace gapi.client {
31609
31898
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31610
31899
  uploadType?: string;
31611
31900
  },
31612
- body: GoogleCloudAiplatformV1beta1PauseScheduleRequest
31901
+ body: GoogleCloudAiplatformV1beta1PauseScheduleRequest,
31613
31902
  ): Request<{}>;
31614
31903
  /** Resumes a paused Schedule to start scheduling new runs. Will mark Schedule.state to 'ACTIVE'. Only paused Schedule can be resumed. When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If Schedule.catch_up is set up true, all missed runs will be scheduled for backfill first. */
31615
31904
  resume(request: {
@@ -31667,7 +31956,7 @@ declare namespace gapi.client {
31667
31956
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31668
31957
  uploadType?: string;
31669
31958
  },
31670
- body: GoogleCloudAiplatformV1beta1ResumeScheduleRequest
31959
+ body: GoogleCloudAiplatformV1beta1ResumeScheduleRequest,
31671
31960
  ): Request<{}>;
31672
31961
  operations: OperationsResource;
31673
31962
  }
@@ -31965,7 +32254,7 @@ declare namespace gapi.client {
31965
32254
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31966
32255
  uploadType?: string;
31967
32256
  },
31968
- body: GoogleCloudAiplatformV1beta1SpecialistPool
32257
+ body: GoogleCloudAiplatformV1beta1SpecialistPool,
31969
32258
  ): Request<GoogleLongrunningOperation>;
31970
32259
  /** Deletes a SpecialistPool as well as all Specialists in the pool. */
31971
32260
  delete(request?: {
@@ -32116,7 +32405,7 @@ declare namespace gapi.client {
32116
32405
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32117
32406
  uploadType?: string;
32118
32407
  },
32119
- body: GoogleCloudAiplatformV1beta1SpecialistPool
32408
+ body: GoogleCloudAiplatformV1beta1SpecialistPool,
32120
32409
  ): Request<GoogleLongrunningOperation>;
32121
32410
  operations: OperationsResource;
32122
32411
  }
@@ -32467,7 +32756,7 @@ declare namespace gapi.client {
32467
32756
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32468
32757
  uploadType?: string;
32469
32758
  },
32470
- body: GoogleCloudAiplatformV1beta1AddTrialMeasurementRequest
32759
+ body: GoogleCloudAiplatformV1beta1AddTrialMeasurementRequest,
32471
32760
  ): Request<GoogleCloudAiplatformV1beta1Trial>;
32472
32761
  /** Checks whether a Trial should stop or not. Returns a long-running operation. When the operation is successful, it will contain a CheckTrialEarlyStoppingStateResponse. */
32473
32762
  checkTrialEarlyStoppingState(request: {
@@ -32525,7 +32814,7 @@ declare namespace gapi.client {
32525
32814
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32526
32815
  uploadType?: string;
32527
32816
  },
32528
- body: GoogleCloudAiplatformV1beta1CheckTrialEarlyStoppingStateRequest
32817
+ body: GoogleCloudAiplatformV1beta1CheckTrialEarlyStoppingStateRequest,
32529
32818
  ): Request<GoogleLongrunningOperation>;
32530
32819
  /** Marks a Trial as complete. */
32531
32820
  complete(request: {
@@ -32583,7 +32872,7 @@ declare namespace gapi.client {
32583
32872
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32584
32873
  uploadType?: string;
32585
32874
  },
32586
- body: GoogleCloudAiplatformV1beta1CompleteTrialRequest
32875
+ body: GoogleCloudAiplatformV1beta1CompleteTrialRequest,
32587
32876
  ): Request<GoogleCloudAiplatformV1beta1Trial>;
32588
32877
  /** Adds a user provided Trial to a Study. */
32589
32878
  create(request: {
@@ -32641,7 +32930,7 @@ declare namespace gapi.client {
32641
32930
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32642
32931
  uploadType?: string;
32643
32932
  },
32644
- body: GoogleCloudAiplatformV1beta1Trial
32933
+ body: GoogleCloudAiplatformV1beta1Trial,
32645
32934
  ): Request<GoogleCloudAiplatformV1beta1Trial>;
32646
32935
  /** Deletes a Trial. */
32647
32936
  delete(request?: {
@@ -32784,7 +33073,7 @@ declare namespace gapi.client {
32784
33073
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32785
33074
  uploadType?: string;
32786
33075
  },
32787
- body: GoogleCloudAiplatformV1beta1ListOptimalTrialsRequest
33076
+ body: GoogleCloudAiplatformV1beta1ListOptimalTrialsRequest,
32788
33077
  ): Request<GoogleCloudAiplatformV1beta1ListOptimalTrialsResponse>;
32789
33078
  /** Stops a Trial. */
32790
33079
  stop(request: {
@@ -32842,7 +33131,7 @@ declare namespace gapi.client {
32842
33131
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32843
33132
  uploadType?: string;
32844
33133
  },
32845
- body: GoogleCloudAiplatformV1beta1StopTrialRequest
33134
+ body: GoogleCloudAiplatformV1beta1StopTrialRequest,
32846
33135
  ): Request<GoogleCloudAiplatformV1beta1Trial>;
32847
33136
  /** Adds one or more Trials to a Study, with parameter values suggested by Vertex AI Vizier. Returns a long-running operation associated with the generation of Trial suggestions. When this long-running operation succeeds, it will contain a SuggestTrialsResponse. */
32848
33137
  suggest(request: {
@@ -32900,7 +33189,7 @@ declare namespace gapi.client {
32900
33189
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32901
33190
  uploadType?: string;
32902
33191
  },
32903
- body: GoogleCloudAiplatformV1beta1SuggestTrialsRequest
33192
+ body: GoogleCloudAiplatformV1beta1SuggestTrialsRequest,
32904
33193
  ): Request<GoogleLongrunningOperation>;
32905
33194
  operations: OperationsResource;
32906
33195
  }
@@ -32961,7 +33250,7 @@ declare namespace gapi.client {
32961
33250
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32962
33251
  uploadType?: string;
32963
33252
  },
32964
- body: GoogleCloudAiplatformV1beta1Study
33253
+ body: GoogleCloudAiplatformV1beta1Study,
32965
33254
  ): Request<GoogleCloudAiplatformV1beta1Study>;
32966
33255
  /** Deletes a Study. */
32967
33256
  delete(request?: {
@@ -33104,7 +33393,7 @@ declare namespace gapi.client {
33104
33393
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33105
33394
  uploadType?: string;
33106
33395
  },
33107
- body: GoogleCloudAiplatformV1beta1LookupStudyRequest
33396
+ body: GoogleCloudAiplatformV1beta1LookupStudyRequest,
33108
33397
  ): Request<GoogleCloudAiplatformV1beta1Study>;
33109
33398
  operations: OperationsResource;
33110
33399
  trials: TrialsResource;
@@ -33605,7 +33894,7 @@ declare namespace gapi.client {
33605
33894
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33606
33895
  uploadType?: string;
33607
33896
  },
33608
- body: GoogleCloudAiplatformV1beta1TensorboardTimeSeries
33897
+ body: GoogleCloudAiplatformV1beta1TensorboardTimeSeries,
33609
33898
  ): Request<GoogleCloudAiplatformV1beta1TensorboardTimeSeries>;
33610
33899
  /** Deletes a TensorboardTimeSeries. */
33611
33900
  delete(request?: {
@@ -33690,7 +33979,7 @@ declare namespace gapi.client {
33690
33979
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33691
33980
  uploadType?: string;
33692
33981
  },
33693
- body: GoogleCloudAiplatformV1beta1ExportTensorboardTimeSeriesDataRequest
33982
+ body: GoogleCloudAiplatformV1beta1ExportTensorboardTimeSeriesDataRequest,
33694
33983
  ): Request<GoogleCloudAiplatformV1beta1ExportTensorboardTimeSeriesDataResponse>;
33695
33984
  /** Gets a TensorboardTimeSeries. */
33696
33985
  get(request?: {
@@ -33816,7 +34105,7 @@ declare namespace gapi.client {
33816
34105
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33817
34106
  uploadType?: string;
33818
34107
  },
33819
- body: GoogleCloudAiplatformV1beta1TensorboardTimeSeries
34108
+ body: GoogleCloudAiplatformV1beta1TensorboardTimeSeries,
33820
34109
  ): Request<GoogleCloudAiplatformV1beta1TensorboardTimeSeries>;
33821
34110
  /** Reads a TensorboardTimeSeries' data. By default, if the number of data points stored is less than 1000, all data is returned. Otherwise, 1000 data points is randomly selected from this time series and returned. This value can be changed by changing max_data_points, which can't be greater than 10k. */
33822
34111
  read(request?: {
@@ -33937,7 +34226,7 @@ declare namespace gapi.client {
33937
34226
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33938
34227
  uploadType?: string;
33939
34228
  },
33940
- body: GoogleCloudAiplatformV1beta1BatchCreateTensorboardRunsRequest
34229
+ body: GoogleCloudAiplatformV1beta1BatchCreateTensorboardRunsRequest,
33941
34230
  ): Request<GoogleCloudAiplatformV1beta1BatchCreateTensorboardRunsResponse>;
33942
34231
  /** Creates a TensorboardRun. */
33943
34232
  create(request: {
@@ -33999,7 +34288,7 @@ declare namespace gapi.client {
33999
34288
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34000
34289
  uploadType?: string;
34001
34290
  },
34002
- body: GoogleCloudAiplatformV1beta1TensorboardRun
34291
+ body: GoogleCloudAiplatformV1beta1TensorboardRun,
34003
34292
  ): Request<GoogleCloudAiplatformV1beta1TensorboardRun>;
34004
34293
  /** Deletes a TensorboardRun. */
34005
34294
  delete(request?: {
@@ -34152,7 +34441,7 @@ declare namespace gapi.client {
34152
34441
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34153
34442
  uploadType?: string;
34154
34443
  },
34155
- body: GoogleCloudAiplatformV1beta1TensorboardRun
34444
+ body: GoogleCloudAiplatformV1beta1TensorboardRun,
34156
34445
  ): Request<GoogleCloudAiplatformV1beta1TensorboardRun>;
34157
34446
  /** Write time series data points into multiple TensorboardTimeSeries under a TensorboardRun. If any data fail to be ingested, an error is returned. */
34158
34447
  write(request: {
@@ -34210,7 +34499,7 @@ declare namespace gapi.client {
34210
34499
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34211
34500
  uploadType?: string;
34212
34501
  },
34213
- body: GoogleCloudAiplatformV1beta1WriteTensorboardRunDataRequest
34502
+ body: GoogleCloudAiplatformV1beta1WriteTensorboardRunDataRequest,
34214
34503
  ): Request<{}>;
34215
34504
  operations: OperationsResource;
34216
34505
  timeSeries: TimeSeriesResource;
@@ -34272,7 +34561,7 @@ declare namespace gapi.client {
34272
34561
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34273
34562
  uploadType?: string;
34274
34563
  },
34275
- body: GoogleCloudAiplatformV1beta1BatchCreateTensorboardTimeSeriesRequest
34564
+ body: GoogleCloudAiplatformV1beta1BatchCreateTensorboardTimeSeriesRequest,
34276
34565
  ): Request<GoogleCloudAiplatformV1beta1BatchCreateTensorboardTimeSeriesResponse>;
34277
34566
  /** Creates a TensorboardExperiment. */
34278
34567
  create(request: {
@@ -34334,7 +34623,7 @@ declare namespace gapi.client {
34334
34623
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34335
34624
  uploadType?: string;
34336
34625
  },
34337
- body: GoogleCloudAiplatformV1beta1TensorboardExperiment
34626
+ body: GoogleCloudAiplatformV1beta1TensorboardExperiment,
34338
34627
  ): Request<GoogleCloudAiplatformV1beta1TensorboardExperiment>;
34339
34628
  /** Deletes a TensorboardExperiment. */
34340
34629
  delete(request?: {
@@ -34487,7 +34776,7 @@ declare namespace gapi.client {
34487
34776
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34488
34777
  uploadType?: string;
34489
34778
  },
34490
- body: GoogleCloudAiplatformV1beta1TensorboardExperiment
34779
+ body: GoogleCloudAiplatformV1beta1TensorboardExperiment,
34491
34780
  ): Request<GoogleCloudAiplatformV1beta1TensorboardExperiment>;
34492
34781
  /** Write time series data points of multiple TensorboardTimeSeries in multiple TensorboardRun's. If any data fail to be ingested, an error is returned. */
34493
34782
  write(request: {
@@ -34545,7 +34834,7 @@ declare namespace gapi.client {
34545
34834
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34546
34835
  uploadType?: string;
34547
34836
  },
34548
- body: GoogleCloudAiplatformV1beta1WriteTensorboardExperimentDataRequest
34837
+ body: GoogleCloudAiplatformV1beta1WriteTensorboardExperimentDataRequest,
34549
34838
  ): Request<{}>;
34550
34839
  operations: OperationsResource;
34551
34840
  runs: RunsResource;
@@ -34781,7 +35070,7 @@ declare namespace gapi.client {
34781
35070
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34782
35071
  uploadType?: string;
34783
35072
  },
34784
- body: GoogleCloudAiplatformV1beta1Tensorboard
35073
+ body: GoogleCloudAiplatformV1beta1Tensorboard,
34785
35074
  ): Request<GoogleLongrunningOperation>;
34786
35075
  /** Deletes a Tensorboard. */
34787
35076
  delete(request?: {
@@ -34934,7 +35223,7 @@ declare namespace gapi.client {
34934
35223
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34935
35224
  uploadType?: string;
34936
35225
  },
34937
- body: GoogleCloudAiplatformV1beta1Tensorboard
35226
+ body: GoogleCloudAiplatformV1beta1Tensorboard,
34938
35227
  ): Request<GoogleLongrunningOperation>;
34939
35228
  /** Returns the storage size for a given TensorBoard instance. */
34940
35229
  readSize(request?: {
@@ -35195,7 +35484,7 @@ declare namespace gapi.client {
35195
35484
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35196
35485
  uploadType?: string;
35197
35486
  },
35198
- body: GoogleCloudAiplatformV1beta1CancelTrainingPipelineRequest
35487
+ body: GoogleCloudAiplatformV1beta1CancelTrainingPipelineRequest,
35199
35488
  ): Request<{}>;
35200
35489
  /** Creates a TrainingPipeline. A created TrainingPipeline right away will be attempted to be run. */
35201
35490
  create(request: {
@@ -35253,7 +35542,7 @@ declare namespace gapi.client {
35253
35542
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35254
35543
  uploadType?: string;
35255
35544
  },
35256
- body: GoogleCloudAiplatformV1beta1TrainingPipeline
35545
+ body: GoogleCloudAiplatformV1beta1TrainingPipeline,
35257
35546
  ): Request<GoogleCloudAiplatformV1beta1TrainingPipeline>;
35258
35547
  /** Deletes a TrainingPipeline. */
35259
35548
  delete(request?: {
@@ -35432,7 +35721,7 @@ declare namespace gapi.client {
35432
35721
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35433
35722
  uploadType?: string;
35434
35723
  },
35435
- body: GoogleCloudAiplatformV1beta1CancelTuningJobRequest
35724
+ body: GoogleCloudAiplatformV1beta1CancelTuningJobRequest,
35436
35725
  ): Request<{}>;
35437
35726
  /** Creates a TuningJob. A created TuningJob right away will be attempted to be run. */
35438
35727
  create(request: {
@@ -35490,7 +35779,7 @@ declare namespace gapi.client {
35490
35779
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35491
35780
  uploadType?: string;
35492
35781
  },
35493
- body: GoogleCloudAiplatformV1beta1TuningJob
35782
+ body: GoogleCloudAiplatformV1beta1TuningJob,
35494
35783
  ): Request<GoogleCloudAiplatformV1beta1TuningJob>;
35495
35784
  /** Gets a TuningJob. */
35496
35785
  get(request?: {
@@ -35608,7 +35897,7 @@ declare namespace gapi.client {
35608
35897
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35609
35898
  uploadType?: string;
35610
35899
  },
35611
- body: GoogleCloudAiplatformV1beta1RebaseTunedModelRequest
35900
+ body: GoogleCloudAiplatformV1beta1RebaseTunedModelRequest,
35612
35901
  ): Request<GoogleLongrunningOperation>;
35613
35902
  operations: OperationsResource;
35614
35903
  }
@@ -35669,7 +35958,7 @@ declare namespace gapi.client {
35669
35958
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35670
35959
  uploadType?: string;
35671
35960
  },
35672
- body: GoogleCloudAiplatformV1beta1AugmentPromptRequest
35961
+ body: GoogleCloudAiplatformV1beta1AugmentPromptRequest,
35673
35962
  ): Request<GoogleCloudAiplatformV1beta1AugmentPromptResponse>;
35674
35963
  /** Given an input text, it returns a score that evaluates the factuality of the text. It also extracts and returns claims from the text and provides supporting facts. */
35675
35964
  corroborateContent(request: {
@@ -35727,7 +36016,7 @@ declare namespace gapi.client {
35727
36016
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35728
36017
  uploadType?: string;
35729
36018
  },
35730
- body: GoogleCloudAiplatformV1beta1CorroborateContentRequest
36019
+ body: GoogleCloudAiplatformV1beta1CorroborateContentRequest,
35731
36020
  ): Request<GoogleCloudAiplatformV1beta1CorroborateContentResponse>;
35732
36021
  /** Deploys publisher models. */
35733
36022
  deploy(request: {
@@ -35785,7 +36074,7 @@ declare namespace gapi.client {
35785
36074
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35786
36075
  uploadType?: string;
35787
36076
  },
35788
- body: GoogleCloudAiplatformV1beta1DeployPublisherModelRequest
36077
+ body: GoogleCloudAiplatformV1beta1DeployPublisherModelRequest,
35789
36078
  ): Request<GoogleLongrunningOperation>;
35790
36079
  /** Evaluates instances based on a given metric. */
35791
36080
  evaluateInstances(request: {
@@ -35843,7 +36132,7 @@ declare namespace gapi.client {
35843
36132
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35844
36133
  uploadType?: string;
35845
36134
  },
35846
- body: GoogleCloudAiplatformV1beta1EvaluateInstancesRequest
36135
+ body: GoogleCloudAiplatformV1beta1EvaluateInstancesRequest,
35847
36136
  ): Request<GoogleCloudAiplatformV1beta1EvaluateInstancesResponse>;
35848
36137
  /** Gets information about a location. */
35849
36138
  get(request?: {
@@ -35961,7 +36250,7 @@ declare namespace gapi.client {
35961
36250
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35962
36251
  uploadType?: string;
35963
36252
  },
35964
- body: GoogleCloudAiplatformV1beta1RetrieveContextsRequest
36253
+ body: GoogleCloudAiplatformV1beta1RetrieveContextsRequest,
35965
36254
  ): Request<GoogleCloudAiplatformV1beta1RetrieveContextsResponse>;
35966
36255
  agents: AgentsResource;
35967
36256
  apps: AppsResource;
@@ -36090,7 +36379,7 @@ declare namespace gapi.client {
36090
36379
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36091
36380
  uploadType?: string;
36092
36381
  },
36093
- body: GoogleCloudAiplatformV1beta1CacheConfig
36382
+ body: GoogleCloudAiplatformV1beta1CacheConfig,
36094
36383
  ): Request<GoogleLongrunningOperation>;
36095
36384
  locations: LocationsResource;
36096
36385
  }
@@ -36151,7 +36440,7 @@ declare namespace gapi.client {
36151
36440
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36152
36441
  uploadType?: string;
36153
36442
  },
36154
- body: GoogleCloudAiplatformV1beta1ComputeTokensRequest
36443
+ body: GoogleCloudAiplatformV1beta1ComputeTokensRequest,
36155
36444
  ): Request<GoogleCloudAiplatformV1beta1ComputeTokensResponse>;
36156
36445
  /** Perform a token counting. */
36157
36446
  countTokens(request: {
@@ -36209,7 +36498,7 @@ declare namespace gapi.client {
36209
36498
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36210
36499
  uploadType?: string;
36211
36500
  },
36212
- body: GoogleCloudAiplatformV1beta1CountTokensRequest
36501
+ body: GoogleCloudAiplatformV1beta1CountTokensRequest,
36213
36502
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
36214
36503
  /** Generate content with multimodal inputs. */
36215
36504
  generateContent(request: {
@@ -36267,7 +36556,7 @@ declare namespace gapi.client {
36267
36556
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36268
36557
  uploadType?: string;
36269
36558
  },
36270
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
36559
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
36271
36560
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
36272
36561
  /** Gets a Model Garden publisher model. */
36273
36562
  get(request?: {
@@ -36345,6 +36634,64 @@ declare namespace gapi.client {
36345
36634
  /** Optional. PublisherModel view specifying which fields to read. */
36346
36635
  view?: string;
36347
36636
  }): Request<GoogleCloudAiplatformV1beta1ListPublisherModelsResponse>;
36637
+ /** Perform an online prediction. */
36638
+ predict(request: {
36639
+ /** V1 error format. */
36640
+ '$.xgafv'?: string;
36641
+ /** OAuth access token. */
36642
+ access_token?: string;
36643
+ /** Data format for response. */
36644
+ alt?: string;
36645
+ /** JSONP */
36646
+ callback?: string;
36647
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
36648
+ endpoint: string;
36649
+ /** Selector specifying which fields to include in a partial response. */
36650
+ fields?: string;
36651
+ /** 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. */
36652
+ key?: string;
36653
+ /** OAuth 2.0 token for the current user. */
36654
+ oauth_token?: string;
36655
+ /** Returns response with indentations and line breaks. */
36656
+ prettyPrint?: boolean;
36657
+ /** 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. */
36658
+ quotaUser?: string;
36659
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36660
+ upload_protocol?: string;
36661
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36662
+ uploadType?: string;
36663
+ /** Request body */
36664
+ resource: GoogleCloudAiplatformV1beta1PredictRequest;
36665
+ }): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
36666
+ predict(
36667
+ request: {
36668
+ /** V1 error format. */
36669
+ '$.xgafv'?: string;
36670
+ /** OAuth access token. */
36671
+ access_token?: string;
36672
+ /** Data format for response. */
36673
+ alt?: string;
36674
+ /** JSONP */
36675
+ callback?: string;
36676
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
36677
+ endpoint: string;
36678
+ /** Selector specifying which fields to include in a partial response. */
36679
+ fields?: string;
36680
+ /** 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. */
36681
+ key?: string;
36682
+ /** OAuth 2.0 token for the current user. */
36683
+ oauth_token?: string;
36684
+ /** Returns response with indentations and line breaks. */
36685
+ prettyPrint?: boolean;
36686
+ /** 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. */
36687
+ quotaUser?: string;
36688
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36689
+ upload_protocol?: string;
36690
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36691
+ uploadType?: string;
36692
+ },
36693
+ body: GoogleCloudAiplatformV1beta1PredictRequest,
36694
+ ): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
36348
36695
  /** Generate content with multimodal inputs with streaming support. */
36349
36696
  streamGenerateContent(request: {
36350
36697
  /** V1 error format. */
@@ -36401,7 +36748,7 @@ declare namespace gapi.client {
36401
36748
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36402
36749
  uploadType?: string;
36403
36750
  },
36404
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
36751
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
36405
36752
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
36406
36753
  }
36407
36754
  interface PublishersResource {