@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20250120 → 0.0.20250205
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +487 -203
- package/package.json +1 -1
- 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250205
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
16
16
|
declare namespace gapi.client {
|
|
17
17
|
/** Load Vertex AI API v1 */
|
|
18
18
|
function load(
|
|
19
|
-
urlOrObject: 'https://aiplatform.googleapis.com/$discovery/rest?version=v1'
|
|
19
|
+
urlOrObject: 'https://aiplatform.googleapis.com/$discovery/rest?version=v1',
|
|
20
20
|
): Promise<void>;
|
|
21
21
|
/** @deprecated Please load APIs with discovery documents. */
|
|
22
22
|
function load(name: 'aiplatform', version: 'v1'): Promise<void>;
|
|
@@ -297,6 +297,14 @@ declare namespace gapi.client {
|
|
|
297
297
|
/** Immutable. The minimum number of replicas this DeployedModel will be always deployed on. If traffic against it increases, it may dynamically be deployed onto more replicas up to max_replica_count, and as traffic decreases, some of these extra replicas may be freed. If the requested value is too large, the deployment will error. */
|
|
298
298
|
minReplicaCount?: number;
|
|
299
299
|
}
|
|
300
|
+
interface GoogleCloudAiplatformV1AutoraterConfig {
|
|
301
|
+
/** Optional. The fully qualified name of the publisher model or tuned autorater endpoint to use. Publisher model format: `projects/{project}/locations/{location}/publishers/*/models/*` Tuned model endpoint format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
302
|
+
autoraterModel?: string;
|
|
303
|
+
/** Optional. Whether to flip the candidate and baseline responses. This is only applicable to the pairwise metric. If enabled, also provide PairwiseMetricSpec.candidate_response_field_name and PairwiseMetricSpec.baseline_response_field_name. When rendering PairwiseMetricSpec.metric_prompt_template, the candidate and baseline fields will be flipped for half of the samples to reduce bias. */
|
|
304
|
+
flipEnabled?: boolean;
|
|
305
|
+
/** Optional. Number of samples for each instance in the dataset. If not specified, the default is 4. Minimum value is 1, maximum value is 32. */
|
|
306
|
+
samplingCount?: number;
|
|
307
|
+
}
|
|
300
308
|
interface GoogleCloudAiplatformV1AutoscalingMetricSpec {
|
|
301
309
|
/** Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` */
|
|
302
310
|
metricName?: string;
|
|
@@ -555,6 +563,8 @@ declare namespace gapi.client {
|
|
|
555
563
|
interface GoogleCloudAiplatformV1Blob {
|
|
556
564
|
/** Required. Raw bytes. */
|
|
557
565
|
data?: string;
|
|
566
|
+
/** 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. */
|
|
567
|
+
displayName?: string;
|
|
558
568
|
/** Required. The IANA standard MIME type of the source data. */
|
|
559
569
|
mimeType?: string;
|
|
560
570
|
}
|
|
@@ -575,7 +585,7 @@ declare namespace gapi.client {
|
|
|
575
585
|
interface GoogleCloudAiplatformV1CachedContent {
|
|
576
586
|
/** Optional. Input only. Immutable. The content to cache */
|
|
577
587
|
contents?: GoogleCloudAiplatformV1Content[];
|
|
578
|
-
/** Output only.
|
|
588
|
+
/** Output only. Creation time of the cache entry. */
|
|
579
589
|
createTime?: string;
|
|
580
590
|
/** Optional. Immutable. The user-generated meaningful display name of the cached content. */
|
|
581
591
|
displayName?: string;
|
|
@@ -683,6 +693,12 @@ declare namespace gapi.client {
|
|
|
683
693
|
/** Customizable online prediction request timeout. */
|
|
684
694
|
inferenceTimeout?: string;
|
|
685
695
|
}
|
|
696
|
+
interface GoogleCloudAiplatformV1CodeExecutionResult {
|
|
697
|
+
/** Required. Outcome of the code execution. */
|
|
698
|
+
outcome?: string;
|
|
699
|
+
/** Optional. Contains stdout when code execution is successful, stderr or other description otherwise. */
|
|
700
|
+
output?: string;
|
|
701
|
+
}
|
|
686
702
|
interface GoogleCloudAiplatformV1CoherenceInput {
|
|
687
703
|
/** Required. Coherence instance. */
|
|
688
704
|
instance?: GoogleCloudAiplatformV1CoherenceInstance;
|
|
@@ -864,6 +880,8 @@ declare namespace gapi.client {
|
|
|
864
880
|
tools?: GoogleCloudAiplatformV1Tool[];
|
|
865
881
|
}
|
|
866
882
|
interface GoogleCloudAiplatformV1CountTokensResponse {
|
|
883
|
+
/** Output only. List of modalities that were processed in the request input. */
|
|
884
|
+
promptTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
|
|
867
885
|
/** The total number of billable characters counted across all instances from the request. */
|
|
868
886
|
totalBillableCharacters?: number;
|
|
869
887
|
/** The total number of tokens counted across all instances from the request. */
|
|
@@ -1326,6 +1344,8 @@ declare namespace gapi.client {
|
|
|
1326
1344
|
serviceAccount?: string;
|
|
1327
1345
|
/** The resource name of the shared DeploymentResourcePool to deploy on. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
|
|
1328
1346
|
sharedResources?: string;
|
|
1347
|
+
/** Optional. Spec for configuring speculative decoding. */
|
|
1348
|
+
speculativeDecodingSpec?: GoogleCloudAiplatformV1SpeculativeDecodingSpec;
|
|
1329
1349
|
/** Output only. Runtime status of the deployed model. */
|
|
1330
1350
|
status?: GoogleCloudAiplatformV1DeployedModelStatus;
|
|
1331
1351
|
/** System labels to apply to Model Garden deployments. System labels are managed by Google for internal use only. */
|
|
@@ -1461,6 +1481,8 @@ declare namespace gapi.client {
|
|
|
1461
1481
|
encryptionSpec?: GoogleCloudAiplatformV1EncryptionSpec;
|
|
1462
1482
|
/** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
1463
1483
|
etag?: string;
|
|
1484
|
+
/** 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. */
|
|
1485
|
+
genAiAdvancedFeaturesConfig?: GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig;
|
|
1464
1486
|
/** 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. */
|
|
1465
1487
|
labels?: {[P in string]: string};
|
|
1466
1488
|
/** 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}` */
|
|
@@ -1555,6 +1577,8 @@ declare namespace gapi.client {
|
|
|
1555
1577
|
explanationType?: string;
|
|
1556
1578
|
}
|
|
1557
1579
|
interface GoogleCloudAiplatformV1EvaluateInstancesRequest {
|
|
1580
|
+
/** Optional. Autorater config used for evaluation. */
|
|
1581
|
+
autoraterConfig?: GoogleCloudAiplatformV1AutoraterConfig;
|
|
1558
1582
|
/** Instances and metric spec for bleu metric. */
|
|
1559
1583
|
bleuInput?: GoogleCloudAiplatformV1BleuInput;
|
|
1560
1584
|
/** Input for coherence metric. */
|
|
@@ -1751,6 +1775,12 @@ declare namespace gapi.client {
|
|
|
1751
1775
|
/** The namespace name. */
|
|
1752
1776
|
namespaceName?: string;
|
|
1753
1777
|
}
|
|
1778
|
+
interface GoogleCloudAiplatformV1ExecutableCode {
|
|
1779
|
+
/** Required. The code to be executed. */
|
|
1780
|
+
code?: string;
|
|
1781
|
+
/** Required. Programming language of the `code`. */
|
|
1782
|
+
language?: string;
|
|
1783
|
+
}
|
|
1754
1784
|
interface GoogleCloudAiplatformV1Execution {
|
|
1755
1785
|
/** Output only. Timestamp when this Execution was created. */
|
|
1756
1786
|
createTime?: string;
|
|
@@ -2311,6 +2341,10 @@ declare namespace gapi.client {
|
|
|
2311
2341
|
satisfiesPzi?: boolean;
|
|
2312
2342
|
/** Output only. Reserved for future use. */
|
|
2313
2343
|
satisfiesPzs?: boolean;
|
|
2344
|
+
/** Output only. A Service Account unique to this FeatureView. The role bigquery.dataViewer should be granted to this service account to allow Vertex AI Feature Store to sync data to the online store. */
|
|
2345
|
+
serviceAccountEmail?: string;
|
|
2346
|
+
/** Optional. Service agent type used during data sync. By default, the Vertex AI Service Agent is used. When using an IAM Policy to isolate this FeatureView within a project, a separate service account should be provisioned by setting this field to `SERVICE_AGENT_TYPE_FEATURE_VIEW`. This will generate a separate service account to access the BigQuery source table. */
|
|
2347
|
+
serviceAgentType?: string;
|
|
2314
2348
|
/** Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving. */
|
|
2315
2349
|
syncConfig?: GoogleCloudAiplatformV1FeatureViewSyncConfig;
|
|
2316
2350
|
/** Output only. Timestamp when this FeatureView was last updated. */
|
|
@@ -2436,6 +2470,8 @@ declare namespace gapi.client {
|
|
|
2436
2470
|
operationName?: string;
|
|
2437
2471
|
}
|
|
2438
2472
|
interface GoogleCloudAiplatformV1FileData {
|
|
2473
|
+
/** 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. */
|
|
2474
|
+
displayName?: string;
|
|
2439
2475
|
/** Required. URI. */
|
|
2440
2476
|
fileUri?: string;
|
|
2441
2477
|
/** Required. The IANA standard MIME type of the source data. */
|
|
@@ -2589,6 +2625,14 @@ declare namespace gapi.client {
|
|
|
2589
2625
|
/** 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. */
|
|
2590
2626
|
uris?: string[];
|
|
2591
2627
|
}
|
|
2628
|
+
interface GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfig {
|
|
2629
|
+
/** Configuration for Retrieval Augmented Generation feature. */
|
|
2630
|
+
ragConfig?: GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfigRagConfig;
|
|
2631
|
+
}
|
|
2632
|
+
interface GoogleCloudAiplatformV1GenAiAdvancedFeaturesConfigRagConfig {
|
|
2633
|
+
/** 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. */
|
|
2634
|
+
enableRag?: boolean;
|
|
2635
|
+
}
|
|
2592
2636
|
interface GoogleCloudAiplatformV1GenerateContentRequest {
|
|
2593
2637
|
/** Optional. The name of the cached content used as context to serve the prediction. Note: only used in explicit caching, where users can have control over caching (e.g. what content to cache) and enjoy guaranteed cost savings. Format: `projects/{project}/locations/{location}/cachedContents/{cachedContent}` */
|
|
2594
2638
|
cachedContent?: string;
|
|
@@ -2610,10 +2654,14 @@ declare namespace gapi.client {
|
|
|
2610
2654
|
interface GoogleCloudAiplatformV1GenerateContentResponse {
|
|
2611
2655
|
/** Output only. Generated candidates. */
|
|
2612
2656
|
candidates?: GoogleCloudAiplatformV1Candidate[];
|
|
2657
|
+
/** Output only. Timestamp when the request is made to the server. */
|
|
2658
|
+
createTime?: string;
|
|
2613
2659
|
/** Output only. The model version used to generate the response. */
|
|
2614
2660
|
modelVersion?: string;
|
|
2615
2661
|
/** 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. */
|
|
2616
2662
|
promptFeedback?: GoogleCloudAiplatformV1GenerateContentResponsePromptFeedback;
|
|
2663
|
+
/** Output only. response_id is used to identify each response. It is the encoding of the event_id. */
|
|
2664
|
+
responseId?: string;
|
|
2617
2665
|
/** Usage metadata about the response(s). */
|
|
2618
2666
|
usageMetadata?: GoogleCloudAiplatformV1GenerateContentResponseUsageMetadata;
|
|
2619
2667
|
}
|
|
@@ -2628,10 +2676,16 @@ declare namespace gapi.client {
|
|
|
2628
2676
|
interface GoogleCloudAiplatformV1GenerateContentResponseUsageMetadata {
|
|
2629
2677
|
/** Output only. Number of tokens in the cached part in the input (the cached content). */
|
|
2630
2678
|
cachedContentTokenCount?: number;
|
|
2679
|
+
/** Output only. List of modalities of the cached content in the request input. */
|
|
2680
|
+
cacheTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
|
|
2631
2681
|
/** Number of tokens in the response(s). */
|
|
2632
2682
|
candidatesTokenCount?: number;
|
|
2683
|
+
/** Output only. List of modalities that were returned in the response. */
|
|
2684
|
+
candidatesTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
|
|
2633
2685
|
/** 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. */
|
|
2634
2686
|
promptTokenCount?: number;
|
|
2687
|
+
/** Output only. List of modalities that were processed in the request input. */
|
|
2688
|
+
promptTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
|
|
2635
2689
|
/** Total token count for prompt and response candidates. */
|
|
2636
2690
|
totalTokenCount?: number;
|
|
2637
2691
|
}
|
|
@@ -3283,6 +3337,12 @@ declare namespace gapi.client {
|
|
|
3283
3337
|
/** A token to retrieve next page of results. Pass to ListModelsRequest.page_token to obtain that page. */
|
|
3284
3338
|
nextPageToken?: string;
|
|
3285
3339
|
}
|
|
3340
|
+
interface GoogleCloudAiplatformV1ListModelVersionCheckpointsResponse {
|
|
3341
|
+
/** List of Model Version checkpoints. */
|
|
3342
|
+
checkpoints?: GoogleCloudAiplatformV1ModelVersionCheckpoint[];
|
|
3343
|
+
/** A token to retrieve the next page of results. Pass to ListModelVersionCheckpointsRequest.page_token to obtain that page. */
|
|
3344
|
+
nextPageToken?: string;
|
|
3345
|
+
}
|
|
3286
3346
|
interface GoogleCloudAiplatformV1ListModelVersionsResponse {
|
|
3287
3347
|
/** List of Model versions in the requested page. In the returned Model name field, version ID instead of regvision tag will be included. */
|
|
3288
3348
|
models?: GoogleCloudAiplatformV1Model[];
|
|
@@ -3448,6 +3508,8 @@ declare namespace gapi.client {
|
|
|
3448
3508
|
acceleratorType?: string;
|
|
3449
3509
|
/** Immutable. The type of the machine. See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types) See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types). For DeployedModel this field is optional, and the default value is `n1-standard-2`. For BatchPredictionJob or as part of WorkerPoolSpec this field is required. */
|
|
3450
3510
|
machineType?: string;
|
|
3511
|
+
/** Optional. Immutable. The number of nodes per replica for multihost GPU deployments. */
|
|
3512
|
+
multihostGpuNodeCount?: number;
|
|
3451
3513
|
/** Optional. Immutable. Configuration controlling how this resource pool consumes reservation. */
|
|
3452
3514
|
reservationAffinity?: GoogleCloudAiplatformV1ReservationAffinity;
|
|
3453
3515
|
/** Immutable. The topology of the TPUs. Corresponds to the TPU topologies available from GKE. (Example: tpu_topology: "2x2x1"). */
|
|
@@ -3635,6 +3697,12 @@ declare namespace gapi.client {
|
|
|
3635
3697
|
/** Migrated Model's resource name. */
|
|
3636
3698
|
model?: string;
|
|
3637
3699
|
}
|
|
3700
|
+
interface GoogleCloudAiplatformV1ModalityTokenCount {
|
|
3701
|
+
/** The modality associated with this token count. */
|
|
3702
|
+
modality?: string;
|
|
3703
|
+
/** Number of tokens. */
|
|
3704
|
+
tokenCount?: number;
|
|
3705
|
+
}
|
|
3638
3706
|
interface GoogleCloudAiplatformV1Model {
|
|
3639
3707
|
/** Immutable. The path to the directory containing the Model artifact and any of its supporting files. Not required for AutoML Models. */
|
|
3640
3708
|
artifactUri?: string;
|
|
@@ -3646,6 +3714,8 @@ declare namespace gapi.client {
|
|
|
3646
3714
|
createTime?: string;
|
|
3647
3715
|
/** Stats of data used for training or evaluating the Model. Only populated when the Model is trained by a TrainingPipeline with data_input_config. */
|
|
3648
3716
|
dataStats?: GoogleCloudAiplatformV1ModelDataStats;
|
|
3717
|
+
/** The default checkpoint id of a model version. */
|
|
3718
|
+
defaultCheckpointId?: string;
|
|
3649
3719
|
/** Output only. The pointers to DeployedModels created from this Model. Note that Model could have been deployed to Endpoints in different Locations. */
|
|
3650
3720
|
deployedModels?: GoogleCloudAiplatformV1DeployedModelRef[];
|
|
3651
3721
|
/** The description of the Model. */
|
|
@@ -3916,12 +3986,16 @@ declare namespace gapi.client {
|
|
|
3916
3986
|
interface GoogleCloudAiplatformV1ModelExportFormat {
|
|
3917
3987
|
/** Output only. The content of this Model that may be exported. */
|
|
3918
3988
|
exportableContents?: string[];
|
|
3919
|
-
/** Output only. The ID of the export format. The possible format IDs are: * `tflite` Used for Android mobile devices. * `edgetpu-tflite` Used for [Edge TPU](https://cloud.google.com/edge-tpu/) devices. * `tf-saved-model` A tensorflow model in SavedModel format. * `tf-js` A [TensorFlow.js](https://www.tensorflow.org/js) model that can be used in the browser and in Node.js using JavaScript. * `core-ml` Used for iOS mobile devices. * `custom-trained` A Model that was uploaded or trained by custom code. */
|
|
3989
|
+
/** Output only. The ID of the export format. The possible format IDs are: * `tflite` Used for Android mobile devices. * `edgetpu-tflite` Used for [Edge TPU](https://cloud.google.com/edge-tpu/) devices. * `tf-saved-model` A tensorflow model in SavedModel format. * `tf-js` A [TensorFlow.js](https://www.tensorflow.org/js) model that can be used in the browser and in Node.js using JavaScript. * `core-ml` Used for iOS mobile devices. * `custom-trained` A Model that was uploaded or trained by custom code. * `genie` A tuned Model Garden model. */
|
|
3920
3990
|
id?: string;
|
|
3921
3991
|
}
|
|
3922
3992
|
interface GoogleCloudAiplatformV1ModelGardenSource {
|
|
3923
3993
|
/** Required. The model garden source model resource name. */
|
|
3924
3994
|
publicModelName?: string;
|
|
3995
|
+
/** Optional. Whether to avoid pulling the model from the HF cache. */
|
|
3996
|
+
skipHfModelCache?: boolean;
|
|
3997
|
+
/** Optional. The model garden source model version ID. */
|
|
3998
|
+
versionId?: string;
|
|
3925
3999
|
}
|
|
3926
4000
|
interface GoogleCloudAiplatformV1ModelMonitoringAlertConfig {
|
|
3927
4001
|
/** Email alert config. */
|
|
@@ -4023,6 +4097,14 @@ declare namespace gapi.client {
|
|
|
4023
4097
|
/** Type of the model source. */
|
|
4024
4098
|
sourceType?: string;
|
|
4025
4099
|
}
|
|
4100
|
+
interface GoogleCloudAiplatformV1ModelVersionCheckpoint {
|
|
4101
|
+
/** The ID of the checkpoint. */
|
|
4102
|
+
checkpointId?: string;
|
|
4103
|
+
/** The epoch of the checkpoint. */
|
|
4104
|
+
epoch?: string;
|
|
4105
|
+
/** The step of the checkpoint. */
|
|
4106
|
+
step?: string;
|
|
4107
|
+
}
|
|
4026
4108
|
interface GoogleCloudAiplatformV1MutateDeployedIndexOperationMetadata {
|
|
4027
4109
|
/** The unique index id specified by user */
|
|
4028
4110
|
deployedIndexId?: string;
|
|
@@ -4393,6 +4475,8 @@ declare namespace gapi.client {
|
|
|
4393
4475
|
serviceAccount?: string;
|
|
4394
4476
|
/** Output only. Runtime Shielded VM spec. */
|
|
4395
4477
|
shieldedVmConfig?: GoogleCloudAiplatformV1ShieldedVmConfig;
|
|
4478
|
+
/** Output only. Software config of the notebook runtime. */
|
|
4479
|
+
softwareConfig?: GoogleCloudAiplatformV1NotebookSoftwareConfig;
|
|
4396
4480
|
/** Output only. Timestamp when this NotebookRuntime was most recently updated. */
|
|
4397
4481
|
updateTime?: string;
|
|
4398
4482
|
/** Output only. The VM os image version of NotebookRuntime. */
|
|
@@ -4433,6 +4517,8 @@ declare namespace gapi.client {
|
|
|
4433
4517
|
serviceAccount?: string;
|
|
4434
4518
|
/** Optional. Immutable. Runtime Shielded VM spec. */
|
|
4435
4519
|
shieldedVmConfig?: GoogleCloudAiplatformV1ShieldedVmConfig;
|
|
4520
|
+
/** Optional. The notebook software configuration of the notebook runtime. */
|
|
4521
|
+
softwareConfig?: GoogleCloudAiplatformV1NotebookSoftwareConfig;
|
|
4436
4522
|
/** Output only. Timestamp when this NotebookRuntimeTemplate was most recently updated. */
|
|
4437
4523
|
updateTime?: string;
|
|
4438
4524
|
}
|
|
@@ -4440,6 +4526,12 @@ declare namespace gapi.client {
|
|
|
4440
4526
|
/** Immutable. A resource name of the NotebookRuntimeTemplate. */
|
|
4441
4527
|
notebookRuntimeTemplate?: string;
|
|
4442
4528
|
}
|
|
4529
|
+
interface GoogleCloudAiplatformV1NotebookSoftwareConfig {
|
|
4530
|
+
/** Optional. Environment variables to be passed to the container. Maximum limit is 100. */
|
|
4531
|
+
env?: GoogleCloudAiplatformV1EnvVar[];
|
|
4532
|
+
/** Optional. Post startup script config. */
|
|
4533
|
+
postStartupScriptConfig?: GoogleCloudAiplatformV1PostStartupScriptConfig;
|
|
4534
|
+
}
|
|
4443
4535
|
interface GoogleCloudAiplatformV1PairwiseMetricInput {
|
|
4444
4536
|
/** Required. Pairwise metric instance. */
|
|
4445
4537
|
instance?: GoogleCloudAiplatformV1PairwiseMetricInstance;
|
|
@@ -4457,8 +4549,14 @@ declare namespace gapi.client {
|
|
|
4457
4549
|
pairwiseChoice?: string;
|
|
4458
4550
|
}
|
|
4459
4551
|
interface GoogleCloudAiplatformV1PairwiseMetricSpec {
|
|
4552
|
+
/** Optional. The field name of the baseline response. */
|
|
4553
|
+
baselineResponseFieldName?: string;
|
|
4554
|
+
/** Optional. The field name of the candidate response. */
|
|
4555
|
+
candidateResponseFieldName?: string;
|
|
4460
4556
|
/** Required. Metric prompt template for pairwise metric. */
|
|
4461
4557
|
metricPromptTemplate?: string;
|
|
4558
|
+
/** Optional. System instructions for pairwise metric. */
|
|
4559
|
+
systemInstruction?: string;
|
|
4462
4560
|
}
|
|
4463
4561
|
interface GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualityInput {
|
|
4464
4562
|
/** Required. Pairwise question answering quality instance. */
|
|
@@ -4525,6 +4623,10 @@ declare namespace gapi.client {
|
|
|
4525
4623
|
version?: number;
|
|
4526
4624
|
}
|
|
4527
4625
|
interface GoogleCloudAiplatformV1Part {
|
|
4626
|
+
/** Optional. Result of executing the [ExecutableCode]. */
|
|
4627
|
+
codeExecutionResult?: GoogleCloudAiplatformV1CodeExecutionResult;
|
|
4628
|
+
/** Optional. Code generated by the model that is meant to be executed. */
|
|
4629
|
+
executableCode?: GoogleCloudAiplatformV1ExecutableCode;
|
|
4528
4630
|
/** Optional. URI based data. */
|
|
4529
4631
|
fileData?: GoogleCloudAiplatformV1FileData;
|
|
4530
4632
|
/** Optional. A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] with the parameters and their values. */
|
|
@@ -4737,11 +4839,21 @@ declare namespace gapi.client {
|
|
|
4737
4839
|
interface GoogleCloudAiplatformV1PointwiseMetricSpec {
|
|
4738
4840
|
/** Required. Metric prompt template for pointwise metric. */
|
|
4739
4841
|
metricPromptTemplate?: string;
|
|
4842
|
+
/** Optional. System instructions for pointwise metric. */
|
|
4843
|
+
systemInstruction?: string;
|
|
4740
4844
|
}
|
|
4741
4845
|
interface GoogleCloudAiplatformV1Port {
|
|
4742
4846
|
/** The number of the port to expose on the pod's IP address. Must be a valid port number, between 1 and 65535 inclusive. */
|
|
4743
4847
|
containerPort?: number;
|
|
4744
4848
|
}
|
|
4849
|
+
interface GoogleCloudAiplatformV1PostStartupScriptConfig {
|
|
4850
|
+
/** Optional. Post startup script to run after runtime is started. */
|
|
4851
|
+
postStartupScript?: string;
|
|
4852
|
+
/** Optional. Post startup script behavior that defines download and execution behavior. */
|
|
4853
|
+
postStartupScriptBehavior?: string;
|
|
4854
|
+
/** Optional. Post startup script url to download. Example: https://bucket/script.sh */
|
|
4855
|
+
postStartupScriptUrl?: string;
|
|
4856
|
+
}
|
|
4745
4857
|
interface GoogleCloudAiplatformV1PrebuiltVoiceConfig {
|
|
4746
4858
|
/** The name of the preset voice to use. */
|
|
4747
4859
|
voiceName?: string;
|
|
@@ -4819,12 +4931,18 @@ declare namespace gapi.client {
|
|
|
4819
4931
|
interface GoogleCloudAiplatformV1Probe {
|
|
4820
4932
|
/** ExecAction probes the health of a container by executing a command. */
|
|
4821
4933
|
exec?: GoogleCloudAiplatformV1ProbeExecAction;
|
|
4934
|
+
/** Number of consecutive failures before the probe is considered failed. Defaults to 3. Minimum value is 1. Maps to Kubernetes probe argument 'failureThreshold'. */
|
|
4935
|
+
failureThreshold?: number;
|
|
4822
4936
|
/** GrpcAction probes the health of a container by sending a gRPC request. */
|
|
4823
4937
|
grpc?: GoogleCloudAiplatformV1ProbeGrpcAction;
|
|
4824
4938
|
/** HttpGetAction probes the health of a container by sending an HTTP GET request. */
|
|
4825
4939
|
httpGet?: GoogleCloudAiplatformV1ProbeHttpGetAction;
|
|
4940
|
+
/** Number of seconds to wait before starting the probe. Defaults to 0. Minimum value is 0. Maps to Kubernetes probe argument 'initialDelaySeconds'. */
|
|
4941
|
+
initialDelaySeconds?: number;
|
|
4826
4942
|
/** How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Must be less than timeout_seconds. Maps to Kubernetes probe argument 'periodSeconds'. */
|
|
4827
4943
|
periodSeconds?: number;
|
|
4944
|
+
/** Number of consecutive successes before the probe is considered successful. Defaults to 1. Minimum value is 1. Maps to Kubernetes probe argument 'successThreshold'. */
|
|
4945
|
+
successThreshold?: number;
|
|
4828
4946
|
/** TcpSocketAction probes the health of a container by opening a TCP socket connection. */
|
|
4829
4947
|
tcpSocket?: GoogleCloudAiplatformV1ProbeTcpSocketAction;
|
|
4830
4948
|
/** Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. Must be greater or equal to period_seconds. Maps to Kubernetes probe argument 'timeoutSeconds'. */
|
|
@@ -7391,6 +7509,22 @@ declare namespace gapi.client {
|
|
|
7391
7509
|
/** The email addresses of workers in the SpecialistPool. */
|
|
7392
7510
|
specialistWorkerEmails?: string[];
|
|
7393
7511
|
}
|
|
7512
|
+
interface GoogleCloudAiplatformV1SpeculativeDecodingSpec {
|
|
7513
|
+
/** draft model speculation. */
|
|
7514
|
+
draftModelSpeculation?: GoogleCloudAiplatformV1SpeculativeDecodingSpecDraftModelSpeculation;
|
|
7515
|
+
/** N-Gram speculation. */
|
|
7516
|
+
ngramSpeculation?: GoogleCloudAiplatformV1SpeculativeDecodingSpecNgramSpeculation;
|
|
7517
|
+
/** The number of speculative tokens to generate at each step. */
|
|
7518
|
+
speculativeTokenCount?: number;
|
|
7519
|
+
}
|
|
7520
|
+
interface GoogleCloudAiplatformV1SpeculativeDecodingSpecDraftModelSpeculation {
|
|
7521
|
+
/** Required. The resource name of the draft model. */
|
|
7522
|
+
draftModel?: string;
|
|
7523
|
+
}
|
|
7524
|
+
interface GoogleCloudAiplatformV1SpeculativeDecodingSpecNgramSpeculation {
|
|
7525
|
+
/** 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. */
|
|
7526
|
+
ngramSize?: number;
|
|
7527
|
+
}
|
|
7394
7528
|
interface GoogleCloudAiplatformV1SpeechConfig {
|
|
7395
7529
|
/** The configuration for the speaker to use. */
|
|
7396
7530
|
voiceConfig?: GoogleCloudAiplatformV1VoiceConfig;
|
|
@@ -7988,6 +8122,8 @@ declare namespace gapi.client {
|
|
|
7988
8122
|
tokens?: string[];
|
|
7989
8123
|
}
|
|
7990
8124
|
interface GoogleCloudAiplatformV1Tool {
|
|
8125
|
+
/** Optional. CodeExecution tool type. Enables the model to execute code as part of generation. This field is only used by the Gemini Developer API services. */
|
|
8126
|
+
codeExecution?: any;
|
|
7991
8127
|
/** Optional. Function tool type. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum 128 function declarations can be provided. */
|
|
7992
8128
|
functionDeclarations?: GoogleCloudAiplatformV1FunctionDeclaration[];
|
|
7993
8129
|
/** Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. */
|
|
@@ -8024,6 +8160,7 @@ declare namespace gapi.client {
|
|
|
8024
8160
|
toolCallValidMetricValues?: GoogleCloudAiplatformV1ToolCallValidMetricValue[];
|
|
8025
8161
|
}
|
|
8026
8162
|
interface GoogleCloudAiplatformV1ToolCallValidSpec {}
|
|
8163
|
+
interface GoogleCloudAiplatformV1ToolCodeExecution {}
|
|
8027
8164
|
interface GoogleCloudAiplatformV1ToolConfig {
|
|
8028
8165
|
/** Optional. Function calling config. */
|
|
8029
8166
|
functionCallingConfig?: GoogleCloudAiplatformV1FunctionCallingConfig;
|
|
@@ -8351,7 +8488,7 @@ declare namespace gapi.client {
|
|
|
8351
8488
|
state?: string;
|
|
8352
8489
|
/** Tuning Spec for Supervised Fine Tuning. */
|
|
8353
8490
|
supervisedTuningSpec?: GoogleCloudAiplatformV1SupervisedTuningSpec;
|
|
8354
|
-
/** Output only. The tuned model resources
|
|
8491
|
+
/** Output only. The tuned model resources associated with this TuningJob. */
|
|
8355
8492
|
tunedModel?: GoogleCloudAiplatformV1TunedModel;
|
|
8356
8493
|
/** Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
|
|
8357
8494
|
tunedModelDisplayName?: string;
|
|
@@ -8766,7 +8903,7 @@ declare namespace gapi.client {
|
|
|
8766
8903
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8767
8904
|
uploadType?: string;
|
|
8768
8905
|
},
|
|
8769
|
-
body: GoogleCloudAiplatformV1DatasetVersion
|
|
8906
|
+
body: GoogleCloudAiplatformV1DatasetVersion,
|
|
8770
8907
|
): Request<GoogleLongrunningOperation>;
|
|
8771
8908
|
/** Deletes a Dataset version. */
|
|
8772
8909
|
delete(request?: {
|
|
@@ -8921,7 +9058,7 @@ declare namespace gapi.client {
|
|
|
8921
9058
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
8922
9059
|
uploadType?: string;
|
|
8923
9060
|
},
|
|
8924
|
-
body: GoogleCloudAiplatformV1DatasetVersion
|
|
9061
|
+
body: GoogleCloudAiplatformV1DatasetVersion,
|
|
8925
9062
|
): Request<GoogleCloudAiplatformV1DatasetVersion>;
|
|
8926
9063
|
/** Restores a dataset version. */
|
|
8927
9064
|
restore(request?: {
|
|
@@ -9008,7 +9145,7 @@ declare namespace gapi.client {
|
|
|
9008
9145
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9009
9146
|
uploadType?: string;
|
|
9010
9147
|
},
|
|
9011
|
-
body: GoogleCloudAiplatformV1Dataset
|
|
9148
|
+
body: GoogleCloudAiplatformV1Dataset,
|
|
9012
9149
|
): Request<GoogleLongrunningOperation>;
|
|
9013
9150
|
/** Deletes a Dataset. */
|
|
9014
9151
|
delete(request?: {
|
|
@@ -9163,7 +9300,7 @@ declare namespace gapi.client {
|
|
|
9163
9300
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9164
9301
|
uploadType?: string;
|
|
9165
9302
|
},
|
|
9166
|
-
body: GoogleCloudAiplatformV1Dataset
|
|
9303
|
+
body: GoogleCloudAiplatformV1Dataset,
|
|
9167
9304
|
): Request<GoogleCloudAiplatformV1Dataset>;
|
|
9168
9305
|
datasetVersions: DatasetVersionsResource;
|
|
9169
9306
|
}
|
|
@@ -9224,7 +9361,7 @@ declare namespace gapi.client {
|
|
|
9224
9361
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9225
9362
|
uploadType?: string;
|
|
9226
9363
|
},
|
|
9227
|
-
body: GoogleCloudAiplatformV1ComputeTokensRequest
|
|
9364
|
+
body: GoogleCloudAiplatformV1ComputeTokensRequest,
|
|
9228
9365
|
): Request<GoogleCloudAiplatformV1ComputeTokensResponse>;
|
|
9229
9366
|
/** Perform a token counting. */
|
|
9230
9367
|
countTokens(request: {
|
|
@@ -9282,7 +9419,7 @@ declare namespace gapi.client {
|
|
|
9282
9419
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9283
9420
|
uploadType?: string;
|
|
9284
9421
|
},
|
|
9285
|
-
body: GoogleCloudAiplatformV1CountTokensRequest
|
|
9422
|
+
body: GoogleCloudAiplatformV1CountTokensRequest,
|
|
9286
9423
|
): Request<GoogleCloudAiplatformV1CountTokensResponse>;
|
|
9287
9424
|
/** Generate content with multimodal inputs. */
|
|
9288
9425
|
generateContent(request: {
|
|
@@ -9340,8 +9477,66 @@ declare namespace gapi.client {
|
|
|
9340
9477
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9341
9478
|
uploadType?: string;
|
|
9342
9479
|
},
|
|
9343
|
-
body: GoogleCloudAiplatformV1GenerateContentRequest
|
|
9480
|
+
body: GoogleCloudAiplatformV1GenerateContentRequest,
|
|
9344
9481
|
): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
|
|
9482
|
+
/** Perform an online prediction. */
|
|
9483
|
+
predict(request: {
|
|
9484
|
+
/** V1 error format. */
|
|
9485
|
+
'$.xgafv'?: string;
|
|
9486
|
+
/** OAuth access token. */
|
|
9487
|
+
access_token?: string;
|
|
9488
|
+
/** Data format for response. */
|
|
9489
|
+
alt?: string;
|
|
9490
|
+
/** JSONP */
|
|
9491
|
+
callback?: string;
|
|
9492
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
9493
|
+
endpoint: string;
|
|
9494
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9495
|
+
fields?: string;
|
|
9496
|
+
/** 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. */
|
|
9497
|
+
key?: string;
|
|
9498
|
+
/** OAuth 2.0 token for the current user. */
|
|
9499
|
+
oauth_token?: string;
|
|
9500
|
+
/** Returns response with indentations and line breaks. */
|
|
9501
|
+
prettyPrint?: boolean;
|
|
9502
|
+
/** 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. */
|
|
9503
|
+
quotaUser?: string;
|
|
9504
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9505
|
+
upload_protocol?: string;
|
|
9506
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9507
|
+
uploadType?: string;
|
|
9508
|
+
/** Request body */
|
|
9509
|
+
resource: GoogleCloudAiplatformV1PredictRequest;
|
|
9510
|
+
}): Request<GoogleCloudAiplatformV1PredictResponse>;
|
|
9511
|
+
predict(
|
|
9512
|
+
request: {
|
|
9513
|
+
/** V1 error format. */
|
|
9514
|
+
'$.xgafv'?: string;
|
|
9515
|
+
/** OAuth access token. */
|
|
9516
|
+
access_token?: string;
|
|
9517
|
+
/** Data format for response. */
|
|
9518
|
+
alt?: string;
|
|
9519
|
+
/** JSONP */
|
|
9520
|
+
callback?: string;
|
|
9521
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
9522
|
+
endpoint: string;
|
|
9523
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
9524
|
+
fields?: string;
|
|
9525
|
+
/** 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. */
|
|
9526
|
+
key?: string;
|
|
9527
|
+
/** OAuth 2.0 token for the current user. */
|
|
9528
|
+
oauth_token?: string;
|
|
9529
|
+
/** Returns response with indentations and line breaks. */
|
|
9530
|
+
prettyPrint?: boolean;
|
|
9531
|
+
/** 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. */
|
|
9532
|
+
quotaUser?: string;
|
|
9533
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
9534
|
+
upload_protocol?: string;
|
|
9535
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9536
|
+
uploadType?: string;
|
|
9537
|
+
},
|
|
9538
|
+
body: GoogleCloudAiplatformV1PredictRequest,
|
|
9539
|
+
): Request<GoogleCloudAiplatformV1PredictResponse>;
|
|
9345
9540
|
/** Generate content with multimodal inputs with streaming support. */
|
|
9346
9541
|
streamGenerateContent(request: {
|
|
9347
9542
|
/** V1 error format. */
|
|
@@ -9398,7 +9593,7 @@ declare namespace gapi.client {
|
|
|
9398
9593
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9399
9594
|
uploadType?: string;
|
|
9400
9595
|
},
|
|
9401
|
-
body: GoogleCloudAiplatformV1GenerateContentRequest
|
|
9596
|
+
body: GoogleCloudAiplatformV1GenerateContentRequest,
|
|
9402
9597
|
): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
|
|
9403
9598
|
}
|
|
9404
9599
|
interface MediaResource {
|
|
@@ -9458,7 +9653,7 @@ declare namespace gapi.client {
|
|
|
9458
9653
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9459
9654
|
uploadType?: string;
|
|
9460
9655
|
},
|
|
9461
|
-
body: GoogleCloudAiplatformV1UploadRagFileRequest
|
|
9656
|
+
body: GoogleCloudAiplatformV1UploadRagFileRequest,
|
|
9462
9657
|
): Request<GoogleCloudAiplatformV1UploadRagFileResponse>;
|
|
9463
9658
|
}
|
|
9464
9659
|
interface BatchPredictionJobsResource {
|
|
@@ -9518,7 +9713,7 @@ declare namespace gapi.client {
|
|
|
9518
9713
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9519
9714
|
uploadType?: string;
|
|
9520
9715
|
},
|
|
9521
|
-
body: GoogleCloudAiplatformV1CancelBatchPredictionJobRequest
|
|
9716
|
+
body: GoogleCloudAiplatformV1CancelBatchPredictionJobRequest,
|
|
9522
9717
|
): Request<{}>;
|
|
9523
9718
|
/** Creates a BatchPredictionJob. A BatchPredictionJob once created will right away be attempted to start. */
|
|
9524
9719
|
create(request: {
|
|
@@ -9576,7 +9771,7 @@ declare namespace gapi.client {
|
|
|
9576
9771
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9577
9772
|
uploadType?: string;
|
|
9578
9773
|
},
|
|
9579
|
-
body: GoogleCloudAiplatformV1BatchPredictionJob
|
|
9774
|
+
body: GoogleCloudAiplatformV1BatchPredictionJob,
|
|
9580
9775
|
): Request<GoogleCloudAiplatformV1BatchPredictionJob>;
|
|
9581
9776
|
/** Deletes a BatchPredictionJob. Can only be called on jobs that already finished. */
|
|
9582
9777
|
delete(request?: {
|
|
@@ -9725,7 +9920,7 @@ declare namespace gapi.client {
|
|
|
9725
9920
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9726
9921
|
uploadType?: string;
|
|
9727
9922
|
},
|
|
9728
|
-
body: GoogleCloudAiplatformV1CachedContent
|
|
9923
|
+
body: GoogleCloudAiplatformV1CachedContent,
|
|
9729
9924
|
): Request<GoogleCloudAiplatformV1CachedContent>;
|
|
9730
9925
|
/** Deletes cached content */
|
|
9731
9926
|
delete(request?: {
|
|
@@ -9872,7 +10067,7 @@ declare namespace gapi.client {
|
|
|
9872
10067
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9873
10068
|
uploadType?: string;
|
|
9874
10069
|
},
|
|
9875
|
-
body: GoogleCloudAiplatformV1CachedContent
|
|
10070
|
+
body: GoogleCloudAiplatformV1CachedContent,
|
|
9876
10071
|
): Request<GoogleCloudAiplatformV1CachedContent>;
|
|
9877
10072
|
}
|
|
9878
10073
|
interface OperationsResource {
|
|
@@ -10077,7 +10272,7 @@ declare namespace gapi.client {
|
|
|
10077
10272
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10078
10273
|
uploadType?: string;
|
|
10079
10274
|
},
|
|
10080
|
-
body: GoogleCloudAiplatformV1CancelCustomJobRequest
|
|
10275
|
+
body: GoogleCloudAiplatformV1CancelCustomJobRequest,
|
|
10081
10276
|
): Request<{}>;
|
|
10082
10277
|
/** Creates a CustomJob. A created CustomJob right away will be attempted to be run. */
|
|
10083
10278
|
create(request: {
|
|
@@ -10135,7 +10330,7 @@ declare namespace gapi.client {
|
|
|
10135
10330
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10136
10331
|
uploadType?: string;
|
|
10137
10332
|
},
|
|
10138
|
-
body: GoogleCloudAiplatformV1CustomJob
|
|
10333
|
+
body: GoogleCloudAiplatformV1CustomJob,
|
|
10139
10334
|
): Request<GoogleCloudAiplatformV1CustomJob>;
|
|
10140
10335
|
/** Deletes a CustomJob. */
|
|
10141
10336
|
delete(request?: {
|
|
@@ -10430,7 +10625,7 @@ declare namespace gapi.client {
|
|
|
10430
10625
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10431
10626
|
uploadType?: string;
|
|
10432
10627
|
},
|
|
10433
|
-
body: GoogleCloudAiplatformV1CancelDataLabelingJobRequest
|
|
10628
|
+
body: GoogleCloudAiplatformV1CancelDataLabelingJobRequest,
|
|
10434
10629
|
): Request<{}>;
|
|
10435
10630
|
/** Creates a DataLabelingJob. */
|
|
10436
10631
|
create(request: {
|
|
@@ -10488,7 +10683,7 @@ declare namespace gapi.client {
|
|
|
10488
10683
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10489
10684
|
uploadType?: string;
|
|
10490
10685
|
},
|
|
10491
|
-
body: GoogleCloudAiplatformV1DataLabelingJob
|
|
10686
|
+
body: GoogleCloudAiplatformV1DataLabelingJob,
|
|
10492
10687
|
): Request<GoogleCloudAiplatformV1DataLabelingJob>;
|
|
10493
10688
|
/** Deletes a DataLabelingJob. */
|
|
10494
10689
|
delete(request?: {
|
|
@@ -11188,7 +11383,7 @@ declare namespace gapi.client {
|
|
|
11188
11383
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11189
11384
|
uploadType?: string;
|
|
11190
11385
|
},
|
|
11191
|
-
body: GoogleCloudAiplatformV1DatasetVersion
|
|
11386
|
+
body: GoogleCloudAiplatformV1DatasetVersion,
|
|
11192
11387
|
): Request<GoogleLongrunningOperation>;
|
|
11193
11388
|
/** Deletes a Dataset version. */
|
|
11194
11389
|
delete(request?: {
|
|
@@ -11343,7 +11538,7 @@ declare namespace gapi.client {
|
|
|
11343
11538
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11344
11539
|
uploadType?: string;
|
|
11345
11540
|
},
|
|
11346
|
-
body: GoogleCloudAiplatformV1DatasetVersion
|
|
11541
|
+
body: GoogleCloudAiplatformV1DatasetVersion,
|
|
11347
11542
|
): Request<GoogleCloudAiplatformV1DatasetVersion>;
|
|
11348
11543
|
/** Restores a dataset version. */
|
|
11349
11544
|
restore(request?: {
|
|
@@ -11787,7 +11982,7 @@ declare namespace gapi.client {
|
|
|
11787
11982
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11788
11983
|
uploadType?: string;
|
|
11789
11984
|
},
|
|
11790
|
-
body: GoogleCloudAiplatformV1Dataset
|
|
11985
|
+
body: GoogleCloudAiplatformV1Dataset,
|
|
11791
11986
|
): Request<GoogleLongrunningOperation>;
|
|
11792
11987
|
/** Deletes a Dataset. */
|
|
11793
11988
|
delete(request?: {
|
|
@@ -11872,7 +12067,7 @@ declare namespace gapi.client {
|
|
|
11872
12067
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11873
12068
|
uploadType?: string;
|
|
11874
12069
|
},
|
|
11875
|
-
body: GoogleCloudAiplatformV1ExportDataRequest
|
|
12070
|
+
body: GoogleCloudAiplatformV1ExportDataRequest,
|
|
11876
12071
|
): Request<GoogleLongrunningOperation>;
|
|
11877
12072
|
/** Gets a Dataset. */
|
|
11878
12073
|
get(request?: {
|
|
@@ -11959,7 +12154,7 @@ declare namespace gapi.client {
|
|
|
11959
12154
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11960
12155
|
uploadType?: string;
|
|
11961
12156
|
},
|
|
11962
|
-
body: GoogleCloudAiplatformV1ImportDataRequest
|
|
12157
|
+
body: GoogleCloudAiplatformV1ImportDataRequest,
|
|
11963
12158
|
): Request<GoogleLongrunningOperation>;
|
|
11964
12159
|
/** Lists Datasets in a Location. */
|
|
11965
12160
|
list(request?: {
|
|
@@ -12058,7 +12253,7 @@ declare namespace gapi.client {
|
|
|
12058
12253
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12059
12254
|
uploadType?: string;
|
|
12060
12255
|
},
|
|
12061
|
-
body: GoogleCloudAiplatformV1Dataset
|
|
12256
|
+
body: GoogleCloudAiplatformV1Dataset,
|
|
12062
12257
|
): Request<GoogleCloudAiplatformV1Dataset>;
|
|
12063
12258
|
/** Searches DataItems in a Dataset. */
|
|
12064
12259
|
searchDataItems(request?: {
|
|
@@ -12321,7 +12516,7 @@ declare namespace gapi.client {
|
|
|
12321
12516
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12322
12517
|
uploadType?: string;
|
|
12323
12518
|
},
|
|
12324
|
-
body: GoogleCloudAiplatformV1CreateDeploymentResourcePoolRequest
|
|
12519
|
+
body: GoogleCloudAiplatformV1CreateDeploymentResourcePoolRequest,
|
|
12325
12520
|
): Request<GoogleLongrunningOperation>;
|
|
12326
12521
|
/** Delete a DeploymentResourcePool. */
|
|
12327
12522
|
delete(request?: {
|
|
@@ -12468,7 +12663,7 @@ declare namespace gapi.client {
|
|
|
12468
12663
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12469
12664
|
uploadType?: string;
|
|
12470
12665
|
},
|
|
12471
|
-
body: GoogleCloudAiplatformV1DeploymentResourcePool
|
|
12666
|
+
body: GoogleCloudAiplatformV1DeploymentResourcePool,
|
|
12472
12667
|
): Request<GoogleLongrunningOperation>;
|
|
12473
12668
|
/** List DeployedModels that have been deployed on this DeploymentResourcePool. */
|
|
12474
12669
|
queryDeployedModels(request?: {
|
|
@@ -12560,7 +12755,7 @@ declare namespace gapi.client {
|
|
|
12560
12755
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12561
12756
|
uploadType?: string;
|
|
12562
12757
|
},
|
|
12563
|
-
body: GoogleApiHttpBody
|
|
12758
|
+
body: GoogleApiHttpBody,
|
|
12564
12759
|
): Request<GoogleApiHttpBody>;
|
|
12565
12760
|
}
|
|
12566
12761
|
interface OperationsResource {
|
|
@@ -12765,7 +12960,7 @@ declare namespace gapi.client {
|
|
|
12765
12960
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12766
12961
|
uploadType?: string;
|
|
12767
12962
|
},
|
|
12768
|
-
body: GoogleCloudAiplatformV1ComputeTokensRequest
|
|
12963
|
+
body: GoogleCloudAiplatformV1ComputeTokensRequest,
|
|
12769
12964
|
): Request<GoogleCloudAiplatformV1ComputeTokensResponse>;
|
|
12770
12965
|
/** Perform a token counting. */
|
|
12771
12966
|
countTokens(request: {
|
|
@@ -12823,7 +13018,7 @@ declare namespace gapi.client {
|
|
|
12823
13018
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12824
13019
|
uploadType?: string;
|
|
12825
13020
|
},
|
|
12826
|
-
body: GoogleCloudAiplatformV1CountTokensRequest
|
|
13021
|
+
body: GoogleCloudAiplatformV1CountTokensRequest,
|
|
12827
13022
|
): Request<GoogleCloudAiplatformV1CountTokensResponse>;
|
|
12828
13023
|
/** Creates an Endpoint. */
|
|
12829
13024
|
create(request: {
|
|
@@ -12885,7 +13080,7 @@ declare namespace gapi.client {
|
|
|
12885
13080
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12886
13081
|
uploadType?: string;
|
|
12887
13082
|
},
|
|
12888
|
-
body: GoogleCloudAiplatformV1Endpoint
|
|
13083
|
+
body: GoogleCloudAiplatformV1Endpoint,
|
|
12889
13084
|
): Request<GoogleLongrunningOperation>;
|
|
12890
13085
|
/** Deletes an Endpoint. */
|
|
12891
13086
|
delete(request?: {
|
|
@@ -12970,7 +13165,7 @@ declare namespace gapi.client {
|
|
|
12970
13165
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12971
13166
|
uploadType?: string;
|
|
12972
13167
|
},
|
|
12973
|
-
body: GoogleCloudAiplatformV1DeployModelRequest
|
|
13168
|
+
body: GoogleCloudAiplatformV1DeployModelRequest,
|
|
12974
13169
|
): Request<GoogleLongrunningOperation>;
|
|
12975
13170
|
/** Perform an unary online prediction request to a gRPC model server for Vertex first-party products and frameworks. */
|
|
12976
13171
|
directPredict(request: {
|
|
@@ -13028,7 +13223,7 @@ declare namespace gapi.client {
|
|
|
13028
13223
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13029
13224
|
uploadType?: string;
|
|
13030
13225
|
},
|
|
13031
|
-
body: GoogleCloudAiplatformV1DirectPredictRequest
|
|
13226
|
+
body: GoogleCloudAiplatformV1DirectPredictRequest,
|
|
13032
13227
|
): Request<GoogleCloudAiplatformV1DirectPredictResponse>;
|
|
13033
13228
|
/** Perform an unary online prediction request to a gRPC model server for custom containers. */
|
|
13034
13229
|
directRawPredict(request: {
|
|
@@ -13086,7 +13281,7 @@ declare namespace gapi.client {
|
|
|
13086
13281
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13087
13282
|
uploadType?: string;
|
|
13088
13283
|
},
|
|
13089
|
-
body: GoogleCloudAiplatformV1DirectRawPredictRequest
|
|
13284
|
+
body: GoogleCloudAiplatformV1DirectRawPredictRequest,
|
|
13090
13285
|
): Request<GoogleCloudAiplatformV1DirectRawPredictResponse>;
|
|
13091
13286
|
/** 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. */
|
|
13092
13287
|
explain(request: {
|
|
@@ -13144,7 +13339,7 @@ declare namespace gapi.client {
|
|
|
13144
13339
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13145
13340
|
uploadType?: string;
|
|
13146
13341
|
},
|
|
13147
|
-
body: GoogleCloudAiplatformV1ExplainRequest
|
|
13342
|
+
body: GoogleCloudAiplatformV1ExplainRequest,
|
|
13148
13343
|
): Request<GoogleCloudAiplatformV1ExplainResponse>;
|
|
13149
13344
|
/** Fetch an asynchronous online prediction operation. */
|
|
13150
13345
|
fetchPredictOperation(request: {
|
|
@@ -13202,7 +13397,7 @@ declare namespace gapi.client {
|
|
|
13202
13397
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13203
13398
|
uploadType?: string;
|
|
13204
13399
|
},
|
|
13205
|
-
body: GoogleCloudAiplatformV1FetchPredictOperationRequest
|
|
13400
|
+
body: GoogleCloudAiplatformV1FetchPredictOperationRequest,
|
|
13206
13401
|
): Request<GoogleLongrunningOperation>;
|
|
13207
13402
|
/** Generate content with multimodal inputs. */
|
|
13208
13403
|
generateContent(request: {
|
|
@@ -13260,7 +13455,7 @@ declare namespace gapi.client {
|
|
|
13260
13455
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13261
13456
|
uploadType?: string;
|
|
13262
13457
|
},
|
|
13263
|
-
body: GoogleCloudAiplatformV1GenerateContentRequest
|
|
13458
|
+
body: GoogleCloudAiplatformV1GenerateContentRequest,
|
|
13264
13459
|
): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
|
|
13265
13460
|
/** Gets an Endpoint. */
|
|
13266
13461
|
get(request?: {
|
|
@@ -13382,7 +13577,7 @@ declare namespace gapi.client {
|
|
|
13382
13577
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13383
13578
|
uploadType?: string;
|
|
13384
13579
|
},
|
|
13385
|
-
body: GoogleCloudAiplatformV1MutateDeployedModelRequest
|
|
13580
|
+
body: GoogleCloudAiplatformV1MutateDeployedModelRequest,
|
|
13386
13581
|
): Request<GoogleLongrunningOperation>;
|
|
13387
13582
|
/** Updates an Endpoint. */
|
|
13388
13583
|
patch(request: {
|
|
@@ -13444,7 +13639,7 @@ declare namespace gapi.client {
|
|
|
13444
13639
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13445
13640
|
uploadType?: string;
|
|
13446
13641
|
},
|
|
13447
|
-
body: GoogleCloudAiplatformV1Endpoint
|
|
13642
|
+
body: GoogleCloudAiplatformV1Endpoint,
|
|
13448
13643
|
): Request<GoogleCloudAiplatformV1Endpoint>;
|
|
13449
13644
|
/** Perform an online prediction. */
|
|
13450
13645
|
predict(request: {
|
|
@@ -13502,7 +13697,7 @@ declare namespace gapi.client {
|
|
|
13502
13697
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13503
13698
|
uploadType?: string;
|
|
13504
13699
|
},
|
|
13505
|
-
body: GoogleCloudAiplatformV1PredictRequest
|
|
13700
|
+
body: GoogleCloudAiplatformV1PredictRequest,
|
|
13506
13701
|
): Request<GoogleCloudAiplatformV1PredictResponse>;
|
|
13507
13702
|
predictLongRunning(request: {
|
|
13508
13703
|
/** V1 error format. */
|
|
@@ -13559,7 +13754,7 @@ declare namespace gapi.client {
|
|
|
13559
13754
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13560
13755
|
uploadType?: string;
|
|
13561
13756
|
},
|
|
13562
|
-
body: GoogleCloudAiplatformV1PredictLongRunningRequest
|
|
13757
|
+
body: GoogleCloudAiplatformV1PredictLongRunningRequest,
|
|
13563
13758
|
): Request<GoogleLongrunningOperation>;
|
|
13564
13759
|
/** 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. */
|
|
13565
13760
|
rawPredict(request: {
|
|
@@ -13617,7 +13812,7 @@ declare namespace gapi.client {
|
|
|
13617
13812
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13618
13813
|
uploadType?: string;
|
|
13619
13814
|
},
|
|
13620
|
-
body: GoogleCloudAiplatformV1RawPredictRequest
|
|
13815
|
+
body: GoogleCloudAiplatformV1RawPredictRequest,
|
|
13621
13816
|
): Request<GoogleApiHttpBody>;
|
|
13622
13817
|
/** Perform a server-side streaming online prediction request for Vertex LLM streaming. */
|
|
13623
13818
|
serverStreamingPredict(request: {
|
|
@@ -13675,7 +13870,7 @@ declare namespace gapi.client {
|
|
|
13675
13870
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13676
13871
|
uploadType?: string;
|
|
13677
13872
|
},
|
|
13678
|
-
body: GoogleCloudAiplatformV1StreamingPredictRequest
|
|
13873
|
+
body: GoogleCloudAiplatformV1StreamingPredictRequest,
|
|
13679
13874
|
): Request<GoogleCloudAiplatformV1StreamingPredictResponse>;
|
|
13680
13875
|
/** Generate content with multimodal inputs with streaming support. */
|
|
13681
13876
|
streamGenerateContent(request: {
|
|
@@ -13733,7 +13928,7 @@ declare namespace gapi.client {
|
|
|
13733
13928
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13734
13929
|
uploadType?: string;
|
|
13735
13930
|
},
|
|
13736
|
-
body: GoogleCloudAiplatformV1GenerateContentRequest
|
|
13931
|
+
body: GoogleCloudAiplatformV1GenerateContentRequest,
|
|
13737
13932
|
): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
|
|
13738
13933
|
/** Perform a streaming online prediction with an arbitrary HTTP payload. */
|
|
13739
13934
|
streamRawPredict(request: {
|
|
@@ -13791,7 +13986,7 @@ declare namespace gapi.client {
|
|
|
13791
13986
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13792
13987
|
uploadType?: string;
|
|
13793
13988
|
},
|
|
13794
|
-
body: GoogleCloudAiplatformV1StreamRawPredictRequest
|
|
13989
|
+
body: GoogleCloudAiplatformV1StreamRawPredictRequest,
|
|
13795
13990
|
): Request<GoogleApiHttpBody>;
|
|
13796
13991
|
/** Undeploys a Model from an Endpoint, removing a DeployedModel from it, and freeing all resources it's using. */
|
|
13797
13992
|
undeployModel(request: {
|
|
@@ -13849,7 +14044,7 @@ declare namespace gapi.client {
|
|
|
13849
14044
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13850
14045
|
uploadType?: string;
|
|
13851
14046
|
},
|
|
13852
|
-
body: GoogleCloudAiplatformV1UndeployModelRequest
|
|
14047
|
+
body: GoogleCloudAiplatformV1UndeployModelRequest,
|
|
13853
14048
|
): Request<GoogleLongrunningOperation>;
|
|
13854
14049
|
/** Updates an Endpoint with a long running operation. */
|
|
13855
14050
|
update(request: {
|
|
@@ -13907,7 +14102,7 @@ declare namespace gapi.client {
|
|
|
13907
14102
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13908
14103
|
uploadType?: string;
|
|
13909
14104
|
},
|
|
13910
|
-
body: GoogleCloudAiplatformV1UpdateEndpointLongRunningRequest
|
|
14105
|
+
body: GoogleCloudAiplatformV1UpdateEndpointLongRunningRequest,
|
|
13911
14106
|
): Request<GoogleLongrunningOperation>;
|
|
13912
14107
|
chat: ChatResource;
|
|
13913
14108
|
operations: OperationsResource;
|
|
@@ -14087,7 +14282,7 @@ declare namespace gapi.client {
|
|
|
14087
14282
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14088
14283
|
uploadType?: string;
|
|
14089
14284
|
},
|
|
14090
|
-
body: GoogleCloudAiplatformV1BatchCreateFeaturesRequest
|
|
14285
|
+
body: GoogleCloudAiplatformV1BatchCreateFeaturesRequest,
|
|
14091
14286
|
): Request<GoogleLongrunningOperation>;
|
|
14092
14287
|
/** Creates a new Feature in a given FeatureGroup. */
|
|
14093
14288
|
create(request: {
|
|
@@ -14149,7 +14344,7 @@ declare namespace gapi.client {
|
|
|
14149
14344
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14150
14345
|
uploadType?: string;
|
|
14151
14346
|
},
|
|
14152
|
-
body: GoogleCloudAiplatformV1Feature
|
|
14347
|
+
body: GoogleCloudAiplatformV1Feature,
|
|
14153
14348
|
): Request<GoogleLongrunningOperation>;
|
|
14154
14349
|
/** Deletes a single Feature. */
|
|
14155
14350
|
delete(request?: {
|
|
@@ -14304,7 +14499,7 @@ declare namespace gapi.client {
|
|
|
14304
14499
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14305
14500
|
uploadType?: string;
|
|
14306
14501
|
},
|
|
14307
|
-
body: GoogleCloudAiplatformV1Feature
|
|
14502
|
+
body: GoogleCloudAiplatformV1Feature,
|
|
14308
14503
|
): Request<GoogleLongrunningOperation>;
|
|
14309
14504
|
operations: OperationsResource;
|
|
14310
14505
|
}
|
|
@@ -14487,7 +14682,7 @@ declare namespace gapi.client {
|
|
|
14487
14682
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14488
14683
|
uploadType?: string;
|
|
14489
14684
|
},
|
|
14490
|
-
body: GoogleCloudAiplatformV1FeatureGroup
|
|
14685
|
+
body: GoogleCloudAiplatformV1FeatureGroup,
|
|
14491
14686
|
): Request<GoogleLongrunningOperation>;
|
|
14492
14687
|
/** Deletes a single FeatureGroup. */
|
|
14493
14688
|
delete(request?: {
|
|
@@ -14602,7 +14797,7 @@ declare namespace gapi.client {
|
|
|
14602
14797
|
prettyPrint?: boolean;
|
|
14603
14798
|
/** 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. */
|
|
14604
14799
|
quotaUser?: string;
|
|
14605
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` */
|
|
14800
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` * `service_agent_type` */
|
|
14606
14801
|
updateMask?: string;
|
|
14607
14802
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14608
14803
|
upload_protocol?: string;
|
|
@@ -14633,14 +14828,14 @@ declare namespace gapi.client {
|
|
|
14633
14828
|
prettyPrint?: boolean;
|
|
14634
14829
|
/** 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. */
|
|
14635
14830
|
quotaUser?: string;
|
|
14636
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` */
|
|
14831
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` * `service_agent_type` */
|
|
14637
14832
|
updateMask?: string;
|
|
14638
14833
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14639
14834
|
upload_protocol?: string;
|
|
14640
14835
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14641
14836
|
uploadType?: string;
|
|
14642
14837
|
},
|
|
14643
|
-
body: GoogleCloudAiplatformV1FeatureGroup
|
|
14838
|
+
body: GoogleCloudAiplatformV1FeatureGroup,
|
|
14644
14839
|
): Request<GoogleLongrunningOperation>;
|
|
14645
14840
|
features: FeaturesResource;
|
|
14646
14841
|
operations: OperationsResource;
|
|
@@ -14892,7 +15087,7 @@ declare namespace gapi.client {
|
|
|
14892
15087
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14893
15088
|
uploadType?: string;
|
|
14894
15089
|
},
|
|
14895
|
-
body: GoogleCloudAiplatformV1FeatureView
|
|
15090
|
+
body: GoogleCloudAiplatformV1FeatureView,
|
|
14896
15091
|
): Request<GoogleLongrunningOperation>;
|
|
14897
15092
|
/** Deletes a single FeatureView. */
|
|
14898
15093
|
delete(request?: {
|
|
@@ -14977,7 +15172,7 @@ declare namespace gapi.client {
|
|
|
14977
15172
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14978
15173
|
uploadType?: string;
|
|
14979
15174
|
},
|
|
14980
|
-
body: GoogleCloudAiplatformV1FetchFeatureValuesRequest
|
|
15175
|
+
body: GoogleCloudAiplatformV1FetchFeatureValuesRequest,
|
|
14981
15176
|
): Request<GoogleCloudAiplatformV1FetchFeatureValuesResponse>;
|
|
14982
15177
|
/** Gets details of a single FeatureView. */
|
|
14983
15178
|
get(request?: {
|
|
@@ -15130,7 +15325,7 @@ declare namespace gapi.client {
|
|
|
15130
15325
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15131
15326
|
uploadType?: string;
|
|
15132
15327
|
},
|
|
15133
|
-
body: GoogleCloudAiplatformV1FeatureView
|
|
15328
|
+
body: GoogleCloudAiplatformV1FeatureView,
|
|
15134
15329
|
): Request<GoogleLongrunningOperation>;
|
|
15135
15330
|
/** 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. */
|
|
15136
15331
|
searchNearestEntities(request: {
|
|
@@ -15188,7 +15383,7 @@ declare namespace gapi.client {
|
|
|
15188
15383
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15189
15384
|
uploadType?: string;
|
|
15190
15385
|
},
|
|
15191
|
-
body: GoogleCloudAiplatformV1SearchNearestEntitiesRequest
|
|
15386
|
+
body: GoogleCloudAiplatformV1SearchNearestEntitiesRequest,
|
|
15192
15387
|
): Request<GoogleCloudAiplatformV1SearchNearestEntitiesResponse>;
|
|
15193
15388
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
15194
15389
|
setIamPolicy(
|
|
@@ -15218,7 +15413,7 @@ declare namespace gapi.client {
|
|
|
15218
15413
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15219
15414
|
uploadType?: string;
|
|
15220
15415
|
},
|
|
15221
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
15416
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
15222
15417
|
): Request<GoogleIamV1Policy>;
|
|
15223
15418
|
/** Triggers on-demand sync for the FeatureView. */
|
|
15224
15419
|
sync(request: {
|
|
@@ -15276,7 +15471,7 @@ declare namespace gapi.client {
|
|
|
15276
15471
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15277
15472
|
uploadType?: string;
|
|
15278
15473
|
},
|
|
15279
|
-
body: GoogleCloudAiplatformV1SyncFeatureViewRequest
|
|
15474
|
+
body: GoogleCloudAiplatformV1SyncFeatureViewRequest,
|
|
15280
15475
|
): Request<GoogleCloudAiplatformV1SyncFeatureViewResponse>;
|
|
15281
15476
|
/** 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. */
|
|
15282
15477
|
testIamPermissions(request?: {
|
|
@@ -15489,7 +15684,7 @@ declare namespace gapi.client {
|
|
|
15489
15684
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15490
15685
|
uploadType?: string;
|
|
15491
15686
|
},
|
|
15492
|
-
body: GoogleCloudAiplatformV1FeatureOnlineStore
|
|
15687
|
+
body: GoogleCloudAiplatformV1FeatureOnlineStore,
|
|
15493
15688
|
): Request<GoogleLongrunningOperation>;
|
|
15494
15689
|
/** Deletes a single FeatureOnlineStore. The FeatureOnlineStore must not contain any FeatureViews. */
|
|
15495
15690
|
delete(request?: {
|
|
@@ -15671,7 +15866,7 @@ declare namespace gapi.client {
|
|
|
15671
15866
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15672
15867
|
uploadType?: string;
|
|
15673
15868
|
},
|
|
15674
|
-
body: GoogleCloudAiplatformV1FeatureOnlineStore
|
|
15869
|
+
body: GoogleCloudAiplatformV1FeatureOnlineStore,
|
|
15675
15870
|
): Request<GoogleLongrunningOperation>;
|
|
15676
15871
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
15677
15872
|
setIamPolicy(
|
|
@@ -15701,7 +15896,7 @@ declare namespace gapi.client {
|
|
|
15701
15896
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15702
15897
|
uploadType?: string;
|
|
15703
15898
|
},
|
|
15704
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
15899
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
15705
15900
|
): Request<GoogleIamV1Policy>;
|
|
15706
15901
|
/** 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. */
|
|
15707
15902
|
testIamPermissions(request?: {
|
|
@@ -15937,7 +16132,7 @@ declare namespace gapi.client {
|
|
|
15937
16132
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15938
16133
|
uploadType?: string;
|
|
15939
16134
|
},
|
|
15940
|
-
body: GoogleCloudAiplatformV1BatchCreateFeaturesRequest
|
|
16135
|
+
body: GoogleCloudAiplatformV1BatchCreateFeaturesRequest,
|
|
15941
16136
|
): Request<GoogleLongrunningOperation>;
|
|
15942
16137
|
/** Creates a new Feature in a given EntityType. */
|
|
15943
16138
|
create(request: {
|
|
@@ -15999,7 +16194,7 @@ declare namespace gapi.client {
|
|
|
15999
16194
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16000
16195
|
uploadType?: string;
|
|
16001
16196
|
},
|
|
16002
|
-
body: GoogleCloudAiplatformV1Feature
|
|
16197
|
+
body: GoogleCloudAiplatformV1Feature,
|
|
16003
16198
|
): Request<GoogleLongrunningOperation>;
|
|
16004
16199
|
/** Deletes a single Feature. */
|
|
16005
16200
|
delete(request?: {
|
|
@@ -16154,7 +16349,7 @@ declare namespace gapi.client {
|
|
|
16154
16349
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16155
16350
|
uploadType?: string;
|
|
16156
16351
|
},
|
|
16157
|
-
body: GoogleCloudAiplatformV1Feature
|
|
16352
|
+
body: GoogleCloudAiplatformV1Feature,
|
|
16158
16353
|
): Request<GoogleCloudAiplatformV1Feature>;
|
|
16159
16354
|
operations: OperationsResource;
|
|
16160
16355
|
}
|
|
@@ -16364,7 +16559,7 @@ declare namespace gapi.client {
|
|
|
16364
16559
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16365
16560
|
uploadType?: string;
|
|
16366
16561
|
},
|
|
16367
|
-
body: GoogleCloudAiplatformV1EntityType
|
|
16562
|
+
body: GoogleCloudAiplatformV1EntityType,
|
|
16368
16563
|
): Request<GoogleLongrunningOperation>;
|
|
16369
16564
|
/** Deletes a single EntityType. The EntityType must not have any Features or `force` must be set to true for the request to succeed. */
|
|
16370
16565
|
delete(request?: {
|
|
@@ -16451,7 +16646,7 @@ declare namespace gapi.client {
|
|
|
16451
16646
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16452
16647
|
uploadType?: string;
|
|
16453
16648
|
},
|
|
16454
|
-
body: GoogleCloudAiplatformV1DeleteFeatureValuesRequest
|
|
16649
|
+
body: GoogleCloudAiplatformV1DeleteFeatureValuesRequest,
|
|
16455
16650
|
): Request<GoogleLongrunningOperation>;
|
|
16456
16651
|
/** Exports Feature values from all the entities of a target EntityType. */
|
|
16457
16652
|
exportFeatureValues(request: {
|
|
@@ -16509,7 +16704,7 @@ declare namespace gapi.client {
|
|
|
16509
16704
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16510
16705
|
uploadType?: string;
|
|
16511
16706
|
},
|
|
16512
|
-
body: GoogleCloudAiplatformV1ExportFeatureValuesRequest
|
|
16707
|
+
body: GoogleCloudAiplatformV1ExportFeatureValuesRequest,
|
|
16513
16708
|
): Request<GoogleLongrunningOperation>;
|
|
16514
16709
|
/** Gets details of a single EntityType. */
|
|
16515
16710
|
get(request?: {
|
|
@@ -16623,7 +16818,7 @@ declare namespace gapi.client {
|
|
|
16623
16818
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16624
16819
|
uploadType?: string;
|
|
16625
16820
|
},
|
|
16626
|
-
body: GoogleCloudAiplatformV1ImportFeatureValuesRequest
|
|
16821
|
+
body: GoogleCloudAiplatformV1ImportFeatureValuesRequest,
|
|
16627
16822
|
): Request<GoogleLongrunningOperation>;
|
|
16628
16823
|
/** Lists EntityTypes in a given Featurestore. */
|
|
16629
16824
|
list(request?: {
|
|
@@ -16722,7 +16917,7 @@ declare namespace gapi.client {
|
|
|
16722
16917
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16723
16918
|
uploadType?: string;
|
|
16724
16919
|
},
|
|
16725
|
-
body: GoogleCloudAiplatformV1EntityType
|
|
16920
|
+
body: GoogleCloudAiplatformV1EntityType,
|
|
16726
16921
|
): Request<GoogleCloudAiplatformV1EntityType>;
|
|
16727
16922
|
/** Reads Feature values of a specific entity of an EntityType. For reading feature values of multiple entities of an EntityType, please use StreamingReadFeatureValues. */
|
|
16728
16923
|
readFeatureValues(request: {
|
|
@@ -16780,7 +16975,7 @@ declare namespace gapi.client {
|
|
|
16780
16975
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16781
16976
|
uploadType?: string;
|
|
16782
16977
|
},
|
|
16783
|
-
body: GoogleCloudAiplatformV1ReadFeatureValuesRequest
|
|
16978
|
+
body: GoogleCloudAiplatformV1ReadFeatureValuesRequest,
|
|
16784
16979
|
): Request<GoogleCloudAiplatformV1ReadFeatureValuesResponse>;
|
|
16785
16980
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
16786
16981
|
setIamPolicy(
|
|
@@ -16810,7 +17005,7 @@ declare namespace gapi.client {
|
|
|
16810
17005
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16811
17006
|
uploadType?: string;
|
|
16812
17007
|
},
|
|
16813
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
17008
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
16814
17009
|
): Request<GoogleIamV1Policy>;
|
|
16815
17010
|
/** Reads Feature values for multiple entities. Depending on their size, data for different entities may be broken up across multiple responses. */
|
|
16816
17011
|
streamingReadFeatureValues(request: {
|
|
@@ -16868,7 +17063,7 @@ declare namespace gapi.client {
|
|
|
16868
17063
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16869
17064
|
uploadType?: string;
|
|
16870
17065
|
},
|
|
16871
|
-
body: GoogleCloudAiplatformV1StreamingReadFeatureValuesRequest
|
|
17066
|
+
body: GoogleCloudAiplatformV1StreamingReadFeatureValuesRequest,
|
|
16872
17067
|
): Request<GoogleCloudAiplatformV1ReadFeatureValuesResponse>;
|
|
16873
17068
|
/** 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. */
|
|
16874
17069
|
testIamPermissions(request?: {
|
|
@@ -16955,7 +17150,7 @@ declare namespace gapi.client {
|
|
|
16955
17150
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16956
17151
|
uploadType?: string;
|
|
16957
17152
|
},
|
|
16958
|
-
body: GoogleCloudAiplatformV1WriteFeatureValuesRequest
|
|
17153
|
+
body: GoogleCloudAiplatformV1WriteFeatureValuesRequest,
|
|
16959
17154
|
): Request<{}>;
|
|
16960
17155
|
features: FeaturesResource;
|
|
16961
17156
|
operations: OperationsResource;
|
|
@@ -17162,7 +17357,7 @@ declare namespace gapi.client {
|
|
|
17162
17357
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17163
17358
|
uploadType?: string;
|
|
17164
17359
|
},
|
|
17165
|
-
body: GoogleCloudAiplatformV1BatchReadFeatureValuesRequest
|
|
17360
|
+
body: GoogleCloudAiplatformV1BatchReadFeatureValuesRequest,
|
|
17166
17361
|
): Request<GoogleLongrunningOperation>;
|
|
17167
17362
|
/** Creates a new Featurestore in a given project and location. */
|
|
17168
17363
|
create(request: {
|
|
@@ -17224,7 +17419,7 @@ declare namespace gapi.client {
|
|
|
17224
17419
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17225
17420
|
uploadType?: string;
|
|
17226
17421
|
},
|
|
17227
|
-
body: GoogleCloudAiplatformV1Featurestore
|
|
17422
|
+
body: GoogleCloudAiplatformV1Featurestore,
|
|
17228
17423
|
): Request<GoogleLongrunningOperation>;
|
|
17229
17424
|
/** Deletes a single Featurestore. The Featurestore must not contain any EntityTypes or `force` must be set to true for the request to succeed. */
|
|
17230
17425
|
delete(request?: {
|
|
@@ -17408,7 +17603,7 @@ declare namespace gapi.client {
|
|
|
17408
17603
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17409
17604
|
uploadType?: string;
|
|
17410
17605
|
},
|
|
17411
|
-
body: GoogleCloudAiplatformV1Featurestore
|
|
17606
|
+
body: GoogleCloudAiplatformV1Featurestore,
|
|
17412
17607
|
): Request<GoogleLongrunningOperation>;
|
|
17413
17608
|
/** Searches Features matching a query in a given project. */
|
|
17414
17609
|
searchFeatures(request?: {
|
|
@@ -17471,7 +17666,7 @@ declare namespace gapi.client {
|
|
|
17471
17666
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17472
17667
|
uploadType?: string;
|
|
17473
17668
|
},
|
|
17474
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
17669
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
17475
17670
|
): Request<GoogleIamV1Policy>;
|
|
17476
17671
|
/** 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. */
|
|
17477
17672
|
testIamPermissions(request?: {
|
|
@@ -17707,7 +17902,7 @@ declare namespace gapi.client {
|
|
|
17707
17902
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17708
17903
|
uploadType?: string;
|
|
17709
17904
|
},
|
|
17710
|
-
body: GoogleCloudAiplatformV1CancelHyperparameterTuningJobRequest
|
|
17905
|
+
body: GoogleCloudAiplatformV1CancelHyperparameterTuningJobRequest,
|
|
17711
17906
|
): Request<{}>;
|
|
17712
17907
|
/** Creates a HyperparameterTuningJob */
|
|
17713
17908
|
create(request: {
|
|
@@ -17765,7 +17960,7 @@ declare namespace gapi.client {
|
|
|
17765
17960
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17766
17961
|
uploadType?: string;
|
|
17767
17962
|
},
|
|
17768
|
-
body: GoogleCloudAiplatformV1HyperparameterTuningJob
|
|
17963
|
+
body: GoogleCloudAiplatformV1HyperparameterTuningJob,
|
|
17769
17964
|
): Request<GoogleCloudAiplatformV1HyperparameterTuningJob>;
|
|
17770
17965
|
/** Deletes a HyperparameterTuningJob. */
|
|
17771
17966
|
delete(request?: {
|
|
@@ -18060,7 +18255,7 @@ declare namespace gapi.client {
|
|
|
18060
18255
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18061
18256
|
uploadType?: string;
|
|
18062
18257
|
},
|
|
18063
|
-
body: GoogleCloudAiplatformV1IndexEndpoint
|
|
18258
|
+
body: GoogleCloudAiplatformV1IndexEndpoint,
|
|
18064
18259
|
): Request<GoogleLongrunningOperation>;
|
|
18065
18260
|
/** Deletes an IndexEndpoint. */
|
|
18066
18261
|
delete(request?: {
|
|
@@ -18089,7 +18284,7 @@ declare namespace gapi.client {
|
|
|
18089
18284
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18090
18285
|
uploadType?: string;
|
|
18091
18286
|
}): Request<GoogleLongrunningOperation>;
|
|
18092
|
-
/** Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it.
|
|
18287
|
+
/** Deploys an Index into this IndexEndpoint, creating a DeployedIndex within it. */
|
|
18093
18288
|
deployIndex(request: {
|
|
18094
18289
|
/** V1 error format. */
|
|
18095
18290
|
'$.xgafv'?: string;
|
|
@@ -18145,7 +18340,7 @@ declare namespace gapi.client {
|
|
|
18145
18340
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18146
18341
|
uploadType?: string;
|
|
18147
18342
|
},
|
|
18148
|
-
body: GoogleCloudAiplatformV1DeployIndexRequest
|
|
18343
|
+
body: GoogleCloudAiplatformV1DeployIndexRequest,
|
|
18149
18344
|
): Request<GoogleLongrunningOperation>;
|
|
18150
18345
|
/** Finds the nearest neighbors of each vector within the request. */
|
|
18151
18346
|
findNeighbors(request: {
|
|
@@ -18203,7 +18398,7 @@ declare namespace gapi.client {
|
|
|
18203
18398
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18204
18399
|
uploadType?: string;
|
|
18205
18400
|
},
|
|
18206
|
-
body: GoogleCloudAiplatformV1FindNeighborsRequest
|
|
18401
|
+
body: GoogleCloudAiplatformV1FindNeighborsRequest,
|
|
18207
18402
|
): Request<GoogleCloudAiplatformV1FindNeighborsResponse>;
|
|
18208
18403
|
/** Gets an IndexEndpoint. */
|
|
18209
18404
|
get(request?: {
|
|
@@ -18323,7 +18518,7 @@ declare namespace gapi.client {
|
|
|
18323
18518
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18324
18519
|
uploadType?: string;
|
|
18325
18520
|
},
|
|
18326
|
-
body: GoogleCloudAiplatformV1DeployedIndex
|
|
18521
|
+
body: GoogleCloudAiplatformV1DeployedIndex,
|
|
18327
18522
|
): Request<GoogleLongrunningOperation>;
|
|
18328
18523
|
/** Updates an IndexEndpoint. */
|
|
18329
18524
|
patch(request: {
|
|
@@ -18385,7 +18580,7 @@ declare namespace gapi.client {
|
|
|
18385
18580
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18386
18581
|
uploadType?: string;
|
|
18387
18582
|
},
|
|
18388
|
-
body: GoogleCloudAiplatformV1IndexEndpoint
|
|
18583
|
+
body: GoogleCloudAiplatformV1IndexEndpoint,
|
|
18389
18584
|
): Request<GoogleCloudAiplatformV1IndexEndpoint>;
|
|
18390
18585
|
/** Reads the datapoints/vectors of the given IDs. A maximum of 1000 datapoints can be retrieved in a batch. */
|
|
18391
18586
|
readIndexDatapoints(request: {
|
|
@@ -18443,7 +18638,7 @@ declare namespace gapi.client {
|
|
|
18443
18638
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18444
18639
|
uploadType?: string;
|
|
18445
18640
|
},
|
|
18446
|
-
body: GoogleCloudAiplatformV1ReadIndexDatapointsRequest
|
|
18641
|
+
body: GoogleCloudAiplatformV1ReadIndexDatapointsRequest,
|
|
18447
18642
|
): Request<GoogleCloudAiplatformV1ReadIndexDatapointsResponse>;
|
|
18448
18643
|
/** Undeploys an Index from an IndexEndpoint, removing a DeployedIndex from it, and freeing all resources it's using. */
|
|
18449
18644
|
undeployIndex(request: {
|
|
@@ -18501,7 +18696,7 @@ declare namespace gapi.client {
|
|
|
18501
18696
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18502
18697
|
uploadType?: string;
|
|
18503
18698
|
},
|
|
18504
|
-
body: GoogleCloudAiplatformV1UndeployIndexRequest
|
|
18699
|
+
body: GoogleCloudAiplatformV1UndeployIndexRequest,
|
|
18505
18700
|
): Request<GoogleLongrunningOperation>;
|
|
18506
18701
|
operations: OperationsResource;
|
|
18507
18702
|
}
|
|
@@ -18707,7 +18902,7 @@ declare namespace gapi.client {
|
|
|
18707
18902
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18708
18903
|
uploadType?: string;
|
|
18709
18904
|
},
|
|
18710
|
-
body: GoogleCloudAiplatformV1Index
|
|
18905
|
+
body: GoogleCloudAiplatformV1Index,
|
|
18711
18906
|
): Request<GoogleLongrunningOperation>;
|
|
18712
18907
|
/** Deletes an Index. An Index can only be deleted when all its DeployedIndexes had been undeployed. */
|
|
18713
18908
|
delete(request?: {
|
|
@@ -18858,7 +19053,7 @@ declare namespace gapi.client {
|
|
|
18858
19053
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18859
19054
|
uploadType?: string;
|
|
18860
19055
|
},
|
|
18861
|
-
body: GoogleCloudAiplatformV1Index
|
|
19056
|
+
body: GoogleCloudAiplatformV1Index,
|
|
18862
19057
|
): Request<GoogleLongrunningOperation>;
|
|
18863
19058
|
/** Remove Datapoints from an Index. */
|
|
18864
19059
|
removeDatapoints(request: {
|
|
@@ -18916,7 +19111,7 @@ declare namespace gapi.client {
|
|
|
18916
19111
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18917
19112
|
uploadType?: string;
|
|
18918
19113
|
},
|
|
18919
|
-
body: GoogleCloudAiplatformV1RemoveDatapointsRequest
|
|
19114
|
+
body: GoogleCloudAiplatformV1RemoveDatapointsRequest,
|
|
18920
19115
|
): Request<{}>;
|
|
18921
19116
|
/** Add/update Datapoints into an Index. */
|
|
18922
19117
|
upsertDatapoints(request: {
|
|
@@ -18974,7 +19169,7 @@ declare namespace gapi.client {
|
|
|
18974
19169
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18975
19170
|
uploadType?: string;
|
|
18976
19171
|
},
|
|
18977
|
-
body: GoogleCloudAiplatformV1UpsertDatapointsRequest
|
|
19172
|
+
body: GoogleCloudAiplatformV1UpsertDatapointsRequest,
|
|
18978
19173
|
): Request<{}>;
|
|
18979
19174
|
operations: OperationsResource;
|
|
18980
19175
|
}
|
|
@@ -19184,7 +19379,7 @@ declare namespace gapi.client {
|
|
|
19184
19379
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19185
19380
|
uploadType?: string;
|
|
19186
19381
|
},
|
|
19187
|
-
body: GoogleCloudAiplatformV1Artifact
|
|
19382
|
+
body: GoogleCloudAiplatformV1Artifact,
|
|
19188
19383
|
): Request<GoogleCloudAiplatformV1Artifact>;
|
|
19189
19384
|
/** Deletes an Artifact. */
|
|
19190
19385
|
delete(request?: {
|
|
@@ -19341,7 +19536,7 @@ declare namespace gapi.client {
|
|
|
19341
19536
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19342
19537
|
uploadType?: string;
|
|
19343
19538
|
},
|
|
19344
|
-
body: GoogleCloudAiplatformV1Artifact
|
|
19539
|
+
body: GoogleCloudAiplatformV1Artifact,
|
|
19345
19540
|
): Request<GoogleCloudAiplatformV1Artifact>;
|
|
19346
19541
|
/** Purges Artifacts. */
|
|
19347
19542
|
purge(request: {
|
|
@@ -19399,7 +19594,7 @@ declare namespace gapi.client {
|
|
|
19399
19594
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19400
19595
|
uploadType?: string;
|
|
19401
19596
|
},
|
|
19402
|
-
body: GoogleCloudAiplatformV1PurgeArtifactsRequest
|
|
19597
|
+
body: GoogleCloudAiplatformV1PurgeArtifactsRequest,
|
|
19403
19598
|
): Request<GoogleLongrunningOperation>;
|
|
19404
19599
|
/** Retrieves lineage of an Artifact represented through Artifacts and Executions connected by Event edges and returned as a LineageSubgraph. */
|
|
19405
19600
|
queryArtifactLineageSubgraph(request?: {
|
|
@@ -19636,7 +19831,7 @@ declare namespace gapi.client {
|
|
|
19636
19831
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19637
19832
|
uploadType?: string;
|
|
19638
19833
|
},
|
|
19639
|
-
body: GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest
|
|
19834
|
+
body: GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest,
|
|
19640
19835
|
): Request<{}>;
|
|
19641
19836
|
/** 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. */
|
|
19642
19837
|
addContextChildren(request: {
|
|
@@ -19694,7 +19889,7 @@ declare namespace gapi.client {
|
|
|
19694
19889
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19695
19890
|
uploadType?: string;
|
|
19696
19891
|
},
|
|
19697
|
-
body: GoogleCloudAiplatformV1AddContextChildrenRequest
|
|
19892
|
+
body: GoogleCloudAiplatformV1AddContextChildrenRequest,
|
|
19698
19893
|
): Request<{}>;
|
|
19699
19894
|
/** Creates a Context associated with a MetadataStore. */
|
|
19700
19895
|
create(request: {
|
|
@@ -19756,7 +19951,7 @@ declare namespace gapi.client {
|
|
|
19756
19951
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19757
19952
|
uploadType?: string;
|
|
19758
19953
|
},
|
|
19759
|
-
body: GoogleCloudAiplatformV1Context
|
|
19954
|
+
body: GoogleCloudAiplatformV1Context,
|
|
19760
19955
|
): Request<GoogleCloudAiplatformV1Context>;
|
|
19761
19956
|
/** Deletes a stored Context. */
|
|
19762
19957
|
delete(request?: {
|
|
@@ -19915,7 +20110,7 @@ declare namespace gapi.client {
|
|
|
19915
20110
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19916
20111
|
uploadType?: string;
|
|
19917
20112
|
},
|
|
19918
|
-
body: GoogleCloudAiplatformV1Context
|
|
20113
|
+
body: GoogleCloudAiplatformV1Context,
|
|
19919
20114
|
): Request<GoogleCloudAiplatformV1Context>;
|
|
19920
20115
|
/** Purges Contexts. */
|
|
19921
20116
|
purge(request: {
|
|
@@ -19973,7 +20168,7 @@ declare namespace gapi.client {
|
|
|
19973
20168
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19974
20169
|
uploadType?: string;
|
|
19975
20170
|
},
|
|
19976
|
-
body: GoogleCloudAiplatformV1PurgeContextsRequest
|
|
20171
|
+
body: GoogleCloudAiplatformV1PurgeContextsRequest,
|
|
19977
20172
|
): Request<GoogleLongrunningOperation>;
|
|
19978
20173
|
/** Retrieves Artifacts and Executions within the specified Context, connected by Event edges and returned as a LineageSubgraph. */
|
|
19979
20174
|
queryContextLineageSubgraph(request?: {
|
|
@@ -20058,7 +20253,7 @@ declare namespace gapi.client {
|
|
|
20058
20253
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20059
20254
|
uploadType?: string;
|
|
20060
20255
|
},
|
|
20061
|
-
body: GoogleCloudAiplatformV1RemoveContextChildrenRequest
|
|
20256
|
+
body: GoogleCloudAiplatformV1RemoveContextChildrenRequest,
|
|
20062
20257
|
): Request<{}>;
|
|
20063
20258
|
operations: OperationsResource;
|
|
20064
20259
|
}
|
|
@@ -20264,7 +20459,7 @@ declare namespace gapi.client {
|
|
|
20264
20459
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20265
20460
|
uploadType?: string;
|
|
20266
20461
|
},
|
|
20267
|
-
body: GoogleCloudAiplatformV1AddExecutionEventsRequest
|
|
20462
|
+
body: GoogleCloudAiplatformV1AddExecutionEventsRequest,
|
|
20268
20463
|
): Request<{}>;
|
|
20269
20464
|
/** Creates an Execution associated with a MetadataStore. */
|
|
20270
20465
|
create(request: {
|
|
@@ -20326,7 +20521,7 @@ declare namespace gapi.client {
|
|
|
20326
20521
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20327
20522
|
uploadType?: string;
|
|
20328
20523
|
},
|
|
20329
|
-
body: GoogleCloudAiplatformV1Execution
|
|
20524
|
+
body: GoogleCloudAiplatformV1Execution,
|
|
20330
20525
|
): Request<GoogleCloudAiplatformV1Execution>;
|
|
20331
20526
|
/** Deletes an Execution. */
|
|
20332
20527
|
delete(request?: {
|
|
@@ -20483,7 +20678,7 @@ declare namespace gapi.client {
|
|
|
20483
20678
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20484
20679
|
uploadType?: string;
|
|
20485
20680
|
},
|
|
20486
|
-
body: GoogleCloudAiplatformV1Execution
|
|
20681
|
+
body: GoogleCloudAiplatformV1Execution,
|
|
20487
20682
|
): Request<GoogleCloudAiplatformV1Execution>;
|
|
20488
20683
|
/** Purges Executions. */
|
|
20489
20684
|
purge(request: {
|
|
@@ -20541,7 +20736,7 @@ declare namespace gapi.client {
|
|
|
20541
20736
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20542
20737
|
uploadType?: string;
|
|
20543
20738
|
},
|
|
20544
|
-
body: GoogleCloudAiplatformV1PurgeExecutionsRequest
|
|
20739
|
+
body: GoogleCloudAiplatformV1PurgeExecutionsRequest,
|
|
20545
20740
|
): Request<GoogleLongrunningOperation>;
|
|
20546
20741
|
/** Obtains the set of input and output Artifacts for this Execution, in the form of LineageSubgraph that also contains the Execution and connecting Events. */
|
|
20547
20742
|
queryExecutionInputsAndOutputs(request?: {
|
|
@@ -20633,7 +20828,7 @@ declare namespace gapi.client {
|
|
|
20633
20828
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20634
20829
|
uploadType?: string;
|
|
20635
20830
|
},
|
|
20636
|
-
body: GoogleCloudAiplatformV1MetadataSchema
|
|
20831
|
+
body: GoogleCloudAiplatformV1MetadataSchema,
|
|
20637
20832
|
): Request<GoogleCloudAiplatformV1MetadataSchema>;
|
|
20638
20833
|
/** Retrieves a specific MetadataSchema. */
|
|
20639
20834
|
get(request?: {
|
|
@@ -20902,7 +21097,7 @@ declare namespace gapi.client {
|
|
|
20902
21097
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20903
21098
|
uploadType?: string;
|
|
20904
21099
|
},
|
|
20905
|
-
body: GoogleCloudAiplatformV1MetadataStore
|
|
21100
|
+
body: GoogleCloudAiplatformV1MetadataStore,
|
|
20906
21101
|
): Request<GoogleLongrunningOperation>;
|
|
20907
21102
|
/** Deletes a single MetadataStore and all its child resources (Artifacts, Executions, and Contexts). */
|
|
20908
21103
|
delete(request?: {
|
|
@@ -21199,7 +21394,7 @@ declare namespace gapi.client {
|
|
|
21199
21394
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21200
21395
|
uploadType?: string;
|
|
21201
21396
|
},
|
|
21202
|
-
body: GoogleCloudAiplatformV1BatchMigrateResourcesRequest
|
|
21397
|
+
body: GoogleCloudAiplatformV1BatchMigrateResourcesRequest,
|
|
21203
21398
|
): Request<GoogleLongrunningOperation>;
|
|
21204
21399
|
/** 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. */
|
|
21205
21400
|
search(request: {
|
|
@@ -21257,7 +21452,7 @@ declare namespace gapi.client {
|
|
|
21257
21452
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21258
21453
|
uploadType?: string;
|
|
21259
21454
|
},
|
|
21260
|
-
body: GoogleCloudAiplatformV1SearchMigratableResourcesRequest
|
|
21455
|
+
body: GoogleCloudAiplatformV1SearchMigratableResourcesRequest,
|
|
21261
21456
|
): Request<GoogleCloudAiplatformV1SearchMigratableResourcesResponse>;
|
|
21262
21457
|
operations: OperationsResource;
|
|
21263
21458
|
}
|
|
@@ -21463,7 +21658,7 @@ declare namespace gapi.client {
|
|
|
21463
21658
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21464
21659
|
uploadType?: string;
|
|
21465
21660
|
},
|
|
21466
|
-
body: GoogleCloudAiplatformV1ModelDeploymentMonitoringJob
|
|
21661
|
+
body: GoogleCloudAiplatformV1ModelDeploymentMonitoringJob,
|
|
21467
21662
|
): Request<GoogleCloudAiplatformV1ModelDeploymentMonitoringJob>;
|
|
21468
21663
|
/** Deletes a ModelDeploymentMonitoringJob. */
|
|
21469
21664
|
delete(request?: {
|
|
@@ -21614,7 +21809,7 @@ declare namespace gapi.client {
|
|
|
21614
21809
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21615
21810
|
uploadType?: string;
|
|
21616
21811
|
},
|
|
21617
|
-
body: GoogleCloudAiplatformV1ModelDeploymentMonitoringJob
|
|
21812
|
+
body: GoogleCloudAiplatformV1ModelDeploymentMonitoringJob,
|
|
21618
21813
|
): Request<GoogleLongrunningOperation>;
|
|
21619
21814
|
/** Pauses a ModelDeploymentMonitoringJob. If the job is running, the server makes a best effort to cancel the job. Will mark ModelDeploymentMonitoringJob.state to 'PAUSED'. */
|
|
21620
21815
|
pause(request: {
|
|
@@ -21672,7 +21867,7 @@ declare namespace gapi.client {
|
|
|
21672
21867
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21673
21868
|
uploadType?: string;
|
|
21674
21869
|
},
|
|
21675
|
-
body: GoogleCloudAiplatformV1PauseModelDeploymentMonitoringJobRequest
|
|
21870
|
+
body: GoogleCloudAiplatformV1PauseModelDeploymentMonitoringJobRequest,
|
|
21676
21871
|
): Request<{}>;
|
|
21677
21872
|
/** Resumes a paused ModelDeploymentMonitoringJob. It will start to run from next scheduled time. A deleted ModelDeploymentMonitoringJob can't be resumed. */
|
|
21678
21873
|
resume(request: {
|
|
@@ -21730,7 +21925,7 @@ declare namespace gapi.client {
|
|
|
21730
21925
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21731
21926
|
uploadType?: string;
|
|
21732
21927
|
},
|
|
21733
|
-
body: GoogleCloudAiplatformV1ResumeModelDeploymentMonitoringJobRequest
|
|
21928
|
+
body: GoogleCloudAiplatformV1ResumeModelDeploymentMonitoringJobRequest,
|
|
21734
21929
|
): Request<{}>;
|
|
21735
21930
|
/** Searches Model Monitoring Statistics generated within a given time window. */
|
|
21736
21931
|
searchModelDeploymentMonitoringStatsAnomalies(request: {
|
|
@@ -21788,7 +21983,7 @@ declare namespace gapi.client {
|
|
|
21788
21983
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21789
21984
|
uploadType?: string;
|
|
21790
21985
|
},
|
|
21791
|
-
body: GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest
|
|
21986
|
+
body: GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesRequest,
|
|
21792
21987
|
): Request<GoogleCloudAiplatformV1SearchModelDeploymentMonitoringStatsAnomaliesResponse>;
|
|
21793
21988
|
operations: OperationsResource;
|
|
21794
21989
|
}
|
|
@@ -21994,7 +22189,7 @@ declare namespace gapi.client {
|
|
|
21994
22189
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21995
22190
|
uploadType?: string;
|
|
21996
22191
|
},
|
|
21997
|
-
body: GoogleCloudAiplatformV1BatchImportEvaluatedAnnotationsRequest
|
|
22192
|
+
body: GoogleCloudAiplatformV1BatchImportEvaluatedAnnotationsRequest,
|
|
21998
22193
|
): Request<GoogleCloudAiplatformV1BatchImportEvaluatedAnnotationsResponse>;
|
|
21999
22194
|
/** Gets a ModelEvaluationSlice. */
|
|
22000
22195
|
get(request?: {
|
|
@@ -22143,7 +22338,7 @@ declare namespace gapi.client {
|
|
|
22143
22338
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22144
22339
|
uploadType?: string;
|
|
22145
22340
|
},
|
|
22146
|
-
body: GoogleCloudAiplatformV1ImportModelEvaluationRequest
|
|
22341
|
+
body: GoogleCloudAiplatformV1ImportModelEvaluationRequest,
|
|
22147
22342
|
): Request<GoogleCloudAiplatformV1ModelEvaluation>;
|
|
22148
22343
|
/** Lists ModelEvaluations in a Model. */
|
|
22149
22344
|
list(request?: {
|
|
@@ -22385,7 +22580,7 @@ declare namespace gapi.client {
|
|
|
22385
22580
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22386
22581
|
uploadType?: string;
|
|
22387
22582
|
},
|
|
22388
|
-
body: GoogleCloudAiplatformV1CopyModelRequest
|
|
22583
|
+
body: GoogleCloudAiplatformV1CopyModelRequest,
|
|
22389
22584
|
): Request<GoogleLongrunningOperation>;
|
|
22390
22585
|
/** Deletes a Model. A model cannot be deleted if any Endpoint resource has a DeployedModel based on the model in its deployed_models field. */
|
|
22391
22586
|
delete(request?: {
|
|
@@ -22497,7 +22692,7 @@ declare namespace gapi.client {
|
|
|
22497
22692
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22498
22693
|
uploadType?: string;
|
|
22499
22694
|
},
|
|
22500
|
-
body: GoogleCloudAiplatformV1ExportModelRequest
|
|
22695
|
+
body: GoogleCloudAiplatformV1ExportModelRequest,
|
|
22501
22696
|
): Request<GoogleLongrunningOperation>;
|
|
22502
22697
|
/** Gets a Model. */
|
|
22503
22698
|
get(request?: {
|
|
@@ -22592,6 +22787,37 @@ declare namespace gapi.client {
|
|
|
22592
22787
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22593
22788
|
uploadType?: string;
|
|
22594
22789
|
}): Request<GoogleCloudAiplatformV1ListModelsResponse>;
|
|
22790
|
+
/** Lists checkpoints of the specified model version. */
|
|
22791
|
+
listCheckpoints(request?: {
|
|
22792
|
+
/** V1 error format. */
|
|
22793
|
+
'$.xgafv'?: string;
|
|
22794
|
+
/** OAuth access token. */
|
|
22795
|
+
access_token?: string;
|
|
22796
|
+
/** Data format for response. */
|
|
22797
|
+
alt?: string;
|
|
22798
|
+
/** JSONP */
|
|
22799
|
+
callback?: string;
|
|
22800
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
22801
|
+
fields?: string;
|
|
22802
|
+
/** 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. */
|
|
22803
|
+
key?: string;
|
|
22804
|
+
/** 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. */
|
|
22805
|
+
name: string;
|
|
22806
|
+
/** OAuth 2.0 token for the current user. */
|
|
22807
|
+
oauth_token?: string;
|
|
22808
|
+
/** Optional. The standard list page size. */
|
|
22809
|
+
pageSize?: number;
|
|
22810
|
+
/** Optional. The standard list page token. Typically obtained via next_page_token of the previous ListModelVersionCheckpoints call. */
|
|
22811
|
+
pageToken?: string;
|
|
22812
|
+
/** Returns response with indentations and line breaks. */
|
|
22813
|
+
prettyPrint?: boolean;
|
|
22814
|
+
/** 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. */
|
|
22815
|
+
quotaUser?: string;
|
|
22816
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
22817
|
+
upload_protocol?: string;
|
|
22818
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22819
|
+
uploadType?: string;
|
|
22820
|
+
}): Request<GoogleCloudAiplatformV1ListModelVersionCheckpointsResponse>;
|
|
22595
22821
|
/** Lists versions of the specified model. */
|
|
22596
22822
|
listVersions(request?: {
|
|
22597
22823
|
/** V1 error format. */
|
|
@@ -22685,7 +22911,7 @@ declare namespace gapi.client {
|
|
|
22685
22911
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22686
22912
|
uploadType?: string;
|
|
22687
22913
|
},
|
|
22688
|
-
body: GoogleCloudAiplatformV1MergeVersionAliasesRequest
|
|
22914
|
+
body: GoogleCloudAiplatformV1MergeVersionAliasesRequest,
|
|
22689
22915
|
): Request<GoogleCloudAiplatformV1Model>;
|
|
22690
22916
|
/** Updates a Model. */
|
|
22691
22917
|
patch(request: {
|
|
@@ -22747,7 +22973,7 @@ declare namespace gapi.client {
|
|
|
22747
22973
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22748
22974
|
uploadType?: string;
|
|
22749
22975
|
},
|
|
22750
|
-
body: GoogleCloudAiplatformV1Model
|
|
22976
|
+
body: GoogleCloudAiplatformV1Model,
|
|
22751
22977
|
): Request<GoogleCloudAiplatformV1Model>;
|
|
22752
22978
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
22753
22979
|
setIamPolicy(
|
|
@@ -22777,7 +23003,7 @@ declare namespace gapi.client {
|
|
|
22777
23003
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22778
23004
|
uploadType?: string;
|
|
22779
23005
|
},
|
|
22780
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
23006
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
22781
23007
|
): Request<GoogleIamV1Policy>;
|
|
22782
23008
|
/** 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. */
|
|
22783
23009
|
testIamPermissions(request?: {
|
|
@@ -22864,7 +23090,7 @@ declare namespace gapi.client {
|
|
|
22864
23090
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22865
23091
|
uploadType?: string;
|
|
22866
23092
|
},
|
|
22867
|
-
body: GoogleCloudAiplatformV1UpdateExplanationDatasetRequest
|
|
23093
|
+
body: GoogleCloudAiplatformV1UpdateExplanationDatasetRequest,
|
|
22868
23094
|
): Request<GoogleLongrunningOperation>;
|
|
22869
23095
|
/** Uploads a Model artifact into Vertex AI. */
|
|
22870
23096
|
upload(request: {
|
|
@@ -22922,7 +23148,7 @@ declare namespace gapi.client {
|
|
|
22922
23148
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22923
23149
|
uploadType?: string;
|
|
22924
23150
|
},
|
|
22925
|
-
body: GoogleCloudAiplatformV1UploadModelRequest
|
|
23151
|
+
body: GoogleCloudAiplatformV1UploadModelRequest,
|
|
22926
23152
|
): Request<GoogleLongrunningOperation>;
|
|
22927
23153
|
evaluations: EvaluationsResource;
|
|
22928
23154
|
operations: OperationsResource;
|
|
@@ -23044,7 +23270,7 @@ declare namespace gapi.client {
|
|
|
23044
23270
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23045
23271
|
uploadType?: string;
|
|
23046
23272
|
},
|
|
23047
|
-
body: GoogleCloudAiplatformV1CancelNasJobRequest
|
|
23273
|
+
body: GoogleCloudAiplatformV1CancelNasJobRequest,
|
|
23048
23274
|
): Request<{}>;
|
|
23049
23275
|
/** Creates a NasJob */
|
|
23050
23276
|
create(request: {
|
|
@@ -23102,7 +23328,7 @@ declare namespace gapi.client {
|
|
|
23102
23328
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23103
23329
|
uploadType?: string;
|
|
23104
23330
|
},
|
|
23105
|
-
body: GoogleCloudAiplatformV1NasJob
|
|
23331
|
+
body: GoogleCloudAiplatformV1NasJob,
|
|
23106
23332
|
): Request<GoogleCloudAiplatformV1NasJob>;
|
|
23107
23333
|
/** Deletes a NasJob. */
|
|
23108
23334
|
delete(request?: {
|
|
@@ -23401,7 +23627,7 @@ declare namespace gapi.client {
|
|
|
23401
23627
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23402
23628
|
uploadType?: string;
|
|
23403
23629
|
},
|
|
23404
|
-
body: GoogleCloudAiplatformV1NotebookExecutionJob
|
|
23630
|
+
body: GoogleCloudAiplatformV1NotebookExecutionJob,
|
|
23405
23631
|
): Request<GoogleLongrunningOperation>;
|
|
23406
23632
|
/** Deletes a NotebookExecutionJob. */
|
|
23407
23633
|
delete(request?: {
|
|
@@ -23700,7 +23926,7 @@ declare namespace gapi.client {
|
|
|
23700
23926
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23701
23927
|
uploadType?: string;
|
|
23702
23928
|
},
|
|
23703
|
-
body: GoogleCloudAiplatformV1AssignNotebookRuntimeRequest
|
|
23929
|
+
body: GoogleCloudAiplatformV1AssignNotebookRuntimeRequest,
|
|
23704
23930
|
): Request<GoogleLongrunningOperation>;
|
|
23705
23931
|
/** Deletes a NotebookRuntime. */
|
|
23706
23932
|
delete(request?: {
|
|
@@ -23849,7 +24075,7 @@ declare namespace gapi.client {
|
|
|
23849
24075
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23850
24076
|
uploadType?: string;
|
|
23851
24077
|
},
|
|
23852
|
-
body: GoogleCloudAiplatformV1StartNotebookRuntimeRequest
|
|
24078
|
+
body: GoogleCloudAiplatformV1StartNotebookRuntimeRequest,
|
|
23853
24079
|
): Request<GoogleLongrunningOperation>;
|
|
23854
24080
|
/** Stops a NotebookRuntime. */
|
|
23855
24081
|
stop(request: {
|
|
@@ -23907,7 +24133,7 @@ declare namespace gapi.client {
|
|
|
23907
24133
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23908
24134
|
uploadType?: string;
|
|
23909
24135
|
},
|
|
23910
|
-
body: GoogleCloudAiplatformV1StopNotebookRuntimeRequest
|
|
24136
|
+
body: GoogleCloudAiplatformV1StopNotebookRuntimeRequest,
|
|
23911
24137
|
): Request<GoogleLongrunningOperation>;
|
|
23912
24138
|
/** Upgrades a NotebookRuntime. */
|
|
23913
24139
|
upgrade(request: {
|
|
@@ -23965,7 +24191,7 @@ declare namespace gapi.client {
|
|
|
23965
24191
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23966
24192
|
uploadType?: string;
|
|
23967
24193
|
},
|
|
23968
|
-
body: GoogleCloudAiplatformV1UpgradeNotebookRuntimeRequest
|
|
24194
|
+
body: GoogleCloudAiplatformV1UpgradeNotebookRuntimeRequest,
|
|
23969
24195
|
): Request<GoogleLongrunningOperation>;
|
|
23970
24196
|
operations: OperationsResource;
|
|
23971
24197
|
}
|
|
@@ -24175,7 +24401,7 @@ declare namespace gapi.client {
|
|
|
24175
24401
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24176
24402
|
uploadType?: string;
|
|
24177
24403
|
},
|
|
24178
|
-
body: GoogleCloudAiplatformV1NotebookRuntimeTemplate
|
|
24404
|
+
body: GoogleCloudAiplatformV1NotebookRuntimeTemplate,
|
|
24179
24405
|
): Request<GoogleLongrunningOperation>;
|
|
24180
24406
|
/** Deletes a NotebookRuntimeTemplate. */
|
|
24181
24407
|
delete(request?: {
|
|
@@ -24357,7 +24583,7 @@ declare namespace gapi.client {
|
|
|
24357
24583
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24358
24584
|
uploadType?: string;
|
|
24359
24585
|
},
|
|
24360
|
-
body: GoogleCloudAiplatformV1NotebookRuntimeTemplate
|
|
24586
|
+
body: GoogleCloudAiplatformV1NotebookRuntimeTemplate,
|
|
24361
24587
|
): Request<GoogleCloudAiplatformV1NotebookRuntimeTemplate>;
|
|
24362
24588
|
/** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
|
|
24363
24589
|
setIamPolicy(
|
|
@@ -24387,7 +24613,7 @@ declare namespace gapi.client {
|
|
|
24387
24613
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24388
24614
|
uploadType?: string;
|
|
24389
24615
|
},
|
|
24390
|
-
body: GoogleIamV1SetIamPolicyRequest
|
|
24616
|
+
body: GoogleIamV1SetIamPolicyRequest,
|
|
24391
24617
|
): Request<GoogleIamV1Policy>;
|
|
24392
24618
|
/** 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. */
|
|
24393
24619
|
testIamPermissions(request?: {
|
|
@@ -24771,7 +24997,7 @@ declare namespace gapi.client {
|
|
|
24771
24997
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24772
24998
|
uploadType?: string;
|
|
24773
24999
|
},
|
|
24774
|
-
body: GoogleCloudAiplatformV1PersistentResource
|
|
25000
|
+
body: GoogleCloudAiplatformV1PersistentResource,
|
|
24775
25001
|
): Request<GoogleLongrunningOperation>;
|
|
24776
25002
|
/** Deletes a PersistentResource. */
|
|
24777
25003
|
delete(request?: {
|
|
@@ -24918,7 +25144,7 @@ declare namespace gapi.client {
|
|
|
24918
25144
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24919
25145
|
uploadType?: string;
|
|
24920
25146
|
},
|
|
24921
|
-
body: GoogleCloudAiplatformV1PersistentResource
|
|
25147
|
+
body: GoogleCloudAiplatformV1PersistentResource,
|
|
24922
25148
|
): Request<GoogleLongrunningOperation>;
|
|
24923
25149
|
/** Reboots a PersistentResource. */
|
|
24924
25150
|
reboot(request: {
|
|
@@ -24976,7 +25202,7 @@ declare namespace gapi.client {
|
|
|
24976
25202
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
24977
25203
|
uploadType?: string;
|
|
24978
25204
|
},
|
|
24979
|
-
body: GoogleCloudAiplatformV1RebootPersistentResourceRequest
|
|
25205
|
+
body: GoogleCloudAiplatformV1RebootPersistentResourceRequest,
|
|
24980
25206
|
): Request<GoogleLongrunningOperation>;
|
|
24981
25207
|
operations: OperationsResource;
|
|
24982
25208
|
}
|
|
@@ -25182,7 +25408,7 @@ declare namespace gapi.client {
|
|
|
25182
25408
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25183
25409
|
uploadType?: string;
|
|
25184
25410
|
},
|
|
25185
|
-
body: GoogleCloudAiplatformV1BatchCancelPipelineJobsRequest
|
|
25411
|
+
body: GoogleCloudAiplatformV1BatchCancelPipelineJobsRequest,
|
|
25186
25412
|
): Request<GoogleLongrunningOperation>;
|
|
25187
25413
|
/** 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. */
|
|
25188
25414
|
batchDelete(request: {
|
|
@@ -25240,7 +25466,7 @@ declare namespace gapi.client {
|
|
|
25240
25466
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25241
25467
|
uploadType?: string;
|
|
25242
25468
|
},
|
|
25243
|
-
body: GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest
|
|
25469
|
+
body: GoogleCloudAiplatformV1BatchDeletePipelineJobsRequest,
|
|
25244
25470
|
): Request<GoogleLongrunningOperation>;
|
|
25245
25471
|
/** 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`. */
|
|
25246
25472
|
cancel(request: {
|
|
@@ -25298,7 +25524,7 @@ declare namespace gapi.client {
|
|
|
25298
25524
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25299
25525
|
uploadType?: string;
|
|
25300
25526
|
},
|
|
25301
|
-
body: GoogleCloudAiplatformV1CancelPipelineJobRequest
|
|
25527
|
+
body: GoogleCloudAiplatformV1CancelPipelineJobRequest,
|
|
25302
25528
|
): Request<{}>;
|
|
25303
25529
|
/** Creates a PipelineJob. A PipelineJob will run immediately when created. */
|
|
25304
25530
|
create(request: {
|
|
@@ -25360,7 +25586,7 @@ declare namespace gapi.client {
|
|
|
25360
25586
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25361
25587
|
uploadType?: string;
|
|
25362
25588
|
},
|
|
25363
|
-
body: GoogleCloudAiplatformV1PipelineJob
|
|
25589
|
+
body: GoogleCloudAiplatformV1PipelineJob,
|
|
25364
25590
|
): Request<GoogleCloudAiplatformV1PipelineJob>;
|
|
25365
25591
|
/** Deletes a PipelineJob. */
|
|
25366
25592
|
delete(request?: {
|
|
@@ -25512,7 +25738,7 @@ declare namespace gapi.client {
|
|
|
25512
25738
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25513
25739
|
uploadType?: string;
|
|
25514
25740
|
},
|
|
25515
|
-
body: GoogleCloudAiplatformV1ComputeTokensRequest
|
|
25741
|
+
body: GoogleCloudAiplatformV1ComputeTokensRequest,
|
|
25516
25742
|
): Request<GoogleCloudAiplatformV1ComputeTokensResponse>;
|
|
25517
25743
|
/** Perform a token counting. */
|
|
25518
25744
|
countTokens(request: {
|
|
@@ -25570,7 +25796,7 @@ declare namespace gapi.client {
|
|
|
25570
25796
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25571
25797
|
uploadType?: string;
|
|
25572
25798
|
},
|
|
25573
|
-
body: GoogleCloudAiplatformV1CountTokensRequest
|
|
25799
|
+
body: GoogleCloudAiplatformV1CountTokensRequest,
|
|
25574
25800
|
): Request<GoogleCloudAiplatformV1CountTokensResponse>;
|
|
25575
25801
|
/** Fetch an asynchronous online prediction operation. */
|
|
25576
25802
|
fetchPredictOperation(request: {
|
|
@@ -25628,7 +25854,7 @@ declare namespace gapi.client {
|
|
|
25628
25854
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25629
25855
|
uploadType?: string;
|
|
25630
25856
|
},
|
|
25631
|
-
body: GoogleCloudAiplatformV1FetchPredictOperationRequest
|
|
25857
|
+
body: GoogleCloudAiplatformV1FetchPredictOperationRequest,
|
|
25632
25858
|
): Request<GoogleLongrunningOperation>;
|
|
25633
25859
|
/** Generate content with multimodal inputs. */
|
|
25634
25860
|
generateContent(request: {
|
|
@@ -25686,7 +25912,7 @@ declare namespace gapi.client {
|
|
|
25686
25912
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25687
25913
|
uploadType?: string;
|
|
25688
25914
|
},
|
|
25689
|
-
body: GoogleCloudAiplatformV1GenerateContentRequest
|
|
25915
|
+
body: GoogleCloudAiplatformV1GenerateContentRequest,
|
|
25690
25916
|
): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
|
|
25691
25917
|
/** Perform an online prediction. */
|
|
25692
25918
|
predict(request: {
|
|
@@ -25744,7 +25970,7 @@ declare namespace gapi.client {
|
|
|
25744
25970
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25745
25971
|
uploadType?: string;
|
|
25746
25972
|
},
|
|
25747
|
-
body: GoogleCloudAiplatformV1PredictRequest
|
|
25973
|
+
body: GoogleCloudAiplatformV1PredictRequest,
|
|
25748
25974
|
): Request<GoogleCloudAiplatformV1PredictResponse>;
|
|
25749
25975
|
predictLongRunning(request: {
|
|
25750
25976
|
/** V1 error format. */
|
|
@@ -25801,7 +26027,7 @@ declare namespace gapi.client {
|
|
|
25801
26027
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25802
26028
|
uploadType?: string;
|
|
25803
26029
|
},
|
|
25804
|
-
body: GoogleCloudAiplatformV1PredictLongRunningRequest
|
|
26030
|
+
body: GoogleCloudAiplatformV1PredictLongRunningRequest,
|
|
25805
26031
|
): Request<GoogleLongrunningOperation>;
|
|
25806
26032
|
/** 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. */
|
|
25807
26033
|
rawPredict(request: {
|
|
@@ -25859,7 +26085,7 @@ declare namespace gapi.client {
|
|
|
25859
26085
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25860
26086
|
uploadType?: string;
|
|
25861
26087
|
},
|
|
25862
|
-
body: GoogleCloudAiplatformV1RawPredictRequest
|
|
26088
|
+
body: GoogleCloudAiplatformV1RawPredictRequest,
|
|
25863
26089
|
): Request<GoogleApiHttpBody>;
|
|
25864
26090
|
/** Perform a server-side streaming online prediction request for Vertex LLM streaming. */
|
|
25865
26091
|
serverStreamingPredict(request: {
|
|
@@ -25917,7 +26143,7 @@ declare namespace gapi.client {
|
|
|
25917
26143
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25918
26144
|
uploadType?: string;
|
|
25919
26145
|
},
|
|
25920
|
-
body: GoogleCloudAiplatformV1StreamingPredictRequest
|
|
26146
|
+
body: GoogleCloudAiplatformV1StreamingPredictRequest,
|
|
25921
26147
|
): Request<GoogleCloudAiplatformV1StreamingPredictResponse>;
|
|
25922
26148
|
/** Generate content with multimodal inputs with streaming support. */
|
|
25923
26149
|
streamGenerateContent(request: {
|
|
@@ -25975,7 +26201,7 @@ declare namespace gapi.client {
|
|
|
25975
26201
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
25976
26202
|
uploadType?: string;
|
|
25977
26203
|
},
|
|
25978
|
-
body: GoogleCloudAiplatformV1GenerateContentRequest
|
|
26204
|
+
body: GoogleCloudAiplatformV1GenerateContentRequest,
|
|
25979
26205
|
): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
|
|
25980
26206
|
/** Perform a streaming online prediction with an arbitrary HTTP payload. */
|
|
25981
26207
|
streamRawPredict(request: {
|
|
@@ -26033,7 +26259,7 @@ declare namespace gapi.client {
|
|
|
26033
26259
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
26034
26260
|
uploadType?: string;
|
|
26035
26261
|
},
|
|
26036
|
-
body: GoogleCloudAiplatformV1StreamRawPredictRequest
|
|
26262
|
+
body: GoogleCloudAiplatformV1StreamRawPredictRequest,
|
|
26037
26263
|
): Request<GoogleApiHttpBody>;
|
|
26038
26264
|
}
|
|
26039
26265
|
interface PublishersResource {
|
|
@@ -26440,7 +26666,7 @@ declare namespace gapi.client {
|
|
|
26440
26666
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
26441
26667
|
uploadType?: string;
|
|
26442
26668
|
},
|
|
26443
|
-
body: GoogleCloudAiplatformV1ImportRagFilesRequest
|
|
26669
|
+
body: GoogleCloudAiplatformV1ImportRagFilesRequest,
|
|
26444
26670
|
): Request<GoogleLongrunningOperation>;
|
|
26445
26671
|
/** Lists RagFiles in a RagCorpus. */
|
|
26446
26672
|
list(request?: {
|
|
@@ -26532,7 +26758,7 @@ declare namespace gapi.client {
|
|
|
26532
26758
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
26533
26759
|
uploadType?: string;
|
|
26534
26760
|
},
|
|
26535
|
-
body: GoogleCloudAiplatformV1RagCorpus
|
|
26761
|
+
body: GoogleCloudAiplatformV1RagCorpus,
|
|
26536
26762
|
): Request<GoogleLongrunningOperation>;
|
|
26537
26763
|
/** Deletes a RagCorpus. */
|
|
26538
26764
|
delete(request?: {
|
|
@@ -26677,7 +26903,7 @@ declare namespace gapi.client {
|
|
|
26677
26903
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
26678
26904
|
uploadType?: string;
|
|
26679
26905
|
},
|
|
26680
|
-
body: GoogleCloudAiplatformV1RagCorpus
|
|
26906
|
+
body: GoogleCloudAiplatformV1RagCorpus,
|
|
26681
26907
|
): Request<GoogleLongrunningOperation>;
|
|
26682
26908
|
operations: OperationsResource;
|
|
26683
26909
|
ragFiles: RagFilesResource;
|
|
@@ -26884,7 +27110,7 @@ declare namespace gapi.client {
|
|
|
26884
27110
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
26885
27111
|
uploadType?: string;
|
|
26886
27112
|
},
|
|
26887
|
-
body: GoogleCloudAiplatformV1ReasoningEngine
|
|
27113
|
+
body: GoogleCloudAiplatformV1ReasoningEngine,
|
|
26888
27114
|
): Request<GoogleLongrunningOperation>;
|
|
26889
27115
|
/** Deletes a reasoning engine. */
|
|
26890
27116
|
delete(request?: {
|
|
@@ -27033,7 +27259,7 @@ declare namespace gapi.client {
|
|
|
27033
27259
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27034
27260
|
uploadType?: string;
|
|
27035
27261
|
},
|
|
27036
|
-
body: GoogleCloudAiplatformV1ReasoningEngine
|
|
27262
|
+
body: GoogleCloudAiplatformV1ReasoningEngine,
|
|
27037
27263
|
): Request<GoogleLongrunningOperation>;
|
|
27038
27264
|
/** Queries using a reasoning engine. */
|
|
27039
27265
|
query(request: {
|
|
@@ -27091,7 +27317,7 @@ declare namespace gapi.client {
|
|
|
27091
27317
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27092
27318
|
uploadType?: string;
|
|
27093
27319
|
},
|
|
27094
|
-
body: GoogleCloudAiplatformV1QueryReasoningEngineRequest
|
|
27320
|
+
body: GoogleCloudAiplatformV1QueryReasoningEngineRequest,
|
|
27095
27321
|
): Request<GoogleCloudAiplatformV1QueryReasoningEngineResponse>;
|
|
27096
27322
|
/** Streams queries using a reasoning engine. */
|
|
27097
27323
|
streamQuery(request: {
|
|
@@ -27149,7 +27375,7 @@ declare namespace gapi.client {
|
|
|
27149
27375
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27150
27376
|
uploadType?: string;
|
|
27151
27377
|
},
|
|
27152
|
-
body: GoogleCloudAiplatformV1StreamQueryReasoningEngineRequest
|
|
27378
|
+
body: GoogleCloudAiplatformV1StreamQueryReasoningEngineRequest,
|
|
27153
27379
|
): Request<GoogleApiHttpBody>;
|
|
27154
27380
|
operations: OperationsResource;
|
|
27155
27381
|
}
|
|
@@ -27355,7 +27581,7 @@ declare namespace gapi.client {
|
|
|
27355
27581
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27356
27582
|
uploadType?: string;
|
|
27357
27583
|
},
|
|
27358
|
-
body: GoogleCloudAiplatformV1Schedule
|
|
27584
|
+
body: GoogleCloudAiplatformV1Schedule,
|
|
27359
27585
|
): Request<GoogleCloudAiplatformV1Schedule>;
|
|
27360
27586
|
/** Deletes a Schedule. */
|
|
27361
27587
|
delete(request?: {
|
|
@@ -27506,7 +27732,7 @@ declare namespace gapi.client {
|
|
|
27506
27732
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27507
27733
|
uploadType?: string;
|
|
27508
27734
|
},
|
|
27509
|
-
body: GoogleCloudAiplatformV1Schedule
|
|
27735
|
+
body: GoogleCloudAiplatformV1Schedule,
|
|
27510
27736
|
): Request<GoogleCloudAiplatformV1Schedule>;
|
|
27511
27737
|
/** 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. */
|
|
27512
27738
|
pause(request: {
|
|
@@ -27564,7 +27790,7 @@ declare namespace gapi.client {
|
|
|
27564
27790
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27565
27791
|
uploadType?: string;
|
|
27566
27792
|
},
|
|
27567
|
-
body: GoogleCloudAiplatformV1PauseScheduleRequest
|
|
27793
|
+
body: GoogleCloudAiplatformV1PauseScheduleRequest,
|
|
27568
27794
|
): Request<{}>;
|
|
27569
27795
|
/** 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. */
|
|
27570
27796
|
resume(request: {
|
|
@@ -27622,7 +27848,7 @@ declare namespace gapi.client {
|
|
|
27622
27848
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27623
27849
|
uploadType?: string;
|
|
27624
27850
|
},
|
|
27625
|
-
body: GoogleCloudAiplatformV1ResumeScheduleRequest
|
|
27851
|
+
body: GoogleCloudAiplatformV1ResumeScheduleRequest,
|
|
27626
27852
|
): Request<{}>;
|
|
27627
27853
|
operations: OperationsResource;
|
|
27628
27854
|
}
|
|
@@ -27828,7 +28054,7 @@ declare namespace gapi.client {
|
|
|
27828
28054
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27829
28055
|
uploadType?: string;
|
|
27830
28056
|
},
|
|
27831
|
-
body: GoogleCloudAiplatformV1SpecialistPool
|
|
28057
|
+
body: GoogleCloudAiplatformV1SpecialistPool,
|
|
27832
28058
|
): Request<GoogleLongrunningOperation>;
|
|
27833
28059
|
/** Deletes a SpecialistPool as well as all Specialists in the pool. */
|
|
27834
28060
|
delete(request?: {
|
|
@@ -27979,7 +28205,7 @@ declare namespace gapi.client {
|
|
|
27979
28205
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27980
28206
|
uploadType?: string;
|
|
27981
28207
|
},
|
|
27982
|
-
body: GoogleCloudAiplatformV1SpecialistPool
|
|
28208
|
+
body: GoogleCloudAiplatformV1SpecialistPool,
|
|
27983
28209
|
): Request<GoogleLongrunningOperation>;
|
|
27984
28210
|
operations: OperationsResource;
|
|
27985
28211
|
}
|
|
@@ -28330,7 +28556,7 @@ declare namespace gapi.client {
|
|
|
28330
28556
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28331
28557
|
uploadType?: string;
|
|
28332
28558
|
},
|
|
28333
|
-
body: GoogleCloudAiplatformV1AddTrialMeasurementRequest
|
|
28559
|
+
body: GoogleCloudAiplatformV1AddTrialMeasurementRequest,
|
|
28334
28560
|
): Request<GoogleCloudAiplatformV1Trial>;
|
|
28335
28561
|
/** Checks whether a Trial should stop or not. Returns a long-running operation. When the operation is successful, it will contain a CheckTrialEarlyStoppingStateResponse. */
|
|
28336
28562
|
checkTrialEarlyStoppingState(request: {
|
|
@@ -28388,7 +28614,7 @@ declare namespace gapi.client {
|
|
|
28388
28614
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28389
28615
|
uploadType?: string;
|
|
28390
28616
|
},
|
|
28391
|
-
body: GoogleCloudAiplatformV1CheckTrialEarlyStoppingStateRequest
|
|
28617
|
+
body: GoogleCloudAiplatformV1CheckTrialEarlyStoppingStateRequest,
|
|
28392
28618
|
): Request<GoogleLongrunningOperation>;
|
|
28393
28619
|
/** Marks a Trial as complete. */
|
|
28394
28620
|
complete(request: {
|
|
@@ -28446,7 +28672,7 @@ declare namespace gapi.client {
|
|
|
28446
28672
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28447
28673
|
uploadType?: string;
|
|
28448
28674
|
},
|
|
28449
|
-
body: GoogleCloudAiplatformV1CompleteTrialRequest
|
|
28675
|
+
body: GoogleCloudAiplatformV1CompleteTrialRequest,
|
|
28450
28676
|
): Request<GoogleCloudAiplatformV1Trial>;
|
|
28451
28677
|
/** Adds a user provided Trial to a Study. */
|
|
28452
28678
|
create(request: {
|
|
@@ -28504,7 +28730,7 @@ declare namespace gapi.client {
|
|
|
28504
28730
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28505
28731
|
uploadType?: string;
|
|
28506
28732
|
},
|
|
28507
|
-
body: GoogleCloudAiplatformV1Trial
|
|
28733
|
+
body: GoogleCloudAiplatformV1Trial,
|
|
28508
28734
|
): Request<GoogleCloudAiplatformV1Trial>;
|
|
28509
28735
|
/** Deletes a Trial. */
|
|
28510
28736
|
delete(request?: {
|
|
@@ -28647,7 +28873,7 @@ declare namespace gapi.client {
|
|
|
28647
28873
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28648
28874
|
uploadType?: string;
|
|
28649
28875
|
},
|
|
28650
|
-
body: GoogleCloudAiplatformV1ListOptimalTrialsRequest
|
|
28876
|
+
body: GoogleCloudAiplatformV1ListOptimalTrialsRequest,
|
|
28651
28877
|
): Request<GoogleCloudAiplatformV1ListOptimalTrialsResponse>;
|
|
28652
28878
|
/** Stops a Trial. */
|
|
28653
28879
|
stop(request: {
|
|
@@ -28705,7 +28931,7 @@ declare namespace gapi.client {
|
|
|
28705
28931
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28706
28932
|
uploadType?: string;
|
|
28707
28933
|
},
|
|
28708
|
-
body: GoogleCloudAiplatformV1StopTrialRequest
|
|
28934
|
+
body: GoogleCloudAiplatformV1StopTrialRequest,
|
|
28709
28935
|
): Request<GoogleCloudAiplatformV1Trial>;
|
|
28710
28936
|
/** 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. */
|
|
28711
28937
|
suggest(request: {
|
|
@@ -28763,7 +28989,7 @@ declare namespace gapi.client {
|
|
|
28763
28989
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28764
28990
|
uploadType?: string;
|
|
28765
28991
|
},
|
|
28766
|
-
body: GoogleCloudAiplatformV1SuggestTrialsRequest
|
|
28992
|
+
body: GoogleCloudAiplatformV1SuggestTrialsRequest,
|
|
28767
28993
|
): Request<GoogleLongrunningOperation>;
|
|
28768
28994
|
operations: OperationsResource;
|
|
28769
28995
|
}
|
|
@@ -28824,7 +29050,7 @@ declare namespace gapi.client {
|
|
|
28824
29050
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28825
29051
|
uploadType?: string;
|
|
28826
29052
|
},
|
|
28827
|
-
body: GoogleCloudAiplatformV1Study
|
|
29053
|
+
body: GoogleCloudAiplatformV1Study,
|
|
28828
29054
|
): Request<GoogleCloudAiplatformV1Study>;
|
|
28829
29055
|
/** Deletes a Study. */
|
|
28830
29056
|
delete(request?: {
|
|
@@ -28967,7 +29193,7 @@ declare namespace gapi.client {
|
|
|
28967
29193
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28968
29194
|
uploadType?: string;
|
|
28969
29195
|
},
|
|
28970
|
-
body: GoogleCloudAiplatformV1LookupStudyRequest
|
|
29196
|
+
body: GoogleCloudAiplatformV1LookupStudyRequest,
|
|
28971
29197
|
): Request<GoogleCloudAiplatformV1Study>;
|
|
28972
29198
|
operations: OperationsResource;
|
|
28973
29199
|
trials: TrialsResource;
|
|
@@ -29468,7 +29694,7 @@ declare namespace gapi.client {
|
|
|
29468
29694
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29469
29695
|
uploadType?: string;
|
|
29470
29696
|
},
|
|
29471
|
-
body: GoogleCloudAiplatformV1TensorboardTimeSeries
|
|
29697
|
+
body: GoogleCloudAiplatformV1TensorboardTimeSeries,
|
|
29472
29698
|
): Request<GoogleCloudAiplatformV1TensorboardTimeSeries>;
|
|
29473
29699
|
/** Deletes a TensorboardTimeSeries. */
|
|
29474
29700
|
delete(request?: {
|
|
@@ -29553,7 +29779,7 @@ declare namespace gapi.client {
|
|
|
29553
29779
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29554
29780
|
uploadType?: string;
|
|
29555
29781
|
},
|
|
29556
|
-
body: GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest
|
|
29782
|
+
body: GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataRequest,
|
|
29557
29783
|
): Request<GoogleCloudAiplatformV1ExportTensorboardTimeSeriesDataResponse>;
|
|
29558
29784
|
/** Gets a TensorboardTimeSeries. */
|
|
29559
29785
|
get(request?: {
|
|
@@ -29679,7 +29905,7 @@ declare namespace gapi.client {
|
|
|
29679
29905
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29680
29906
|
uploadType?: string;
|
|
29681
29907
|
},
|
|
29682
|
-
body: GoogleCloudAiplatformV1TensorboardTimeSeries
|
|
29908
|
+
body: GoogleCloudAiplatformV1TensorboardTimeSeries,
|
|
29683
29909
|
): Request<GoogleCloudAiplatformV1TensorboardTimeSeries>;
|
|
29684
29910
|
/** 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. */
|
|
29685
29911
|
read(request?: {
|
|
@@ -29800,7 +30026,7 @@ declare namespace gapi.client {
|
|
|
29800
30026
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29801
30027
|
uploadType?: string;
|
|
29802
30028
|
},
|
|
29803
|
-
body: GoogleCloudAiplatformV1BatchCreateTensorboardRunsRequest
|
|
30029
|
+
body: GoogleCloudAiplatformV1BatchCreateTensorboardRunsRequest,
|
|
29804
30030
|
): Request<GoogleCloudAiplatformV1BatchCreateTensorboardRunsResponse>;
|
|
29805
30031
|
/** Creates a TensorboardRun. */
|
|
29806
30032
|
create(request: {
|
|
@@ -29862,7 +30088,7 @@ declare namespace gapi.client {
|
|
|
29862
30088
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29863
30089
|
uploadType?: string;
|
|
29864
30090
|
},
|
|
29865
|
-
body: GoogleCloudAiplatformV1TensorboardRun
|
|
30091
|
+
body: GoogleCloudAiplatformV1TensorboardRun,
|
|
29866
30092
|
): Request<GoogleCloudAiplatformV1TensorboardRun>;
|
|
29867
30093
|
/** Deletes a TensorboardRun. */
|
|
29868
30094
|
delete(request?: {
|
|
@@ -30015,7 +30241,7 @@ declare namespace gapi.client {
|
|
|
30015
30241
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
30016
30242
|
uploadType?: string;
|
|
30017
30243
|
},
|
|
30018
|
-
body: GoogleCloudAiplatformV1TensorboardRun
|
|
30244
|
+
body: GoogleCloudAiplatformV1TensorboardRun,
|
|
30019
30245
|
): Request<GoogleCloudAiplatformV1TensorboardRun>;
|
|
30020
30246
|
/** Write time series data points into multiple TensorboardTimeSeries under a TensorboardRun. If any data fail to be ingested, an error is returned. */
|
|
30021
30247
|
write(request: {
|
|
@@ -30073,7 +30299,7 @@ declare namespace gapi.client {
|
|
|
30073
30299
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
30074
30300
|
uploadType?: string;
|
|
30075
30301
|
},
|
|
30076
|
-
body: GoogleCloudAiplatformV1WriteTensorboardRunDataRequest
|
|
30302
|
+
body: GoogleCloudAiplatformV1WriteTensorboardRunDataRequest,
|
|
30077
30303
|
): Request<{}>;
|
|
30078
30304
|
operations: OperationsResource;
|
|
30079
30305
|
timeSeries: TimeSeriesResource;
|
|
@@ -30135,7 +30361,7 @@ declare namespace gapi.client {
|
|
|
30135
30361
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
30136
30362
|
uploadType?: string;
|
|
30137
30363
|
},
|
|
30138
|
-
body: GoogleCloudAiplatformV1BatchCreateTensorboardTimeSeriesRequest
|
|
30364
|
+
body: GoogleCloudAiplatformV1BatchCreateTensorboardTimeSeriesRequest,
|
|
30139
30365
|
): Request<GoogleCloudAiplatformV1BatchCreateTensorboardTimeSeriesResponse>;
|
|
30140
30366
|
/** Creates a TensorboardExperiment. */
|
|
30141
30367
|
create(request: {
|
|
@@ -30197,7 +30423,7 @@ declare namespace gapi.client {
|
|
|
30197
30423
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
30198
30424
|
uploadType?: string;
|
|
30199
30425
|
},
|
|
30200
|
-
body: GoogleCloudAiplatformV1TensorboardExperiment
|
|
30426
|
+
body: GoogleCloudAiplatformV1TensorboardExperiment,
|
|
30201
30427
|
): Request<GoogleCloudAiplatformV1TensorboardExperiment>;
|
|
30202
30428
|
/** Deletes a TensorboardExperiment. */
|
|
30203
30429
|
delete(request?: {
|
|
@@ -30350,7 +30576,7 @@ declare namespace gapi.client {
|
|
|
30350
30576
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
30351
30577
|
uploadType?: string;
|
|
30352
30578
|
},
|
|
30353
|
-
body: GoogleCloudAiplatformV1TensorboardExperiment
|
|
30579
|
+
body: GoogleCloudAiplatformV1TensorboardExperiment,
|
|
30354
30580
|
): Request<GoogleCloudAiplatformV1TensorboardExperiment>;
|
|
30355
30581
|
/** Write time series data points of multiple TensorboardTimeSeries in multiple TensorboardRun's. If any data fail to be ingested, an error is returned. */
|
|
30356
30582
|
write(request: {
|
|
@@ -30408,7 +30634,7 @@ declare namespace gapi.client {
|
|
|
30408
30634
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
30409
30635
|
uploadType?: string;
|
|
30410
30636
|
},
|
|
30411
|
-
body: GoogleCloudAiplatformV1WriteTensorboardExperimentDataRequest
|
|
30637
|
+
body: GoogleCloudAiplatformV1WriteTensorboardExperimentDataRequest,
|
|
30412
30638
|
): Request<{}>;
|
|
30413
30639
|
operations: OperationsResource;
|
|
30414
30640
|
runs: RunsResource;
|
|
@@ -30644,7 +30870,7 @@ declare namespace gapi.client {
|
|
|
30644
30870
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
30645
30871
|
uploadType?: string;
|
|
30646
30872
|
},
|
|
30647
|
-
body: GoogleCloudAiplatformV1Tensorboard
|
|
30873
|
+
body: GoogleCloudAiplatformV1Tensorboard,
|
|
30648
30874
|
): Request<GoogleLongrunningOperation>;
|
|
30649
30875
|
/** Deletes a Tensorboard. */
|
|
30650
30876
|
delete(request?: {
|
|
@@ -30797,7 +31023,7 @@ declare namespace gapi.client {
|
|
|
30797
31023
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
30798
31024
|
uploadType?: string;
|
|
30799
31025
|
},
|
|
30800
|
-
body: GoogleCloudAiplatformV1Tensorboard
|
|
31026
|
+
body: GoogleCloudAiplatformV1Tensorboard,
|
|
30801
31027
|
): Request<GoogleLongrunningOperation>;
|
|
30802
31028
|
/** Returns the storage size for a given TensorBoard instance. */
|
|
30803
31029
|
readSize(request?: {
|
|
@@ -31058,7 +31284,7 @@ declare namespace gapi.client {
|
|
|
31058
31284
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31059
31285
|
uploadType?: string;
|
|
31060
31286
|
},
|
|
31061
|
-
body: GoogleCloudAiplatformV1CancelTrainingPipelineRequest
|
|
31287
|
+
body: GoogleCloudAiplatformV1CancelTrainingPipelineRequest,
|
|
31062
31288
|
): Request<{}>;
|
|
31063
31289
|
/** Creates a TrainingPipeline. A created TrainingPipeline right away will be attempted to be run. */
|
|
31064
31290
|
create(request: {
|
|
@@ -31116,7 +31342,7 @@ declare namespace gapi.client {
|
|
|
31116
31342
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31117
31343
|
uploadType?: string;
|
|
31118
31344
|
},
|
|
31119
|
-
body: GoogleCloudAiplatformV1TrainingPipeline
|
|
31345
|
+
body: GoogleCloudAiplatformV1TrainingPipeline,
|
|
31120
31346
|
): Request<GoogleCloudAiplatformV1TrainingPipeline>;
|
|
31121
31347
|
/** Deletes a TrainingPipeline. */
|
|
31122
31348
|
delete(request?: {
|
|
@@ -31382,7 +31608,7 @@ declare namespace gapi.client {
|
|
|
31382
31608
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31383
31609
|
uploadType?: string;
|
|
31384
31610
|
},
|
|
31385
|
-
body: GoogleCloudAiplatformV1CancelTuningJobRequest
|
|
31611
|
+
body: GoogleCloudAiplatformV1CancelTuningJobRequest,
|
|
31386
31612
|
): Request<{}>;
|
|
31387
31613
|
/** Creates a TuningJob. A created TuningJob right away will be attempted to be run. */
|
|
31388
31614
|
create(request: {
|
|
@@ -31440,7 +31666,7 @@ declare namespace gapi.client {
|
|
|
31440
31666
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31441
31667
|
uploadType?: string;
|
|
31442
31668
|
},
|
|
31443
|
-
body: GoogleCloudAiplatformV1TuningJob
|
|
31669
|
+
body: GoogleCloudAiplatformV1TuningJob,
|
|
31444
31670
|
): Request<GoogleCloudAiplatformV1TuningJob>;
|
|
31445
31671
|
/** Gets a TuningJob. */
|
|
31446
31672
|
get(request?: {
|
|
@@ -31558,7 +31784,7 @@ declare namespace gapi.client {
|
|
|
31558
31784
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31559
31785
|
uploadType?: string;
|
|
31560
31786
|
},
|
|
31561
|
-
body: GoogleCloudAiplatformV1RebaseTunedModelRequest
|
|
31787
|
+
body: GoogleCloudAiplatformV1RebaseTunedModelRequest,
|
|
31562
31788
|
): Request<GoogleLongrunningOperation>;
|
|
31563
31789
|
operations: OperationsResource;
|
|
31564
31790
|
}
|
|
@@ -31619,7 +31845,7 @@ declare namespace gapi.client {
|
|
|
31619
31845
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31620
31846
|
uploadType?: string;
|
|
31621
31847
|
},
|
|
31622
|
-
body: GoogleCloudAiplatformV1AugmentPromptRequest
|
|
31848
|
+
body: GoogleCloudAiplatformV1AugmentPromptRequest,
|
|
31623
31849
|
): Request<GoogleCloudAiplatformV1AugmentPromptResponse>;
|
|
31624
31850
|
/** 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. */
|
|
31625
31851
|
corroborateContent(request: {
|
|
@@ -31677,7 +31903,7 @@ declare namespace gapi.client {
|
|
|
31677
31903
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31678
31904
|
uploadType?: string;
|
|
31679
31905
|
},
|
|
31680
|
-
body: GoogleCloudAiplatformV1CorroborateContentRequest
|
|
31906
|
+
body: GoogleCloudAiplatformV1CorroborateContentRequest,
|
|
31681
31907
|
): Request<GoogleCloudAiplatformV1CorroborateContentResponse>;
|
|
31682
31908
|
/** Evaluates instances based on a given metric. */
|
|
31683
31909
|
evaluateInstances(request: {
|
|
@@ -31735,7 +31961,7 @@ declare namespace gapi.client {
|
|
|
31735
31961
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31736
31962
|
uploadType?: string;
|
|
31737
31963
|
},
|
|
31738
|
-
body: GoogleCloudAiplatformV1EvaluateInstancesRequest
|
|
31964
|
+
body: GoogleCloudAiplatformV1EvaluateInstancesRequest,
|
|
31739
31965
|
): Request<GoogleCloudAiplatformV1EvaluateInstancesResponse>;
|
|
31740
31966
|
/** Gets information about a location. */
|
|
31741
31967
|
get(request?: {
|
|
@@ -31853,7 +32079,7 @@ declare namespace gapi.client {
|
|
|
31853
32079
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31854
32080
|
uploadType?: string;
|
|
31855
32081
|
},
|
|
31856
|
-
body: GoogleCloudAiplatformV1RetrieveContextsRequest
|
|
32082
|
+
body: GoogleCloudAiplatformV1RetrieveContextsRequest,
|
|
31857
32083
|
): Request<GoogleCloudAiplatformV1RetrieveContextsResponse>;
|
|
31858
32084
|
batchPredictionJobs: BatchPredictionJobsResource;
|
|
31859
32085
|
cachedContents: CachedContentsResource;
|
|
@@ -31973,7 +32199,7 @@ declare namespace gapi.client {
|
|
|
31973
32199
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31974
32200
|
uploadType?: string;
|
|
31975
32201
|
},
|
|
31976
|
-
body: GoogleCloudAiplatformV1CacheConfig
|
|
32202
|
+
body: GoogleCloudAiplatformV1CacheConfig,
|
|
31977
32203
|
): Request<GoogleLongrunningOperation>;
|
|
31978
32204
|
locations: LocationsResource;
|
|
31979
32205
|
}
|
|
@@ -32034,7 +32260,7 @@ declare namespace gapi.client {
|
|
|
32034
32260
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
32035
32261
|
uploadType?: string;
|
|
32036
32262
|
},
|
|
32037
|
-
body: GoogleCloudAiplatformV1ComputeTokensRequest
|
|
32263
|
+
body: GoogleCloudAiplatformV1ComputeTokensRequest,
|
|
32038
32264
|
): Request<GoogleCloudAiplatformV1ComputeTokensResponse>;
|
|
32039
32265
|
/** Perform a token counting. */
|
|
32040
32266
|
countTokens(request: {
|
|
@@ -32092,7 +32318,7 @@ declare namespace gapi.client {
|
|
|
32092
32318
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
32093
32319
|
uploadType?: string;
|
|
32094
32320
|
},
|
|
32095
|
-
body: GoogleCloudAiplatformV1CountTokensRequest
|
|
32321
|
+
body: GoogleCloudAiplatformV1CountTokensRequest,
|
|
32096
32322
|
): Request<GoogleCloudAiplatformV1CountTokensResponse>;
|
|
32097
32323
|
/** Generate content with multimodal inputs. */
|
|
32098
32324
|
generateContent(request: {
|
|
@@ -32150,7 +32376,7 @@ declare namespace gapi.client {
|
|
|
32150
32376
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
32151
32377
|
uploadType?: string;
|
|
32152
32378
|
},
|
|
32153
|
-
body: GoogleCloudAiplatformV1GenerateContentRequest
|
|
32379
|
+
body: GoogleCloudAiplatformV1GenerateContentRequest,
|
|
32154
32380
|
): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
|
|
32155
32381
|
/** Gets a Model Garden publisher model. */
|
|
32156
32382
|
get(request?: {
|
|
@@ -32187,6 +32413,64 @@ declare namespace gapi.client {
|
|
|
32187
32413
|
/** Optional. PublisherModel view specifying which fields to read. */
|
|
32188
32414
|
view?: string;
|
|
32189
32415
|
}): Request<GoogleCloudAiplatformV1PublisherModel>;
|
|
32416
|
+
/** Perform an online prediction. */
|
|
32417
|
+
predict(request: {
|
|
32418
|
+
/** V1 error format. */
|
|
32419
|
+
'$.xgafv'?: string;
|
|
32420
|
+
/** OAuth access token. */
|
|
32421
|
+
access_token?: string;
|
|
32422
|
+
/** Data format for response. */
|
|
32423
|
+
alt?: string;
|
|
32424
|
+
/** JSONP */
|
|
32425
|
+
callback?: string;
|
|
32426
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
32427
|
+
endpoint: string;
|
|
32428
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
32429
|
+
fields?: string;
|
|
32430
|
+
/** 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. */
|
|
32431
|
+
key?: string;
|
|
32432
|
+
/** OAuth 2.0 token for the current user. */
|
|
32433
|
+
oauth_token?: string;
|
|
32434
|
+
/** Returns response with indentations and line breaks. */
|
|
32435
|
+
prettyPrint?: boolean;
|
|
32436
|
+
/** 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. */
|
|
32437
|
+
quotaUser?: string;
|
|
32438
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
32439
|
+
upload_protocol?: string;
|
|
32440
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
32441
|
+
uploadType?: string;
|
|
32442
|
+
/** Request body */
|
|
32443
|
+
resource: GoogleCloudAiplatformV1PredictRequest;
|
|
32444
|
+
}): Request<GoogleCloudAiplatformV1PredictResponse>;
|
|
32445
|
+
predict(
|
|
32446
|
+
request: {
|
|
32447
|
+
/** V1 error format. */
|
|
32448
|
+
'$.xgafv'?: string;
|
|
32449
|
+
/** OAuth access token. */
|
|
32450
|
+
access_token?: string;
|
|
32451
|
+
/** Data format for response. */
|
|
32452
|
+
alt?: string;
|
|
32453
|
+
/** JSONP */
|
|
32454
|
+
callback?: string;
|
|
32455
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
32456
|
+
endpoint: string;
|
|
32457
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
32458
|
+
fields?: string;
|
|
32459
|
+
/** 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. */
|
|
32460
|
+
key?: string;
|
|
32461
|
+
/** OAuth 2.0 token for the current user. */
|
|
32462
|
+
oauth_token?: string;
|
|
32463
|
+
/** Returns response with indentations and line breaks. */
|
|
32464
|
+
prettyPrint?: boolean;
|
|
32465
|
+
/** 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. */
|
|
32466
|
+
quotaUser?: string;
|
|
32467
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
32468
|
+
upload_protocol?: string;
|
|
32469
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
32470
|
+
uploadType?: string;
|
|
32471
|
+
},
|
|
32472
|
+
body: GoogleCloudAiplatformV1PredictRequest,
|
|
32473
|
+
): Request<GoogleCloudAiplatformV1PredictResponse>;
|
|
32190
32474
|
/** Generate content with multimodal inputs with streaming support. */
|
|
32191
32475
|
streamGenerateContent(request: {
|
|
32192
32476
|
/** V1 error format. */
|
|
@@ -32243,7 +32527,7 @@ declare namespace gapi.client {
|
|
|
32243
32527
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
32244
32528
|
uploadType?: string;
|
|
32245
32529
|
},
|
|
32246
|
-
body: GoogleCloudAiplatformV1GenerateContentRequest
|
|
32530
|
+
body: GoogleCloudAiplatformV1GenerateContentRequest,
|
|
32247
32531
|
): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
|
|
32248
32532
|
}
|
|
32249
32533
|
interface PublishersResource {
|