@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20241112 → 0.0.20241119

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +154 -50
  2. 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: 20241112
12
+ // Revision: 20241119
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;
@@ -2198,6 +2210,10 @@ declare namespace gapi.client {
2198
2210
  privateServiceConnectConfig?: GoogleCloudAiplatformV1beta1ExtensionPrivateServiceConnectConfig;
2199
2211
  /** Optional. Runtime config controlling the runtime behavior of this Extension. */
2200
2212
  runtimeConfig?: GoogleCloudAiplatformV1beta1RuntimeConfig;
2213
+ /** Output only. Reserved for future use. */
2214
+ satisfiesPzi?: boolean;
2215
+ /** Output only. Reserved for future use. */
2216
+ satisfiesPzs?: boolean;
2201
2217
  /** Optional. Examples to illustrate the usage of the extension as a tool. */
2202
2218
  toolUseExamples?: GoogleCloudAiplatformV1beta1ToolUseExample[];
2203
2219
  /** Output only. Timestamp when this Extension was most recently updated. */
@@ -2232,6 +2248,8 @@ declare namespace gapi.client {
2232
2248
  interface GoogleCloudAiplatformV1beta1Fact {
2233
2249
  /** Query that is used to retrieve this fact. */
2234
2250
  query?: string;
2251
+ /** 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. */
2252
+ score?: number;
2235
2253
  /** If present, the summary/snippet of the fact. */
2236
2254
  summary?: string;
2237
2255
  /** If present, it refers to the title of this fact. */
@@ -3249,8 +3267,10 @@ declare namespace gapi.client {
3249
3267
  partialFailureGcsSink?: GoogleCloudAiplatformV1beta1GcsDestination;
3250
3268
  /** Specifies the size and overlap of chunks after importing RagFiles. */
3251
3269
  ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
3252
- /** Specifies the parsing config for RagFiles. */
3270
+ /** Optional. Specifies the parsing config for RagFiles. RAG will use the default parser if this field is not set. */
3253
3271
  ragFileParsingConfig?: GoogleCloudAiplatformV1beta1RagFileParsingConfig;
3272
+ /** Specifies the transformation config for RagFiles. */
3273
+ ragFileTransformationConfig?: GoogleCloudAiplatformV1beta1RagFileTransformationConfig;
3254
3274
  /** SharePoint sources. */
3255
3275
  sharePointSources?: GoogleCloudAiplatformV1beta1SharePointSources;
3256
3276
  /** Slack channels with their corresponding access tokens. */
@@ -5931,6 +5951,10 @@ declare namespace gapi.client {
5931
5951
  interface GoogleCloudAiplatformV1beta1RagContextsContext {
5932
5952
  /** The distance between the query dense embedding vector and the context text vector. */
5933
5953
  distance?: number;
5954
+ /** 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. */
5955
+ score?: number;
5956
+ /** The file display name. */
5957
+ sourceDisplayName?: string;
5934
5958
  /** 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
5959
  sourceUri?: string;
5936
5960
  /** The distance between the query sparse embedding vector and the context text vector. */
@@ -5955,6 +5979,10 @@ declare namespace gapi.client {
5955
5979
  ragVectorDbConfig?: GoogleCloudAiplatformV1beta1RagVectorDbConfig;
5956
5980
  /** Output only. Timestamp when this RagCorpus was last updated. */
5957
5981
  updateTime?: string;
5982
+ /** Optional. Immutable. The config for the Vector DBs. */
5983
+ vectorDbConfig?: GoogleCloudAiplatformV1beta1RagVectorDbConfig;
5984
+ /** Optional. Immutable. The config for the Vertex AI Search. */
5985
+ vertexAiSearchConfig?: GoogleCloudAiplatformV1beta1VertexAiSearchConfig;
5958
5986
  }
5959
5987
  interface GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig {
5960
5988
  /** Configuration for hybrid search. */
@@ -6023,12 +6051,40 @@ declare namespace gapi.client {
6023
6051
  chunkOverlap?: number;
6024
6052
  /** The size of the chunks. */
6025
6053
  chunkSize?: number;
6054
+ /** Specifies the fixed length chunking config. */
6055
+ fixedLengthChunking?: GoogleCloudAiplatformV1beta1RagFileChunkingConfigFixedLengthChunking;
6056
+ }
6057
+ interface GoogleCloudAiplatformV1beta1RagFileChunkingConfigFixedLengthChunking {
6058
+ /** The overlap between chunks. */
6059
+ chunkOverlap?: number;
6060
+ /** The size of the chunks. */
6061
+ chunkSize?: number;
6026
6062
  }
6027
6063
  interface GoogleCloudAiplatformV1beta1RagFileParsingConfig {
6064
+ /** The Advanced Parser to use for RagFiles. */
6065
+ advancedParser?: GoogleCloudAiplatformV1beta1RagFileParsingConfigAdvancedParser;
6066
+ /** The Layout Parser to use for RagFiles. */
6067
+ layoutParser?: GoogleCloudAiplatformV1beta1RagFileParsingConfigLayoutParser;
6028
6068
  /** Whether to use advanced PDF parsing. */
6029
6069
  useAdvancedPdfParsing?: boolean;
6030
6070
  }
6071
+ interface GoogleCloudAiplatformV1beta1RagFileParsingConfigAdvancedParser {
6072
+ /** Whether to use advanced PDF parsing. */
6073
+ useAdvancedPdfParsing?: boolean;
6074
+ }
6075
+ interface GoogleCloudAiplatformV1beta1RagFileParsingConfigLayoutParser {
6076
+ /** 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. */
6077
+ maxParsingRequestsPerMin?: number;
6078
+ /** 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}` */
6079
+ processorName?: string;
6080
+ }
6081
+ interface GoogleCloudAiplatformV1beta1RagFileTransformationConfig {
6082
+ /** Specifies the chunking config for RagFiles. */
6083
+ ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
6084
+ }
6031
6085
  interface GoogleCloudAiplatformV1beta1RagQuery {
6086
+ /** Optional. The retrieval config for the query. */
6087
+ ragRetrievalConfig?: GoogleCloudAiplatformV1beta1RagRetrievalConfig;
6032
6088
  /** Optional. Configurations for hybrid search results ranking. */
6033
6089
  ranking?: GoogleCloudAiplatformV1beta1RagQueryRanking;
6034
6090
  /** Optional. The number of contexts to retrieve. */
@@ -6040,11 +6096,49 @@ declare namespace gapi.client {
6040
6096
  /** 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
6097
  alpha?: number;
6042
6098
  }
6099
+ interface GoogleCloudAiplatformV1beta1RagRetrievalConfig {
6100
+ /** Optional. Config for filters. */
6101
+ filter?: GoogleCloudAiplatformV1beta1RagRetrievalConfigFilter;
6102
+ /** Optional. Config for Hybrid Search. */
6103
+ hybridSearch?: GoogleCloudAiplatformV1beta1RagRetrievalConfigHybridSearch;
6104
+ /** Optional. Config for ranking and reranking. */
6105
+ ranking?: GoogleCloudAiplatformV1beta1RagRetrievalConfigRanking;
6106
+ /** Optional. The number of contexts to retrieve. */
6107
+ topK?: number;
6108
+ }
6109
+ interface GoogleCloudAiplatformV1beta1RagRetrievalConfigFilter {
6110
+ /** Optional. String for metadata filtering. */
6111
+ metadataFilter?: string;
6112
+ /** Optional. Only returns contexts with vector distance smaller than the threshold. */
6113
+ vectorDistanceThreshold?: number;
6114
+ /** Optional. Only returns contexts with vector similarity larger than the threshold. */
6115
+ vectorSimilarityThreshold?: number;
6116
+ }
6117
+ interface GoogleCloudAiplatformV1beta1RagRetrievalConfigHybridSearch {
6118
+ /** 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. */
6119
+ alpha?: number;
6120
+ }
6121
+ interface GoogleCloudAiplatformV1beta1RagRetrievalConfigRanking {
6122
+ /** Optional. Config for LlmRanker. */
6123
+ llmRanker?: GoogleCloudAiplatformV1beta1RagRetrievalConfigRankingLlmRanker;
6124
+ /** Optional. Config for Rank Service. */
6125
+ rankService?: GoogleCloudAiplatformV1beta1RagRetrievalConfigRankingRankService;
6126
+ }
6127
+ interface GoogleCloudAiplatformV1beta1RagRetrievalConfigRankingLlmRanker {
6128
+ /** Optional. The model name used for ranking. Format: `gemini-1.5-pro` */
6129
+ modelName?: string;
6130
+ }
6131
+ interface GoogleCloudAiplatformV1beta1RagRetrievalConfigRankingRankService {
6132
+ /** Optional. The model name of the rank service. Format: `semantic-ranker-512@latest` */
6133
+ modelName?: string;
6134
+ }
6043
6135
  interface GoogleCloudAiplatformV1beta1RagVectorDbConfig {
6044
6136
  /** Authentication config for the chosen Vector DB. */
6045
6137
  apiAuth?: GoogleCloudAiplatformV1beta1ApiAuth;
6046
6138
  /** The config for the Pinecone. */
6047
6139
  pinecone?: GoogleCloudAiplatformV1beta1RagVectorDbConfigPinecone;
6140
+ /** Optional. Immutable. The embedding model config of the Vector DB. */
6141
+ ragEmbeddingModelConfig?: GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig;
6048
6142
  /** The config for the RAG-managed Vector DB. */
6049
6143
  ragManagedDb?: any;
6050
6144
  /** The config for the Vertex Feature Store. */
@@ -9112,6 +9206,8 @@ declare namespace gapi.client {
9112
9206
  partnerModelTuningSpec?: GoogleCloudAiplatformV1beta1PartnerModelTuningSpec;
9113
9207
  /** Output only. The resource name of the PipelineJob associated with the TuningJob. Format: `projects/{project}/locations/{location}/pipelineJobs/{pipeline_job}`. */
9114
9208
  pipelineJob?: string;
9209
+ /** 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. */
9210
+ serviceAccount?: string;
9115
9211
  /** Output only. Time when the TuningJob for the first time entered the `JOB_STATE_RUNNING` state. */
9116
9212
  startTime?: string;
9117
9213
  /** Output only. The detailed state of the job. */
@@ -9256,6 +9352,8 @@ declare namespace gapi.client {
9256
9352
  interface GoogleCloudAiplatformV1beta1UploadRagFileConfig {
9257
9353
  /** Specifies the size and overlap of chunks after uploading RagFile. */
9258
9354
  ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
9355
+ /** Specifies the transformation config for RagFiles. */
9356
+ ragFileTransformationConfig?: GoogleCloudAiplatformV1beta1RagFileTransformationConfig;
9259
9357
  }
9260
9358
  interface GoogleCloudAiplatformV1beta1UploadRagFileRequest {
9261
9359
  /** Required. The RagFile to upload. */
@@ -9296,11 +9394,17 @@ declare namespace gapi.client {
9296
9394
  /** Required. Fully-qualified Vertex AI Search data store resource ID. Format: `projects/{project}/locations/{location}/collections/{collection}/dataStores/{dataStore}` */
9297
9395
  datastore?: string;
9298
9396
  }
9397
+ interface GoogleCloudAiplatformV1beta1VertexAiSearchConfig {
9398
+ /** 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}`. */
9399
+ servingConfig?: string;
9400
+ }
9299
9401
  interface GoogleCloudAiplatformV1beta1VertexRagStore {
9300
9402
  /** Optional. Deprecated. Please use rag_resources instead. */
9301
9403
  ragCorpora?: string[];
9302
9404
  /** 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
9405
  ragResources?: GoogleCloudAiplatformV1beta1VertexRagStoreRagResource[];
9406
+ /** Optional. The retrieval config for the Rag query. */
9407
+ ragRetrievalConfig?: GoogleCloudAiplatformV1beta1RagRetrievalConfig;
9304
9408
  /** Optional. Number of top k results to return from the selected corpora. */
9305
9409
  similarityTopK?: number;
9306
9410
  /** Optional. Only return results with vector distance smaller than the threshold. */
@@ -10239,7 +10343,7 @@ declare namespace gapi.client {
10239
10343
  ): Request<GoogleCloudAiplatformV1beta1UploadRagFileResponse>;
10240
10344
  }
10241
10345
  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, corresponding to `Code.CANCELLED`. */
10346
+ /** 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
10347
  cancel(request?: {
10244
10348
  /** V1 error format. */
10245
10349
  '$.xgafv'?: string;
@@ -10387,7 +10491,7 @@ declare namespace gapi.client {
10387
10491
  operations: OperationsResource;
10388
10492
  }
10389
10493
  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, corresponding to `Code.CANCELLED`. */
10494
+ /** 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
10495
  cancel(request?: {
10392
10496
  /** V1 error format. */
10393
10497
  '$.xgafv'?: string;
@@ -10949,7 +11053,7 @@ declare namespace gapi.client {
10949
11053
  ): Request<GoogleCloudAiplatformV1beta1CachedContent>;
10950
11054
  }
10951
11055
  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, corresponding to `Code.CANCELLED`. */
11056
+ /** 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
11057
  cancel(request?: {
10954
11058
  /** V1 error format. */
10955
11059
  '$.xgafv'?: string;
@@ -11302,7 +11406,7 @@ declare namespace gapi.client {
11302
11406
  operations: OperationsResource;
11303
11407
  }
11304
11408
  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, corresponding to `Code.CANCELLED`. */
11409
+ /** 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
11410
  cancel(request?: {
11307
11411
  /** V1 error format. */
11308
11412
  '$.xgafv'?: string;
@@ -11657,7 +11761,7 @@ declare namespace gapi.client {
11657
11761
  operations: OperationsResource;
11658
11762
  }
11659
11763
  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, corresponding to `Code.CANCELLED`. */
11764
+ /** 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
11765
  cancel(request?: {
11662
11766
  /** V1 error format. */
11663
11767
  '$.xgafv'?: string;
@@ -11834,7 +11938,7 @@ declare namespace gapi.client {
11834
11938
  operations: OperationsResource;
11835
11939
  }
11836
11940
  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, corresponding to `Code.CANCELLED`. */
11941
+ /** 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
11942
  cancel(request?: {
11839
11943
  /** V1 error format. */
11840
11944
  '$.xgafv'?: string;
@@ -12019,7 +12123,7 @@ declare namespace gapi.client {
12019
12123
  operations: OperationsResource;
12020
12124
  }
12021
12125
  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, corresponding to `Code.CANCELLED`. */
12126
+ /** 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
12127
  cancel(request?: {
12024
12128
  /** V1 error format. */
12025
12129
  '$.xgafv'?: string;
@@ -12447,7 +12551,7 @@ declare namespace gapi.client {
12447
12551
  }): Request<GoogleLongrunningOperation>;
12448
12552
  }
12449
12553
  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, corresponding to `Code.CANCELLED`. */
12554
+ /** 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
12555
  cancel(request?: {
12452
12556
  /** V1 error format. */
12453
12557
  '$.xgafv'?: string;
@@ -12592,7 +12696,7 @@ declare namespace gapi.client {
12592
12696
  }): Request<GoogleLongrunningOperation>;
12593
12697
  }
12594
12698
  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, corresponding to `Code.CANCELLED`. */
12699
+ /** 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
12700
  cancel(request?: {
12597
12701
  /** V1 error format. */
12598
12702
  '$.xgafv'?: string;
@@ -13193,7 +13297,7 @@ declare namespace gapi.client {
13193
13297
  savedQueries: SavedQueriesResource;
13194
13298
  }
13195
13299
  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, corresponding to `Code.CANCELLED`. */
13300
+ /** 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
13301
  cancel(request?: {
13198
13302
  /** V1 error format. */
13199
13303
  '$.xgafv'?: string;
@@ -13577,7 +13681,7 @@ declare namespace gapi.client {
13577
13681
  operations: OperationsResource;
13578
13682
  }
13579
13683
  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, corresponding to `Code.CANCELLED`. */
13684
+ /** 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
13685
  cancel(request?: {
13582
13686
  /** V1 error format. */
13583
13687
  '$.xgafv'?: string;
@@ -13785,7 +13889,7 @@ declare namespace gapi.client {
13785
13889
  ): Request<GoogleApiHttpBody>;
13786
13890
  }
13787
13891
  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, corresponding to `Code.CANCELLED`. */
13892
+ /** 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
13893
  cancel(request?: {
13790
13894
  /** V1 error format. */
13791
13895
  '$.xgafv'?: string;
@@ -15341,7 +15445,7 @@ declare namespace gapi.client {
15341
15445
  operations: OperationsResource;
15342
15446
  }
15343
15447
  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, corresponding to `Code.CANCELLED`. */
15448
+ /** 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
15449
  cancel(request?: {
15346
15450
  /** V1 error format. */
15347
15451
  '$.xgafv'?: string;
@@ -15489,7 +15593,7 @@ declare namespace gapi.client {
15489
15593
  operations: OperationsResource;
15490
15594
  }
15491
15595
  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, corresponding to `Code.CANCELLED`. */
15596
+ /** 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
15597
  cancel(request?: {
15494
15598
  /** V1 error format. */
15495
15599
  '$.xgafv'?: string;
@@ -15637,7 +15741,7 @@ declare namespace gapi.client {
15637
15741
  operations: OperationsResource;
15638
15742
  }
15639
15743
  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, corresponding to `Code.CANCELLED`. */
15744
+ /** 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
15745
  cancel(request?: {
15642
15746
  /** V1 error format. */
15643
15747
  '$.xgafv'?: string;
@@ -18397,7 +18501,7 @@ declare namespace gapi.client {
18397
18501
  operations: OperationsResource;
18398
18502
  }
18399
18503
  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, corresponding to `Code.CANCELLED`. */
18504
+ /** 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
18505
  cancel(request?: {
18402
18506
  /** V1 error format. */
18403
18507
  '$.xgafv'?: string;
@@ -18826,7 +18930,7 @@ declare namespace gapi.client {
18826
18930
  operations: OperationsResource;
18827
18931
  }
18828
18932
  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, corresponding to `Code.CANCELLED`. */
18933
+ /** 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
18934
  cancel(request?: {
18831
18935
  /** V1 error format. */
18832
18936
  '$.xgafv'?: string;
@@ -19628,7 +19732,7 @@ declare namespace gapi.client {
19628
19732
  operations: OperationsResource;
19629
19733
  }
19630
19734
  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, corresponding to `Code.CANCELLED`. */
19735
+ /** 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
19736
  cancel(request?: {
19633
19737
  /** V1 error format. */
19634
19738
  '$.xgafv'?: string;
@@ -20175,7 +20279,7 @@ declare namespace gapi.client {
20175
20279
  operations: OperationsResource;
20176
20280
  }
20177
20281
  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, corresponding to `Code.CANCELLED`. */
20282
+ /** 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
20283
  cancel(request?: {
20180
20284
  /** V1 error format. */
20181
20285
  '$.xgafv'?: string;
@@ -20528,7 +20632,7 @@ declare namespace gapi.client {
20528
20632
  operations: OperationsResource;
20529
20633
  }
20530
20634
  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, corresponding to `Code.CANCELLED`. */
20635
+ /** 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
20636
  cancel(request?: {
20533
20637
  /** V1 error format. */
20534
20638
  '$.xgafv'?: string;
@@ -21175,7 +21279,7 @@ declare namespace gapi.client {
21175
21279
  operations: OperationsResource;
21176
21280
  }
21177
21281
  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, corresponding to `Code.CANCELLED`. */
21282
+ /** 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
21283
  cancel(request?: {
21180
21284
  /** V1 error format. */
21181
21285
  '$.xgafv'?: string;
@@ -21648,7 +21752,7 @@ declare namespace gapi.client {
21648
21752
  operations: OperationsResource;
21649
21753
  }
21650
21754
  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, corresponding to `Code.CANCELLED`. */
21755
+ /** 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
21756
  cancel(request?: {
21653
21757
  /** V1 error format. */
21654
21758
  '$.xgafv'?: string;
@@ -22104,7 +22208,7 @@ declare namespace gapi.client {
22104
22208
  operations: OperationsResource;
22105
22209
  }
22106
22210
  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, corresponding to `Code.CANCELLED`. */
22211
+ /** 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
22212
  cancel(request?: {
22109
22213
  /** V1 error format. */
22110
22214
  '$.xgafv'?: string;
@@ -22732,7 +22836,7 @@ declare namespace gapi.client {
22732
22836
  operations: OperationsResource;
22733
22837
  }
22734
22838
  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, corresponding to `Code.CANCELLED`. */
22839
+ /** 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
22840
  cancel(request?: {
22737
22841
  /** V1 error format. */
22738
22842
  '$.xgafv'?: string;
@@ -23366,7 +23470,7 @@ declare namespace gapi.client {
23366
23470
  }): Request<GoogleCloudAiplatformV1beta1ListMetadataSchemasResponse>;
23367
23471
  }
23368
23472
  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, corresponding to `Code.CANCELLED`. */
23473
+ /** 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
23474
  cancel(request?: {
23371
23475
  /** V1 error format. */
23372
23476
  '$.xgafv'?: string;
@@ -23667,7 +23771,7 @@ declare namespace gapi.client {
23667
23771
  operations: OperationsResource;
23668
23772
  }
23669
23773
  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, corresponding to `Code.CANCELLED`. */
23774
+ /** 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
23775
  cancel(request?: {
23672
23776
  /** V1 error format. */
23673
23777
  '$.xgafv'?: string;
@@ -23931,7 +24035,7 @@ declare namespace gapi.client {
23931
24035
  operations: OperationsResource;
23932
24036
  }
23933
24037
  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, corresponding to `Code.CANCELLED`. */
24038
+ /** 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
24039
  cancel(request?: {
23936
24040
  /** V1 error format. */
23937
24041
  '$.xgafv'?: string;
@@ -24615,7 +24719,7 @@ declare namespace gapi.client {
24615
24719
  }): Request<GoogleCloudAiplatformV1beta1ListModelMonitoringJobsResponse>;
24616
24720
  }
24617
24721
  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, corresponding to `Code.CANCELLED`. */
24722
+ /** 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
24723
  cancel(request?: {
24620
24724
  /** V1 error format. */
24621
24725
  '$.xgafv'?: string;
@@ -25095,7 +25199,7 @@ declare namespace gapi.client {
25095
25199
  operations: OperationsResource;
25096
25200
  }
25097
25201
  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, corresponding to `Code.CANCELLED`. */
25202
+ /** 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
25203
  cancel(request?: {
25100
25204
  /** V1 error format. */
25101
25205
  '$.xgafv'?: string;
@@ -25486,7 +25590,7 @@ declare namespace gapi.client {
25486
25590
  slices: SlicesResource;
25487
25591
  }
25488
25592
  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, corresponding to `Code.CANCELLED`. */
25593
+ /** 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
25594
  cancel(request?: {
25491
25595
  /** V1 error format. */
25492
25596
  '$.xgafv'?: string;
@@ -26496,7 +26600,7 @@ declare namespace gapi.client {
26496
26600
  nasTrialDetails: NasTrialDetailsResource;
26497
26601
  }
26498
26602
  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, corresponding to `Code.CANCELLED`. */
26603
+ /** 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
26604
  cancel(request?: {
26501
26605
  /** V1 error format. */
26502
26606
  '$.xgafv'?: string;
@@ -26914,7 +27018,7 @@ declare namespace gapi.client {
26914
27018
  operations: OperationsResource;
26915
27019
  }
26916
27020
  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, corresponding to `Code.CANCELLED`. */
27021
+ /** 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
27022
  cancel(request?: {
26919
27023
  /** V1 error format. */
26920
27024
  '$.xgafv'?: string;
@@ -27500,7 +27604,7 @@ declare namespace gapi.client {
27500
27604
  operations: OperationsResource;
27501
27605
  }
27502
27606
  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, corresponding to `Code.CANCELLED`. */
27607
+ /** 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
27608
  cancel(request?: {
27505
27609
  /** V1 error format. */
27506
27610
  '$.xgafv'?: string;
@@ -27951,7 +28055,7 @@ declare namespace gapi.client {
27951
28055
  operations: OperationsResource;
27952
28056
  }
27953
28057
  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, corresponding to `Code.CANCELLED`. */
28058
+ /** 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
28059
  cancel(request?: {
27956
28060
  /** V1 error format. */
27957
28061
  '$.xgafv'?: string;
@@ -28096,7 +28200,7 @@ declare namespace gapi.client {
28096
28200
  }): Request<GoogleLongrunningOperation>;
28097
28201
  }
28098
28202
  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, corresponding to `Code.CANCELLED`. */
28203
+ /** 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
28204
  cancel(request?: {
28101
28205
  /** V1 error format. */
28102
28206
  '$.xgafv'?: string;
@@ -28511,7 +28615,7 @@ declare namespace gapi.client {
28511
28615
  operations: OperationsResource;
28512
28616
  }
28513
28617
  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, corresponding to `Code.CANCELLED`. */
28618
+ /** 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
28619
  cancel(request?: {
28516
28620
  /** V1 error format. */
28517
28621
  '$.xgafv'?: string;
@@ -29599,7 +29703,7 @@ declare namespace gapi.client {
29599
29703
  models: ModelsResource;
29600
29704
  }
29601
29705
  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, corresponding to `Code.CANCELLED`. */
29706
+ /** 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
29707
  cancel(request?: {
29604
29708
  /** V1 error format. */
29605
29709
  '$.xgafv'?: string;
@@ -29744,7 +29848,7 @@ declare namespace gapi.client {
29744
29848
  }): Request<GoogleLongrunningOperation>;
29745
29849
  }
29746
29850
  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, corresponding to `Code.CANCELLED`. */
29851
+ /** 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
29852
  cancel(request?: {
29749
29853
  /** V1 error format. */
29750
29854
  '$.xgafv'?: string;
@@ -30242,7 +30346,7 @@ declare namespace gapi.client {
30242
30346
  ragFiles: RagFilesResource;
30243
30347
  }
30244
30348
  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, corresponding to `Code.CANCELLED`. */
30349
+ /** 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
30350
  cancel(request?: {
30247
30351
  /** V1 error format. */
30248
30352
  '$.xgafv'?: string;
@@ -30655,7 +30759,7 @@ declare namespace gapi.client {
30655
30759
  operations: OperationsResource;
30656
30760
  }
30657
30761
  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, corresponding to `Code.CANCELLED`. */
30762
+ /** 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
30763
  cancel(request?: {
30660
30764
  /** V1 error format. */
30661
30765
  '$.xgafv'?: string;
@@ -31220,7 +31324,7 @@ declare namespace gapi.client {
31220
31324
  operations: OperationsResource;
31221
31325
  }
31222
31326
  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, corresponding to `Code.CANCELLED`. */
31327
+ /** 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
31328
  cancel(request?: {
31225
31329
  /** V1 error format. */
31226
31330
  '$.xgafv'?: string;
@@ -31577,7 +31681,7 @@ declare namespace gapi.client {
31577
31681
  operations: OperationsResource;
31578
31682
  }
31579
31683
  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, corresponding to `Code.CANCELLED`. */
31684
+ /** 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
31685
  cancel(request?: {
31582
31686
  /** V1 error format. */
31583
31687
  '$.xgafv'?: string;
@@ -31722,7 +31826,7 @@ declare namespace gapi.client {
31722
31826
  }): Request<GoogleLongrunningOperation>;
31723
31827
  }
31724
31828
  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, corresponding to `Code.CANCELLED`. */
31829
+ /** 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
31830
  cancel(request?: {
31727
31831
  /** V1 error format. */
31728
31832
  '$.xgafv'?: string;
@@ -32566,7 +32670,7 @@ declare namespace gapi.client {
32566
32670
  trials: TrialsResource;
32567
32671
  }
32568
32672
  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, corresponding to `Code.CANCELLED`. */
32673
+ /** 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
32674
  cancel(request?: {
32571
32675
  /** V1 error format. */
32572
32676
  '$.xgafv'?: string;
@@ -32711,7 +32815,7 @@ declare namespace gapi.client {
32711
32815
  }): Request<GoogleLongrunningOperation>;
32712
32816
  }
32713
32817
  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, corresponding to `Code.CANCELLED`. */
32818
+ /** 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
32819
  cancel(request?: {
32716
32820
  /** V1 error format. */
32717
32821
  '$.xgafv'?: string;
@@ -32856,7 +32960,7 @@ declare namespace gapi.client {
32856
32960
  }): Request<GoogleLongrunningOperation>;
32857
32961
  }
32858
32962
  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, corresponding to `Code.CANCELLED`. */
32963
+ /** 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
32964
  cancel(request?: {
32861
32965
  /** V1 error format. */
32862
32966
  '$.xgafv'?: string;
@@ -34007,7 +34111,7 @@ declare namespace gapi.client {
34007
34111
  runs: RunsResource;
34008
34112
  }
34009
34113
  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, corresponding to `Code.CANCELLED`. */
34114
+ /** 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
34115
  cancel(request?: {
34012
34116
  /** V1 error format. */
34013
34117
  '$.xgafv'?: string;
@@ -34450,7 +34554,7 @@ declare namespace gapi.client {
34450
34554
  operations: OperationsResource;
34451
34555
  }
34452
34556
  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, corresponding to `Code.CANCELLED`. */
34557
+ /** 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
34558
  cancel(request?: {
34455
34559
  /** V1 error format. */
34456
34560
  '$.xgafv'?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.0.20241112",
3
+ "version": "0.0.20241119",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",