@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20241106 → 0.0.20241117

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 +541 -14
  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=v1
12
- // Revision: 20241106
12
+ // Revision: 20241117
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -352,7 +352,7 @@ declare namespace gapi.client {
352
352
  error?: GoogleRpcStatus;
353
353
  /** Migrated model resource name. */
354
354
  model?: string;
355
- /** It's the same as the value in MigrateResourceRequest.migrate_resource_requests. */
355
+ /** It's the same as the value in BatchMigrateResourcesRequest.migrate_resource_requests. */
356
356
  request?: GoogleCloudAiplatformV1MigrateResourceRequest;
357
357
  }
358
358
  interface GoogleCloudAiplatformV1BatchMigrateResourcesRequest {
@@ -629,6 +629,32 @@ declare namespace gapi.client {
629
629
  /** Optional. Which version to use for evaluation. */
630
630
  version?: number;
631
631
  }
632
+ interface GoogleCloudAiplatformV1CometInput {
633
+ /** Required. Comet instance. */
634
+ instance?: GoogleCloudAiplatformV1CometInstance;
635
+ /** Required. Spec for comet metric. */
636
+ metricSpec?: GoogleCloudAiplatformV1CometSpec;
637
+ }
638
+ interface GoogleCloudAiplatformV1CometInstance {
639
+ /** Required. Output of the evaluated model. */
640
+ prediction?: string;
641
+ /** Optional. Ground truth used to compare against the prediction. */
642
+ reference?: string;
643
+ /** Optional. Source text in original language. */
644
+ source?: string;
645
+ }
646
+ interface GoogleCloudAiplatformV1CometResult {
647
+ /** Output only. Comet score. Range depends on version. */
648
+ score?: number;
649
+ }
650
+ interface GoogleCloudAiplatformV1CometSpec {
651
+ /** Optional. Source language in BCP-47 format. */
652
+ sourceLanguage?: string;
653
+ /** Optional. Target language in BCP-47 format. Covers both prediction and reference. */
654
+ targetLanguage?: string;
655
+ /** Required. Which version to use for evaluation. */
656
+ version?: string;
657
+ }
632
658
  interface GoogleCloudAiplatformV1CompleteTrialRequest {
633
659
  /** Optional. If provided, it will be used as the completed Trial's final_measurement; Otherwise, the service will auto-select a previously reported measurement as the final-measurement */
634
660
  finalMeasurement?: GoogleCloudAiplatformV1Measurement;
@@ -1184,6 +1210,8 @@ declare namespace gapi.client {
1184
1210
  enableAccessLogging?: boolean;
1185
1211
  /** Explanation configuration for this DeployedModel. When deploying a Model using EndpointService.DeployModel, this value overrides the value of Model.explanation_spec. All fields of explanation_spec are optional in the request. If a field of explanation_spec is not populated, the value of the same field of Model.explanation_spec is inherited. If the corresponding Model.explanation_spec is not populated, all fields of the explanation_spec will be used for the explanation configuration. */
1186
1212
  explanationSpec?: GoogleCloudAiplatformV1ExplanationSpec;
1213
+ /** Configuration for faster model deployment. */
1214
+ fasterDeploymentConfig?: GoogleCloudAiplatformV1FasterDeploymentConfig;
1187
1215
  /** Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID. This value should be 1-10 characters, and valid characters are `/[0-9]/`. */
1188
1216
  id?: string;
1189
1217
  /** Required. The resource name of the Model that this is the deployment of. Note that the Model may be in a different location than the DeployedModel's Endpoint. The resource name may contain version id or version alias to specify the version. Example: `projects/{project}/locations/{location}/models/{model}@2` or `projects/{project}/locations/{location}/models/{model}@golden` if no version is specified, the default version will be deployed. */
@@ -1418,6 +1446,8 @@ declare namespace gapi.client {
1418
1446
  bleuInput?: GoogleCloudAiplatformV1BleuInput;
1419
1447
  /** Input for coherence metric. */
1420
1448
  coherenceInput?: GoogleCloudAiplatformV1CoherenceInput;
1449
+ /** Translation metrics. Input for Comet metric. */
1450
+ cometInput?: GoogleCloudAiplatformV1CometInput;
1421
1451
  /** Auto metric instances. Instances and metric spec for exact match metric. */
1422
1452
  exactMatchInput?: GoogleCloudAiplatformV1ExactMatchInput;
1423
1453
  /** LLM-based metric instance. General text generation metrics, applicable to other categories. Input for fluency metric. */
@@ -1426,6 +1456,8 @@ declare namespace gapi.client {
1426
1456
  fulfillmentInput?: GoogleCloudAiplatformV1FulfillmentInput;
1427
1457
  /** Input for groundedness metric. */
1428
1458
  groundednessInput?: GoogleCloudAiplatformV1GroundednessInput;
1459
+ /** Input for Metricx metric. */
1460
+ metricxInput?: GoogleCloudAiplatformV1MetricxInput;
1429
1461
  /** Input for pairwise metric. */
1430
1462
  pairwiseMetricInput?: GoogleCloudAiplatformV1PairwiseMetricInput;
1431
1463
  /** Input for pairwise question answering quality metric. */
@@ -1466,6 +1498,8 @@ declare namespace gapi.client {
1466
1498
  bleuResults?: GoogleCloudAiplatformV1BleuResults;
1467
1499
  /** Result for coherence metric. */
1468
1500
  coherenceResult?: GoogleCloudAiplatformV1CoherenceResult;
1501
+ /** Translation metrics. Result for Comet metric. */
1502
+ cometResult?: GoogleCloudAiplatformV1CometResult;
1469
1503
  /** Auto metric evaluation results. Results for exact match metric. */
1470
1504
  exactMatchResults?: GoogleCloudAiplatformV1ExactMatchResults;
1471
1505
  /** LLM-based metric evaluation result. General text generation metrics, applicable to other categories. Result for fluency metric. */
@@ -1474,6 +1508,8 @@ declare namespace gapi.client {
1474
1508
  fulfillmentResult?: GoogleCloudAiplatformV1FulfillmentResult;
1475
1509
  /** Result for groundedness metric. */
1476
1510
  groundednessResult?: GoogleCloudAiplatformV1GroundednessResult;
1511
+ /** Result for Metricx metric. */
1512
+ metricxResult?: GoogleCloudAiplatformV1MetricxResult;
1477
1513
  /** Result for pairwise metric. */
1478
1514
  pairwiseMetricResult?: GoogleCloudAiplatformV1PairwiseMetricResult;
1479
1515
  /** Result for pairwise question answering quality metric. */
@@ -1737,7 +1773,7 @@ declare namespace gapi.client {
1737
1773
  parameters?: GoogleCloudAiplatformV1ExplanationParameters;
1738
1774
  }
1739
1775
  interface GoogleCloudAiplatformV1ExportDataConfig {
1740
- /** The Cloud Storage URI that points to a YAML file describing the annotation schema. The schema is defined as an OpenAPI 3.0.2 [Schema Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.2.md#schemaObject). The schema files that can be used here are found in gs://google-cloud-aiplatform/schema/dataset/annotation/, note that the chosen schema must be consistent with metadata of the Dataset specified by dataset_id. Only used for custom training data export use cases. Only applicable to Datasets that have DataItems and Annotations. Only Annotations that both match this schema and belong to DataItems not ignored by the split method are used in respectively training, validation or test role, depending on the role of the DataItem they are on. When used in conjunction with annotations_filter, the Annotations used for training are filtered by both annotations_filter and annotation_schema_uri. */
1776
+ /** The Cloud Storage URI that points to a YAML file describing the annotation schema. The schema is defined as an OpenAPI 3.0.2 [Schema Object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.2.md#schemaObject). The schema files that can be used here are found in gs://google-cloud-aiplatform/schema/dataset/annotation/, note that the chosen schema must be consistent with metadata of the Dataset specified by ExportDataRequest.name. Only used for custom training data export use cases. Only applicable to Datasets that have DataItems and Annotations. Only Annotations that both match this schema and belong to DataItems not ignored by the split method are used in respectively training, validation or test role, depending on the role of the DataItem they are on. When used in conjunction with annotations_filter, the Annotations used for training are filtered by both annotations_filter and annotation_schema_uri. */
1741
1777
  annotationSchemaUri?: string;
1742
1778
  /** An expression for filtering what part of the Dataset is to be exported. Only Annotations that match this filter will be exported. The filter syntax is the same as in ListAnnotations. */
1743
1779
  annotationsFilter?: string;
@@ -1749,7 +1785,7 @@ declare namespace gapi.client {
1749
1785
  fractionSplit?: GoogleCloudAiplatformV1ExportFractionSplit;
1750
1786
  /** The Google Cloud Storage location where the output is to be written to. In the given directory a new directory will be created with name: `export-data--` where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. All export output will be written into that directory. Inside that directory, annotations with the same schema will be grouped into sub directories which are named with the corresponding annotations' schema title. Inside these sub directories, a schema.yaml will be created to describe the output format. */
1751
1787
  gcsDestination?: GoogleCloudAiplatformV1GcsDestination;
1752
- /** The ID of a SavedQuery (annotation set) under the Dataset specified by dataset_id used for filtering Annotations for training. Only used for custom training data export use cases. Only applicable to Datasets that have SavedQueries. Only Annotations that are associated with this SavedQuery are used in respectively training. When used in conjunction with annotations_filter, the Annotations used for training are filtered by both saved_query_id and annotations_filter. Only one of saved_query_id and annotation_schema_uri should be specified as both of them represent the same thing: problem type. */
1788
+ /** The ID of a SavedQuery (annotation set) under the Dataset specified by ExportDataRequest.name used for filtering Annotations for training. Only used for custom training data export use cases. Only applicable to Datasets that have SavedQueries. Only Annotations that are associated with this SavedQuery are used in respectively training. When used in conjunction with annotations_filter, the Annotations used for training are filtered by both saved_query_id and annotations_filter. Only one of saved_query_id and annotation_schema_uri should be specified as both of them represent the same thing: problem type. */
1753
1789
  savedQueryId?: string;
1754
1790
  }
1755
1791
  interface GoogleCloudAiplatformV1ExportDataOperationMetadata {
@@ -1854,6 +1890,10 @@ declare namespace gapi.client {
1854
1890
  /** The returned time series data points. */
1855
1891
  timeSeriesDataPoints?: GoogleCloudAiplatformV1TimeSeriesDataPoint[];
1856
1892
  }
1893
+ interface GoogleCloudAiplatformV1FasterDeploymentConfig {
1894
+ /** If true, enable fast tryout feature for this deployed model. */
1895
+ fastTryoutEnabled?: boolean;
1896
+ }
1857
1897
  interface GoogleCloudAiplatformV1Feature {
1858
1898
  /** Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp when this EntityType was created. */
1859
1899
  createTime?: string;
@@ -3039,7 +3079,7 @@ declare namespace gapi.client {
3039
3079
  nextPageToken?: string;
3040
3080
  }
3041
3081
  interface GoogleCloudAiplatformV1ListNotebookExecutionJobsResponse {
3042
- /** A token to retrieve next page of results. Pass to ListNotebookExecutionJobs.page_token to obtain that page. */
3082
+ /** A token to retrieve next page of results. Pass to ListNotebookExecutionJobsRequest.page_token to obtain that page. */
3043
3083
  nextPageToken?: string;
3044
3084
  /** List of NotebookExecutionJobs in the requested page. */
3045
3085
  notebookExecutionJobs?: GoogleCloudAiplatformV1NotebookExecutionJob[];
@@ -3072,6 +3112,12 @@ declare namespace gapi.client {
3072
3112
  /** List of PipelineJobs in the requested page. */
3073
3113
  pipelineJobs?: GoogleCloudAiplatformV1PipelineJob[];
3074
3114
  }
3115
+ interface GoogleCloudAiplatformV1ListReasoningEnginesResponse {
3116
+ /** A token to retrieve the next page of results. Pass to ListReasoningEnginesRequest.page_token to obtain that page. */
3117
+ nextPageToken?: string;
3118
+ /** List of ReasoningEngines in the requested page. */
3119
+ reasoningEngines?: GoogleCloudAiplatformV1ReasoningEngine[];
3120
+ }
3075
3121
  interface GoogleCloudAiplatformV1ListSavedQueriesResponse {
3076
3122
  /** The standard List next-page token. */
3077
3123
  nextPageToken?: string;
@@ -3232,6 +3278,32 @@ declare namespace gapi.client {
3232
3278
  /** The disk utilization of the MetadataStore in bytes. */
3233
3279
  diskUtilizationBytes?: string;
3234
3280
  }
3281
+ interface GoogleCloudAiplatformV1MetricxInput {
3282
+ /** Required. Metricx instance. */
3283
+ instance?: GoogleCloudAiplatformV1MetricxInstance;
3284
+ /** Required. Spec for Metricx metric. */
3285
+ metricSpec?: GoogleCloudAiplatformV1MetricxSpec;
3286
+ }
3287
+ interface GoogleCloudAiplatformV1MetricxInstance {
3288
+ /** Required. Output of the evaluated model. */
3289
+ prediction?: string;
3290
+ /** Optional. Ground truth used to compare against the prediction. */
3291
+ reference?: string;
3292
+ /** Optional. Source text in original language. */
3293
+ source?: string;
3294
+ }
3295
+ interface GoogleCloudAiplatformV1MetricxResult {
3296
+ /** Output only. MetricX score. Range depends on version. */
3297
+ score?: number;
3298
+ }
3299
+ interface GoogleCloudAiplatformV1MetricxSpec {
3300
+ /** Optional. Source language in BCP-47 format. */
3301
+ sourceLanguage?: string;
3302
+ /** Optional. Target language in BCP-47 format. Covers both prediction and reference. */
3303
+ targetLanguage?: string;
3304
+ /** Required. Which version to use for evaluation. */
3305
+ version?: string;
3306
+ }
3235
3307
  interface GoogleCloudAiplatformV1MigratableResource {
3236
3308
  /** Output only. Represents one Dataset in automl.googleapis.com. */
3237
3309
  automlDataset?: GoogleCloudAiplatformV1MigratableResourceAutomlDataset;
@@ -3617,7 +3689,7 @@ declare namespace gapi.client {
3617
3689
  interface GoogleCloudAiplatformV1ModelMonitoringAlertConfig {
3618
3690
  /** Email alert config. */
3619
3691
  emailAlertConfig?: GoogleCloudAiplatformV1ModelMonitoringAlertConfigEmailAlertConfig;
3620
- /** Dump the anomalies to Cloud Logging. The anomalies will be put to json payload encoded from proto google.cloud.aiplatform.logging.ModelMonitoringAnomaliesLogEntry. This can be further sinked to Pub/Sub or any other services supported by Cloud Logging. */
3692
+ /** Dump the anomalies to Cloud Logging. The anomalies will be put to json payload encoded from proto ModelMonitoringStatsAnomalies. This can be further synced to Pub/Sub or any other services supported by Cloud Logging. */
3621
3693
  enableLogging?: boolean;
3622
3694
  /** Resource names of the NotificationChannels to send alert. Must be of the format `projects//notificationChannels/` */
3623
3695
  notificationChannels?: string[];
@@ -3973,7 +4045,7 @@ declare namespace gapi.client {
3973
4045
  directNotebookSource?: GoogleCloudAiplatformV1NotebookExecutionJobDirectNotebookSource;
3974
4046
  /** The display name of the NotebookExecutionJob. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
3975
4047
  displayName?: string;
3976
- /** Customer-managed encryption key spec for the notebook execution job. This field is auto-populated if the NotebookService.NotebookRuntimeTemplate has an encryption spec. */
4048
+ /** Customer-managed encryption key spec for the notebook execution job. This field is auto-populated if the NotebookRuntimeTemplate has an encryption spec. */
3977
4049
  encryptionSpec?: GoogleCloudAiplatformV1EncryptionSpec;
3978
4050
  /** Max running time of the execution job in seconds (default 86400s / 24 hrs). */
3979
4051
  executionTimeout?: string;
@@ -3985,6 +4057,8 @@ declare namespace gapi.client {
3985
4057
  gcsOutputUri?: string;
3986
4058
  /** Output only. The state of the NotebookExecutionJob. */
3987
4059
  jobState?: string;
4060
+ /** The name of the kernel to use during notebook execution. If unset, the default kernel is used. */
4061
+ kernelName?: string;
3988
4062
  /** The labels with user-defined metadata to organize NotebookExecutionJobs. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. */
3989
4063
  labels?: {[P in string]: string};
3990
4064
  /** Output only. The resource name of this NotebookExecutionJob. Format: `projects/{project_id}/locations/{location}/notebookExecutionJobs/{job_id}` */
@@ -3999,6 +4073,8 @@ declare namespace gapi.client {
3999
4073
  status?: GoogleRpcStatus;
4000
4074
  /** Output only. Timestamp when this NotebookExecutionJob was most recently updated. */
4001
4075
  updateTime?: string;
4076
+ /** The Workbench runtime configuration to use for the notebook execution. */
4077
+ workbenchRuntime?: any;
4002
4078
  }
4003
4079
  interface GoogleCloudAiplatformV1NotebookExecutionJobCustomEnvironmentSpec {
4004
4080
  /** The specification of a single machine for the execution job. */
@@ -4024,6 +4100,7 @@ declare namespace gapi.client {
4024
4100
  /** The Cloud Storage uri pointing to the ipynb file. Format: `gs://bucket/notebook_file.ipynb` */
4025
4101
  uri?: string;
4026
4102
  }
4103
+ interface GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntime {}
4027
4104
  interface GoogleCloudAiplatformV1NotebookIdleShutdownConfig {
4028
4105
  /** Whether Idle Shutdown is disabled in this NotebookRuntimeTemplate. */
4029
4106
  idleShutdownDisabled?: boolean;
@@ -4934,6 +5011,38 @@ declare namespace gapi.client {
4934
5011
  /** Number of times the user has read data within the Tensorboard. */
4935
5012
  viewCount?: string;
4936
5013
  }
5014
+ interface GoogleCloudAiplatformV1ReasoningEngine {
5015
+ /** Output only. Timestamp when this ReasoningEngine was created. */
5016
+ createTime?: string;
5017
+ /** Optional. The description of the ReasoningEngine. */
5018
+ description?: string;
5019
+ /** Required. The display name of the ReasoningEngine. */
5020
+ displayName?: string;
5021
+ /** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
5022
+ etag?: string;
5023
+ /** Identifier. The resource name of the ReasoningEngine. */
5024
+ name?: string;
5025
+ /** Required. Configurations of the ReasoningEngine */
5026
+ spec?: GoogleCloudAiplatformV1ReasoningEngineSpec;
5027
+ /** Output only. Timestamp when this ReasoningEngine was most recently updated. */
5028
+ updateTime?: string;
5029
+ }
5030
+ interface GoogleCloudAiplatformV1ReasoningEngineSpec {
5031
+ /** Optional. Declarations for object class methods in OpenAPI specification format. */
5032
+ classMethods?: Array<{[P in string]: any}>;
5033
+ /** Required. User provided package spec of the ReasoningEngine. */
5034
+ packageSpec?: GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec;
5035
+ }
5036
+ interface GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec {
5037
+ /** Optional. The Cloud Storage URI of the dependency files in tar.gz format. */
5038
+ dependencyFilesGcsUri?: string;
5039
+ /** Optional. The Cloud Storage URI of the pickled python object. */
5040
+ pickleObjectGcsUri?: string;
5041
+ /** Optional. The Python version. Currently support 3.8, 3.9, 3.10, 3.11. If not specified, default value is 3.10. */
5042
+ pythonVersion?: string;
5043
+ /** Optional. The Cloud Storage URI of the `requirements.txt` file */
5044
+ requirementsGcsUri?: string;
5045
+ }
4937
5046
  interface GoogleCloudAiplatformV1RebaseTunedModelRequest {
4938
5047
  /** Optional. The Google Cloud Storage location to write the artifacts. */
4939
5048
  artifactDestination?: GoogleCloudAiplatformV1GcsDestination;
@@ -5193,11 +5302,11 @@ declare namespace gapi.client {
5193
5302
  disableRetries?: boolean;
5194
5303
  /** Optional. This is the maximum duration that a job will wait for the requested resources to be provisioned if the scheduling strategy is set to [Strategy.DWS_FLEX_START]. If set to 0, the job will wait indefinitely. The default is 24 hours. */
5195
5304
  maxWaitDuration?: string;
5196
- /** Restarts the entire CustomJob if a worker gets restarted. This feature can be used by distributed training jobs that are not resilient to workers leaving and joining a job. */
5305
+ /** Optional. Restarts the entire CustomJob if a worker gets restarted. This feature can be used by distributed training jobs that are not resilient to workers leaving and joining a job. */
5197
5306
  restartJobOnWorkerRestart?: boolean;
5198
5307
  /** Optional. This determines which type of scheduling strategy to use. */
5199
5308
  strategy?: string;
5200
- /** The maximum job running time. The default is 7 days. */
5309
+ /** Optional. The maximum job running time. The default is 7 days. */
5201
5310
  timeout?: string;
5202
5311
  }
5203
5312
  interface GoogleCloudAiplatformV1Schema {
@@ -7635,6 +7744,10 @@ declare namespace gapi.client {
7635
7744
  /** The operation generic information. */
7636
7745
  genericMetadata?: GoogleCloudAiplatformV1GenericOperationMetadata;
7637
7746
  }
7747
+ interface GoogleCloudAiplatformV1UpdateEndpointLongRunningRequest {
7748
+ /** Required. The Endpoint which replaces the resource on the server. Currently we only support updating the `client_connection_config` field, all the other fields' update will be blocked. */
7749
+ endpoint?: GoogleCloudAiplatformV1Endpoint;
7750
+ }
7638
7751
  interface GoogleCloudAiplatformV1UpdateExplanationDatasetOperationMetadata {
7639
7752
  /** The common part of the operation metadata. */
7640
7753
  genericMetadata?: GoogleCloudAiplatformV1GenericOperationMetadata;
@@ -12797,6 +12910,64 @@ declare namespace gapi.client {
12797
12910
  },
12798
12911
  body: GoogleCloudAiplatformV1UndeployModelRequest
12799
12912
  ): Request<GoogleLongrunningOperation>;
12913
+ /** Updates an Endpoint with a long running operation. */
12914
+ update(request: {
12915
+ /** V1 error format. */
12916
+ '$.xgafv'?: string;
12917
+ /** OAuth access token. */
12918
+ access_token?: string;
12919
+ /** Data format for response. */
12920
+ alt?: string;
12921
+ /** JSONP */
12922
+ callback?: string;
12923
+ /** Selector specifying which fields to include in a partial response. */
12924
+ fields?: string;
12925
+ /** 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. */
12926
+ key?: string;
12927
+ /** Output only. The resource name of the Endpoint. */
12928
+ name: string;
12929
+ /** OAuth 2.0 token for the current user. */
12930
+ oauth_token?: string;
12931
+ /** Returns response with indentations and line breaks. */
12932
+ prettyPrint?: boolean;
12933
+ /** 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. */
12934
+ quotaUser?: string;
12935
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
12936
+ upload_protocol?: string;
12937
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12938
+ uploadType?: string;
12939
+ /** Request body */
12940
+ resource: GoogleCloudAiplatformV1UpdateEndpointLongRunningRequest;
12941
+ }): Request<GoogleLongrunningOperation>;
12942
+ update(
12943
+ request: {
12944
+ /** V1 error format. */
12945
+ '$.xgafv'?: string;
12946
+ /** OAuth access token. */
12947
+ access_token?: string;
12948
+ /** Data format for response. */
12949
+ alt?: string;
12950
+ /** JSONP */
12951
+ callback?: string;
12952
+ /** Selector specifying which fields to include in a partial response. */
12953
+ fields?: string;
12954
+ /** 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. */
12955
+ key?: string;
12956
+ /** Output only. The resource name of the Endpoint. */
12957
+ name: string;
12958
+ /** OAuth 2.0 token for the current user. */
12959
+ oauth_token?: string;
12960
+ /** Returns response with indentations and line breaks. */
12961
+ prettyPrint?: boolean;
12962
+ /** 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. */
12963
+ quotaUser?: string;
12964
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
12965
+ upload_protocol?: string;
12966
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
12967
+ uploadType?: string;
12968
+ },
12969
+ body: GoogleCloudAiplatformV1UpdateEndpointLongRunningRequest
12970
+ ): Request<GoogleLongrunningOperation>;
12800
12971
  chat: ChatResource;
12801
12972
  operations: OperationsResource;
12802
12973
  }
@@ -13455,7 +13626,7 @@ declare namespace gapi.client {
13455
13626
  orderBy?: string;
13456
13627
  /** The maximum number of FeatureGroups to return. The service may return fewer than this value. If unspecified, at most 100 FeatureGroups will be returned. The maximum value is 100; any value greater than 100 will be coerced to 100. */
13457
13628
  pageSize?: number;
13458
- /** A page token, received from a previous FeatureGroupAdminService.ListFeatureGroups call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to FeatureGroupAdminService.ListFeatureGroups must match the call that provided the page token. */
13629
+ /** A page token, received from a previous FeatureRegistryService.ListFeatureGroups call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to FeatureRegistryService.ListFeatureGroups must match the call that provided the page token. */
13459
13630
  pageToken?: string;
13460
13631
  /** Required. The resource name of the Location to list FeatureGroups. Format: `projects/{project}/locations/{location}` */
13461
13632
  parent: string;
@@ -22369,7 +22540,7 @@ declare namespace gapi.client {
22369
22540
  orderBy?: string;
22370
22541
  /** Optional. The standard list page size. */
22371
22542
  pageSize?: number;
22372
- /** Optional. The standard list page token. Typically obtained via ListNotebookExecutionJobs.next_page_token of the previous NotebookService.ListNotebookExecutionJobs call. */
22543
+ /** Optional. The standard list page token. Typically obtained via ListNotebookExecutionJobsResponse.next_page_token of the previous NotebookService.ListNotebookExecutionJobs call. */
22373
22544
  pageToken?: string;
22374
22545
  /** Required. The resource name of the Location from which to list the NotebookExecutionJobs. Format: `projects/{project}/locations/{location}` */
22375
22546
  parent: string;
@@ -23733,7 +23904,7 @@ declare namespace gapi.client {
23733
23904
  oauth_token?: string;
23734
23905
  /** Optional. The standard list page size. */
23735
23906
  pageSize?: number;
23736
- /** Optional. The standard list page token. Typically obtained via ListPersistentResourceResponse.next_page_token of the previous PersistentResourceService.ListPersistentResource call. */
23907
+ /** Optional. The standard list page token. Typically obtained via ListPersistentResourcesResponse.next_page_token of the previous PersistentResourceService.ListPersistentResource call. */
23737
23908
  pageToken?: string;
23738
23909
  /** Required. The resource name of the Location to list the PersistentResources from. Format: `projects/{project}/locations/{location}` */
23739
23910
  parent: string;
@@ -25072,6 +25243,361 @@ declare namespace gapi.client {
25072
25243
  uploadType?: string;
25073
25244
  }): Request<GoogleLongrunningOperation>;
25074
25245
  }
25246
+ interface ReasoningEnginesResource {
25247
+ /** Creates a reasoning engine. */
25248
+ create(request: {
25249
+ /** V1 error format. */
25250
+ '$.xgafv'?: string;
25251
+ /** OAuth access token. */
25252
+ access_token?: string;
25253
+ /** Data format for response. */
25254
+ alt?: string;
25255
+ /** JSONP */
25256
+ callback?: string;
25257
+ /** Selector specifying which fields to include in a partial response. */
25258
+ fields?: string;
25259
+ /** 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. */
25260
+ key?: string;
25261
+ /** OAuth 2.0 token for the current user. */
25262
+ oauth_token?: string;
25263
+ /** Required. The resource name of the Location to create the ReasoningEngine in. Format: `projects/{project}/locations/{location}` */
25264
+ parent: string;
25265
+ /** Returns response with indentations and line breaks. */
25266
+ prettyPrint?: boolean;
25267
+ /** 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. */
25268
+ quotaUser?: string;
25269
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25270
+ upload_protocol?: string;
25271
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25272
+ uploadType?: string;
25273
+ /** Request body */
25274
+ resource: GoogleCloudAiplatformV1ReasoningEngine;
25275
+ }): Request<GoogleLongrunningOperation>;
25276
+ create(
25277
+ request: {
25278
+ /** V1 error format. */
25279
+ '$.xgafv'?: string;
25280
+ /** OAuth access token. */
25281
+ access_token?: string;
25282
+ /** Data format for response. */
25283
+ alt?: string;
25284
+ /** JSONP */
25285
+ callback?: string;
25286
+ /** Selector specifying which fields to include in a partial response. */
25287
+ fields?: string;
25288
+ /** 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. */
25289
+ key?: string;
25290
+ /** OAuth 2.0 token for the current user. */
25291
+ oauth_token?: string;
25292
+ /** Required. The resource name of the Location to create the ReasoningEngine in. Format: `projects/{project}/locations/{location}` */
25293
+ parent: string;
25294
+ /** Returns response with indentations and line breaks. */
25295
+ prettyPrint?: boolean;
25296
+ /** 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. */
25297
+ quotaUser?: string;
25298
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25299
+ upload_protocol?: string;
25300
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25301
+ uploadType?: string;
25302
+ },
25303
+ body: GoogleCloudAiplatformV1ReasoningEngine
25304
+ ): Request<GoogleLongrunningOperation>;
25305
+ /** Deletes a reasoning engine. */
25306
+ delete(request?: {
25307
+ /** V1 error format. */
25308
+ '$.xgafv'?: string;
25309
+ /** OAuth access token. */
25310
+ access_token?: string;
25311
+ /** Data format for response. */
25312
+ alt?: string;
25313
+ /** JSONP */
25314
+ callback?: string;
25315
+ /** Selector specifying which fields to include in a partial response. */
25316
+ fields?: string;
25317
+ /** 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. */
25318
+ key?: string;
25319
+ /** Required. The name of the ReasoningEngine resource to be deleted. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
25320
+ name: string;
25321
+ /** OAuth 2.0 token for the current user. */
25322
+ oauth_token?: string;
25323
+ /** Returns response with indentations and line breaks. */
25324
+ prettyPrint?: boolean;
25325
+ /** 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. */
25326
+ quotaUser?: string;
25327
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25328
+ upload_protocol?: string;
25329
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25330
+ uploadType?: string;
25331
+ }): Request<GoogleLongrunningOperation>;
25332
+ /** Gets a reasoning engine. */
25333
+ get(request?: {
25334
+ /** V1 error format. */
25335
+ '$.xgafv'?: string;
25336
+ /** OAuth access token. */
25337
+ access_token?: string;
25338
+ /** Data format for response. */
25339
+ alt?: string;
25340
+ /** JSONP */
25341
+ callback?: string;
25342
+ /** Selector specifying which fields to include in a partial response. */
25343
+ fields?: string;
25344
+ /** 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. */
25345
+ key?: string;
25346
+ /** Required. The name of the ReasoningEngine resource. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
25347
+ name: string;
25348
+ /** OAuth 2.0 token for the current user. */
25349
+ oauth_token?: string;
25350
+ /** Returns response with indentations and line breaks. */
25351
+ prettyPrint?: boolean;
25352
+ /** 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. */
25353
+ quotaUser?: string;
25354
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25355
+ upload_protocol?: string;
25356
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25357
+ uploadType?: string;
25358
+ }): Request<GoogleCloudAiplatformV1ReasoningEngine>;
25359
+ /** Lists reasoning engines in a location. */
25360
+ list(request?: {
25361
+ /** V1 error format. */
25362
+ '$.xgafv'?: string;
25363
+ /** OAuth access token. */
25364
+ access_token?: string;
25365
+ /** Data format for response. */
25366
+ alt?: string;
25367
+ /** JSONP */
25368
+ callback?: string;
25369
+ /** Selector specifying which fields to include in a partial response. */
25370
+ fields?: string;
25371
+ /** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). */
25372
+ filter?: string;
25373
+ /** 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. */
25374
+ key?: string;
25375
+ /** OAuth 2.0 token for the current user. */
25376
+ oauth_token?: string;
25377
+ /** Optional. The standard list page size. */
25378
+ pageSize?: number;
25379
+ /** Optional. The standard list page token. */
25380
+ pageToken?: string;
25381
+ /** Required. The resource name of the Location to list the ReasoningEngines from. Format: `projects/{project}/locations/{location}` */
25382
+ parent: string;
25383
+ /** Returns response with indentations and line breaks. */
25384
+ prettyPrint?: boolean;
25385
+ /** 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. */
25386
+ quotaUser?: string;
25387
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25388
+ upload_protocol?: string;
25389
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25390
+ uploadType?: string;
25391
+ }): Request<GoogleCloudAiplatformV1ListReasoningEnginesResponse>;
25392
+ /** Updates a reasoning engine. */
25393
+ patch(request: {
25394
+ /** V1 error format. */
25395
+ '$.xgafv'?: string;
25396
+ /** OAuth access token. */
25397
+ access_token?: string;
25398
+ /** Data format for response. */
25399
+ alt?: string;
25400
+ /** JSONP */
25401
+ callback?: string;
25402
+ /** Selector specifying which fields to include in a partial response. */
25403
+ fields?: string;
25404
+ /** 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. */
25405
+ key?: string;
25406
+ /** Identifier. The resource name of the ReasoningEngine. */
25407
+ name: string;
25408
+ /** OAuth 2.0 token for the current user. */
25409
+ oauth_token?: string;
25410
+ /** Returns response with indentations and line breaks. */
25411
+ prettyPrint?: boolean;
25412
+ /** 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. */
25413
+ quotaUser?: string;
25414
+ /** Optional. Mask specifying which fields to update. */
25415
+ updateMask?: string;
25416
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25417
+ upload_protocol?: string;
25418
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25419
+ uploadType?: string;
25420
+ /** Request body */
25421
+ resource: GoogleCloudAiplatformV1ReasoningEngine;
25422
+ }): Request<GoogleLongrunningOperation>;
25423
+ patch(
25424
+ request: {
25425
+ /** V1 error format. */
25426
+ '$.xgafv'?: string;
25427
+ /** OAuth access token. */
25428
+ access_token?: string;
25429
+ /** Data format for response. */
25430
+ alt?: string;
25431
+ /** JSONP */
25432
+ callback?: string;
25433
+ /** Selector specifying which fields to include in a partial response. */
25434
+ fields?: string;
25435
+ /** 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. */
25436
+ key?: string;
25437
+ /** Identifier. The resource name of the ReasoningEngine. */
25438
+ name: string;
25439
+ /** OAuth 2.0 token for the current user. */
25440
+ oauth_token?: string;
25441
+ /** Returns response with indentations and line breaks. */
25442
+ prettyPrint?: boolean;
25443
+ /** 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. */
25444
+ quotaUser?: string;
25445
+ /** Optional. Mask specifying which fields to update. */
25446
+ updateMask?: string;
25447
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25448
+ upload_protocol?: string;
25449
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25450
+ uploadType?: string;
25451
+ },
25452
+ body: GoogleCloudAiplatformV1ReasoningEngine
25453
+ ): Request<GoogleLongrunningOperation>;
25454
+ operations: OperationsResource;
25455
+ }
25456
+ interface OperationsResource {
25457
+ /** 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`. */
25458
+ cancel(request?: {
25459
+ /** V1 error format. */
25460
+ '$.xgafv'?: string;
25461
+ /** OAuth access token. */
25462
+ access_token?: string;
25463
+ /** Data format for response. */
25464
+ alt?: string;
25465
+ /** JSONP */
25466
+ callback?: string;
25467
+ /** Selector specifying which fields to include in a partial response. */
25468
+ fields?: string;
25469
+ /** 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. */
25470
+ key?: string;
25471
+ /** The name of the operation resource to be cancelled. */
25472
+ name: string;
25473
+ /** OAuth 2.0 token for the current user. */
25474
+ oauth_token?: string;
25475
+ /** Returns response with indentations and line breaks. */
25476
+ prettyPrint?: boolean;
25477
+ /** 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. */
25478
+ quotaUser?: string;
25479
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25480
+ upload_protocol?: string;
25481
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25482
+ uploadType?: string;
25483
+ }): Request<{}>;
25484
+ /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
25485
+ delete(request?: {
25486
+ /** V1 error format. */
25487
+ '$.xgafv'?: string;
25488
+ /** OAuth access token. */
25489
+ access_token?: string;
25490
+ /** Data format for response. */
25491
+ alt?: string;
25492
+ /** JSONP */
25493
+ callback?: string;
25494
+ /** Selector specifying which fields to include in a partial response. */
25495
+ fields?: string;
25496
+ /** 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. */
25497
+ key?: string;
25498
+ /** The name of the operation resource to be deleted. */
25499
+ name: string;
25500
+ /** OAuth 2.0 token for the current user. */
25501
+ oauth_token?: string;
25502
+ /** Returns response with indentations and line breaks. */
25503
+ prettyPrint?: boolean;
25504
+ /** 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. */
25505
+ quotaUser?: string;
25506
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25507
+ upload_protocol?: string;
25508
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25509
+ uploadType?: string;
25510
+ }): Request<{}>;
25511
+ /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
25512
+ get(request?: {
25513
+ /** V1 error format. */
25514
+ '$.xgafv'?: string;
25515
+ /** OAuth access token. */
25516
+ access_token?: string;
25517
+ /** Data format for response. */
25518
+ alt?: string;
25519
+ /** JSONP */
25520
+ callback?: string;
25521
+ /** Selector specifying which fields to include in a partial response. */
25522
+ fields?: string;
25523
+ /** 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. */
25524
+ key?: string;
25525
+ /** The name of the operation resource. */
25526
+ name: string;
25527
+ /** OAuth 2.0 token for the current user. */
25528
+ oauth_token?: string;
25529
+ /** Returns response with indentations and line breaks. */
25530
+ prettyPrint?: boolean;
25531
+ /** 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. */
25532
+ quotaUser?: string;
25533
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25534
+ upload_protocol?: string;
25535
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25536
+ uploadType?: string;
25537
+ }): Request<GoogleLongrunningOperation>;
25538
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
25539
+ list(request?: {
25540
+ /** V1 error format. */
25541
+ '$.xgafv'?: string;
25542
+ /** OAuth access token. */
25543
+ access_token?: string;
25544
+ /** Data format for response. */
25545
+ alt?: string;
25546
+ /** JSONP */
25547
+ callback?: string;
25548
+ /** Selector specifying which fields to include in a partial response. */
25549
+ fields?: string;
25550
+ /** The standard list filter. */
25551
+ filter?: string;
25552
+ /** 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. */
25553
+ key?: string;
25554
+ /** The name of the operation's parent resource. */
25555
+ name: string;
25556
+ /** OAuth 2.0 token for the current user. */
25557
+ oauth_token?: string;
25558
+ /** The standard list page size. */
25559
+ pageSize?: number;
25560
+ /** The standard list page token. */
25561
+ pageToken?: string;
25562
+ /** Returns response with indentations and line breaks. */
25563
+ prettyPrint?: boolean;
25564
+ /** 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. */
25565
+ quotaUser?: string;
25566
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25567
+ upload_protocol?: string;
25568
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25569
+ uploadType?: string;
25570
+ }): Request<GoogleLongrunningListOperationsResponse>;
25571
+ /** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
25572
+ wait(request?: {
25573
+ /** V1 error format. */
25574
+ '$.xgafv'?: string;
25575
+ /** OAuth access token. */
25576
+ access_token?: string;
25577
+ /** Data format for response. */
25578
+ alt?: string;
25579
+ /** JSONP */
25580
+ callback?: string;
25581
+ /** Selector specifying which fields to include in a partial response. */
25582
+ fields?: string;
25583
+ /** 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. */
25584
+ key?: string;
25585
+ /** The name of the operation resource to wait on. */
25586
+ name: string;
25587
+ /** OAuth 2.0 token for the current user. */
25588
+ oauth_token?: string;
25589
+ /** Returns response with indentations and line breaks. */
25590
+ prettyPrint?: boolean;
25591
+ /** 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. */
25592
+ quotaUser?: string;
25593
+ /** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
25594
+ timeout?: string;
25595
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
25596
+ upload_protocol?: string;
25597
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
25598
+ uploadType?: string;
25599
+ }): Request<GoogleLongrunningOperation>;
25600
+ }
25075
25601
  interface SchedulesResource {
25076
25602
  /** Creates a Schedule. */
25077
25603
  create(request: {
@@ -25340,7 +25866,7 @@ declare namespace gapi.client {
25340
25866
  },
25341
25867
  body: GoogleCloudAiplatformV1PauseScheduleRequest
25342
25868
  ): Request<{}>;
25343
- /** Resumes a paused Schedule to start scheduling new runs. Will mark Schedule.state to 'ACTIVE'. Only paused Schedule can be resumed. When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If Schedule.catchUp is set up true, all missed runs will be scheduled for backfill first. */
25869
+ /** Resumes a paused Schedule to start scheduling new runs. Will mark Schedule.state to 'ACTIVE'. Only paused Schedule can be resumed. When the Schedule is resumed, new runs will be scheduled starting from the next execution time after the current time based on the time_specification in the Schedule. If Schedule.catch_up is set up true, all missed runs will be scheduled for backfill first. */
25344
25870
  resume(request: {
25345
25871
  /** V1 error format. */
25346
25872
  '$.xgafv'?: string;
@@ -29263,7 +29789,7 @@ declare namespace gapi.client {
29263
29789
  oauth_token?: string;
29264
29790
  /** Optional. The standard list page size. */
29265
29791
  pageSize?: number;
29266
- /** Optional. The standard list page token. Typically obtained via ListTuningJob.next_page_token of the previous GenAiTuningService.ListTuningJob][] call. */
29792
+ /** Optional. The standard list page token. Typically obtained via ListTuningJobsResponse.next_page_token of the previous GenAiTuningService.ListTuningJob][] call. */
29267
29793
  pageToken?: string;
29268
29794
  /** Required. The resource name of the Location to list the TuningJobs from. Format: `projects/{project}/locations/{location}` */
29269
29795
  parent: string;
@@ -29479,6 +30005,7 @@ declare namespace gapi.client {
29479
30005
  persistentResources: PersistentResourcesResource;
29480
30006
  pipelineJobs: PipelineJobsResource;
29481
30007
  publishers: PublishersResource;
30008
+ reasoningEngines: ReasoningEnginesResource;
29482
30009
  schedules: SchedulesResource;
29483
30010
  specialistPools: SpecialistPoolsResource;
29484
30011
  studies: StudiesResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1",
3
- "version": "0.0.20241106",
3
+ "version": "0.0.20241117",
4
4
  "description": "TypeScript typings for Vertex AI API v1",
5
5
  "repository": {
6
6
  "type": "git",