@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20240628 → 0.0.20240703
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 +21 -15
- 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: 20240703
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3498,9 +3498,9 @@ declare namespace gapi.client {
|
|
|
3498
3498
|
originalModelInfo?: GoogleCloudAiplatformV1beta1ModelOriginalModelInfo;
|
|
3499
3499
|
/** The schemata that describe formats of the Model's predictions and explanations as given and returned via PredictionService.Predict and PredictionService.Explain. */
|
|
3500
3500
|
predictSchemata?: GoogleCloudAiplatformV1beta1PredictSchemata;
|
|
3501
|
-
/** Output only.
|
|
3501
|
+
/** Output only. Reserved for future use. */
|
|
3502
3502
|
satisfiesPzi?: boolean;
|
|
3503
|
-
/** Output only.
|
|
3503
|
+
/** Output only. Reserved for future use. */
|
|
3504
3504
|
satisfiesPzs?: boolean;
|
|
3505
3505
|
/** Output only. When this Model is deployed, its prediction resources are described by the `prediction_resources` field of the Endpoint.deployed_models object. Because not all Models support all resource configuration types, the configuration types this Model supports are listed here. If no configuration types are listed, the Model cannot be deployed to an Endpoint and does not support online predictions (PredictionService.Predict or PredictionService.Explain). Such a Model can serve predictions by using a BatchPredictionJob, if it has at least one entry each in supported_input_storage_formats and supported_output_storage_formats. */
|
|
3506
3506
|
supportedDeploymentResourcesTypes?: string[];
|
|
@@ -5418,7 +5418,7 @@ declare namespace gapi.client {
|
|
|
5418
5418
|
idleShutdownMessage?: string;
|
|
5419
5419
|
}
|
|
5420
5420
|
interface GoogleCloudAiplatformV1beta1ResourcePool {
|
|
5421
|
-
/** Optional. Optional spec to configure GKE autoscaling */
|
|
5421
|
+
/** Optional. Optional spec to configure GKE or Ray-on-Vertex autoscaling */
|
|
5422
5422
|
autoscalingSpec?: GoogleCloudAiplatformV1beta1ResourcePoolAutoscalingSpec;
|
|
5423
5423
|
/** Optional. Disk spec for the machine in this node pool. */
|
|
5424
5424
|
diskSpec?: GoogleCloudAiplatformV1beta1DiskSpec;
|
|
@@ -5434,7 +5434,7 @@ declare namespace gapi.client {
|
|
|
5434
5434
|
interface GoogleCloudAiplatformV1beta1ResourcePoolAutoscalingSpec {
|
|
5435
5435
|
/** Optional. max replicas in the node pool, must be ≥ replica_count and > min_replica_count or will throw error */
|
|
5436
5436
|
maxReplicaCount?: string;
|
|
5437
|
-
/** Optional. min replicas in the node pool, must be ≤ replica_count and < max_replica_count or will throw error */
|
|
5437
|
+
/** Optional. min replicas in the node pool, must be ≤ replica_count and < max_replica_count or will throw error. For autoscaling enabled Ray-on-Vertex, we allow min_replica_count of a resource_pool to be 0 to match the OSS Ray behavior(https://docs.ray.io/en/latest/cluster/vms/user-guides/configuring-autoscaling.html#cluster-config-parameters). As for Persistent Resource, the min_replica_count must be > 0, we added a corresponding validation inside CreatePersistentResourceRequestValidator.java. */
|
|
5438
5438
|
minReplicaCount?: string;
|
|
5439
5439
|
}
|
|
5440
5440
|
interface GoogleCloudAiplatformV1beta1ResourceRuntime {
|
|
@@ -7558,6 +7558,8 @@ declare namespace gapi.client {
|
|
|
7558
7558
|
interface GoogleCloudAiplatformV1beta1SupervisedTuningDataStats {
|
|
7559
7559
|
/** Output only. Number of billable characters in the tuning dataset. */
|
|
7560
7560
|
totalBillableCharacterCount?: string;
|
|
7561
|
+
/** Output only. Number of billable tokens in the tuning dataset. */
|
|
7562
|
+
totalBillableTokenCount?: string;
|
|
7561
7563
|
/** Output only. Number of tuning characters in the tuning dataset. */
|
|
7562
7564
|
totalTuningCharacterCount?: string;
|
|
7563
7565
|
/** Output only. Number of examples in the tuning dataset. */
|
|
@@ -7637,6 +7639,10 @@ declare namespace gapi.client {
|
|
|
7637
7639
|
name?: string;
|
|
7638
7640
|
/** Output only. The number of Runs stored in this Tensorboard. */
|
|
7639
7641
|
runCount?: number;
|
|
7642
|
+
/** Output only. Reserved for future use. */
|
|
7643
|
+
satisfiesPzi?: boolean;
|
|
7644
|
+
/** Output only. Reserved for future use. */
|
|
7645
|
+
satisfiesPzs?: boolean;
|
|
7640
7646
|
/** Output only. Timestamp when this Tensorboard was last updated. */
|
|
7641
7647
|
updateTime?: string;
|
|
7642
7648
|
}
|
|
@@ -14442,7 +14448,7 @@ declare namespace gapi.client {
|
|
|
14442
14448
|
prettyPrint?: boolean;
|
|
14443
14449
|
/** 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. */
|
|
14444
14450
|
quotaUser?: string;
|
|
14445
|
-
/** Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for
|
|
14451
|
+
/** Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore) */
|
|
14446
14452
|
updateMask?: string;
|
|
14447
14453
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14448
14454
|
upload_protocol?: string;
|
|
@@ -14473,7 +14479,7 @@ declare namespace gapi.client {
|
|
|
14473
14479
|
prettyPrint?: boolean;
|
|
14474
14480
|
/** 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. */
|
|
14475
14481
|
quotaUser?: string;
|
|
14476
|
-
/** Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for
|
|
14482
|
+
/** Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore) */
|
|
14477
14483
|
updateMask?: string;
|
|
14478
14484
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14479
14485
|
upload_protocol?: string;
|
|
@@ -14778,7 +14784,7 @@ declare namespace gapi.client {
|
|
|
14778
14784
|
prettyPrint?: boolean;
|
|
14779
14785
|
/** 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. */
|
|
14780
14786
|
quotaUser?: string;
|
|
14781
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` */
|
|
14787
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` */
|
|
14782
14788
|
updateMask?: string;
|
|
14783
14789
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14784
14790
|
upload_protocol?: string;
|
|
@@ -14809,7 +14815,7 @@ declare namespace gapi.client {
|
|
|
14809
14815
|
prettyPrint?: boolean;
|
|
14810
14816
|
/** 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. */
|
|
14811
14817
|
quotaUser?: string;
|
|
14812
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` */
|
|
14818
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureGroup resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `big_query` * `big_query.entity_id_columns` */
|
|
14813
14819
|
updateMask?: string;
|
|
14814
14820
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14815
14821
|
upload_protocol?: string;
|
|
@@ -15268,7 +15274,7 @@ declare namespace gapi.client {
|
|
|
15268
15274
|
prettyPrint?: boolean;
|
|
15269
15275
|
/** 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. */
|
|
15270
15276
|
quotaUser?: string;
|
|
15271
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `
|
|
15277
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `service_agent_type` * `big_query_source` * `big_query_source.uri` * `big_query_source.entity_id_columns` * `feature_registry_source` * `feature_registry_source.feature_groups` * `sync_config` * `sync_config.cron` */
|
|
15272
15278
|
updateMask?: string;
|
|
15273
15279
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15274
15280
|
upload_protocol?: string;
|
|
@@ -15299,7 +15305,7 @@ declare namespace gapi.client {
|
|
|
15299
15305
|
prettyPrint?: boolean;
|
|
15300
15306
|
/** 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. */
|
|
15301
15307
|
quotaUser?: string;
|
|
15302
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `
|
|
15308
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `service_agent_type` * `big_query_source` * `big_query_source.uri` * `big_query_source.entity_id_columns` * `feature_registry_source` * `feature_registry_source.feature_groups` * `sync_config` * `sync_config.cron` */
|
|
15303
15309
|
updateMask?: string;
|
|
15304
15310
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15305
15311
|
upload_protocol?: string;
|
|
@@ -15867,7 +15873,7 @@ declare namespace gapi.client {
|
|
|
15867
15873
|
prettyPrint?: boolean;
|
|
15868
15874
|
/** 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. */
|
|
15869
15875
|
quotaUser?: string;
|
|
15870
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `
|
|
15876
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `bigtable` * `bigtable.auto_scaling` * `bigtable.enable_multi_region_replica` */
|
|
15871
15877
|
updateMask?: string;
|
|
15872
15878
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15873
15879
|
upload_protocol?: string;
|
|
@@ -15898,7 +15904,7 @@ declare namespace gapi.client {
|
|
|
15898
15904
|
prettyPrint?: boolean;
|
|
15899
15905
|
/** 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. */
|
|
15900
15906
|
quotaUser?: string;
|
|
15901
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `
|
|
15907
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureOnlineStore resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `description` * `bigtable` * `bigtable.auto_scaling` * `bigtable.enable_multi_region_replica` */
|
|
15902
15908
|
updateMask?: string;
|
|
15903
15909
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15904
15910
|
upload_protocol?: string;
|
|
@@ -16350,7 +16356,7 @@ declare namespace gapi.client {
|
|
|
16350
16356
|
prettyPrint?: boolean;
|
|
16351
16357
|
/** 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. */
|
|
16352
16358
|
quotaUser?: string;
|
|
16353
|
-
/** Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for
|
|
16359
|
+
/** Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore) */
|
|
16354
16360
|
updateMask?: string;
|
|
16355
16361
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16356
16362
|
upload_protocol?: string;
|
|
@@ -16381,7 +16387,7 @@ declare namespace gapi.client {
|
|
|
16381
16387
|
prettyPrint?: boolean;
|
|
16382
16388
|
/** 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. */
|
|
16383
16389
|
quotaUser?: string;
|
|
16384
|
-
/** Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for
|
|
16390
|
+
/** Field mask is used to specify the fields to be overwritten in the Features resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistryService Feature) * `point_of_contact` (Not supported for FeaturestoreService FeatureStore) */
|
|
16385
16391
|
updateMask?: string;
|
|
16386
16392
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16387
16393
|
upload_protocol?: string;
|