@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20240424 → 0.0.20240429

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 +339 -162
  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: 20240424
12
+ // Revision: 20240429
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -2524,7 +2524,7 @@ declare namespace gapi.client {
2524
2524
  interface GoogleCloudAiplatformV1beta1FindNeighborsResponseNeighbor {
2525
2525
  /** The datapoint of the neighbor. Note that full datapoints are returned only when "return_full_datapoint" is set to true. Otherwise, only the "datapoint_id" and "crowding_tag" fields are populated. */
2526
2526
  datapoint?: GoogleCloudAiplatformV1beta1IndexDatapoint;
2527
- /** The distance between the neighbor and the query vector. */
2527
+ /** The distance between the neighbor and the dense embedding query. */
2528
2528
  distance?: number;
2529
2529
  }
2530
2530
  interface GoogleCloudAiplatformV1beta1FluencyInput {
@@ -2727,6 +2727,8 @@ declare namespace gapi.client {
2727
2727
  interface GoogleCloudAiplatformV1beta1GroundingMetadata {
2728
2728
  /** Optional. Queries executed by the retrieval tools. */
2729
2729
  retrievalQueries?: string[];
2730
+ /** Optional. Google search entry for the following-up web searches. */
2731
+ searchEntryPoint?: GoogleCloudAiplatformV1beta1SearchEntryPoint;
2730
2732
  /** Optional. Web search queries for the following-up web search. */
2731
2733
  webSearchQueries?: string[];
2732
2734
  }
@@ -2879,7 +2881,7 @@ declare namespace gapi.client {
2879
2881
  crowdingTag?: GoogleCloudAiplatformV1beta1IndexDatapointCrowdingTag;
2880
2882
  /** Required. Unique identifier of the datapoint. */
2881
2883
  datapointId?: string;
2882
- /** Required. Feature embedding vector. An array of numbers with the length of [NearestNeighborSearchConfig.dimensions]. */
2884
+ /** Required. Feature embedding vector for dense index. An array of numbers with the length of [NearestNeighborSearchConfig.dimensions]. */
2883
2885
  featureVector?: number[];
2884
2886
  /** Optional. List of Restrict of the datapoint, used to perform "restricted searches" where boolean rule are used to filter the subset of the database eligible for matching. This uses numeric comparisons. */
2885
2887
  numericRestricts?: GoogleCloudAiplatformV1beta1IndexDatapointNumericRestriction[];
@@ -2951,7 +2953,7 @@ declare namespace gapi.client {
2951
2953
  interface GoogleCloudAiplatformV1beta1IndexStats {
2952
2954
  /** Output only. The number of shards in the Index. */
2953
2955
  shardsCount?: number;
2954
- /** Output only. The number of vectors in the Index. */
2956
+ /** Output only. The number of dense vectors in the Index. */
2955
2957
  vectorsCount?: string;
2956
2958
  }
2957
2959
  interface GoogleCloudAiplatformV1beta1InputDataConfig {
@@ -4045,8 +4047,6 @@ declare namespace gapi.client {
4045
4047
  featureFields?: GoogleCloudAiplatformV1beta1ModelMonitoringSchemaFieldSchema[];
4046
4048
  /** Target /ground truth names of the model. */
4047
4049
  groundTruthFields?: GoogleCloudAiplatformV1beta1ModelMonitoringSchemaFieldSchema[];
4048
- /** The prediction instance type that the Model accepts when serving. Supported values are: * `object`: Each input is a JSON object format. * `array`: Each input is a JSON array format. */
4049
- instanceType?: string;
4050
4050
  /** Prediction output names of the model. The requirements are the same as the feature_fields. For AutoML Tables, the prediction output name presented in schema will be: `predicted_{target_column}`, the `target_column` is the one you specified when you train the model. For Prediction output drift analysis: * AutoML Classification, the distribution of the argmax label will be analyzed. * AutoML Regression, the distribution of the value will be analyzed. */
4051
4051
  predictionFields?: GoogleCloudAiplatformV1beta1ModelMonitoringSchemaFieldSchema[];
4052
4052
  }
@@ -4377,8 +4377,12 @@ declare namespace gapi.client {
4377
4377
  interface GoogleCloudAiplatformV1beta1NotebookExecutionJob {
4378
4378
  /** Output only. Timestamp when this NotebookExecutionJob was created. */
4379
4379
  createTime?: string;
4380
+ /** The custom compute configuration for an execution job. */
4381
+ customEnvironmentSpec?: GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec;
4380
4382
  /** The Dataform Repository pointing to a single file notebook repository. */
4381
4383
  dataformRepositorySource?: GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource;
4384
+ /** The contents of an input notebook file. */
4385
+ directNotebookSource?: GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource;
4382
4386
  /** The display name of the NotebookExecutionJob. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
4383
4387
  displayName?: string;
4384
4388
  /** Max running time of the execution job in seconds (default 86400s / 24 hrs). */
@@ -4404,12 +4408,24 @@ declare namespace gapi.client {
4404
4408
  /** Output only. Timestamp when this NotebookExecutionJob was most recently updated. */
4405
4409
  updateTime?: string;
4406
4410
  }
4411
+ interface GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec {
4412
+ /** The specification of a single machine for the execution job. */
4413
+ machineSpec?: GoogleCloudAiplatformV1beta1MachineSpec;
4414
+ /** The network configuration to use for the execution job. */
4415
+ networkSpec?: GoogleCloudAiplatformV1beta1NetworkSpec;
4416
+ /** The specification of a persistent disk to attach for the execution job. */
4417
+ persistentDiskSpec?: GoogleCloudAiplatformV1beta1PersistentDiskSpec;
4418
+ }
4407
4419
  interface GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource {
4408
4420
  /** The commit SHA to read repository with. If unset, the file will be read at HEAD. */
4409
4421
  commitSha?: string;
4410
4422
  /** The resource name of the Dataform Repository. Format: `projects/{project_id}/locations/{location}/repositories/{repository_id}` */
4411
4423
  dataformRepositoryResourceName?: string;
4412
4424
  }
4425
+ interface GoogleCloudAiplatformV1beta1NotebookExecutionJobDirectNotebookSource {
4426
+ /** The base64-encoded contents of the input notebook file. */
4427
+ content?: string;
4428
+ }
4413
4429
  interface GoogleCloudAiplatformV1beta1NotebookExecutionJobGcsNotebookSource {
4414
4430
  /** The version of the Cloud Storage object to read. If unset, the current version of the object is read. See https://cloud.google.com/storage/docs/metadata#generation-number. */
4415
4431
  generation?: string;
@@ -4879,6 +4895,8 @@ declare namespace gapi.client {
4879
4895
  deploy?: GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeploy;
4880
4896
  /** Optional. Deploy PublisherModel to Google Kubernetes Engine. */
4881
4897
  deployGke?: GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeployGke;
4898
+ /** Optional. Fine tune the PublisherModel with the third-party model tuning UI. */
4899
+ fineTune?: GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences;
4882
4900
  /** Optional. Open evaluation pipeline of the PublisherModel. */
4883
4901
  openEvaluationPipeline?: GoogleCloudAiplatformV1beta1PublisherModelCallToActionRegionalResourceReferences;
4884
4902
  /** Optional. Open fine-tuning pipeline of the PublisherModel. */
@@ -4909,6 +4927,8 @@ declare namespace gapi.client {
4909
4927
  containerSpec?: GoogleCloudAiplatformV1beta1ModelContainerSpec;
4910
4928
  /** A description of resources that are dedicated to the DeployedModel, and that need a higher degree of manual configuration. */
4911
4929
  dedicatedResources?: GoogleCloudAiplatformV1beta1DedicatedResources;
4930
+ /** Optional. The name of the deploy task (e.g., "text to image generation"). */
4931
+ deployTaskName?: string;
4912
4932
  /** Optional. Large model reference. When this is set, model_artifact_spec is not needed. */
4913
4933
  largeModelReference?: GoogleCloudAiplatformV1beta1LargeModelReference;
4914
4934
  /** Optional. Default model display name. */
@@ -6904,6 +6924,12 @@ declare namespace gapi.client {
6904
6924
  /** A token to retrieve next page of results. Pass to SearchDataItemsRequest.page_token to obtain that page. */
6905
6925
  nextPageToken?: string;
6906
6926
  }
6927
+ interface GoogleCloudAiplatformV1beta1SearchEntryPoint {
6928
+ /** Optional. Web content snippet that can be embedded in a web page or an app webview. */
6929
+ renderedContent?: string;
6930
+ /** Optional. Base64 encoded JSON representing array of tuple. */
6931
+ sdkBlob?: string;
6932
+ }
6907
6933
  interface GoogleCloudAiplatformV1beta1SearchFeaturesResponse {
6908
6934
  /** The Features matching the request. Fields returned: * `name` * `description` * `labels` * `create_time` * `update_time` */
6909
6935
  features?: GoogleCloudAiplatformV1beta1Feature[];
@@ -8176,11 +8202,10 @@ declare namespace gapi.client {
8176
8202
  trainingSegmentResults?: LanguageLabsAidaTrustRecitationProtoSegmentResult[];
8177
8203
  }
8178
8204
  interface LanguageLabsAidaTrustRecitationProtoSegmentResult {
8179
- /** The dataset the segment came from. */
8205
+ /** The dataset the segment came from. Datasets change often as model evolves. Treat this field as informational only and avoid depending on it directly. */
8180
8206
  attributionDataset?: string;
8181
8207
  /** human-friendly string that contains information from doc_attribution which could be shown by clients */
8182
8208
  displayAttributionMessage?: string;
8183
- /** populated when recitation_action == CITE */
8184
8209
  docAttribution?: LanguageLabsAidaTrustRecitationProtoDocAttribution;
8185
8210
  /** number of documents that contained this segment */
8186
8211
  docOccurrences?: number;
@@ -8188,6 +8213,8 @@ declare namespace gapi.client {
8188
8213
  /** The raw text in the given input that is corresponding to the segment. It will be available only when 'return_segment_raw_text' is enabled in the request options. */
8189
8214
  rawText?: string;
8190
8215
  segmentRecitationAction?: string;
8216
+ /** The category of the source dataset where the segment came from. This is more stable than Dataset. */
8217
+ sourceCategory?: string;
8191
8218
  /** The segment boundary start (inclusive) and end index (exclusive) in the given text. In the streaming RPC, the indexes always start from the beginning of the first text in the entire stream. The indexes are measured in UTF-16 code units. */
8192
8219
  startIndex?: number;
8193
8220
  }
@@ -8249,11 +8276,10 @@ declare namespace gapi.client {
8249
8276
  trainingSegmentResults?: LearningGenaiRecitationSegmentResult[];
8250
8277
  }
8251
8278
  interface LearningGenaiRecitationSegmentResult {
8252
- /** The dataset the segment came from. */
8279
+ /** The dataset the segment came from. Datasets change often as model evolves. Treat this field as informational only and avoid depending on it directly. */
8253
8280
  attributionDataset?: string;
8254
8281
  /** human-friendly string that contains information from doc_attribution which could be shown by clients */
8255
8282
  displayAttributionMessage?: string;
8256
- /** populated when recitation_action == CITE */
8257
8283
  docAttribution?: LearningGenaiRecitationDocAttribution;
8258
8284
  /** number of documents that contained this segment */
8259
8285
  docOccurrences?: number;
@@ -8261,6 +8287,8 @@ declare namespace gapi.client {
8261
8287
  /** The raw text in the given input that is corresponding to the segment. It will be available only when 'return_segment_raw_text' is enabled in the request options. */
8262
8288
  rawText?: string;
8263
8289
  segmentRecitationAction?: string;
8290
+ /** The category of the source dataset where the segment came from. This is more stable than Dataset. */
8291
+ sourceCategory?: string;
8264
8292
  /** The segment boundary start (inclusive) and end index (exclusive) in the given text. In the streaming RPC, the indexes always start from the beginning of the first text in the entire stream. The indexes are measured in UTF-16 code units. */
8265
8293
  startIndex?: number;
8266
8294
  }
@@ -8631,7 +8659,7 @@ declare namespace gapi.client {
8631
8659
  scores?: LearningGenaiRootScore[];
8632
8660
  /** Whether the response is terminated during streaming return. Only used for streaming requests. */
8633
8661
  streamTerminated?: boolean;
8634
- /** NOT YET IMPLEMENTED. Aggregated number of total tokens decoded so far. For streaming, this is sum of all the tokens decoded so far i.e. aggregated count. */
8662
+ /** Total tokens decoded so far per response_candidate. For streaming: Count of all the tokens decoded so far (aggregated count). For unary: Count of all the tokens decoded per response_candidate. */
8635
8663
  totalDecodedTokenCount?: number;
8636
8664
  /** Translated user-prompt used for RAI post processing. This is for internal processing only. We will translate in pre-processor and pass the translated text to the post processor using this field. It will be empty if non of the signals requested need translation. */
8637
8665
  translatedUserPrompts?: string[];
@@ -8684,6 +8712,302 @@ declare namespace gapi.client {
8684
8712
  /** The following are usually only present when code != 0 Space to which this status belongs */
8685
8713
  space?: string;
8686
8714
  }
8715
+ interface OperationsResource {
8716
+ /** 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`. */
8717
+ cancel(request?: {
8718
+ /** V1 error format. */
8719
+ '$.xgafv'?: string;
8720
+ /** OAuth access token. */
8721
+ access_token?: string;
8722
+ /** Data format for response. */
8723
+ alt?: string;
8724
+ /** JSONP */
8725
+ callback?: string;
8726
+ /** Selector specifying which fields to include in a partial response. */
8727
+ fields?: string;
8728
+ /** 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. */
8729
+ key?: string;
8730
+ /** The name of the operation resource to be cancelled. */
8731
+ name: string;
8732
+ /** OAuth 2.0 token for the current user. */
8733
+ oauth_token?: string;
8734
+ /** Returns response with indentations and line breaks. */
8735
+ prettyPrint?: boolean;
8736
+ /** 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. */
8737
+ quotaUser?: string;
8738
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8739
+ upload_protocol?: string;
8740
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8741
+ uploadType?: string;
8742
+ }): Request<{}>;
8743
+ /** 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`. */
8744
+ delete(request?: {
8745
+ /** V1 error format. */
8746
+ '$.xgafv'?: string;
8747
+ /** OAuth access token. */
8748
+ access_token?: string;
8749
+ /** Data format for response. */
8750
+ alt?: string;
8751
+ /** JSONP */
8752
+ callback?: string;
8753
+ /** Selector specifying which fields to include in a partial response. */
8754
+ fields?: string;
8755
+ /** 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. */
8756
+ key?: string;
8757
+ /** The name of the operation resource to be deleted. */
8758
+ name: string;
8759
+ /** OAuth 2.0 token for the current user. */
8760
+ oauth_token?: string;
8761
+ /** Returns response with indentations and line breaks. */
8762
+ prettyPrint?: boolean;
8763
+ /** 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. */
8764
+ quotaUser?: string;
8765
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8766
+ upload_protocol?: string;
8767
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8768
+ uploadType?: string;
8769
+ }): Request<{}>;
8770
+ /** 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. */
8771
+ get(request?: {
8772
+ /** V1 error format. */
8773
+ '$.xgafv'?: string;
8774
+ /** OAuth access token. */
8775
+ access_token?: string;
8776
+ /** Data format for response. */
8777
+ alt?: string;
8778
+ /** JSONP */
8779
+ callback?: string;
8780
+ /** Selector specifying which fields to include in a partial response. */
8781
+ fields?: string;
8782
+ /** 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. */
8783
+ key?: string;
8784
+ /** The name of the operation resource. */
8785
+ name: string;
8786
+ /** OAuth 2.0 token for the current user. */
8787
+ oauth_token?: string;
8788
+ /** Returns response with indentations and line breaks. */
8789
+ prettyPrint?: boolean;
8790
+ /** 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. */
8791
+ quotaUser?: string;
8792
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8793
+ upload_protocol?: string;
8794
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8795
+ uploadType?: string;
8796
+ }): Request<GoogleLongrunningOperation>;
8797
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
8798
+ list(request?: {
8799
+ /** V1 error format. */
8800
+ '$.xgafv'?: string;
8801
+ /** OAuth access token. */
8802
+ access_token?: string;
8803
+ /** Data format for response. */
8804
+ alt?: string;
8805
+ /** JSONP */
8806
+ callback?: string;
8807
+ /** Selector specifying which fields to include in a partial response. */
8808
+ fields?: string;
8809
+ /** The standard list filter. */
8810
+ filter?: string;
8811
+ /** 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. */
8812
+ key?: string;
8813
+ /** The name of the operation's parent resource. */
8814
+ name: string;
8815
+ /** OAuth 2.0 token for the current user. */
8816
+ oauth_token?: string;
8817
+ /** The standard list page size. */
8818
+ pageSize?: number;
8819
+ /** The standard list page token. */
8820
+ pageToken?: string;
8821
+ /** Returns response with indentations and line breaks. */
8822
+ prettyPrint?: boolean;
8823
+ /** 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. */
8824
+ quotaUser?: string;
8825
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8826
+ upload_protocol?: string;
8827
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8828
+ uploadType?: string;
8829
+ }): Request<GoogleLongrunningListOperationsResponse>;
8830
+ /** 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. */
8831
+ wait(request?: {
8832
+ /** V1 error format. */
8833
+ '$.xgafv'?: string;
8834
+ /** OAuth access token. */
8835
+ access_token?: string;
8836
+ /** Data format for response. */
8837
+ alt?: string;
8838
+ /** JSONP */
8839
+ callback?: string;
8840
+ /** Selector specifying which fields to include in a partial response. */
8841
+ fields?: string;
8842
+ /** 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. */
8843
+ key?: string;
8844
+ /** The name of the operation resource to wait on. */
8845
+ name: string;
8846
+ /** OAuth 2.0 token for the current user. */
8847
+ oauth_token?: string;
8848
+ /** Returns response with indentations and line breaks. */
8849
+ prettyPrint?: boolean;
8850
+ /** 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. */
8851
+ quotaUser?: string;
8852
+ /** 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. */
8853
+ timeout?: string;
8854
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8855
+ upload_protocol?: string;
8856
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8857
+ uploadType?: string;
8858
+ }): Request<GoogleLongrunningOperation>;
8859
+ }
8860
+ interface AgentsResource {
8861
+ operations: OperationsResource;
8862
+ }
8863
+ interface OperationsResource {
8864
+ /** 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`. */
8865
+ cancel(request?: {
8866
+ /** V1 error format. */
8867
+ '$.xgafv'?: string;
8868
+ /** OAuth access token. */
8869
+ access_token?: string;
8870
+ /** Data format for response. */
8871
+ alt?: string;
8872
+ /** JSONP */
8873
+ callback?: string;
8874
+ /** Selector specifying which fields to include in a partial response. */
8875
+ fields?: string;
8876
+ /** 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. */
8877
+ key?: string;
8878
+ /** The name of the operation resource to be cancelled. */
8879
+ name: string;
8880
+ /** OAuth 2.0 token for the current user. */
8881
+ oauth_token?: string;
8882
+ /** Returns response with indentations and line breaks. */
8883
+ prettyPrint?: boolean;
8884
+ /** 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. */
8885
+ quotaUser?: string;
8886
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8887
+ upload_protocol?: string;
8888
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8889
+ uploadType?: string;
8890
+ }): Request<{}>;
8891
+ /** 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`. */
8892
+ delete(request?: {
8893
+ /** V1 error format. */
8894
+ '$.xgafv'?: string;
8895
+ /** OAuth access token. */
8896
+ access_token?: string;
8897
+ /** Data format for response. */
8898
+ alt?: string;
8899
+ /** JSONP */
8900
+ callback?: string;
8901
+ /** Selector specifying which fields to include in a partial response. */
8902
+ fields?: string;
8903
+ /** 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. */
8904
+ key?: string;
8905
+ /** The name of the operation resource to be deleted. */
8906
+ name: string;
8907
+ /** OAuth 2.0 token for the current user. */
8908
+ oauth_token?: string;
8909
+ /** Returns response with indentations and line breaks. */
8910
+ prettyPrint?: boolean;
8911
+ /** 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. */
8912
+ quotaUser?: string;
8913
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8914
+ upload_protocol?: string;
8915
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8916
+ uploadType?: string;
8917
+ }): Request<{}>;
8918
+ /** 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. */
8919
+ get(request?: {
8920
+ /** V1 error format. */
8921
+ '$.xgafv'?: string;
8922
+ /** OAuth access token. */
8923
+ access_token?: string;
8924
+ /** Data format for response. */
8925
+ alt?: string;
8926
+ /** JSONP */
8927
+ callback?: string;
8928
+ /** Selector specifying which fields to include in a partial response. */
8929
+ fields?: string;
8930
+ /** 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. */
8931
+ key?: string;
8932
+ /** The name of the operation resource. */
8933
+ name: string;
8934
+ /** OAuth 2.0 token for the current user. */
8935
+ oauth_token?: string;
8936
+ /** Returns response with indentations and line breaks. */
8937
+ prettyPrint?: boolean;
8938
+ /** 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. */
8939
+ quotaUser?: string;
8940
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8941
+ upload_protocol?: string;
8942
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8943
+ uploadType?: string;
8944
+ }): Request<GoogleLongrunningOperation>;
8945
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
8946
+ list(request?: {
8947
+ /** V1 error format. */
8948
+ '$.xgafv'?: string;
8949
+ /** OAuth access token. */
8950
+ access_token?: string;
8951
+ /** Data format for response. */
8952
+ alt?: string;
8953
+ /** JSONP */
8954
+ callback?: string;
8955
+ /** Selector specifying which fields to include in a partial response. */
8956
+ fields?: string;
8957
+ /** The standard list filter. */
8958
+ filter?: string;
8959
+ /** 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. */
8960
+ key?: string;
8961
+ /** The name of the operation's parent resource. */
8962
+ name: string;
8963
+ /** OAuth 2.0 token for the current user. */
8964
+ oauth_token?: string;
8965
+ /** The standard list page size. */
8966
+ pageSize?: number;
8967
+ /** The standard list page token. */
8968
+ pageToken?: string;
8969
+ /** Returns response with indentations and line breaks. */
8970
+ prettyPrint?: boolean;
8971
+ /** 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. */
8972
+ quotaUser?: string;
8973
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
8974
+ upload_protocol?: string;
8975
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
8976
+ uploadType?: string;
8977
+ }): Request<GoogleLongrunningListOperationsResponse>;
8978
+ /** 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. */
8979
+ wait(request?: {
8980
+ /** V1 error format. */
8981
+ '$.xgafv'?: string;
8982
+ /** OAuth access token. */
8983
+ access_token?: string;
8984
+ /** Data format for response. */
8985
+ alt?: string;
8986
+ /** JSONP */
8987
+ callback?: string;
8988
+ /** Selector specifying which fields to include in a partial response. */
8989
+ fields?: string;
8990
+ /** 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. */
8991
+ key?: string;
8992
+ /** The name of the operation resource to wait on. */
8993
+ name: string;
8994
+ /** OAuth 2.0 token for the current user. */
8995
+ oauth_token?: string;
8996
+ /** Returns response with indentations and line breaks. */
8997
+ prettyPrint?: boolean;
8998
+ /** 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. */
8999
+ quotaUser?: string;
9000
+ /** 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. */
9001
+ timeout?: string;
9002
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
9003
+ upload_protocol?: string;
9004
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
9005
+ uploadType?: string;
9006
+ }): Request<GoogleLongrunningOperation>;
9007
+ }
9008
+ interface AppsResource {
9009
+ operations: OperationsResource;
9010
+ }
8687
9011
  interface BatchPredictionJobsResource {
8688
9012
  /** Cancels a BatchPredictionJob. Starts asynchronous cancellation on the BatchPredictionJob. The server makes the best effort to cancel the job, but success is not guaranteed. Clients can use JobService.GetBatchPredictionJob or other methods to check whether the cancellation succeeded or whether the job completed despite cancellation. On a successful cancellation, the BatchPredictionJob is not deleted;instead its BatchPredictionJob.state is set to `CANCELLED`. Any files already outputted by the job are not deleted. */
8689
9013
  cancel(request: {
@@ -13308,154 +13632,6 @@ declare namespace gapi.client {
13308
13632
  uploadType?: string;
13309
13633
  }): Request<GoogleLongrunningOperation>;
13310
13634
  }
13311
- interface DeploymentsResource {
13312
- operations: OperationsResource;
13313
- }
13314
- interface OperationsResource {
13315
- /** 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`. */
13316
- cancel(request?: {
13317
- /** V1 error format. */
13318
- '$.xgafv'?: string;
13319
- /** OAuth access token. */
13320
- access_token?: string;
13321
- /** Data format for response. */
13322
- alt?: string;
13323
- /** JSONP */
13324
- callback?: string;
13325
- /** Selector specifying which fields to include in a partial response. */
13326
- fields?: string;
13327
- /** 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. */
13328
- key?: string;
13329
- /** The name of the operation resource to be cancelled. */
13330
- name: string;
13331
- /** OAuth 2.0 token for the current user. */
13332
- oauth_token?: string;
13333
- /** Returns response with indentations and line breaks. */
13334
- prettyPrint?: boolean;
13335
- /** 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. */
13336
- quotaUser?: string;
13337
- /** Upload protocol for media (e.g. "raw", "multipart"). */
13338
- upload_protocol?: string;
13339
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13340
- uploadType?: string;
13341
- }): Request<{}>;
13342
- /** 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`. */
13343
- delete(request?: {
13344
- /** V1 error format. */
13345
- '$.xgafv'?: string;
13346
- /** OAuth access token. */
13347
- access_token?: string;
13348
- /** Data format for response. */
13349
- alt?: string;
13350
- /** JSONP */
13351
- callback?: string;
13352
- /** Selector specifying which fields to include in a partial response. */
13353
- fields?: string;
13354
- /** 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. */
13355
- key?: string;
13356
- /** The name of the operation resource to be deleted. */
13357
- name: string;
13358
- /** OAuth 2.0 token for the current user. */
13359
- oauth_token?: string;
13360
- /** Returns response with indentations and line breaks. */
13361
- prettyPrint?: boolean;
13362
- /** 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. */
13363
- quotaUser?: string;
13364
- /** Upload protocol for media (e.g. "raw", "multipart"). */
13365
- upload_protocol?: string;
13366
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13367
- uploadType?: string;
13368
- }): Request<{}>;
13369
- /** 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. */
13370
- get(request?: {
13371
- /** V1 error format. */
13372
- '$.xgafv'?: string;
13373
- /** OAuth access token. */
13374
- access_token?: string;
13375
- /** Data format for response. */
13376
- alt?: string;
13377
- /** JSONP */
13378
- callback?: string;
13379
- /** Selector specifying which fields to include in a partial response. */
13380
- fields?: string;
13381
- /** 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. */
13382
- key?: string;
13383
- /** The name of the operation resource. */
13384
- name: string;
13385
- /** OAuth 2.0 token for the current user. */
13386
- oauth_token?: string;
13387
- /** Returns response with indentations and line breaks. */
13388
- prettyPrint?: boolean;
13389
- /** 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. */
13390
- quotaUser?: string;
13391
- /** Upload protocol for media (e.g. "raw", "multipart"). */
13392
- upload_protocol?: string;
13393
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13394
- uploadType?: string;
13395
- }): Request<GoogleLongrunningOperation>;
13396
- /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
13397
- list(request?: {
13398
- /** V1 error format. */
13399
- '$.xgafv'?: string;
13400
- /** OAuth access token. */
13401
- access_token?: string;
13402
- /** Data format for response. */
13403
- alt?: string;
13404
- /** JSONP */
13405
- callback?: string;
13406
- /** Selector specifying which fields to include in a partial response. */
13407
- fields?: string;
13408
- /** The standard list filter. */
13409
- filter?: string;
13410
- /** 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. */
13411
- key?: string;
13412
- /** The name of the operation's parent resource. */
13413
- name: string;
13414
- /** OAuth 2.0 token for the current user. */
13415
- oauth_token?: string;
13416
- /** The standard list page size. */
13417
- pageSize?: number;
13418
- /** The standard list page token. */
13419
- pageToken?: string;
13420
- /** Returns response with indentations and line breaks. */
13421
- prettyPrint?: boolean;
13422
- /** 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. */
13423
- quotaUser?: string;
13424
- /** Upload protocol for media (e.g. "raw", "multipart"). */
13425
- upload_protocol?: string;
13426
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13427
- uploadType?: string;
13428
- }): Request<GoogleLongrunningListOperationsResponse>;
13429
- /** 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. */
13430
- wait(request?: {
13431
- /** V1 error format. */
13432
- '$.xgafv'?: string;
13433
- /** OAuth access token. */
13434
- access_token?: string;
13435
- /** Data format for response. */
13436
- alt?: string;
13437
- /** JSONP */
13438
- callback?: string;
13439
- /** Selector specifying which fields to include in a partial response. */
13440
- fields?: string;
13441
- /** 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. */
13442
- key?: string;
13443
- /** The name of the operation resource to wait on. */
13444
- name: string;
13445
- /** OAuth 2.0 token for the current user. */
13446
- oauth_token?: string;
13447
- /** Returns response with indentations and line breaks. */
13448
- prettyPrint?: boolean;
13449
- /** 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. */
13450
- quotaUser?: string;
13451
- /** 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. */
13452
- timeout?: string;
13453
- /** Upload protocol for media (e.g. "raw", "multipart"). */
13454
- upload_protocol?: string;
13455
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13456
- uploadType?: string;
13457
- }): Request<GoogleLongrunningOperation>;
13458
- }
13459
13635
  interface ExtensionsResource {
13460
13636
  /** Deletes an Extension. */
13461
13637
  delete(request?: {
@@ -13782,7 +13958,6 @@ declare namespace gapi.client {
13782
13958
  },
13783
13959
  body: GoogleCloudAiplatformV1beta1QueryExtensionRequest
13784
13960
  ): Request<GoogleCloudAiplatformV1beta1QueryExtensionResponse>;
13785
- deployments: DeploymentsResource;
13786
13961
  operations: OperationsResource;
13787
13962
  }
13788
13963
  interface OperationsResource {
@@ -14260,7 +14435,7 @@ declare namespace gapi.client {
14260
14435
  key?: string;
14261
14436
  /** OAuth 2.0 token for the current user. */
14262
14437
  oauth_token?: string;
14263
- /** Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}'` */
14438
+ /** Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}` */
14264
14439
  parent: string;
14265
14440
  /** Returns response with indentations and line breaks. */
14266
14441
  prettyPrint?: boolean;
@@ -14291,7 +14466,7 @@ declare namespace gapi.client {
14291
14466
  key?: string;
14292
14467
  /** OAuth 2.0 token for the current user. */
14293
14468
  oauth_token?: string;
14294
- /** Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}'` */
14469
+ /** Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}` */
14295
14470
  parent: string;
14296
14471
  /** Returns response with indentations and line breaks. */
14297
14472
  prettyPrint?: boolean;
@@ -30926,6 +31101,8 @@ declare namespace gapi.client {
30926
31101
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
30927
31102
  uploadType?: string;
30928
31103
  }): Request<GoogleCloudLocationListLocationsResponse>;
31104
+ agents: AgentsResource;
31105
+ apps: AppsResource;
30929
31106
  batchPredictionJobs: BatchPredictionJobsResource;
30930
31107
  customJobs: CustomJobsResource;
30931
31108
  dataLabelingJobs: DataLabelingJobsResource;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.0.20240424",
3
+ "version": "0.0.20240429",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",