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

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 +196 -12
  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: 20241026
12
+ // Revision: 20241112
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -444,7 +444,7 @@ declare namespace gapi.client {
444
444
  error?: GoogleRpcStatus;
445
445
  /** Migrated model resource name. */
446
446
  model?: string;
447
- /** It's the same as the value in MigrateResourceRequest.migrate_resource_requests. */
447
+ /** It's the same as the value in BatchMigrateResourcesRequest.migrate_resource_requests. */
448
448
  request?: GoogleCloudAiplatformV1beta1MigrateResourceRequest;
449
449
  }
450
450
  interface GoogleCloudAiplatformV1beta1BatchMigrateResourcesRequest {
@@ -781,6 +781,32 @@ declare namespace gapi.client {
781
781
  /** Optional. Which version to use for evaluation. */
782
782
  version?: number;
783
783
  }
784
+ interface GoogleCloudAiplatformV1beta1CometInput {
785
+ /** Required. Comet instance. */
786
+ instance?: GoogleCloudAiplatformV1beta1CometInstance;
787
+ /** Required. Spec for comet metric. */
788
+ metricSpec?: GoogleCloudAiplatformV1beta1CometSpec;
789
+ }
790
+ interface GoogleCloudAiplatformV1beta1CometInstance {
791
+ /** Required. Output of the evaluated model. */
792
+ prediction?: string;
793
+ /** Optional. Ground truth used to compare against the prediction. */
794
+ reference?: string;
795
+ /** Optional. Source text in original language. */
796
+ source?: string;
797
+ }
798
+ interface GoogleCloudAiplatformV1beta1CometResult {
799
+ /** Output only. Comet score. Range depends on version. */
800
+ score?: number;
801
+ }
802
+ interface GoogleCloudAiplatformV1beta1CometSpec {
803
+ /** Optional. Source language in BCP-47 format. */
804
+ sourceLanguage?: string;
805
+ /** Optional. Target language in BCP-47 format. Covers both prediction and reference. */
806
+ targetLanguage?: string;
807
+ /** Required. Which version to use for evaluation. */
808
+ version?: string;
809
+ }
784
810
  interface GoogleCloudAiplatformV1beta1CompleteTrialRequest {
785
811
  /** 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 */
786
812
  finalMeasurement?: GoogleCloudAiplatformV1beta1Measurement;
@@ -1695,6 +1721,8 @@ declare namespace gapi.client {
1695
1721
  bleuInput?: GoogleCloudAiplatformV1beta1BleuInput;
1696
1722
  /** Input for coherence metric. */
1697
1723
  coherenceInput?: GoogleCloudAiplatformV1beta1CoherenceInput;
1724
+ /** Translation metrics. Input for Comet metric. */
1725
+ cometInput?: GoogleCloudAiplatformV1beta1CometInput;
1698
1726
  /** Auto metric instances. Instances and metric spec for exact match metric. */
1699
1727
  exactMatchInput?: GoogleCloudAiplatformV1beta1ExactMatchInput;
1700
1728
  /** LLM-based metric instance. General text generation metrics, applicable to other categories. Input for fluency metric. */
@@ -1703,6 +1731,8 @@ declare namespace gapi.client {
1703
1731
  fulfillmentInput?: GoogleCloudAiplatformV1beta1FulfillmentInput;
1704
1732
  /** Input for groundedness metric. */
1705
1733
  groundednessInput?: GoogleCloudAiplatformV1beta1GroundednessInput;
1734
+ /** Input for Metricx metric. */
1735
+ metricxInput?: GoogleCloudAiplatformV1beta1MetricxInput;
1706
1736
  /** Input for pairwise metric. */
1707
1737
  pairwiseMetricInput?: GoogleCloudAiplatformV1beta1PairwiseMetricInput;
1708
1738
  /** Input for pairwise question answering quality metric. */
@@ -1743,6 +1773,8 @@ declare namespace gapi.client {
1743
1773
  bleuResults?: GoogleCloudAiplatformV1beta1BleuResults;
1744
1774
  /** Result for coherence metric. */
1745
1775
  coherenceResult?: GoogleCloudAiplatformV1beta1CoherenceResult;
1776
+ /** Translation metrics. Result for Comet metric. */
1777
+ cometResult?: GoogleCloudAiplatformV1beta1CometResult;
1746
1778
  /** Auto metric evaluation results. Results for exact match metric. */
1747
1779
  exactMatchResults?: GoogleCloudAiplatformV1beta1ExactMatchResults;
1748
1780
  /** LLM-based metric evaluation result. General text generation metrics, applicable to other categories. Result for fluency metric. */
@@ -1751,6 +1783,8 @@ declare namespace gapi.client {
1751
1783
  fulfillmentResult?: GoogleCloudAiplatformV1beta1FulfillmentResult;
1752
1784
  /** Result for groundedness metric. */
1753
1785
  groundednessResult?: GoogleCloudAiplatformV1beta1GroundednessResult;
1786
+ /** Result for Metricx metric. */
1787
+ metricxResult?: GoogleCloudAiplatformV1beta1MetricxResult;
1754
1788
  /** Result for pairwise metric. */
1755
1789
  pairwiseMetricResult?: GoogleCloudAiplatformV1beta1PairwiseMetricResult;
1756
1790
  /** Result for pairwise question answering quality metric. */
@@ -3647,7 +3681,7 @@ declare namespace gapi.client {
3647
3681
  nextPageToken?: string;
3648
3682
  }
3649
3683
  interface GoogleCloudAiplatformV1beta1ListNotebookExecutionJobsResponse {
3650
- /** A token to retrieve next page of results. Pass to ListNotebookExecutionJobs.page_token to obtain that page. */
3684
+ /** A token to retrieve next page of results. Pass to ListNotebookExecutionJobsRequest.page_token to obtain that page. */
3651
3685
  nextPageToken?: string;
3652
3686
  /** List of NotebookExecutionJobs in the requested page. */
3653
3687
  notebookExecutionJobs?: GoogleCloudAiplatformV1beta1NotebookExecutionJob[];
@@ -3864,6 +3898,32 @@ declare namespace gapi.client {
3864
3898
  /** The disk utilization of the MetadataStore in bytes. */
3865
3899
  diskUtilizationBytes?: string;
3866
3900
  }
3901
+ interface GoogleCloudAiplatformV1beta1MetricxInput {
3902
+ /** Required. Metricx instance. */
3903
+ instance?: GoogleCloudAiplatformV1beta1MetricxInstance;
3904
+ /** Required. Spec for Metricx metric. */
3905
+ metricSpec?: GoogleCloudAiplatformV1beta1MetricxSpec;
3906
+ }
3907
+ interface GoogleCloudAiplatformV1beta1MetricxInstance {
3908
+ /** Required. Output of the evaluated model. */
3909
+ prediction?: string;
3910
+ /** Optional. Ground truth used to compare against the prediction. */
3911
+ reference?: string;
3912
+ /** Optional. Source text in original language. */
3913
+ source?: string;
3914
+ }
3915
+ interface GoogleCloudAiplatformV1beta1MetricxResult {
3916
+ /** Output only. MetricX score. Range depends on version. */
3917
+ score?: number;
3918
+ }
3919
+ interface GoogleCloudAiplatformV1beta1MetricxSpec {
3920
+ /** Optional. Source language in BCP-47 format. */
3921
+ sourceLanguage?: string;
3922
+ /** Optional. Target language in BCP-47 format. Covers both prediction and reference. */
3923
+ targetLanguage?: string;
3924
+ /** Required. Which version to use for evaluation. */
3925
+ version?: string;
3926
+ }
3867
3927
  interface GoogleCloudAiplatformV1beta1MigratableResource {
3868
3928
  /** Output only. Represents one Dataset in automl.googleapis.com. */
3869
3929
  automlDataset?: GoogleCloudAiplatformV1beta1MigratableResourceAutomlDataset;
@@ -4277,7 +4337,7 @@ declare namespace gapi.client {
4277
4337
  interface GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig {
4278
4338
  /** Email alert config. */
4279
4339
  emailAlertConfig?: GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfigEmailAlertConfig;
4280
- /** 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. */
4340
+ /** 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. */
4281
4341
  enableLogging?: boolean;
4282
4342
  /** Resource names of the NotificationChannels to send alert. Must be of the format `projects//notificationChannels/` */
4283
4343
  notificationChannels?: string[];
@@ -4893,7 +4953,7 @@ declare namespace gapi.client {
4893
4953
  directNotebookSource?: GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource;
4894
4954
  /** The display name of the NotebookExecutionJob. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
4895
4955
  displayName?: string;
4896
- /** Customer-managed encryption key spec for the notebook execution job. This field is auto-populated if the NotebookService.NotebookRuntimeTemplate has an encryption spec. */
4956
+ /** Customer-managed encryption key spec for the notebook execution job. This field is auto-populated if the NotebookRuntimeTemplate has an encryption spec. */
4897
4957
  encryptionSpec?: GoogleCloudAiplatformV1beta1EncryptionSpec;
4898
4958
  /** Max running time of the execution job in seconds (default 86400s / 24 hrs). */
4899
4959
  executionTimeout?: string;
@@ -4905,6 +4965,8 @@ declare namespace gapi.client {
4905
4965
  gcsOutputUri?: string;
4906
4966
  /** Output only. The state of the NotebookExecutionJob. */
4907
4967
  jobState?: string;
4968
+ /** The name of the kernel to use during notebook execution. If unset, the default kernel is used. */
4969
+ kernelName?: string;
4908
4970
  /** 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. */
4909
4971
  labels?: {[P in string]: string};
4910
4972
  /** Output only. The resource name of this NotebookExecutionJob. Format: `projects/{project_id}/locations/{location}/notebookExecutionJobs/{job_id}` */
@@ -4919,6 +4981,8 @@ declare namespace gapi.client {
4919
4981
  status?: GoogleRpcStatus;
4920
4982
  /** Output only. Timestamp when this NotebookExecutionJob was most recently updated. */
4921
4983
  updateTime?: string;
4984
+ /** The Workbench runtime configuration to use for the notebook execution. */
4985
+ workbenchRuntime?: any;
4922
4986
  }
4923
4987
  interface GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec {
4924
4988
  /** The specification of a single machine for the execution job. */
@@ -4944,6 +5008,7 @@ declare namespace gapi.client {
4944
5008
  /** The Cloud Storage uri pointing to the ipynb file. Format: `gs://bucket/notebook_file.ipynb` */
4945
5009
  uri?: string;
4946
5010
  }
5011
+ interface GoogleCloudAiplatformV1beta1NotebookExecutionJobWorkbenchRuntime {}
4947
5012
  interface GoogleCloudAiplatformV1beta1NotebookIdleShutdownConfig {
4948
5013
  /** Whether Idle Shutdown is disabled in this NotebookRuntimeTemplate. */
4949
5014
  idleShutdownDisabled?: boolean;
@@ -6490,11 +6555,11 @@ declare namespace gapi.client {
6490
6555
  disableRetries?: boolean;
6491
6556
  /** 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. */
6492
6557
  maxWaitDuration?: string;
6493
- /** 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. */
6558
+ /** 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. */
6494
6559
  restartJobOnWorkerRestart?: boolean;
6495
6560
  /** Optional. This determines which type of scheduling strategy to use. */
6496
6561
  strategy?: string;
6497
- /** The maximum job running time. The default is 7 days. */
6562
+ /** Optional. The maximum job running time. The default is 7 days. */
6498
6563
  timeout?: string;
6499
6564
  }
6500
6565
  interface GoogleCloudAiplatformV1beta1Schema {
@@ -16170,6 +16235,124 @@ declare namespace gapi.client {
16170
16235
  uploadType?: string;
16171
16236
  }): Request<GoogleCloudAiplatformV1beta1ListFeatureMonitorJobsResponse>;
16172
16237
  }
16238
+ interface OperationsResource {
16239
+ /** 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`. */
16240
+ delete(request?: {
16241
+ /** V1 error format. */
16242
+ '$.xgafv'?: string;
16243
+ /** OAuth access token. */
16244
+ access_token?: string;
16245
+ /** Data format for response. */
16246
+ alt?: string;
16247
+ /** JSONP */
16248
+ callback?: string;
16249
+ /** Selector specifying which fields to include in a partial response. */
16250
+ fields?: string;
16251
+ /** 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. */
16252
+ key?: string;
16253
+ /** The name of the operation resource to be deleted. */
16254
+ name: string;
16255
+ /** OAuth 2.0 token for the current user. */
16256
+ oauth_token?: string;
16257
+ /** Returns response with indentations and line breaks. */
16258
+ prettyPrint?: boolean;
16259
+ /** 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. */
16260
+ quotaUser?: string;
16261
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16262
+ upload_protocol?: string;
16263
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16264
+ uploadType?: string;
16265
+ }): Request<{}>;
16266
+ /** 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. */
16267
+ get(request?: {
16268
+ /** V1 error format. */
16269
+ '$.xgafv'?: string;
16270
+ /** OAuth access token. */
16271
+ access_token?: string;
16272
+ /** Data format for response. */
16273
+ alt?: string;
16274
+ /** JSONP */
16275
+ callback?: string;
16276
+ /** Selector specifying which fields to include in a partial response. */
16277
+ fields?: string;
16278
+ /** 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. */
16279
+ key?: string;
16280
+ /** The name of the operation resource. */
16281
+ name: string;
16282
+ /** OAuth 2.0 token for the current user. */
16283
+ oauth_token?: string;
16284
+ /** Returns response with indentations and line breaks. */
16285
+ prettyPrint?: boolean;
16286
+ /** 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. */
16287
+ quotaUser?: string;
16288
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16289
+ upload_protocol?: string;
16290
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16291
+ uploadType?: string;
16292
+ }): Request<GoogleLongrunningOperation>;
16293
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
16294
+ list(request?: {
16295
+ /** V1 error format. */
16296
+ '$.xgafv'?: string;
16297
+ /** OAuth access token. */
16298
+ access_token?: string;
16299
+ /** Data format for response. */
16300
+ alt?: string;
16301
+ /** JSONP */
16302
+ callback?: string;
16303
+ /** Selector specifying which fields to include in a partial response. */
16304
+ fields?: string;
16305
+ /** The standard list filter. */
16306
+ filter?: string;
16307
+ /** 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. */
16308
+ key?: string;
16309
+ /** The name of the operation's parent resource. */
16310
+ name: string;
16311
+ /** OAuth 2.0 token for the current user. */
16312
+ oauth_token?: string;
16313
+ /** The standard list page size. */
16314
+ pageSize?: number;
16315
+ /** The standard list page token. */
16316
+ pageToken?: string;
16317
+ /** Returns response with indentations and line breaks. */
16318
+ prettyPrint?: boolean;
16319
+ /** 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. */
16320
+ quotaUser?: string;
16321
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16322
+ upload_protocol?: string;
16323
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16324
+ uploadType?: string;
16325
+ }): Request<GoogleLongrunningListOperationsResponse>;
16326
+ /** 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. */
16327
+ wait(request?: {
16328
+ /** V1 error format. */
16329
+ '$.xgafv'?: string;
16330
+ /** OAuth access token. */
16331
+ access_token?: string;
16332
+ /** Data format for response. */
16333
+ alt?: string;
16334
+ /** JSONP */
16335
+ callback?: string;
16336
+ /** Selector specifying which fields to include in a partial response. */
16337
+ fields?: string;
16338
+ /** 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. */
16339
+ key?: string;
16340
+ /** The name of the operation resource to wait on. */
16341
+ name: string;
16342
+ /** OAuth 2.0 token for the current user. */
16343
+ oauth_token?: string;
16344
+ /** Returns response with indentations and line breaks. */
16345
+ prettyPrint?: boolean;
16346
+ /** 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. */
16347
+ quotaUser?: string;
16348
+ /** 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. */
16349
+ timeout?: string;
16350
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16351
+ upload_protocol?: string;
16352
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16353
+ uploadType?: string;
16354
+ }): Request<GoogleLongrunningOperation>;
16355
+ }
16173
16356
  interface FeatureMonitorsResource {
16174
16357
  /** Creates a new FeatureMonitor in a given project, location and FeatureGroup. */
16175
16358
  create(request: {
@@ -16323,6 +16506,7 @@ declare namespace gapi.client {
16323
16506
  uploadType?: string;
16324
16507
  }): Request<GoogleCloudAiplatformV1beta1ListFeatureMonitorsResponse>;
16325
16508
  featureMonitorJobs: FeatureMonitorJobsResource;
16509
+ operations: OperationsResource;
16326
16510
  }
16327
16511
  interface OperationsResource {
16328
16512
  /** 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`. */
@@ -16985,7 +17169,7 @@ declare namespace gapi.client {
16985
17169
  orderBy?: string;
16986
17170
  /** 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. */
16987
17171
  pageSize?: number;
16988
- /** 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. */
17172
+ /** 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. */
16989
17173
  pageToken?: string;
16990
17174
  /** Required. The resource name of the Location to list FeatureGroups. Format: `projects/{project}/locations/{location}` */
16991
17175
  parent: string;
@@ -26655,7 +26839,7 @@ declare namespace gapi.client {
26655
26839
  orderBy?: string;
26656
26840
  /** Optional. The standard list page size. */
26657
26841
  pageSize?: number;
26658
- /** Optional. The standard list page token. Typically obtained via ListNotebookExecutionJobs.next_page_token of the previous NotebookService.ListNotebookExecutionJobs call. */
26842
+ /** Optional. The standard list page token. Typically obtained via ListNotebookExecutionJobsResponse.next_page_token of the previous NotebookService.ListNotebookExecutionJobs call. */
26659
26843
  pageToken?: string;
26660
26844
  /** Required. The resource name of the Location from which to list the NotebookExecutionJobs. Format: `projects/{project}/locations/{location}` */
26661
26845
  parent: string;
@@ -28191,7 +28375,7 @@ declare namespace gapi.client {
28191
28375
  oauth_token?: string;
28192
28376
  /** Optional. The standard list page size. */
28193
28377
  pageSize?: number;
28194
- /** Optional. The standard list page token. Typically obtained via ListPersistentResourceResponse.next_page_token of the previous PersistentResourceService.ListPersistentResource call. */
28378
+ /** Optional. The standard list page token. Typically obtained via ListPersistentResourcesResponse.next_page_token of the previous PersistentResourceService.ListPersistentResource call. */
28195
28379
  pageToken?: string;
28196
28380
  /** Required. The resource name of the Location to list the PersistentResources from. Format: `projects/{project}/locations/{location}` */
28197
28381
  parent: string;
@@ -30883,7 +31067,7 @@ declare namespace gapi.client {
30883
31067
  },
30884
31068
  body: GoogleCloudAiplatformV1beta1PauseScheduleRequest
30885
31069
  ): Request<{}>;
30886
- /** 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. */
31070
+ /** 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. */
30887
31071
  resume(request: {
30888
31072
  /** V1 error format. */
30889
31073
  '$.xgafv'?: string;
@@ -34811,7 +34995,7 @@ declare namespace gapi.client {
34811
34995
  oauth_token?: string;
34812
34996
  /** Optional. The standard list page size. */
34813
34997
  pageSize?: number;
34814
- /** Optional. The standard list page token. Typically obtained via ListTuningJob.next_page_token of the previous GenAiTuningService.ListTuningJob][] call. */
34998
+ /** Optional. The standard list page token. Typically obtained via ListTuningJobsResponse.next_page_token of the previous GenAiTuningService.ListTuningJob][] call. */
34815
34999
  pageToken?: string;
34816
35000
  /** Required. The resource name of the Location to list the TuningJobs from. Format: `projects/{project}/locations/{location}` */
34817
35001
  parent: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.0.20241026",
3
+ "version": "0.0.20241112",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",