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

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 +466 -223
  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: 20250131
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 {
@@ -627,6 +627,8 @@ declare namespace gapi.client {
627
627
  interface GoogleCloudAiplatformV1beta1Blob {
628
628
  /** Required. Raw bytes. */
629
629
  data?: string;
630
+ /** 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. */
631
+ displayName?: string;
630
632
  /** Required. The IANA standard MIME type of the source data. */
631
633
  mimeType?: string;
632
634
  }
@@ -647,7 +649,7 @@ declare namespace gapi.client {
647
649
  interface GoogleCloudAiplatformV1beta1CachedContent {
648
650
  /** Optional. Input only. Immutable. The content to cache */
649
651
  contents?: GoogleCloudAiplatformV1beta1Content[];
650
- /** Output only. Creatation time of the cache entry. */
652
+ /** Output only. Creation time of the cache entry. */
651
653
  createTime?: string;
652
654
  /** Optional. Immutable. The user-generated meaningful display name of the cached content. */
653
655
  displayName?: string;
@@ -942,6 +944,8 @@ declare namespace gapi.client {
942
944
  tools?: GoogleCloudAiplatformV1beta1Tool[];
943
945
  }
944
946
  interface GoogleCloudAiplatformV1beta1CountTokensResponse {
947
+ /** Output only. List of modalities that were processed in the request input. */
948
+ promptTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
945
949
  /** The total number of billable characters counted across all instances from the request. */
946
950
  totalBillableCharacters?: number;
947
951
  /** The total number of tokens counted across all instances from the request. */
@@ -1470,6 +1474,8 @@ declare namespace gapi.client {
1470
1474
  serviceAccount?: string;
1471
1475
  /** The resource name of the shared DeploymentResourcePool to deploy on. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
1472
1476
  sharedResources?: string;
1477
+ /** Optional. Spec for configuring speculative decoding. */
1478
+ speculativeDecodingSpec?: GoogleCloudAiplatformV1beta1SpeculativeDecodingSpec;
1473
1479
  /** Output only. Runtime status of the deployed model. */
1474
1480
  status?: GoogleCloudAiplatformV1beta1DeployedModelStatus;
1475
1481
  /** System labels to apply to Model Garden deployments. System labels are managed by Google for internal use only. */
@@ -1651,6 +1657,8 @@ declare namespace gapi.client {
1651
1657
  encryptionSpec?: GoogleCloudAiplatformV1beta1EncryptionSpec;
1652
1658
  /** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
1653
1659
  etag?: string;
1660
+ /** 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. */
1661
+ genAiAdvancedFeaturesConfig?: GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfig;
1654
1662
  /** 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
1663
  labels?: {[P in string]: string};
1656
1664
  /** 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}` */
@@ -2827,6 +2835,8 @@ declare namespace gapi.client {
2827
2835
  operationName?: string;
2828
2836
  }
2829
2837
  interface GoogleCloudAiplatformV1beta1FileData {
2838
+ /** 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. */
2839
+ displayName?: string;
2830
2840
  /** Required. URI. */
2831
2841
  fileUri?: string;
2832
2842
  /** Required. The IANA standard MIME type of the source data. */
@@ -2980,6 +2990,14 @@ declare namespace gapi.client {
2980
2990
  /** 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
2991
  uris?: string[];
2982
2992
  }
2993
+ interface GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfig {
2994
+ /** Configuration for Retrieval Augmented Generation feature. */
2995
+ ragConfig?: GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfigRagConfig;
2996
+ }
2997
+ interface GoogleCloudAiplatformV1beta1GenAiAdvancedFeaturesConfigRagConfig {
2998
+ /** 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. */
2999
+ enableRag?: boolean;
3000
+ }
2983
3001
  interface GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest {
2984
3002
  /** Required. The VM identity token (a JWT) for authenticating the VM. https://cloud.google.com/compute/docs/instances/verifying-instance-identity */
2985
3003
  vmToken?: string;
@@ -3015,10 +3033,14 @@ declare namespace gapi.client {
3015
3033
  interface GoogleCloudAiplatformV1beta1GenerateContentResponse {
3016
3034
  /** Output only. Generated candidates. */
3017
3035
  candidates?: GoogleCloudAiplatformV1beta1Candidate[];
3036
+ /** Output only. Timestamp when the request is made to the server. */
3037
+ createTime?: string;
3018
3038
  /** Output only. The model version used to generate the response. */
3019
3039
  modelVersion?: string;
3020
3040
  /** 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
3041
  promptFeedback?: GoogleCloudAiplatformV1beta1GenerateContentResponsePromptFeedback;
3042
+ /** Output only. response_id is used to identify each response. It is the encoding of the event_id. */
3043
+ responseId?: string;
3022
3044
  /** Usage metadata about the response(s). */
3023
3045
  usageMetadata?: GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata;
3024
3046
  }
@@ -3033,10 +3055,16 @@ declare namespace gapi.client {
3033
3055
  interface GoogleCloudAiplatformV1beta1GenerateContentResponseUsageMetadata {
3034
3056
  /** Output only. Number of tokens in the cached part in the input (the cached content). */
3035
3057
  cachedContentTokenCount?: number;
3058
+ /** Output only. List of modalities of the cached content in the request input. */
3059
+ cacheTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
3036
3060
  /** Number of tokens in the response(s). */
3037
3061
  candidatesTokenCount?: number;
3062
+ /** Output only. List of modalities that were returned in the response. */
3063
+ candidatesTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
3038
3064
  /** 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
3065
  promptTokenCount?: number;
3066
+ /** Output only. List of modalities that were processed in the request input. */
3067
+ promptTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
3040
3068
  /** Total token count for prompt and response candidates. */
3041
3069
  totalTokenCount?: number;
3042
3070
  }
@@ -3081,6 +3109,8 @@ declare namespace gapi.client {
3081
3109
  stopSequences?: string[];
3082
3110
  /** Optional. Controls the randomness of predictions. */
3083
3111
  temperature?: number;
3112
+ /** Optional. Config for thinking features. An error will be returned if this field is set for models that don't support thinking. */
3113
+ thinkingConfig?: GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig;
3084
3114
  /** Optional. If specified, top-k sampling will be used. */
3085
3115
  topK?: number;
3086
3116
  /** Optional. If specified, nucleus sampling will be used. */
@@ -3100,6 +3130,10 @@ declare namespace gapi.client {
3100
3130
  /** The model name to use. Only the public LLM models are accepted. e.g. 'gemini-1.5-pro-001'. */
3101
3131
  modelName?: string;
3102
3132
  }
3133
+ interface GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig {
3134
+ /** Optional. Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. */
3135
+ includeThoughts?: boolean;
3136
+ }
3103
3137
  interface GoogleCloudAiplatformV1beta1GenericOperationMetadata {
3104
3138
  /** Output only. Time when the operation was created. */
3105
3139
  createTime?: string;
@@ -3742,6 +3776,12 @@ declare namespace gapi.client {
3742
3776
  /** A token to retrieve next page of results. Pass to ListModelsRequest.page_token to obtain that page. */
3743
3777
  nextPageToken?: string;
3744
3778
  }
3779
+ interface GoogleCloudAiplatformV1beta1ListModelVersionCheckpointsResponse {
3780
+ /** List of Model Version checkpoints. */
3781
+ checkpoints?: GoogleCloudAiplatformV1beta1ModelVersionCheckpoint[];
3782
+ /** A token to retrieve the next page of results. Pass to ListModelVersionCheckpointsRequest.page_token to obtain that page. */
3783
+ nextPageToken?: string;
3784
+ }
3745
3785
  interface GoogleCloudAiplatformV1beta1ListModelVersionsResponse {
3746
3786
  /** List of Model versions in the requested page. In the returned Model name field, version ID instead of regvision tag will be included. */
3747
3787
  models?: GoogleCloudAiplatformV1beta1Model[];
@@ -4100,6 +4140,12 @@ declare namespace gapi.client {
4100
4140
  /** Migrated Model's resource name. */
4101
4141
  model?: string;
4102
4142
  }
4143
+ interface GoogleCloudAiplatformV1beta1ModalityTokenCount {
4144
+ /** The modality associated with this token count. */
4145
+ modality?: string;
4146
+ /** Number of tokens. */
4147
+ tokenCount?: number;
4148
+ }
4103
4149
  interface GoogleCloudAiplatformV1beta1Model {
4104
4150
  /** Immutable. The path to the directory containing the Model artifact and any of its supporting files. Not required for AutoML Models. */
4105
4151
  artifactUri?: string;
@@ -4109,6 +4155,8 @@ declare namespace gapi.client {
4109
4155
  containerSpec?: GoogleCloudAiplatformV1beta1ModelContainerSpec;
4110
4156
  /** Output only. Timestamp when this Model was uploaded into Vertex AI. */
4111
4157
  createTime?: string;
4158
+ /** The default checkpoint id of a model version. */
4159
+ defaultCheckpointId?: string;
4112
4160
  /** Output only. The pointers to DeployedModels created from this Model. Note that Model could have been deployed to Endpoints in different Locations. */
4113
4161
  deployedModels?: GoogleCloudAiplatformV1beta1DeployedModelRef[];
4114
4162
  /** The description of the Model. */
@@ -4373,6 +4421,10 @@ declare namespace gapi.client {
4373
4421
  interface GoogleCloudAiplatformV1beta1ModelGardenSource {
4374
4422
  /** Required. The model garden source model resource name. */
4375
4423
  publicModelName?: string;
4424
+ /** Optional. Whether to avoid pulling the model from the HF cache. */
4425
+ skipHfModelCache?: boolean;
4426
+ /** Optional. The model garden source model version ID. */
4427
+ versionId?: string;
4376
4428
  }
4377
4429
  interface GoogleCloudAiplatformV1beta1ModelMonitor {
4378
4430
  /** Output only. Timestamp when this ModelMonitor was created. */
@@ -4776,6 +4828,14 @@ declare namespace gapi.client {
4776
4828
  /** Type of the model source. */
4777
4829
  sourceType?: string;
4778
4830
  }
4831
+ interface GoogleCloudAiplatformV1beta1ModelVersionCheckpoint {
4832
+ /** The ID of the checkpoint. */
4833
+ checkpointId?: string;
4834
+ /** The epoch of the checkpoint. */
4835
+ epoch?: string;
4836
+ /** The step of the checkpoint. */
4837
+ step?: string;
4838
+ }
4779
4839
  interface GoogleCloudAiplatformV1beta1MutateDeployedIndexOperationMetadata {
4780
4840
  /** The unique index id specified by user */
4781
4841
  deployedIndexId?: string;
@@ -5146,6 +5206,8 @@ declare namespace gapi.client {
5146
5206
  serviceAccount?: string;
5147
5207
  /** Output only. Runtime Shielded VM spec. */
5148
5208
  shieldedVmConfig?: GoogleCloudAiplatformV1beta1ShieldedVmConfig;
5209
+ /** Output only. Software config of the notebook runtime. */
5210
+ softwareConfig?: GoogleCloudAiplatformV1beta1NotebookSoftwareConfig;
5149
5211
  /** Output only. Timestamp when this NotebookRuntime was most recently updated. */
5150
5212
  updateTime?: string;
5151
5213
  /** Output only. The VM os image version of NotebookRuntime. */
@@ -5186,6 +5248,8 @@ declare namespace gapi.client {
5186
5248
  serviceAccount?: string;
5187
5249
  /** Optional. Immutable. Runtime Shielded VM spec. */
5188
5250
  shieldedVmConfig?: GoogleCloudAiplatformV1beta1ShieldedVmConfig;
5251
+ /** Optional. The notebook software configuration of the notebook runtime. */
5252
+ softwareConfig?: GoogleCloudAiplatformV1beta1NotebookSoftwareConfig;
5189
5253
  /** Output only. Timestamp when this NotebookRuntimeTemplate was most recently updated. */
5190
5254
  updateTime?: string;
5191
5255
  }
@@ -5193,6 +5257,12 @@ declare namespace gapi.client {
5193
5257
  /** Immutable. A resource name of the NotebookRuntimeTemplate. */
5194
5258
  notebookRuntimeTemplate?: string;
5195
5259
  }
5260
+ interface GoogleCloudAiplatformV1beta1NotebookSoftwareConfig {
5261
+ /** Optional. Environment variables to be passed to the container. Maximum limit is 100. */
5262
+ env?: GoogleCloudAiplatformV1beta1EnvVar[];
5263
+ /** Optional. Post startup script config. */
5264
+ postStartupScriptConfig?: GoogleCloudAiplatformV1beta1PostStartupScriptConfig;
5265
+ }
5196
5266
  interface GoogleCloudAiplatformV1beta1PairwiseMetricInput {
5197
5267
  /** Required. Pairwise metric instance. */
5198
5268
  instance?: GoogleCloudAiplatformV1beta1PairwiseMetricInstance;
@@ -5559,6 +5629,14 @@ declare namespace gapi.client {
5559
5629
  /** 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
5630
  containerPort?: number;
5561
5631
  }
5632
+ interface GoogleCloudAiplatformV1beta1PostStartupScriptConfig {
5633
+ /** Optional. Post startup script to run after runtime is started. */
5634
+ postStartupScript?: string;
5635
+ /** Optional. Post startup script behavior that defines download and execution behavior. */
5636
+ postStartupScriptBehavior?: string;
5637
+ /** Optional. Post startup script url to download. Example: https://bucket/script.sh */
5638
+ postStartupScriptUrl?: string;
5639
+ }
5562
5640
  interface GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig {
5563
5641
  /** The name of the preset voice to use. */
5564
5642
  voiceName?: string;
@@ -6089,6 +6167,8 @@ declare namespace gapi.client {
6089
6167
  name?: string;
6090
6168
  /** Optional. Immutable. The embedding model config of the RagCorpus. */
6091
6169
  ragEmbeddingModelConfig?: GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig;
6170
+ /** Output only. Number of RagFiles in the RagCorpus. */
6171
+ ragFilesCount?: number;
6092
6172
  /** Optional. Immutable. The Vector DB config of the RagCorpus. */
6093
6173
  ragVectorDbConfig?: GoogleCloudAiplatformV1beta1RagVectorDbConfig;
6094
6174
  /** Output only. Timestamp when this RagCorpus was last updated. */
@@ -6199,7 +6279,7 @@ declare namespace gapi.client {
6199
6279
  customParsingPrompt?: string;
6200
6280
  /** 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
6281
  maxParsingRequestsPerMin?: number;
6202
- /** The name of a LLM model used for parsing. Format: `gemini-1.5-pro-002` */
6282
+ /** The name of a LLM model used for parsing. Format: * `projects/{project_id}/locations/{location}/publishers/{publisher}/models/{model}` */
6203
6283
  modelName?: string;
6204
6284
  }
6205
6285
  interface GoogleCloudAiplatformV1beta1RagFileTransformationConfig {
@@ -8472,6 +8552,22 @@ declare namespace gapi.client {
8472
8552
  /** The email addresses of workers in the SpecialistPool. */
8473
8553
  specialistWorkerEmails?: string[];
8474
8554
  }
8555
+ interface GoogleCloudAiplatformV1beta1SpeculativeDecodingSpec {
8556
+ /** draft model speculation. */
8557
+ draftModelSpeculation?: GoogleCloudAiplatformV1beta1SpeculativeDecodingSpecDraftModelSpeculation;
8558
+ /** N-Gram speculation. */
8559
+ ngramSpeculation?: GoogleCloudAiplatformV1beta1SpeculativeDecodingSpecNgramSpeculation;
8560
+ /** The number of speculative tokens to generate at each step. */
8561
+ speculativeTokenCount?: number;
8562
+ }
8563
+ interface GoogleCloudAiplatformV1beta1SpeculativeDecodingSpecDraftModelSpeculation {
8564
+ /** Required. The resource name of the draft model. */
8565
+ draftModel?: string;
8566
+ }
8567
+ interface GoogleCloudAiplatformV1beta1SpeculativeDecodingSpecNgramSpeculation {
8568
+ /** 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. */
8569
+ ngramSize?: number;
8570
+ }
8475
8571
  interface GoogleCloudAiplatformV1beta1SpeechConfig {
8476
8572
  /** The configuration for the speaker to use. */
8477
8573
  voiceConfig?: GoogleCloudAiplatformV1beta1VoiceConfig;
@@ -9498,7 +9594,7 @@ declare namespace gapi.client {
9498
9594
  state?: string;
9499
9595
  /** Tuning Spec for Supervised Fine Tuning. */
9500
9596
  supervisedTuningSpec?: GoogleCloudAiplatformV1beta1SupervisedTuningSpec;
9501
- /** Output only. The tuned model resources assiociated with this TuningJob. */
9597
+ /** Output only. The tuned model resources associated with this TuningJob. */
9502
9598
  tunedModel?: GoogleCloudAiplatformV1beta1TunedModel;
9503
9599
  /** 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
9600
  tunedModelDisplayName?: string;
@@ -9941,7 +10037,7 @@ declare namespace gapi.client {
9941
10037
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9942
10038
  uploadType?: string;
9943
10039
  },
9944
- body: GoogleCloudAiplatformV1beta1DatasetVersion
10040
+ body: GoogleCloudAiplatformV1beta1DatasetVersion,
9945
10041
  ): Request<GoogleLongrunningOperation>;
9946
10042
  /** Deletes a Dataset version. */
9947
10043
  delete(request?: {
@@ -10096,7 +10192,7 @@ declare namespace gapi.client {
10096
10192
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10097
10193
  uploadType?: string;
10098
10194
  },
10099
- body: GoogleCloudAiplatformV1beta1DatasetVersion
10195
+ body: GoogleCloudAiplatformV1beta1DatasetVersion,
10100
10196
  ): Request<GoogleCloudAiplatformV1beta1DatasetVersion>;
10101
10197
  /** Restores a dataset version. */
10102
10198
  restore(request?: {
@@ -10183,7 +10279,7 @@ declare namespace gapi.client {
10183
10279
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10184
10280
  uploadType?: string;
10185
10281
  },
10186
- body: GoogleCloudAiplatformV1beta1Dataset
10282
+ body: GoogleCloudAiplatformV1beta1Dataset,
10187
10283
  ): Request<GoogleLongrunningOperation>;
10188
10284
  /** Deletes a Dataset. */
10189
10285
  delete(request?: {
@@ -10338,7 +10434,7 @@ declare namespace gapi.client {
10338
10434
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10339
10435
  uploadType?: string;
10340
10436
  },
10341
- body: GoogleCloudAiplatformV1beta1Dataset
10437
+ body: GoogleCloudAiplatformV1beta1Dataset,
10342
10438
  ): Request<GoogleCloudAiplatformV1beta1Dataset>;
10343
10439
  datasetVersions: DatasetVersionsResource;
10344
10440
  }
@@ -10399,7 +10495,7 @@ declare namespace gapi.client {
10399
10495
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10400
10496
  uploadType?: string;
10401
10497
  },
10402
- body: GoogleCloudAiplatformV1beta1ComputeTokensRequest
10498
+ body: GoogleCloudAiplatformV1beta1ComputeTokensRequest,
10403
10499
  ): Request<GoogleCloudAiplatformV1beta1ComputeTokensResponse>;
10404
10500
  /** Perform a token counting. */
10405
10501
  countTokens(request: {
@@ -10457,7 +10553,7 @@ declare namespace gapi.client {
10457
10553
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10458
10554
  uploadType?: string;
10459
10555
  },
10460
- body: GoogleCloudAiplatformV1beta1CountTokensRequest
10556
+ body: GoogleCloudAiplatformV1beta1CountTokensRequest,
10461
10557
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
10462
10558
  /** Generate content with multimodal inputs. */
10463
10559
  generateContent(request: {
@@ -10515,8 +10611,66 @@ declare namespace gapi.client {
10515
10611
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10516
10612
  uploadType?: string;
10517
10613
  },
10518
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
10614
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
10519
10615
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
10616
+ /** Perform an online prediction. */
10617
+ predict(request: {
10618
+ /** V1 error format. */
10619
+ '$.xgafv'?: string;
10620
+ /** OAuth access token. */
10621
+ access_token?: string;
10622
+ /** Data format for response. */
10623
+ alt?: string;
10624
+ /** JSONP */
10625
+ callback?: string;
10626
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
10627
+ endpoint: string;
10628
+ /** Selector specifying which fields to include in a partial response. */
10629
+ fields?: string;
10630
+ /** 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. */
10631
+ key?: string;
10632
+ /** OAuth 2.0 token for the current user. */
10633
+ oauth_token?: string;
10634
+ /** Returns response with indentations and line breaks. */
10635
+ prettyPrint?: boolean;
10636
+ /** 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. */
10637
+ quotaUser?: string;
10638
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
10639
+ upload_protocol?: string;
10640
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10641
+ uploadType?: string;
10642
+ /** Request body */
10643
+ resource: GoogleCloudAiplatformV1beta1PredictRequest;
10644
+ }): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
10645
+ predict(
10646
+ request: {
10647
+ /** V1 error format. */
10648
+ '$.xgafv'?: string;
10649
+ /** OAuth access token. */
10650
+ access_token?: string;
10651
+ /** Data format for response. */
10652
+ alt?: string;
10653
+ /** JSONP */
10654
+ callback?: string;
10655
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
10656
+ endpoint: string;
10657
+ /** Selector specifying which fields to include in a partial response. */
10658
+ fields?: string;
10659
+ /** 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. */
10660
+ key?: string;
10661
+ /** OAuth 2.0 token for the current user. */
10662
+ oauth_token?: string;
10663
+ /** Returns response with indentations and line breaks. */
10664
+ prettyPrint?: boolean;
10665
+ /** 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. */
10666
+ quotaUser?: string;
10667
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
10668
+ upload_protocol?: string;
10669
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10670
+ uploadType?: string;
10671
+ },
10672
+ body: GoogleCloudAiplatformV1beta1PredictRequest,
10673
+ ): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
10520
10674
  /** Generate content with multimodal inputs with streaming support. */
10521
10675
  streamGenerateContent(request: {
10522
10676
  /** V1 error format. */
@@ -10573,7 +10727,7 @@ declare namespace gapi.client {
10573
10727
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10574
10728
  uploadType?: string;
10575
10729
  },
10576
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
10730
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
10577
10731
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
10578
10732
  }
10579
10733
  interface MediaResource {
@@ -10633,7 +10787,7 @@ declare namespace gapi.client {
10633
10787
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10634
10788
  uploadType?: string;
10635
10789
  },
10636
- body: GoogleCloudAiplatformV1beta1UploadRagFileRequest
10790
+ body: GoogleCloudAiplatformV1beta1UploadRagFileRequest,
10637
10791
  ): Request<GoogleCloudAiplatformV1beta1UploadRagFileResponse>;
10638
10792
  }
10639
10793
  interface OperationsResource {
@@ -10989,7 +11143,7 @@ declare namespace gapi.client {
10989
11143
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
10990
11144
  uploadType?: string;
10991
11145
  },
10992
- body: GoogleCloudAiplatformV1beta1CancelBatchPredictionJobRequest
11146
+ body: GoogleCloudAiplatformV1beta1CancelBatchPredictionJobRequest,
10993
11147
  ): Request<{}>;
10994
11148
  /** Creates a BatchPredictionJob. A BatchPredictionJob once created will right away be attempted to start. */
10995
11149
  create(request: {
@@ -11047,7 +11201,7 @@ declare namespace gapi.client {
11047
11201
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11048
11202
  uploadType?: string;
11049
11203
  },
11050
- body: GoogleCloudAiplatformV1beta1BatchPredictionJob
11204
+ body: GoogleCloudAiplatformV1beta1BatchPredictionJob,
11051
11205
  ): Request<GoogleCloudAiplatformV1beta1BatchPredictionJob>;
11052
11206
  /** Deletes a BatchPredictionJob. Can only be called on jobs that already finished. */
11053
11207
  delete(request?: {
@@ -11196,7 +11350,7 @@ declare namespace gapi.client {
11196
11350
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11197
11351
  uploadType?: string;
11198
11352
  },
11199
- body: GoogleCloudAiplatformV1beta1CachedContent
11353
+ body: GoogleCloudAiplatformV1beta1CachedContent,
11200
11354
  ): Request<GoogleCloudAiplatformV1beta1CachedContent>;
11201
11355
  /** Deletes cached content */
11202
11356
  delete(request?: {
@@ -11343,7 +11497,7 @@ declare namespace gapi.client {
11343
11497
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11344
11498
  uploadType?: string;
11345
11499
  },
11346
- body: GoogleCloudAiplatformV1beta1CachedContent
11500
+ body: GoogleCloudAiplatformV1beta1CachedContent,
11347
11501
  ): Request<GoogleCloudAiplatformV1beta1CachedContent>;
11348
11502
  }
11349
11503
  interface OperationsResource {
@@ -11548,7 +11702,7 @@ declare namespace gapi.client {
11548
11702
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11549
11703
  uploadType?: string;
11550
11704
  },
11551
- body: GoogleCloudAiplatformV1beta1CancelCustomJobRequest
11705
+ body: GoogleCloudAiplatformV1beta1CancelCustomJobRequest,
11552
11706
  ): Request<{}>;
11553
11707
  /** Creates a CustomJob. A created CustomJob right away will be attempted to be run. */
11554
11708
  create(request: {
@@ -11606,7 +11760,7 @@ declare namespace gapi.client {
11606
11760
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11607
11761
  uploadType?: string;
11608
11762
  },
11609
- body: GoogleCloudAiplatformV1beta1CustomJob
11763
+ body: GoogleCloudAiplatformV1beta1CustomJob,
11610
11764
  ): Request<GoogleCloudAiplatformV1beta1CustomJob>;
11611
11765
  /** Deletes a CustomJob. */
11612
11766
  delete(request?: {
@@ -11901,7 +12055,7 @@ declare namespace gapi.client {
11901
12055
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11902
12056
  uploadType?: string;
11903
12057
  },
11904
- body: GoogleCloudAiplatformV1beta1CancelDataLabelingJobRequest
12058
+ body: GoogleCloudAiplatformV1beta1CancelDataLabelingJobRequest,
11905
12059
  ): Request<{}>;
11906
12060
  /** Creates a DataLabelingJob. */
11907
12061
  create(request: {
@@ -11959,7 +12113,7 @@ declare namespace gapi.client {
11959
12113
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11960
12114
  uploadType?: string;
11961
12115
  },
11962
- body: GoogleCloudAiplatformV1beta1DataLabelingJob
12116
+ body: GoogleCloudAiplatformV1beta1DataLabelingJob,
11963
12117
  ): Request<GoogleCloudAiplatformV1beta1DataLabelingJob>;
11964
12118
  /** Deletes a DataLabelingJob. */
11965
12119
  delete(request?: {
@@ -12659,7 +12813,7 @@ declare namespace gapi.client {
12659
12813
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12660
12814
  uploadType?: string;
12661
12815
  },
12662
- body: GoogleCloudAiplatformV1beta1DatasetVersion
12816
+ body: GoogleCloudAiplatformV1beta1DatasetVersion,
12663
12817
  ): Request<GoogleLongrunningOperation>;
12664
12818
  /** Deletes a Dataset version. */
12665
12819
  delete(request?: {
@@ -12814,7 +12968,7 @@ declare namespace gapi.client {
12814
12968
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12815
12969
  uploadType?: string;
12816
12970
  },
12817
- body: GoogleCloudAiplatformV1beta1DatasetVersion
12971
+ body: GoogleCloudAiplatformV1beta1DatasetVersion,
12818
12972
  ): Request<GoogleCloudAiplatformV1beta1DatasetVersion>;
12819
12973
  /** Restores a dataset version. */
12820
12974
  restore(request?: {
@@ -13258,7 +13412,7 @@ declare namespace gapi.client {
13258
13412
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13259
13413
  uploadType?: string;
13260
13414
  },
13261
- body: GoogleCloudAiplatformV1beta1Dataset
13415
+ body: GoogleCloudAiplatformV1beta1Dataset,
13262
13416
  ): Request<GoogleLongrunningOperation>;
13263
13417
  /** Deletes a Dataset. */
13264
13418
  delete(request?: {
@@ -13343,7 +13497,7 @@ declare namespace gapi.client {
13343
13497
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13344
13498
  uploadType?: string;
13345
13499
  },
13346
- body: GoogleCloudAiplatformV1beta1ExportDataRequest
13500
+ body: GoogleCloudAiplatformV1beta1ExportDataRequest,
13347
13501
  ): Request<GoogleLongrunningOperation>;
13348
13502
  /** Gets a Dataset. */
13349
13503
  get(request?: {
@@ -13430,7 +13584,7 @@ declare namespace gapi.client {
13430
13584
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13431
13585
  uploadType?: string;
13432
13586
  },
13433
- body: GoogleCloudAiplatformV1beta1ImportDataRequest
13587
+ body: GoogleCloudAiplatformV1beta1ImportDataRequest,
13434
13588
  ): Request<GoogleLongrunningOperation>;
13435
13589
  /** Lists Datasets in a Location. */
13436
13590
  list(request?: {
@@ -13529,7 +13683,7 @@ declare namespace gapi.client {
13529
13683
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13530
13684
  uploadType?: string;
13531
13685
  },
13532
- body: GoogleCloudAiplatformV1beta1Dataset
13686
+ body: GoogleCloudAiplatformV1beta1Dataset,
13533
13687
  ): Request<GoogleCloudAiplatformV1beta1Dataset>;
13534
13688
  /** Searches DataItems in a Dataset. */
13535
13689
  searchDataItems(request?: {
@@ -13792,7 +13946,7 @@ declare namespace gapi.client {
13792
13946
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13793
13947
  uploadType?: string;
13794
13948
  },
13795
- body: GoogleCloudAiplatformV1beta1CreateDeploymentResourcePoolRequest
13949
+ body: GoogleCloudAiplatformV1beta1CreateDeploymentResourcePoolRequest,
13796
13950
  ): Request<GoogleLongrunningOperation>;
13797
13951
  /** Delete a DeploymentResourcePool. */
13798
13952
  delete(request?: {
@@ -13939,7 +14093,7 @@ declare namespace gapi.client {
13939
14093
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13940
14094
  uploadType?: string;
13941
14095
  },
13942
- body: GoogleCloudAiplatformV1beta1DeploymentResourcePool
14096
+ body: GoogleCloudAiplatformV1beta1DeploymentResourcePool,
13943
14097
  ): Request<GoogleLongrunningOperation>;
13944
14098
  /** List DeployedModels that have been deployed on this DeploymentResourcePool. */
13945
14099
  queryDeployedModels(request?: {
@@ -14179,7 +14333,7 @@ declare namespace gapi.client {
14179
14333
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14180
14334
  uploadType?: string;
14181
14335
  },
14182
- body: GoogleApiHttpBody
14336
+ body: GoogleApiHttpBody,
14183
14337
  ): Request<GoogleApiHttpBody>;
14184
14338
  }
14185
14339
  interface OperationsResource {
@@ -14384,7 +14538,7 @@ declare namespace gapi.client {
14384
14538
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14385
14539
  uploadType?: string;
14386
14540
  },
14387
- body: GoogleCloudAiplatformV1beta1ComputeTokensRequest
14541
+ body: GoogleCloudAiplatformV1beta1ComputeTokensRequest,
14388
14542
  ): Request<GoogleCloudAiplatformV1beta1ComputeTokensResponse>;
14389
14543
  /** Perform a token counting. */
14390
14544
  countTokens(request: {
@@ -14442,7 +14596,7 @@ declare namespace gapi.client {
14442
14596
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14443
14597
  uploadType?: string;
14444
14598
  },
14445
- body: GoogleCloudAiplatformV1beta1CountTokensRequest
14599
+ body: GoogleCloudAiplatformV1beta1CountTokensRequest,
14446
14600
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
14447
14601
  /** Creates an Endpoint. */
14448
14602
  create(request: {
@@ -14504,7 +14658,7 @@ declare namespace gapi.client {
14504
14658
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14505
14659
  uploadType?: string;
14506
14660
  },
14507
- body: GoogleCloudAiplatformV1beta1Endpoint
14661
+ body: GoogleCloudAiplatformV1beta1Endpoint,
14508
14662
  ): Request<GoogleLongrunningOperation>;
14509
14663
  /** Deletes an Endpoint. */
14510
14664
  delete(request?: {
@@ -14589,7 +14743,7 @@ declare namespace gapi.client {
14589
14743
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14590
14744
  uploadType?: string;
14591
14745
  },
14592
- body: GoogleCloudAiplatformV1beta1DeployModelRequest
14746
+ body: GoogleCloudAiplatformV1beta1DeployModelRequest,
14593
14747
  ): Request<GoogleLongrunningOperation>;
14594
14748
  /** Perform an unary online prediction request to a gRPC model server for Vertex first-party products and frameworks. */
14595
14749
  directPredict(request: {
@@ -14647,7 +14801,7 @@ declare namespace gapi.client {
14647
14801
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14648
14802
  uploadType?: string;
14649
14803
  },
14650
- body: GoogleCloudAiplatformV1beta1DirectPredictRequest
14804
+ body: GoogleCloudAiplatformV1beta1DirectPredictRequest,
14651
14805
  ): Request<GoogleCloudAiplatformV1beta1DirectPredictResponse>;
14652
14806
  /** Perform an unary online prediction request to a gRPC model server for custom containers. */
14653
14807
  directRawPredict(request: {
@@ -14705,7 +14859,7 @@ declare namespace gapi.client {
14705
14859
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14706
14860
  uploadType?: string;
14707
14861
  },
14708
- body: GoogleCloudAiplatformV1beta1DirectRawPredictRequest
14862
+ body: GoogleCloudAiplatformV1beta1DirectRawPredictRequest,
14709
14863
  ): Request<GoogleCloudAiplatformV1beta1DirectRawPredictResponse>;
14710
14864
  /** 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
14865
  explain(request: {
@@ -14763,7 +14917,7 @@ declare namespace gapi.client {
14763
14917
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14764
14918
  uploadType?: string;
14765
14919
  },
14766
- body: GoogleCloudAiplatformV1beta1ExplainRequest
14920
+ body: GoogleCloudAiplatformV1beta1ExplainRequest,
14767
14921
  ): Request<GoogleCloudAiplatformV1beta1ExplainResponse>;
14768
14922
  /** Fetch an asynchronous online prediction operation. */
14769
14923
  fetchPredictOperation(request: {
@@ -14821,7 +14975,7 @@ declare namespace gapi.client {
14821
14975
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14822
14976
  uploadType?: string;
14823
14977
  },
14824
- body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest
14978
+ body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest,
14825
14979
  ): Request<GoogleLongrunningOperation>;
14826
14980
  /** Generate content with multimodal inputs. */
14827
14981
  generateContent(request: {
@@ -14879,7 +15033,7 @@ declare namespace gapi.client {
14879
15033
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14880
15034
  uploadType?: string;
14881
15035
  },
14882
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
15036
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
14883
15037
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
14884
15038
  /** Gets an Endpoint. */
14885
15039
  get(request?: {
@@ -15028,7 +15182,7 @@ declare namespace gapi.client {
15028
15182
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15029
15183
  uploadType?: string;
15030
15184
  },
15031
- body: GoogleCloudAiplatformV1beta1MutateDeployedModelRequest
15185
+ body: GoogleCloudAiplatformV1beta1MutateDeployedModelRequest,
15032
15186
  ): Request<GoogleLongrunningOperation>;
15033
15187
  /** Updates an Endpoint. */
15034
15188
  patch(request: {
@@ -15090,7 +15244,7 @@ declare namespace gapi.client {
15090
15244
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15091
15245
  uploadType?: string;
15092
15246
  },
15093
- body: GoogleCloudAiplatformV1beta1Endpoint
15247
+ body: GoogleCloudAiplatformV1beta1Endpoint,
15094
15248
  ): Request<GoogleCloudAiplatformV1beta1Endpoint>;
15095
15249
  /** Perform an online prediction. */
15096
15250
  predict(request: {
@@ -15148,7 +15302,7 @@ declare namespace gapi.client {
15148
15302
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15149
15303
  uploadType?: string;
15150
15304
  },
15151
- body: GoogleCloudAiplatformV1beta1PredictRequest
15305
+ body: GoogleCloudAiplatformV1beta1PredictRequest,
15152
15306
  ): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
15153
15307
  predictLongRunning(request: {
15154
15308
  /** V1 error format. */
@@ -15205,7 +15359,7 @@ declare namespace gapi.client {
15205
15359
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15206
15360
  uploadType?: string;
15207
15361
  },
15208
- body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest
15362
+ body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest,
15209
15363
  ): Request<GoogleLongrunningOperation>;
15210
15364
  /** 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
15365
  rawPredict(request: {
@@ -15263,7 +15417,7 @@ declare namespace gapi.client {
15263
15417
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15264
15418
  uploadType?: string;
15265
15419
  },
15266
- body: GoogleCloudAiplatformV1beta1RawPredictRequest
15420
+ body: GoogleCloudAiplatformV1beta1RawPredictRequest,
15267
15421
  ): Request<GoogleApiHttpBody>;
15268
15422
  /** Perform a server-side streaming online prediction request for Vertex LLM streaming. */
15269
15423
  serverStreamingPredict(request: {
@@ -15321,7 +15475,7 @@ declare namespace gapi.client {
15321
15475
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15322
15476
  uploadType?: string;
15323
15477
  },
15324
- body: GoogleCloudAiplatformV1beta1StreamingPredictRequest
15478
+ body: GoogleCloudAiplatformV1beta1StreamingPredictRequest,
15325
15479
  ): Request<GoogleCloudAiplatformV1beta1StreamingPredictResponse>;
15326
15480
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
15327
15481
  setIamPolicy(
@@ -15351,7 +15505,7 @@ declare namespace gapi.client {
15351
15505
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15352
15506
  uploadType?: string;
15353
15507
  },
15354
- body: GoogleIamV1SetIamPolicyRequest
15508
+ body: GoogleIamV1SetIamPolicyRequest,
15355
15509
  ): Request<GoogleIamV1Policy>;
15356
15510
  /** Generate content with multimodal inputs with streaming support. */
15357
15511
  streamGenerateContent(request: {
@@ -15409,7 +15563,7 @@ declare namespace gapi.client {
15409
15563
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15410
15564
  uploadType?: string;
15411
15565
  },
15412
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
15566
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
15413
15567
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
15414
15568
  /** Perform a streaming online prediction with an arbitrary HTTP payload. */
15415
15569
  streamRawPredict(request: {
@@ -15467,7 +15621,7 @@ declare namespace gapi.client {
15467
15621
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15468
15622
  uploadType?: string;
15469
15623
  },
15470
- body: GoogleCloudAiplatformV1beta1StreamRawPredictRequest
15624
+ body: GoogleCloudAiplatformV1beta1StreamRawPredictRequest,
15471
15625
  ): Request<GoogleApiHttpBody>;
15472
15626
  /** 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
15627
  testIamPermissions(request?: {
@@ -15554,7 +15708,7 @@ declare namespace gapi.client {
15554
15708
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15555
15709
  uploadType?: string;
15556
15710
  },
15557
- body: GoogleCloudAiplatformV1beta1UndeployModelRequest
15711
+ body: GoogleCloudAiplatformV1beta1UndeployModelRequest,
15558
15712
  ): Request<GoogleLongrunningOperation>;
15559
15713
  /** Updates an Endpoint with a long running operation. */
15560
15714
  update(request: {
@@ -15612,7 +15766,7 @@ declare namespace gapi.client {
15612
15766
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15613
15767
  uploadType?: string;
15614
15768
  },
15615
- body: GoogleCloudAiplatformV1beta1UpdateEndpointLongRunningRequest
15769
+ body: GoogleCloudAiplatformV1beta1UpdateEndpointLongRunningRequest,
15616
15770
  ): Request<GoogleLongrunningOperation>;
15617
15771
  chat: ChatResource;
15618
15772
  operations: OperationsResource;
@@ -16263,7 +16417,7 @@ declare namespace gapi.client {
16263
16417
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16264
16418
  uploadType?: string;
16265
16419
  },
16266
- body: GoogleCloudAiplatformV1beta1ExecuteExtensionRequest
16420
+ body: GoogleCloudAiplatformV1beta1ExecuteExtensionRequest,
16267
16421
  ): Request<GoogleCloudAiplatformV1beta1ExecuteExtensionResponse>;
16268
16422
  /** Gets an Extension. */
16269
16423
  get(request?: {
@@ -16348,7 +16502,7 @@ declare namespace gapi.client {
16348
16502
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16349
16503
  uploadType?: string;
16350
16504
  },
16351
- body: GoogleCloudAiplatformV1beta1Extension
16505
+ body: GoogleCloudAiplatformV1beta1Extension,
16352
16506
  ): Request<GoogleLongrunningOperation>;
16353
16507
  /** Lists Extensions in a location. */
16354
16508
  list(request?: {
@@ -16445,7 +16599,7 @@ declare namespace gapi.client {
16445
16599
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16446
16600
  uploadType?: string;
16447
16601
  },
16448
- body: GoogleCloudAiplatformV1beta1Extension
16602
+ body: GoogleCloudAiplatformV1beta1Extension,
16449
16603
  ): Request<GoogleCloudAiplatformV1beta1Extension>;
16450
16604
  /** Queries an extension with a default controller. */
16451
16605
  query(request: {
@@ -16503,7 +16657,7 @@ declare namespace gapi.client {
16503
16657
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16504
16658
  uploadType?: string;
16505
16659
  },
16506
- body: GoogleCloudAiplatformV1beta1QueryExtensionRequest
16660
+ body: GoogleCloudAiplatformV1beta1QueryExtensionRequest,
16507
16661
  ): Request<GoogleCloudAiplatformV1beta1QueryExtensionResponse>;
16508
16662
  operations: OperationsResource;
16509
16663
  }
@@ -16568,7 +16722,7 @@ declare namespace gapi.client {
16568
16722
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16569
16723
  uploadType?: string;
16570
16724
  },
16571
- body: GoogleCloudAiplatformV1beta1FeatureMonitorJob
16725
+ body: GoogleCloudAiplatformV1beta1FeatureMonitorJob,
16572
16726
  ): Request<GoogleCloudAiplatformV1beta1FeatureMonitorJob>;
16573
16727
  /** Get a feature monitor job. */
16574
16728
  get(request?: {
@@ -16812,7 +16966,7 @@ declare namespace gapi.client {
16812
16966
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16813
16967
  uploadType?: string;
16814
16968
  },
16815
- body: GoogleCloudAiplatformV1beta1FeatureMonitor
16969
+ body: GoogleCloudAiplatformV1beta1FeatureMonitor,
16816
16970
  ): Request<GoogleLongrunningOperation>;
16817
16971
  /** Deletes a single FeatureMonitor. */
16818
16972
  delete(request?: {
@@ -17081,7 +17235,7 @@ declare namespace gapi.client {
17081
17235
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17082
17236
  uploadType?: string;
17083
17237
  },
17084
- body: GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest
17238
+ body: GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest,
17085
17239
  ): Request<GoogleLongrunningOperation>;
17086
17240
  /** Creates a new Feature in a given FeatureGroup. */
17087
17241
  create(request: {
@@ -17143,7 +17297,7 @@ declare namespace gapi.client {
17143
17297
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17144
17298
  uploadType?: string;
17145
17299
  },
17146
- body: GoogleCloudAiplatformV1beta1Feature
17300
+ body: GoogleCloudAiplatformV1beta1Feature,
17147
17301
  ): Request<GoogleLongrunningOperation>;
17148
17302
  /** Deletes a single Feature. */
17149
17303
  delete(request?: {
@@ -17304,7 +17458,7 @@ declare namespace gapi.client {
17304
17458
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17305
17459
  uploadType?: string;
17306
17460
  },
17307
- body: GoogleCloudAiplatformV1beta1Feature
17461
+ body: GoogleCloudAiplatformV1beta1Feature,
17308
17462
  ): Request<GoogleLongrunningOperation>;
17309
17463
  operations: OperationsResource;
17310
17464
  }
@@ -17487,7 +17641,7 @@ declare namespace gapi.client {
17487
17641
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17488
17642
  uploadType?: string;
17489
17643
  },
17490
- body: GoogleCloudAiplatformV1beta1FeatureGroup
17644
+ body: GoogleCloudAiplatformV1beta1FeatureGroup,
17491
17645
  ): Request<GoogleLongrunningOperation>;
17492
17646
  /** Deletes a single FeatureGroup. */
17493
17647
  delete(request?: {
@@ -17669,7 +17823,7 @@ declare namespace gapi.client {
17669
17823
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17670
17824
  uploadType?: string;
17671
17825
  },
17672
- body: GoogleCloudAiplatformV1beta1FeatureGroup
17826
+ body: GoogleCloudAiplatformV1beta1FeatureGroup,
17673
17827
  ): Request<GoogleLongrunningOperation>;
17674
17828
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
17675
17829
  setIamPolicy(
@@ -17699,7 +17853,7 @@ declare namespace gapi.client {
17699
17853
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17700
17854
  uploadType?: string;
17701
17855
  },
17702
- body: GoogleIamV1SetIamPolicyRequest
17856
+ body: GoogleIamV1SetIamPolicyRequest,
17703
17857
  ): Request<GoogleIamV1Policy>;
17704
17858
  /** 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
17859
  testIamPermissions(request?: {
@@ -17981,7 +18135,7 @@ declare namespace gapi.client {
17981
18135
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
17982
18136
  uploadType?: string;
17983
18137
  },
17984
- body: GoogleCloudAiplatformV1beta1FeatureView
18138
+ body: GoogleCloudAiplatformV1beta1FeatureView,
17985
18139
  ): Request<GoogleLongrunningOperation>;
17986
18140
  /** Deletes a single FeatureView. */
17987
18141
  delete(request?: {
@@ -18066,7 +18220,7 @@ declare namespace gapi.client {
18066
18220
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18067
18221
  uploadType?: string;
18068
18222
  },
18069
- body: GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest
18223
+ body: GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest,
18070
18224
  ): Request<GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse>;
18071
18225
  /** Gets details of a single FeatureView. */
18072
18226
  get(request?: {
@@ -18219,7 +18373,7 @@ declare namespace gapi.client {
18219
18373
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18220
18374
  uploadType?: string;
18221
18375
  },
18222
- body: GoogleCloudAiplatformV1beta1FeatureView
18376
+ body: GoogleCloudAiplatformV1beta1FeatureView,
18223
18377
  ): Request<GoogleLongrunningOperation>;
18224
18378
  /** 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
18379
  searchNearestEntities(request: {
@@ -18277,7 +18431,7 @@ declare namespace gapi.client {
18277
18431
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18278
18432
  uploadType?: string;
18279
18433
  },
18280
- body: GoogleCloudAiplatformV1beta1SearchNearestEntitiesRequest
18434
+ body: GoogleCloudAiplatformV1beta1SearchNearestEntitiesRequest,
18281
18435
  ): Request<GoogleCloudAiplatformV1beta1SearchNearestEntitiesResponse>;
18282
18436
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
18283
18437
  setIamPolicy(
@@ -18307,7 +18461,7 @@ declare namespace gapi.client {
18307
18461
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18308
18462
  uploadType?: string;
18309
18463
  },
18310
- body: GoogleIamV1SetIamPolicyRequest
18464
+ body: GoogleIamV1SetIamPolicyRequest,
18311
18465
  ): Request<GoogleIamV1Policy>;
18312
18466
  /** 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
18467
  streamingFetchFeatureValues(request: {
@@ -18365,7 +18519,7 @@ declare namespace gapi.client {
18365
18519
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18366
18520
  uploadType?: string;
18367
18521
  },
18368
- body: GoogleCloudAiplatformV1beta1StreamingFetchFeatureValuesRequest
18522
+ body: GoogleCloudAiplatformV1beta1StreamingFetchFeatureValuesRequest,
18369
18523
  ): Request<GoogleCloudAiplatformV1beta1StreamingFetchFeatureValuesResponse>;
18370
18524
  /** Triggers on-demand sync for the FeatureView. */
18371
18525
  sync(request: {
@@ -18423,7 +18577,7 @@ declare namespace gapi.client {
18423
18577
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18424
18578
  uploadType?: string;
18425
18579
  },
18426
- body: GoogleCloudAiplatformV1beta1SyncFeatureViewRequest
18580
+ body: GoogleCloudAiplatformV1beta1SyncFeatureViewRequest,
18427
18581
  ): Request<GoogleCloudAiplatformV1beta1SyncFeatureViewResponse>;
18428
18582
  /** 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
18583
  testIamPermissions(request?: {
@@ -18636,7 +18790,7 @@ declare namespace gapi.client {
18636
18790
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18637
18791
  uploadType?: string;
18638
18792
  },
18639
- body: GoogleCloudAiplatformV1beta1FeatureOnlineStore
18793
+ body: GoogleCloudAiplatformV1beta1FeatureOnlineStore,
18640
18794
  ): Request<GoogleLongrunningOperation>;
18641
18795
  /** Deletes a single FeatureOnlineStore. The FeatureOnlineStore must not contain any FeatureViews. */
18642
18796
  delete(request?: {
@@ -18818,7 +18972,7 @@ declare namespace gapi.client {
18818
18972
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18819
18973
  uploadType?: string;
18820
18974
  },
18821
- body: GoogleCloudAiplatformV1beta1FeatureOnlineStore
18975
+ body: GoogleCloudAiplatformV1beta1FeatureOnlineStore,
18822
18976
  ): Request<GoogleLongrunningOperation>;
18823
18977
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
18824
18978
  setIamPolicy(
@@ -18848,7 +19002,7 @@ declare namespace gapi.client {
18848
19002
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18849
19003
  uploadType?: string;
18850
19004
  },
18851
- body: GoogleIamV1SetIamPolicyRequest
19005
+ body: GoogleIamV1SetIamPolicyRequest,
18852
19006
  ): Request<GoogleIamV1Policy>;
18853
19007
  /** 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
19008
  testIamPermissions(request?: {
@@ -19084,7 +19238,7 @@ declare namespace gapi.client {
19084
19238
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19085
19239
  uploadType?: string;
19086
19240
  },
19087
- body: GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest
19241
+ body: GoogleCloudAiplatformV1beta1BatchCreateFeaturesRequest,
19088
19242
  ): Request<GoogleLongrunningOperation>;
19089
19243
  /** Creates a new Feature in a given EntityType. */
19090
19244
  create(request: {
@@ -19146,7 +19300,7 @@ declare namespace gapi.client {
19146
19300
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19147
19301
  uploadType?: string;
19148
19302
  },
19149
- body: GoogleCloudAiplatformV1beta1Feature
19303
+ body: GoogleCloudAiplatformV1beta1Feature,
19150
19304
  ): Request<GoogleLongrunningOperation>;
19151
19305
  /** Deletes a single Feature. */
19152
19306
  delete(request?: {
@@ -19307,7 +19461,7 @@ declare namespace gapi.client {
19307
19461
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19308
19462
  uploadType?: string;
19309
19463
  },
19310
- body: GoogleCloudAiplatformV1beta1Feature
19464
+ body: GoogleCloudAiplatformV1beta1Feature,
19311
19465
  ): Request<GoogleCloudAiplatformV1beta1Feature>;
19312
19466
  operations: OperationsResource;
19313
19467
  }
@@ -19517,7 +19671,7 @@ declare namespace gapi.client {
19517
19671
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19518
19672
  uploadType?: string;
19519
19673
  },
19520
- body: GoogleCloudAiplatformV1beta1EntityType
19674
+ body: GoogleCloudAiplatformV1beta1EntityType,
19521
19675
  ): Request<GoogleLongrunningOperation>;
19522
19676
  /** Deletes a single EntityType. The EntityType must not have any Features or `force` must be set to true for the request to succeed. */
19523
19677
  delete(request?: {
@@ -19604,7 +19758,7 @@ declare namespace gapi.client {
19604
19758
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19605
19759
  uploadType?: string;
19606
19760
  },
19607
- body: GoogleCloudAiplatformV1beta1DeleteFeatureValuesRequest
19761
+ body: GoogleCloudAiplatformV1beta1DeleteFeatureValuesRequest,
19608
19762
  ): Request<GoogleLongrunningOperation>;
19609
19763
  /** Exports Feature values from all the entities of a target EntityType. */
19610
19764
  exportFeatureValues(request: {
@@ -19662,7 +19816,7 @@ declare namespace gapi.client {
19662
19816
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19663
19817
  uploadType?: string;
19664
19818
  },
19665
- body: GoogleCloudAiplatformV1beta1ExportFeatureValuesRequest
19819
+ body: GoogleCloudAiplatformV1beta1ExportFeatureValuesRequest,
19666
19820
  ): Request<GoogleLongrunningOperation>;
19667
19821
  /** Gets details of a single EntityType. */
19668
19822
  get(request?: {
@@ -19776,7 +19930,7 @@ declare namespace gapi.client {
19776
19930
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19777
19931
  uploadType?: string;
19778
19932
  },
19779
- body: GoogleCloudAiplatformV1beta1ImportFeatureValuesRequest
19933
+ body: GoogleCloudAiplatformV1beta1ImportFeatureValuesRequest,
19780
19934
  ): Request<GoogleLongrunningOperation>;
19781
19935
  /** Lists EntityTypes in a given Featurestore. */
19782
19936
  list(request?: {
@@ -19875,7 +20029,7 @@ declare namespace gapi.client {
19875
20029
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19876
20030
  uploadType?: string;
19877
20031
  },
19878
- body: GoogleCloudAiplatformV1beta1EntityType
20032
+ body: GoogleCloudAiplatformV1beta1EntityType,
19879
20033
  ): Request<GoogleCloudAiplatformV1beta1EntityType>;
19880
20034
  /** Reads Feature values of a specific entity of an EntityType. For reading feature values of multiple entities of an EntityType, please use StreamingReadFeatureValues. */
19881
20035
  readFeatureValues(request: {
@@ -19933,7 +20087,7 @@ declare namespace gapi.client {
19933
20087
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19934
20088
  uploadType?: string;
19935
20089
  },
19936
- body: GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest
20090
+ body: GoogleCloudAiplatformV1beta1ReadFeatureValuesRequest,
19937
20091
  ): Request<GoogleCloudAiplatformV1beta1ReadFeatureValuesResponse>;
19938
20092
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
19939
20093
  setIamPolicy(
@@ -19963,7 +20117,7 @@ declare namespace gapi.client {
19963
20117
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
19964
20118
  uploadType?: string;
19965
20119
  },
19966
- body: GoogleIamV1SetIamPolicyRequest
20120
+ body: GoogleIamV1SetIamPolicyRequest,
19967
20121
  ): Request<GoogleIamV1Policy>;
19968
20122
  /** Reads Feature values for multiple entities. Depending on their size, data for different entities may be broken up across multiple responses. */
19969
20123
  streamingReadFeatureValues(request: {
@@ -20021,7 +20175,7 @@ declare namespace gapi.client {
20021
20175
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20022
20176
  uploadType?: string;
20023
20177
  },
20024
- body: GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest
20178
+ body: GoogleCloudAiplatformV1beta1StreamingReadFeatureValuesRequest,
20025
20179
  ): Request<GoogleCloudAiplatformV1beta1ReadFeatureValuesResponse>;
20026
20180
  /** 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
20181
  testIamPermissions(request?: {
@@ -20108,7 +20262,7 @@ declare namespace gapi.client {
20108
20262
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20109
20263
  uploadType?: string;
20110
20264
  },
20111
- body: GoogleCloudAiplatformV1beta1WriteFeatureValuesRequest
20265
+ body: GoogleCloudAiplatformV1beta1WriteFeatureValuesRequest,
20112
20266
  ): Request<{}>;
20113
20267
  features: FeaturesResource;
20114
20268
  operations: OperationsResource;
@@ -20315,7 +20469,7 @@ declare namespace gapi.client {
20315
20469
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20316
20470
  uploadType?: string;
20317
20471
  },
20318
- body: GoogleCloudAiplatformV1beta1BatchReadFeatureValuesRequest
20472
+ body: GoogleCloudAiplatformV1beta1BatchReadFeatureValuesRequest,
20319
20473
  ): Request<GoogleLongrunningOperation>;
20320
20474
  /** Creates a new Featurestore in a given project and location. */
20321
20475
  create(request: {
@@ -20377,7 +20531,7 @@ declare namespace gapi.client {
20377
20531
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20378
20532
  uploadType?: string;
20379
20533
  },
20380
- body: GoogleCloudAiplatformV1beta1Featurestore
20534
+ body: GoogleCloudAiplatformV1beta1Featurestore,
20381
20535
  ): Request<GoogleLongrunningOperation>;
20382
20536
  /** Deletes a single Featurestore. The Featurestore must not contain any EntityTypes or `force` must be set to true for the request to succeed. */
20383
20537
  delete(request?: {
@@ -20463,7 +20617,7 @@ declare namespace gapi.client {
20463
20617
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20464
20618
  uploadType?: string;
20465
20619
  },
20466
- body: GoogleIamV1GetIamPolicyRequest
20620
+ body: GoogleIamV1GetIamPolicyRequest,
20467
20621
  ): Request<GoogleIamV1Policy>;
20468
20622
  /** Lists Featurestores in a given project and location. */
20469
20623
  list(request?: {
@@ -20562,7 +20716,7 @@ declare namespace gapi.client {
20562
20716
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20563
20717
  uploadType?: string;
20564
20718
  },
20565
- body: GoogleCloudAiplatformV1beta1Featurestore
20719
+ body: GoogleCloudAiplatformV1beta1Featurestore,
20566
20720
  ): Request<GoogleLongrunningOperation>;
20567
20721
  /** Searches Features matching a query in a given project. */
20568
20722
  searchFeatures(request?: {
@@ -20625,7 +20779,7 @@ declare namespace gapi.client {
20625
20779
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20626
20780
  uploadType?: string;
20627
20781
  },
20628
- body: GoogleIamV1SetIamPolicyRequest
20782
+ body: GoogleIamV1SetIamPolicyRequest,
20629
20783
  ): Request<GoogleIamV1Policy>;
20630
20784
  /** 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
20785
  testIamPermissions(
@@ -20655,7 +20809,7 @@ declare namespace gapi.client {
20655
20809
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20656
20810
  uploadType?: string;
20657
20811
  },
20658
- body: GoogleIamV1TestIamPermissionsRequest
20812
+ body: GoogleIamV1TestIamPermissionsRequest,
20659
20813
  ): Request<GoogleIamV1TestIamPermissionsResponse>;
20660
20814
  entityTypes: EntityTypesResource;
20661
20815
  operations: OperationsResource;
@@ -20862,7 +21016,7 @@ declare namespace gapi.client {
20862
21016
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20863
21017
  uploadType?: string;
20864
21018
  },
20865
- body: GoogleCloudAiplatformV1beta1CancelHyperparameterTuningJobRequest
21019
+ body: GoogleCloudAiplatformV1beta1CancelHyperparameterTuningJobRequest,
20866
21020
  ): Request<{}>;
20867
21021
  /** Creates a HyperparameterTuningJob */
20868
21022
  create(request: {
@@ -20920,7 +21074,7 @@ declare namespace gapi.client {
20920
21074
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
20921
21075
  uploadType?: string;
20922
21076
  },
20923
- body: GoogleCloudAiplatformV1beta1HyperparameterTuningJob
21077
+ body: GoogleCloudAiplatformV1beta1HyperparameterTuningJob,
20924
21078
  ): Request<GoogleCloudAiplatformV1beta1HyperparameterTuningJob>;
20925
21079
  /** Deletes a HyperparameterTuningJob. */
20926
21080
  delete(request?: {
@@ -21215,7 +21369,7 @@ declare namespace gapi.client {
21215
21369
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21216
21370
  uploadType?: string;
21217
21371
  },
21218
- body: GoogleCloudAiplatformV1beta1IndexEndpoint
21372
+ body: GoogleCloudAiplatformV1beta1IndexEndpoint,
21219
21373
  ): Request<GoogleLongrunningOperation>;
21220
21374
  /** Deletes an IndexEndpoint. */
21221
21375
  delete(request?: {
@@ -21244,7 +21398,7 @@ declare namespace gapi.client {
21244
21398
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21245
21399
  uploadType?: string;
21246
21400
  }): Request<GoogleLongrunningOperation>;
21247
- /** Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. Only non-empty Indexes can be deployed. */
21401
+ /** Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. */
21248
21402
  deployIndex(request: {
21249
21403
  /** V1 error format. */
21250
21404
  '$.xgafv'?: string;
@@ -21300,7 +21454,7 @@ declare namespace gapi.client {
21300
21454
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21301
21455
  uploadType?: string;
21302
21456
  },
21303
- body: GoogleCloudAiplatformV1beta1DeployIndexRequest
21457
+ body: GoogleCloudAiplatformV1beta1DeployIndexRequest,
21304
21458
  ): Request<GoogleLongrunningOperation>;
21305
21459
  /** Finds the nearest neighbors of each vector within the request. */
21306
21460
  findNeighbors(request: {
@@ -21358,7 +21512,7 @@ declare namespace gapi.client {
21358
21512
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21359
21513
  uploadType?: string;
21360
21514
  },
21361
- body: GoogleCloudAiplatformV1beta1FindNeighborsRequest
21515
+ body: GoogleCloudAiplatformV1beta1FindNeighborsRequest,
21362
21516
  ): Request<GoogleCloudAiplatformV1beta1FindNeighborsResponse>;
21363
21517
  /** Gets an IndexEndpoint. */
21364
21518
  get(request?: {
@@ -21478,7 +21632,7 @@ declare namespace gapi.client {
21478
21632
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21479
21633
  uploadType?: string;
21480
21634
  },
21481
- body: GoogleCloudAiplatformV1beta1DeployedIndex
21635
+ body: GoogleCloudAiplatformV1beta1DeployedIndex,
21482
21636
  ): Request<GoogleLongrunningOperation>;
21483
21637
  /** Updates an IndexEndpoint. */
21484
21638
  patch(request: {
@@ -21540,7 +21694,7 @@ declare namespace gapi.client {
21540
21694
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21541
21695
  uploadType?: string;
21542
21696
  },
21543
- body: GoogleCloudAiplatformV1beta1IndexEndpoint
21697
+ body: GoogleCloudAiplatformV1beta1IndexEndpoint,
21544
21698
  ): Request<GoogleCloudAiplatformV1beta1IndexEndpoint>;
21545
21699
  /** Reads the datapoints/vectors of the given IDs. A maximum of 1000 datapoints can be retrieved in a batch. */
21546
21700
  readIndexDatapoints(request: {
@@ -21598,7 +21752,7 @@ declare namespace gapi.client {
21598
21752
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21599
21753
  uploadType?: string;
21600
21754
  },
21601
- body: GoogleCloudAiplatformV1beta1ReadIndexDatapointsRequest
21755
+ body: GoogleCloudAiplatformV1beta1ReadIndexDatapointsRequest,
21602
21756
  ): Request<GoogleCloudAiplatformV1beta1ReadIndexDatapointsResponse>;
21603
21757
  /** Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using. */
21604
21758
  undeployIndex(request: {
@@ -21656,7 +21810,7 @@ declare namespace gapi.client {
21656
21810
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21657
21811
  uploadType?: string;
21658
21812
  },
21659
- body: GoogleCloudAiplatformV1beta1UndeployIndexRequest
21813
+ body: GoogleCloudAiplatformV1beta1UndeployIndexRequest,
21660
21814
  ): Request<GoogleLongrunningOperation>;
21661
21815
  operations: OperationsResource;
21662
21816
  }
@@ -21862,7 +22016,7 @@ declare namespace gapi.client {
21862
22016
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
21863
22017
  uploadType?: string;
21864
22018
  },
21865
- body: GoogleCloudAiplatformV1beta1Index
22019
+ body: GoogleCloudAiplatformV1beta1Index,
21866
22020
  ): Request<GoogleLongrunningOperation>;
21867
22021
  /** Deletes an Index. An Index can only be deleted when all its DeployedIndexes had been undeployed. */
21868
22022
  delete(request?: {
@@ -22013,7 +22167,7 @@ declare namespace gapi.client {
22013
22167
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22014
22168
  uploadType?: string;
22015
22169
  },
22016
- body: GoogleCloudAiplatformV1beta1Index
22170
+ body: GoogleCloudAiplatformV1beta1Index,
22017
22171
  ): Request<GoogleLongrunningOperation>;
22018
22172
  /** Remove Datapoints from an Index. */
22019
22173
  removeDatapoints(request: {
@@ -22071,7 +22225,7 @@ declare namespace gapi.client {
22071
22225
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22072
22226
  uploadType?: string;
22073
22227
  },
22074
- body: GoogleCloudAiplatformV1beta1RemoveDatapointsRequest
22228
+ body: GoogleCloudAiplatformV1beta1RemoveDatapointsRequest,
22075
22229
  ): Request<{}>;
22076
22230
  /** Add/update Datapoints into an Index. */
22077
22231
  upsertDatapoints(request: {
@@ -22129,7 +22283,7 @@ declare namespace gapi.client {
22129
22283
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22130
22284
  uploadType?: string;
22131
22285
  },
22132
- body: GoogleCloudAiplatformV1beta1UpsertDatapointsRequest
22286
+ body: GoogleCloudAiplatformV1beta1UpsertDatapointsRequest,
22133
22287
  ): Request<{}>;
22134
22288
  operations: OperationsResource;
22135
22289
  }
@@ -22339,7 +22493,7 @@ declare namespace gapi.client {
22339
22493
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22340
22494
  uploadType?: string;
22341
22495
  },
22342
- body: GoogleCloudAiplatformV1beta1Artifact
22496
+ body: GoogleCloudAiplatformV1beta1Artifact,
22343
22497
  ): Request<GoogleCloudAiplatformV1beta1Artifact>;
22344
22498
  /** Deletes an Artifact. */
22345
22499
  delete(request?: {
@@ -22496,7 +22650,7 @@ declare namespace gapi.client {
22496
22650
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22497
22651
  uploadType?: string;
22498
22652
  },
22499
- body: GoogleCloudAiplatformV1beta1Artifact
22653
+ body: GoogleCloudAiplatformV1beta1Artifact,
22500
22654
  ): Request<GoogleCloudAiplatformV1beta1Artifact>;
22501
22655
  /** Purges Artifacts. */
22502
22656
  purge(request: {
@@ -22554,7 +22708,7 @@ declare namespace gapi.client {
22554
22708
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22555
22709
  uploadType?: string;
22556
22710
  },
22557
- body: GoogleCloudAiplatformV1beta1PurgeArtifactsRequest
22711
+ body: GoogleCloudAiplatformV1beta1PurgeArtifactsRequest,
22558
22712
  ): Request<GoogleLongrunningOperation>;
22559
22713
  /** Retrieves lineage of an Artifact represented through Artifacts and Executions connected by Event edges and returned as a LineageSubgraph. */
22560
22714
  queryArtifactLineageSubgraph(request?: {
@@ -22791,7 +22945,7 @@ declare namespace gapi.client {
22791
22945
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22792
22946
  uploadType?: string;
22793
22947
  },
22794
- body: GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest
22948
+ body: GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest,
22795
22949
  ): Request<{}>;
22796
22950
  /** 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
22951
  addContextChildren(request: {
@@ -22849,7 +23003,7 @@ declare namespace gapi.client {
22849
23003
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22850
23004
  uploadType?: string;
22851
23005
  },
22852
- body: GoogleCloudAiplatformV1beta1AddContextChildrenRequest
23006
+ body: GoogleCloudAiplatformV1beta1AddContextChildrenRequest,
22853
23007
  ): Request<{}>;
22854
23008
  /** Creates a Context associated with a MetadataStore. */
22855
23009
  create(request: {
@@ -22911,7 +23065,7 @@ declare namespace gapi.client {
22911
23065
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22912
23066
  uploadType?: string;
22913
23067
  },
22914
- body: GoogleCloudAiplatformV1beta1Context
23068
+ body: GoogleCloudAiplatformV1beta1Context,
22915
23069
  ): Request<GoogleCloudAiplatformV1beta1Context>;
22916
23070
  /** Deletes a stored Context. */
22917
23071
  delete(request?: {
@@ -23070,7 +23224,7 @@ declare namespace gapi.client {
23070
23224
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23071
23225
  uploadType?: string;
23072
23226
  },
23073
- body: GoogleCloudAiplatformV1beta1Context
23227
+ body: GoogleCloudAiplatformV1beta1Context,
23074
23228
  ): Request<GoogleCloudAiplatformV1beta1Context>;
23075
23229
  /** Purges Contexts. */
23076
23230
  purge(request: {
@@ -23128,7 +23282,7 @@ declare namespace gapi.client {
23128
23282
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23129
23283
  uploadType?: string;
23130
23284
  },
23131
- body: GoogleCloudAiplatformV1beta1PurgeContextsRequest
23285
+ body: GoogleCloudAiplatformV1beta1PurgeContextsRequest,
23132
23286
  ): Request<GoogleLongrunningOperation>;
23133
23287
  /** Retrieves Artifacts and Executions within the specified Context, connected by Event edges and returned as a LineageSubgraph. */
23134
23288
  queryContextLineageSubgraph(request?: {
@@ -23213,7 +23367,7 @@ declare namespace gapi.client {
23213
23367
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23214
23368
  uploadType?: string;
23215
23369
  },
23216
- body: GoogleCloudAiplatformV1beta1RemoveContextChildrenRequest
23370
+ body: GoogleCloudAiplatformV1beta1RemoveContextChildrenRequest,
23217
23371
  ): Request<{}>;
23218
23372
  operations: OperationsResource;
23219
23373
  }
@@ -23419,7 +23573,7 @@ declare namespace gapi.client {
23419
23573
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23420
23574
  uploadType?: string;
23421
23575
  },
23422
- body: GoogleCloudAiplatformV1beta1AddExecutionEventsRequest
23576
+ body: GoogleCloudAiplatformV1beta1AddExecutionEventsRequest,
23423
23577
  ): Request<{}>;
23424
23578
  /** Creates an Execution associated with a MetadataStore. */
23425
23579
  create(request: {
@@ -23481,7 +23635,7 @@ declare namespace gapi.client {
23481
23635
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23482
23636
  uploadType?: string;
23483
23637
  },
23484
- body: GoogleCloudAiplatformV1beta1Execution
23638
+ body: GoogleCloudAiplatformV1beta1Execution,
23485
23639
  ): Request<GoogleCloudAiplatformV1beta1Execution>;
23486
23640
  /** Deletes an Execution. */
23487
23641
  delete(request?: {
@@ -23638,7 +23792,7 @@ declare namespace gapi.client {
23638
23792
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23639
23793
  uploadType?: string;
23640
23794
  },
23641
- body: GoogleCloudAiplatformV1beta1Execution
23795
+ body: GoogleCloudAiplatformV1beta1Execution,
23642
23796
  ): Request<GoogleCloudAiplatformV1beta1Execution>;
23643
23797
  /** Purges Executions. */
23644
23798
  purge(request: {
@@ -23696,7 +23850,7 @@ declare namespace gapi.client {
23696
23850
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23697
23851
  uploadType?: string;
23698
23852
  },
23699
- body: GoogleCloudAiplatformV1beta1PurgeExecutionsRequest
23853
+ body: GoogleCloudAiplatformV1beta1PurgeExecutionsRequest,
23700
23854
  ): Request<GoogleLongrunningOperation>;
23701
23855
  /** 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
23856
  queryExecutionInputsAndOutputs(request?: {
@@ -23788,7 +23942,7 @@ declare namespace gapi.client {
23788
23942
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
23789
23943
  uploadType?: string;
23790
23944
  },
23791
- body: GoogleCloudAiplatformV1beta1MetadataSchema
23945
+ body: GoogleCloudAiplatformV1beta1MetadataSchema,
23792
23946
  ): Request<GoogleCloudAiplatformV1beta1MetadataSchema>;
23793
23947
  /** Retrieves a specific MetadataSchema. */
23794
23948
  get(request?: {
@@ -24057,7 +24211,7 @@ declare namespace gapi.client {
24057
24211
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24058
24212
  uploadType?: string;
24059
24213
  },
24060
- body: GoogleCloudAiplatformV1beta1MetadataStore
24214
+ body: GoogleCloudAiplatformV1beta1MetadataStore,
24061
24215
  ): Request<GoogleLongrunningOperation>;
24062
24216
  /** Deletes a single MetadataStore and all its child resources (Artifacts, Executions, and Contexts). */
24063
24217
  delete(request?: {
@@ -24354,7 +24508,7 @@ declare namespace gapi.client {
24354
24508
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24355
24509
  uploadType?: string;
24356
24510
  },
24357
- body: GoogleCloudAiplatformV1beta1BatchMigrateResourcesRequest
24511
+ body: GoogleCloudAiplatformV1beta1BatchMigrateResourcesRequest,
24358
24512
  ): Request<GoogleLongrunningOperation>;
24359
24513
  /** 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
24514
  search(request: {
@@ -24412,7 +24566,7 @@ declare namespace gapi.client {
24412
24566
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24413
24567
  uploadType?: string;
24414
24568
  },
24415
- body: GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest
24569
+ body: GoogleCloudAiplatformV1beta1SearchMigratableResourcesRequest,
24416
24570
  ): Request<GoogleCloudAiplatformV1beta1SearchMigratableResourcesResponse>;
24417
24571
  operations: OperationsResource;
24418
24572
  }
@@ -24618,7 +24772,7 @@ declare namespace gapi.client {
24618
24772
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24619
24773
  uploadType?: string;
24620
24774
  },
24621
- body: GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob
24775
+ body: GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob,
24622
24776
  ): Request<GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob>;
24623
24777
  /** Deletes a ModelDeploymentMonitoringJob. */
24624
24778
  delete(request?: {
@@ -24769,7 +24923,7 @@ declare namespace gapi.client {
24769
24923
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24770
24924
  uploadType?: string;
24771
24925
  },
24772
- body: GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob
24926
+ body: GoogleCloudAiplatformV1beta1ModelDeploymentMonitoringJob,
24773
24927
  ): Request<GoogleLongrunningOperation>;
24774
24928
  /** 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
24929
  pause(request: {
@@ -24827,7 +24981,7 @@ declare namespace gapi.client {
24827
24981
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24828
24982
  uploadType?: string;
24829
24983
  },
24830
- body: GoogleCloudAiplatformV1beta1PauseModelDeploymentMonitoringJobRequest
24984
+ body: GoogleCloudAiplatformV1beta1PauseModelDeploymentMonitoringJobRequest,
24831
24985
  ): Request<{}>;
24832
24986
  /** Resumes a paused ModelDeploymentMonitoringJob. It will start to run from next scheduled time. A deleted ModelDeploymentMonitoringJob can't be resumed. */
24833
24987
  resume(request: {
@@ -24885,7 +25039,7 @@ declare namespace gapi.client {
24885
25039
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24886
25040
  uploadType?: string;
24887
25041
  },
24888
- body: GoogleCloudAiplatformV1beta1ResumeModelDeploymentMonitoringJobRequest
25042
+ body: GoogleCloudAiplatformV1beta1ResumeModelDeploymentMonitoringJobRequest,
24889
25043
  ): Request<{}>;
24890
25044
  /** Searches Model Monitoring Statistics generated within a given time window. */
24891
25045
  searchModelDeploymentMonitoringStatsAnomalies(request: {
@@ -24943,7 +25097,7 @@ declare namespace gapi.client {
24943
25097
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24944
25098
  uploadType?: string;
24945
25099
  },
24946
- body: GoogleCloudAiplatformV1beta1SearchModelDeploymentMonitoringStatsAnomaliesRequest
25100
+ body: GoogleCloudAiplatformV1beta1SearchModelDeploymentMonitoringStatsAnomaliesRequest,
24947
25101
  ): Request<GoogleCloudAiplatformV1beta1SearchModelDeploymentMonitoringStatsAnomaliesResponse>;
24948
25102
  operations: OperationsResource;
24949
25103
  }
@@ -25008,7 +25162,7 @@ declare namespace gapi.client {
25008
25162
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25009
25163
  uploadType?: string;
25010
25164
  },
25011
- body: GoogleCloudAiplatformV1beta1ModelMonitoringJob
25165
+ body: GoogleCloudAiplatformV1beta1ModelMonitoringJob,
25012
25166
  ): Request<GoogleCloudAiplatformV1beta1ModelMonitoringJob>;
25013
25167
  /** Deletes a ModelMonitoringJob. */
25014
25168
  delete(request?: {
@@ -25306,7 +25460,7 @@ declare namespace gapi.client {
25306
25460
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25307
25461
  uploadType?: string;
25308
25462
  },
25309
- body: GoogleCloudAiplatformV1beta1ModelMonitor
25463
+ body: GoogleCloudAiplatformV1beta1ModelMonitor,
25310
25464
  ): Request<GoogleLongrunningOperation>;
25311
25465
  /** Deletes a ModelMonitor. */
25312
25466
  delete(request?: {
@@ -25459,7 +25613,7 @@ declare namespace gapi.client {
25459
25613
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25460
25614
  uploadType?: string;
25461
25615
  },
25462
- body: GoogleCloudAiplatformV1beta1ModelMonitor
25616
+ body: GoogleCloudAiplatformV1beta1ModelMonitor,
25463
25617
  ): Request<GoogleLongrunningOperation>;
25464
25618
  /** Returns the Model Monitoring alerts. */
25465
25619
  searchModelMonitoringAlerts(request: {
@@ -25517,7 +25671,7 @@ declare namespace gapi.client {
25517
25671
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25518
25672
  uploadType?: string;
25519
25673
  },
25520
- body: GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsRequest
25674
+ body: GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsRequest,
25521
25675
  ): Request<GoogleCloudAiplatformV1beta1SearchModelMonitoringAlertsResponse>;
25522
25676
  /** Searches Model Monitoring Stats generated within a given time window. */
25523
25677
  searchModelMonitoringStats(request: {
@@ -25575,7 +25729,7 @@ declare namespace gapi.client {
25575
25729
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25576
25730
  uploadType?: string;
25577
25731
  },
25578
- body: GoogleCloudAiplatformV1beta1SearchModelMonitoringStatsRequest
25732
+ body: GoogleCloudAiplatformV1beta1SearchModelMonitoringStatsRequest,
25579
25733
  ): Request<GoogleCloudAiplatformV1beta1SearchModelMonitoringStatsResponse>;
25580
25734
  modelMonitoringJobs: ModelMonitoringJobsResource;
25581
25735
  operations: OperationsResource;
@@ -25782,7 +25936,7 @@ declare namespace gapi.client {
25782
25936
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25783
25937
  uploadType?: string;
25784
25938
  },
25785
- body: GoogleCloudAiplatformV1beta1BatchImportEvaluatedAnnotationsRequest
25939
+ body: GoogleCloudAiplatformV1beta1BatchImportEvaluatedAnnotationsRequest,
25786
25940
  ): Request<GoogleCloudAiplatformV1beta1BatchImportEvaluatedAnnotationsResponse>;
25787
25941
  /** Gets a ModelEvaluationSlice. */
25788
25942
  get(request?: {
@@ -25931,7 +26085,7 @@ declare namespace gapi.client {
25931
26085
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25932
26086
  uploadType?: string;
25933
26087
  },
25934
- body: GoogleCloudAiplatformV1beta1ImportModelEvaluationRequest
26088
+ body: GoogleCloudAiplatformV1beta1ImportModelEvaluationRequest,
25935
26089
  ): Request<GoogleCloudAiplatformV1beta1ModelEvaluation>;
25936
26090
  /** Lists ModelEvaluations in a Model. */
25937
26091
  list(request?: {
@@ -26173,7 +26327,7 @@ declare namespace gapi.client {
26173
26327
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26174
26328
  uploadType?: string;
26175
26329
  },
26176
- body: GoogleCloudAiplatformV1beta1CopyModelRequest
26330
+ body: GoogleCloudAiplatformV1beta1CopyModelRequest,
26177
26331
  ): Request<GoogleLongrunningOperation>;
26178
26332
  /** 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
26333
  delete(request?: {
@@ -26285,7 +26439,7 @@ declare namespace gapi.client {
26285
26439
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26286
26440
  uploadType?: string;
26287
26441
  },
26288
- body: GoogleCloudAiplatformV1beta1ExportModelRequest
26442
+ body: GoogleCloudAiplatformV1beta1ExportModelRequest,
26289
26443
  ): Request<GoogleLongrunningOperation>;
26290
26444
  /** Gets a Model. */
26291
26445
  get(request?: {
@@ -26378,6 +26532,37 @@ declare namespace gapi.client {
26378
26532
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26379
26533
  uploadType?: string;
26380
26534
  }): Request<GoogleCloudAiplatformV1beta1ListModelsResponse>;
26535
+ /** Lists checkpoints of the specified model version. */
26536
+ listCheckpoints(request?: {
26537
+ /** V1 error format. */
26538
+ '$.xgafv'?: string;
26539
+ /** OAuth access token. */
26540
+ access_token?: string;
26541
+ /** Data format for response. */
26542
+ alt?: string;
26543
+ /** JSONP */
26544
+ callback?: string;
26545
+ /** Selector specifying which fields to include in a partial response. */
26546
+ fields?: string;
26547
+ /** 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. */
26548
+ key?: string;
26549
+ /** 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. */
26550
+ name: string;
26551
+ /** OAuth 2.0 token for the current user. */
26552
+ oauth_token?: string;
26553
+ /** Optional. The standard list page size. */
26554
+ pageSize?: number;
26555
+ /** Optional. The standard list page token. Typically obtained via next_page_token of the previous ListModelVersionCheckpoints call. */
26556
+ pageToken?: string;
26557
+ /** Returns response with indentations and line breaks. */
26558
+ prettyPrint?: boolean;
26559
+ /** 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. */
26560
+ quotaUser?: string;
26561
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
26562
+ upload_protocol?: string;
26563
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26564
+ uploadType?: string;
26565
+ }): Request<GoogleCloudAiplatformV1beta1ListModelVersionCheckpointsResponse>;
26381
26566
  /** Lists versions of the specified model. */
26382
26567
  listVersions(request?: {
26383
26568
  /** V1 error format. */
@@ -26471,7 +26656,7 @@ declare namespace gapi.client {
26471
26656
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26472
26657
  uploadType?: string;
26473
26658
  },
26474
- body: GoogleCloudAiplatformV1beta1MergeVersionAliasesRequest
26659
+ body: GoogleCloudAiplatformV1beta1MergeVersionAliasesRequest,
26475
26660
  ): Request<GoogleCloudAiplatformV1beta1Model>;
26476
26661
  /** Updates a Model. */
26477
26662
  patch(request: {
@@ -26533,7 +26718,7 @@ declare namespace gapi.client {
26533
26718
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26534
26719
  uploadType?: string;
26535
26720
  },
26536
- body: GoogleCloudAiplatformV1beta1Model
26721
+ body: GoogleCloudAiplatformV1beta1Model,
26537
26722
  ): Request<GoogleCloudAiplatformV1beta1Model>;
26538
26723
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
26539
26724
  setIamPolicy(
@@ -26563,7 +26748,7 @@ declare namespace gapi.client {
26563
26748
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26564
26749
  uploadType?: string;
26565
26750
  },
26566
- body: GoogleIamV1SetIamPolicyRequest
26751
+ body: GoogleIamV1SetIamPolicyRequest,
26567
26752
  ): Request<GoogleIamV1Policy>;
26568
26753
  /** 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
26754
  testIamPermissions(request?: {
@@ -26650,7 +26835,7 @@ declare namespace gapi.client {
26650
26835
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26651
26836
  uploadType?: string;
26652
26837
  },
26653
- body: GoogleCloudAiplatformV1beta1UpdateExplanationDatasetRequest
26838
+ body: GoogleCloudAiplatformV1beta1UpdateExplanationDatasetRequest,
26654
26839
  ): Request<GoogleLongrunningOperation>;
26655
26840
  /** Uploads a Model artifact into Vertex AI. */
26656
26841
  upload(request: {
@@ -26708,7 +26893,7 @@ declare namespace gapi.client {
26708
26893
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26709
26894
  uploadType?: string;
26710
26895
  },
26711
- body: GoogleCloudAiplatformV1beta1UploadModelRequest
26896
+ body: GoogleCloudAiplatformV1beta1UploadModelRequest,
26712
26897
  ): Request<GoogleLongrunningOperation>;
26713
26898
  evaluations: EvaluationsResource;
26714
26899
  operations: OperationsResource;
@@ -26830,7 +27015,7 @@ declare namespace gapi.client {
26830
27015
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26831
27016
  uploadType?: string;
26832
27017
  },
26833
- body: GoogleCloudAiplatformV1beta1CancelNasJobRequest
27018
+ body: GoogleCloudAiplatformV1beta1CancelNasJobRequest,
26834
27019
  ): Request<{}>;
26835
27020
  /** Creates a NasJob */
26836
27021
  create(request: {
@@ -26888,7 +27073,7 @@ declare namespace gapi.client {
26888
27073
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26889
27074
  uploadType?: string;
26890
27075
  },
26891
- body: GoogleCloudAiplatformV1beta1NasJob
27076
+ body: GoogleCloudAiplatformV1beta1NasJob,
26892
27077
  ): Request<GoogleCloudAiplatformV1beta1NasJob>;
26893
27078
  /** Deletes a NasJob. */
26894
27079
  delete(request?: {
@@ -27187,7 +27372,7 @@ declare namespace gapi.client {
27187
27372
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27188
27373
  uploadType?: string;
27189
27374
  },
27190
- body: GoogleCloudAiplatformV1beta1NotebookExecutionJob
27375
+ body: GoogleCloudAiplatformV1beta1NotebookExecutionJob,
27191
27376
  ): Request<GoogleLongrunningOperation>;
27192
27377
  /** Deletes a NotebookExecutionJob. */
27193
27378
  delete(request?: {
@@ -27272,7 +27457,7 @@ declare namespace gapi.client {
27272
27457
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27273
27458
  uploadType?: string;
27274
27459
  },
27275
- body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest
27460
+ body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest,
27276
27461
  ): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
27277
27462
  /** Gets a NotebookExecutionJob. */
27278
27463
  get(request?: {
@@ -27395,7 +27580,7 @@ declare namespace gapi.client {
27395
27580
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27396
27581
  uploadType?: string;
27397
27582
  },
27398
- body: GoogleCloudAiplatformV1beta1ReportExecutionEventRequest
27583
+ body: GoogleCloudAiplatformV1beta1ReportExecutionEventRequest,
27399
27584
  ): Request<{}>;
27400
27585
  operations: OperationsResource;
27401
27586
  }
@@ -27601,7 +27786,7 @@ declare namespace gapi.client {
27601
27786
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27602
27787
  uploadType?: string;
27603
27788
  },
27604
- body: GoogleCloudAiplatformV1beta1AssignNotebookRuntimeRequest
27789
+ body: GoogleCloudAiplatformV1beta1AssignNotebookRuntimeRequest,
27605
27790
  ): Request<GoogleLongrunningOperation>;
27606
27791
  /** Deletes a NotebookRuntime. */
27607
27792
  delete(request?: {
@@ -27686,7 +27871,7 @@ declare namespace gapi.client {
27686
27871
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27687
27872
  uploadType?: string;
27688
27873
  },
27689
- body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest
27874
+ body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest,
27690
27875
  ): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
27691
27876
  /** Gets a NotebookRuntime. */
27692
27877
  get(request?: {
@@ -27807,7 +27992,7 @@ declare namespace gapi.client {
27807
27992
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27808
27993
  uploadType?: string;
27809
27994
  },
27810
- body: GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest
27995
+ body: GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest,
27811
27996
  ): Request<GoogleCloudAiplatformV1beta1ReportRuntimeEventResponse>;
27812
27997
  /** Starts a NotebookRuntime. */
27813
27998
  start(request: {
@@ -27865,7 +28050,7 @@ declare namespace gapi.client {
27865
28050
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27866
28051
  uploadType?: string;
27867
28052
  },
27868
- body: GoogleCloudAiplatformV1beta1StartNotebookRuntimeRequest
28053
+ body: GoogleCloudAiplatformV1beta1StartNotebookRuntimeRequest,
27869
28054
  ): Request<GoogleLongrunningOperation>;
27870
28055
  /** Stops a NotebookRuntime. */
27871
28056
  stop(request: {
@@ -27923,7 +28108,7 @@ declare namespace gapi.client {
27923
28108
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27924
28109
  uploadType?: string;
27925
28110
  },
27926
- body: GoogleCloudAiplatformV1beta1StopNotebookRuntimeRequest
28111
+ body: GoogleCloudAiplatformV1beta1StopNotebookRuntimeRequest,
27927
28112
  ): Request<GoogleLongrunningOperation>;
27928
28113
  /** Upgrades a NotebookRuntime. */
27929
28114
  upgrade(request: {
@@ -27981,7 +28166,7 @@ declare namespace gapi.client {
27981
28166
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
27982
28167
  uploadType?: string;
27983
28168
  },
27984
- body: GoogleCloudAiplatformV1beta1UpgradeNotebookRuntimeRequest
28169
+ body: GoogleCloudAiplatformV1beta1UpgradeNotebookRuntimeRequest,
27985
28170
  ): Request<GoogleLongrunningOperation>;
27986
28171
  operations: OperationsResource;
27987
28172
  }
@@ -28191,7 +28376,7 @@ declare namespace gapi.client {
28191
28376
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28192
28377
  uploadType?: string;
28193
28378
  },
28194
- body: GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate
28379
+ body: GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate,
28195
28380
  ): Request<GoogleLongrunningOperation>;
28196
28381
  /** Deletes a NotebookRuntimeTemplate. */
28197
28382
  delete(request?: {
@@ -28373,7 +28558,7 @@ declare namespace gapi.client {
28373
28558
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28374
28559
  uploadType?: string;
28375
28560
  },
28376
- body: GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate
28561
+ body: GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate,
28377
28562
  ): Request<GoogleCloudAiplatformV1beta1NotebookRuntimeTemplate>;
28378
28563
  /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
28379
28564
  setIamPolicy(
@@ -28403,7 +28588,7 @@ declare namespace gapi.client {
28403
28588
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28404
28589
  uploadType?: string;
28405
28590
  },
28406
- body: GoogleIamV1SetIamPolicyRequest
28591
+ body: GoogleIamV1SetIamPolicyRequest,
28407
28592
  ): Request<GoogleIamV1Policy>;
28408
28593
  /** 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
28594
  testIamPermissions(request?: {
@@ -28787,7 +28972,7 @@ declare namespace gapi.client {
28787
28972
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28788
28973
  uploadType?: string;
28789
28974
  },
28790
- body: GoogleCloudAiplatformV1beta1PersistentResource
28975
+ body: GoogleCloudAiplatformV1beta1PersistentResource,
28791
28976
  ): Request<GoogleLongrunningOperation>;
28792
28977
  /** Deletes a PersistentResource. */
28793
28978
  delete(request?: {
@@ -28934,7 +29119,7 @@ declare namespace gapi.client {
28934
29119
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28935
29120
  uploadType?: string;
28936
29121
  },
28937
- body: GoogleCloudAiplatformV1beta1PersistentResource
29122
+ body: GoogleCloudAiplatformV1beta1PersistentResource,
28938
29123
  ): Request<GoogleLongrunningOperation>;
28939
29124
  /** Reboots a PersistentResource. */
28940
29125
  reboot(request: {
@@ -28992,7 +29177,7 @@ declare namespace gapi.client {
28992
29177
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
28993
29178
  uploadType?: string;
28994
29179
  },
28995
- body: GoogleCloudAiplatformV1beta1RebootPersistentResourceRequest
29180
+ body: GoogleCloudAiplatformV1beta1RebootPersistentResourceRequest,
28996
29181
  ): Request<GoogleLongrunningOperation>;
28997
29182
  operations: OperationsResource;
28998
29183
  }
@@ -29198,7 +29383,7 @@ declare namespace gapi.client {
29198
29383
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29199
29384
  uploadType?: string;
29200
29385
  },
29201
- body: GoogleCloudAiplatformV1beta1BatchCancelPipelineJobsRequest
29386
+ body: GoogleCloudAiplatformV1beta1BatchCancelPipelineJobsRequest,
29202
29387
  ): Request<GoogleLongrunningOperation>;
29203
29388
  /** 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
29389
  batchDelete(request: {
@@ -29256,7 +29441,7 @@ declare namespace gapi.client {
29256
29441
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29257
29442
  uploadType?: string;
29258
29443
  },
29259
- body: GoogleCloudAiplatformV1beta1BatchDeletePipelineJobsRequest
29444
+ body: GoogleCloudAiplatformV1beta1BatchDeletePipelineJobsRequest,
29260
29445
  ): Request<GoogleLongrunningOperation>;
29261
29446
  /** 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
29447
  cancel(request: {
@@ -29314,7 +29499,7 @@ declare namespace gapi.client {
29314
29499
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29315
29500
  uploadType?: string;
29316
29501
  },
29317
- body: GoogleCloudAiplatformV1beta1CancelPipelineJobRequest
29502
+ body: GoogleCloudAiplatformV1beta1CancelPipelineJobRequest,
29318
29503
  ): Request<{}>;
29319
29504
  /** Creates a PipelineJob. A PipelineJob will run immediately when created. */
29320
29505
  create(request: {
@@ -29376,7 +29561,7 @@ declare namespace gapi.client {
29376
29561
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29377
29562
  uploadType?: string;
29378
29563
  },
29379
- body: GoogleCloudAiplatformV1beta1PipelineJob
29564
+ body: GoogleCloudAiplatformV1beta1PipelineJob,
29380
29565
  ): Request<GoogleCloudAiplatformV1beta1PipelineJob>;
29381
29566
  /** Deletes a PipelineJob. */
29382
29567
  delete(request?: {
@@ -29528,7 +29713,7 @@ declare namespace gapi.client {
29528
29713
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29529
29714
  uploadType?: string;
29530
29715
  },
29531
- body: GoogleCloudAiplatformV1beta1ComputeTokensRequest
29716
+ body: GoogleCloudAiplatformV1beta1ComputeTokensRequest,
29532
29717
  ): Request<GoogleCloudAiplatformV1beta1ComputeTokensResponse>;
29533
29718
  /** Perform a token counting. */
29534
29719
  countTokens(request: {
@@ -29586,7 +29771,7 @@ declare namespace gapi.client {
29586
29771
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29587
29772
  uploadType?: string;
29588
29773
  },
29589
- body: GoogleCloudAiplatformV1beta1CountTokensRequest
29774
+ body: GoogleCloudAiplatformV1beta1CountTokensRequest,
29590
29775
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
29591
29776
  /** Fetch an asynchronous online prediction operation. */
29592
29777
  fetchPredictOperation(request: {
@@ -29644,7 +29829,7 @@ declare namespace gapi.client {
29644
29829
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29645
29830
  uploadType?: string;
29646
29831
  },
29647
- body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest
29832
+ body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest,
29648
29833
  ): Request<GoogleLongrunningOperation>;
29649
29834
  /** Generate content with multimodal inputs. */
29650
29835
  generateContent(request: {
@@ -29702,7 +29887,7 @@ declare namespace gapi.client {
29702
29887
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29703
29888
  uploadType?: string;
29704
29889
  },
29705
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
29890
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
29706
29891
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
29707
29892
  /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
29708
29893
  getIamPolicy(request?: {
@@ -29789,7 +29974,7 @@ declare namespace gapi.client {
29789
29974
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29790
29975
  uploadType?: string;
29791
29976
  },
29792
- body: GoogleCloudAiplatformV1beta1PredictRequest
29977
+ body: GoogleCloudAiplatformV1beta1PredictRequest,
29793
29978
  ): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
29794
29979
  predictLongRunning(request: {
29795
29980
  /** V1 error format. */
@@ -29846,7 +30031,7 @@ declare namespace gapi.client {
29846
30031
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29847
30032
  uploadType?: string;
29848
30033
  },
29849
- body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest
30034
+ body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest,
29850
30035
  ): Request<GoogleLongrunningOperation>;
29851
30036
  /** 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
30037
  rawPredict(request: {
@@ -29904,7 +30089,7 @@ declare namespace gapi.client {
29904
30089
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29905
30090
  uploadType?: string;
29906
30091
  },
29907
- body: GoogleCloudAiplatformV1beta1RawPredictRequest
30092
+ body: GoogleCloudAiplatformV1beta1RawPredictRequest,
29908
30093
  ): Request<GoogleApiHttpBody>;
29909
30094
  /** Perform a server-side streaming online prediction request for Vertex LLM streaming. */
29910
30095
  serverStreamingPredict(request: {
@@ -29962,7 +30147,7 @@ declare namespace gapi.client {
29962
30147
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
29963
30148
  uploadType?: string;
29964
30149
  },
29965
- body: GoogleCloudAiplatformV1beta1StreamingPredictRequest
30150
+ body: GoogleCloudAiplatformV1beta1StreamingPredictRequest,
29966
30151
  ): Request<GoogleCloudAiplatformV1beta1StreamingPredictResponse>;
29967
30152
  /** Generate content with multimodal inputs with streaming support. */
29968
30153
  streamGenerateContent(request: {
@@ -30020,7 +30205,7 @@ declare namespace gapi.client {
30020
30205
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30021
30206
  uploadType?: string;
30022
30207
  },
30023
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
30208
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
30024
30209
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
30025
30210
  /** Perform a streaming online prediction with an arbitrary HTTP payload. */
30026
30211
  streamRawPredict(request: {
@@ -30078,7 +30263,7 @@ declare namespace gapi.client {
30078
30263
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30079
30264
  uploadType?: string;
30080
30265
  },
30081
- body: GoogleCloudAiplatformV1beta1StreamRawPredictRequest
30266
+ body: GoogleCloudAiplatformV1beta1StreamRawPredictRequest,
30082
30267
  ): Request<GoogleApiHttpBody>;
30083
30268
  }
30084
30269
  interface PublishersResource {
@@ -30485,7 +30670,7 @@ declare namespace gapi.client {
30485
30670
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30486
30671
  uploadType?: string;
30487
30672
  },
30488
- body: GoogleCloudAiplatformV1beta1ImportRagFilesRequest
30673
+ body: GoogleCloudAiplatformV1beta1ImportRagFilesRequest,
30489
30674
  ): Request<GoogleLongrunningOperation>;
30490
30675
  /** Lists RagFiles in a RagCorpus. */
30491
30676
  list(request?: {
@@ -30577,7 +30762,7 @@ declare namespace gapi.client {
30577
30762
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30578
30763
  uploadType?: string;
30579
30764
  },
30580
- body: GoogleCloudAiplatformV1beta1RagCorpus
30765
+ body: GoogleCloudAiplatformV1beta1RagCorpus,
30581
30766
  ): Request<GoogleLongrunningOperation>;
30582
30767
  /** Deletes a RagCorpus. */
30583
30768
  delete(request?: {
@@ -30722,7 +30907,7 @@ declare namespace gapi.client {
30722
30907
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30723
30908
  uploadType?: string;
30724
30909
  },
30725
- body: GoogleCloudAiplatformV1beta1RagCorpus
30910
+ body: GoogleCloudAiplatformV1beta1RagCorpus,
30726
30911
  ): Request<GoogleLongrunningOperation>;
30727
30912
  operations: OperationsResource;
30728
30913
  ragFiles: RagFilesResource;
@@ -30929,7 +31114,7 @@ declare namespace gapi.client {
30929
31114
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30930
31115
  uploadType?: string;
30931
31116
  },
30932
- body: GoogleCloudAiplatformV1beta1ReasoningEngine
31117
+ body: GoogleCloudAiplatformV1beta1ReasoningEngine,
30933
31118
  ): Request<GoogleLongrunningOperation>;
30934
31119
  /** Deletes a reasoning engine. */
30935
31120
  delete(request?: {
@@ -31078,7 +31263,7 @@ declare namespace gapi.client {
31078
31263
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31079
31264
  uploadType?: string;
31080
31265
  },
31081
- body: GoogleCloudAiplatformV1beta1ReasoningEngine
31266
+ body: GoogleCloudAiplatformV1beta1ReasoningEngine,
31082
31267
  ): Request<GoogleLongrunningOperation>;
31083
31268
  /** Queries using a reasoning engine. */
31084
31269
  query(request: {
@@ -31136,7 +31321,7 @@ declare namespace gapi.client {
31136
31321
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31137
31322
  uploadType?: string;
31138
31323
  },
31139
- body: GoogleCloudAiplatformV1beta1QueryReasoningEngineRequest
31324
+ body: GoogleCloudAiplatformV1beta1QueryReasoningEngineRequest,
31140
31325
  ): Request<GoogleCloudAiplatformV1beta1QueryReasoningEngineResponse>;
31141
31326
  /** Streams queries using a reasoning engine. */
31142
31327
  streamQuery(request: {
@@ -31194,7 +31379,7 @@ declare namespace gapi.client {
31194
31379
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31195
31380
  uploadType?: string;
31196
31381
  },
31197
- body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest
31382
+ body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest,
31198
31383
  ): Request<GoogleApiHttpBody>;
31199
31384
  operations: OperationsResource;
31200
31385
  }
@@ -31400,7 +31585,7 @@ declare namespace gapi.client {
31400
31585
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31401
31586
  uploadType?: string;
31402
31587
  },
31403
- body: GoogleCloudAiplatformV1beta1Schedule
31588
+ body: GoogleCloudAiplatformV1beta1Schedule,
31404
31589
  ): Request<GoogleCloudAiplatformV1beta1Schedule>;
31405
31590
  /** Deletes a Schedule. */
31406
31591
  delete(request?: {
@@ -31551,7 +31736,7 @@ declare namespace gapi.client {
31551
31736
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31552
31737
  uploadType?: string;
31553
31738
  },
31554
- body: GoogleCloudAiplatformV1beta1Schedule
31739
+ body: GoogleCloudAiplatformV1beta1Schedule,
31555
31740
  ): Request<GoogleCloudAiplatformV1beta1Schedule>;
31556
31741
  /** 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
31742
  pause(request: {
@@ -31609,7 +31794,7 @@ declare namespace gapi.client {
31609
31794
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31610
31795
  uploadType?: string;
31611
31796
  },
31612
- body: GoogleCloudAiplatformV1beta1PauseScheduleRequest
31797
+ body: GoogleCloudAiplatformV1beta1PauseScheduleRequest,
31613
31798
  ): Request<{}>;
31614
31799
  /** 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
31800
  resume(request: {
@@ -31667,7 +31852,7 @@ declare namespace gapi.client {
31667
31852
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31668
31853
  uploadType?: string;
31669
31854
  },
31670
- body: GoogleCloudAiplatformV1beta1ResumeScheduleRequest
31855
+ body: GoogleCloudAiplatformV1beta1ResumeScheduleRequest,
31671
31856
  ): Request<{}>;
31672
31857
  operations: OperationsResource;
31673
31858
  }
@@ -31965,7 +32150,7 @@ declare namespace gapi.client {
31965
32150
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
31966
32151
  uploadType?: string;
31967
32152
  },
31968
- body: GoogleCloudAiplatformV1beta1SpecialistPool
32153
+ body: GoogleCloudAiplatformV1beta1SpecialistPool,
31969
32154
  ): Request<GoogleLongrunningOperation>;
31970
32155
  /** Deletes a SpecialistPool as well as all Specialists in the pool. */
31971
32156
  delete(request?: {
@@ -32116,7 +32301,7 @@ declare namespace gapi.client {
32116
32301
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32117
32302
  uploadType?: string;
32118
32303
  },
32119
- body: GoogleCloudAiplatformV1beta1SpecialistPool
32304
+ body: GoogleCloudAiplatformV1beta1SpecialistPool,
32120
32305
  ): Request<GoogleLongrunningOperation>;
32121
32306
  operations: OperationsResource;
32122
32307
  }
@@ -32467,7 +32652,7 @@ declare namespace gapi.client {
32467
32652
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32468
32653
  uploadType?: string;
32469
32654
  },
32470
- body: GoogleCloudAiplatformV1beta1AddTrialMeasurementRequest
32655
+ body: GoogleCloudAiplatformV1beta1AddTrialMeasurementRequest,
32471
32656
  ): Request<GoogleCloudAiplatformV1beta1Trial>;
32472
32657
  /** Checks whether a Trial should stop or not. Returns a long-running operation. When the operation is successful, it will contain a CheckTrialEarlyStoppingStateResponse. */
32473
32658
  checkTrialEarlyStoppingState(request: {
@@ -32525,7 +32710,7 @@ declare namespace gapi.client {
32525
32710
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32526
32711
  uploadType?: string;
32527
32712
  },
32528
- body: GoogleCloudAiplatformV1beta1CheckTrialEarlyStoppingStateRequest
32713
+ body: GoogleCloudAiplatformV1beta1CheckTrialEarlyStoppingStateRequest,
32529
32714
  ): Request<GoogleLongrunningOperation>;
32530
32715
  /** Marks a Trial as complete. */
32531
32716
  complete(request: {
@@ -32583,7 +32768,7 @@ declare namespace gapi.client {
32583
32768
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32584
32769
  uploadType?: string;
32585
32770
  },
32586
- body: GoogleCloudAiplatformV1beta1CompleteTrialRequest
32771
+ body: GoogleCloudAiplatformV1beta1CompleteTrialRequest,
32587
32772
  ): Request<GoogleCloudAiplatformV1beta1Trial>;
32588
32773
  /** Adds a user provided Trial to a Study. */
32589
32774
  create(request: {
@@ -32641,7 +32826,7 @@ declare namespace gapi.client {
32641
32826
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32642
32827
  uploadType?: string;
32643
32828
  },
32644
- body: GoogleCloudAiplatformV1beta1Trial
32829
+ body: GoogleCloudAiplatformV1beta1Trial,
32645
32830
  ): Request<GoogleCloudAiplatformV1beta1Trial>;
32646
32831
  /** Deletes a Trial. */
32647
32832
  delete(request?: {
@@ -32784,7 +32969,7 @@ declare namespace gapi.client {
32784
32969
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32785
32970
  uploadType?: string;
32786
32971
  },
32787
- body: GoogleCloudAiplatformV1beta1ListOptimalTrialsRequest
32972
+ body: GoogleCloudAiplatformV1beta1ListOptimalTrialsRequest,
32788
32973
  ): Request<GoogleCloudAiplatformV1beta1ListOptimalTrialsResponse>;
32789
32974
  /** Stops a Trial. */
32790
32975
  stop(request: {
@@ -32842,7 +33027,7 @@ declare namespace gapi.client {
32842
33027
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32843
33028
  uploadType?: string;
32844
33029
  },
32845
- body: GoogleCloudAiplatformV1beta1StopTrialRequest
33030
+ body: GoogleCloudAiplatformV1beta1StopTrialRequest,
32846
33031
  ): Request<GoogleCloudAiplatformV1beta1Trial>;
32847
33032
  /** 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
33033
  suggest(request: {
@@ -32900,7 +33085,7 @@ declare namespace gapi.client {
32900
33085
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32901
33086
  uploadType?: string;
32902
33087
  },
32903
- body: GoogleCloudAiplatformV1beta1SuggestTrialsRequest
33088
+ body: GoogleCloudAiplatformV1beta1SuggestTrialsRequest,
32904
33089
  ): Request<GoogleLongrunningOperation>;
32905
33090
  operations: OperationsResource;
32906
33091
  }
@@ -32961,7 +33146,7 @@ declare namespace gapi.client {
32961
33146
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
32962
33147
  uploadType?: string;
32963
33148
  },
32964
- body: GoogleCloudAiplatformV1beta1Study
33149
+ body: GoogleCloudAiplatformV1beta1Study,
32965
33150
  ): Request<GoogleCloudAiplatformV1beta1Study>;
32966
33151
  /** Deletes a Study. */
32967
33152
  delete(request?: {
@@ -33104,7 +33289,7 @@ declare namespace gapi.client {
33104
33289
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33105
33290
  uploadType?: string;
33106
33291
  },
33107
- body: GoogleCloudAiplatformV1beta1LookupStudyRequest
33292
+ body: GoogleCloudAiplatformV1beta1LookupStudyRequest,
33108
33293
  ): Request<GoogleCloudAiplatformV1beta1Study>;
33109
33294
  operations: OperationsResource;
33110
33295
  trials: TrialsResource;
@@ -33605,7 +33790,7 @@ declare namespace gapi.client {
33605
33790
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33606
33791
  uploadType?: string;
33607
33792
  },
33608
- body: GoogleCloudAiplatformV1beta1TensorboardTimeSeries
33793
+ body: GoogleCloudAiplatformV1beta1TensorboardTimeSeries,
33609
33794
  ): Request<GoogleCloudAiplatformV1beta1TensorboardTimeSeries>;
33610
33795
  /** Deletes a TensorboardTimeSeries. */
33611
33796
  delete(request?: {
@@ -33690,7 +33875,7 @@ declare namespace gapi.client {
33690
33875
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33691
33876
  uploadType?: string;
33692
33877
  },
33693
- body: GoogleCloudAiplatformV1beta1ExportTensorboardTimeSeriesDataRequest
33878
+ body: GoogleCloudAiplatformV1beta1ExportTensorboardTimeSeriesDataRequest,
33694
33879
  ): Request<GoogleCloudAiplatformV1beta1ExportTensorboardTimeSeriesDataResponse>;
33695
33880
  /** Gets a TensorboardTimeSeries. */
33696
33881
  get(request?: {
@@ -33816,7 +34001,7 @@ declare namespace gapi.client {
33816
34001
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33817
34002
  uploadType?: string;
33818
34003
  },
33819
- body: GoogleCloudAiplatformV1beta1TensorboardTimeSeries
34004
+ body: GoogleCloudAiplatformV1beta1TensorboardTimeSeries,
33820
34005
  ): Request<GoogleCloudAiplatformV1beta1TensorboardTimeSeries>;
33821
34006
  /** 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
34007
  read(request?: {
@@ -33937,7 +34122,7 @@ declare namespace gapi.client {
33937
34122
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
33938
34123
  uploadType?: string;
33939
34124
  },
33940
- body: GoogleCloudAiplatformV1beta1BatchCreateTensorboardRunsRequest
34125
+ body: GoogleCloudAiplatformV1beta1BatchCreateTensorboardRunsRequest,
33941
34126
  ): Request<GoogleCloudAiplatformV1beta1BatchCreateTensorboardRunsResponse>;
33942
34127
  /** Creates a TensorboardRun. */
33943
34128
  create(request: {
@@ -33999,7 +34184,7 @@ declare namespace gapi.client {
33999
34184
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34000
34185
  uploadType?: string;
34001
34186
  },
34002
- body: GoogleCloudAiplatformV1beta1TensorboardRun
34187
+ body: GoogleCloudAiplatformV1beta1TensorboardRun,
34003
34188
  ): Request<GoogleCloudAiplatformV1beta1TensorboardRun>;
34004
34189
  /** Deletes a TensorboardRun. */
34005
34190
  delete(request?: {
@@ -34152,7 +34337,7 @@ declare namespace gapi.client {
34152
34337
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34153
34338
  uploadType?: string;
34154
34339
  },
34155
- body: GoogleCloudAiplatformV1beta1TensorboardRun
34340
+ body: GoogleCloudAiplatformV1beta1TensorboardRun,
34156
34341
  ): Request<GoogleCloudAiplatformV1beta1TensorboardRun>;
34157
34342
  /** Write time series data points into multiple TensorboardTimeSeries under a TensorboardRun. If any data fail to be ingested, an error is returned. */
34158
34343
  write(request: {
@@ -34210,7 +34395,7 @@ declare namespace gapi.client {
34210
34395
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34211
34396
  uploadType?: string;
34212
34397
  },
34213
- body: GoogleCloudAiplatformV1beta1WriteTensorboardRunDataRequest
34398
+ body: GoogleCloudAiplatformV1beta1WriteTensorboardRunDataRequest,
34214
34399
  ): Request<{}>;
34215
34400
  operations: OperationsResource;
34216
34401
  timeSeries: TimeSeriesResource;
@@ -34272,7 +34457,7 @@ declare namespace gapi.client {
34272
34457
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34273
34458
  uploadType?: string;
34274
34459
  },
34275
- body: GoogleCloudAiplatformV1beta1BatchCreateTensorboardTimeSeriesRequest
34460
+ body: GoogleCloudAiplatformV1beta1BatchCreateTensorboardTimeSeriesRequest,
34276
34461
  ): Request<GoogleCloudAiplatformV1beta1BatchCreateTensorboardTimeSeriesResponse>;
34277
34462
  /** Creates a TensorboardExperiment. */
34278
34463
  create(request: {
@@ -34334,7 +34519,7 @@ declare namespace gapi.client {
34334
34519
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34335
34520
  uploadType?: string;
34336
34521
  },
34337
- body: GoogleCloudAiplatformV1beta1TensorboardExperiment
34522
+ body: GoogleCloudAiplatformV1beta1TensorboardExperiment,
34338
34523
  ): Request<GoogleCloudAiplatformV1beta1TensorboardExperiment>;
34339
34524
  /** Deletes a TensorboardExperiment. */
34340
34525
  delete(request?: {
@@ -34487,7 +34672,7 @@ declare namespace gapi.client {
34487
34672
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34488
34673
  uploadType?: string;
34489
34674
  },
34490
- body: GoogleCloudAiplatformV1beta1TensorboardExperiment
34675
+ body: GoogleCloudAiplatformV1beta1TensorboardExperiment,
34491
34676
  ): Request<GoogleCloudAiplatformV1beta1TensorboardExperiment>;
34492
34677
  /** Write time series data points of multiple TensorboardTimeSeries in multiple TensorboardRun's. If any data fail to be ingested, an error is returned. */
34493
34678
  write(request: {
@@ -34545,7 +34730,7 @@ declare namespace gapi.client {
34545
34730
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34546
34731
  uploadType?: string;
34547
34732
  },
34548
- body: GoogleCloudAiplatformV1beta1WriteTensorboardExperimentDataRequest
34733
+ body: GoogleCloudAiplatformV1beta1WriteTensorboardExperimentDataRequest,
34549
34734
  ): Request<{}>;
34550
34735
  operations: OperationsResource;
34551
34736
  runs: RunsResource;
@@ -34781,7 +34966,7 @@ declare namespace gapi.client {
34781
34966
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34782
34967
  uploadType?: string;
34783
34968
  },
34784
- body: GoogleCloudAiplatformV1beta1Tensorboard
34969
+ body: GoogleCloudAiplatformV1beta1Tensorboard,
34785
34970
  ): Request<GoogleLongrunningOperation>;
34786
34971
  /** Deletes a Tensorboard. */
34787
34972
  delete(request?: {
@@ -34934,7 +35119,7 @@ declare namespace gapi.client {
34934
35119
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34935
35120
  uploadType?: string;
34936
35121
  },
34937
- body: GoogleCloudAiplatformV1beta1Tensorboard
35122
+ body: GoogleCloudAiplatformV1beta1Tensorboard,
34938
35123
  ): Request<GoogleLongrunningOperation>;
34939
35124
  /** Returns the storage size for a given TensorBoard instance. */
34940
35125
  readSize(request?: {
@@ -35195,7 +35380,7 @@ declare namespace gapi.client {
35195
35380
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35196
35381
  uploadType?: string;
35197
35382
  },
35198
- body: GoogleCloudAiplatformV1beta1CancelTrainingPipelineRequest
35383
+ body: GoogleCloudAiplatformV1beta1CancelTrainingPipelineRequest,
35199
35384
  ): Request<{}>;
35200
35385
  /** Creates a TrainingPipeline. A created TrainingPipeline right away will be attempted to be run. */
35201
35386
  create(request: {
@@ -35253,7 +35438,7 @@ declare namespace gapi.client {
35253
35438
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35254
35439
  uploadType?: string;
35255
35440
  },
35256
- body: GoogleCloudAiplatformV1beta1TrainingPipeline
35441
+ body: GoogleCloudAiplatformV1beta1TrainingPipeline,
35257
35442
  ): Request<GoogleCloudAiplatformV1beta1TrainingPipeline>;
35258
35443
  /** Deletes a TrainingPipeline. */
35259
35444
  delete(request?: {
@@ -35432,7 +35617,7 @@ declare namespace gapi.client {
35432
35617
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35433
35618
  uploadType?: string;
35434
35619
  },
35435
- body: GoogleCloudAiplatformV1beta1CancelTuningJobRequest
35620
+ body: GoogleCloudAiplatformV1beta1CancelTuningJobRequest,
35436
35621
  ): Request<{}>;
35437
35622
  /** Creates a TuningJob. A created TuningJob right away will be attempted to be run. */
35438
35623
  create(request: {
@@ -35490,7 +35675,7 @@ declare namespace gapi.client {
35490
35675
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35491
35676
  uploadType?: string;
35492
35677
  },
35493
- body: GoogleCloudAiplatformV1beta1TuningJob
35678
+ body: GoogleCloudAiplatformV1beta1TuningJob,
35494
35679
  ): Request<GoogleCloudAiplatformV1beta1TuningJob>;
35495
35680
  /** Gets a TuningJob. */
35496
35681
  get(request?: {
@@ -35608,7 +35793,7 @@ declare namespace gapi.client {
35608
35793
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35609
35794
  uploadType?: string;
35610
35795
  },
35611
- body: GoogleCloudAiplatformV1beta1RebaseTunedModelRequest
35796
+ body: GoogleCloudAiplatformV1beta1RebaseTunedModelRequest,
35612
35797
  ): Request<GoogleLongrunningOperation>;
35613
35798
  operations: OperationsResource;
35614
35799
  }
@@ -35669,7 +35854,7 @@ declare namespace gapi.client {
35669
35854
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35670
35855
  uploadType?: string;
35671
35856
  },
35672
- body: GoogleCloudAiplatformV1beta1AugmentPromptRequest
35857
+ body: GoogleCloudAiplatformV1beta1AugmentPromptRequest,
35673
35858
  ): Request<GoogleCloudAiplatformV1beta1AugmentPromptResponse>;
35674
35859
  /** 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
35860
  corroborateContent(request: {
@@ -35727,7 +35912,7 @@ declare namespace gapi.client {
35727
35912
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35728
35913
  uploadType?: string;
35729
35914
  },
35730
- body: GoogleCloudAiplatformV1beta1CorroborateContentRequest
35915
+ body: GoogleCloudAiplatformV1beta1CorroborateContentRequest,
35731
35916
  ): Request<GoogleCloudAiplatformV1beta1CorroborateContentResponse>;
35732
35917
  /** Deploys publisher models. */
35733
35918
  deploy(request: {
@@ -35785,7 +35970,7 @@ declare namespace gapi.client {
35785
35970
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35786
35971
  uploadType?: string;
35787
35972
  },
35788
- body: GoogleCloudAiplatformV1beta1DeployPublisherModelRequest
35973
+ body: GoogleCloudAiplatformV1beta1DeployPublisherModelRequest,
35789
35974
  ): Request<GoogleLongrunningOperation>;
35790
35975
  /** Evaluates instances based on a given metric. */
35791
35976
  evaluateInstances(request: {
@@ -35843,7 +36028,7 @@ declare namespace gapi.client {
35843
36028
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35844
36029
  uploadType?: string;
35845
36030
  },
35846
- body: GoogleCloudAiplatformV1beta1EvaluateInstancesRequest
36031
+ body: GoogleCloudAiplatformV1beta1EvaluateInstancesRequest,
35847
36032
  ): Request<GoogleCloudAiplatformV1beta1EvaluateInstancesResponse>;
35848
36033
  /** Gets information about a location. */
35849
36034
  get(request?: {
@@ -35961,7 +36146,7 @@ declare namespace gapi.client {
35961
36146
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35962
36147
  uploadType?: string;
35963
36148
  },
35964
- body: GoogleCloudAiplatformV1beta1RetrieveContextsRequest
36149
+ body: GoogleCloudAiplatformV1beta1RetrieveContextsRequest,
35965
36150
  ): Request<GoogleCloudAiplatformV1beta1RetrieveContextsResponse>;
35966
36151
  agents: AgentsResource;
35967
36152
  apps: AppsResource;
@@ -36090,7 +36275,7 @@ declare namespace gapi.client {
36090
36275
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36091
36276
  uploadType?: string;
36092
36277
  },
36093
- body: GoogleCloudAiplatformV1beta1CacheConfig
36278
+ body: GoogleCloudAiplatformV1beta1CacheConfig,
36094
36279
  ): Request<GoogleLongrunningOperation>;
36095
36280
  locations: LocationsResource;
36096
36281
  }
@@ -36151,7 +36336,7 @@ declare namespace gapi.client {
36151
36336
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36152
36337
  uploadType?: string;
36153
36338
  },
36154
- body: GoogleCloudAiplatformV1beta1ComputeTokensRequest
36339
+ body: GoogleCloudAiplatformV1beta1ComputeTokensRequest,
36155
36340
  ): Request<GoogleCloudAiplatformV1beta1ComputeTokensResponse>;
36156
36341
  /** Perform a token counting. */
36157
36342
  countTokens(request: {
@@ -36209,7 +36394,7 @@ declare namespace gapi.client {
36209
36394
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36210
36395
  uploadType?: string;
36211
36396
  },
36212
- body: GoogleCloudAiplatformV1beta1CountTokensRequest
36397
+ body: GoogleCloudAiplatformV1beta1CountTokensRequest,
36213
36398
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
36214
36399
  /** Generate content with multimodal inputs. */
36215
36400
  generateContent(request: {
@@ -36267,7 +36452,7 @@ declare namespace gapi.client {
36267
36452
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36268
36453
  uploadType?: string;
36269
36454
  },
36270
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
36455
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
36271
36456
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
36272
36457
  /** Gets a Model Garden publisher model. */
36273
36458
  get(request?: {
@@ -36345,6 +36530,64 @@ declare namespace gapi.client {
36345
36530
  /** Optional. PublisherModel view specifying which fields to read. */
36346
36531
  view?: string;
36347
36532
  }): Request<GoogleCloudAiplatformV1beta1ListPublisherModelsResponse>;
36533
+ /** Perform an online prediction. */
36534
+ predict(request: {
36535
+ /** V1 error format. */
36536
+ '$.xgafv'?: string;
36537
+ /** OAuth access token. */
36538
+ access_token?: string;
36539
+ /** Data format for response. */
36540
+ alt?: string;
36541
+ /** JSONP */
36542
+ callback?: string;
36543
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
36544
+ endpoint: string;
36545
+ /** Selector specifying which fields to include in a partial response. */
36546
+ fields?: string;
36547
+ /** 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. */
36548
+ key?: string;
36549
+ /** OAuth 2.0 token for the current user. */
36550
+ oauth_token?: string;
36551
+ /** Returns response with indentations and line breaks. */
36552
+ prettyPrint?: boolean;
36553
+ /** 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. */
36554
+ quotaUser?: string;
36555
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36556
+ upload_protocol?: string;
36557
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36558
+ uploadType?: string;
36559
+ /** Request body */
36560
+ resource: GoogleCloudAiplatformV1beta1PredictRequest;
36561
+ }): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
36562
+ predict(
36563
+ request: {
36564
+ /** V1 error format. */
36565
+ '$.xgafv'?: string;
36566
+ /** OAuth access token. */
36567
+ access_token?: string;
36568
+ /** Data format for response. */
36569
+ alt?: string;
36570
+ /** JSONP */
36571
+ callback?: string;
36572
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
36573
+ endpoint: string;
36574
+ /** Selector specifying which fields to include in a partial response. */
36575
+ fields?: string;
36576
+ /** 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. */
36577
+ key?: string;
36578
+ /** OAuth 2.0 token for the current user. */
36579
+ oauth_token?: string;
36580
+ /** Returns response with indentations and line breaks. */
36581
+ prettyPrint?: boolean;
36582
+ /** 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. */
36583
+ quotaUser?: string;
36584
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36585
+ upload_protocol?: string;
36586
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36587
+ uploadType?: string;
36588
+ },
36589
+ body: GoogleCloudAiplatformV1beta1PredictRequest,
36590
+ ): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
36348
36591
  /** Generate content with multimodal inputs with streaming support. */
36349
36592
  streamGenerateContent(request: {
36350
36593
  /** V1 error format. */
@@ -36401,7 +36644,7 @@ declare namespace gapi.client {
36401
36644
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36402
36645
  uploadType?: string;
36403
36646
  },
36404
- body: GoogleCloudAiplatformV1beta1GenerateContentRequest
36647
+ body: GoogleCloudAiplatformV1beta1GenerateContentRequest,
36405
36648
  ): Request<GoogleCloudAiplatformV1beta1GenerateContentResponse>;
36406
36649
  }
36407
36650
  interface PublishersResource {