@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20240618 → 0.0.20240703
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 +169 -20
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240703
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -547,7 +547,7 @@ declare namespace gapi.client {
|
|
|
547
547
|
/** Required. Repeated bleu instances. */
|
|
548
548
|
instances?: GoogleCloudAiplatformV1beta1BleuInstance[];
|
|
549
549
|
/** Required. Spec for bleu score metric. */
|
|
550
|
-
metricSpec?:
|
|
550
|
+
metricSpec?: GoogleCloudAiplatformV1beta1BleuSpec;
|
|
551
551
|
}
|
|
552
552
|
interface GoogleCloudAiplatformV1beta1BleuInstance {
|
|
553
553
|
/** Required. Output of the evaluated model. */
|
|
@@ -563,7 +563,10 @@ declare namespace gapi.client {
|
|
|
563
563
|
/** Output only. Bleu metric values. */
|
|
564
564
|
bleuMetricValues?: GoogleCloudAiplatformV1beta1BleuMetricValue[];
|
|
565
565
|
}
|
|
566
|
-
interface GoogleCloudAiplatformV1beta1BleuSpec {
|
|
566
|
+
interface GoogleCloudAiplatformV1beta1BleuSpec {
|
|
567
|
+
/** Optional. Whether to use_effective_order to compute bleu score. */
|
|
568
|
+
useEffectiveOrder?: boolean;
|
|
569
|
+
}
|
|
567
570
|
interface GoogleCloudAiplatformV1beta1Blob {
|
|
568
571
|
/** Required. Raw bytes. */
|
|
569
572
|
data?: string;
|
|
@@ -704,8 +707,12 @@ declare namespace gapi.client {
|
|
|
704
707
|
successfulForecastPointCount?: string;
|
|
705
708
|
}
|
|
706
709
|
interface GoogleCloudAiplatformV1beta1ComputeTokensRequest {
|
|
710
|
+
/** Required. Input content. */
|
|
711
|
+
contents?: GoogleCloudAiplatformV1beta1Content[];
|
|
707
712
|
/** Required. The instances that are the input to token computing API call. Schema is identical to the prediction schema of the text model, even for the non-text models, like chat models, or Codey models. */
|
|
708
713
|
instances?: any[];
|
|
714
|
+
/** Required. The name of the publisher model requested to serve the prediction. Format: projects/{project}/locations/{location}/publishers/*/models/* */
|
|
715
|
+
model?: string;
|
|
709
716
|
}
|
|
710
717
|
interface GoogleCloudAiplatformV1beta1ComputeTokensResponse {
|
|
711
718
|
/** Lists of tokens info from the input. A ComputeTokensRequest could have multiple instances with a prompt in each instance. We also need to return lists of tokens info for the request with multiple instances. */
|
|
@@ -2584,7 +2591,53 @@ declare namespace gapi.client {
|
|
|
2584
2591
|
/** Optional. Which version to use for evaluation. */
|
|
2585
2592
|
version?: number;
|
|
2586
2593
|
}
|
|
2594
|
+
interface GoogleCloudAiplatformV1beta1GroundingAttribution {
|
|
2595
|
+
/** Optional. Output only. Confidence score of the attribution. Ranges from 0 to 1. 1 is the most confident. */
|
|
2596
|
+
confidenceScore?: number;
|
|
2597
|
+
/** Optional. Attribution from context retrieved by the retrieval tools. */
|
|
2598
|
+
retrievedContext?: GoogleCloudAiplatformV1beta1GroundingAttributionRetrievedContext;
|
|
2599
|
+
/** Output only. Segment of the content this attribution belongs to. */
|
|
2600
|
+
segment?: GoogleCloudAiplatformV1beta1Segment;
|
|
2601
|
+
/** Optional. Attribution from the web. */
|
|
2602
|
+
web?: GoogleCloudAiplatformV1beta1GroundingAttributionWeb;
|
|
2603
|
+
}
|
|
2604
|
+
interface GoogleCloudAiplatformV1beta1GroundingAttributionRetrievedContext {
|
|
2605
|
+
/** Output only. Title of the attribution. */
|
|
2606
|
+
title?: string;
|
|
2607
|
+
/** Output only. URI reference of the attribution. */
|
|
2608
|
+
uri?: string;
|
|
2609
|
+
}
|
|
2610
|
+
interface GoogleCloudAiplatformV1beta1GroundingAttributionWeb {
|
|
2611
|
+
/** Output only. Title of the attribution. */
|
|
2612
|
+
title?: string;
|
|
2613
|
+
/** Output only. URI reference of the attribution. */
|
|
2614
|
+
uri?: string;
|
|
2615
|
+
}
|
|
2616
|
+
interface GoogleCloudAiplatformV1beta1GroundingChunk {
|
|
2617
|
+
/** Grounding chunk from context retrieved by the retrieval tools. */
|
|
2618
|
+
retrievedContext?: GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext;
|
|
2619
|
+
/** Grounding chunk from the web. */
|
|
2620
|
+
web?: GoogleCloudAiplatformV1beta1GroundingChunkWeb;
|
|
2621
|
+
}
|
|
2622
|
+
interface GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext {
|
|
2623
|
+
/** Title of the attribution. */
|
|
2624
|
+
title?: string;
|
|
2625
|
+
/** URI reference of the attribution. */
|
|
2626
|
+
uri?: string;
|
|
2627
|
+
}
|
|
2628
|
+
interface GoogleCloudAiplatformV1beta1GroundingChunkWeb {
|
|
2629
|
+
/** Title of the chunk. */
|
|
2630
|
+
title?: string;
|
|
2631
|
+
/** URI reference of the chunk. */
|
|
2632
|
+
uri?: string;
|
|
2633
|
+
}
|
|
2587
2634
|
interface GoogleCloudAiplatformV1beta1GroundingMetadata {
|
|
2635
|
+
/** Optional. List of grounding attributions. */
|
|
2636
|
+
groundingAttributions?: GoogleCloudAiplatformV1beta1GroundingAttribution[];
|
|
2637
|
+
/** List of supporting references retrieved from specified grounding source. */
|
|
2638
|
+
groundingChunks?: GoogleCloudAiplatformV1beta1GroundingChunk[];
|
|
2639
|
+
/** Optional. List of grounding support. */
|
|
2640
|
+
groundingSupports?: GoogleCloudAiplatformV1beta1GroundingSupport[];
|
|
2588
2641
|
/** Optional. Queries executed by the retrieval tools. */
|
|
2589
2642
|
retrievalQueries?: string[];
|
|
2590
2643
|
/** Optional. Google search entry for the following-up web searches. */
|
|
@@ -2592,6 +2645,14 @@ declare namespace gapi.client {
|
|
|
2592
2645
|
/** Optional. Web search queries for the following-up web search. */
|
|
2593
2646
|
webSearchQueries?: string[];
|
|
2594
2647
|
}
|
|
2648
|
+
interface GoogleCloudAiplatformV1beta1GroundingSupport {
|
|
2649
|
+
/** Confidence score of the support references. Ranges from 0 to 1. 1 is the most confident. This list must have the same size as the grounding_chunk_indices. */
|
|
2650
|
+
confidenceScores?: number[];
|
|
2651
|
+
/** A list of indices (into 'grounding_chunk') specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. */
|
|
2652
|
+
groundingChunkIndices?: number[];
|
|
2653
|
+
/** Segment of the content this support belongs to. */
|
|
2654
|
+
segment?: GoogleCloudAiplatformV1beta1Segment;
|
|
2655
|
+
}
|
|
2595
2656
|
interface GoogleCloudAiplatformV1beta1HyperparameterTuningJob {
|
|
2596
2657
|
/** Output only. Time when the HyperparameterTuningJob was created. */
|
|
2597
2658
|
createTime?: string;
|
|
@@ -3437,6 +3498,10 @@ declare namespace gapi.client {
|
|
|
3437
3498
|
originalModelInfo?: GoogleCloudAiplatformV1beta1ModelOriginalModelInfo;
|
|
3438
3499
|
/** The schemata that describe formats of the Model's predictions and explanations as given and returned via PredictionService.Predict and PredictionService.Explain. */
|
|
3439
3500
|
predictSchemata?: GoogleCloudAiplatformV1beta1PredictSchemata;
|
|
3501
|
+
/** Output only. Reserved for future use. */
|
|
3502
|
+
satisfiesPzi?: boolean;
|
|
3503
|
+
/** Output only. Reserved for future use. */
|
|
3504
|
+
satisfiesPzs?: boolean;
|
|
3440
3505
|
/** Output only. When this Model is deployed, its prediction resources are described by the `prediction_resources` field of the Endpoint.deployed_models object. Because not all Models support all resource configuration types, the configuration types this Model supports are listed here. If no configuration types are listed, the Model cannot be deployed to an Endpoint and does not support online predictions (PredictionService.Predict or PredictionService.Explain). Such a Model can serve predictions by using a BatchPredictionJob, if it has at least one entry each in supported_input_storage_formats and supported_output_storage_formats. */
|
|
3441
3506
|
supportedDeploymentResourcesTypes?: string[];
|
|
3442
3507
|
/** Output only. The formats in which this Model may be exported. If empty, this Model is not available for export. */
|
|
@@ -4833,6 +4898,8 @@ declare namespace gapi.client {
|
|
|
4833
4898
|
containerSpec?: GoogleCloudAiplatformV1beta1ModelContainerSpec;
|
|
4834
4899
|
/** A description of resources that are dedicated to the DeployedModel, and that need a higher degree of manual configuration. */
|
|
4835
4900
|
dedicatedResources?: GoogleCloudAiplatformV1beta1DedicatedResources;
|
|
4901
|
+
/** Optional. Metadata information about this deployment config. */
|
|
4902
|
+
deployMetadata?: GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeployDeployMetadata;
|
|
4836
4903
|
/** Optional. The name of the deploy task (e.g., "text to image generation"). */
|
|
4837
4904
|
deployTaskName?: string;
|
|
4838
4905
|
/** Optional. Large model reference. When this is set, model_artifact_spec is not needed. */
|
|
@@ -4846,6 +4913,10 @@ declare namespace gapi.client {
|
|
|
4846
4913
|
/** Required. The title of the regional resource reference. */
|
|
4847
4914
|
title?: string;
|
|
4848
4915
|
}
|
|
4916
|
+
interface GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeployDeployMetadata {
|
|
4917
|
+
/** Optional. Labels for the deployment. For managing deployment config like verifying, source of deployment config, etc. */
|
|
4918
|
+
labels?: {[P in string]: string};
|
|
4919
|
+
}
|
|
4849
4920
|
interface GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeployGke {
|
|
4850
4921
|
/** Optional. GKE deployment configuration in yaml format. */
|
|
4851
4922
|
gkeYamlConfigs?: string[];
|
|
@@ -5181,8 +5252,6 @@ declare namespace gapi.client {
|
|
|
5181
5252
|
similarityTopK?: number;
|
|
5182
5253
|
/** Optional. The query in text format to get relevant contexts. */
|
|
5183
5254
|
text?: string;
|
|
5184
|
-
/** Optional. Only return contexts with vector distance smaller than the threshold. */
|
|
5185
|
-
vectorDistanceThreshold?: number;
|
|
5186
5255
|
}
|
|
5187
5256
|
interface GoogleCloudAiplatformV1beta1RawPredictRequest {
|
|
5188
5257
|
/** The prediction input. Supports HTTP headers and arbitrary data payload. A DeployedModel may have an upper limit on the number of instances it supports per request. When this limit it is exceeded for an AutoML model, the RawPredict method returns an error. When this limit is exceeded for a custom-trained model, the behavior varies depending on the model. You can specify the schema for each instance in the predict_schemata.instance_schema_uri field when you create a Model. This schema applies when you deploy the `Model` as a `DeployedModel` to an Endpoint and use the `RawPredict` method. */
|
|
@@ -5349,7 +5418,7 @@ declare namespace gapi.client {
|
|
|
5349
5418
|
idleShutdownMessage?: string;
|
|
5350
5419
|
}
|
|
5351
5420
|
interface GoogleCloudAiplatformV1beta1ResourcePool {
|
|
5352
|
-
/** Optional. Optional spec to configure GKE autoscaling */
|
|
5421
|
+
/** Optional. Optional spec to configure GKE or Ray-on-Vertex autoscaling */
|
|
5353
5422
|
autoscalingSpec?: GoogleCloudAiplatformV1beta1ResourcePoolAutoscalingSpec;
|
|
5354
5423
|
/** Optional. Disk spec for the machine in this node pool. */
|
|
5355
5424
|
diskSpec?: GoogleCloudAiplatformV1beta1DiskSpec;
|
|
@@ -5365,7 +5434,7 @@ declare namespace gapi.client {
|
|
|
5365
5434
|
interface GoogleCloudAiplatformV1beta1ResourcePoolAutoscalingSpec {
|
|
5366
5435
|
/** Optional. max replicas in the node pool, must be ≥ replica_count and > min_replica_count or will throw error */
|
|
5367
5436
|
maxReplicaCount?: string;
|
|
5368
|
-
/** Optional. min replicas in the node pool, must be ≤ replica_count and < max_replica_count or will throw error */
|
|
5437
|
+
/** Optional. min replicas in the node pool, must be ≤ replica_count and < max_replica_count or will throw error. For autoscaling enabled Ray-on-Vertex, we allow min_replica_count of a resource_pool to be 0 to match the OSS Ray behavior(https://docs.ray.io/en/latest/cluster/vms/user-guides/configuring-autoscaling.html#cluster-config-parameters). As for Persistent Resource, the min_replica_count must be > 0, we added a corresponding validation inside CreatePersistentResourceRequestValidator.java. */
|
|
5369
5438
|
minReplicaCount?: string;
|
|
5370
5439
|
}
|
|
5371
5440
|
interface GoogleCloudAiplatformV1beta1ResourceRuntime {
|
|
@@ -5458,7 +5527,7 @@ declare namespace gapi.client {
|
|
|
5458
5527
|
codeInterpreterRuntimeConfig?: GoogleCloudAiplatformV1beta1RuntimeConfigCodeInterpreterRuntimeConfig;
|
|
5459
5528
|
/** Optional. Default parameters that will be set for all the execution of this extension. If specified, the parameter values can be overridden by values in [[ExecuteExtensionRequest.operation_params]] at request time. The struct should be in a form of map with param name as the key and actual param value as the value. E.g. If this operation requires a param "name" to be set to "abc". you can set this to something like {"name": "abc"}. */
|
|
5460
5529
|
defaultParams?: {[P in string]: any};
|
|
5461
|
-
/** Runtime configuration for
|
|
5530
|
+
/** Runtime configuration for Vertex AI Search extension. */
|
|
5462
5531
|
vertexAiSearchRuntimeConfig?: GoogleCloudAiplatformV1beta1RuntimeConfigVertexAISearchRuntimeConfig;
|
|
5463
5532
|
}
|
|
5464
5533
|
interface GoogleCloudAiplatformV1beta1RuntimeConfigCodeInterpreterRuntimeConfig {
|
|
@@ -7049,6 +7118,16 @@ declare namespace gapi.client {
|
|
|
7049
7118
|
/** The nearest neighbors of the query entity. */
|
|
7050
7119
|
nearestNeighbors?: GoogleCloudAiplatformV1beta1NearestNeighbors;
|
|
7051
7120
|
}
|
|
7121
|
+
interface GoogleCloudAiplatformV1beta1Segment {
|
|
7122
|
+
/** Output only. End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero. */
|
|
7123
|
+
endIndex?: number;
|
|
7124
|
+
/** Output only. The index of a Part object within its parent Content object. */
|
|
7125
|
+
partIndex?: number;
|
|
7126
|
+
/** Output only. Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero. */
|
|
7127
|
+
startIndex?: number;
|
|
7128
|
+
/** Output only. The text corresponding to the segment from the response. */
|
|
7129
|
+
text?: string;
|
|
7130
|
+
}
|
|
7052
7131
|
interface GoogleCloudAiplatformV1beta1ServiceAccountSpec {
|
|
7053
7132
|
/** Required. If true, custom user-managed service account is enforced to run any workloads (for example, Vertex Jobs) on the resource. Otherwise, uses the [Vertex AI Custom Code Service Agent](https://cloud.google.com/vertex-ai/docs/general/access-control#service-agents). */
|
|
7054
7133
|
enableCustomServiceAccount?: boolean;
|
|
@@ -7449,6 +7528,8 @@ declare namespace gapi.client {
|
|
|
7449
7528
|
learningRateMultiplier?: number;
|
|
7450
7529
|
}
|
|
7451
7530
|
interface GoogleCloudAiplatformV1beta1SupervisedTuningDatasetDistribution {
|
|
7531
|
+
/** Output only. Sum of a given population of values that are billable. */
|
|
7532
|
+
billableSum?: string;
|
|
7452
7533
|
/** Output only. Defines the histogram bucket. */
|
|
7453
7534
|
buckets?: GoogleCloudAiplatformV1beta1SupervisedTuningDatasetDistributionDatasetBucket[];
|
|
7454
7535
|
/** Output only. The maximum of the population values. */
|
|
@@ -7477,6 +7558,8 @@ declare namespace gapi.client {
|
|
|
7477
7558
|
interface GoogleCloudAiplatformV1beta1SupervisedTuningDataStats {
|
|
7478
7559
|
/** Output only. Number of billable characters in the tuning dataset. */
|
|
7479
7560
|
totalBillableCharacterCount?: string;
|
|
7561
|
+
/** Output only. Number of billable tokens in the tuning dataset. */
|
|
7562
|
+
totalBillableTokenCount?: string;
|
|
7480
7563
|
/** Output only. Number of tuning characters in the tuning dataset. */
|
|
7481
7564
|
totalTuningCharacterCount?: string;
|
|
7482
7565
|
/** Output only. Number of examples in the tuning dataset. */
|
|
@@ -7556,6 +7639,10 @@ declare namespace gapi.client {
|
|
|
7556
7639
|
name?: string;
|
|
7557
7640
|
/** Output only. The number of Runs stored in this Tensorboard. */
|
|
7558
7641
|
runCount?: number;
|
|
7642
|
+
/** Output only. Reserved for future use. */
|
|
7643
|
+
satisfiesPzi?: boolean;
|
|
7644
|
+
/** Output only. Reserved for future use. */
|
|
7645
|
+
satisfiesPzs?: boolean;
|
|
7559
7646
|
/** Output only. Timestamp when this Tensorboard was last updated. */
|
|
7560
7647
|
updateTime?: string;
|
|
7561
7648
|
}
|
|
@@ -7678,6 +7765,8 @@ declare namespace gapi.client {
|
|
|
7678
7765
|
validationFraction?: number;
|
|
7679
7766
|
}
|
|
7680
7767
|
interface GoogleCloudAiplatformV1beta1TokensInfo {
|
|
7768
|
+
/** Optional. Optional fields for the role from the corresponding Content. */
|
|
7769
|
+
role?: string;
|
|
7681
7770
|
/** A list of token ids from the input. */
|
|
7682
7771
|
tokenIds?: string[];
|
|
7683
7772
|
/** A list of tokens from the input. */
|
|
@@ -7911,8 +8000,6 @@ declare namespace gapi.client {
|
|
|
7911
8000
|
labels?: {[P in string]: string};
|
|
7912
8001
|
/** Output only. Identifier. Resource name of a TuningJob. Format: `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` */
|
|
7913
8002
|
name?: string;
|
|
7914
|
-
/** Output only. The resource name of the PipelineJob associated with the TuningJob. Format: `projects/{project}/locations/{location}/pipelineJobs/{pipeline_job}`. */
|
|
7915
|
-
pipelineJob?: string;
|
|
7916
8003
|
/** Output only. Time when the TuningJob for the first time entered the `JOB_STATE_RUNNING` state. */
|
|
7917
8004
|
startTime?: string;
|
|
7918
8005
|
/** Output only. The detailed state of the job. */
|
|
@@ -11610,6 +11697,68 @@ declare namespace gapi.client {
|
|
|
11610
11697
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11611
11698
|
uploadType?: string;
|
|
11612
11699
|
}): Request<GoogleCloudAiplatformV1beta1ListDeploymentResourcePoolsResponse>;
|
|
11700
|
+
/** Update a DeploymentResourcePool. */
|
|
11701
|
+
patch(request: {
|
|
11702
|
+
/** V1 error format. */
|
|
11703
|
+
'$.xgafv'?: string;
|
|
11704
|
+
/** OAuth access token. */
|
|
11705
|
+
access_token?: string;
|
|
11706
|
+
/** Data format for response. */
|
|
11707
|
+
alt?: string;
|
|
11708
|
+
/** JSONP */
|
|
11709
|
+
callback?: string;
|
|
11710
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11711
|
+
fields?: string;
|
|
11712
|
+
/** 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. */
|
|
11713
|
+
key?: string;
|
|
11714
|
+
/** Immutable. The resource name of the DeploymentResourcePool. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
|
|
11715
|
+
name: string;
|
|
11716
|
+
/** OAuth 2.0 token for the current user. */
|
|
11717
|
+
oauth_token?: string;
|
|
11718
|
+
/** Returns response with indentations and line breaks. */
|
|
11719
|
+
prettyPrint?: boolean;
|
|
11720
|
+
/** 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. */
|
|
11721
|
+
quotaUser?: string;
|
|
11722
|
+
/** Required. The list of fields to update. */
|
|
11723
|
+
updateMask?: string;
|
|
11724
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11725
|
+
upload_protocol?: string;
|
|
11726
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11727
|
+
uploadType?: string;
|
|
11728
|
+
/** Request body */
|
|
11729
|
+
resource: GoogleCloudAiplatformV1beta1DeploymentResourcePool;
|
|
11730
|
+
}): Request<GoogleLongrunningOperation>;
|
|
11731
|
+
patch(
|
|
11732
|
+
request: {
|
|
11733
|
+
/** V1 error format. */
|
|
11734
|
+
'$.xgafv'?: string;
|
|
11735
|
+
/** OAuth access token. */
|
|
11736
|
+
access_token?: string;
|
|
11737
|
+
/** Data format for response. */
|
|
11738
|
+
alt?: string;
|
|
11739
|
+
/** JSONP */
|
|
11740
|
+
callback?: string;
|
|
11741
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11742
|
+
fields?: string;
|
|
11743
|
+
/** 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. */
|
|
11744
|
+
key?: string;
|
|
11745
|
+
/** Immutable. The resource name of the DeploymentResourcePool. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
|
|
11746
|
+
name: string;
|
|
11747
|
+
/** OAuth 2.0 token for the current user. */
|
|
11748
|
+
oauth_token?: string;
|
|
11749
|
+
/** Returns response with indentations and line breaks. */
|
|
11750
|
+
prettyPrint?: boolean;
|
|
11751
|
+
/** 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. */
|
|
11752
|
+
quotaUser?: string;
|
|
11753
|
+
/** Required. The list of fields to update. */
|
|
11754
|
+
updateMask?: string;
|
|
11755
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11756
|
+
upload_protocol?: string;
|
|
11757
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11758
|
+
uploadType?: string;
|
|
11759
|
+
},
|
|
11760
|
+
body: GoogleCloudAiplatformV1beta1DeploymentResourcePool
|
|
11761
|
+
): Request<GoogleLongrunningOperation>;
|
|
11613
11762
|
/** List DeployedModels that have been deployed on this DeploymentResourcePool. */
|
|
11614
11763
|
queryDeployedModels(request?: {
|
|
11615
11764
|
/** V1 error format. */
|
|
@@ -14299,7 +14448,7 @@ declare namespace gapi.client {
|
|
|
14299
14448
|
prettyPrint?: boolean;
|
|
14300
14449
|
/** 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. */
|
|
14301
14450
|
quotaUser?: string;
|
|
14302
|
-
/** Field mask is used to specify the fields to be overwritten in the Features 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: * `description` * `labels` * `disable_monitoring` (Not supported for
|
|
14451
|
+
/** Field mask is used to specify the fields to be overwritten in the Features 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: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore) */
|
|
14303
14452
|
updateMask?: string;
|
|
14304
14453
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14305
14454
|
upload_protocol?: string;
|
|
@@ -14330,7 +14479,7 @@ declare namespace gapi.client {
|
|
|
14330
14479
|
prettyPrint?: boolean;
|
|
14331
14480
|
/** 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. */
|
|
14332
14481
|
quotaUser?: string;
|
|
14333
|
-
/** Field mask is used to specify the fields to be overwritten in the Features 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: * `description` * `labels` * `disable_monitoring` (Not supported for
|
|
14482
|
+
/** Field mask is used to specify the fields to be overwritten in the Features 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: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore) */
|
|
14334
14483
|
updateMask?: string;
|
|
14335
14484
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14336
14485
|
upload_protocol?: string;
|
|
@@ -14635,7 +14784,7 @@ declare namespace gapi.client {
|
|
|
14635
14784
|
prettyPrint?: boolean;
|
|
14636
14785
|
/** 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. */
|
|
14637
14786
|
quotaUser?: string;
|
|
14638
|
-
/** 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` */
|
|
14787
|
+
/** 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` */
|
|
14639
14788
|
updateMask?: string;
|
|
14640
14789
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14641
14790
|
upload_protocol?: string;
|
|
@@ -14666,7 +14815,7 @@ declare namespace gapi.client {
|
|
|
14666
14815
|
prettyPrint?: boolean;
|
|
14667
14816
|
/** 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. */
|
|
14668
14817
|
quotaUser?: string;
|
|
14669
|
-
/** 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` */
|
|
14818
|
+
/** 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` */
|
|
14670
14819
|
updateMask?: string;
|
|
14671
14820
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14672
14821
|
upload_protocol?: string;
|
|
@@ -15125,7 +15274,7 @@ declare namespace gapi.client {
|
|
|
15125
15274
|
prettyPrint?: boolean;
|
|
15126
15275
|
/** 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. */
|
|
15127
15276
|
quotaUser?: string;
|
|
15128
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureView 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` * `
|
|
15277
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureView 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` * `service_agent_type` * `big_query_source` * `big_query_source.uri` * `big_query_source.entity_id_columns` * `feature_registry_source` * `feature_registry_source.feature_groups` * `sync_config` * `sync_config.cron` */
|
|
15129
15278
|
updateMask?: string;
|
|
15130
15279
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15131
15280
|
upload_protocol?: string;
|
|
@@ -15156,7 +15305,7 @@ declare namespace gapi.client {
|
|
|
15156
15305
|
prettyPrint?: boolean;
|
|
15157
15306
|
/** 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. */
|
|
15158
15307
|
quotaUser?: string;
|
|
15159
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureView 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` * `
|
|
15308
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureView 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` * `service_agent_type` * `big_query_source` * `big_query_source.uri` * `big_query_source.entity_id_columns` * `feature_registry_source` * `feature_registry_source.feature_groups` * `sync_config` * `sync_config.cron` */
|
|
15160
15309
|
updateMask?: string;
|
|
15161
15310
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15162
15311
|
upload_protocol?: string;
|
|
@@ -15724,7 +15873,7 @@ declare namespace gapi.client {
|
|
|
15724
15873
|
prettyPrint?: boolean;
|
|
15725
15874
|
/** 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. */
|
|
15726
15875
|
quotaUser?: string;
|
|
15727
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore 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: * `
|
|
15876
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore 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` * `bigtable` * `bigtable.auto_scaling` * `bigtable.enable_multi_region_replica` */
|
|
15728
15877
|
updateMask?: string;
|
|
15729
15878
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15730
15879
|
upload_protocol?: string;
|
|
@@ -15755,7 +15904,7 @@ declare namespace gapi.client {
|
|
|
15755
15904
|
prettyPrint?: boolean;
|
|
15756
15905
|
/** 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. */
|
|
15757
15906
|
quotaUser?: string;
|
|
15758
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore 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: * `
|
|
15907
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore 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` * `bigtable` * `bigtable.auto_scaling` * `bigtable.enable_multi_region_replica` */
|
|
15759
15908
|
updateMask?: string;
|
|
15760
15909
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15761
15910
|
upload_protocol?: string;
|
|
@@ -16207,7 +16356,7 @@ declare namespace gapi.client {
|
|
|
16207
16356
|
prettyPrint?: boolean;
|
|
16208
16357
|
/** 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. */
|
|
16209
16358
|
quotaUser?: string;
|
|
16210
|
-
/** Field mask is used to specify the fields to be overwritten in the Features 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: * `description` * `labels` * `disable_monitoring` (Not supported for
|
|
16359
|
+
/** Field mask is used to specify the fields to be overwritten in the Features 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: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore) */
|
|
16211
16360
|
updateMask?: string;
|
|
16212
16361
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16213
16362
|
upload_protocol?: string;
|
|
@@ -16238,7 +16387,7 @@ declare namespace gapi.client {
|
|
|
16238
16387
|
prettyPrint?: boolean;
|
|
16239
16388
|
/** 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. */
|
|
16240
16389
|
quotaUser?: string;
|
|
16241
|
-
/** Field mask is used to specify the fields to be overwritten in the Features 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: * `description` * `labels` * `disable_monitoring` (Not supported for
|
|
16390
|
+
/** Field mask is used to specify the fields to be overwritten in the Features 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: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore) */
|
|
16242
16391
|
updateMask?: string;
|
|
16243
16392
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16244
16393
|
upload_protocol?: string;
|