@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20240510 → 0.0.20240520

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 +201 -20
  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: 20240510
12
+ // Revision: 20240520
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -29,9 +29,9 @@ declare namespace gapi.client {
29
29
 
30
30
  namespace aiplatform {
31
31
  interface CloudAiLargeModelsVisionFilteredText {
32
- /** Confidence level */
33
- category?: string;
34
32
  /** Filtered category */
33
+ category?: string;
34
+ /** Confidence score */
35
35
  confidence?: string;
36
36
  /** Input prompt */
37
37
  prompt?: string;
@@ -86,11 +86,20 @@ declare namespace gapi.client {
86
86
  y2?: number;
87
87
  }
88
88
  interface CloudAiLargeModelsVisionRaiInfo {
89
+ detectedLabels?: CloudAiLargeModelsVisionRaiInfoDetectedLabels[];
89
90
  /** List of rai categories' information to return */
90
91
  raiCategories?: string[];
91
92
  /** List of rai scores mapping to the rai categories. Rounded to 1 decimal place. */
92
93
  scores?: number[];
93
94
  }
95
+ interface CloudAiLargeModelsVisionRaiInfoDetectedLabels {
96
+ /** Descriptions of the detected labels. */
97
+ descriptions?: string[];
98
+ /** The RAI category for the deteceted labels. */
99
+ raiCategory?: string;
100
+ /** Confidence scores mapping to the labels. */
101
+ scores?: number[];
102
+ }
94
103
  interface CloudAiLargeModelsVisionSemanticFilterResponse {
95
104
  /** Class labels of the bounding boxes that failed the semantic filtering. Bounding box coordinates. */
96
105
  namedBoundingBoxes?: CloudAiLargeModelsVisionNamedBoundingBox[];
@@ -1212,8 +1221,14 @@ declare namespace gapi.client {
1212
1221
  createTime?: string;
1213
1222
  /** Required. The underlying DedicatedResources that the DeploymentResourcePool uses. */
1214
1223
  dedicatedResources?: GoogleCloudAiplatformV1beta1DedicatedResources;
1224
+ /** If the DeploymentResourcePool is deployed with custom-trained Models or AutoML Tabular Models, the container(s) of the DeploymentResourcePool will send `stderr` and `stdout` streams to Cloud Logging by default. Please note that the logs incur cost, which are subject to [Cloud Logging pricing](https://cloud.google.com/logging/pricing). User can disable container logging by setting this flag to true. */
1225
+ disableContainerLogging?: boolean;
1226
+ /** Customer-managed encryption key spec for a DeploymentResourcePool. If set, this DeploymentResourcePool will be secured by this key. Endpoints and the DeploymentResourcePool they deploy in need to have the same EncryptionSpec. */
1227
+ encryptionSpec?: GoogleCloudAiplatformV1beta1EncryptionSpec;
1215
1228
  /** Immutable. The resource name of the DeploymentResourcePool. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
1216
1229
  name?: string;
1230
+ /** The service account that the DeploymentResourcePool's container(s) run as. Specify the email address of the service account. If this service account is not specified, the container(s) run as a service account that doesn't have access to the resource project. Users deploying the Models to this DeploymentResourcePool must have the `iam.serviceAccounts.actAs` permission on this service account. */
1231
+ serviceAccount?: string;
1217
1232
  }
1218
1233
  interface GoogleCloudAiplatformV1beta1DeployModelOperationMetadata {
1219
1234
  /** The operation generic information. */
@@ -1268,6 +1283,30 @@ declare namespace gapi.client {
1268
1283
  /** Type of the boot disk (default is "pd-ssd"). Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or "pd-standard" (Persistent Disk Hard Disk Drive). */
1269
1284
  bootDiskType?: string;
1270
1285
  }
1286
+ interface GoogleCloudAiplatformV1beta1DistillationHyperParameters {
1287
+ /** Optional. Adapter size for distillation. */
1288
+ adapterSize?: string;
1289
+ /** Optional. Number of complete passes the model makes over the entire training dataset during training. */
1290
+ epochCount?: string;
1291
+ /** Optional. Multiplier for adjusting the default learning rate. */
1292
+ learningRateMultiplier?: number;
1293
+ }
1294
+ interface GoogleCloudAiplatformV1beta1DistillationSpec {
1295
+ /** The base teacher model that is being distilled, e.g., "gemini-1.0-pro-002". */
1296
+ baseTeacherModel?: string;
1297
+ /** Optional. Hyperparameters for Distillation. */
1298
+ hyperParameters?: GoogleCloudAiplatformV1beta1DistillationHyperParameters;
1299
+ /** 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. */
1300
+ pipelineRootDirectory?: string;
1301
+ /** The student model that is being tuned, e.g., "google/gemma-2b-it". */
1302
+ studentModel?: string;
1303
+ /** Required. Cloud Storage path to file containing training dataset for tuning. The dataset must be formatted as a JSONL file. */
1304
+ trainingDatasetUri?: string;
1305
+ /** The resource name of the Tuned teacher model. Format: `projects/{project}/locations/{location}/models/{model}`. */
1306
+ tunedTeacherModelSource?: string;
1307
+ /** Optional. Cloud Storage path to file containing validation dataset for tuning. The dataset must be formatted as a JSONL file. */
1308
+ validationDatasetUri?: string;
1309
+ }
1271
1310
  interface GoogleCloudAiplatformV1beta1DoubleArray {
1272
1311
  /** A list of double values. */
1273
1312
  values?: number[];
@@ -2085,6 +2124,8 @@ declare namespace gapi.client {
2085
2124
  stringArrayValue?: GoogleCloudAiplatformV1beta1StringArray;
2086
2125
  /** String feature value. */
2087
2126
  stringValue?: string;
2127
+ /** A struct type feature value. */
2128
+ structValue?: GoogleCloudAiplatformV1beta1StructValue;
2088
2129
  }
2089
2130
  interface GoogleCloudAiplatformV1beta1FeatureValueDestination {
2090
2131
  /** Output in BigQuery format. BigQueryDestination.output_uri in FeatureValueDestination.bigquery_destination must refer to a table. */
@@ -2458,8 +2499,6 @@ declare namespace gapi.client {
2458
2499
  presencePenalty?: number;
2459
2500
  /** 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. */
2460
2501
  responseMimeType?: string;
2461
- /** Optional. Control Three levels of creativity in the model output. Default: RESPONSE_STYLE_BALANCED */
2462
- responseStyle?: string;
2463
2502
  /** Optional. Stop sequences. */
2464
2503
  stopSequences?: string[];
2465
2504
  /** Optional. Controls the randomness of predictions. */
@@ -2491,6 +2530,7 @@ declare namespace gapi.client {
2491
2530
  /** Required. The type of the Google Drive resource. */
2492
2531
  resourceType?: string;
2493
2532
  }
2533
+ interface GoogleCloudAiplatformV1beta1GoogleSearchRetrieval {}
2494
2534
  interface GoogleCloudAiplatformV1beta1GroundednessInput {
2495
2535
  /** Required. Groundedness instance. */
2496
2536
  instance?: GoogleCloudAiplatformV1beta1GroundednessInstance;
@@ -3206,6 +3246,8 @@ declare namespace gapi.client {
3206
3246
  interface GoogleCloudAiplatformV1beta1MetadataStore {
3207
3247
  /** Output only. Timestamp when this MetadataStore was created. */
3208
3248
  createTime?: string;
3249
+ /** Optional. Dataplex integration settings. */
3250
+ dataplexConfig?: GoogleCloudAiplatformV1beta1MetadataStoreDataplexConfig;
3209
3251
  /** Description of the MetadataStore. */
3210
3252
  description?: string;
3211
3253
  /** Customer-managed encryption key spec for a Metadata Store. If set, this Metadata Store and all sub-resources of this Metadata Store are secured using this key. */
@@ -3217,6 +3259,10 @@ declare namespace gapi.client {
3217
3259
  /** Output only. Timestamp when this MetadataStore was last updated. */
3218
3260
  updateTime?: string;
3219
3261
  }
3262
+ interface GoogleCloudAiplatformV1beta1MetadataStoreDataplexConfig {
3263
+ /** Optional. Whether or not Data Lineage synchronization is enabled for Vertex Pipelines. */
3264
+ enabledPipelinesLineage?: boolean;
3265
+ }
3220
3266
  interface GoogleCloudAiplatformV1beta1MetadataStoreMetadataStoreState {
3221
3267
  /** The disk utilization of the MetadataStore in bytes. */
3222
3268
  diskUtilizationBytes?: string;
@@ -3946,7 +3992,7 @@ declare namespace gapi.client {
3946
3992
  doubleValue?: number;
3947
3993
  }
3948
3994
  interface GoogleCloudAiplatformV1beta1ModelMonitoringStatsDataPointTypedValueDistributionDataValue {
3949
- /** tensorflow.metadata.v0.DatasetFeatureStatistics format. */
3995
+ /** Predictive monitoring drift distribution in `tensorflow.metadata.v0.DatasetFeatureStatistics` format. */
3950
3996
  distribution?: any;
3951
3997
  /** Distribution distance deviation from the current dataset's statistics to baseline dataset's statistics. * For categorical feature, the distribution distance is calculated by L-inifinity norm or Jensen–Shannon divergence. * For numerical feature, the distribution distance is calculated by Jensen–Shannon divergence. */
3952
3998
  distributionDeviation?: number;
@@ -4212,8 +4258,6 @@ declare namespace gapi.client {
4212
4258
  interface GoogleCloudAiplatformV1beta1NotebookExecutionJob {
4213
4259
  /** Output only. Timestamp when this NotebookExecutionJob was created. */
4214
4260
  createTime?: string;
4215
- /** The custom compute configuration for an execution job. */
4216
- customEnvironmentSpec?: GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec;
4217
4261
  /** The Dataform Repository pointing to a single file notebook repository. */
4218
4262
  dataformRepositorySource?: GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource;
4219
4263
  /** The contents of an input notebook file. */
@@ -4245,14 +4289,6 @@ declare namespace gapi.client {
4245
4289
  /** Output only. Timestamp when this NotebookExecutionJob was most recently updated. */
4246
4290
  updateTime?: string;
4247
4291
  }
4248
- interface GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec {
4249
- /** The specification of a single machine for the execution job. */
4250
- machineSpec?: GoogleCloudAiplatformV1beta1MachineSpec;
4251
- /** The network configuration to use for the execution job. */
4252
- networkSpec?: GoogleCloudAiplatformV1beta1NetworkSpec;
4253
- /** The specification of a persistent disk to attach for the execution job. */
4254
- persistentDiskSpec?: GoogleCloudAiplatformV1beta1PersistentDiskSpec;
4255
- }
4256
4292
  interface GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource {
4257
4293
  /** The commit SHA to read repository with. If unset, the file will be read at HEAD. */
4258
4294
  commitSha?: string;
@@ -4290,10 +4326,14 @@ declare namespace gapi.client {
4290
4326
  description?: string;
4291
4327
  /** Required. The display name of the NotebookRuntime. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
4292
4328
  displayName?: string;
4329
+ /** Output only. Customer-managed encryption key spec for the notebook runtime. */
4330
+ encryptionSpec?: GoogleCloudAiplatformV1beta1EncryptionSpec;
4293
4331
  /** 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. */
4294
4332
  expirationTime?: string;
4295
4333
  /** Output only. The health state of the NotebookRuntime. */
4296
4334
  healthState?: string;
4335
+ /** Output only. The idle shutdown configuration of the notebook runtime. */
4336
+ idleShutdownConfig?: GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig;
4297
4337
  /** Output only. Whether NotebookRuntime is upgradable. */
4298
4338
  isUpgradable?: boolean;
4299
4339
  /** 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. */
@@ -4334,6 +4374,8 @@ declare namespace gapi.client {
4334
4374
  description?: string;
4335
4375
  /** Required. The display name of the NotebookRuntimeTemplate. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
4336
4376
  displayName?: string;
4377
+ /** Customer-managed encryption key spec for the notebook runtime. */
4378
+ encryptionSpec?: GoogleCloudAiplatformV1beta1EncryptionSpec;
4337
4379
  /** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
4338
4380
  etag?: string;
4339
4381
  /** EUC configuration of the NotebookRuntimeTemplate. */
@@ -4688,7 +4730,7 @@ declare namespace gapi.client {
4688
4730
  projectAllowlist?: string[];
4689
4731
  }
4690
4732
  interface GoogleCloudAiplatformV1beta1Probe {
4691
- /** Exec specifies the action to take. */
4733
+ /** ExecAction probes the health of a container by executing a command. */
4692
4734
  exec?: GoogleCloudAiplatformV1beta1ProbeExecAction;
4693
4735
  /** How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. Must be less than timeout_seconds. Maps to Kubernetes probe argument 'periodSeconds'. */
4694
4736
  periodSeconds?: number;
@@ -5387,9 +5429,9 @@ declare namespace gapi.client {
5387
5429
  fileOutputGcsBucket?: string;
5388
5430
  }
5389
5431
  interface GoogleCloudAiplatformV1beta1RuntimeConfigVertexAISearchRuntimeConfig {
5390
- /** Vertex AI Search App ID. This is used to construct the search request. By setting this app_id, API will construct the serving config which is required to call search API for the user. The app_id and serving_config_name cannot both be empty at the same time. */
5391
- appId?: string;
5392
- /** [Deprecated] Please use app_id instead. Vertex AI Search serving config name. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/servingConfigs/{serving_config}` */
5432
+ /** Optional. Vertex AI Search engine ID. This is used to construct the search request. By setting this engine_id, API will construct the serving config using the default value to call search API for the user. The engine_id and serving_config_name cannot both be empty at the same time. */
5433
+ engineId?: string;
5434
+ /** Optional. Vertex AI Search serving config name. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/servingConfigs/{serving_config}` */
5393
5435
  servingConfigName?: string;
5394
5436
  }
5395
5437
  interface GoogleCloudAiplatformV1beta1SafetyInput {
@@ -7051,6 +7093,16 @@ declare namespace gapi.client {
7051
7093
  /** A list of string values. */
7052
7094
  values?: string[];
7053
7095
  }
7096
+ interface GoogleCloudAiplatformV1beta1StructFieldValue {
7097
+ /** Name of the field in the struct feature. */
7098
+ name?: string;
7099
+ /** The value for this field. */
7100
+ value?: GoogleCloudAiplatformV1beta1FeatureValue;
7101
+ }
7102
+ interface GoogleCloudAiplatformV1beta1StructValue {
7103
+ /** A list of field values. */
7104
+ values?: GoogleCloudAiplatformV1beta1StructFieldValue[];
7105
+ }
7054
7106
  interface GoogleCloudAiplatformV1beta1Study {
7055
7107
  /** Output only. Time at which the study was created. */
7056
7108
  createTime?: string;
@@ -7591,6 +7643,8 @@ declare namespace gapi.client {
7591
7643
  interface GoogleCloudAiplatformV1beta1Tool {
7592
7644
  /** 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 64 function declarations can be provided. */
7593
7645
  functionDeclarations?: GoogleCloudAiplatformV1beta1FunctionDeclaration[];
7646
+ /** Optional. GoogleSearchRetrieval tool type. Specialized retrieval tool that is powered by Google search. */
7647
+ googleSearchRetrieval?: any;
7594
7648
  /** 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. */
7595
7649
  retrieval?: GoogleCloudAiplatformV1beta1Retrieval;
7596
7650
  }
@@ -7802,6 +7856,8 @@ declare namespace gapi.client {
7802
7856
  createTime?: string;
7803
7857
  /** Optional. The description of the TuningJob. */
7804
7858
  description?: string;
7859
+ /** Tuning Spec for Distillation. */
7860
+ distillationSpec?: GoogleCloudAiplatformV1beta1DistillationSpec;
7805
7861
  /** Customer-managed encryption key options for a TuningJob. If this is set, then all resources created by the TuningJob will be encrypted with the provided encryption key. */
7806
7862
  encryptionSpec?: GoogleCloudAiplatformV1beta1EncryptionSpec;
7807
7863
  /** Output only. Time when the TuningJob entered any of the following JobStates: `JOB_STATE_SUCCEEDED`, `JOB_STATE_FAILED`, `JOB_STATE_CANCELLED`, `JOB_STATE_EXPIRED`. */
@@ -7814,6 +7870,8 @@ declare namespace gapi.client {
7814
7870
  labels?: {[P in string]: string};
7815
7871
  /** Output only. Identifier. Resource name of a TuningJob. Format: `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` */
7816
7872
  name?: string;
7873
+ /** Output only. The resource name of the PipelineJob associated with the TuningJob. Format: `projects/{project}/locations/{location}/pipelineJobs/{pipeline_job}`. */
7874
+ pipelineJob?: string;
7817
7875
  /** Output only. Time when the TuningJob for the first time entered the `JOB_STATE_RUNNING` state. */
7818
7876
  startTime?: string;
7819
7877
  /** Output only. The detailed state of the job. */
@@ -11461,6 +11519,66 @@ declare namespace gapi.client {
11461
11519
  interface EdgeDevicesResource {
11462
11520
  operations: OperationsResource;
11463
11521
  }
11522
+ interface ChatResource {
11523
+ /** Exposes an OpenAI-compatible endpoint for chat completions. */
11524
+ completions(request: {
11525
+ /** V1 error format. */
11526
+ '$.xgafv'?: string;
11527
+ /** OAuth access token. */
11528
+ access_token?: string;
11529
+ /** Data format for response. */
11530
+ alt?: string;
11531
+ /** JSONP */
11532
+ callback?: string;
11533
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/openapi` */
11534
+ endpoint: string;
11535
+ /** Selector specifying which fields to include in a partial response. */
11536
+ fields?: string;
11537
+ /** 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. */
11538
+ key?: string;
11539
+ /** OAuth 2.0 token for the current user. */
11540
+ oauth_token?: string;
11541
+ /** Returns response with indentations and line breaks. */
11542
+ prettyPrint?: boolean;
11543
+ /** 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. */
11544
+ quotaUser?: string;
11545
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
11546
+ upload_protocol?: string;
11547
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11548
+ uploadType?: string;
11549
+ /** Request body */
11550
+ resource: GoogleApiHttpBody;
11551
+ }): Request<GoogleApiHttpBody>;
11552
+ completions(
11553
+ request: {
11554
+ /** V1 error format. */
11555
+ '$.xgafv'?: string;
11556
+ /** OAuth access token. */
11557
+ access_token?: string;
11558
+ /** Data format for response. */
11559
+ alt?: string;
11560
+ /** JSONP */
11561
+ callback?: string;
11562
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/openapi` */
11563
+ endpoint: string;
11564
+ /** Selector specifying which fields to include in a partial response. */
11565
+ fields?: string;
11566
+ /** 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. */
11567
+ key?: string;
11568
+ /** OAuth 2.0 token for the current user. */
11569
+ oauth_token?: string;
11570
+ /** Returns response with indentations and line breaks. */
11571
+ prettyPrint?: boolean;
11572
+ /** 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. */
11573
+ quotaUser?: string;
11574
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
11575
+ upload_protocol?: string;
11576
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
11577
+ uploadType?: string;
11578
+ },
11579
+ body: GoogleApiHttpBody
11580
+ ): Request<GoogleApiHttpBody>;
11581
+ }
11464
11582
  interface OperationsResource {
11465
11583
  /** 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`. */
11466
11584
  cancel(request?: {
@@ -12662,6 +12780,7 @@ declare namespace gapi.client {
12662
12780
  },
12663
12781
  body: GoogleCloudAiplatformV1beta1UndeployModelRequest
12664
12782
  ): Request<GoogleLongrunningOperation>;
12783
+ chat: ChatResource;
12665
12784
  operations: OperationsResource;
12666
12785
  }
12667
12786
  interface OperationsResource {
@@ -26656,6 +26775,68 @@ declare namespace gapi.client {
26656
26775
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26657
26776
  uploadType?: string;
26658
26777
  }): Request<GoogleCloudAiplatformV1beta1ListReasoningEnginesResponse>;
26778
+ /** Updates a reasoning engine. */
26779
+ patch(request: {
26780
+ /** V1 error format. */
26781
+ '$.xgafv'?: string;
26782
+ /** OAuth access token. */
26783
+ access_token?: string;
26784
+ /** Data format for response. */
26785
+ alt?: string;
26786
+ /** JSONP */
26787
+ callback?: string;
26788
+ /** Selector specifying which fields to include in a partial response. */
26789
+ fields?: string;
26790
+ /** 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. */
26791
+ key?: string;
26792
+ /** Identifier. The resource name of the ReasoningEngine. */
26793
+ name: string;
26794
+ /** OAuth 2.0 token for the current user. */
26795
+ oauth_token?: string;
26796
+ /** Returns response with indentations and line breaks. */
26797
+ prettyPrint?: boolean;
26798
+ /** 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. */
26799
+ quotaUser?: string;
26800
+ /** Required. Mask specifying which fields to update. */
26801
+ updateMask?: string;
26802
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
26803
+ upload_protocol?: string;
26804
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26805
+ uploadType?: string;
26806
+ /** Request body */
26807
+ resource: GoogleCloudAiplatformV1beta1ReasoningEngine;
26808
+ }): Request<GoogleLongrunningOperation>;
26809
+ patch(
26810
+ request: {
26811
+ /** V1 error format. */
26812
+ '$.xgafv'?: string;
26813
+ /** OAuth access token. */
26814
+ access_token?: string;
26815
+ /** Data format for response. */
26816
+ alt?: string;
26817
+ /** JSONP */
26818
+ callback?: string;
26819
+ /** Selector specifying which fields to include in a partial response. */
26820
+ fields?: string;
26821
+ /** 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. */
26822
+ key?: string;
26823
+ /** Identifier. The resource name of the ReasoningEngine. */
26824
+ name: string;
26825
+ /** OAuth 2.0 token for the current user. */
26826
+ oauth_token?: string;
26827
+ /** Returns response with indentations and line breaks. */
26828
+ prettyPrint?: boolean;
26829
+ /** 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. */
26830
+ quotaUser?: string;
26831
+ /** Required. Mask specifying which fields to update. */
26832
+ updateMask?: string;
26833
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
26834
+ upload_protocol?: string;
26835
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
26836
+ uploadType?: string;
26837
+ },
26838
+ body: GoogleCloudAiplatformV1beta1ReasoningEngine
26839
+ ): Request<GoogleLongrunningOperation>;
26659
26840
  /** Queries using a reasoning engine. */
26660
26841
  query(request: {
26661
26842
  /** V1 error format. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.0.20240510",
3
+ "version": "0.0.20240520",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",