@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20241117 → 0.0.20241203
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 +496 -58
- 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: 20241203
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1336,6 +1336,8 @@ declare namespace gapi.client {
|
|
|
1336
1336
|
maxReplicaCount?: number;
|
|
1337
1337
|
/** Required. Immutable. The minimum number of machine replicas this DeployedModel will be always deployed on. This value must be greater than or equal to 1. If traffic against the DeployedModel increases, it may dynamically be deployed onto more replicas, and as traffic decreases, some of these extra replicas may be freed. */
|
|
1338
1338
|
minReplicaCount?: number;
|
|
1339
|
+
/** Optional. Number of required available replicas for the deployment to succeed. This field is only needed when partial model deployment/mutation is desired. If set, the model deploy/mutate operation will succeed once available_replica_count reaches required_replica_count, and the rest of the replicas will be retried. If not set, the default required_replica_count will be min_replica_count. */
|
|
1340
|
+
requiredReplicaCount?: number;
|
|
1339
1341
|
/** Optional. If true, schedule the deployment workload on [spot VMs](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms). */
|
|
1340
1342
|
spot?: boolean;
|
|
1341
1343
|
}
|
|
@@ -1466,6 +1468,8 @@ declare namespace gapi.client {
|
|
|
1466
1468
|
serviceAccount?: string;
|
|
1467
1469
|
/** The resource name of the shared DeploymentResourcePool to deploy on. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
|
|
1468
1470
|
sharedResources?: string;
|
|
1471
|
+
/** Output only. Runtime status of the deployed model. */
|
|
1472
|
+
status?: GoogleCloudAiplatformV1beta1DeployedModelStatus;
|
|
1469
1473
|
/** System labels to apply to Model Garden deployments. System labels are managed by Google for internal use only. */
|
|
1470
1474
|
systemLabels?: {[P in string]: string};
|
|
1471
1475
|
}
|
|
@@ -1475,6 +1479,14 @@ declare namespace gapi.client {
|
|
|
1475
1479
|
/** Immutable. A resource name of an Endpoint. */
|
|
1476
1480
|
endpoint?: string;
|
|
1477
1481
|
}
|
|
1482
|
+
interface GoogleCloudAiplatformV1beta1DeployedModelStatus {
|
|
1483
|
+
/** Output only. The number of available replicas of the deployed model. */
|
|
1484
|
+
availableReplicaCount?: number;
|
|
1485
|
+
/** Output only. The time at which the status was last updated. */
|
|
1486
|
+
lastUpdateTime?: string;
|
|
1487
|
+
/** Output only. The latest deployed model's status message (if any). */
|
|
1488
|
+
message?: string;
|
|
1489
|
+
}
|
|
1478
1490
|
interface GoogleCloudAiplatformV1beta1DeployIndexOperationMetadata {
|
|
1479
1491
|
/** The unique index id specified by user */
|
|
1480
1492
|
deployedIndexId?: string;
|
|
@@ -1521,6 +1533,20 @@ declare namespace gapi.client {
|
|
|
1521
1533
|
/** The DeployedModel that had been deployed in the Endpoint. */
|
|
1522
1534
|
deployedModel?: GoogleCloudAiplatformV1beta1DeployedModel;
|
|
1523
1535
|
}
|
|
1536
|
+
interface GoogleCloudAiplatformV1beta1DeployPublisherModelRequest {
|
|
1537
|
+
/** Optional. Whether the user accepts the End User License Agreement (EULA) for the model. */
|
|
1538
|
+
acceptEula?: boolean;
|
|
1539
|
+
/** Optional. The dedicated resources to use for the endpoint. If not set, the default resources will be used. */
|
|
1540
|
+
dedicatedResources?: GoogleCloudAiplatformV1beta1DedicatedResources;
|
|
1541
|
+
/** Optional. The user-specified display name of the endpoint. If not set, a default name will be used. */
|
|
1542
|
+
endpointDisplayName?: string;
|
|
1543
|
+
/** Optional. The Hugging Face read access token used to access the model artifacts of gated models. */
|
|
1544
|
+
huggingFaceAccessToken?: string;
|
|
1545
|
+
/** Required. The name of the PublisherModel resource. Format: `publishers/{publisher}/models/{publisher_model}@{version_id}`, or `publishers/hf-{hugging-face-author}/models/{hugging-face-model-name}@001` */
|
|
1546
|
+
model?: string;
|
|
1547
|
+
/** Optional. The user-specified display name of the uploaded model. If not set, a default name will be used. */
|
|
1548
|
+
modelDisplayName?: string;
|
|
1549
|
+
}
|
|
1524
1550
|
interface GoogleCloudAiplatformV1beta1DeploySolverOperationMetadata {
|
|
1525
1551
|
/** The generic operation information. */
|
|
1526
1552
|
genericMetadata?: GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
@@ -1577,9 +1603,9 @@ declare namespace gapi.client {
|
|
|
1577
1603
|
baseTeacherModel?: string;
|
|
1578
1604
|
/** Optional. Hyperparameters for Distillation. */
|
|
1579
1605
|
hyperParameters?: GoogleCloudAiplatformV1beta1DistillationHyperParameters;
|
|
1580
|
-
/** Required. A path in a Cloud Storage bucket, which will be treated as the root output directory of the distillation pipeline. It is used by the system to generate the paths of output artifacts. */
|
|
1606
|
+
/** Required. Deprecated. A path in a Cloud Storage bucket, which will be treated as the root output directory of the distillation pipeline. It is used by the system to generate the paths of output artifacts. */
|
|
1581
1607
|
pipelineRootDirectory?: string;
|
|
1582
|
-
/** The student model that is being tuned, e.g., "google/gemma-2b-1.1-it". */
|
|
1608
|
+
/** The student model that is being tuned, e.g., "google/gemma-2b-1.1-it". Deprecated. Use base_model instead. */
|
|
1583
1609
|
studentModel?: string;
|
|
1584
1610
|
/** Required. Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file. */
|
|
1585
1611
|
trainingDatasetUri?: string;
|
|
@@ -1767,6 +1793,18 @@ declare namespace gapi.client {
|
|
|
1767
1793
|
toolParameterKeyMatchInput?: GoogleCloudAiplatformV1beta1ToolParameterKeyMatchInput;
|
|
1768
1794
|
/** Input for tool parameter key value match metric. */
|
|
1769
1795
|
toolParameterKvMatchInput?: GoogleCloudAiplatformV1beta1ToolParameterKVMatchInput;
|
|
1796
|
+
/** Input for trajectory match any order metric. */
|
|
1797
|
+
trajectoryAnyOrderMatchInput?: GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchInput;
|
|
1798
|
+
/** Input for trajectory exact match metric. */
|
|
1799
|
+
trajectoryExactMatchInput?: GoogleCloudAiplatformV1beta1TrajectoryExactMatchInput;
|
|
1800
|
+
/** Input for trajectory in order match metric. */
|
|
1801
|
+
trajectoryInOrderMatchInput?: GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchInput;
|
|
1802
|
+
/** Input for trajectory precision metric. */
|
|
1803
|
+
trajectoryPrecisionInput?: GoogleCloudAiplatformV1beta1TrajectoryPrecisionInput;
|
|
1804
|
+
/** Input for trajectory recall metric. */
|
|
1805
|
+
trajectoryRecallInput?: GoogleCloudAiplatformV1beta1TrajectoryRecallInput;
|
|
1806
|
+
/** Input for trajectory single tool use metric. */
|
|
1807
|
+
trajectorySingleToolUseInput?: GoogleCloudAiplatformV1beta1TrajectorySingleToolUseInput;
|
|
1770
1808
|
}
|
|
1771
1809
|
interface GoogleCloudAiplatformV1beta1EvaluateInstancesResponse {
|
|
1772
1810
|
/** Results for bleu metric. */
|
|
@@ -1819,6 +1857,18 @@ declare namespace gapi.client {
|
|
|
1819
1857
|
toolParameterKeyMatchResults?: GoogleCloudAiplatformV1beta1ToolParameterKeyMatchResults;
|
|
1820
1858
|
/** Results for tool parameter key value match metric. */
|
|
1821
1859
|
toolParameterKvMatchResults?: GoogleCloudAiplatformV1beta1ToolParameterKVMatchResults;
|
|
1860
|
+
/** Result for trajectory any order match metric. */
|
|
1861
|
+
trajectoryAnyOrderMatchResults?: GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchResults;
|
|
1862
|
+
/** Result for trajectory exact match metric. */
|
|
1863
|
+
trajectoryExactMatchResults?: GoogleCloudAiplatformV1beta1TrajectoryExactMatchResults;
|
|
1864
|
+
/** Result for trajectory in order match metric. */
|
|
1865
|
+
trajectoryInOrderMatchResults?: GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchResults;
|
|
1866
|
+
/** Result for trajectory precision metric. */
|
|
1867
|
+
trajectoryPrecisionResults?: GoogleCloudAiplatformV1beta1TrajectoryPrecisionResults;
|
|
1868
|
+
/** Results for trajectory recall metric. */
|
|
1869
|
+
trajectoryRecallResults?: GoogleCloudAiplatformV1beta1TrajectoryRecallResults;
|
|
1870
|
+
/** Results for trajectory single tool use metric. */
|
|
1871
|
+
trajectorySingleToolUseResults?: GoogleCloudAiplatformV1beta1TrajectorySingleToolUseResults;
|
|
1822
1872
|
}
|
|
1823
1873
|
interface GoogleCloudAiplatformV1beta1Event {
|
|
1824
1874
|
/** Required. The relative resource name of the Artifact in the Event. */
|
|
@@ -2198,6 +2248,10 @@ declare namespace gapi.client {
|
|
|
2198
2248
|
privateServiceConnectConfig?: GoogleCloudAiplatformV1beta1ExtensionPrivateServiceConnectConfig;
|
|
2199
2249
|
/** Optional. Runtime config controlling the runtime behavior of this Extension. */
|
|
2200
2250
|
runtimeConfig?: GoogleCloudAiplatformV1beta1RuntimeConfig;
|
|
2251
|
+
/** Output only. Reserved for future use. */
|
|
2252
|
+
satisfiesPzi?: boolean;
|
|
2253
|
+
/** Output only. Reserved for future use. */
|
|
2254
|
+
satisfiesPzs?: boolean;
|
|
2201
2255
|
/** Optional. Examples to illustrate the usage of the extension as a tool. */
|
|
2202
2256
|
toolUseExamples?: GoogleCloudAiplatformV1beta1ToolUseExample[];
|
|
2203
2257
|
/** Output only. Timestamp when this Extension was most recently updated. */
|
|
@@ -2232,6 +2286,8 @@ declare namespace gapi.client {
|
|
|
2232
2286
|
interface GoogleCloudAiplatformV1beta1Fact {
|
|
2233
2287
|
/** Query that is used to retrieve this fact. */
|
|
2234
2288
|
query?: string;
|
|
2289
|
+
/** If present, according to the underlying Vector DB and the selected metric type, the score can be either the distance or the similarity between the query and the fact and its range depends on the metric type. For example, if the metric type is COSINE_DISTANCE, it represents the distance between the query and the fact. The larger the distance, the less relevant the fact is to the query. The range is [0, 2], while 0 means the most relevant and 2 means the least relevant. */
|
|
2290
|
+
score?: number;
|
|
2235
2291
|
/** If present, the summary/snippet of the fact. */
|
|
2236
2292
|
summary?: string;
|
|
2237
2293
|
/** If present, it refers to the title of this fact. */
|
|
@@ -2288,6 +2344,10 @@ declare namespace gapi.client {
|
|
|
2288
2344
|
labels?: {[P in string]: string};
|
|
2289
2345
|
/** Identifier. Name of the FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
|
|
2290
2346
|
name?: string;
|
|
2347
|
+
/** Output only. A Service Account unique to this FeatureGroup. The role bigquery.dataViewer should be granted to this service account to allow Vertex AI Feature Store to access source data while running jobs under this FeatureGroup. */
|
|
2348
|
+
serviceAccountEmail?: string;
|
|
2349
|
+
/** Optional. Service agent type used during jobs under a FeatureGroup. By default, the Vertex AI Service Agent is used. When using an IAM Policy to isolate this FeatureGroup within a project, a separate service account should be provisioned by setting this field to `SERVICE_AGENT_TYPE_FEATURE_GROUP`. This will generate a separate service account to access the BigQuery source table. */
|
|
2350
|
+
serviceAgentType?: string;
|
|
2291
2351
|
/** Output only. Timestamp when this FeatureGroup was last updated. */
|
|
2292
2352
|
updateTime?: string;
|
|
2293
2353
|
}
|
|
@@ -2993,16 +3053,22 @@ declare namespace gapi.client {
|
|
|
2993
3053
|
responseLogprobs?: boolean;
|
|
2994
3054
|
/** Optional. Output response mimetype of the generated candidate text. Supported mimetype: - `text/plain`: (default) Text output. - `application/json`: JSON response in the candidates. The model needs to be prompted to output the appropriate response type, otherwise the behavior is undefined. This is a preview feature. */
|
|
2995
3055
|
responseMimeType?: string;
|
|
3056
|
+
/** Optional. The modalities of the response. */
|
|
3057
|
+
responseModalities?: string[];
|
|
2996
3058
|
/** Optional. The `Schema` object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema). If set, a compatible response_mime_type must also be set. Compatible mimetypes: `application/json`: Schema for JSON response. */
|
|
2997
3059
|
responseSchema?: GoogleCloudAiplatformV1beta1Schema;
|
|
2998
3060
|
/** Optional. Routing configuration. */
|
|
2999
3061
|
routingConfig?: GoogleCloudAiplatformV1beta1GenerationConfigRoutingConfig;
|
|
3000
3062
|
/** Optional. Seed. */
|
|
3001
3063
|
seed?: number;
|
|
3064
|
+
/** Optional. The speech generation config. */
|
|
3065
|
+
speechConfig?: GoogleCloudAiplatformV1beta1SpeechConfig;
|
|
3002
3066
|
/** Optional. Stop sequences. */
|
|
3003
3067
|
stopSequences?: string[];
|
|
3004
3068
|
/** Optional. Controls the randomness of predictions. */
|
|
3005
3069
|
temperature?: number;
|
|
3070
|
+
/** Optional. If specified, the token resolution specified will be used. */
|
|
3071
|
+
tokenResolution?: string;
|
|
3006
3072
|
/** Optional. If specified, top-k sampling will be used. */
|
|
3007
3073
|
topK?: number;
|
|
3008
3074
|
/** Optional. If specified, nucleus sampling will be used. */
|
|
@@ -3249,8 +3315,10 @@ declare namespace gapi.client {
|
|
|
3249
3315
|
partialFailureGcsSink?: GoogleCloudAiplatformV1beta1GcsDestination;
|
|
3250
3316
|
/** Specifies the size and overlap of chunks after importing RagFiles. */
|
|
3251
3317
|
ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
|
|
3252
|
-
/** Specifies the parsing config for RagFiles. */
|
|
3318
|
+
/** Optional. Specifies the parsing config for RagFiles. RAG will use the default parser if this field is not set. */
|
|
3253
3319
|
ragFileParsingConfig?: GoogleCloudAiplatformV1beta1RagFileParsingConfig;
|
|
3320
|
+
/** Specifies the transformation config for RagFiles. */
|
|
3321
|
+
ragFileTransformationConfig?: GoogleCloudAiplatformV1beta1RagFileTransformationConfig;
|
|
3254
3322
|
/** SharePoint sources. */
|
|
3255
3323
|
sharePointSources?: GoogleCloudAiplatformV1beta1SharePointSources;
|
|
3256
3324
|
/** Slack channels with their corresponding access tokens. */
|
|
@@ -5018,12 +5086,16 @@ declare namespace gapi.client {
|
|
|
5018
5086
|
interface GoogleCloudAiplatformV1beta1NotebookRuntime {
|
|
5019
5087
|
/** Output only. Timestamp when this NotebookRuntime was created. */
|
|
5020
5088
|
createTime?: string;
|
|
5089
|
+
/** Output only. The specification of persistent disk attached to the notebook runtime as data disk storage. */
|
|
5090
|
+
dataPersistentDiskSpec?: GoogleCloudAiplatformV1beta1PersistentDiskSpec;
|
|
5021
5091
|
/** The description of the NotebookRuntime. */
|
|
5022
5092
|
description?: string;
|
|
5023
5093
|
/** Required. The display name of the NotebookRuntime. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
|
|
5024
5094
|
displayName?: string;
|
|
5025
5095
|
/** Output only. Customer-managed encryption key spec for the notebook runtime. */
|
|
5026
5096
|
encryptionSpec?: GoogleCloudAiplatformV1beta1EncryptionSpec;
|
|
5097
|
+
/** Output only. EUC configuration of the notebook runtime. */
|
|
5098
|
+
eucConfig?: GoogleCloudAiplatformV1beta1NotebookEucConfig;
|
|
5027
5099
|
/** Output only. Timestamp when this NotebookRuntime will be expired: 1. System Predefined NotebookRuntime: 24 hours after creation. After expiration, system predifined runtime will be deleted. 2. User created NotebookRuntime: 6 months after last upgrade. After expiration, user created runtime will be stopped and allowed for upgrade. */
|
|
5028
5100
|
expirationTime?: string;
|
|
5029
5101
|
/** Output only. The health state of the NotebookRuntime. */
|
|
@@ -5034,8 +5106,12 @@ declare namespace gapi.client {
|
|
|
5034
5106
|
isUpgradable?: boolean;
|
|
5035
5107
|
/** The labels with user-defined metadata to organize your NotebookRuntime. 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. No more than 64 user labels can be associated with one NotebookRuntime (System labels are excluded). See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. Following system labels exist for NotebookRuntime: * "aiplatform.googleapis.com/notebook_runtime_gce_instance_id": output only, its value is the Compute Engine instance id. * "aiplatform.googleapis.com/colab_enterprise_entry_service": its value is either "bigquery" or "vertex"; if absent, it should be "vertex". This is to describe the entry service, either BigQuery or Vertex. */
|
|
5036
5108
|
labels?: {[P in string]: string};
|
|
5109
|
+
/** Output only. The specification of a single machine used by the notebook runtime. */
|
|
5110
|
+
machineSpec?: GoogleCloudAiplatformV1beta1MachineSpec;
|
|
5037
5111
|
/** Output only. The resource name of the NotebookRuntime. */
|
|
5038
5112
|
name?: string;
|
|
5113
|
+
/** Output only. Network spec of the notebook runtime. */
|
|
5114
|
+
networkSpec?: GoogleCloudAiplatformV1beta1NetworkSpec;
|
|
5039
5115
|
/** Optional. The Compute Engine tags to add to runtime (see [Tagging instances](https://cloud.google.com/vpc/docs/add-remove-network-tags)). */
|
|
5040
5116
|
networkTags?: string[];
|
|
5041
5117
|
/** Output only. The pointer to NotebookRuntimeTemplate this NotebookRuntime is created from. */
|
|
@@ -5052,8 +5128,10 @@ declare namespace gapi.client {
|
|
|
5052
5128
|
satisfiesPzi?: boolean;
|
|
5053
5129
|
/** Output only. Reserved for future use. */
|
|
5054
5130
|
satisfiesPzs?: boolean;
|
|
5055
|
-
/** Output only. The service account that the NotebookRuntime workload runs as. */
|
|
5131
|
+
/** Output only. Deprecated: This field is no longer used and the "Vertex AI Notebook Service Account" (service-PROJECT_NUMBER@gcp-sa-aiplatform-vm.iam.gserviceaccount.com) is used for the runtime workload identity. See https://cloud.google.com/iam/docs/service-agents#vertex-ai-notebook-service-account for more details. The service account that the NotebookRuntime workload runs as. */
|
|
5056
5132
|
serviceAccount?: string;
|
|
5133
|
+
/** Output only. Runtime Shielded VM spec. */
|
|
5134
|
+
shieldedVmConfig?: GoogleCloudAiplatformV1beta1ShieldedVmConfig;
|
|
5057
5135
|
/** Output only. Timestamp when this NotebookRuntime was most recently updated. */
|
|
5058
5136
|
updateTime?: string;
|
|
5059
5137
|
/** Output only. The VM os image version of NotebookRuntime. */
|
|
@@ -5076,7 +5154,7 @@ declare namespace gapi.client {
|
|
|
5076
5154
|
eucConfig?: GoogleCloudAiplatformV1beta1NotebookEucConfig;
|
|
5077
5155
|
/** The idle shutdown configuration of NotebookRuntimeTemplate. This config will only be set when idle shutdown is enabled. */
|
|
5078
5156
|
idleShutdownConfig?: GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig;
|
|
5079
|
-
/** Output only. The default template to use if not specified. */
|
|
5157
|
+
/** Output only. Deprecated: This field has no behavior. Use notebook_runtime_type = 'ONE_CLICK' instead. The default template to use if not specified. */
|
|
5080
5158
|
isDefault?: boolean;
|
|
5081
5159
|
/** The labels with user-defined metadata to organize the NotebookRuntimeTemplates. 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. */
|
|
5082
5160
|
labels?: {[P in string]: string};
|
|
@@ -5090,7 +5168,7 @@ declare namespace gapi.client {
|
|
|
5090
5168
|
networkTags?: string[];
|
|
5091
5169
|
/** Optional. Immutable. The type of the notebook runtime template. */
|
|
5092
5170
|
notebookRuntimeType?: string;
|
|
5093
|
-
/** The service account that the runtime workload runs as. You can use any service account within the same project, but you must have the service account user permission to use the instance. If not specified, the [Compute Engine default service account](https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used. */
|
|
5171
|
+
/** Deprecated: This field is ignored and the "Vertex AI Notebook Service Account" (service-PROJECT_NUMBER@gcp-sa-aiplatform-vm.iam.gserviceaccount.com) is used for the runtime workload identity. See https://cloud.google.com/iam/docs/service-agents#vertex-ai-notebook-service-account for more details. For NotebookExecutionJob, use NotebookExecutionJob.service_account instead. The service account that the runtime workload runs as. You can use any service account within the same project, but you must have the service account user permission to use the instance. If not specified, the [Compute Engine default service account](https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used. */
|
|
5094
5172
|
serviceAccount?: string;
|
|
5095
5173
|
/** Optional. Immutable. Runtime Shielded VM spec. */
|
|
5096
5174
|
shieldedVmConfig?: GoogleCloudAiplatformV1beta1ShieldedVmConfig;
|
|
@@ -5316,7 +5394,7 @@ declare namespace gapi.client {
|
|
|
5316
5394
|
taskDetails?: GoogleCloudAiplatformV1beta1PipelineTaskDetail[];
|
|
5317
5395
|
}
|
|
5318
5396
|
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfig {
|
|
5319
|
-
/** Optional. The default runtime for the PipelineJob. If not
|
|
5397
|
+
/** Optional. The default runtime for the PipelineJob. If not set, Standard Vertex Custom Job(https://cloud.google.com/vertex-ai/docs/training/overview) is used as the runtime. If set, all pipeline tasks will run on the default runtime unless a task is a GCPC custom job component (https://cloud.google.com/vertex-ai/docs/pipelines/customjob-component) based task. If the task is based on a GCPC custom job component, it runs solely according to the component's configuration. */
|
|
5320
5398
|
defaultRuntime?: GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigDefaultRuntime;
|
|
5321
5399
|
/** Represents the failure policy of a pipeline. Currently, the default of a pipeline is that the pipeline will continue to run until no more tasks can be executed, also known as PIPELINE_FAILURE_POLICY_FAIL_SLOW. However, if a pipeline is set to PIPELINE_FAILURE_POLICY_FAIL_FAST, it will stop scheduling any new tasks when a task has failed. Any scheduled tasks will continue to completion. */
|
|
5322
5400
|
failurePolicy?: string;
|
|
@@ -5465,6 +5543,10 @@ declare namespace gapi.client {
|
|
|
5465
5543
|
/** The number of the port to expose on the pod's IP address. Must be a valid port number, between 1 and 65535 inclusive. */
|
|
5466
5544
|
containerPort?: number;
|
|
5467
5545
|
}
|
|
5546
|
+
interface GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig {
|
|
5547
|
+
/** The name of the preset voice to use. */
|
|
5548
|
+
voiceName?: string;
|
|
5549
|
+
}
|
|
5468
5550
|
interface GoogleCloudAiplatformV1beta1PredefinedSplit {
|
|
5469
5551
|
/** Required. The key is a name of one of the Dataset's data columns. The value of the key (either the label's value or value in the column) must be one of {`training`, `validation`, `test`}, and it defines to which set the given piece of data is assigned. If for a piece of data the key is not present or has an invalid value, that piece is ignored by the pipeline. */
|
|
5470
5552
|
key?: string;
|
|
@@ -5931,6 +6013,10 @@ declare namespace gapi.client {
|
|
|
5931
6013
|
interface GoogleCloudAiplatformV1beta1RagContextsContext {
|
|
5932
6014
|
/** The distance between the query dense embedding vector and the context text vector. */
|
|
5933
6015
|
distance?: number;
|
|
6016
|
+
/** According to the underlying Vector DB and the selected metric type, the score can be either the distance or the similarity between the query and the context and its range depends on the metric type. For example, if the metric type is COSINE_DISTANCE, it represents the distance between the query and the context. The larger the distance, the less relevant the context is to the query. The range is [0, 2], while 0 means the most relevant and 2 means the least relevant. */
|
|
6017
|
+
score?: number;
|
|
6018
|
+
/** The file display name. */
|
|
6019
|
+
sourceDisplayName?: string;
|
|
5934
6020
|
/** If the file is imported from Cloud Storage or Google Drive, source_uri will be original file URI in Cloud Storage or Google Drive; if file is uploaded, source_uri will be file display name. */
|
|
5935
6021
|
sourceUri?: string;
|
|
5936
6022
|
/** The distance between the query sparse embedding vector and the context text vector. */
|
|
@@ -5955,6 +6041,10 @@ declare namespace gapi.client {
|
|
|
5955
6041
|
ragVectorDbConfig?: GoogleCloudAiplatformV1beta1RagVectorDbConfig;
|
|
5956
6042
|
/** Output only. Timestamp when this RagCorpus was last updated. */
|
|
5957
6043
|
updateTime?: string;
|
|
6044
|
+
/** Optional. Immutable. The config for the Vector DBs. */
|
|
6045
|
+
vectorDbConfig?: GoogleCloudAiplatformV1beta1RagVectorDbConfig;
|
|
6046
|
+
/** Optional. Immutable. The config for the Vertex AI Search. */
|
|
6047
|
+
vertexAiSearchConfig?: GoogleCloudAiplatformV1beta1VertexAiSearchConfig;
|
|
5958
6048
|
}
|
|
5959
6049
|
interface GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig {
|
|
5960
6050
|
/** Configuration for hybrid search. */
|
|
@@ -6023,12 +6113,40 @@ declare namespace gapi.client {
|
|
|
6023
6113
|
chunkOverlap?: number;
|
|
6024
6114
|
/** The size of the chunks. */
|
|
6025
6115
|
chunkSize?: number;
|
|
6116
|
+
/** Specifies the fixed length chunking config. */
|
|
6117
|
+
fixedLengthChunking?: GoogleCloudAiplatformV1beta1RagFileChunkingConfigFixedLengthChunking;
|
|
6118
|
+
}
|
|
6119
|
+
interface GoogleCloudAiplatformV1beta1RagFileChunkingConfigFixedLengthChunking {
|
|
6120
|
+
/** The overlap between chunks. */
|
|
6121
|
+
chunkOverlap?: number;
|
|
6122
|
+
/** The size of the chunks. */
|
|
6123
|
+
chunkSize?: number;
|
|
6026
6124
|
}
|
|
6027
6125
|
interface GoogleCloudAiplatformV1beta1RagFileParsingConfig {
|
|
6126
|
+
/** The Advanced Parser to use for RagFiles. */
|
|
6127
|
+
advancedParser?: GoogleCloudAiplatformV1beta1RagFileParsingConfigAdvancedParser;
|
|
6128
|
+
/** The Layout Parser to use for RagFiles. */
|
|
6129
|
+
layoutParser?: GoogleCloudAiplatformV1beta1RagFileParsingConfigLayoutParser;
|
|
6130
|
+
/** Whether to use advanced PDF parsing. */
|
|
6131
|
+
useAdvancedPdfParsing?: boolean;
|
|
6132
|
+
}
|
|
6133
|
+
interface GoogleCloudAiplatformV1beta1RagFileParsingConfigAdvancedParser {
|
|
6028
6134
|
/** Whether to use advanced PDF parsing. */
|
|
6029
6135
|
useAdvancedPdfParsing?: boolean;
|
|
6030
6136
|
}
|
|
6137
|
+
interface GoogleCloudAiplatformV1beta1RagFileParsingConfigLayoutParser {
|
|
6138
|
+
/** The maximum number of requests the job is allowed to make to the Document AI processor per minute. Consult https://cloud.google.com/document-ai/quotas and the Quota page for your project to set an appropriate value here. If unspecified, a default value of 120 QPM would be used. */
|
|
6139
|
+
maxParsingRequestsPerMin?: number;
|
|
6140
|
+
/** The full resource name of a Document AI processor or processor version. The processor must have type `LAYOUT_PARSER_PROCESSOR`. If specified, the `additional_config.parse_as_scanned_pdf` field must be false. Format: * `projects/{project_id}/locations/{location}/processors/{processor_id}` * `projects/{project_id}/locations/{location}/processors/{processor_id}/processorVersions/{processor_version_id}` */
|
|
6141
|
+
processorName?: string;
|
|
6142
|
+
}
|
|
6143
|
+
interface GoogleCloudAiplatformV1beta1RagFileTransformationConfig {
|
|
6144
|
+
/** Specifies the chunking config for RagFiles. */
|
|
6145
|
+
ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
|
|
6146
|
+
}
|
|
6031
6147
|
interface GoogleCloudAiplatformV1beta1RagQuery {
|
|
6148
|
+
/** Optional. The retrieval config for the query. */
|
|
6149
|
+
ragRetrievalConfig?: GoogleCloudAiplatformV1beta1RagRetrievalConfig;
|
|
6032
6150
|
/** Optional. Configurations for hybrid search results ranking. */
|
|
6033
6151
|
ranking?: GoogleCloudAiplatformV1beta1RagQueryRanking;
|
|
6034
6152
|
/** Optional. The number of contexts to retrieve. */
|
|
@@ -6040,11 +6158,49 @@ declare namespace gapi.client {
|
|
|
6040
6158
|
/** Optional. Alpha value controls the weight between dense and sparse vector search results. The range is [0, 1], while 0 means sparse vector search only and 1 means dense vector search only. The default value is 0.5 which balances sparse and dense vector search equally. */
|
|
6041
6159
|
alpha?: number;
|
|
6042
6160
|
}
|
|
6161
|
+
interface GoogleCloudAiplatformV1beta1RagRetrievalConfig {
|
|
6162
|
+
/** Optional. Config for filters. */
|
|
6163
|
+
filter?: GoogleCloudAiplatformV1beta1RagRetrievalConfigFilter;
|
|
6164
|
+
/** Optional. Config for Hybrid Search. */
|
|
6165
|
+
hybridSearch?: GoogleCloudAiplatformV1beta1RagRetrievalConfigHybridSearch;
|
|
6166
|
+
/** Optional. Config for ranking and reranking. */
|
|
6167
|
+
ranking?: GoogleCloudAiplatformV1beta1RagRetrievalConfigRanking;
|
|
6168
|
+
/** Optional. The number of contexts to retrieve. */
|
|
6169
|
+
topK?: number;
|
|
6170
|
+
}
|
|
6171
|
+
interface GoogleCloudAiplatformV1beta1RagRetrievalConfigFilter {
|
|
6172
|
+
/** Optional. String for metadata filtering. */
|
|
6173
|
+
metadataFilter?: string;
|
|
6174
|
+
/** Optional. Only returns contexts with vector distance smaller than the threshold. */
|
|
6175
|
+
vectorDistanceThreshold?: number;
|
|
6176
|
+
/** Optional. Only returns contexts with vector similarity larger than the threshold. */
|
|
6177
|
+
vectorSimilarityThreshold?: number;
|
|
6178
|
+
}
|
|
6179
|
+
interface GoogleCloudAiplatformV1beta1RagRetrievalConfigHybridSearch {
|
|
6180
|
+
/** Optional. Alpha value controls the weight between dense and sparse vector search results. The range is [0, 1], while 0 means sparse vector search only and 1 means dense vector search only. The default value is 0.5 which balances sparse and dense vector search equally. */
|
|
6181
|
+
alpha?: number;
|
|
6182
|
+
}
|
|
6183
|
+
interface GoogleCloudAiplatformV1beta1RagRetrievalConfigRanking {
|
|
6184
|
+
/** Optional. Config for LlmRanker. */
|
|
6185
|
+
llmRanker?: GoogleCloudAiplatformV1beta1RagRetrievalConfigRankingLlmRanker;
|
|
6186
|
+
/** Optional. Config for Rank Service. */
|
|
6187
|
+
rankService?: GoogleCloudAiplatformV1beta1RagRetrievalConfigRankingRankService;
|
|
6188
|
+
}
|
|
6189
|
+
interface GoogleCloudAiplatformV1beta1RagRetrievalConfigRankingLlmRanker {
|
|
6190
|
+
/** Optional. The model name used for ranking. Format: `gemini-1.5-pro` */
|
|
6191
|
+
modelName?: string;
|
|
6192
|
+
}
|
|
6193
|
+
interface GoogleCloudAiplatformV1beta1RagRetrievalConfigRankingRankService {
|
|
6194
|
+
/** Optional. The model name of the rank service. Format: `semantic-ranker-512@latest` */
|
|
6195
|
+
modelName?: string;
|
|
6196
|
+
}
|
|
6043
6197
|
interface GoogleCloudAiplatformV1beta1RagVectorDbConfig {
|
|
6044
6198
|
/** Authentication config for the chosen Vector DB. */
|
|
6045
6199
|
apiAuth?: GoogleCloudAiplatformV1beta1ApiAuth;
|
|
6046
6200
|
/** The config for the Pinecone. */
|
|
6047
6201
|
pinecone?: GoogleCloudAiplatformV1beta1RagVectorDbConfigPinecone;
|
|
6202
|
+
/** Optional. Immutable. The embedding model config of the Vector DB. */
|
|
6203
|
+
ragEmbeddingModelConfig?: GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig;
|
|
6048
6204
|
/** The config for the RAG-managed Vector DB. */
|
|
6049
6205
|
ragManagedDb?: any;
|
|
6050
6206
|
/** The config for the Vertex Feature Store. */
|
|
@@ -8248,6 +8404,10 @@ declare namespace gapi.client {
|
|
|
8248
8404
|
/** The email addresses of workers in the SpecialistPool. */
|
|
8249
8405
|
specialistWorkerEmails?: string[];
|
|
8250
8406
|
}
|
|
8407
|
+
interface GoogleCloudAiplatformV1beta1SpeechConfig {
|
|
8408
|
+
/** The configuration for the speaker to use. */
|
|
8409
|
+
voiceConfig?: GoogleCloudAiplatformV1beta1VoiceConfig;
|
|
8410
|
+
}
|
|
8251
8411
|
interface GoogleCloudAiplatformV1beta1StartNotebookRuntimeOperationMetadata {
|
|
8252
8412
|
/** The operation generic information. */
|
|
8253
8413
|
genericMetadata?: GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
@@ -8296,6 +8456,12 @@ declare namespace gapi.client {
|
|
|
8296
8456
|
/** Required. Selector choosing Features of the target EntityType. Feature IDs will be deduplicated. */
|
|
8297
8457
|
featureSelector?: GoogleCloudAiplatformV1beta1FeatureSelector;
|
|
8298
8458
|
}
|
|
8459
|
+
interface GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest {
|
|
8460
|
+
/** Optional. Class method to be used for the stream query. It is optional and defaults to "stream_query" if unspecified. */
|
|
8461
|
+
classMethod?: string;
|
|
8462
|
+
/** Optional. Input content provided by users in JSON object format. Examples include text query, function calling parameters, media bytes, etc. */
|
|
8463
|
+
input?: {[P in string]: any};
|
|
8464
|
+
}
|
|
8299
8465
|
interface GoogleCloudAiplatformV1beta1StreamRawPredictRequest {
|
|
8300
8466
|
/** The prediction input. Supports HTTP headers and arbitrary data payload. */
|
|
8301
8467
|
httpBody?: GoogleApiHttpBody;
|
|
@@ -8870,11 +9036,19 @@ declare namespace gapi.client {
|
|
|
8870
9036
|
codeExecution?: any;
|
|
8871
9037
|
/** 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. */
|
|
8872
9038
|
functionDeclarations?: GoogleCloudAiplatformV1beta1FunctionDeclaration[];
|
|
9039
|
+
/** Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. */
|
|
9040
|
+
googleSearch?: any;
|
|
8873
9041
|
/** Optional. GoogleSearchRetrieval tool type. Specialized retrieval tool that is powered by Google search. */
|
|
8874
9042
|
googleSearchRetrieval?: GoogleCloudAiplatformV1beta1GoogleSearchRetrieval;
|
|
8875
9043
|
/** Optional. Retrieval tool type. System will always execute the provided retrieval tool(s) to get external knowledge to answer the prompt. Retrieval results are presented to the model for generation. */
|
|
8876
9044
|
retrieval?: GoogleCloudAiplatformV1beta1Retrieval;
|
|
8877
9045
|
}
|
|
9046
|
+
interface GoogleCloudAiplatformV1beta1ToolCall {
|
|
9047
|
+
/** Optional. Spec for tool input */
|
|
9048
|
+
toolInput?: string;
|
|
9049
|
+
/** Required. Spec for tool name */
|
|
9050
|
+
toolName?: string;
|
|
9051
|
+
}
|
|
8878
9052
|
interface GoogleCloudAiplatformV1beta1ToolCallValidInput {
|
|
8879
9053
|
/** Required. Repeated tool call valid instances. */
|
|
8880
9054
|
instances?: GoogleCloudAiplatformV1beta1ToolCallValidInstance[];
|
|
@@ -8901,6 +9075,7 @@ declare namespace gapi.client {
|
|
|
8901
9075
|
/** Optional. Function calling config. */
|
|
8902
9076
|
functionCallingConfig?: GoogleCloudAiplatformV1beta1FunctionCallingConfig;
|
|
8903
9077
|
}
|
|
9078
|
+
interface GoogleCloudAiplatformV1beta1ToolGoogleSearch {}
|
|
8904
9079
|
interface GoogleCloudAiplatformV1beta1ToolNameMatchInput {
|
|
8905
9080
|
/** Required. Repeated tool name match instances. */
|
|
8906
9081
|
instances?: GoogleCloudAiplatformV1beta1ToolNameMatchInstance[];
|
|
@@ -9029,6 +9204,137 @@ declare namespace gapi.client {
|
|
|
9029
9204
|
/** Output only. Time when the TrainingPipeline was most recently updated. */
|
|
9030
9205
|
updateTime?: string;
|
|
9031
9206
|
}
|
|
9207
|
+
interface GoogleCloudAiplatformV1beta1Trajectory {
|
|
9208
|
+
/** Required. Tool calls in the trajectory. */
|
|
9209
|
+
toolCalls?: GoogleCloudAiplatformV1beta1ToolCall[];
|
|
9210
|
+
}
|
|
9211
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchInput {
|
|
9212
|
+
/** Required. Repeated TrajectoryAnyOrderMatch instance. */
|
|
9213
|
+
instances?: GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchInstance[];
|
|
9214
|
+
/** Required. Spec for TrajectoryAnyOrderMatch metric. */
|
|
9215
|
+
metricSpec?: any;
|
|
9216
|
+
}
|
|
9217
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchInstance {
|
|
9218
|
+
/** Required. Spec for predicted tool call trajectory. */
|
|
9219
|
+
predictedTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9220
|
+
/** Required. Spec for reference tool call trajectory. */
|
|
9221
|
+
referenceTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9222
|
+
}
|
|
9223
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchMetricValue {
|
|
9224
|
+
/** Output only. TrajectoryAnyOrderMatch score. */
|
|
9225
|
+
score?: number;
|
|
9226
|
+
}
|
|
9227
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchResults {
|
|
9228
|
+
/** Output only. TrajectoryAnyOrderMatch metric values. */
|
|
9229
|
+
trajectoryAnyOrderMatchMetricValues?: GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchMetricValue[];
|
|
9230
|
+
}
|
|
9231
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryAnyOrderMatchSpec {}
|
|
9232
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryExactMatchInput {
|
|
9233
|
+
/** Required. Repeated TrajectoryExactMatch instance. */
|
|
9234
|
+
instances?: GoogleCloudAiplatformV1beta1TrajectoryExactMatchInstance[];
|
|
9235
|
+
/** Required. Spec for TrajectoryExactMatch metric. */
|
|
9236
|
+
metricSpec?: any;
|
|
9237
|
+
}
|
|
9238
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryExactMatchInstance {
|
|
9239
|
+
/** Required. Spec for predicted tool call trajectory. */
|
|
9240
|
+
predictedTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9241
|
+
/** Required. Spec for reference tool call trajectory. */
|
|
9242
|
+
referenceTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9243
|
+
}
|
|
9244
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryExactMatchMetricValue {
|
|
9245
|
+
/** Output only. TrajectoryExactMatch score. */
|
|
9246
|
+
score?: number;
|
|
9247
|
+
}
|
|
9248
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryExactMatchResults {
|
|
9249
|
+
/** Output only. TrajectoryExactMatch metric values. */
|
|
9250
|
+
trajectoryExactMatchMetricValues?: GoogleCloudAiplatformV1beta1TrajectoryExactMatchMetricValue[];
|
|
9251
|
+
}
|
|
9252
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryExactMatchSpec {}
|
|
9253
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchInput {
|
|
9254
|
+
/** Required. Repeated TrajectoryInOrderMatch instance. */
|
|
9255
|
+
instances?: GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchInstance[];
|
|
9256
|
+
/** Required. Spec for TrajectoryInOrderMatch metric. */
|
|
9257
|
+
metricSpec?: any;
|
|
9258
|
+
}
|
|
9259
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchInstance {
|
|
9260
|
+
/** Required. Spec for predicted tool call trajectory. */
|
|
9261
|
+
predictedTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9262
|
+
/** Required. Spec for reference tool call trajectory. */
|
|
9263
|
+
referenceTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9264
|
+
}
|
|
9265
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchMetricValue {
|
|
9266
|
+
/** Output only. TrajectoryInOrderMatch score. */
|
|
9267
|
+
score?: number;
|
|
9268
|
+
}
|
|
9269
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchResults {
|
|
9270
|
+
/** Output only. TrajectoryInOrderMatch metric values. */
|
|
9271
|
+
trajectoryInOrderMatchMetricValues?: GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchMetricValue[];
|
|
9272
|
+
}
|
|
9273
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryInOrderMatchSpec {}
|
|
9274
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryPrecisionInput {
|
|
9275
|
+
/** Required. Repeated TrajectoryPrecision instance. */
|
|
9276
|
+
instances?: GoogleCloudAiplatformV1beta1TrajectoryPrecisionInstance[];
|
|
9277
|
+
/** Required. Spec for TrajectoryPrecision metric. */
|
|
9278
|
+
metricSpec?: any;
|
|
9279
|
+
}
|
|
9280
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryPrecisionInstance {
|
|
9281
|
+
/** Required. Spec for predicted tool call trajectory. */
|
|
9282
|
+
predictedTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9283
|
+
/** Required. Spec for reference tool call trajectory. */
|
|
9284
|
+
referenceTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9285
|
+
}
|
|
9286
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryPrecisionMetricValue {
|
|
9287
|
+
/** Output only. TrajectoryPrecision score. */
|
|
9288
|
+
score?: number;
|
|
9289
|
+
}
|
|
9290
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryPrecisionResults {
|
|
9291
|
+
/** Output only. TrajectoryPrecision metric values. */
|
|
9292
|
+
trajectoryPrecisionMetricValues?: GoogleCloudAiplatformV1beta1TrajectoryPrecisionMetricValue[];
|
|
9293
|
+
}
|
|
9294
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryPrecisionSpec {}
|
|
9295
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryRecallInput {
|
|
9296
|
+
/** Required. Repeated TrajectoryRecall instance. */
|
|
9297
|
+
instances?: GoogleCloudAiplatformV1beta1TrajectoryRecallInstance[];
|
|
9298
|
+
/** Required. Spec for TrajectoryRecall metric. */
|
|
9299
|
+
metricSpec?: any;
|
|
9300
|
+
}
|
|
9301
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryRecallInstance {
|
|
9302
|
+
/** Required. Spec for predicted tool call trajectory. */
|
|
9303
|
+
predictedTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9304
|
+
/** Required. Spec for reference tool call trajectory. */
|
|
9305
|
+
referenceTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9306
|
+
}
|
|
9307
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryRecallMetricValue {
|
|
9308
|
+
/** Output only. TrajectoryRecall score. */
|
|
9309
|
+
score?: number;
|
|
9310
|
+
}
|
|
9311
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryRecallResults {
|
|
9312
|
+
/** Output only. TrajectoryRecall metric values. */
|
|
9313
|
+
trajectoryRecallMetricValues?: GoogleCloudAiplatformV1beta1TrajectoryRecallMetricValue[];
|
|
9314
|
+
}
|
|
9315
|
+
interface GoogleCloudAiplatformV1beta1TrajectoryRecallSpec {}
|
|
9316
|
+
interface GoogleCloudAiplatformV1beta1TrajectorySingleToolUseInput {
|
|
9317
|
+
/** Required. Repeated TrajectorySingleToolUse instance. */
|
|
9318
|
+
instances?: GoogleCloudAiplatformV1beta1TrajectorySingleToolUseInstance[];
|
|
9319
|
+
/** Required. Spec for TrajectorySingleToolUse metric. */
|
|
9320
|
+
metricSpec?: GoogleCloudAiplatformV1beta1TrajectorySingleToolUseSpec;
|
|
9321
|
+
}
|
|
9322
|
+
interface GoogleCloudAiplatformV1beta1TrajectorySingleToolUseInstance {
|
|
9323
|
+
/** Required. Spec for predicted tool call trajectory. */
|
|
9324
|
+
predictedTrajectory?: GoogleCloudAiplatformV1beta1Trajectory;
|
|
9325
|
+
}
|
|
9326
|
+
interface GoogleCloudAiplatformV1beta1TrajectorySingleToolUseMetricValue {
|
|
9327
|
+
/** Output only. TrajectorySingleToolUse score. */
|
|
9328
|
+
score?: number;
|
|
9329
|
+
}
|
|
9330
|
+
interface GoogleCloudAiplatformV1beta1TrajectorySingleToolUseResults {
|
|
9331
|
+
/** Output only. TrajectorySingleToolUse metric values. */
|
|
9332
|
+
trajectorySingleToolUseMetricValues?: GoogleCloudAiplatformV1beta1TrajectorySingleToolUseMetricValue[];
|
|
9333
|
+
}
|
|
9334
|
+
interface GoogleCloudAiplatformV1beta1TrajectorySingleToolUseSpec {
|
|
9335
|
+
/** Required. Spec for tool name to be checked for in the predicted trajectory. */
|
|
9336
|
+
toolName?: string;
|
|
9337
|
+
}
|
|
9032
9338
|
interface GoogleCloudAiplatformV1beta1Trial {
|
|
9033
9339
|
/** Output only. The identifier of the client that originally requested this Trial. Each client is identified by a unique client_id. When a client asks for a suggestion, Vertex AI Vizier will assign it a Trial. The client should evaluate the Trial, complete it, and report back to Vertex AI Vizier. If suggestion is asked again by same client_id before the Trial is completed, the same Trial will be returned. Multiple clients with different client_ids can ask for suggestions simultaneously, each of them will get their own Trial. */
|
|
9034
9340
|
clientId?: string;
|
|
@@ -9112,6 +9418,8 @@ declare namespace gapi.client {
|
|
|
9112
9418
|
partnerModelTuningSpec?: GoogleCloudAiplatformV1beta1PartnerModelTuningSpec;
|
|
9113
9419
|
/** Output only. The resource name of the PipelineJob associated with the TuningJob. Format: `projects/{project}/locations/{location}/pipelineJobs/{pipeline_job}`. */
|
|
9114
9420
|
pipelineJob?: string;
|
|
9421
|
+
/** The service account that the tuningJob workload runs as. If not specified, the Vertex AI Secure Fine-Tuned Service Agent in the project will be used. See https://cloud.google.com/iam/docs/service-agents#vertex-ai-secure-fine-tuning-service-agent Users starting the pipeline must have the `iam.serviceAccounts.actAs` permission on this service account. */
|
|
9422
|
+
serviceAccount?: string;
|
|
9115
9423
|
/** Output only. Time when the TuningJob for the first time entered the `JOB_STATE_RUNNING` state. */
|
|
9116
9424
|
startTime?: string;
|
|
9117
9425
|
/** Output only. The detailed state of the job. */
|
|
@@ -9256,6 +9564,8 @@ declare namespace gapi.client {
|
|
|
9256
9564
|
interface GoogleCloudAiplatformV1beta1UploadRagFileConfig {
|
|
9257
9565
|
/** Specifies the size and overlap of chunks after uploading RagFile. */
|
|
9258
9566
|
ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
|
|
9567
|
+
/** Specifies the transformation config for RagFiles. */
|
|
9568
|
+
ragFileTransformationConfig?: GoogleCloudAiplatformV1beta1RagFileTransformationConfig;
|
|
9259
9569
|
}
|
|
9260
9570
|
interface GoogleCloudAiplatformV1beta1UploadRagFileRequest {
|
|
9261
9571
|
/** Required. The RagFile to upload. */
|
|
@@ -9296,11 +9606,17 @@ declare namespace gapi.client {
|
|
|
9296
9606
|
/** Required. Fully-qualified Vertex AI Search data store resource ID. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{dataStore}` */
|
|
9297
9607
|
datastore?: string;
|
|
9298
9608
|
}
|
|
9609
|
+
interface GoogleCloudAiplatformV1beta1VertexAiSearchConfig {
|
|
9610
|
+
/** Vertex AI Search Serving Config resource full name. For example, `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/servingConfigs/{serving_config}` or `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/servingConfigs/{serving_config}`. */
|
|
9611
|
+
servingConfig?: string;
|
|
9612
|
+
}
|
|
9299
9613
|
interface GoogleCloudAiplatformV1beta1VertexRagStore {
|
|
9300
9614
|
/** Optional. Deprecated. Please use rag_resources instead. */
|
|
9301
9615
|
ragCorpora?: string[];
|
|
9302
9616
|
/** Optional. The representation of the rag source. It can be used to specify corpus only or ragfiles. Currently only support one corpus or multiple files from one corpus. In the future we may open up multiple corpora support. */
|
|
9303
9617
|
ragResources?: GoogleCloudAiplatformV1beta1VertexRagStoreRagResource[];
|
|
9618
|
+
/** Optional. The retrieval config for the Rag query. */
|
|
9619
|
+
ragRetrievalConfig?: GoogleCloudAiplatformV1beta1RagRetrievalConfig;
|
|
9304
9620
|
/** Optional. Number of top k results to return from the selected corpora. */
|
|
9305
9621
|
similarityTopK?: number;
|
|
9306
9622
|
/** Optional. Only return results with vector distance smaller than the threshold. */
|
|
@@ -9318,6 +9634,10 @@ declare namespace gapi.client {
|
|
|
9318
9634
|
/** Optional. The start offset of the video. */
|
|
9319
9635
|
startOffset?: string;
|
|
9320
9636
|
}
|
|
9637
|
+
interface GoogleCloudAiplatformV1beta1VoiceConfig {
|
|
9638
|
+
/** The configuration for the prebuilt voice to use. */
|
|
9639
|
+
prebuiltVoiceConfig?: GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig;
|
|
9640
|
+
}
|
|
9321
9641
|
interface GoogleCloudAiplatformV1beta1WorkerPoolSpec {
|
|
9322
9642
|
/** The custom container task. */
|
|
9323
9643
|
containerSpec?: GoogleCloudAiplatformV1beta1ContainerSpec;
|
|
@@ -10239,7 +10559,7 @@ declare namespace gapi.client {
|
|
|
10239
10559
|
): Request<GoogleCloudAiplatformV1beta1UploadRagFileResponse>;
|
|
10240
10560
|
}
|
|
10241
10561
|
interface OperationsResource {
|
|
10242
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
10562
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
10243
10563
|
cancel(request?: {
|
|
10244
10564
|
/** V1 error format. */
|
|
10245
10565
|
'$.xgafv'?: string;
|
|
@@ -10387,7 +10707,7 @@ declare namespace gapi.client {
|
|
|
10387
10707
|
operations: OperationsResource;
|
|
10388
10708
|
}
|
|
10389
10709
|
interface OperationsResource {
|
|
10390
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
10710
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
10391
10711
|
cancel(request?: {
|
|
10392
10712
|
/** V1 error format. */
|
|
10393
10713
|
'$.xgafv'?: string;
|
|
@@ -10949,7 +11269,7 @@ declare namespace gapi.client {
|
|
|
10949
11269
|
): Request<GoogleCloudAiplatformV1beta1CachedContent>;
|
|
10950
11270
|
}
|
|
10951
11271
|
interface OperationsResource {
|
|
10952
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
11272
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
10953
11273
|
cancel(request?: {
|
|
10954
11274
|
/** V1 error format. */
|
|
10955
11275
|
'$.xgafv'?: string;
|
|
@@ -11302,7 +11622,7 @@ declare namespace gapi.client {
|
|
|
11302
11622
|
operations: OperationsResource;
|
|
11303
11623
|
}
|
|
11304
11624
|
interface OperationsResource {
|
|
11305
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
11625
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
11306
11626
|
cancel(request?: {
|
|
11307
11627
|
/** V1 error format. */
|
|
11308
11628
|
'$.xgafv'?: string;
|
|
@@ -11657,7 +11977,7 @@ declare namespace gapi.client {
|
|
|
11657
11977
|
operations: OperationsResource;
|
|
11658
11978
|
}
|
|
11659
11979
|
interface OperationsResource {
|
|
11660
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
11980
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
11661
11981
|
cancel(request?: {
|
|
11662
11982
|
/** V1 error format. */
|
|
11663
11983
|
'$.xgafv'?: string;
|
|
@@ -11834,7 +12154,7 @@ declare namespace gapi.client {
|
|
|
11834
12154
|
operations: OperationsResource;
|
|
11835
12155
|
}
|
|
11836
12156
|
interface OperationsResource {
|
|
11837
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
12157
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
11838
12158
|
cancel(request?: {
|
|
11839
12159
|
/** V1 error format. */
|
|
11840
12160
|
'$.xgafv'?: string;
|
|
@@ -12019,7 +12339,7 @@ declare namespace gapi.client {
|
|
|
12019
12339
|
operations: OperationsResource;
|
|
12020
12340
|
}
|
|
12021
12341
|
interface OperationsResource {
|
|
12022
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
12342
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
12023
12343
|
cancel(request?: {
|
|
12024
12344
|
/** V1 error format. */
|
|
12025
12345
|
'$.xgafv'?: string;
|
|
@@ -12447,7 +12767,7 @@ declare namespace gapi.client {
|
|
|
12447
12767
|
}): Request<GoogleLongrunningOperation>;
|
|
12448
12768
|
}
|
|
12449
12769
|
interface OperationsResource {
|
|
12450
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
12770
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
12451
12771
|
cancel(request?: {
|
|
12452
12772
|
/** V1 error format. */
|
|
12453
12773
|
'$.xgafv'?: string;
|
|
@@ -12592,7 +12912,7 @@ declare namespace gapi.client {
|
|
|
12592
12912
|
}): Request<GoogleLongrunningOperation>;
|
|
12593
12913
|
}
|
|
12594
12914
|
interface OperationsResource {
|
|
12595
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
12915
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
12596
12916
|
cancel(request?: {
|
|
12597
12917
|
/** V1 error format. */
|
|
12598
12918
|
'$.xgafv'?: string;
|
|
@@ -13193,7 +13513,7 @@ declare namespace gapi.client {
|
|
|
13193
13513
|
savedQueries: SavedQueriesResource;
|
|
13194
13514
|
}
|
|
13195
13515
|
interface OperationsResource {
|
|
13196
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
13516
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
13197
13517
|
cancel(request?: {
|
|
13198
13518
|
/** V1 error format. */
|
|
13199
13519
|
'$.xgafv'?: string;
|
|
@@ -13577,7 +13897,7 @@ declare namespace gapi.client {
|
|
|
13577
13897
|
operations: OperationsResource;
|
|
13578
13898
|
}
|
|
13579
13899
|
interface OperationsResource {
|
|
13580
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
13900
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
13581
13901
|
cancel(request?: {
|
|
13582
13902
|
/** V1 error format. */
|
|
13583
13903
|
'$.xgafv'?: string;
|
|
@@ -13785,7 +14105,7 @@ declare namespace gapi.client {
|
|
|
13785
14105
|
): Request<GoogleApiHttpBody>;
|
|
13786
14106
|
}
|
|
13787
14107
|
interface OperationsResource {
|
|
13788
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
14108
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
13789
14109
|
cancel(request?: {
|
|
13790
14110
|
/** V1 error format. */
|
|
13791
14111
|
'$.xgafv'?: string;
|
|
@@ -15341,7 +15661,7 @@ declare namespace gapi.client {
|
|
|
15341
15661
|
operations: OperationsResource;
|
|
15342
15662
|
}
|
|
15343
15663
|
interface OperationsResource {
|
|
15344
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
15664
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
15345
15665
|
cancel(request?: {
|
|
15346
15666
|
/** V1 error format. */
|
|
15347
15667
|
'$.xgafv'?: string;
|
|
@@ -15489,7 +15809,7 @@ declare namespace gapi.client {
|
|
|
15489
15809
|
operations: OperationsResource;
|
|
15490
15810
|
}
|
|
15491
15811
|
interface OperationsResource {
|
|
15492
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
15812
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
15493
15813
|
cancel(request?: {
|
|
15494
15814
|
/** V1 error format. */
|
|
15495
15815
|
'$.xgafv'?: string;
|
|
@@ -15637,7 +15957,7 @@ declare namespace gapi.client {
|
|
|
15637
15957
|
operations: OperationsResource;
|
|
15638
15958
|
}
|
|
15639
15959
|
interface OperationsResource {
|
|
15640
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
15960
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
15641
15961
|
cancel(request?: {
|
|
15642
15962
|
/** V1 error format. */
|
|
15643
15963
|
'$.xgafv'?: string;
|
|
@@ -18397,7 +18717,7 @@ declare namespace gapi.client {
|
|
|
18397
18717
|
operations: OperationsResource;
|
|
18398
18718
|
}
|
|
18399
18719
|
interface OperationsResource {
|
|
18400
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
18720
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
18401
18721
|
cancel(request?: {
|
|
18402
18722
|
/** V1 error format. */
|
|
18403
18723
|
'$.xgafv'?: string;
|
|
@@ -18826,7 +19146,7 @@ declare namespace gapi.client {
|
|
|
18826
19146
|
operations: OperationsResource;
|
|
18827
19147
|
}
|
|
18828
19148
|
interface OperationsResource {
|
|
18829
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
19149
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
18830
19150
|
cancel(request?: {
|
|
18831
19151
|
/** V1 error format. */
|
|
18832
19152
|
'$.xgafv'?: string;
|
|
@@ -19628,7 +19948,7 @@ declare namespace gapi.client {
|
|
|
19628
19948
|
operations: OperationsResource;
|
|
19629
19949
|
}
|
|
19630
19950
|
interface OperationsResource {
|
|
19631
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
19951
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
19632
19952
|
cancel(request?: {
|
|
19633
19953
|
/** V1 error format. */
|
|
19634
19954
|
'$.xgafv'?: string;
|
|
@@ -20175,7 +20495,7 @@ declare namespace gapi.client {
|
|
|
20175
20495
|
operations: OperationsResource;
|
|
20176
20496
|
}
|
|
20177
20497
|
interface OperationsResource {
|
|
20178
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
20498
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
20179
20499
|
cancel(request?: {
|
|
20180
20500
|
/** V1 error format. */
|
|
20181
20501
|
'$.xgafv'?: string;
|
|
@@ -20528,7 +20848,7 @@ declare namespace gapi.client {
|
|
|
20528
20848
|
operations: OperationsResource;
|
|
20529
20849
|
}
|
|
20530
20850
|
interface OperationsResource {
|
|
20531
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
20851
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
20532
20852
|
cancel(request?: {
|
|
20533
20853
|
/** V1 error format. */
|
|
20534
20854
|
'$.xgafv'?: string;
|
|
@@ -21175,7 +21495,7 @@ declare namespace gapi.client {
|
|
|
21175
21495
|
operations: OperationsResource;
|
|
21176
21496
|
}
|
|
21177
21497
|
interface OperationsResource {
|
|
21178
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
21498
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
21179
21499
|
cancel(request?: {
|
|
21180
21500
|
/** V1 error format. */
|
|
21181
21501
|
'$.xgafv'?: string;
|
|
@@ -21648,7 +21968,7 @@ declare namespace gapi.client {
|
|
|
21648
21968
|
operations: OperationsResource;
|
|
21649
21969
|
}
|
|
21650
21970
|
interface OperationsResource {
|
|
21651
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
21971
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
21652
21972
|
cancel(request?: {
|
|
21653
21973
|
/** V1 error format. */
|
|
21654
21974
|
'$.xgafv'?: string;
|
|
@@ -22104,7 +22424,7 @@ declare namespace gapi.client {
|
|
|
22104
22424
|
operations: OperationsResource;
|
|
22105
22425
|
}
|
|
22106
22426
|
interface OperationsResource {
|
|
22107
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
22427
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
22108
22428
|
cancel(request?: {
|
|
22109
22429
|
/** V1 error format. */
|
|
22110
22430
|
'$.xgafv'?: string;
|
|
@@ -22732,7 +23052,7 @@ declare namespace gapi.client {
|
|
|
22732
23052
|
operations: OperationsResource;
|
|
22733
23053
|
}
|
|
22734
23054
|
interface OperationsResource {
|
|
22735
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
23055
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
22736
23056
|
cancel(request?: {
|
|
22737
23057
|
/** V1 error format. */
|
|
22738
23058
|
'$.xgafv'?: string;
|
|
@@ -23366,7 +23686,7 @@ declare namespace gapi.client {
|
|
|
23366
23686
|
}): Request<GoogleCloudAiplatformV1beta1ListMetadataSchemasResponse>;
|
|
23367
23687
|
}
|
|
23368
23688
|
interface OperationsResource {
|
|
23369
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
23689
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
23370
23690
|
cancel(request?: {
|
|
23371
23691
|
/** V1 error format. */
|
|
23372
23692
|
'$.xgafv'?: string;
|
|
@@ -23667,7 +23987,7 @@ declare namespace gapi.client {
|
|
|
23667
23987
|
operations: OperationsResource;
|
|
23668
23988
|
}
|
|
23669
23989
|
interface OperationsResource {
|
|
23670
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
23990
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
23671
23991
|
cancel(request?: {
|
|
23672
23992
|
/** V1 error format. */
|
|
23673
23993
|
'$.xgafv'?: string;
|
|
@@ -23931,7 +24251,7 @@ declare namespace gapi.client {
|
|
|
23931
24251
|
operations: OperationsResource;
|
|
23932
24252
|
}
|
|
23933
24253
|
interface OperationsResource {
|
|
23934
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
24254
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
23935
24255
|
cancel(request?: {
|
|
23936
24256
|
/** V1 error format. */
|
|
23937
24257
|
'$.xgafv'?: string;
|
|
@@ -24615,7 +24935,7 @@ declare namespace gapi.client {
|
|
|
24615
24935
|
}): Request<GoogleCloudAiplatformV1beta1ListModelMonitoringJobsResponse>;
|
|
24616
24936
|
}
|
|
24617
24937
|
interface OperationsResource {
|
|
24618
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
24938
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
24619
24939
|
cancel(request?: {
|
|
24620
24940
|
/** V1 error format. */
|
|
24621
24941
|
'$.xgafv'?: string;
|
|
@@ -25095,7 +25415,7 @@ declare namespace gapi.client {
|
|
|
25095
25415
|
operations: OperationsResource;
|
|
25096
25416
|
}
|
|
25097
25417
|
interface OperationsResource {
|
|
25098
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
25418
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
25099
25419
|
cancel(request?: {
|
|
25100
25420
|
/** V1 error format. */
|
|
25101
25421
|
'$.xgafv'?: string;
|
|
@@ -25486,7 +25806,7 @@ declare namespace gapi.client {
|
|
|
25486
25806
|
slices: SlicesResource;
|
|
25487
25807
|
}
|
|
25488
25808
|
interface OperationsResource {
|
|
25489
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
25809
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
25490
25810
|
cancel(request?: {
|
|
25491
25811
|
/** V1 error format. */
|
|
25492
25812
|
'$.xgafv'?: string;
|
|
@@ -26496,7 +26816,7 @@ declare namespace gapi.client {
|
|
|
26496
26816
|
nasTrialDetails: NasTrialDetailsResource;
|
|
26497
26817
|
}
|
|
26498
26818
|
interface OperationsResource {
|
|
26499
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
26819
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
26500
26820
|
cancel(request?: {
|
|
26501
26821
|
/** V1 error format. */
|
|
26502
26822
|
'$.xgafv'?: string;
|
|
@@ -26914,7 +27234,7 @@ declare namespace gapi.client {
|
|
|
26914
27234
|
operations: OperationsResource;
|
|
26915
27235
|
}
|
|
26916
27236
|
interface OperationsResource {
|
|
26917
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
27237
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
26918
27238
|
cancel(request?: {
|
|
26919
27239
|
/** V1 error format. */
|
|
26920
27240
|
'$.xgafv'?: string;
|
|
@@ -27241,7 +27561,7 @@ declare namespace gapi.client {
|
|
|
27241
27561
|
callback?: string;
|
|
27242
27562
|
/** Selector specifying which fields to include in a partial response. */
|
|
27243
27563
|
fields?: string;
|
|
27244
|
-
/** Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `notebookRuntime` supports = and !=. `notebookRuntime` represents the NotebookRuntime ID, i.e. the last segment of the NotebookRuntime's resource name. * `displayName` supports = and != and regex. * `notebookRuntimeTemplate` supports = and !=. `notebookRuntimeTemplate` represents the NotebookRuntimeTemplate ID, i.e. the last segment of the NotebookRuntimeTemplate's resource name. * `healthState` supports = and !=. healthState enum: [HEALTHY, UNHEALTHY, HEALTH_STATE_UNSPECIFIED]. * `runtimeState` supports = and !=. runtimeState enum: [RUNTIME_STATE_UNSPECIFIED, RUNNING, BEING_STARTED, BEING_STOPPED, STOPPED, BEING_UPGRADED, ERROR, INVALID]. * `runtimeUser` supports = and !=. * API version is UI only: `uiState` supports = and !=. uiState enum: [UI_RESOURCE_STATE_UNSPECIFIED, UI_RESOURCE_STATE_BEING_CREATED, UI_RESOURCE_STATE_ACTIVE, UI_RESOURCE_STATE_BEING_DELETED, UI_RESOURCE_STATE_CREATION_FAILED]. * `notebookRuntimeType` supports = and !=. notebookRuntimeType enum: [USER_DEFINED, ONE_CLICK]. Some examples: * `notebookRuntime="notebookRuntime123"` * `displayName="myDisplayName"` and `displayName=~"myDisplayNameRegex"` * `notebookRuntimeTemplate="notebookRuntimeTemplate321"` * `healthState=HEALTHY` * `runtimeState=RUNNING` * `runtimeUser="test@google.com"` * `uiState=UI_RESOURCE_STATE_BEING_DELETED` * `notebookRuntimeType=USER_DEFINED` */
|
|
27564
|
+
/** Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `notebookRuntime` supports = and !=. `notebookRuntime` represents the NotebookRuntime ID, i.e. the last segment of the NotebookRuntime's resource name. * `displayName` supports = and != and regex. * `notebookRuntimeTemplate` supports = and !=. `notebookRuntimeTemplate` represents the NotebookRuntimeTemplate ID, i.e. the last segment of the NotebookRuntimeTemplate's resource name. * `healthState` supports = and !=. healthState enum: [HEALTHY, UNHEALTHY, HEALTH_STATE_UNSPECIFIED]. * `runtimeState` supports = and !=. runtimeState enum: [RUNTIME_STATE_UNSPECIFIED, RUNNING, BEING_STARTED, BEING_STOPPED, STOPPED, BEING_UPGRADED, ERROR, INVALID]. * `runtimeUser` supports = and !=. * API version is UI only: `uiState` supports = and !=. uiState enum: [UI_RESOURCE_STATE_UNSPECIFIED, UI_RESOURCE_STATE_BEING_CREATED, UI_RESOURCE_STATE_ACTIVE, UI_RESOURCE_STATE_BEING_DELETED, UI_RESOURCE_STATE_CREATION_FAILED]. * `notebookRuntimeType` supports = and !=. notebookRuntimeType enum: [USER_DEFINED, ONE_CLICK]. * `machineType` supports = and !=. * `acceleratorType` supports = and !=. Some examples: * `notebookRuntime="notebookRuntime123"` * `displayName="myDisplayName"` and `displayName=~"myDisplayNameRegex"` * `notebookRuntimeTemplate="notebookRuntimeTemplate321"` * `healthState=HEALTHY` * `runtimeState=RUNNING` * `runtimeUser="test@google.com"` * `uiState=UI_RESOURCE_STATE_BEING_DELETED` * `notebookRuntimeType=USER_DEFINED` * `machineType=e2-standard-4` * `acceleratorType=NVIDIA_TESLA_T4` */
|
|
27245
27565
|
filter?: string;
|
|
27246
27566
|
/** 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. */
|
|
27247
27567
|
key?: string;
|
|
@@ -27500,7 +27820,7 @@ declare namespace gapi.client {
|
|
|
27500
27820
|
operations: OperationsResource;
|
|
27501
27821
|
}
|
|
27502
27822
|
interface OperationsResource {
|
|
27503
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
27823
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
27504
27824
|
cancel(request?: {
|
|
27505
27825
|
/** V1 error format. */
|
|
27506
27826
|
'$.xgafv'?: string;
|
|
@@ -27802,7 +28122,7 @@ declare namespace gapi.client {
|
|
|
27802
28122
|
callback?: string;
|
|
27803
28123
|
/** Selector specifying which fields to include in a partial response. */
|
|
27804
28124
|
fields?: string;
|
|
27805
|
-
/** Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `notebookRuntimeTemplate` supports = and !=. `notebookRuntimeTemplate` represents the NotebookRuntimeTemplate ID, i.e. the last segment of the NotebookRuntimeTemplate's resource name. * `display_name` supports = and != * `labels` supports general map functions that is: * `labels.key=value` - key:value equality * `labels.key:* or labels:key - key existence * A key including a space must be quoted. `labels."a key"`. * `notebookRuntimeType` supports = and !=. notebookRuntimeType enum: [USER_DEFINED, ONE_CLICK]. Some examples: * `notebookRuntimeTemplate=notebookRuntimeTemplate123` * `displayName="myDisplayName"` * `labels.myKey="myValue"` * `notebookRuntimeType=USER_DEFINED` */
|
|
28125
|
+
/** Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `notebookRuntimeTemplate` supports = and !=. `notebookRuntimeTemplate` represents the NotebookRuntimeTemplate ID, i.e. the last segment of the NotebookRuntimeTemplate's resource name. * `display_name` supports = and != * `labels` supports general map functions that is: * `labels.key=value` - key:value equality * `labels.key:* or labels:key - key existence * A key including a space must be quoted. `labels."a key"`. * `notebookRuntimeType` supports = and !=. notebookRuntimeType enum: [USER_DEFINED, ONE_CLICK]. * `machineType` supports = and !=. * `acceleratorType` supports = and !=. Some examples: * `notebookRuntimeTemplate=notebookRuntimeTemplate123` * `displayName="myDisplayName"` * `labels.myKey="myValue"` * `notebookRuntimeType=USER_DEFINED` * `machineType=e2-standard-4` * `acceleratorType=NVIDIA_TESLA_T4` */
|
|
27806
28126
|
filter?: string;
|
|
27807
28127
|
/** 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. */
|
|
27808
28128
|
key?: string;
|
|
@@ -27951,7 +28271,7 @@ declare namespace gapi.client {
|
|
|
27951
28271
|
operations: OperationsResource;
|
|
27952
28272
|
}
|
|
27953
28273
|
interface OperationsResource {
|
|
27954
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
28274
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
27955
28275
|
cancel(request?: {
|
|
27956
28276
|
/** V1 error format. */
|
|
27957
28277
|
'$.xgafv'?: string;
|
|
@@ -28096,7 +28416,7 @@ declare namespace gapi.client {
|
|
|
28096
28416
|
}): Request<GoogleLongrunningOperation>;
|
|
28097
28417
|
}
|
|
28098
28418
|
interface OperationsResource {
|
|
28099
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
28419
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
28100
28420
|
cancel(request?: {
|
|
28101
28421
|
/** V1 error format. */
|
|
28102
28422
|
'$.xgafv'?: string;
|
|
@@ -28511,7 +28831,7 @@ declare namespace gapi.client {
|
|
|
28511
28831
|
operations: OperationsResource;
|
|
28512
28832
|
}
|
|
28513
28833
|
interface OperationsResource {
|
|
28514
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
28834
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
28515
28835
|
cancel(request?: {
|
|
28516
28836
|
/** V1 error format. */
|
|
28517
28837
|
'$.xgafv'?: string;
|
|
@@ -29599,7 +29919,7 @@ declare namespace gapi.client {
|
|
|
29599
29919
|
models: ModelsResource;
|
|
29600
29920
|
}
|
|
29601
29921
|
interface OperationsResource {
|
|
29602
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
29922
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
29603
29923
|
cancel(request?: {
|
|
29604
29924
|
/** V1 error format. */
|
|
29605
29925
|
'$.xgafv'?: string;
|
|
@@ -29744,7 +30064,7 @@ declare namespace gapi.client {
|
|
|
29744
30064
|
}): Request<GoogleLongrunningOperation>;
|
|
29745
30065
|
}
|
|
29746
30066
|
interface OperationsResource {
|
|
29747
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
30067
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
29748
30068
|
cancel(request?: {
|
|
29749
30069
|
/** V1 error format. */
|
|
29750
30070
|
'$.xgafv'?: string;
|
|
@@ -30242,7 +30562,7 @@ declare namespace gapi.client {
|
|
|
30242
30562
|
ragFiles: RagFilesResource;
|
|
30243
30563
|
}
|
|
30244
30564
|
interface OperationsResource {
|
|
30245
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
30565
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
30246
30566
|
cancel(request?: {
|
|
30247
30567
|
/** V1 error format. */
|
|
30248
30568
|
'$.xgafv'?: string;
|
|
@@ -30652,10 +30972,68 @@ declare namespace gapi.client {
|
|
|
30652
30972
|
},
|
|
30653
30973
|
body: GoogleCloudAiplatformV1beta1QueryReasoningEngineRequest
|
|
30654
30974
|
): Request<GoogleCloudAiplatformV1beta1QueryReasoningEngineResponse>;
|
|
30975
|
+
/** Streams queries using a reasoning engine. */
|
|
30976
|
+
streamQuery(request: {
|
|
30977
|
+
/** V1 error format. */
|
|
30978
|
+
'$.xgafv'?: string;
|
|
30979
|
+
/** OAuth access token. */
|
|
30980
|
+
access_token?: string;
|
|
30981
|
+
/** Data format for response. */
|
|
30982
|
+
alt?: string;
|
|
30983
|
+
/** JSONP */
|
|
30984
|
+
callback?: string;
|
|
30985
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
30986
|
+
fields?: string;
|
|
30987
|
+
/** 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. */
|
|
30988
|
+
key?: string;
|
|
30989
|
+
/** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
30990
|
+
name: string;
|
|
30991
|
+
/** OAuth 2.0 token for the current user. */
|
|
30992
|
+
oauth_token?: string;
|
|
30993
|
+
/** Returns response with indentations and line breaks. */
|
|
30994
|
+
prettyPrint?: boolean;
|
|
30995
|
+
/** 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. */
|
|
30996
|
+
quotaUser?: string;
|
|
30997
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
30998
|
+
upload_protocol?: string;
|
|
30999
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31000
|
+
uploadType?: string;
|
|
31001
|
+
/** Request body */
|
|
31002
|
+
resource: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest;
|
|
31003
|
+
}): Request<GoogleApiHttpBody>;
|
|
31004
|
+
streamQuery(
|
|
31005
|
+
request: {
|
|
31006
|
+
/** V1 error format. */
|
|
31007
|
+
'$.xgafv'?: string;
|
|
31008
|
+
/** OAuth access token. */
|
|
31009
|
+
access_token?: string;
|
|
31010
|
+
/** Data format for response. */
|
|
31011
|
+
alt?: string;
|
|
31012
|
+
/** JSONP */
|
|
31013
|
+
callback?: string;
|
|
31014
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
31015
|
+
fields?: string;
|
|
31016
|
+
/** 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. */
|
|
31017
|
+
key?: string;
|
|
31018
|
+
/** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
31019
|
+
name: string;
|
|
31020
|
+
/** OAuth 2.0 token for the current user. */
|
|
31021
|
+
oauth_token?: string;
|
|
31022
|
+
/** Returns response with indentations and line breaks. */
|
|
31023
|
+
prettyPrint?: boolean;
|
|
31024
|
+
/** 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. */
|
|
31025
|
+
quotaUser?: string;
|
|
31026
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
31027
|
+
upload_protocol?: string;
|
|
31028
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
31029
|
+
uploadType?: string;
|
|
31030
|
+
},
|
|
31031
|
+
body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest
|
|
31032
|
+
): Request<GoogleApiHttpBody>;
|
|
30655
31033
|
operations: OperationsResource;
|
|
30656
31034
|
}
|
|
30657
31035
|
interface OperationsResource {
|
|
30658
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
31036
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
30659
31037
|
cancel(request?: {
|
|
30660
31038
|
/** V1 error format. */
|
|
30661
31039
|
'$.xgafv'?: string;
|
|
@@ -31220,7 +31598,7 @@ declare namespace gapi.client {
|
|
|
31220
31598
|
operations: OperationsResource;
|
|
31221
31599
|
}
|
|
31222
31600
|
interface OperationsResource {
|
|
31223
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
31601
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
31224
31602
|
cancel(request?: {
|
|
31225
31603
|
/** V1 error format. */
|
|
31226
31604
|
'$.xgafv'?: string;
|
|
@@ -31577,7 +31955,7 @@ declare namespace gapi.client {
|
|
|
31577
31955
|
operations: OperationsResource;
|
|
31578
31956
|
}
|
|
31579
31957
|
interface OperationsResource {
|
|
31580
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
31958
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
31581
31959
|
cancel(request?: {
|
|
31582
31960
|
/** V1 error format. */
|
|
31583
31961
|
'$.xgafv'?: string;
|
|
@@ -31722,7 +32100,7 @@ declare namespace gapi.client {
|
|
|
31722
32100
|
}): Request<GoogleLongrunningOperation>;
|
|
31723
32101
|
}
|
|
31724
32102
|
interface OperationsResource {
|
|
31725
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
32103
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
31726
32104
|
cancel(request?: {
|
|
31727
32105
|
/** V1 error format. */
|
|
31728
32106
|
'$.xgafv'?: string;
|
|
@@ -32566,7 +32944,7 @@ declare namespace gapi.client {
|
|
|
32566
32944
|
trials: TrialsResource;
|
|
32567
32945
|
}
|
|
32568
32946
|
interface OperationsResource {
|
|
32569
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
32947
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
32570
32948
|
cancel(request?: {
|
|
32571
32949
|
/** V1 error format. */
|
|
32572
32950
|
'$.xgafv'?: string;
|
|
@@ -32711,7 +33089,7 @@ declare namespace gapi.client {
|
|
|
32711
33089
|
}): Request<GoogleLongrunningOperation>;
|
|
32712
33090
|
}
|
|
32713
33091
|
interface OperationsResource {
|
|
32714
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
33092
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
32715
33093
|
cancel(request?: {
|
|
32716
33094
|
/** V1 error format. */
|
|
32717
33095
|
'$.xgafv'?: string;
|
|
@@ -32856,7 +33234,7 @@ declare namespace gapi.client {
|
|
|
32856
33234
|
}): Request<GoogleLongrunningOperation>;
|
|
32857
33235
|
}
|
|
32858
33236
|
interface OperationsResource {
|
|
32859
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
33237
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
32860
33238
|
cancel(request?: {
|
|
32861
33239
|
/** V1 error format. */
|
|
32862
33240
|
'$.xgafv'?: string;
|
|
@@ -34007,7 +34385,7 @@ declare namespace gapi.client {
|
|
|
34007
34385
|
runs: RunsResource;
|
|
34008
34386
|
}
|
|
34009
34387
|
interface OperationsResource {
|
|
34010
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
34388
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
34011
34389
|
cancel(request?: {
|
|
34012
34390
|
/** V1 error format. */
|
|
34013
34391
|
'$.xgafv'?: string;
|
|
@@ -34450,7 +34828,7 @@ declare namespace gapi.client {
|
|
|
34450
34828
|
operations: OperationsResource;
|
|
34451
34829
|
}
|
|
34452
34830
|
interface OperationsResource {
|
|
34453
|
-
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1
|
|
34831
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
34454
34832
|
cancel(request?: {
|
|
34455
34833
|
/** V1 error format. */
|
|
34456
34834
|
'$.xgafv'?: string;
|
|
@@ -35185,6 +35563,64 @@ declare namespace gapi.client {
|
|
|
35185
35563
|
},
|
|
35186
35564
|
body: GoogleCloudAiplatformV1beta1CorroborateContentRequest
|
|
35187
35565
|
): Request<GoogleCloudAiplatformV1beta1CorroborateContentResponse>;
|
|
35566
|
+
/** Deploys publisher models. */
|
|
35567
|
+
deploy(request: {
|
|
35568
|
+
/** V1 error format. */
|
|
35569
|
+
'$.xgafv'?: string;
|
|
35570
|
+
/** OAuth access token. */
|
|
35571
|
+
access_token?: string;
|
|
35572
|
+
/** Data format for response. */
|
|
35573
|
+
alt?: string;
|
|
35574
|
+
/** JSONP */
|
|
35575
|
+
callback?: string;
|
|
35576
|
+
/** Required. The resource name of the Location to deploy the model in. Format: `projects/{project}/locations/{location}` */
|
|
35577
|
+
destination: string;
|
|
35578
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
35579
|
+
fields?: string;
|
|
35580
|
+
/** 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. */
|
|
35581
|
+
key?: string;
|
|
35582
|
+
/** OAuth 2.0 token for the current user. */
|
|
35583
|
+
oauth_token?: string;
|
|
35584
|
+
/** Returns response with indentations and line breaks. */
|
|
35585
|
+
prettyPrint?: boolean;
|
|
35586
|
+
/** 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. */
|
|
35587
|
+
quotaUser?: string;
|
|
35588
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
35589
|
+
upload_protocol?: string;
|
|
35590
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
35591
|
+
uploadType?: string;
|
|
35592
|
+
/** Request body */
|
|
35593
|
+
resource: GoogleCloudAiplatformV1beta1DeployPublisherModelRequest;
|
|
35594
|
+
}): Request<GoogleLongrunningOperation>;
|
|
35595
|
+
deploy(
|
|
35596
|
+
request: {
|
|
35597
|
+
/** V1 error format. */
|
|
35598
|
+
'$.xgafv'?: string;
|
|
35599
|
+
/** OAuth access token. */
|
|
35600
|
+
access_token?: string;
|
|
35601
|
+
/** Data format for response. */
|
|
35602
|
+
alt?: string;
|
|
35603
|
+
/** JSONP */
|
|
35604
|
+
callback?: string;
|
|
35605
|
+
/** Required. The resource name of the Location to deploy the model in. Format: `projects/{project}/locations/{location}` */
|
|
35606
|
+
destination: string;
|
|
35607
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
35608
|
+
fields?: string;
|
|
35609
|
+
/** 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. */
|
|
35610
|
+
key?: string;
|
|
35611
|
+
/** OAuth 2.0 token for the current user. */
|
|
35612
|
+
oauth_token?: string;
|
|
35613
|
+
/** Returns response with indentations and line breaks. */
|
|
35614
|
+
prettyPrint?: boolean;
|
|
35615
|
+
/** 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. */
|
|
35616
|
+
quotaUser?: string;
|
|
35617
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
35618
|
+
upload_protocol?: string;
|
|
35619
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
35620
|
+
uploadType?: string;
|
|
35621
|
+
},
|
|
35622
|
+
body: GoogleCloudAiplatformV1beta1DeployPublisherModelRequest
|
|
35623
|
+
): Request<GoogleLongrunningOperation>;
|
|
35188
35624
|
/** Evaluates instances based on a given metric. */
|
|
35189
35625
|
evaluateInstances(request: {
|
|
35190
35626
|
/** V1 error format. */
|
|
@@ -35720,6 +36156,8 @@ declare namespace gapi.client {
|
|
|
35720
36156
|
key?: string;
|
|
35721
36157
|
/** Optional. The IETF BCP-47 language code representing the language in which the publisher models' text information should be written in. If not set, by default English (en). */
|
|
35722
36158
|
languageCode?: string;
|
|
36159
|
+
/** Optional. List all publisher model versions if the flag is set to true. */
|
|
36160
|
+
listAllVersions?: boolean;
|
|
35723
36161
|
/** OAuth 2.0 token for the current user. */
|
|
35724
36162
|
oauth_token?: string;
|
|
35725
36163
|
/** Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. */
|