@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.4.20251219 → 0.4.20260106
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.
- package/index.d.ts +48 -42
- 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:
|
|
12
|
+
// Revision: 20260106
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -621,6 +621,8 @@ declare namespace gapi.client {
|
|
|
621
621
|
gcsSource?: GoogleCloudAiplatformV1beta1GcsSource;
|
|
622
622
|
/** Required. The format in which instances are given, must be one of the Model's supported_input_storage_formats. */
|
|
623
623
|
instancesFormat?: string;
|
|
624
|
+
/** A Vertex Managed Dataset. Currently, only datasets of type Multimodal are supported. */
|
|
625
|
+
vertexMultimodalDatasetSource?: GoogleCloudAiplatformV1beta1VertexMultimodalDatasetSource;
|
|
624
626
|
}
|
|
625
627
|
interface GoogleCloudAiplatformV1beta1BatchPredictionJobInstanceConfig {
|
|
626
628
|
/** Fields that will be excluded in the prediction instance that is sent to the Model. Excluded will be attached to the batch prediction output if key_field is not specified. When excluded_fields is populated, included_fields must be empty. The input must be JSONL with objects at each line, BigQuery or TfRecord. */
|
|
@@ -639,6 +641,8 @@ declare namespace gapi.client {
|
|
|
639
641
|
gcsDestination?: GoogleCloudAiplatformV1beta1GcsDestination;
|
|
640
642
|
/** Required. The format in which Vertex AI gives the predictions, must be one of the Model's supported_output_storage_formats. */
|
|
641
643
|
predictionsFormat?: string;
|
|
644
|
+
/** The details for a Vertex Multimodal Dataset that will be created for the output. */
|
|
645
|
+
vertexMultimodalDatasetDestination?: GoogleCloudAiplatformV1beta1VertexMultimodalDatasetDestination;
|
|
642
646
|
}
|
|
643
647
|
interface GoogleCloudAiplatformV1beta1BatchPredictionJobOutputInfo {
|
|
644
648
|
/** Output only. The path of the BigQuery dataset created, in `bq://projectId.bqDatasetId` format, into which the prediction output is written. */
|
|
@@ -647,6 +651,8 @@ declare namespace gapi.client {
|
|
|
647
651
|
bigqueryOutputTable?: string;
|
|
648
652
|
/** Output only. The full path of the Cloud Storage directory created, into which the prediction output is written. */
|
|
649
653
|
gcsOutputDirectory?: string;
|
|
654
|
+
/** Output only. The resource name of the Vertex Managed Dataset created, into which the prediction output is written. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
655
|
+
vertexMultimodalDatasetName?: string;
|
|
650
656
|
}
|
|
651
657
|
interface GoogleCloudAiplatformV1beta1BatchReadFeatureValuesOperationMetadata {
|
|
652
658
|
/** Operation metadata for Featurestore batch read Features values. */
|
|
@@ -12188,6 +12194,16 @@ declare namespace gapi.client {
|
|
|
12188
12194
|
/** Optional. Filter specification to filter documents in the data store specified by data_store field. For more information on filtering, see [Filtering](https://cloud.google.com/generative-ai-app-builder/docs/filter-search-metadata) */
|
|
12189
12195
|
filter?: string;
|
|
12190
12196
|
}
|
|
12197
|
+
interface GoogleCloudAiplatformV1beta1VertexMultimodalDatasetDestination {
|
|
12198
|
+
/** Optional. The destination of the underlying BigQuery table that will be created for the output Multimodal Dataset. If not specified, the BigQuery table will be created in a default BigQuery dataset. */
|
|
12199
|
+
bigqueryDestination?: GoogleCloudAiplatformV1beta1BigQueryDestination;
|
|
12200
|
+
/** Optional. Display name of the output dataset. */
|
|
12201
|
+
displayName?: string;
|
|
12202
|
+
}
|
|
12203
|
+
interface GoogleCloudAiplatformV1beta1VertexMultimodalDatasetSource {
|
|
12204
|
+
/** Required. The resource name of the Vertex Dataset. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
12205
|
+
datasetName?: string;
|
|
12206
|
+
}
|
|
12191
12207
|
interface GoogleCloudAiplatformV1beta1VertexRagStore {
|
|
12192
12208
|
/** Optional. Deprecated. Please use rag_resources instead. */
|
|
12193
12209
|
ragCorpora?: string[];
|
|
@@ -20021,43 +20037,6 @@ declare namespace gapi.client {
|
|
|
20021
20037
|
interface PipelineJobsResource {
|
|
20022
20038
|
operations: OperationsResource;
|
|
20023
20039
|
}
|
|
20024
|
-
interface DatasetsResource {
|
|
20025
|
-
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
20026
|
-
getIamPolicy(request?: {
|
|
20027
|
-
/** V1 error format. */
|
|
20028
|
-
'$.xgafv'?: string;
|
|
20029
|
-
/** OAuth access token. */
|
|
20030
|
-
access_token?: string;
|
|
20031
|
-
/** Data format for response. */
|
|
20032
|
-
alt?: string;
|
|
20033
|
-
/** JSONP */
|
|
20034
|
-
callback?: string;
|
|
20035
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
20036
|
-
fields?: string;
|
|
20037
|
-
/** 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. */
|
|
20038
|
-
key?: string;
|
|
20039
|
-
/** OAuth 2.0 token for the current user. */
|
|
20040
|
-
oauth_token?: string;
|
|
20041
|
-
/** Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
20042
|
-
'options.requestedPolicyVersion'?: number;
|
|
20043
|
-
/** Returns response with indentations and line breaks. */
|
|
20044
|
-
prettyPrint?: boolean;
|
|
20045
|
-
/** 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. */
|
|
20046
|
-
quotaUser?: string;
|
|
20047
|
-
/** REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
|
|
20048
|
-
resource: string;
|
|
20049
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20050
|
-
upload_protocol?: string;
|
|
20051
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20052
|
-
uploadType?: string;
|
|
20053
|
-
}): Request<GoogleIamV1Policy>;
|
|
20054
|
-
}
|
|
20055
|
-
interface LocationsResource {
|
|
20056
|
-
datasets: DatasetsResource;
|
|
20057
|
-
}
|
|
20058
|
-
interface ProjectResource {
|
|
20059
|
-
locations: LocationsResource;
|
|
20060
|
-
}
|
|
20061
20040
|
interface OperationsResource {
|
|
20062
20041
|
/** 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`. */
|
|
20063
20042
|
cancel(request?: {
|
|
@@ -22930,6 +22909,35 @@ declare namespace gapi.client {
|
|
|
22930
22909
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22931
22910
|
uploadType?: string;
|
|
22932
22911
|
}): Request<GoogleCloudAiplatformV1beta1Dataset>;
|
|
22912
|
+
/** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
|
|
22913
|
+
getIamPolicy(request?: {
|
|
22914
|
+
/** V1 error format. */
|
|
22915
|
+
'$.xgafv'?: string;
|
|
22916
|
+
/** OAuth access token. */
|
|
22917
|
+
access_token?: string;
|
|
22918
|
+
/** Data format for response. */
|
|
22919
|
+
alt?: string;
|
|
22920
|
+
/** JSONP */
|
|
22921
|
+
callback?: string;
|
|
22922
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
22923
|
+
fields?: string;
|
|
22924
|
+
/** 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. */
|
|
22925
|
+
key?: string;
|
|
22926
|
+
/** OAuth 2.0 token for the current user. */
|
|
22927
|
+
oauth_token?: string;
|
|
22928
|
+
/** Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
|
|
22929
|
+
'options.requestedPolicyVersion'?: number;
|
|
22930
|
+
/** Returns response with indentations and line breaks. */
|
|
22931
|
+
prettyPrint?: boolean;
|
|
22932
|
+
/** 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. */
|
|
22933
|
+
quotaUser?: string;
|
|
22934
|
+
/** REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
|
|
22935
|
+
resource: string;
|
|
22936
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
22937
|
+
upload_protocol?: string;
|
|
22938
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22939
|
+
uploadType?: string;
|
|
22940
|
+
}): Request<GoogleIamV1Policy>;
|
|
22933
22941
|
/** Imports data into a Dataset. */
|
|
22934
22942
|
import(request: {
|
|
22935
22943
|
/** V1 error format. */
|
|
@@ -39957,7 +39965,7 @@ declare namespace gapi.client {
|
|
|
39957
39965
|
prettyPrint?: boolean;
|
|
39958
39966
|
/** 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. */
|
|
39959
39967
|
quotaUser?: string;
|
|
39960
|
-
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see google.protobuf.FieldMask. Input format: `{paths: "${updated_field}"}` Updatable fields: * `encryption_spec.kms_key_name` * `display_name` * `software_config.post_startup_script_config.post_startup_script` * `software_config.post_startup_script_config.post_startup_script_url` * `software_config.post_startup_script_config.post_startup_script_behavior` * `software_config.env` * `software_config.colab_image.release_name` */
|
|
39968
|
+
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see google.protobuf.FieldMask. Input format: `{paths: "${updated_field}"}` Updatable fields: * `encryption_spec.kms_key_name` * `display_name` * `software_config.post_startup_script_config.post_startup_script` * `software_config.post_startup_script_config.post_startup_script_url` * `software_config.post_startup_script_config.post_startup_script_behavior` * `software_config.env` * `software_config.colab_image.release_name` * `software_config.custom_container_config.image_uri` */
|
|
39961
39969
|
updateMask?: string;
|
|
39962
39970
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39963
39971
|
upload_protocol?: string;
|
|
@@ -39988,7 +39996,7 @@ declare namespace gapi.client {
|
|
|
39988
39996
|
prettyPrint?: boolean;
|
|
39989
39997
|
/** 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. */
|
|
39990
39998
|
quotaUser?: string;
|
|
39991
|
-
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see google.protobuf.FieldMask. Input format: `{paths: "${updated_field}"}` Updatable fields: * `encryption_spec.kms_key_name` * `display_name` * `software_config.post_startup_script_config.post_startup_script` * `software_config.post_startup_script_config.post_startup_script_url` * `software_config.post_startup_script_config.post_startup_script_behavior` * `software_config.env` * `software_config.colab_image.release_name` */
|
|
39999
|
+
/** Required. The update mask applies to the resource. For the `FieldMask` definition, see google.protobuf.FieldMask. Input format: `{paths: "${updated_field}"}` Updatable fields: * `encryption_spec.kms_key_name` * `display_name` * `software_config.post_startup_script_config.post_startup_script` * `software_config.post_startup_script_config.post_startup_script_url` * `software_config.post_startup_script_config.post_startup_script_behavior` * `software_config.env` * `software_config.colab_image.release_name` * `software_config.custom_container_config.image_uri` */
|
|
39992
40000
|
updateMask?: string;
|
|
39993
40001
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39994
40002
|
upload_protocol?: string;
|
|
@@ -55671,8 +55679,6 @@ declare namespace gapi.client {
|
|
|
55671
55679
|
|
|
55672
55680
|
const pipelineJobs: PipelineJobsResource;
|
|
55673
55681
|
|
|
55674
|
-
const project: ProjectResource;
|
|
55675
|
-
|
|
55676
55682
|
const projects: ProjectsResource;
|
|
55677
55683
|
|
|
55678
55684
|
const publishers: PublishersResource;
|