@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20230908 → 0.0.20230929
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 +3060 -480
- package/package.json +1 -1
- package/tests.ts +509 -4
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: 20230929
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -923,6 +923,16 @@ declare namespace gapi.client {
|
|
|
923
923
|
genericMetadata?:
|
|
924
924
|
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
925
925
|
}
|
|
926
|
+
interface GoogleCloudAiplatformV1beta1CreateFeatureGroupOperationMetadata {
|
|
927
|
+
/** Operation metadata for FeatureGroup. */
|
|
928
|
+
genericMetadata?:
|
|
929
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
930
|
+
}
|
|
931
|
+
interface GoogleCloudAiplatformV1beta1CreateFeatureOnlineStoreOperationMetadata {
|
|
932
|
+
/** Operation metadata for FeatureOnlineStore. */
|
|
933
|
+
genericMetadata?:
|
|
934
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
935
|
+
}
|
|
926
936
|
interface GoogleCloudAiplatformV1beta1CreateFeatureOperationMetadata {
|
|
927
937
|
/** Operation metadata for Feature. */
|
|
928
938
|
genericMetadata?:
|
|
@@ -934,11 +944,10 @@ declare namespace gapi.client {
|
|
|
934
944
|
GoogleCloudAiplatformV1beta1Feature;
|
|
935
945
|
/**
|
|
936
946
|
* Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are
|
|
937
|
-
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType
|
|
947
|
+
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
|
|
938
948
|
*/
|
|
939
949
|
featureId?:
|
|
940
950
|
string;
|
|
941
|
-
/** Required. The resource name of the EntityType to create a Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` */
|
|
942
951
|
parent?:
|
|
943
952
|
string;
|
|
944
953
|
}
|
|
@@ -947,6 +956,11 @@ declare namespace gapi.client {
|
|
|
947
956
|
genericMetadata?:
|
|
948
957
|
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
949
958
|
}
|
|
959
|
+
interface GoogleCloudAiplatformV1beta1CreateFeatureViewOperationMetadata {
|
|
960
|
+
/** Operation metadata for FeatureView Create. */
|
|
961
|
+
genericMetadata?:
|
|
962
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
963
|
+
}
|
|
950
964
|
interface GoogleCloudAiplatformV1beta1CreateIndexEndpointOperationMetadata {
|
|
951
965
|
/** The operation generic information. */
|
|
952
966
|
genericMetadata?:
|
|
@@ -984,11 +998,16 @@ declare namespace gapi.client {
|
|
|
984
998
|
GoogleCloudAiplatformV1beta1PipelineJob;
|
|
985
999
|
/**
|
|
986
1000
|
* The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be less
|
|
987
|
-
* than 128 characters, and valid characters are
|
|
1001
|
+
* than 128 characters, and valid characters are `/a-z-/`.
|
|
988
1002
|
*/
|
|
989
1003
|
pipelineJobId?:
|
|
990
1004
|
string;
|
|
991
1005
|
}
|
|
1006
|
+
interface GoogleCloudAiplatformV1beta1CreateRegistryFeatureOperationMetadata {
|
|
1007
|
+
/** Operation metadata for Feature. */
|
|
1008
|
+
genericMetadata?:
|
|
1009
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
1010
|
+
}
|
|
992
1011
|
interface GoogleCloudAiplatformV1beta1CreateSolverOperationMetadata {
|
|
993
1012
|
/** The generic operation information. */
|
|
994
1013
|
genericMetadata?:
|
|
@@ -1016,7 +1035,7 @@ declare namespace gapi.client {
|
|
|
1016
1035
|
GoogleCloudAiplatformV1beta1TensorboardRun;
|
|
1017
1036
|
/**
|
|
1018
1037
|
* Required. The ID to use for the Tensorboard run, which becomes the final component of the Tensorboard run's resource name. This value should be 1-128 characters, and valid
|
|
1019
|
-
* characters are
|
|
1038
|
+
* characters are `/a-z-/`.
|
|
1020
1039
|
*/
|
|
1021
1040
|
tensorboardRunId?:
|
|
1022
1041
|
string;
|
|
@@ -1337,6 +1356,23 @@ declare namespace gapi.client {
|
|
|
1337
1356
|
updateTime?:
|
|
1338
1357
|
string;
|
|
1339
1358
|
}
|
|
1359
|
+
interface GoogleCloudAiplatformV1beta1DatasetVersion {
|
|
1360
|
+
/** Output only. Name of the associated BigQuery dataset. */
|
|
1361
|
+
bigQueryDatasetName?:
|
|
1362
|
+
string;
|
|
1363
|
+
/** Output only. Timestamp when this DatasetVersion was created. */
|
|
1364
|
+
createTime?:
|
|
1365
|
+
string;
|
|
1366
|
+
/** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
1367
|
+
etag?:
|
|
1368
|
+
string;
|
|
1369
|
+
/** Output only. The resource name of the DatasetVersion. */
|
|
1370
|
+
name?:
|
|
1371
|
+
string;
|
|
1372
|
+
/** Output only. Timestamp when this DatasetVersion was last updated. */
|
|
1373
|
+
updateTime?:
|
|
1374
|
+
string;
|
|
1375
|
+
}
|
|
1340
1376
|
interface GoogleCloudAiplatformV1beta1DedicatedResources {
|
|
1341
1377
|
/**
|
|
1342
1378
|
* Immutable. The metric specifications that overrides a resource utilization metric (CPU utilization, accelerator's duty cycle, and so on) target value (default to 60 if not set). At
|
|
@@ -1509,7 +1545,8 @@ declare namespace gapi.client {
|
|
|
1509
1545
|
/**
|
|
1510
1546
|
* Optional. A list of reserved ip ranges under the VPC network that can be used for this DeployedIndex. If set, we will deploy the index within the provided ip ranges. Otherwise, the
|
|
1511
1547
|
* index might be deployed to any ip ranges under the provided VPC network. The value should be the name of the address
|
|
1512
|
-
* (https://cloud.google.com/compute/docs/reference/rest/v1/addresses) Example: 'vertex-ai-ip-range'.
|
|
1548
|
+
* (https://cloud.google.com/compute/docs/reference/rest/v1/addresses) Example: ['vertex-ai-ip-range']. For more information about subnets and network IP ranges, please see
|
|
1549
|
+
* https://cloud.google.com/vpc/docs/subnets#manually_created_subnet_ip_ranges.
|
|
1513
1550
|
*/
|
|
1514
1551
|
reservedIpRanges?:
|
|
1515
1552
|
string[];
|
|
@@ -1573,7 +1610,7 @@ declare namespace gapi.client {
|
|
|
1573
1610
|
GoogleCloudAiplatformV1beta1ExplanationSpec;
|
|
1574
1611
|
/**
|
|
1575
1612
|
* Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID. This value should be 1-10 characters, and valid characters are
|
|
1576
|
-
*
|
|
1613
|
+
* `/[0-9]/`.
|
|
1577
1614
|
*/
|
|
1578
1615
|
id?:
|
|
1579
1616
|
string;
|
|
@@ -2288,6 +2325,9 @@ declare namespace gapi.client {
|
|
|
2288
2325
|
*/
|
|
2289
2326
|
annotationsFilter?:
|
|
2290
2327
|
string;
|
|
2328
|
+
/** Split based on the provided filters for each set. */
|
|
2329
|
+
filterSplit?:
|
|
2330
|
+
GoogleCloudAiplatformV1beta1ExportFilterSplit;
|
|
2291
2331
|
/** Split based on fractions defining the size of each set. */
|
|
2292
2332
|
fractionSplit?:
|
|
2293
2333
|
GoogleCloudAiplatformV1beta1ExportFractionSplit;
|
|
@@ -2379,6 +2419,29 @@ declare namespace gapi.client {
|
|
|
2379
2419
|
// tslint:disable-next-line:no-empty-interface
|
|
2380
2420
|
interface GoogleCloudAiplatformV1beta1ExportFeatureValuesResponse {
|
|
2381
2421
|
}
|
|
2422
|
+
interface GoogleCloudAiplatformV1beta1ExportFilterSplit {
|
|
2423
|
+
/**
|
|
2424
|
+
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to test the Model. A filter with same syntax as the one used in
|
|
2425
|
+
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2426
|
+
* training, validation, test order.
|
|
2427
|
+
*/
|
|
2428
|
+
testFilter?:
|
|
2429
|
+
string;
|
|
2430
|
+
/**
|
|
2431
|
+
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to train the Model. A filter with same syntax as the one used in
|
|
2432
|
+
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2433
|
+
* training, validation, test order.
|
|
2434
|
+
*/
|
|
2435
|
+
trainingFilter?:
|
|
2436
|
+
string;
|
|
2437
|
+
/**
|
|
2438
|
+
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to validate the Model. A filter with same syntax as the one used in
|
|
2439
|
+
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2440
|
+
* training, validation, test order.
|
|
2441
|
+
*/
|
|
2442
|
+
validationFilter?:
|
|
2443
|
+
string;
|
|
2444
|
+
}
|
|
2382
2445
|
interface GoogleCloudAiplatformV1beta1ExportFractionSplit {
|
|
2383
2446
|
/** The fraction of the input data that is to be used to evaluate the Model. */
|
|
2384
2447
|
testFraction?:
|
|
@@ -2511,6 +2574,42 @@ declare namespace gapi.client {
|
|
|
2511
2574
|
valueType?:
|
|
2512
2575
|
string;
|
|
2513
2576
|
}
|
|
2577
|
+
interface GoogleCloudAiplatformV1beta1FeatureGroup {
|
|
2578
|
+
/** Indicates that features for this group come from BigQuery. */
|
|
2579
|
+
bigQuery?:
|
|
2580
|
+
GoogleCloudAiplatformV1beta1FeatureGroupBigQuery;
|
|
2581
|
+
/** Output only. Timestamp when this FeatureGroup was created. */
|
|
2582
|
+
createTime?:
|
|
2583
|
+
string;
|
|
2584
|
+
/** Optional. Description of the FeatureGroup. */
|
|
2585
|
+
description?:
|
|
2586
|
+
string;
|
|
2587
|
+
/** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
2588
|
+
etag?:
|
|
2589
|
+
string;
|
|
2590
|
+
/**
|
|
2591
|
+
* Optional. The labels with user-defined metadata to organize your FeatureGroup. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain
|
|
2592
|
+
* lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information on and examples of labels. No
|
|
2593
|
+
* more than 64 user labels can be associated with one FeatureGroup(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are
|
|
2594
|
+
* immutable.
|
|
2595
|
+
*/
|
|
2596
|
+
labels?:
|
|
2597
|
+
{ [P in string]: string };
|
|
2598
|
+
/** Output only. Name of the FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
|
|
2599
|
+
name?:
|
|
2600
|
+
string;
|
|
2601
|
+
/** Output only. Timestamp when this FeatureGroup was last updated. */
|
|
2602
|
+
updateTime?:
|
|
2603
|
+
string;
|
|
2604
|
+
}
|
|
2605
|
+
interface GoogleCloudAiplatformV1beta1FeatureGroupBigQuery {
|
|
2606
|
+
/** Required. Immutable. The BigQuery source URI that points to either a BigQuery Table or View. */
|
|
2607
|
+
bigQuerySource?:
|
|
2608
|
+
GoogleCloudAiplatformV1beta1BigQuerySource;
|
|
2609
|
+
/** Optional. Columns to construct entity_id / row keys. Currently only supports 1 entity_id_column. If not provided defaults to `entity_id`. */
|
|
2610
|
+
entityIdColumns?:
|
|
2611
|
+
string[];
|
|
2612
|
+
}
|
|
2514
2613
|
interface GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly {
|
|
2515
2614
|
/** Output only. The stats and anomalies generated at specific timestamp. */
|
|
2516
2615
|
featureStatsAnomaly?:
|
|
@@ -2535,6 +2634,69 @@ declare namespace gapi.client {
|
|
|
2535
2634
|
sigma?:
|
|
2536
2635
|
number;
|
|
2537
2636
|
}
|
|
2637
|
+
interface GoogleCloudAiplatformV1beta1FeatureOnlineStore {
|
|
2638
|
+
/** Contains settings for the Cloud Bigtable instance that will be created to serve featureValues for all FeatureViews under this FeatureOnlineStore. */
|
|
2639
|
+
bigtable?:
|
|
2640
|
+
GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtable;
|
|
2641
|
+
/** Output only. Timestamp when this FeatureOnlineStore was created. */
|
|
2642
|
+
createTime?:
|
|
2643
|
+
string;
|
|
2644
|
+
/** Optional. The dedicated serving endpoint for this FeatureOnlineStore, which is different from common Vertex service endpoint. */
|
|
2645
|
+
dedicatedServingEndpoint?:
|
|
2646
|
+
GoogleCloudAiplatformV1beta1FeatureOnlineStoreDedicatedServingEndpoint;
|
|
2647
|
+
/** Optional. The settings for embedding management in FeatureOnlineStore. */
|
|
2648
|
+
embeddingManagement?:
|
|
2649
|
+
GoogleCloudAiplatformV1beta1FeatureOnlineStoreEmbeddingManagement;
|
|
2650
|
+
/** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
2651
|
+
etag?:
|
|
2652
|
+
string;
|
|
2653
|
+
/**
|
|
2654
|
+
* Optional. The labels with user-defined metadata to organize your FeatureOnlineStore. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain
|
|
2655
|
+
* lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information on and examples of labels. No
|
|
2656
|
+
* more than 64 user labels can be associated with one FeatureOnlineStore(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and
|
|
2657
|
+
* are immutable.
|
|
2658
|
+
*/
|
|
2659
|
+
labels?:
|
|
2660
|
+
{ [P in string]: string };
|
|
2661
|
+
/** Output only. Name of the FeatureOnlineStore. Format: `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}` */
|
|
2662
|
+
name?:
|
|
2663
|
+
string;
|
|
2664
|
+
/** Output only. State of the featureOnlineStore. */
|
|
2665
|
+
state?:
|
|
2666
|
+
string;
|
|
2667
|
+
/** Output only. Timestamp when this FeatureOnlineStore was last updated. */
|
|
2668
|
+
updateTime?:
|
|
2669
|
+
string;
|
|
2670
|
+
}
|
|
2671
|
+
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtable {
|
|
2672
|
+
/** Required. Autoscaling config applied to Bigtable Instance. */
|
|
2673
|
+
autoScaling?:
|
|
2674
|
+
GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling;
|
|
2675
|
+
}
|
|
2676
|
+
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling {
|
|
2677
|
+
/**
|
|
2678
|
+
* Optional. A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes
|
|
2679
|
+
* to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%.
|
|
2680
|
+
*/
|
|
2681
|
+
cpuUtilizationTarget?:
|
|
2682
|
+
number;
|
|
2683
|
+
/** Required. The maximum number of nodes to scale up to. Must be greater than or equal to min_node_count, and less than or equal to 10 times of 'min_node_count'. */
|
|
2684
|
+
maxNodeCount?:
|
|
2685
|
+
number;
|
|
2686
|
+
/** Required. The minimum number of nodes to scale down to. Must be greater than or equal to 1. */
|
|
2687
|
+
minNodeCount?:
|
|
2688
|
+
number;
|
|
2689
|
+
}
|
|
2690
|
+
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreDedicatedServingEndpoint {
|
|
2691
|
+
/** Output only. This field will be populated with the domain name to use for this FeatureOnlineStore */
|
|
2692
|
+
publicEndpointDomainName?:
|
|
2693
|
+
string;
|
|
2694
|
+
}
|
|
2695
|
+
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreEmbeddingManagement {
|
|
2696
|
+
/** Optional. Immutable. Whether to enable embedding management in this FeatureOnlineStore. It's immutable after creation to ensure the FeatureOnlineStore availability. */
|
|
2697
|
+
enabled?:
|
|
2698
|
+
boolean;
|
|
2699
|
+
}
|
|
2538
2700
|
interface GoogleCloudAiplatformV1beta1FeatureSelector {
|
|
2539
2701
|
/** Required. Matches Features based on ID. */
|
|
2540
2702
|
idMatcher?:
|
|
@@ -2768,6 +2930,162 @@ declare namespace gapi.client {
|
|
|
2768
2930
|
generateTime?:
|
|
2769
2931
|
string;
|
|
2770
2932
|
}
|
|
2933
|
+
interface GoogleCloudAiplatformV1beta1FeatureView {
|
|
2934
|
+
/** Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore. */
|
|
2935
|
+
bigQuerySource?:
|
|
2936
|
+
GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource;
|
|
2937
|
+
/** Output only. Timestamp when this FeatureView was created. */
|
|
2938
|
+
createTime?:
|
|
2939
|
+
string;
|
|
2940
|
+
/** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
2941
|
+
etag?:
|
|
2942
|
+
string;
|
|
2943
|
+
/** Optional. Configures the features from a Feature Registry source that need to be loaded onto the FeatureOnlineStore. */
|
|
2944
|
+
featureRegistrySource?:
|
|
2945
|
+
GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource;
|
|
2946
|
+
/**
|
|
2947
|
+
* Optional. The labels with user-defined metadata to organize your FeatureViews. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain
|
|
2948
|
+
* lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information on and examples of labels. No
|
|
2949
|
+
* more than 64 user labels can be associated with one FeatureOnlineStore(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and
|
|
2950
|
+
* are immutable.
|
|
2951
|
+
*/
|
|
2952
|
+
labels?:
|
|
2953
|
+
{ [P in string]: string };
|
|
2954
|
+
/** Output only. Name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
|
|
2955
|
+
name?:
|
|
2956
|
+
string;
|
|
2957
|
+
/**
|
|
2958
|
+
* Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online
|
|
2959
|
+
* serving.
|
|
2960
|
+
*/
|
|
2961
|
+
syncConfig?:
|
|
2962
|
+
GoogleCloudAiplatformV1beta1FeatureViewSyncConfig;
|
|
2963
|
+
/** Output only. Timestamp when this FeatureView was last updated. */
|
|
2964
|
+
updateTime?:
|
|
2965
|
+
string;
|
|
2966
|
+
/**
|
|
2967
|
+
* Optional. Configuration for vector search. It contains the required configurations to create an index from source data, so that approximate nearest neighbor (a.k.a ANN) algorithms
|
|
2968
|
+
* search can be performed during online serving.
|
|
2969
|
+
*/
|
|
2970
|
+
vectorSearchConfig?:
|
|
2971
|
+
GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfig;
|
|
2972
|
+
}
|
|
2973
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource {
|
|
2974
|
+
/** Required. Columns to construct entity_id / row keys. Start by supporting 1 only. */
|
|
2975
|
+
entityIdColumns?:
|
|
2976
|
+
string[];
|
|
2977
|
+
/** Required. The Bigquery View URI that will be materialized on each sync trigger based on FeatureView.SyncConfig. */
|
|
2978
|
+
uri?:
|
|
2979
|
+
string;
|
|
2980
|
+
}
|
|
2981
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource {
|
|
2982
|
+
/** Required. List of features that need to be synced to Online Store. */
|
|
2983
|
+
featureGroups?:
|
|
2984
|
+
GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySourceFeatureGroup[];
|
|
2985
|
+
}
|
|
2986
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySourceFeatureGroup {
|
|
2987
|
+
/** Required. Identifier of the feature group. */
|
|
2988
|
+
featureGroupId?:
|
|
2989
|
+
string;
|
|
2990
|
+
/** Required. Identifiers of features under the feature group. */
|
|
2991
|
+
featureIds?:
|
|
2992
|
+
string[];
|
|
2993
|
+
}
|
|
2994
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewSync {
|
|
2995
|
+
/**
|
|
2996
|
+
* Output only. Time when this FeatureViewSync is created. Creation of a FeatureViewSync means that the job is pending / waiting for sufficient resources but may not have started the
|
|
2997
|
+
* actual data transfer yet.
|
|
2998
|
+
*/
|
|
2999
|
+
createTime?:
|
|
3000
|
+
string;
|
|
3001
|
+
/** Output only. Final status of the FeatureViewSync. */
|
|
3002
|
+
finalStatus?:
|
|
3003
|
+
GoogleRpcStatus;
|
|
3004
|
+
/**
|
|
3005
|
+
* Output only. Name of the FeatureViewSync. Format:
|
|
3006
|
+
* `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}`
|
|
3007
|
+
*/
|
|
3008
|
+
name?:
|
|
3009
|
+
string;
|
|
3010
|
+
/** Output only. Time when this FeatureViewSync is finished. */
|
|
3011
|
+
runTime?:
|
|
3012
|
+
GoogleTypeInterval;
|
|
3013
|
+
}
|
|
3014
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewSyncConfig {
|
|
3015
|
+
/**
|
|
3016
|
+
* Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab:
|
|
3017
|
+
* "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * *
|
|
3018
|
+
* *", or "TZ=America/New_York 1 * * * *".
|
|
3019
|
+
*/
|
|
3020
|
+
cron?:
|
|
3021
|
+
string;
|
|
3022
|
+
}
|
|
3023
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfig {
|
|
3024
|
+
/**
|
|
3025
|
+
* Optional. Configuration options for using brute force search, which simply implements the standard linear search in the database for each query. It is primarily meant for
|
|
3026
|
+
* benchmarking and to generate the ground truth for approximate search.
|
|
3027
|
+
*/
|
|
3028
|
+
bruteForceConfig?:
|
|
3029
|
+
any;
|
|
3030
|
+
/**
|
|
3031
|
+
* Optional. Column of crowding. This column contains crowding attribute which is a constraint on a neighbor list produced by nearest neighbor search requiring that no more than some
|
|
3032
|
+
* value k' of the k neighbors returned have the same value of crowding_attribute.
|
|
3033
|
+
*/
|
|
3034
|
+
crowdingColumn?:
|
|
3035
|
+
string;
|
|
3036
|
+
/** Optional. The distance measure used in nearest neighbor search. */
|
|
3037
|
+
distanceMeasureType?:
|
|
3038
|
+
string;
|
|
3039
|
+
/** Optional. Column of embedding. This column contains the source data to create index for vector search. embedding_column must be set when using vector search. */
|
|
3040
|
+
embeddingColumn?:
|
|
3041
|
+
string;
|
|
3042
|
+
/** Optional. The number of dimensions of the input embedding. */
|
|
3043
|
+
embeddingDimension?:
|
|
3044
|
+
number;
|
|
3045
|
+
/** Optional. Columns of features that're used to filter vector search results. */
|
|
3046
|
+
filterColumns?:
|
|
3047
|
+
string[];
|
|
3048
|
+
/** Optional. Configuration options for the tree-AH algorithm (Shallow tree + Asymmetric Hashing). Please refer to this paper for more details: https://arxiv.org/abs/1908.10396 */
|
|
3049
|
+
treeAhConfig?:
|
|
3050
|
+
GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigTreeAHConfig;
|
|
3051
|
+
}
|
|
3052
|
+
// tslint:disable-next-line:no-empty-interface
|
|
3053
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigBruteForceConfig {
|
|
3054
|
+
}
|
|
3055
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfigTreeAHConfig {
|
|
3056
|
+
/** Optional. Number of embeddings on each leaf node. The default value is 1000 if not set. */
|
|
3057
|
+
leafNodeEmbeddingCount?:
|
|
3058
|
+
string;
|
|
3059
|
+
}
|
|
3060
|
+
interface GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest {
|
|
3061
|
+
/** Specify response data format. If not set, KeyValue format will be used. */
|
|
3062
|
+
format?:
|
|
3063
|
+
string;
|
|
3064
|
+
/** Simple ID. The whole string will be used as is to identify Entity to fetch feature values for. */
|
|
3065
|
+
id?:
|
|
3066
|
+
string;
|
|
3067
|
+
}
|
|
3068
|
+
interface GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse {
|
|
3069
|
+
/** Feature values in KeyValue format. */
|
|
3070
|
+
keyValues?:
|
|
3071
|
+
GoogleCloudAiplatformV1beta1FetchFeatureValuesResponseFeatureNameValuePairList;
|
|
3072
|
+
/** Feature values in proto Struct format. */
|
|
3073
|
+
protoStruct?:
|
|
3074
|
+
{ [P in string]: any };
|
|
3075
|
+
}
|
|
3076
|
+
interface GoogleCloudAiplatformV1beta1FetchFeatureValuesResponseFeatureNameValuePairList {
|
|
3077
|
+
/** List of feature names and values. */
|
|
3078
|
+
features?:
|
|
3079
|
+
GoogleCloudAiplatformV1beta1FetchFeatureValuesResponseFeatureNameValuePairListFeatureNameValuePair[];
|
|
3080
|
+
}
|
|
3081
|
+
interface GoogleCloudAiplatformV1beta1FetchFeatureValuesResponseFeatureNameValuePairListFeatureNameValuePair {
|
|
3082
|
+
/** Feature short name. */
|
|
3083
|
+
name?:
|
|
3084
|
+
string;
|
|
3085
|
+
/** Feature value. */
|
|
3086
|
+
value?:
|
|
3087
|
+
GoogleCloudAiplatformV1beta1FeatureValue;
|
|
3088
|
+
}
|
|
2771
3089
|
interface GoogleCloudAiplatformV1beta1FilterSplit {
|
|
2772
3090
|
/**
|
|
2773
3091
|
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to test the Model. A filter with same syntax as the one used in
|
|
@@ -2916,6 +3234,11 @@ declare namespace gapi.client {
|
|
|
2916
3234
|
updateTime?:
|
|
2917
3235
|
string;
|
|
2918
3236
|
}
|
|
3237
|
+
interface GoogleCloudAiplatformV1beta1GenieSource {
|
|
3238
|
+
/** Required. The public base model URI. */
|
|
3239
|
+
baseModelUri?:
|
|
3240
|
+
string;
|
|
3241
|
+
}
|
|
2919
3242
|
interface GoogleCloudAiplatformV1beta1HyperparameterTuningJob {
|
|
2920
3243
|
/** Output only. Time when the HyperparameterTuningJob was created. */
|
|
2921
3244
|
createTime?:
|
|
@@ -3454,6 +3777,14 @@ declare namespace gapi.client {
|
|
|
3454
3777
|
nextPageToken?:
|
|
3455
3778
|
string;
|
|
3456
3779
|
}
|
|
3780
|
+
interface GoogleCloudAiplatformV1beta1ListDatasetVersionsResponse {
|
|
3781
|
+
/** A list of DatasetVersions that matches the specified filter in the request. */
|
|
3782
|
+
datasetVersions?:
|
|
3783
|
+
GoogleCloudAiplatformV1beta1DatasetVersion[];
|
|
3784
|
+
/** The standard List next-page token. */
|
|
3785
|
+
nextPageToken?:
|
|
3786
|
+
string;
|
|
3787
|
+
}
|
|
3457
3788
|
interface GoogleCloudAiplatformV1beta1ListDeploymentResourcePoolsResponse {
|
|
3458
3789
|
/** The DeploymentResourcePools from the specified location. */
|
|
3459
3790
|
deploymentResourcePools?:
|
|
@@ -3486,6 +3817,22 @@ declare namespace gapi.client {
|
|
|
3486
3817
|
nextPageToken?:
|
|
3487
3818
|
string;
|
|
3488
3819
|
}
|
|
3820
|
+
interface GoogleCloudAiplatformV1beta1ListFeatureGroupsResponse {
|
|
3821
|
+
/** The FeatureGroups matching the request. */
|
|
3822
|
+
featureGroups?:
|
|
3823
|
+
GoogleCloudAiplatformV1beta1FeatureGroup[];
|
|
3824
|
+
/** A token, which can be sent as ListFeatureGroupsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
3825
|
+
nextPageToken?:
|
|
3826
|
+
string;
|
|
3827
|
+
}
|
|
3828
|
+
interface GoogleCloudAiplatformV1beta1ListFeatureOnlineStoresResponse {
|
|
3829
|
+
/** The FeatureOnlineStores matching the request. */
|
|
3830
|
+
featureOnlineStores?:
|
|
3831
|
+
GoogleCloudAiplatformV1beta1FeatureOnlineStore[];
|
|
3832
|
+
/** A token, which can be sent as ListFeatureOnlineStoresRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
3833
|
+
nextPageToken?:
|
|
3834
|
+
string;
|
|
3835
|
+
}
|
|
3489
3836
|
interface GoogleCloudAiplatformV1beta1ListFeaturesResponse {
|
|
3490
3837
|
/** The Features matching the request. */
|
|
3491
3838
|
features?:
|
|
@@ -3502,6 +3849,22 @@ declare namespace gapi.client {
|
|
|
3502
3849
|
nextPageToken?:
|
|
3503
3850
|
string;
|
|
3504
3851
|
}
|
|
3852
|
+
interface GoogleCloudAiplatformV1beta1ListFeatureViewsResponse {
|
|
3853
|
+
/** The FeatureViews matching the request. */
|
|
3854
|
+
featureViews?:
|
|
3855
|
+
GoogleCloudAiplatformV1beta1FeatureView[];
|
|
3856
|
+
/** A token, which can be sent as ListFeatureViewsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
3857
|
+
nextPageToken?:
|
|
3858
|
+
string;
|
|
3859
|
+
}
|
|
3860
|
+
interface GoogleCloudAiplatformV1beta1ListFeatureViewSyncsResponse {
|
|
3861
|
+
/** The FeatureViewSyncs matching the request. */
|
|
3862
|
+
featureViewSyncs?:
|
|
3863
|
+
GoogleCloudAiplatformV1beta1FeatureViewSync[];
|
|
3864
|
+
/** A token, which can be sent as ListFeatureViewSyncsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
3865
|
+
nextPageToken?:
|
|
3866
|
+
string;
|
|
3867
|
+
}
|
|
3505
3868
|
interface GoogleCloudAiplatformV1beta1ListHyperparameterTuningJobsResponse {
|
|
3506
3869
|
/** List of HyperparameterTuningJobs in the requested page. HyperparameterTuningJob.trials of the jobs will be not be returned. */
|
|
3507
3870
|
hyperparameterTuningJobs?:
|
|
@@ -3640,6 +4003,14 @@ declare namespace gapi.client {
|
|
|
3640
4003
|
pipelineJobs?:
|
|
3641
4004
|
GoogleCloudAiplatformV1beta1PipelineJob[];
|
|
3642
4005
|
}
|
|
4006
|
+
interface GoogleCloudAiplatformV1beta1ListPublisherModelsResponse {
|
|
4007
|
+
/** A token to retrieve next page of results. Pass to ListPublisherModels.page_token to obtain that page. */
|
|
4008
|
+
nextPageToken?:
|
|
4009
|
+
string;
|
|
4010
|
+
/** List of PublisherModels in the requested page. */
|
|
4011
|
+
publisherModels?:
|
|
4012
|
+
GoogleCloudAiplatformV1beta1PublisherModel[];
|
|
4013
|
+
}
|
|
3643
4014
|
interface GoogleCloudAiplatformV1beta1ListSavedQueriesResponse {
|
|
3644
4015
|
/** The standard List next-page token. */
|
|
3645
4016
|
nextPageToken?:
|
|
@@ -4006,6 +4377,9 @@ declare namespace gapi.client {
|
|
|
4006
4377
|
*/
|
|
4007
4378
|
explanationSpec?:
|
|
4008
4379
|
GoogleCloudAiplatformV1beta1ExplanationSpec;
|
|
4380
|
+
/** Optional. Used to specify the source of the Model Garden model or Genie models. Only present for models created or tuned from Model Garden and Genie. */
|
|
4381
|
+
generatedModelSource?:
|
|
4382
|
+
GoogleCloudAiplatformV1beta1ModelGeneratedModelSource;
|
|
4009
4383
|
/**
|
|
4010
4384
|
* The labels with user-defined metadata to organize your Models. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters,
|
|
4011
4385
|
* numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
|
|
@@ -4494,6 +4868,19 @@ declare namespace gapi.client {
|
|
|
4494
4868
|
id?:
|
|
4495
4869
|
string;
|
|
4496
4870
|
}
|
|
4871
|
+
interface GoogleCloudAiplatformV1beta1ModelGardenSource {
|
|
4872
|
+
/** Required. The model garden source model resource name. */
|
|
4873
|
+
publicModelName?:
|
|
4874
|
+
string;
|
|
4875
|
+
}
|
|
4876
|
+
interface GoogleCloudAiplatformV1beta1ModelGeneratedModelSource {
|
|
4877
|
+
/** Information about the base model of Genie models. */
|
|
4878
|
+
genieSource?:
|
|
4879
|
+
GoogleCloudAiplatformV1beta1GenieSource;
|
|
4880
|
+
/** Source information of Model Garden models. */
|
|
4881
|
+
modelGardenSource?:
|
|
4882
|
+
GoogleCloudAiplatformV1beta1ModelGardenSource;
|
|
4883
|
+
}
|
|
4497
4884
|
interface GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig {
|
|
4498
4885
|
/** Email alert config. */
|
|
4499
4886
|
emailAlertConfig?:
|
|
@@ -4848,6 +5235,61 @@ declare namespace gapi.client {
|
|
|
4848
5235
|
trainTrial?:
|
|
4849
5236
|
GoogleCloudAiplatformV1beta1NasTrial;
|
|
4850
5237
|
}
|
|
5238
|
+
interface GoogleCloudAiplatformV1beta1NearestNeighborQuery {
|
|
5239
|
+
/** Optional. The embedding vector that be used for similar search. */
|
|
5240
|
+
embedding?:
|
|
5241
|
+
GoogleCloudAiplatformV1beta1NearestNeighborQueryEmbedding;
|
|
5242
|
+
/** Optional. The entity id whose similar entities should be searched for. If embedding is set, search will use embedding instead of entity_id. */
|
|
5243
|
+
entityId?:
|
|
5244
|
+
string;
|
|
5245
|
+
/** Optional. The number of similar entities to be retrieved from feature view for each query. */
|
|
5246
|
+
neighborCount?:
|
|
5247
|
+
number;
|
|
5248
|
+
/** Optional. Parameters that can be set to tune query on the fly. */
|
|
5249
|
+
parameters?:
|
|
5250
|
+
GoogleCloudAiplatformV1beta1NearestNeighborQueryParameters;
|
|
5251
|
+
/**
|
|
5252
|
+
* Optional. Crowding is a constraint on a neighbor list produced by nearest neighbor search requiring that no more than sper_crowding_attribute_neighbor_count of the k neighbors
|
|
5253
|
+
* returned have the same value of crowding_attribute. It's used for improving result diversity.
|
|
5254
|
+
*/
|
|
5255
|
+
perCrowdingAttributeNeighborCount?:
|
|
5256
|
+
number;
|
|
5257
|
+
/** Optional. The list of string filters. */
|
|
5258
|
+
stringFilters?:
|
|
5259
|
+
GoogleCloudAiplatformV1beta1NearestNeighborQueryStringFilter[];
|
|
5260
|
+
}
|
|
5261
|
+
interface GoogleCloudAiplatformV1beta1NearestNeighborQueryEmbedding {
|
|
5262
|
+
/** Optional. Individual value in the embedding. */
|
|
5263
|
+
value?:
|
|
5264
|
+
number[];
|
|
5265
|
+
}
|
|
5266
|
+
interface GoogleCloudAiplatformV1beta1NearestNeighborQueryParameters {
|
|
5267
|
+
/** Optional. The number of neighbors to find via approximate search before exact reordering is performed; if set, this value must be > neighbor_count. */
|
|
5268
|
+
approximateNeighborCandidates?:
|
|
5269
|
+
number;
|
|
5270
|
+
/**
|
|
5271
|
+
* Optional. The fraction of the number of leaves to search, set at query time allows user to tune search performance. This value increase result in both search accuracy and latency
|
|
5272
|
+
* increase. The value should be between 0.0 and 1.0.
|
|
5273
|
+
*/
|
|
5274
|
+
leafNodesSearchFraction?:
|
|
5275
|
+
number;
|
|
5276
|
+
}
|
|
5277
|
+
interface GoogleCloudAiplatformV1beta1NearestNeighborQueryStringFilter {
|
|
5278
|
+
/** Optional. The allowed tokens. */
|
|
5279
|
+
allowTokens?:
|
|
5280
|
+
string[];
|
|
5281
|
+
/** Optional. The denied tokens. */
|
|
5282
|
+
denyTokens?:
|
|
5283
|
+
string[];
|
|
5284
|
+
/** Required. Column names in BigQuery that used as filters. */
|
|
5285
|
+
name?:
|
|
5286
|
+
string;
|
|
5287
|
+
}
|
|
5288
|
+
interface GoogleCloudAiplatformV1beta1NearestNeighbors {
|
|
5289
|
+
/** All its neighbors. */
|
|
5290
|
+
neighbors?:
|
|
5291
|
+
GoogleCloudAiplatformV1beta1NearestNeighborsNeighbor[];
|
|
5292
|
+
}
|
|
4851
5293
|
interface GoogleCloudAiplatformV1beta1NearestNeighborSearchOperationMetadata {
|
|
4852
5294
|
/**
|
|
4853
5295
|
* The validation stats of the content (per file) to be inserted or updated on the Matching Engine Index resource. Populated if contentsDeltaUri is provided as part of Index.metadata.
|
|
@@ -4893,6 +5335,20 @@ declare namespace gapi.client {
|
|
|
4893
5335
|
sourceGcsUri?:
|
|
4894
5336
|
string;
|
|
4895
5337
|
}
|
|
5338
|
+
interface GoogleCloudAiplatformV1beta1NearestNeighborsNeighbor {
|
|
5339
|
+
/** The distance between the neighbor and the query vector. */
|
|
5340
|
+
distance?:
|
|
5341
|
+
number;
|
|
5342
|
+
/** The id of the similar entity. */
|
|
5343
|
+
entityId?:
|
|
5344
|
+
string;
|
|
5345
|
+
/**
|
|
5346
|
+
* The attributes of the neighbor, e.g. filters, crowding and metadata Note that full entities are returned only when "return_full_entity" is set to true. Otherwise, only the
|
|
5347
|
+
* "entity_id" and "distance" fields are populated.
|
|
5348
|
+
*/
|
|
5349
|
+
entityKeyValues?:
|
|
5350
|
+
GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse;
|
|
5351
|
+
}
|
|
4896
5352
|
interface GoogleCloudAiplatformV1beta1Neighbor {
|
|
4897
5353
|
/** Output only. The neighbor distance. */
|
|
4898
5354
|
neighborDistance?:
|
|
@@ -4965,12 +5421,25 @@ declare namespace gapi.client {
|
|
|
4965
5421
|
/** Output only. The health state of the NotebookRuntime. */
|
|
4966
5422
|
healthState?:
|
|
4967
5423
|
string;
|
|
5424
|
+
/**
|
|
5425
|
+
* The labels with user-defined metadata to organize your NotebookRuntime. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase
|
|
5426
|
+
* letters, numeric characters, underscores and dashes. International characters are allowed. No more than 64 user labels can be associated with one NotebookRuntime (System labels are
|
|
5427
|
+
* excluded). 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.
|
|
5428
|
+
* Following system labels exist for NotebookRuntime: * "aiplatform.googleapis.com/notebook_runtime_gce_instance_id": output only, its value is the Compute Engine instance id. *
|
|
5429
|
+
* "aiplatform.googleapis.com/colab_enterprise_entry_service": its value is either "bigquery" or "vertex"; if absent, it should be "vertex". This is to describe the entry service,
|
|
5430
|
+
* either BigQuery or Vertex.
|
|
5431
|
+
*/
|
|
5432
|
+
labels?:
|
|
5433
|
+
{ [P in string]: string };
|
|
4968
5434
|
/** Output only. The resource name of the NotebookRuntime. */
|
|
4969
5435
|
name?:
|
|
4970
5436
|
string;
|
|
4971
5437
|
/** Output only. The pointer to NotebookRuntimeTemplate this NotebookRuntime is created from. */
|
|
4972
5438
|
notebookRuntimeTemplateRef?:
|
|
4973
5439
|
GoogleCloudAiplatformV1beta1NotebookRuntimeTemplateRef;
|
|
5440
|
+
/** Output only. The type of the notebook runtime. */
|
|
5441
|
+
notebookRuntimeType?:
|
|
5442
|
+
string;
|
|
4974
5443
|
/** Output only. The proxy endpoint used to access the NotebookRuntime. */
|
|
4975
5444
|
proxyUri?:
|
|
4976
5445
|
string;
|
|
@@ -5021,7 +5490,7 @@ declare namespace gapi.client {
|
|
|
5021
5490
|
*/
|
|
5022
5491
|
labels?:
|
|
5023
5492
|
{ [P in string]: string };
|
|
5024
|
-
/**
|
|
5493
|
+
/** Optional. Immutable. The specification of a single machine for the template. */
|
|
5025
5494
|
machineSpec?:
|
|
5026
5495
|
GoogleCloudAiplatformV1beta1MachineSpec;
|
|
5027
5496
|
/** Output only. The resource name of the NotebookRuntimeTemplate. */
|
|
@@ -5030,6 +5499,9 @@ declare namespace gapi.client {
|
|
|
5030
5499
|
/** Optional. Network spec. */
|
|
5031
5500
|
networkSpec?:
|
|
5032
5501
|
GoogleCloudAiplatformV1beta1NetworkSpec;
|
|
5502
|
+
/** Optional. Immutable. The type of the notebook runtime template. */
|
|
5503
|
+
notebookRuntimeType?:
|
|
5504
|
+
string;
|
|
5033
5505
|
/**
|
|
5034
5506
|
* The service account that the runtime workload runs as. You can use any service account within the same project, but you must have the service account user permission to use the
|
|
5035
5507
|
* instance. If not specified, the [Compute Engine default service account](https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used.
|
|
@@ -5091,13 +5563,13 @@ declare namespace gapi.client {
|
|
|
5091
5563
|
* Optional. The full name of the Compute Engine [network](/compute/docs/networks-and-firewalls#networks) to peered with Vertex AI to host the persistent resources. For example,
|
|
5092
5564
|
* `projects/12345/global/networks/myVPC`. [Format](/compute/docs/reference/rest/v1/networks/insert) is of the form `projects/{project}/global/networks/{network}`. Where {project} is a
|
|
5093
5565
|
* project number, as in `12345`, and {network} is a network name. To specify this field, you must have already [configured VPC Network Peering for Vertex
|
|
5094
|
-
* AI](https://cloud.google.com/vertex-ai/docs/general/vpc-peering). If this field is left unspecified, the resources
|
|
5566
|
+
* AI](https://cloud.google.com/vertex-ai/docs/general/vpc-peering). If this field is left unspecified, the resources aren't peered with any network.
|
|
5095
5567
|
*/
|
|
5096
5568
|
network?:
|
|
5097
5569
|
string;
|
|
5098
5570
|
/**
|
|
5099
|
-
* Optional. A list of names for the reserved
|
|
5100
|
-
* provided
|
|
5571
|
+
* Optional. A list of names for the reserved IP ranges under the VPC network that can be used for this persistent resource. If set, we will deploy the persistent resource within the
|
|
5572
|
+
* provided IP ranges. Otherwise, the persistent resource is deployed to any IP ranges under the provided VPC network. Example: ['vertex-ai-ip-range'].
|
|
5101
5573
|
*/
|
|
5102
5574
|
reservedIpRanges?:
|
|
5103
5575
|
string[];
|
|
@@ -5107,7 +5579,7 @@ declare namespace gapi.client {
|
|
|
5107
5579
|
/** Output only. Runtime information of the Persistent Resource. */
|
|
5108
5580
|
resourceRuntime?:
|
|
5109
5581
|
GoogleCloudAiplatformV1beta1ResourceRuntime;
|
|
5110
|
-
/** Optional. Persistent Resource runtime spec.
|
|
5582
|
+
/** Optional. Persistent Resource runtime spec. For example, used for Ray cluster configuration. */
|
|
5111
5583
|
resourceRuntimeSpec?:
|
|
5112
5584
|
GoogleCloudAiplatformV1beta1ResourceRuntimeSpec;
|
|
5113
5585
|
/** Output only. Time when the PersistentResource for the first time entered the `RUNNING` state. */
|
|
@@ -5188,7 +5660,10 @@ declare namespace gapi.client {
|
|
|
5188
5660
|
/** Output only. Pipeline template metadata. Will fill up fields if PipelineJob.template_uri is from supported template registry. */
|
|
5189
5661
|
templateMetadata?:
|
|
5190
5662
|
GoogleCloudAiplatformV1beta1PipelineTemplateMetadata;
|
|
5191
|
-
/**
|
|
5663
|
+
/**
|
|
5664
|
+
* A template uri from where the PipelineJob.pipeline_spec, if empty, will be downloaded. Currently, only uri from Vertex Template Registry & Gallery is supported. Reference to
|
|
5665
|
+
* https://cloud.google.com/vertex-ai/docs/pipelines/create-pipeline-template.
|
|
5666
|
+
*/
|
|
5192
5667
|
templateUri?:
|
|
5193
5668
|
string;
|
|
5194
5669
|
/** Output only. Timestamp when this PipelineJob was most recently updated. */
|
|
@@ -5715,19 +6190,19 @@ declare namespace gapi.client {
|
|
|
5715
6190
|
interface GoogleCloudAiplatformV1beta1RaySpec {
|
|
5716
6191
|
/**
|
|
5717
6192
|
* Optional. This will be used to indicate which resource pool will serve as the Ray head node(the first node within that pool). Will use the machine from the first workerpool as the
|
|
5718
|
-
* head node by default if this field
|
|
6193
|
+
* head node by default if this field isn't set.
|
|
5719
6194
|
*/
|
|
5720
6195
|
headNodeResourcePoolId?:
|
|
5721
6196
|
string;
|
|
5722
6197
|
/**
|
|
5723
|
-
* Optional. Default image for user to choose a preferred ML framework(
|
|
5724
|
-
* images(https://cloud.google.com/vertex-ai/docs/training/pre-built-containers). Either this or the resource_pool_images is required. Use this field if you need all the resource
|
|
5725
|
-
* to have the same Ray image
|
|
6198
|
+
* Optional. Default image for user to choose a preferred ML framework (for example, TensorFlow or Pytorch) by choosing from [Vertex prebuilt
|
|
6199
|
+
* images](https://cloud.google.com/vertex-ai/docs/training/pre-built-containers). Either this or the resource_pool_images is required. Use this field if you need all the resource
|
|
6200
|
+
* pools to have the same Ray image. Otherwise, use the {@code resource_pool_images} field.
|
|
5726
6201
|
*/
|
|
5727
6202
|
imageUri?:
|
|
5728
6203
|
string;
|
|
5729
6204
|
/**
|
|
5730
|
-
* Optional. Required if image_uri
|
|
6205
|
+
* Optional. Required if image_uri isn't set. A map of resource_pool_id to prebuild Ray image if user need to use different images for different head/worker pools. This map needs to
|
|
5731
6206
|
* cover all the resource pool ids. Example: { "ray_head_node_pool": "head image" "ray_worker_node_pool1": "worker image" "ray_worker_node_pool2": "another worker image" }
|
|
5732
6207
|
*/
|
|
5733
6208
|
resourcePoolImages?:
|
|
@@ -5849,6 +6324,17 @@ declare namespace gapi.client {
|
|
|
5849
6324
|
// tslint:disable-next-line:no-empty-interface
|
|
5850
6325
|
interface GoogleCloudAiplatformV1beta1RemoveDatapointsResponse {
|
|
5851
6326
|
}
|
|
6327
|
+
interface GoogleCloudAiplatformV1beta1ReportExecutionEventRequest {
|
|
6328
|
+
/** Required. The type of the event. */
|
|
6329
|
+
eventType?:
|
|
6330
|
+
string;
|
|
6331
|
+
/** Required. The VM identity token (a JWT) for authenticating the VM. https://cloud.google.com/compute/docs/instances/verifying-instance-identity */
|
|
6332
|
+
vmToken?:
|
|
6333
|
+
string;
|
|
6334
|
+
}
|
|
6335
|
+
// tslint:disable-next-line:no-empty-interface
|
|
6336
|
+
interface GoogleCloudAiplatformV1beta1ReportExecutionEventResponse {
|
|
6337
|
+
}
|
|
5852
6338
|
interface GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest {
|
|
5853
6339
|
/** Optional. The details of the request for debug. */
|
|
5854
6340
|
eventDetails?:
|
|
@@ -5872,7 +6358,7 @@ declare namespace gapi.client {
|
|
|
5872
6358
|
/** Optional. Disk spec for the machine in this node pool. */
|
|
5873
6359
|
diskSpec?:
|
|
5874
6360
|
GoogleCloudAiplatformV1beta1DiskSpec;
|
|
5875
|
-
/** Immutable. The unique ID in a PersistentResource
|
|
6361
|
+
/** Immutable. The unique ID in a PersistentResource for referring to this resource pool. User can specify it if necessary. Otherwise, it's generated automatically. */
|
|
5876
6362
|
id?:
|
|
5877
6363
|
string;
|
|
5878
6364
|
/** Required. Immutable. The specification of a single machine. */
|
|
@@ -8300,17 +8786,33 @@ declare namespace gapi.client {
|
|
|
8300
8786
|
nextPageToken?:
|
|
8301
8787
|
string;
|
|
8302
8788
|
}
|
|
8789
|
+
interface GoogleCloudAiplatformV1beta1SearchNearestEntitiesRequest {
|
|
8790
|
+
/** Required. The query. */
|
|
8791
|
+
query?:
|
|
8792
|
+
GoogleCloudAiplatformV1beta1NearestNeighborQuery;
|
|
8793
|
+
/**
|
|
8794
|
+
* Optional. If set to true, the full entities (including all vector values and metadata) of the nearest neighbors are returned; otherwise only entity id of the nearest neighbors will
|
|
8795
|
+
* be returned. Note that returning full entities will significantly increase the latency and cost of the query.
|
|
8796
|
+
*/
|
|
8797
|
+
returnFullEntity?:
|
|
8798
|
+
boolean;
|
|
8799
|
+
}
|
|
8800
|
+
interface GoogleCloudAiplatformV1beta1SearchNearestEntitiesResponse {
|
|
8801
|
+
/** The nearest neighbors of the query entity. */
|
|
8802
|
+
nearestNeighbors?:
|
|
8803
|
+
GoogleCloudAiplatformV1beta1NearestNeighbors;
|
|
8804
|
+
}
|
|
8303
8805
|
interface GoogleCloudAiplatformV1beta1ServiceAccountSpec {
|
|
8304
8806
|
/**
|
|
8305
|
-
* Required. If true, custom user-managed service account is enforced to run any workloads (
|
|
8306
|
-
* Agent](https://cloud.google.com/vertex-ai/docs/general/access-control#service-agents)
|
|
8807
|
+
* Required. If true, custom user-managed service account is enforced to run any workloads (for example, Vertex Jobs) on the resource. Otherwise, uses the [Vertex AI Custom Code
|
|
8808
|
+
* Service Agent](https://cloud.google.com/vertex-ai/docs/general/access-control#service-agents).
|
|
8307
8809
|
*/
|
|
8308
8810
|
enableCustomServiceAccount?:
|
|
8309
8811
|
boolean;
|
|
8310
8812
|
/**
|
|
8311
|
-
* Optional. Default service account that this PersistentResource's workloads run as. The workloads include: * Any runtime specified via `ResourceRuntimeSpec` on creation time,
|
|
8312
|
-
* Ray
|
|
8313
|
-
* `iam.serviceAccounts.actAs` permission on this service account. Required if any containers specified in `ResourceRuntimeSpec`.
|
|
8813
|
+
* Optional. Default service account that this PersistentResource's workloads run as. The workloads include: * Any runtime specified via `ResourceRuntimeSpec` on creation time, for
|
|
8814
|
+
* example, Ray. * Jobs submitted to PersistentResource, if no other service account specified in the job specs. Only works when custom service account is enabled and users have the
|
|
8815
|
+
* `iam.serviceAccounts.actAs` permission on this service account. Required if any containers are specified in `ResourceRuntimeSpec`.
|
|
8314
8816
|
*/
|
|
8315
8817
|
serviceAccount?:
|
|
8316
8818
|
string;
|
|
@@ -8748,6 +9250,14 @@ declare namespace gapi.client {
|
|
|
8748
9250
|
trials?:
|
|
8749
9251
|
GoogleCloudAiplatformV1beta1Trial[];
|
|
8750
9252
|
}
|
|
9253
|
+
// tslint:disable-next-line:no-empty-interface
|
|
9254
|
+
interface GoogleCloudAiplatformV1beta1SyncFeatureViewRequest {
|
|
9255
|
+
}
|
|
9256
|
+
interface GoogleCloudAiplatformV1beta1SyncFeatureViewResponse {
|
|
9257
|
+
/** Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}` */
|
|
9258
|
+
featureViewSync?:
|
|
9259
|
+
string;
|
|
9260
|
+
}
|
|
8751
9261
|
interface GoogleCloudAiplatformV1beta1Tensor {
|
|
8752
9262
|
/**
|
|
8753
9263
|
* Type specific representations that make it easy to create tensor protos in all languages. Only the representation corresponding to "dtype" can be set. The values hold the flattened
|
|
@@ -9245,11 +9755,31 @@ declare namespace gapi.client {
|
|
|
9245
9755
|
// tslint:disable-next-line:no-empty-interface
|
|
9246
9756
|
interface GoogleCloudAiplatformV1beta1UpdateExplanationDatasetResponse {
|
|
9247
9757
|
}
|
|
9758
|
+
interface GoogleCloudAiplatformV1beta1UpdateFeatureGroupOperationMetadata {
|
|
9759
|
+
/** Operation metadata for FeatureGroup. */
|
|
9760
|
+
genericMetadata?:
|
|
9761
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
9762
|
+
}
|
|
9763
|
+
interface GoogleCloudAiplatformV1beta1UpdateFeatureOnlineStoreOperationMetadata {
|
|
9764
|
+
/** Operation metadata for FeatureOnlineStore. */
|
|
9765
|
+
genericMetadata?:
|
|
9766
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
9767
|
+
}
|
|
9768
|
+
interface GoogleCloudAiplatformV1beta1UpdateFeatureOperationMetadata {
|
|
9769
|
+
/** Operation metadata for Feature Update. */
|
|
9770
|
+
genericMetadata?:
|
|
9771
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
9772
|
+
}
|
|
9248
9773
|
interface GoogleCloudAiplatformV1beta1UpdateFeaturestoreOperationMetadata {
|
|
9249
9774
|
/** Operation metadata for Featurestore. */
|
|
9250
9775
|
genericMetadata?:
|
|
9251
9776
|
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
9252
9777
|
}
|
|
9778
|
+
interface GoogleCloudAiplatformV1beta1UpdateFeatureViewOperationMetadata {
|
|
9779
|
+
/** Operation metadata for FeatureView Update. */
|
|
9780
|
+
genericMetadata?:
|
|
9781
|
+
GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
9782
|
+
}
|
|
9253
9783
|
interface GoogleCloudAiplatformV1beta1UpdateIndexOperationMetadata {
|
|
9254
9784
|
/** The operation generic information. */
|
|
9255
9785
|
genericMetadata?:
|
|
@@ -11857,14 +12387,9 @@ declare namespace gapi.client {
|
|
|
11857
12387
|
operations:
|
|
11858
12388
|
OperationsResource;
|
|
11859
12389
|
}
|
|
11860
|
-
interface
|
|
11861
|
-
/**
|
|
11862
|
-
|
|
11863
|
-
* 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
|
|
11864
|
-
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
11865
|
-
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
11866
|
-
*/
|
|
11867
|
-
cancel(request?: {
|
|
12390
|
+
interface DatasetVersionsResource {
|
|
12391
|
+
/** Create a version from a Dataset. */
|
|
12392
|
+
create(request: {
|
|
11868
12393
|
/** V1 error format. */
|
|
11869
12394
|
"$.xgafv"?:
|
|
11870
12395
|
string;
|
|
@@ -11883,12 +12408,53 @@ declare namespace gapi.client {
|
|
|
11883
12408
|
/** 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. */
|
|
11884
12409
|
key?:
|
|
11885
12410
|
string;
|
|
11886
|
-
/**
|
|
11887
|
-
|
|
12411
|
+
/** OAuth 2.0 token for the current user. */
|
|
12412
|
+
oauth_token?:
|
|
12413
|
+
string;
|
|
12414
|
+
/** Required. The name of the Dataset resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
12415
|
+
parent:
|
|
12416
|
+
string;
|
|
12417
|
+
/** Returns response with indentations and line breaks. */
|
|
12418
|
+
prettyPrint?:
|
|
12419
|
+
boolean;
|
|
12420
|
+
/** 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. */
|
|
12421
|
+
quotaUser?:
|
|
12422
|
+
string;
|
|
12423
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12424
|
+
upload_protocol?:
|
|
12425
|
+
string;
|
|
12426
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12427
|
+
uploadType?:
|
|
12428
|
+
string;
|
|
12429
|
+
/** Request body */
|
|
12430
|
+
resource:
|
|
12431
|
+
GoogleCloudAiplatformV1beta1DatasetVersion;
|
|
12432
|
+
}): Request<GoogleLongrunningOperation>;
|
|
12433
|
+
create(request: {
|
|
12434
|
+
/** V1 error format. */
|
|
12435
|
+
"$.xgafv"?:
|
|
12436
|
+
string;
|
|
12437
|
+
/** OAuth access token. */
|
|
12438
|
+
access_token?:
|
|
12439
|
+
string;
|
|
12440
|
+
/** Data format for response. */
|
|
12441
|
+
alt?:
|
|
12442
|
+
string;
|
|
12443
|
+
/** JSONP */
|
|
12444
|
+
callback?:
|
|
12445
|
+
string;
|
|
12446
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12447
|
+
fields?:
|
|
12448
|
+
string;
|
|
12449
|
+
/** 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. */
|
|
12450
|
+
key?:
|
|
11888
12451
|
string;
|
|
11889
12452
|
/** OAuth 2.0 token for the current user. */
|
|
11890
12453
|
oauth_token?:
|
|
11891
12454
|
string;
|
|
12455
|
+
/** Required. The name of the Dataset resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
12456
|
+
parent:
|
|
12457
|
+
string;
|
|
11892
12458
|
/** Returns response with indentations and line breaks. */
|
|
11893
12459
|
prettyPrint?:
|
|
11894
12460
|
boolean;
|
|
@@ -11901,11 +12467,9 @@ declare namespace gapi.client {
|
|
|
11901
12467
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11902
12468
|
uploadType?:
|
|
11903
12469
|
string;
|
|
11904
|
-
}
|
|
11905
|
-
|
|
11906
|
-
|
|
11907
|
-
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
11908
|
-
*/
|
|
12470
|
+
},
|
|
12471
|
+
body: GoogleCloudAiplatformV1beta1DatasetVersion): Request<GoogleLongrunningOperation>;
|
|
12472
|
+
/** Deletes a Dataset version. */
|
|
11909
12473
|
delete(request?: {
|
|
11910
12474
|
/** V1 error format. */
|
|
11911
12475
|
"$.xgafv"?:
|
|
@@ -11925,7 +12489,7 @@ declare namespace gapi.client {
|
|
|
11925
12489
|
/** 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. */
|
|
11926
12490
|
key?:
|
|
11927
12491
|
string;
|
|
11928
|
-
/** The name of the
|
|
12492
|
+
/** Required. The resource name of the Dataset version to delete. Format: `projects/{project}/locations/{location}/datasets/{dataset}/datasetVersions/{dataset_version}` */
|
|
11929
12493
|
name:
|
|
11930
12494
|
string;
|
|
11931
12495
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -11943,8 +12507,8 @@ declare namespace gapi.client {
|
|
|
11943
12507
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11944
12508
|
uploadType?:
|
|
11945
12509
|
string;
|
|
11946
|
-
}): Request<
|
|
11947
|
-
/** Gets
|
|
12510
|
+
}): Request<GoogleLongrunningOperation>;
|
|
12511
|
+
/** Gets a Dataset version. */
|
|
11948
12512
|
get(request?: {
|
|
11949
12513
|
/** V1 error format. */
|
|
11950
12514
|
"$.xgafv"?:
|
|
@@ -11964,7 +12528,7 @@ declare namespace gapi.client {
|
|
|
11964
12528
|
/** 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. */
|
|
11965
12529
|
key?:
|
|
11966
12530
|
string;
|
|
11967
|
-
/** The name of the
|
|
12531
|
+
/** Required. The resource name of the Dataset version to delete. Format: `projects/{project}/locations/{location}/datasets/{dataset}/datasetVersions/{dataset_version}` */
|
|
11968
12532
|
name:
|
|
11969
12533
|
string;
|
|
11970
12534
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -11976,14 +12540,17 @@ declare namespace gapi.client {
|
|
|
11976
12540
|
/** 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. */
|
|
11977
12541
|
quotaUser?:
|
|
11978
12542
|
string;
|
|
12543
|
+
/** Mask specifying which fields to read. */
|
|
12544
|
+
readMask?:
|
|
12545
|
+
string;
|
|
11979
12546
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11980
12547
|
upload_protocol?:
|
|
11981
12548
|
string;
|
|
11982
12549
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11983
12550
|
uploadType?:
|
|
11984
12551
|
string;
|
|
11985
|
-
}): Request<
|
|
11986
|
-
/** Lists
|
|
12552
|
+
}): Request<GoogleCloudAiplatformV1beta1DatasetVersion>;
|
|
12553
|
+
/** Lists DatasetVersions in a Dataset. */
|
|
11987
12554
|
list(request?: {
|
|
11988
12555
|
/** V1 error format. */
|
|
11989
12556
|
"$.xgafv"?:
|
|
@@ -12000,44 +12567,45 @@ declare namespace gapi.client {
|
|
|
12000
12567
|
/** Selector specifying which fields to include in a partial response. */
|
|
12001
12568
|
fields?:
|
|
12002
12569
|
string;
|
|
12003
|
-
/** The standard list filter. */
|
|
12570
|
+
/** Optional. The standard list filter. */
|
|
12004
12571
|
filter?:
|
|
12005
12572
|
string;
|
|
12006
12573
|
/** 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. */
|
|
12007
12574
|
key?:
|
|
12008
12575
|
string;
|
|
12009
|
-
/** The name of the operation's parent resource. */
|
|
12010
|
-
name:
|
|
12011
|
-
string;
|
|
12012
12576
|
/** OAuth 2.0 token for the current user. */
|
|
12013
12577
|
oauth_token?:
|
|
12014
12578
|
string;
|
|
12015
|
-
/**
|
|
12579
|
+
/** Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. */
|
|
12580
|
+
orderBy?:
|
|
12581
|
+
string;
|
|
12582
|
+
/** Optional. The standard list page size. */
|
|
12016
12583
|
pageSize?:
|
|
12017
12584
|
number;
|
|
12018
|
-
/** The standard list page token. */
|
|
12585
|
+
/** Optional. The standard list page token. */
|
|
12019
12586
|
pageToken?:
|
|
12020
12587
|
string;
|
|
12588
|
+
/** Required. The resource name of the Dataset to list DatasetVersions from. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
12589
|
+
parent:
|
|
12590
|
+
string;
|
|
12021
12591
|
/** Returns response with indentations and line breaks. */
|
|
12022
12592
|
prettyPrint?:
|
|
12023
12593
|
boolean;
|
|
12024
12594
|
/** 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. */
|
|
12025
12595
|
quotaUser?:
|
|
12026
12596
|
string;
|
|
12597
|
+
/** Optional. Mask specifying which fields to read. */
|
|
12598
|
+
readMask?:
|
|
12599
|
+
string;
|
|
12027
12600
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12028
12601
|
upload_protocol?:
|
|
12029
12602
|
string;
|
|
12030
12603
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12031
12604
|
uploadType?:
|
|
12032
12605
|
string;
|
|
12033
|
-
}): Request<
|
|
12034
|
-
/**
|
|
12035
|
-
|
|
12036
|
-
* 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
|
|
12037
|
-
* `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
|
|
12038
|
-
* an immediate response is no guarantee that the operation is done.
|
|
12039
|
-
*/
|
|
12040
|
-
wait(request?: {
|
|
12606
|
+
}): Request<GoogleCloudAiplatformV1beta1ListDatasetVersionsResponse>;
|
|
12607
|
+
/** Restores a dataset version. */
|
|
12608
|
+
restore(request?: {
|
|
12041
12609
|
/** V1 error format. */
|
|
12042
12610
|
"$.xgafv"?:
|
|
12043
12611
|
string;
|
|
@@ -12056,7 +12624,7 @@ declare namespace gapi.client {
|
|
|
12056
12624
|
/** 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. */
|
|
12057
12625
|
key?:
|
|
12058
12626
|
string;
|
|
12059
|
-
/** The name of the
|
|
12627
|
+
/** Required. The name of the DatasetVersion resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}/datasetVersions/{dataset_version}` */
|
|
12060
12628
|
name:
|
|
12061
12629
|
string;
|
|
12062
12630
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -12068,12 +12636,6 @@ declare namespace gapi.client {
|
|
|
12068
12636
|
/** 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. */
|
|
12069
12637
|
quotaUser?:
|
|
12070
12638
|
string;
|
|
12071
|
-
/**
|
|
12072
|
-
* 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
|
|
12073
|
-
* specified, the shorter one will be used.
|
|
12074
|
-
*/
|
|
12075
|
-
timeout?:
|
|
12076
|
-
string;
|
|
12077
12639
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12078
12640
|
upload_protocol?:
|
|
12079
12641
|
string;
|
|
@@ -12307,9 +12869,14 @@ declare namespace gapi.client {
|
|
|
12307
12869
|
string;
|
|
12308
12870
|
}): Request<GoogleLongrunningOperation>;
|
|
12309
12871
|
}
|
|
12310
|
-
interface
|
|
12311
|
-
/**
|
|
12312
|
-
|
|
12872
|
+
interface OperationsResource {
|
|
12873
|
+
/**
|
|
12874
|
+
* 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
|
|
12875
|
+
* 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
|
|
12876
|
+
* operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a
|
|
12877
|
+
* google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
|
|
12878
|
+
*/
|
|
12879
|
+
cancel(request?: {
|
|
12313
12880
|
/** V1 error format. */
|
|
12314
12881
|
"$.xgafv"?:
|
|
12315
12882
|
string;
|
|
@@ -12328,7 +12895,7 @@ declare namespace gapi.client {
|
|
|
12328
12895
|
/** 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. */
|
|
12329
12896
|
key?:
|
|
12330
12897
|
string;
|
|
12331
|
-
/**
|
|
12898
|
+
/** The name of the operation resource to be cancelled. */
|
|
12332
12899
|
name:
|
|
12333
12900
|
string;
|
|
12334
12901
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -12346,9 +12913,12 @@ declare namespace gapi.client {
|
|
|
12346
12913
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12347
12914
|
uploadType?:
|
|
12348
12915
|
string;
|
|
12349
|
-
}): Request<
|
|
12350
|
-
/**
|
|
12351
|
-
|
|
12916
|
+
}): Request<{}>;
|
|
12917
|
+
/**
|
|
12918
|
+
* 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
|
|
12919
|
+
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
12920
|
+
*/
|
|
12921
|
+
delete(request?: {
|
|
12352
12922
|
/** V1 error format. */
|
|
12353
12923
|
"$.xgafv"?:
|
|
12354
12924
|
string;
|
|
@@ -12364,49 +12934,30 @@ declare namespace gapi.client {
|
|
|
12364
12934
|
/** Selector specifying which fields to include in a partial response. */
|
|
12365
12935
|
fields?:
|
|
12366
12936
|
string;
|
|
12367
|
-
/** The standard list filter. */
|
|
12368
|
-
filter?:
|
|
12369
|
-
string;
|
|
12370
12937
|
/** 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. */
|
|
12371
12938
|
key?:
|
|
12372
12939
|
string;
|
|
12940
|
+
/** The name of the operation resource to be deleted. */
|
|
12941
|
+
name:
|
|
12942
|
+
string;
|
|
12373
12943
|
/** OAuth 2.0 token for the current user. */
|
|
12374
12944
|
oauth_token?:
|
|
12375
12945
|
string;
|
|
12376
|
-
/** A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. */
|
|
12377
|
-
orderBy?:
|
|
12378
|
-
string;
|
|
12379
|
-
/** The standard list page size. */
|
|
12380
|
-
pageSize?:
|
|
12381
|
-
number;
|
|
12382
|
-
/** The standard list page token. */
|
|
12383
|
-
pageToken?:
|
|
12384
|
-
string;
|
|
12385
|
-
/** Required. The resource name of the Dataset to list SavedQueries from. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
12386
|
-
parent:
|
|
12387
|
-
string;
|
|
12388
12946
|
/** Returns response with indentations and line breaks. */
|
|
12389
12947
|
prettyPrint?:
|
|
12390
12948
|
boolean;
|
|
12391
12949
|
/** 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. */
|
|
12392
12950
|
quotaUser?:
|
|
12393
12951
|
string;
|
|
12394
|
-
/** Mask specifying which fields to read. */
|
|
12395
|
-
readMask?:
|
|
12396
|
-
string;
|
|
12397
12952
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12398
12953
|
upload_protocol?:
|
|
12399
12954
|
string;
|
|
12400
12955
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12401
12956
|
uploadType?:
|
|
12402
12957
|
string;
|
|
12403
|
-
}): Request<
|
|
12404
|
-
|
|
12405
|
-
|
|
12406
|
-
}
|
|
12407
|
-
interface DatasetsResource {
|
|
12408
|
-
/** Creates a Dataset. */
|
|
12409
|
-
create(request: {
|
|
12958
|
+
}): Request<{}>;
|
|
12959
|
+
/** 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. */
|
|
12960
|
+
get(request?: {
|
|
12410
12961
|
/** V1 error format. */
|
|
12411
12962
|
"$.xgafv"?:
|
|
12412
12963
|
string;
|
|
@@ -12425,12 +12976,12 @@ declare namespace gapi.client {
|
|
|
12425
12976
|
/** 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. */
|
|
12426
12977
|
key?:
|
|
12427
12978
|
string;
|
|
12979
|
+
/** The name of the operation resource. */
|
|
12980
|
+
name:
|
|
12981
|
+
string;
|
|
12428
12982
|
/** OAuth 2.0 token for the current user. */
|
|
12429
12983
|
oauth_token?:
|
|
12430
12984
|
string;
|
|
12431
|
-
/** Required. The resource name of the Location to create the Dataset in. Format: `projects/{project}/locations/{location}` */
|
|
12432
|
-
parent:
|
|
12433
|
-
string;
|
|
12434
12985
|
/** Returns response with indentations and line breaks. */
|
|
12435
12986
|
prettyPrint?:
|
|
12436
12987
|
boolean;
|
|
@@ -12443,11 +12994,9 @@ declare namespace gapi.client {
|
|
|
12443
12994
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12444
12995
|
uploadType?:
|
|
12445
12996
|
string;
|
|
12446
|
-
/** Request body */
|
|
12447
|
-
resource:
|
|
12448
|
-
GoogleCloudAiplatformV1beta1Dataset;
|
|
12449
12997
|
}): Request<GoogleLongrunningOperation>;
|
|
12450
|
-
|
|
12998
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
12999
|
+
list(request?: {
|
|
12451
13000
|
/** V1 error format. */
|
|
12452
13001
|
"$.xgafv"?:
|
|
12453
13002
|
string;
|
|
@@ -12463,14 +13012,23 @@ declare namespace gapi.client {
|
|
|
12463
13012
|
/** Selector specifying which fields to include in a partial response. */
|
|
12464
13013
|
fields?:
|
|
12465
13014
|
string;
|
|
13015
|
+
/** The standard list filter. */
|
|
13016
|
+
filter?:
|
|
13017
|
+
string;
|
|
12466
13018
|
/** 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. */
|
|
12467
13019
|
key?:
|
|
12468
13020
|
string;
|
|
13021
|
+
/** The name of the operation's parent resource. */
|
|
13022
|
+
name:
|
|
13023
|
+
string;
|
|
12469
13024
|
/** OAuth 2.0 token for the current user. */
|
|
12470
13025
|
oauth_token?:
|
|
12471
13026
|
string;
|
|
12472
|
-
/**
|
|
12473
|
-
|
|
13027
|
+
/** The standard list page size. */
|
|
13028
|
+
pageSize?:
|
|
13029
|
+
number;
|
|
13030
|
+
/** The standard list page token. */
|
|
13031
|
+
pageToken?:
|
|
12474
13032
|
string;
|
|
12475
13033
|
/** Returns response with indentations and line breaks. */
|
|
12476
13034
|
prettyPrint?:
|
|
@@ -12484,10 +13042,14 @@ declare namespace gapi.client {
|
|
|
12484
13042
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12485
13043
|
uploadType?:
|
|
12486
13044
|
string;
|
|
12487
|
-
}
|
|
12488
|
-
|
|
12489
|
-
|
|
12490
|
-
|
|
13045
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
13046
|
+
/**
|
|
13047
|
+
* 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
|
|
13048
|
+
* 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
|
|
13049
|
+
* `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
|
|
13050
|
+
* an immediate response is no guarantee that the operation is done.
|
|
13051
|
+
*/
|
|
13052
|
+
wait(request?: {
|
|
12491
13053
|
/** V1 error format. */
|
|
12492
13054
|
"$.xgafv"?:
|
|
12493
13055
|
string;
|
|
@@ -12506,7 +13068,7 @@ declare namespace gapi.client {
|
|
|
12506
13068
|
/** 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. */
|
|
12507
13069
|
key?:
|
|
12508
13070
|
string;
|
|
12509
|
-
/**
|
|
13071
|
+
/** The name of the operation resource to wait on. */
|
|
12510
13072
|
name:
|
|
12511
13073
|
string;
|
|
12512
13074
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -12518,6 +13080,12 @@ declare namespace gapi.client {
|
|
|
12518
13080
|
/** 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. */
|
|
12519
13081
|
quotaUser?:
|
|
12520
13082
|
string;
|
|
13083
|
+
/**
|
|
13084
|
+
* 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
|
|
13085
|
+
* specified, the shorter one will be used.
|
|
13086
|
+
*/
|
|
13087
|
+
timeout?:
|
|
13088
|
+
string;
|
|
12521
13089
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12522
13090
|
upload_protocol?:
|
|
12523
13091
|
string;
|
|
@@ -12525,8 +13093,10 @@ declare namespace gapi.client {
|
|
|
12525
13093
|
uploadType?:
|
|
12526
13094
|
string;
|
|
12527
13095
|
}): Request<GoogleLongrunningOperation>;
|
|
12528
|
-
|
|
12529
|
-
|
|
13096
|
+
}
|
|
13097
|
+
interface SavedQueriesResource {
|
|
13098
|
+
/** Deletes a SavedQuery. */
|
|
13099
|
+
delete(request?: {
|
|
12530
13100
|
/** V1 error format. */
|
|
12531
13101
|
"$.xgafv"?:
|
|
12532
13102
|
string;
|
|
@@ -12545,7 +13115,7 @@ declare namespace gapi.client {
|
|
|
12545
13115
|
/** 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. */
|
|
12546
13116
|
key?:
|
|
12547
13117
|
string;
|
|
12548
|
-
/** Required. The name of the
|
|
13118
|
+
/** Required. The resource name of the SavedQuery to delete. Format: `projects/{project}/locations/{location}/datasets/{dataset}/savedQueries/{saved_query}` */
|
|
12549
13119
|
name:
|
|
12550
13120
|
string;
|
|
12551
13121
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -12563,11 +13133,9 @@ declare namespace gapi.client {
|
|
|
12563
13133
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12564
13134
|
uploadType?:
|
|
12565
13135
|
string;
|
|
12566
|
-
/** Request body */
|
|
12567
|
-
resource:
|
|
12568
|
-
GoogleCloudAiplatformV1beta1ExportDataRequest;
|
|
12569
13136
|
}): Request<GoogleLongrunningOperation>;
|
|
12570
|
-
|
|
13137
|
+
/** Lists SavedQueries in a Dataset. */
|
|
13138
|
+
list(request?: {
|
|
12571
13139
|
/** V1 error format. */
|
|
12572
13140
|
"$.xgafv"?:
|
|
12573
13141
|
string;
|
|
@@ -12583,31 +13151,49 @@ declare namespace gapi.client {
|
|
|
12583
13151
|
/** Selector specifying which fields to include in a partial response. */
|
|
12584
13152
|
fields?:
|
|
12585
13153
|
string;
|
|
13154
|
+
/** The standard list filter. */
|
|
13155
|
+
filter?:
|
|
13156
|
+
string;
|
|
12586
13157
|
/** 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. */
|
|
12587
13158
|
key?:
|
|
12588
13159
|
string;
|
|
12589
|
-
/** Required. The name of the Dataset resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
12590
|
-
name:
|
|
12591
|
-
string;
|
|
12592
13160
|
/** OAuth 2.0 token for the current user. */
|
|
12593
13161
|
oauth_token?:
|
|
12594
13162
|
string;
|
|
13163
|
+
/** A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. */
|
|
13164
|
+
orderBy?:
|
|
13165
|
+
string;
|
|
13166
|
+
/** The standard list page size. */
|
|
13167
|
+
pageSize?:
|
|
13168
|
+
number;
|
|
13169
|
+
/** The standard list page token. */
|
|
13170
|
+
pageToken?:
|
|
13171
|
+
string;
|
|
13172
|
+
/** Required. The resource name of the Dataset to list SavedQueries from. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
13173
|
+
parent:
|
|
13174
|
+
string;
|
|
12595
13175
|
/** Returns response with indentations and line breaks. */
|
|
12596
13176
|
prettyPrint?:
|
|
12597
13177
|
boolean;
|
|
12598
13178
|
/** 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. */
|
|
12599
13179
|
quotaUser?:
|
|
12600
13180
|
string;
|
|
13181
|
+
/** Mask specifying which fields to read. */
|
|
13182
|
+
readMask?:
|
|
13183
|
+
string;
|
|
12601
13184
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12602
13185
|
upload_protocol?:
|
|
12603
13186
|
string;
|
|
12604
13187
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12605
13188
|
uploadType?:
|
|
12606
13189
|
string;
|
|
12607
|
-
}
|
|
12608
|
-
|
|
12609
|
-
|
|
12610
|
-
|
|
13190
|
+
}): Request<GoogleCloudAiplatformV1beta1ListSavedQueriesResponse>;
|
|
13191
|
+
operations:
|
|
13192
|
+
OperationsResource;
|
|
13193
|
+
}
|
|
13194
|
+
interface DatasetsResource {
|
|
13195
|
+
/** Creates a Dataset. */
|
|
13196
|
+
create(request: {
|
|
12611
13197
|
/** V1 error format. */
|
|
12612
13198
|
"$.xgafv"?:
|
|
12613
13199
|
string;
|
|
@@ -12626,20 +13212,58 @@ declare namespace gapi.client {
|
|
|
12626
13212
|
/** 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. */
|
|
12627
13213
|
key?:
|
|
12628
13214
|
string;
|
|
12629
|
-
/** Required. The name of the Dataset resource. */
|
|
12630
|
-
name:
|
|
12631
|
-
string;
|
|
12632
13215
|
/** OAuth 2.0 token for the current user. */
|
|
12633
13216
|
oauth_token?:
|
|
12634
13217
|
string;
|
|
13218
|
+
/** Required. The resource name of the Location to create the Dataset in. Format: `projects/{project}/locations/{location}` */
|
|
13219
|
+
parent:
|
|
13220
|
+
string;
|
|
12635
13221
|
/** Returns response with indentations and line breaks. */
|
|
12636
13222
|
prettyPrint?:
|
|
12637
13223
|
boolean;
|
|
12638
13224
|
/** 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. */
|
|
12639
13225
|
quotaUser?:
|
|
12640
13226
|
string;
|
|
12641
|
-
/**
|
|
12642
|
-
|
|
13227
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13228
|
+
upload_protocol?:
|
|
13229
|
+
string;
|
|
13230
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13231
|
+
uploadType?:
|
|
13232
|
+
string;
|
|
13233
|
+
/** Request body */
|
|
13234
|
+
resource:
|
|
13235
|
+
GoogleCloudAiplatformV1beta1Dataset;
|
|
13236
|
+
}): Request<GoogleLongrunningOperation>;
|
|
13237
|
+
create(request: {
|
|
13238
|
+
/** V1 error format. */
|
|
13239
|
+
"$.xgafv"?:
|
|
13240
|
+
string;
|
|
13241
|
+
/** OAuth access token. */
|
|
13242
|
+
access_token?:
|
|
13243
|
+
string;
|
|
13244
|
+
/** Data format for response. */
|
|
13245
|
+
alt?:
|
|
13246
|
+
string;
|
|
13247
|
+
/** JSONP */
|
|
13248
|
+
callback?:
|
|
13249
|
+
string;
|
|
13250
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13251
|
+
fields?:
|
|
13252
|
+
string;
|
|
13253
|
+
/** 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. */
|
|
13254
|
+
key?:
|
|
13255
|
+
string;
|
|
13256
|
+
/** OAuth 2.0 token for the current user. */
|
|
13257
|
+
oauth_token?:
|
|
13258
|
+
string;
|
|
13259
|
+
/** Required. The resource name of the Location to create the Dataset in. Format: `projects/{project}/locations/{location}` */
|
|
13260
|
+
parent:
|
|
13261
|
+
string;
|
|
13262
|
+
/** Returns response with indentations and line breaks. */
|
|
13263
|
+
prettyPrint?:
|
|
13264
|
+
boolean;
|
|
13265
|
+
/** 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. */
|
|
13266
|
+
quotaUser?:
|
|
12643
13267
|
string;
|
|
12644
13268
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12645
13269
|
upload_protocol?:
|
|
@@ -12647,9 +13271,10 @@ declare namespace gapi.client {
|
|
|
12647
13271
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12648
13272
|
uploadType?:
|
|
12649
13273
|
string;
|
|
12650
|
-
}
|
|
12651
|
-
|
|
12652
|
-
|
|
13274
|
+
},
|
|
13275
|
+
body: GoogleCloudAiplatformV1beta1Dataset): Request<GoogleLongrunningOperation>;
|
|
13276
|
+
/** Deletes a Dataset. */
|
|
13277
|
+
delete(request?: {
|
|
12653
13278
|
/** V1 error format. */
|
|
12654
13279
|
"$.xgafv"?:
|
|
12655
13280
|
string;
|
|
@@ -12668,7 +13293,7 @@ declare namespace gapi.client {
|
|
|
12668
13293
|
/** 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. */
|
|
12669
13294
|
key?:
|
|
12670
13295
|
string;
|
|
12671
|
-
/** Required. The name of the Dataset
|
|
13296
|
+
/** Required. The resource name of the Dataset to delete. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
12672
13297
|
name:
|
|
12673
13298
|
string;
|
|
12674
13299
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -12686,11 +13311,173 @@ declare namespace gapi.client {
|
|
|
12686
13311
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12687
13312
|
uploadType?:
|
|
12688
13313
|
string;
|
|
12689
|
-
/** Request body */
|
|
12690
|
-
resource:
|
|
12691
|
-
GoogleCloudAiplatformV1beta1ImportDataRequest;
|
|
12692
13314
|
}): Request<GoogleLongrunningOperation>;
|
|
12693
|
-
|
|
13315
|
+
/** Exports data from a Dataset. */
|
|
13316
|
+
export(request: {
|
|
13317
|
+
/** V1 error format. */
|
|
13318
|
+
"$.xgafv"?:
|
|
13319
|
+
string;
|
|
13320
|
+
/** OAuth access token. */
|
|
13321
|
+
access_token?:
|
|
13322
|
+
string;
|
|
13323
|
+
/** Data format for response. */
|
|
13324
|
+
alt?:
|
|
13325
|
+
string;
|
|
13326
|
+
/** JSONP */
|
|
13327
|
+
callback?:
|
|
13328
|
+
string;
|
|
13329
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13330
|
+
fields?:
|
|
13331
|
+
string;
|
|
13332
|
+
/** 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. */
|
|
13333
|
+
key?:
|
|
13334
|
+
string;
|
|
13335
|
+
/** Required. The name of the Dataset resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
13336
|
+
name:
|
|
13337
|
+
string;
|
|
13338
|
+
/** OAuth 2.0 token for the current user. */
|
|
13339
|
+
oauth_token?:
|
|
13340
|
+
string;
|
|
13341
|
+
/** Returns response with indentations and line breaks. */
|
|
13342
|
+
prettyPrint?:
|
|
13343
|
+
boolean;
|
|
13344
|
+
/** 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. */
|
|
13345
|
+
quotaUser?:
|
|
13346
|
+
string;
|
|
13347
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13348
|
+
upload_protocol?:
|
|
13349
|
+
string;
|
|
13350
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13351
|
+
uploadType?:
|
|
13352
|
+
string;
|
|
13353
|
+
/** Request body */
|
|
13354
|
+
resource:
|
|
13355
|
+
GoogleCloudAiplatformV1beta1ExportDataRequest;
|
|
13356
|
+
}): Request<GoogleLongrunningOperation>;
|
|
13357
|
+
export(request: {
|
|
13358
|
+
/** V1 error format. */
|
|
13359
|
+
"$.xgafv"?:
|
|
13360
|
+
string;
|
|
13361
|
+
/** OAuth access token. */
|
|
13362
|
+
access_token?:
|
|
13363
|
+
string;
|
|
13364
|
+
/** Data format for response. */
|
|
13365
|
+
alt?:
|
|
13366
|
+
string;
|
|
13367
|
+
/** JSONP */
|
|
13368
|
+
callback?:
|
|
13369
|
+
string;
|
|
13370
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13371
|
+
fields?:
|
|
13372
|
+
string;
|
|
13373
|
+
/** 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. */
|
|
13374
|
+
key?:
|
|
13375
|
+
string;
|
|
13376
|
+
/** Required. The name of the Dataset resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
13377
|
+
name:
|
|
13378
|
+
string;
|
|
13379
|
+
/** OAuth 2.0 token for the current user. */
|
|
13380
|
+
oauth_token?:
|
|
13381
|
+
string;
|
|
13382
|
+
/** Returns response with indentations and line breaks. */
|
|
13383
|
+
prettyPrint?:
|
|
13384
|
+
boolean;
|
|
13385
|
+
/** 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. */
|
|
13386
|
+
quotaUser?:
|
|
13387
|
+
string;
|
|
13388
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13389
|
+
upload_protocol?:
|
|
13390
|
+
string;
|
|
13391
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13392
|
+
uploadType?:
|
|
13393
|
+
string;
|
|
13394
|
+
},
|
|
13395
|
+
body: GoogleCloudAiplatformV1beta1ExportDataRequest): Request<GoogleLongrunningOperation>;
|
|
13396
|
+
/** Gets a Dataset. */
|
|
13397
|
+
get(request?: {
|
|
13398
|
+
/** V1 error format. */
|
|
13399
|
+
"$.xgafv"?:
|
|
13400
|
+
string;
|
|
13401
|
+
/** OAuth access token. */
|
|
13402
|
+
access_token?:
|
|
13403
|
+
string;
|
|
13404
|
+
/** Data format for response. */
|
|
13405
|
+
alt?:
|
|
13406
|
+
string;
|
|
13407
|
+
/** JSONP */
|
|
13408
|
+
callback?:
|
|
13409
|
+
string;
|
|
13410
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13411
|
+
fields?:
|
|
13412
|
+
string;
|
|
13413
|
+
/** 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. */
|
|
13414
|
+
key?:
|
|
13415
|
+
string;
|
|
13416
|
+
/** Required. The name of the Dataset resource. */
|
|
13417
|
+
name:
|
|
13418
|
+
string;
|
|
13419
|
+
/** OAuth 2.0 token for the current user. */
|
|
13420
|
+
oauth_token?:
|
|
13421
|
+
string;
|
|
13422
|
+
/** Returns response with indentations and line breaks. */
|
|
13423
|
+
prettyPrint?:
|
|
13424
|
+
boolean;
|
|
13425
|
+
/** 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. */
|
|
13426
|
+
quotaUser?:
|
|
13427
|
+
string;
|
|
13428
|
+
/** Mask specifying which fields to read. */
|
|
13429
|
+
readMask?:
|
|
13430
|
+
string;
|
|
13431
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13432
|
+
upload_protocol?:
|
|
13433
|
+
string;
|
|
13434
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13435
|
+
uploadType?:
|
|
13436
|
+
string;
|
|
13437
|
+
}): Request<GoogleCloudAiplatformV1beta1Dataset>;
|
|
13438
|
+
/** Imports data into a Dataset. */
|
|
13439
|
+
import(request: {
|
|
13440
|
+
/** V1 error format. */
|
|
13441
|
+
"$.xgafv"?:
|
|
13442
|
+
string;
|
|
13443
|
+
/** OAuth access token. */
|
|
13444
|
+
access_token?:
|
|
13445
|
+
string;
|
|
13446
|
+
/** Data format for response. */
|
|
13447
|
+
alt?:
|
|
13448
|
+
string;
|
|
13449
|
+
/** JSONP */
|
|
13450
|
+
callback?:
|
|
13451
|
+
string;
|
|
13452
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
13453
|
+
fields?:
|
|
13454
|
+
string;
|
|
13455
|
+
/** 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. */
|
|
13456
|
+
key?:
|
|
13457
|
+
string;
|
|
13458
|
+
/** Required. The name of the Dataset resource. Format: `projects/{project}/locations/{location}/datasets/{dataset}` */
|
|
13459
|
+
name:
|
|
13460
|
+
string;
|
|
13461
|
+
/** OAuth 2.0 token for the current user. */
|
|
13462
|
+
oauth_token?:
|
|
13463
|
+
string;
|
|
13464
|
+
/** Returns response with indentations and line breaks. */
|
|
13465
|
+
prettyPrint?:
|
|
13466
|
+
boolean;
|
|
13467
|
+
/** 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. */
|
|
13468
|
+
quotaUser?:
|
|
13469
|
+
string;
|
|
13470
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13471
|
+
upload_protocol?:
|
|
13472
|
+
string;
|
|
13473
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
13474
|
+
uploadType?:
|
|
13475
|
+
string;
|
|
13476
|
+
/** Request body */
|
|
13477
|
+
resource:
|
|
13478
|
+
GoogleCloudAiplatformV1beta1ImportDataRequest;
|
|
13479
|
+
}): Request<GoogleLongrunningOperation>;
|
|
13480
|
+
import(request: {
|
|
12694
13481
|
/** V1 error format. */
|
|
12695
13482
|
"$.xgafv"?:
|
|
12696
13483
|
string;
|
|
@@ -12975,6 +13762,8 @@ declare namespace gapi.client {
|
|
|
12975
13762
|
AnnotationSpecsResource;
|
|
12976
13763
|
dataItems:
|
|
12977
13764
|
DataItemsResource;
|
|
13765
|
+
datasetVersions:
|
|
13766
|
+
DatasetVersionsResource;
|
|
12978
13767
|
operations:
|
|
12979
13768
|
OperationsResource;
|
|
12980
13769
|
savedQueries:
|
|
@@ -15913,14 +16702,98 @@ declare namespace gapi.client {
|
|
|
15913
16702
|
}): Request<GoogleLongrunningOperation>;
|
|
15914
16703
|
}
|
|
15915
16704
|
interface FeaturesResource {
|
|
15916
|
-
|
|
15917
|
-
|
|
15918
|
-
|
|
15919
|
-
|
|
15920
|
-
|
|
15921
|
-
|
|
15922
|
-
|
|
15923
|
-
|
|
16705
|
+
/** Creates a new Feature in a given FeatureGroup. */
|
|
16706
|
+
create(request: {
|
|
16707
|
+
/** V1 error format. */
|
|
16708
|
+
"$.xgafv"?:
|
|
16709
|
+
string;
|
|
16710
|
+
/** OAuth access token. */
|
|
16711
|
+
access_token?:
|
|
16712
|
+
string;
|
|
16713
|
+
/** Data format for response. */
|
|
16714
|
+
alt?:
|
|
16715
|
+
string;
|
|
16716
|
+
/** JSONP */
|
|
16717
|
+
callback?:
|
|
16718
|
+
string;
|
|
16719
|
+
/**
|
|
16720
|
+
* Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are
|
|
16721
|
+
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
|
|
16722
|
+
*/
|
|
16723
|
+
featureId?:
|
|
16724
|
+
string;
|
|
16725
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16726
|
+
fields?:
|
|
16727
|
+
string;
|
|
16728
|
+
/** 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. */
|
|
16729
|
+
key?:
|
|
16730
|
+
string;
|
|
16731
|
+
/** OAuth 2.0 token for the current user. */
|
|
16732
|
+
oauth_token?:
|
|
16733
|
+
string;
|
|
16734
|
+
parent:
|
|
16735
|
+
string;
|
|
16736
|
+
/** Returns response with indentations and line breaks. */
|
|
16737
|
+
prettyPrint?:
|
|
16738
|
+
boolean;
|
|
16739
|
+
/** 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. */
|
|
16740
|
+
quotaUser?:
|
|
16741
|
+
string;
|
|
16742
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16743
|
+
upload_protocol?:
|
|
16744
|
+
string;
|
|
16745
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16746
|
+
uploadType?:
|
|
16747
|
+
string;
|
|
16748
|
+
/** Request body */
|
|
16749
|
+
resource:
|
|
16750
|
+
GoogleCloudAiplatformV1beta1Feature;
|
|
16751
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16752
|
+
create(request: {
|
|
16753
|
+
/** V1 error format. */
|
|
16754
|
+
"$.xgafv"?:
|
|
16755
|
+
string;
|
|
16756
|
+
/** OAuth access token. */
|
|
16757
|
+
access_token?:
|
|
16758
|
+
string;
|
|
16759
|
+
/** Data format for response. */
|
|
16760
|
+
alt?:
|
|
16761
|
+
string;
|
|
16762
|
+
/** JSONP */
|
|
16763
|
+
callback?:
|
|
16764
|
+
string;
|
|
16765
|
+
/**
|
|
16766
|
+
* Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are
|
|
16767
|
+
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
|
|
16768
|
+
*/
|
|
16769
|
+
featureId?:
|
|
16770
|
+
string;
|
|
16771
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16772
|
+
fields?:
|
|
16773
|
+
string;
|
|
16774
|
+
/** 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. */
|
|
16775
|
+
key?:
|
|
16776
|
+
string;
|
|
16777
|
+
/** OAuth 2.0 token for the current user. */
|
|
16778
|
+
oauth_token?:
|
|
16779
|
+
string;
|
|
16780
|
+
parent:
|
|
16781
|
+
string;
|
|
16782
|
+
/** Returns response with indentations and line breaks. */
|
|
16783
|
+
prettyPrint?:
|
|
16784
|
+
boolean;
|
|
16785
|
+
/** 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. */
|
|
16786
|
+
quotaUser?:
|
|
16787
|
+
string;
|
|
16788
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16789
|
+
upload_protocol?:
|
|
16790
|
+
string;
|
|
16791
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16792
|
+
uploadType?:
|
|
16793
|
+
string;
|
|
16794
|
+
},
|
|
16795
|
+
body: GoogleCloudAiplatformV1beta1Feature): Request<GoogleLongrunningOperation>;
|
|
16796
|
+
/** Deletes a single Feature. */
|
|
15924
16797
|
delete(request?: {
|
|
15925
16798
|
/** V1 error format. */
|
|
15926
16799
|
"$.xgafv"?:
|
|
@@ -15940,7 +16813,10 @@ declare namespace gapi.client {
|
|
|
15940
16813
|
/** 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. */
|
|
15941
16814
|
key?:
|
|
15942
16815
|
string;
|
|
15943
|
-
/**
|
|
16816
|
+
/**
|
|
16817
|
+
* Required. The name of the Features to be deleted. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}`
|
|
16818
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}`
|
|
16819
|
+
*/
|
|
15944
16820
|
name:
|
|
15945
16821
|
string;
|
|
15946
16822
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -15958,8 +16834,8 @@ declare namespace gapi.client {
|
|
|
15958
16834
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15959
16835
|
uploadType?:
|
|
15960
16836
|
string;
|
|
15961
|
-
}): Request<
|
|
15962
|
-
/** Gets
|
|
16837
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16838
|
+
/** Gets details of a single Feature. */
|
|
15963
16839
|
get(request?: {
|
|
15964
16840
|
/** V1 error format. */
|
|
15965
16841
|
"$.xgafv"?:
|
|
@@ -15979,7 +16855,10 @@ declare namespace gapi.client {
|
|
|
15979
16855
|
/** 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. */
|
|
15980
16856
|
key?:
|
|
15981
16857
|
string;
|
|
15982
|
-
/**
|
|
16858
|
+
/**
|
|
16859
|
+
* Required. The name of the Feature resource. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
|
|
16860
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
|
|
16861
|
+
*/
|
|
15983
16862
|
name:
|
|
15984
16863
|
string;
|
|
15985
16864
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -15997,8 +16876,8 @@ declare namespace gapi.client {
|
|
|
15997
16876
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15998
16877
|
uploadType?:
|
|
15999
16878
|
string;
|
|
16000
|
-
}): Request<
|
|
16001
|
-
/** Lists
|
|
16879
|
+
}): Request<GoogleCloudAiplatformV1beta1Feature>;
|
|
16880
|
+
/** Lists Features in a given FeatureGroup. */
|
|
16002
16881
|
list(request?: {
|
|
16003
16882
|
/** V1 error format. */
|
|
16004
16883
|
"$.xgafv"?:
|
|
@@ -16015,44 +16894,69 @@ declare namespace gapi.client {
|
|
|
16015
16894
|
/** Selector specifying which fields to include in a partial response. */
|
|
16016
16895
|
fields?:
|
|
16017
16896
|
string;
|
|
16018
|
-
/**
|
|
16897
|
+
/**
|
|
16898
|
+
* Lists the Features that match the filter expression. The following filters are supported: * `value_type`: Supports = and != comparisons. * `create_time`: Supports =, !=, <, >,
|
|
16899
|
+
* >=, and <= comparisons. Values must be in RFC 3339 format. * `update_time`: Supports =, !=, <, >, >=, and <= comparisons. Values must be in RFC 3339 format. * `labels`: Supports
|
|
16900
|
+
* key-value equality as well as key presence. Examples: * `value_type = DOUBLE` --> Features whose type is DOUBLE. * `create_time > \"2020-01-31T15:30:00.000000Z\" OR update_time
|
|
16901
|
+
* > \"2020-01-31T15:30:00.000000Z\"` --> EntityTypes created or updated after 2020-01-31T15:30:00.000000Z. * `labels.active = yes AND labels.env = prod` --> Features having both
|
|
16902
|
+
* (active: yes) and (env: prod) labels. * `labels.env: *` --> Any Feature which has a label with 'env' as the key.
|
|
16903
|
+
*/
|
|
16019
16904
|
filter?:
|
|
16020
16905
|
string;
|
|
16021
16906
|
/** 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. */
|
|
16022
16907
|
key?:
|
|
16023
16908
|
string;
|
|
16024
|
-
/**
|
|
16025
|
-
|
|
16026
|
-
|
|
16909
|
+
/**
|
|
16910
|
+
* If set, return the most recent ListFeaturesRequest.latest_stats_count of stats for each Feature in response. Valid value is [0, 10]. If number of stats exists <
|
|
16911
|
+
* ListFeaturesRequest.latest_stats_count, return all existing stats.
|
|
16912
|
+
*/
|
|
16913
|
+
latestStatsCount?:
|
|
16914
|
+
number;
|
|
16027
16915
|
/** OAuth 2.0 token for the current user. */
|
|
16028
16916
|
oauth_token?:
|
|
16029
16917
|
string;
|
|
16030
|
-
/**
|
|
16918
|
+
/**
|
|
16919
|
+
* A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `feature_id` * `value_type` (Not
|
|
16920
|
+
* supported for FeatureRegistry Feature) * `create_time` * `update_time`
|
|
16921
|
+
*/
|
|
16922
|
+
orderBy?:
|
|
16923
|
+
string;
|
|
16924
|
+
/**
|
|
16925
|
+
* The maximum number of Features to return. The service may return fewer than this value. If unspecified, at most 1000 Features will be returned. The maximum value is 1000; any
|
|
16926
|
+
* value greater than 1000 will be coerced to 1000.
|
|
16927
|
+
*/
|
|
16031
16928
|
pageSize?:
|
|
16032
16929
|
number;
|
|
16033
|
-
/**
|
|
16930
|
+
/**
|
|
16931
|
+
* A page token, received from a previous FeaturestoreService.ListFeatures call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to
|
|
16932
|
+
* FeaturestoreService.ListFeatures must match the call that provided the page token.
|
|
16933
|
+
*/
|
|
16034
16934
|
pageToken?:
|
|
16035
16935
|
string;
|
|
16936
|
+
/**
|
|
16937
|
+
* Required. The resource name of the Location to list Features. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
|
|
16938
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
|
|
16939
|
+
*/
|
|
16940
|
+
parent:
|
|
16941
|
+
string;
|
|
16036
16942
|
/** Returns response with indentations and line breaks. */
|
|
16037
16943
|
prettyPrint?:
|
|
16038
16944
|
boolean;
|
|
16039
16945
|
/** 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. */
|
|
16040
16946
|
quotaUser?:
|
|
16041
16947
|
string;
|
|
16948
|
+
/** Mask specifying which fields to read. */
|
|
16949
|
+
readMask?:
|
|
16950
|
+
string;
|
|
16042
16951
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16043
16952
|
upload_protocol?:
|
|
16044
16953
|
string;
|
|
16045
16954
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16046
16955
|
uploadType?:
|
|
16047
16956
|
string;
|
|
16048
|
-
}): Request<
|
|
16049
|
-
/**
|
|
16050
|
-
|
|
16051
|
-
* 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
|
|
16052
|
-
* `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
|
|
16053
|
-
* an immediate response is no guarantee that the operation is done.
|
|
16054
|
-
*/
|
|
16055
|
-
wait(request?: {
|
|
16957
|
+
}): Request<GoogleCloudAiplatformV1beta1ListFeaturesResponse>;
|
|
16958
|
+
/** Updates the parameters of a single Feature. */
|
|
16959
|
+
patch(request: {
|
|
16056
16960
|
/** V1 error format. */
|
|
16057
16961
|
"$.xgafv"?:
|
|
16058
16962
|
string;
|
|
@@ -16071,7 +16975,11 @@ declare namespace gapi.client {
|
|
|
16071
16975
|
/** 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. */
|
|
16072
16976
|
key?:
|
|
16073
16977
|
string;
|
|
16074
|
-
/**
|
|
16978
|
+
/**
|
|
16979
|
+
* Immutable. Name of the Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}` The last part feature
|
|
16980
|
+
* is assigned by the client. The feature can be up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting with
|
|
16981
|
+
* a letter. The value will be unique given an entity type.
|
|
16982
|
+
*/
|
|
16075
16983
|
name:
|
|
16076
16984
|
string;
|
|
16077
16985
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -16084,10 +16992,11 @@ declare namespace gapi.client {
|
|
|
16084
16992
|
quotaUser?:
|
|
16085
16993
|
string;
|
|
16086
16994
|
/**
|
|
16087
|
-
*
|
|
16088
|
-
*
|
|
16995
|
+
* 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
|
|
16996
|
+
* 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.
|
|
16997
|
+
* Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring`
|
|
16089
16998
|
*/
|
|
16090
|
-
|
|
16999
|
+
updateMask?:
|
|
16091
17000
|
string;
|
|
16092
17001
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16093
17002
|
upload_protocol?:
|
|
@@ -16095,11 +17004,60 @@ declare namespace gapi.client {
|
|
|
16095
17004
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16096
17005
|
uploadType?:
|
|
16097
17006
|
string;
|
|
17007
|
+
/** Request body */
|
|
17008
|
+
resource:
|
|
17009
|
+
GoogleCloudAiplatformV1beta1Feature;
|
|
16098
17010
|
}): Request<GoogleLongrunningOperation>;
|
|
16099
|
-
|
|
16100
|
-
|
|
16101
|
-
|
|
16102
|
-
|
|
17011
|
+
patch(request: {
|
|
17012
|
+
/** V1 error format. */
|
|
17013
|
+
"$.xgafv"?:
|
|
17014
|
+
string;
|
|
17015
|
+
/** OAuth access token. */
|
|
17016
|
+
access_token?:
|
|
17017
|
+
string;
|
|
17018
|
+
/** Data format for response. */
|
|
17019
|
+
alt?:
|
|
17020
|
+
string;
|
|
17021
|
+
/** JSONP */
|
|
17022
|
+
callback?:
|
|
17023
|
+
string;
|
|
17024
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17025
|
+
fields?:
|
|
17026
|
+
string;
|
|
17027
|
+
/** 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. */
|
|
17028
|
+
key?:
|
|
17029
|
+
string;
|
|
17030
|
+
/**
|
|
17031
|
+
* Immutable. Name of the Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}` The last part feature
|
|
17032
|
+
* is assigned by the client. The feature can be up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting with
|
|
17033
|
+
* a letter. The value will be unique given an entity type.
|
|
17034
|
+
*/
|
|
17035
|
+
name:
|
|
17036
|
+
string;
|
|
17037
|
+
/** OAuth 2.0 token for the current user. */
|
|
17038
|
+
oauth_token?:
|
|
17039
|
+
string;
|
|
17040
|
+
/** Returns response with indentations and line breaks. */
|
|
17041
|
+
prettyPrint?:
|
|
17042
|
+
boolean;
|
|
17043
|
+
/** 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. */
|
|
17044
|
+
quotaUser?:
|
|
17045
|
+
string;
|
|
17046
|
+
/**
|
|
17047
|
+
* 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
|
|
17048
|
+
* 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.
|
|
17049
|
+
* Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring`
|
|
17050
|
+
*/
|
|
17051
|
+
updateMask?:
|
|
17052
|
+
string;
|
|
17053
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17054
|
+
upload_protocol?:
|
|
17055
|
+
string;
|
|
17056
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17057
|
+
uploadType?:
|
|
17058
|
+
string;
|
|
17059
|
+
},
|
|
17060
|
+
body: GoogleCloudAiplatformV1beta1Feature): Request<GoogleLongrunningOperation>;
|
|
16103
17061
|
operations:
|
|
16104
17062
|
OperationsResource;
|
|
16105
17063
|
}
|
|
@@ -16284,7 +17242,1215 @@ declare namespace gapi.client {
|
|
|
16284
17242
|
string;
|
|
16285
17243
|
}): Request<GoogleLongrunningOperation>;
|
|
16286
17244
|
}
|
|
17245
|
+
interface FeatureGroupsResource {
|
|
17246
|
+
/** Creates a new FeatureGroup in a given project and location. */
|
|
17247
|
+
create(request: {
|
|
17248
|
+
/** V1 error format. */
|
|
17249
|
+
"$.xgafv"?:
|
|
17250
|
+
string;
|
|
17251
|
+
/** OAuth access token. */
|
|
17252
|
+
access_token?:
|
|
17253
|
+
string;
|
|
17254
|
+
/** Data format for response. */
|
|
17255
|
+
alt?:
|
|
17256
|
+
string;
|
|
17257
|
+
/** JSONP */
|
|
17258
|
+
callback?:
|
|
17259
|
+
string;
|
|
17260
|
+
/**
|
|
17261
|
+
* Required. The ID to use for this FeatureGroup, which will become the final component of the FeatureGroup's resource name. This value may be up to 60 characters, and valid
|
|
17262
|
+
* characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
|
|
17263
|
+
*/
|
|
17264
|
+
featureGroupId?:
|
|
17265
|
+
string;
|
|
17266
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17267
|
+
fields?:
|
|
17268
|
+
string;
|
|
17269
|
+
/** 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. */
|
|
17270
|
+
key?:
|
|
17271
|
+
string;
|
|
17272
|
+
/** OAuth 2.0 token for the current user. */
|
|
17273
|
+
oauth_token?:
|
|
17274
|
+
string;
|
|
17275
|
+
/** Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}'` */
|
|
17276
|
+
parent:
|
|
17277
|
+
string;
|
|
17278
|
+
/** Returns response with indentations and line breaks. */
|
|
17279
|
+
prettyPrint?:
|
|
17280
|
+
boolean;
|
|
17281
|
+
/** 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. */
|
|
17282
|
+
quotaUser?:
|
|
17283
|
+
string;
|
|
17284
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17285
|
+
upload_protocol?:
|
|
17286
|
+
string;
|
|
17287
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17288
|
+
uploadType?:
|
|
17289
|
+
string;
|
|
17290
|
+
/** Request body */
|
|
17291
|
+
resource:
|
|
17292
|
+
GoogleCloudAiplatformV1beta1FeatureGroup;
|
|
17293
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17294
|
+
create(request: {
|
|
17295
|
+
/** V1 error format. */
|
|
17296
|
+
"$.xgafv"?:
|
|
17297
|
+
string;
|
|
17298
|
+
/** OAuth access token. */
|
|
17299
|
+
access_token?:
|
|
17300
|
+
string;
|
|
17301
|
+
/** Data format for response. */
|
|
17302
|
+
alt?:
|
|
17303
|
+
string;
|
|
17304
|
+
/** JSONP */
|
|
17305
|
+
callback?:
|
|
17306
|
+
string;
|
|
17307
|
+
/**
|
|
17308
|
+
* Required. The ID to use for this FeatureGroup, which will become the final component of the FeatureGroup's resource name. This value may be up to 60 characters, and valid
|
|
17309
|
+
* characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
|
|
17310
|
+
*/
|
|
17311
|
+
featureGroupId?:
|
|
17312
|
+
string;
|
|
17313
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17314
|
+
fields?:
|
|
17315
|
+
string;
|
|
17316
|
+
/** 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. */
|
|
17317
|
+
key?:
|
|
17318
|
+
string;
|
|
17319
|
+
/** OAuth 2.0 token for the current user. */
|
|
17320
|
+
oauth_token?:
|
|
17321
|
+
string;
|
|
17322
|
+
/** Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}'` */
|
|
17323
|
+
parent:
|
|
17324
|
+
string;
|
|
17325
|
+
/** Returns response with indentations and line breaks. */
|
|
17326
|
+
prettyPrint?:
|
|
17327
|
+
boolean;
|
|
17328
|
+
/** 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. */
|
|
17329
|
+
quotaUser?:
|
|
17330
|
+
string;
|
|
17331
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17332
|
+
upload_protocol?:
|
|
17333
|
+
string;
|
|
17334
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17335
|
+
uploadType?:
|
|
17336
|
+
string;
|
|
17337
|
+
},
|
|
17338
|
+
body: GoogleCloudAiplatformV1beta1FeatureGroup): Request<GoogleLongrunningOperation>;
|
|
17339
|
+
/** Deletes a single FeatureGroup. */
|
|
17340
|
+
delete(request?: {
|
|
17341
|
+
/** V1 error format. */
|
|
17342
|
+
"$.xgafv"?:
|
|
17343
|
+
string;
|
|
17344
|
+
/** OAuth access token. */
|
|
17345
|
+
access_token?:
|
|
17346
|
+
string;
|
|
17347
|
+
/** Data format for response. */
|
|
17348
|
+
alt?:
|
|
17349
|
+
string;
|
|
17350
|
+
/** JSONP */
|
|
17351
|
+
callback?:
|
|
17352
|
+
string;
|
|
17353
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17354
|
+
fields?:
|
|
17355
|
+
string;
|
|
17356
|
+
/** If set to true, any Features under this FeatureGroup will also be deleted. (Otherwise, the request will only work if the FeatureGroup has no Features.) */
|
|
17357
|
+
force?:
|
|
17358
|
+
boolean;
|
|
17359
|
+
/** 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. */
|
|
17360
|
+
key?:
|
|
17361
|
+
string;
|
|
17362
|
+
/** Required. The name of the FeatureGroup to be deleted. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}` */
|
|
17363
|
+
name:
|
|
17364
|
+
string;
|
|
17365
|
+
/** OAuth 2.0 token for the current user. */
|
|
17366
|
+
oauth_token?:
|
|
17367
|
+
string;
|
|
17368
|
+
/** Returns response with indentations and line breaks. */
|
|
17369
|
+
prettyPrint?:
|
|
17370
|
+
boolean;
|
|
17371
|
+
/** 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. */
|
|
17372
|
+
quotaUser?:
|
|
17373
|
+
string;
|
|
17374
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17375
|
+
upload_protocol?:
|
|
17376
|
+
string;
|
|
17377
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17378
|
+
uploadType?:
|
|
17379
|
+
string;
|
|
17380
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17381
|
+
/** Gets details of a single FeatureGroup. */
|
|
17382
|
+
get(request?: {
|
|
17383
|
+
/** V1 error format. */
|
|
17384
|
+
"$.xgafv"?:
|
|
17385
|
+
string;
|
|
17386
|
+
/** OAuth access token. */
|
|
17387
|
+
access_token?:
|
|
17388
|
+
string;
|
|
17389
|
+
/** Data format for response. */
|
|
17390
|
+
alt?:
|
|
17391
|
+
string;
|
|
17392
|
+
/** JSONP */
|
|
17393
|
+
callback?:
|
|
17394
|
+
string;
|
|
17395
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17396
|
+
fields?:
|
|
17397
|
+
string;
|
|
17398
|
+
/** 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. */
|
|
17399
|
+
key?:
|
|
17400
|
+
string;
|
|
17401
|
+
/** Required. The name of the FeatureGroup resource. */
|
|
17402
|
+
name:
|
|
17403
|
+
string;
|
|
17404
|
+
/** OAuth 2.0 token for the current user. */
|
|
17405
|
+
oauth_token?:
|
|
17406
|
+
string;
|
|
17407
|
+
/** Returns response with indentations and line breaks. */
|
|
17408
|
+
prettyPrint?:
|
|
17409
|
+
boolean;
|
|
17410
|
+
/** 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. */
|
|
17411
|
+
quotaUser?:
|
|
17412
|
+
string;
|
|
17413
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17414
|
+
upload_protocol?:
|
|
17415
|
+
string;
|
|
17416
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17417
|
+
uploadType?:
|
|
17418
|
+
string;
|
|
17419
|
+
}): Request<GoogleCloudAiplatformV1beta1FeatureGroup>;
|
|
17420
|
+
/** Lists FeatureGroups in a given project and location. */
|
|
17421
|
+
list(request?: {
|
|
17422
|
+
/** V1 error format. */
|
|
17423
|
+
"$.xgafv"?:
|
|
17424
|
+
string;
|
|
17425
|
+
/** OAuth access token. */
|
|
17426
|
+
access_token?:
|
|
17427
|
+
string;
|
|
17428
|
+
/** Data format for response. */
|
|
17429
|
+
alt?:
|
|
17430
|
+
string;
|
|
17431
|
+
/** JSONP */
|
|
17432
|
+
callback?:
|
|
17433
|
+
string;
|
|
17434
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17435
|
+
fields?:
|
|
17436
|
+
string;
|
|
17437
|
+
/**
|
|
17438
|
+
* Lists the FeatureGroups that match the filter expression. The following fields are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values
|
|
17439
|
+
* must be in RFC 3339 format. * `update_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values must be in RFC 3339 format. * `labels`: Supports key-value equality
|
|
17440
|
+
* and key presence. Examples: * `create_time > "2020-01-01" OR update_time > "2020-01-01"` FeatureGroups created or updated after 2020-01-01. * `labels.env = "prod"` FeatureGroups
|
|
17441
|
+
* with label "env" set to "prod".
|
|
17442
|
+
*/
|
|
17443
|
+
filter?:
|
|
17444
|
+
string;
|
|
17445
|
+
/** 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. */
|
|
17446
|
+
key?:
|
|
17447
|
+
string;
|
|
17448
|
+
/** OAuth 2.0 token for the current user. */
|
|
17449
|
+
oauth_token?:
|
|
17450
|
+
string;
|
|
17451
|
+
/** A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported Fields: * `create_time` * `update_time` */
|
|
17452
|
+
orderBy?:
|
|
17453
|
+
string;
|
|
17454
|
+
/**
|
|
17455
|
+
* 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
|
|
17456
|
+
* 100; any value greater than 100 will be coerced to 100.
|
|
17457
|
+
*/
|
|
17458
|
+
pageSize?:
|
|
17459
|
+
number;
|
|
17460
|
+
/**
|
|
17461
|
+
* A page token, received from a previous FeatureGroupAdminService.ListFeatureGroups call. Provide this to retrieve the subsequent page. When paginating, all other parameters
|
|
17462
|
+
* provided to FeatureGroupAdminService.ListFeatureGroups must match the call that provided the page token.
|
|
17463
|
+
*/
|
|
17464
|
+
pageToken?:
|
|
17465
|
+
string;
|
|
17466
|
+
/** Required. The resource name of the Location to list FeatureGroups. Format: `projects/{project}/locations/{location}` */
|
|
17467
|
+
parent:
|
|
17468
|
+
string;
|
|
17469
|
+
/** Returns response with indentations and line breaks. */
|
|
17470
|
+
prettyPrint?:
|
|
17471
|
+
boolean;
|
|
17472
|
+
/** 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. */
|
|
17473
|
+
quotaUser?:
|
|
17474
|
+
string;
|
|
17475
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17476
|
+
upload_protocol?:
|
|
17477
|
+
string;
|
|
17478
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17479
|
+
uploadType?:
|
|
17480
|
+
string;
|
|
17481
|
+
}): Request<GoogleCloudAiplatformV1beta1ListFeatureGroupsResponse>;
|
|
17482
|
+
/** Updates the parameters of a single FeatureGroup. */
|
|
17483
|
+
patch(request: {
|
|
17484
|
+
/** V1 error format. */
|
|
17485
|
+
"$.xgafv"?:
|
|
17486
|
+
string;
|
|
17487
|
+
/** OAuth access token. */
|
|
17488
|
+
access_token?:
|
|
17489
|
+
string;
|
|
17490
|
+
/** Data format for response. */
|
|
17491
|
+
alt?:
|
|
17492
|
+
string;
|
|
17493
|
+
/** JSONP */
|
|
17494
|
+
callback?:
|
|
17495
|
+
string;
|
|
17496
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17497
|
+
fields?:
|
|
17498
|
+
string;
|
|
17499
|
+
/** 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. */
|
|
17500
|
+
key?:
|
|
17501
|
+
string;
|
|
17502
|
+
/** Output only. Name of the FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
|
|
17503
|
+
name:
|
|
17504
|
+
string;
|
|
17505
|
+
/** OAuth 2.0 token for the current user. */
|
|
17506
|
+
oauth_token?:
|
|
17507
|
+
string;
|
|
17508
|
+
/** Returns response with indentations and line breaks. */
|
|
17509
|
+
prettyPrint?:
|
|
17510
|
+
boolean;
|
|
17511
|
+
/** 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. */
|
|
17512
|
+
quotaUser?:
|
|
17513
|
+
string;
|
|
17514
|
+
/**
|
|
17515
|
+
* 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
|
|
17516
|
+
* 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
|
|
17517
|
+
* overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels`
|
|
17518
|
+
*/
|
|
17519
|
+
updateMask?:
|
|
17520
|
+
string;
|
|
17521
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17522
|
+
upload_protocol?:
|
|
17523
|
+
string;
|
|
17524
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17525
|
+
uploadType?:
|
|
17526
|
+
string;
|
|
17527
|
+
/** Request body */
|
|
17528
|
+
resource:
|
|
17529
|
+
GoogleCloudAiplatformV1beta1FeatureGroup;
|
|
17530
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17531
|
+
patch(request: {
|
|
17532
|
+
/** V1 error format. */
|
|
17533
|
+
"$.xgafv"?:
|
|
17534
|
+
string;
|
|
17535
|
+
/** OAuth access token. */
|
|
17536
|
+
access_token?:
|
|
17537
|
+
string;
|
|
17538
|
+
/** Data format for response. */
|
|
17539
|
+
alt?:
|
|
17540
|
+
string;
|
|
17541
|
+
/** JSONP */
|
|
17542
|
+
callback?:
|
|
17543
|
+
string;
|
|
17544
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17545
|
+
fields?:
|
|
17546
|
+
string;
|
|
17547
|
+
/** 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. */
|
|
17548
|
+
key?:
|
|
17549
|
+
string;
|
|
17550
|
+
/** Output only. Name of the FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
|
|
17551
|
+
name:
|
|
17552
|
+
string;
|
|
17553
|
+
/** OAuth 2.0 token for the current user. */
|
|
17554
|
+
oauth_token?:
|
|
17555
|
+
string;
|
|
17556
|
+
/** Returns response with indentations and line breaks. */
|
|
17557
|
+
prettyPrint?:
|
|
17558
|
+
boolean;
|
|
17559
|
+
/** 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. */
|
|
17560
|
+
quotaUser?:
|
|
17561
|
+
string;
|
|
17562
|
+
/**
|
|
17563
|
+
* 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
|
|
17564
|
+
* 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
|
|
17565
|
+
* overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels`
|
|
17566
|
+
*/
|
|
17567
|
+
updateMask?:
|
|
17568
|
+
string;
|
|
17569
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17570
|
+
upload_protocol?:
|
|
17571
|
+
string;
|
|
17572
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17573
|
+
uploadType?:
|
|
17574
|
+
string;
|
|
17575
|
+
},
|
|
17576
|
+
body: GoogleCloudAiplatformV1beta1FeatureGroup): Request<GoogleLongrunningOperation>;
|
|
17577
|
+
features:
|
|
17578
|
+
FeaturesResource;
|
|
17579
|
+
operations:
|
|
17580
|
+
OperationsResource;
|
|
17581
|
+
}
|
|
17582
|
+
interface FeatureViewSyncsResource {
|
|
17583
|
+
/** Gets details of a single FeatureViewSync. */
|
|
17584
|
+
get(request?: {
|
|
17585
|
+
/** V1 error format. */
|
|
17586
|
+
"$.xgafv"?:
|
|
17587
|
+
string;
|
|
17588
|
+
/** OAuth access token. */
|
|
17589
|
+
access_token?:
|
|
17590
|
+
string;
|
|
17591
|
+
/** Data format for response. */
|
|
17592
|
+
alt?:
|
|
17593
|
+
string;
|
|
17594
|
+
/** JSONP */
|
|
17595
|
+
callback?:
|
|
17596
|
+
string;
|
|
17597
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17598
|
+
fields?:
|
|
17599
|
+
string;
|
|
17600
|
+
/** 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. */
|
|
17601
|
+
key?:
|
|
17602
|
+
string;
|
|
17603
|
+
/**
|
|
17604
|
+
* Required. The name of the FeatureViewSync resource. Format:
|
|
17605
|
+
* `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}`
|
|
17606
|
+
*/
|
|
17607
|
+
name:
|
|
17608
|
+
string;
|
|
17609
|
+
/** OAuth 2.0 token for the current user. */
|
|
17610
|
+
oauth_token?:
|
|
17611
|
+
string;
|
|
17612
|
+
/** Returns response with indentations and line breaks. */
|
|
17613
|
+
prettyPrint?:
|
|
17614
|
+
boolean;
|
|
17615
|
+
/** 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. */
|
|
17616
|
+
quotaUser?:
|
|
17617
|
+
string;
|
|
17618
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17619
|
+
upload_protocol?:
|
|
17620
|
+
string;
|
|
17621
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17622
|
+
uploadType?:
|
|
17623
|
+
string;
|
|
17624
|
+
}): Request<GoogleCloudAiplatformV1beta1FeatureViewSync>;
|
|
17625
|
+
/** Lists FeatureViewSyncs in a given FeatureView. */
|
|
17626
|
+
list(request?: {
|
|
17627
|
+
/** V1 error format. */
|
|
17628
|
+
"$.xgafv"?:
|
|
17629
|
+
string;
|
|
17630
|
+
/** OAuth access token. */
|
|
17631
|
+
access_token?:
|
|
17632
|
+
string;
|
|
17633
|
+
/** Data format for response. */
|
|
17634
|
+
alt?:
|
|
17635
|
+
string;
|
|
17636
|
+
/** JSONP */
|
|
17637
|
+
callback?:
|
|
17638
|
+
string;
|
|
17639
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17640
|
+
fields?:
|
|
17641
|
+
string;
|
|
17642
|
+
/**
|
|
17643
|
+
* Lists the FeatureViewSyncs that match the filter expression. The following filters are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `>=`, and `<=` comparisons.
|
|
17644
|
+
* Values must be in RFC 3339 format. Examples: * `create_time > \"2020-01-31T15:30:00.000000Z\"` --> FeatureViewSyncs created after 2020-01-31T15:30:00.000000Z.
|
|
17645
|
+
*/
|
|
17646
|
+
filter?:
|
|
17647
|
+
string;
|
|
17648
|
+
/** 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. */
|
|
17649
|
+
key?:
|
|
17650
|
+
string;
|
|
17651
|
+
/** OAuth 2.0 token for the current user. */
|
|
17652
|
+
oauth_token?:
|
|
17653
|
+
string;
|
|
17654
|
+
/** A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `create_time` */
|
|
17655
|
+
orderBy?:
|
|
17656
|
+
string;
|
|
17657
|
+
/**
|
|
17658
|
+
* The maximum number of FeatureViewSyncs to return. The service may return fewer than this value. If unspecified, at most 1000 FeatureViewSyncs will be returned. The maximum value
|
|
17659
|
+
* is 1000; any value greater than 1000 will be coerced to 1000.
|
|
17660
|
+
*/
|
|
17661
|
+
pageSize?:
|
|
17662
|
+
number;
|
|
17663
|
+
/**
|
|
17664
|
+
* A page token, received from a previous FeatureOnlineStoreAdminService.ListFeatureViewSyncs call. Provide this to retrieve the subsequent page. When paginating, all other
|
|
17665
|
+
* parameters provided to FeatureOnlineStoreAdminService.ListFeatureViewSyncs must match the call that provided the page token.
|
|
17666
|
+
*/
|
|
17667
|
+
pageToken?:
|
|
17668
|
+
string;
|
|
17669
|
+
/**
|
|
17670
|
+
* Required. The resource name of the FeatureView to list FeatureViewSyncs. Format:
|
|
17671
|
+
* `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}`
|
|
17672
|
+
*/
|
|
17673
|
+
parent:
|
|
17674
|
+
string;
|
|
17675
|
+
/** Returns response with indentations and line breaks. */
|
|
17676
|
+
prettyPrint?:
|
|
17677
|
+
boolean;
|
|
17678
|
+
/** 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. */
|
|
17679
|
+
quotaUser?:
|
|
17680
|
+
string;
|
|
17681
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17682
|
+
upload_protocol?:
|
|
17683
|
+
string;
|
|
17684
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17685
|
+
uploadType?:
|
|
17686
|
+
string;
|
|
17687
|
+
}): Request<GoogleCloudAiplatformV1beta1ListFeatureViewSyncsResponse>;
|
|
17688
|
+
}
|
|
17689
|
+
interface OperationsResource {
|
|
17690
|
+
/**
|
|
17691
|
+
* 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
|
|
17692
|
+
* support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
|
|
17693
|
+
*/
|
|
17694
|
+
delete(request?: {
|
|
17695
|
+
/** V1 error format. */
|
|
17696
|
+
"$.xgafv"?:
|
|
17697
|
+
string;
|
|
17698
|
+
/** OAuth access token. */
|
|
17699
|
+
access_token?:
|
|
17700
|
+
string;
|
|
17701
|
+
/** Data format for response. */
|
|
17702
|
+
alt?:
|
|
17703
|
+
string;
|
|
17704
|
+
/** JSONP */
|
|
17705
|
+
callback?:
|
|
17706
|
+
string;
|
|
17707
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17708
|
+
fields?:
|
|
17709
|
+
string;
|
|
17710
|
+
/** 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. */
|
|
17711
|
+
key?:
|
|
17712
|
+
string;
|
|
17713
|
+
/** The name of the operation resource to be deleted. */
|
|
17714
|
+
name:
|
|
17715
|
+
string;
|
|
17716
|
+
/** OAuth 2.0 token for the current user. */
|
|
17717
|
+
oauth_token?:
|
|
17718
|
+
string;
|
|
17719
|
+
/** Returns response with indentations and line breaks. */
|
|
17720
|
+
prettyPrint?:
|
|
17721
|
+
boolean;
|
|
17722
|
+
/** 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. */
|
|
17723
|
+
quotaUser?:
|
|
17724
|
+
string;
|
|
17725
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17726
|
+
upload_protocol?:
|
|
17727
|
+
string;
|
|
17728
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17729
|
+
uploadType?:
|
|
17730
|
+
string;
|
|
17731
|
+
}): Request<{}>;
|
|
17732
|
+
/** 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. */
|
|
17733
|
+
get(request?: {
|
|
17734
|
+
/** V1 error format. */
|
|
17735
|
+
"$.xgafv"?:
|
|
17736
|
+
string;
|
|
17737
|
+
/** OAuth access token. */
|
|
17738
|
+
access_token?:
|
|
17739
|
+
string;
|
|
17740
|
+
/** Data format for response. */
|
|
17741
|
+
alt?:
|
|
17742
|
+
string;
|
|
17743
|
+
/** JSONP */
|
|
17744
|
+
callback?:
|
|
17745
|
+
string;
|
|
17746
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17747
|
+
fields?:
|
|
17748
|
+
string;
|
|
17749
|
+
/** 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. */
|
|
17750
|
+
key?:
|
|
17751
|
+
string;
|
|
17752
|
+
/** The name of the operation resource. */
|
|
17753
|
+
name:
|
|
17754
|
+
string;
|
|
17755
|
+
/** OAuth 2.0 token for the current user. */
|
|
17756
|
+
oauth_token?:
|
|
17757
|
+
string;
|
|
17758
|
+
/** Returns response with indentations and line breaks. */
|
|
17759
|
+
prettyPrint?:
|
|
17760
|
+
boolean;
|
|
17761
|
+
/** 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. */
|
|
17762
|
+
quotaUser?:
|
|
17763
|
+
string;
|
|
17764
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17765
|
+
upload_protocol?:
|
|
17766
|
+
string;
|
|
17767
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17768
|
+
uploadType?:
|
|
17769
|
+
string;
|
|
17770
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17771
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
17772
|
+
list(request?: {
|
|
17773
|
+
/** V1 error format. */
|
|
17774
|
+
"$.xgafv"?:
|
|
17775
|
+
string;
|
|
17776
|
+
/** OAuth access token. */
|
|
17777
|
+
access_token?:
|
|
17778
|
+
string;
|
|
17779
|
+
/** Data format for response. */
|
|
17780
|
+
alt?:
|
|
17781
|
+
string;
|
|
17782
|
+
/** JSONP */
|
|
17783
|
+
callback?:
|
|
17784
|
+
string;
|
|
17785
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17786
|
+
fields?:
|
|
17787
|
+
string;
|
|
17788
|
+
/** The standard list filter. */
|
|
17789
|
+
filter?:
|
|
17790
|
+
string;
|
|
17791
|
+
/** 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. */
|
|
17792
|
+
key?:
|
|
17793
|
+
string;
|
|
17794
|
+
/** The name of the operation's parent resource. */
|
|
17795
|
+
name:
|
|
17796
|
+
string;
|
|
17797
|
+
/** OAuth 2.0 token for the current user. */
|
|
17798
|
+
oauth_token?:
|
|
17799
|
+
string;
|
|
17800
|
+
/** The standard list page size. */
|
|
17801
|
+
pageSize?:
|
|
17802
|
+
number;
|
|
17803
|
+
/** The standard list page token. */
|
|
17804
|
+
pageToken?:
|
|
17805
|
+
string;
|
|
17806
|
+
/** Returns response with indentations and line breaks. */
|
|
17807
|
+
prettyPrint?:
|
|
17808
|
+
boolean;
|
|
17809
|
+
/** 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. */
|
|
17810
|
+
quotaUser?:
|
|
17811
|
+
string;
|
|
17812
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17813
|
+
upload_protocol?:
|
|
17814
|
+
string;
|
|
17815
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17816
|
+
uploadType?:
|
|
17817
|
+
string;
|
|
17818
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
17819
|
+
/**
|
|
17820
|
+
* 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
|
|
17821
|
+
* 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
|
|
17822
|
+
* `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
|
|
17823
|
+
* an immediate response is no guarantee that the operation is done.
|
|
17824
|
+
*/
|
|
17825
|
+
wait(request?: {
|
|
17826
|
+
/** V1 error format. */
|
|
17827
|
+
"$.xgafv"?:
|
|
17828
|
+
string;
|
|
17829
|
+
/** OAuth access token. */
|
|
17830
|
+
access_token?:
|
|
17831
|
+
string;
|
|
17832
|
+
/** Data format for response. */
|
|
17833
|
+
alt?:
|
|
17834
|
+
string;
|
|
17835
|
+
/** JSONP */
|
|
17836
|
+
callback?:
|
|
17837
|
+
string;
|
|
17838
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17839
|
+
fields?:
|
|
17840
|
+
string;
|
|
17841
|
+
/** 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. */
|
|
17842
|
+
key?:
|
|
17843
|
+
string;
|
|
17844
|
+
/** The name of the operation resource to wait on. */
|
|
17845
|
+
name:
|
|
17846
|
+
string;
|
|
17847
|
+
/** OAuth 2.0 token for the current user. */
|
|
17848
|
+
oauth_token?:
|
|
17849
|
+
string;
|
|
17850
|
+
/** Returns response with indentations and line breaks. */
|
|
17851
|
+
prettyPrint?:
|
|
17852
|
+
boolean;
|
|
17853
|
+
/** 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. */
|
|
17854
|
+
quotaUser?:
|
|
17855
|
+
string;
|
|
17856
|
+
/**
|
|
17857
|
+
* 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
|
|
17858
|
+
* specified, the shorter one will be used.
|
|
17859
|
+
*/
|
|
17860
|
+
timeout?:
|
|
17861
|
+
string;
|
|
17862
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17863
|
+
upload_protocol?:
|
|
17864
|
+
string;
|
|
17865
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17866
|
+
uploadType?:
|
|
17867
|
+
string;
|
|
17868
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17869
|
+
}
|
|
16287
17870
|
interface FeatureViewsResource {
|
|
17871
|
+
/** Creates a new FeatureView in a given FeatureOnlineStore. */
|
|
17872
|
+
create(request: {
|
|
17873
|
+
/** V1 error format. */
|
|
17874
|
+
"$.xgafv"?:
|
|
17875
|
+
string;
|
|
17876
|
+
/** OAuth access token. */
|
|
17877
|
+
access_token?:
|
|
17878
|
+
string;
|
|
17879
|
+
/** Data format for response. */
|
|
17880
|
+
alt?:
|
|
17881
|
+
string;
|
|
17882
|
+
/** JSONP */
|
|
17883
|
+
callback?:
|
|
17884
|
+
string;
|
|
17885
|
+
/**
|
|
17886
|
+
* Required. The ID to use for the FeatureView, which will become the final component of the FeatureView's resource name. This value may be up to 60 characters, and valid
|
|
17887
|
+
* characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within a FeatureOnlineStore.
|
|
17888
|
+
*/
|
|
17889
|
+
featureViewId?:
|
|
17890
|
+
string;
|
|
17891
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17892
|
+
fields?:
|
|
17893
|
+
string;
|
|
17894
|
+
/** 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. */
|
|
17895
|
+
key?:
|
|
17896
|
+
string;
|
|
17897
|
+
/** OAuth 2.0 token for the current user. */
|
|
17898
|
+
oauth_token?:
|
|
17899
|
+
string;
|
|
17900
|
+
/** Required. The resource name of the FeatureOnlineStore to create FeatureViews. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}` */
|
|
17901
|
+
parent:
|
|
17902
|
+
string;
|
|
17903
|
+
/** Returns response with indentations and line breaks. */
|
|
17904
|
+
prettyPrint?:
|
|
17905
|
+
boolean;
|
|
17906
|
+
/** 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. */
|
|
17907
|
+
quotaUser?:
|
|
17908
|
+
string;
|
|
17909
|
+
/** Immutable. If set to true, one on demand sync will be run immediately, regardless whether the FeatureView.sync_config is configured or not. */
|
|
17910
|
+
runSyncImmediately?:
|
|
17911
|
+
boolean;
|
|
17912
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17913
|
+
upload_protocol?:
|
|
17914
|
+
string;
|
|
17915
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17916
|
+
uploadType?:
|
|
17917
|
+
string;
|
|
17918
|
+
/** Request body */
|
|
17919
|
+
resource:
|
|
17920
|
+
GoogleCloudAiplatformV1beta1FeatureView;
|
|
17921
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17922
|
+
create(request: {
|
|
17923
|
+
/** V1 error format. */
|
|
17924
|
+
"$.xgafv"?:
|
|
17925
|
+
string;
|
|
17926
|
+
/** OAuth access token. */
|
|
17927
|
+
access_token?:
|
|
17928
|
+
string;
|
|
17929
|
+
/** Data format for response. */
|
|
17930
|
+
alt?:
|
|
17931
|
+
string;
|
|
17932
|
+
/** JSONP */
|
|
17933
|
+
callback?:
|
|
17934
|
+
string;
|
|
17935
|
+
/**
|
|
17936
|
+
* Required. The ID to use for the FeatureView, which will become the final component of the FeatureView's resource name. This value may be up to 60 characters, and valid
|
|
17937
|
+
* characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within a FeatureOnlineStore.
|
|
17938
|
+
*/
|
|
17939
|
+
featureViewId?:
|
|
17940
|
+
string;
|
|
17941
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17942
|
+
fields?:
|
|
17943
|
+
string;
|
|
17944
|
+
/** 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. */
|
|
17945
|
+
key?:
|
|
17946
|
+
string;
|
|
17947
|
+
/** OAuth 2.0 token for the current user. */
|
|
17948
|
+
oauth_token?:
|
|
17949
|
+
string;
|
|
17950
|
+
/** Required. The resource name of the FeatureOnlineStore to create FeatureViews. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}` */
|
|
17951
|
+
parent:
|
|
17952
|
+
string;
|
|
17953
|
+
/** Returns response with indentations and line breaks. */
|
|
17954
|
+
prettyPrint?:
|
|
17955
|
+
boolean;
|
|
17956
|
+
/** 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. */
|
|
17957
|
+
quotaUser?:
|
|
17958
|
+
string;
|
|
17959
|
+
/** Immutable. If set to true, one on demand sync will be run immediately, regardless whether the FeatureView.sync_config is configured or not. */
|
|
17960
|
+
runSyncImmediately?:
|
|
17961
|
+
boolean;
|
|
17962
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17963
|
+
upload_protocol?:
|
|
17964
|
+
string;
|
|
17965
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17966
|
+
uploadType?:
|
|
17967
|
+
string;
|
|
17968
|
+
},
|
|
17969
|
+
body: GoogleCloudAiplatformV1beta1FeatureView): Request<GoogleLongrunningOperation>;
|
|
17970
|
+
/** Deletes a single FeatureView. */
|
|
17971
|
+
delete(request?: {
|
|
17972
|
+
/** V1 error format. */
|
|
17973
|
+
"$.xgafv"?:
|
|
17974
|
+
string;
|
|
17975
|
+
/** OAuth access token. */
|
|
17976
|
+
access_token?:
|
|
17977
|
+
string;
|
|
17978
|
+
/** Data format for response. */
|
|
17979
|
+
alt?:
|
|
17980
|
+
string;
|
|
17981
|
+
/** JSONP */
|
|
17982
|
+
callback?:
|
|
17983
|
+
string;
|
|
17984
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17985
|
+
fields?:
|
|
17986
|
+
string;
|
|
17987
|
+
/** 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. */
|
|
17988
|
+
key?:
|
|
17989
|
+
string;
|
|
17990
|
+
/** Required. The name of the FeatureView to be deleted. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
|
|
17991
|
+
name:
|
|
17992
|
+
string;
|
|
17993
|
+
/** OAuth 2.0 token for the current user. */
|
|
17994
|
+
oauth_token?:
|
|
17995
|
+
string;
|
|
17996
|
+
/** Returns response with indentations and line breaks. */
|
|
17997
|
+
prettyPrint?:
|
|
17998
|
+
boolean;
|
|
17999
|
+
/** 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. */
|
|
18000
|
+
quotaUser?:
|
|
18001
|
+
string;
|
|
18002
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18003
|
+
upload_protocol?:
|
|
18004
|
+
string;
|
|
18005
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18006
|
+
uploadType?:
|
|
18007
|
+
string;
|
|
18008
|
+
}): Request<GoogleLongrunningOperation>;
|
|
18009
|
+
/** Fetch feature values under a FeatureView. */
|
|
18010
|
+
fetchFeatureValues(request: {
|
|
18011
|
+
/** V1 error format. */
|
|
18012
|
+
"$.xgafv"?:
|
|
18013
|
+
string;
|
|
18014
|
+
/** OAuth access token. */
|
|
18015
|
+
access_token?:
|
|
18016
|
+
string;
|
|
18017
|
+
/** Data format for response. */
|
|
18018
|
+
alt?:
|
|
18019
|
+
string;
|
|
18020
|
+
/** JSONP */
|
|
18021
|
+
callback?:
|
|
18022
|
+
string;
|
|
18023
|
+
/** Required. FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
18024
|
+
featureView:
|
|
18025
|
+
string;
|
|
18026
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18027
|
+
fields?:
|
|
18028
|
+
string;
|
|
18029
|
+
/** 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. */
|
|
18030
|
+
key?:
|
|
18031
|
+
string;
|
|
18032
|
+
/** OAuth 2.0 token for the current user. */
|
|
18033
|
+
oauth_token?:
|
|
18034
|
+
string;
|
|
18035
|
+
/** Returns response with indentations and line breaks. */
|
|
18036
|
+
prettyPrint?:
|
|
18037
|
+
boolean;
|
|
18038
|
+
/** 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. */
|
|
18039
|
+
quotaUser?:
|
|
18040
|
+
string;
|
|
18041
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18042
|
+
upload_protocol?:
|
|
18043
|
+
string;
|
|
18044
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18045
|
+
uploadType?:
|
|
18046
|
+
string;
|
|
18047
|
+
/** Request body */
|
|
18048
|
+
resource:
|
|
18049
|
+
GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest;
|
|
18050
|
+
}): Request<GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse>;
|
|
18051
|
+
fetchFeatureValues(request: {
|
|
18052
|
+
/** V1 error format. */
|
|
18053
|
+
"$.xgafv"?:
|
|
18054
|
+
string;
|
|
18055
|
+
/** OAuth access token. */
|
|
18056
|
+
access_token?:
|
|
18057
|
+
string;
|
|
18058
|
+
/** Data format for response. */
|
|
18059
|
+
alt?:
|
|
18060
|
+
string;
|
|
18061
|
+
/** JSONP */
|
|
18062
|
+
callback?:
|
|
18063
|
+
string;
|
|
18064
|
+
/** Required. FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
18065
|
+
featureView:
|
|
18066
|
+
string;
|
|
18067
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18068
|
+
fields?:
|
|
18069
|
+
string;
|
|
18070
|
+
/** 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. */
|
|
18071
|
+
key?:
|
|
18072
|
+
string;
|
|
18073
|
+
/** OAuth 2.0 token for the current user. */
|
|
18074
|
+
oauth_token?:
|
|
18075
|
+
string;
|
|
18076
|
+
/** Returns response with indentations and line breaks. */
|
|
18077
|
+
prettyPrint?:
|
|
18078
|
+
boolean;
|
|
18079
|
+
/** 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. */
|
|
18080
|
+
quotaUser?:
|
|
18081
|
+
string;
|
|
18082
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18083
|
+
upload_protocol?:
|
|
18084
|
+
string;
|
|
18085
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18086
|
+
uploadType?:
|
|
18087
|
+
string;
|
|
18088
|
+
},
|
|
18089
|
+
body: GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest): Request<GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse>;
|
|
18090
|
+
/** Gets details of a single FeatureView. */
|
|
18091
|
+
get(request?: {
|
|
18092
|
+
/** V1 error format. */
|
|
18093
|
+
"$.xgafv"?:
|
|
18094
|
+
string;
|
|
18095
|
+
/** OAuth access token. */
|
|
18096
|
+
access_token?:
|
|
18097
|
+
string;
|
|
18098
|
+
/** Data format for response. */
|
|
18099
|
+
alt?:
|
|
18100
|
+
string;
|
|
18101
|
+
/** JSONP */
|
|
18102
|
+
callback?:
|
|
18103
|
+
string;
|
|
18104
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18105
|
+
fields?:
|
|
18106
|
+
string;
|
|
18107
|
+
/** 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. */
|
|
18108
|
+
key?:
|
|
18109
|
+
string;
|
|
18110
|
+
/** Required. The name of the FeatureView resource. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
|
|
18111
|
+
name:
|
|
18112
|
+
string;
|
|
18113
|
+
/** OAuth 2.0 token for the current user. */
|
|
18114
|
+
oauth_token?:
|
|
18115
|
+
string;
|
|
18116
|
+
/** Returns response with indentations and line breaks. */
|
|
18117
|
+
prettyPrint?:
|
|
18118
|
+
boolean;
|
|
18119
|
+
/** 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. */
|
|
18120
|
+
quotaUser?:
|
|
18121
|
+
string;
|
|
18122
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18123
|
+
upload_protocol?:
|
|
18124
|
+
string;
|
|
18125
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18126
|
+
uploadType?:
|
|
18127
|
+
string;
|
|
18128
|
+
}): Request<GoogleCloudAiplatformV1beta1FeatureView>;
|
|
18129
|
+
/** Lists FeatureViews in a given FeatureOnlineStore. */
|
|
18130
|
+
list(request?: {
|
|
18131
|
+
/** V1 error format. */
|
|
18132
|
+
"$.xgafv"?:
|
|
18133
|
+
string;
|
|
18134
|
+
/** OAuth access token. */
|
|
18135
|
+
access_token?:
|
|
18136
|
+
string;
|
|
18137
|
+
/** Data format for response. */
|
|
18138
|
+
alt?:
|
|
18139
|
+
string;
|
|
18140
|
+
/** JSONP */
|
|
18141
|
+
callback?:
|
|
18142
|
+
string;
|
|
18143
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18144
|
+
fields?:
|
|
18145
|
+
string;
|
|
18146
|
+
/**
|
|
18147
|
+
* Lists the FeatureViews that match the filter expression. The following filters are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `>=`, and `<=` comparisons. Values
|
|
18148
|
+
* must be in RFC 3339 format. * `update_time`: Supports `=`, `!=`, `<`, `>`, `>=`, and `<=` comparisons. Values must be in RFC 3339 format. * `labels`: Supports key-value equality
|
|
18149
|
+
* as well as key presence. Examples: * `create_time > \"2020-01-31T15:30:00.000000Z\" OR update_time > \"2020-01-31T15:30:00.000000Z\"` --> FeatureViews created or updated after
|
|
18150
|
+
* 2020-01-31T15:30:00.000000Z. * `labels.active = yes AND labels.env = prod` --> FeatureViews having both (active: yes) and (env: prod) labels. * `labels.env: *` --> Any
|
|
18151
|
+
* FeatureView which has a label with 'env' as the key.
|
|
18152
|
+
*/
|
|
18153
|
+
filter?:
|
|
18154
|
+
string;
|
|
18155
|
+
/** 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. */
|
|
18156
|
+
key?:
|
|
18157
|
+
string;
|
|
18158
|
+
/** OAuth 2.0 token for the current user. */
|
|
18159
|
+
oauth_token?:
|
|
18160
|
+
string;
|
|
18161
|
+
/**
|
|
18162
|
+
* A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `feature_view_id` * `create_time` *
|
|
18163
|
+
* `update_time`
|
|
18164
|
+
*/
|
|
18165
|
+
orderBy?:
|
|
18166
|
+
string;
|
|
18167
|
+
/**
|
|
18168
|
+
* The maximum number of FeatureViews to return. The service may return fewer than this value. If unspecified, at most 1000 FeatureViews will be returned. The maximum value is
|
|
18169
|
+
* 1000; any value greater than 1000 will be coerced to 1000.
|
|
18170
|
+
*/
|
|
18171
|
+
pageSize?:
|
|
18172
|
+
number;
|
|
18173
|
+
/**
|
|
18174
|
+
* A page token, received from a previous FeatureOnlineStoreAdminService.ListFeatureViews call. Provide this to retrieve the subsequent page. When paginating, all other parameters
|
|
18175
|
+
* provided to FeatureOnlineStoreAdminService.ListFeatureViews must match the call that provided the page token.
|
|
18176
|
+
*/
|
|
18177
|
+
pageToken?:
|
|
18178
|
+
string;
|
|
18179
|
+
/** Required. The resource name of the FeatureOnlineStore to list FeatureViews. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}` */
|
|
18180
|
+
parent:
|
|
18181
|
+
string;
|
|
18182
|
+
/** Returns response with indentations and line breaks. */
|
|
18183
|
+
prettyPrint?:
|
|
18184
|
+
boolean;
|
|
18185
|
+
/** 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. */
|
|
18186
|
+
quotaUser?:
|
|
18187
|
+
string;
|
|
18188
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18189
|
+
upload_protocol?:
|
|
18190
|
+
string;
|
|
18191
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18192
|
+
uploadType?:
|
|
18193
|
+
string;
|
|
18194
|
+
}): Request<GoogleCloudAiplatformV1beta1ListFeatureViewsResponse>;
|
|
18195
|
+
/** Updates the parameters of a single FeatureView. */
|
|
18196
|
+
patch(request: {
|
|
18197
|
+
/** V1 error format. */
|
|
18198
|
+
"$.xgafv"?:
|
|
18199
|
+
string;
|
|
18200
|
+
/** OAuth access token. */
|
|
18201
|
+
access_token?:
|
|
18202
|
+
string;
|
|
18203
|
+
/** Data format for response. */
|
|
18204
|
+
alt?:
|
|
18205
|
+
string;
|
|
18206
|
+
/** JSONP */
|
|
18207
|
+
callback?:
|
|
18208
|
+
string;
|
|
18209
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18210
|
+
fields?:
|
|
18211
|
+
string;
|
|
18212
|
+
/** 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. */
|
|
18213
|
+
key?:
|
|
18214
|
+
string;
|
|
18215
|
+
/** Output only. Name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
|
|
18216
|
+
name:
|
|
18217
|
+
string;
|
|
18218
|
+
/** OAuth 2.0 token for the current user. */
|
|
18219
|
+
oauth_token?:
|
|
18220
|
+
string;
|
|
18221
|
+
/** Returns response with indentations and line breaks. */
|
|
18222
|
+
prettyPrint?:
|
|
18223
|
+
boolean;
|
|
18224
|
+
/** 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. */
|
|
18225
|
+
quotaUser?:
|
|
18226
|
+
string;
|
|
18227
|
+
/**
|
|
18228
|
+
* 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
|
|
18229
|
+
* 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
|
|
18230
|
+
* overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels`
|
|
18231
|
+
*/
|
|
18232
|
+
updateMask?:
|
|
18233
|
+
string;
|
|
18234
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18235
|
+
upload_protocol?:
|
|
18236
|
+
string;
|
|
18237
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18238
|
+
uploadType?:
|
|
18239
|
+
string;
|
|
18240
|
+
/** Request body */
|
|
18241
|
+
resource:
|
|
18242
|
+
GoogleCloudAiplatformV1beta1FeatureView;
|
|
18243
|
+
}): Request<GoogleLongrunningOperation>;
|
|
18244
|
+
patch(request: {
|
|
18245
|
+
/** V1 error format. */
|
|
18246
|
+
"$.xgafv"?:
|
|
18247
|
+
string;
|
|
18248
|
+
/** OAuth access token. */
|
|
18249
|
+
access_token?:
|
|
18250
|
+
string;
|
|
18251
|
+
/** Data format for response. */
|
|
18252
|
+
alt?:
|
|
18253
|
+
string;
|
|
18254
|
+
/** JSONP */
|
|
18255
|
+
callback?:
|
|
18256
|
+
string;
|
|
18257
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18258
|
+
fields?:
|
|
18259
|
+
string;
|
|
18260
|
+
/** 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. */
|
|
18261
|
+
key?:
|
|
18262
|
+
string;
|
|
18263
|
+
/** Output only. Name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
|
|
18264
|
+
name:
|
|
18265
|
+
string;
|
|
18266
|
+
/** OAuth 2.0 token for the current user. */
|
|
18267
|
+
oauth_token?:
|
|
18268
|
+
string;
|
|
18269
|
+
/** Returns response with indentations and line breaks. */
|
|
18270
|
+
prettyPrint?:
|
|
18271
|
+
boolean;
|
|
18272
|
+
/** 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. */
|
|
18273
|
+
quotaUser?:
|
|
18274
|
+
string;
|
|
18275
|
+
/**
|
|
18276
|
+
* 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
|
|
18277
|
+
* 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
|
|
18278
|
+
* overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels`
|
|
18279
|
+
*/
|
|
18280
|
+
updateMask?:
|
|
18281
|
+
string;
|
|
18282
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18283
|
+
upload_protocol?:
|
|
18284
|
+
string;
|
|
18285
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18286
|
+
uploadType?:
|
|
18287
|
+
string;
|
|
18288
|
+
},
|
|
18289
|
+
body: GoogleCloudAiplatformV1beta1FeatureView): Request<GoogleLongrunningOperation>;
|
|
18290
|
+
/** Search the nearest entities under a FeatureView. Search only works for indexable feature view; if a feature view isn't indexable, returns Invalid argument response. */
|
|
18291
|
+
searchNearestEntities(request: {
|
|
18292
|
+
/** V1 error format. */
|
|
18293
|
+
"$.xgafv"?:
|
|
18294
|
+
string;
|
|
18295
|
+
/** OAuth access token. */
|
|
18296
|
+
access_token?:
|
|
18297
|
+
string;
|
|
18298
|
+
/** Data format for response. */
|
|
18299
|
+
alt?:
|
|
18300
|
+
string;
|
|
18301
|
+
/** JSONP */
|
|
18302
|
+
callback?:
|
|
18303
|
+
string;
|
|
18304
|
+
/** Required. FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
18305
|
+
featureView:
|
|
18306
|
+
string;
|
|
18307
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18308
|
+
fields?:
|
|
18309
|
+
string;
|
|
18310
|
+
/** 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. */
|
|
18311
|
+
key?:
|
|
18312
|
+
string;
|
|
18313
|
+
/** OAuth 2.0 token for the current user. */
|
|
18314
|
+
oauth_token?:
|
|
18315
|
+
string;
|
|
18316
|
+
/** Returns response with indentations and line breaks. */
|
|
18317
|
+
prettyPrint?:
|
|
18318
|
+
boolean;
|
|
18319
|
+
/** 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. */
|
|
18320
|
+
quotaUser?:
|
|
18321
|
+
string;
|
|
18322
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18323
|
+
upload_protocol?:
|
|
18324
|
+
string;
|
|
18325
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18326
|
+
uploadType?:
|
|
18327
|
+
string;
|
|
18328
|
+
/** Request body */
|
|
18329
|
+
resource:
|
|
18330
|
+
GoogleCloudAiplatformV1beta1SearchNearestEntitiesRequest;
|
|
18331
|
+
}): Request<GoogleCloudAiplatformV1beta1SearchNearestEntitiesResponse>;
|
|
18332
|
+
searchNearestEntities(request: {
|
|
18333
|
+
/** V1 error format. */
|
|
18334
|
+
"$.xgafv"?:
|
|
18335
|
+
string;
|
|
18336
|
+
/** OAuth access token. */
|
|
18337
|
+
access_token?:
|
|
18338
|
+
string;
|
|
18339
|
+
/** Data format for response. */
|
|
18340
|
+
alt?:
|
|
18341
|
+
string;
|
|
18342
|
+
/** JSONP */
|
|
18343
|
+
callback?:
|
|
18344
|
+
string;
|
|
18345
|
+
/** Required. FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
18346
|
+
featureView:
|
|
18347
|
+
string;
|
|
18348
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18349
|
+
fields?:
|
|
18350
|
+
string;
|
|
18351
|
+
/** 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. */
|
|
18352
|
+
key?:
|
|
18353
|
+
string;
|
|
18354
|
+
/** OAuth 2.0 token for the current user. */
|
|
18355
|
+
oauth_token?:
|
|
18356
|
+
string;
|
|
18357
|
+
/** Returns response with indentations and line breaks. */
|
|
18358
|
+
prettyPrint?:
|
|
18359
|
+
boolean;
|
|
18360
|
+
/** 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. */
|
|
18361
|
+
quotaUser?:
|
|
18362
|
+
string;
|
|
18363
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18364
|
+
upload_protocol?:
|
|
18365
|
+
string;
|
|
18366
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18367
|
+
uploadType?:
|
|
18368
|
+
string;
|
|
18369
|
+
},
|
|
18370
|
+
body: GoogleCloudAiplatformV1beta1SearchNearestEntitiesRequest): Request<GoogleCloudAiplatformV1beta1SearchNearestEntitiesResponse>;
|
|
18371
|
+
/** Triggers on-demand sync for the FeatureView. */
|
|
18372
|
+
sync(request: {
|
|
18373
|
+
/** V1 error format. */
|
|
18374
|
+
"$.xgafv"?:
|
|
18375
|
+
string;
|
|
18376
|
+
/** OAuth access token. */
|
|
18377
|
+
access_token?:
|
|
18378
|
+
string;
|
|
18379
|
+
/** Data format for response. */
|
|
18380
|
+
alt?:
|
|
18381
|
+
string;
|
|
18382
|
+
/** JSONP */
|
|
18383
|
+
callback?:
|
|
18384
|
+
string;
|
|
18385
|
+
/** Required. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
|
|
18386
|
+
featureView:
|
|
18387
|
+
string;
|
|
18388
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18389
|
+
fields?:
|
|
18390
|
+
string;
|
|
18391
|
+
/** 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. */
|
|
18392
|
+
key?:
|
|
18393
|
+
string;
|
|
18394
|
+
/** OAuth 2.0 token for the current user. */
|
|
18395
|
+
oauth_token?:
|
|
18396
|
+
string;
|
|
18397
|
+
/** Returns response with indentations and line breaks. */
|
|
18398
|
+
prettyPrint?:
|
|
18399
|
+
boolean;
|
|
18400
|
+
/** 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. */
|
|
18401
|
+
quotaUser?:
|
|
18402
|
+
string;
|
|
18403
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18404
|
+
upload_protocol?:
|
|
18405
|
+
string;
|
|
18406
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18407
|
+
uploadType?:
|
|
18408
|
+
string;
|
|
18409
|
+
/** Request body */
|
|
18410
|
+
resource:
|
|
18411
|
+
GoogleCloudAiplatformV1beta1SyncFeatureViewRequest;
|
|
18412
|
+
}): Request<GoogleCloudAiplatformV1beta1SyncFeatureViewResponse>;
|
|
18413
|
+
sync(request: {
|
|
18414
|
+
/** V1 error format. */
|
|
18415
|
+
"$.xgafv"?:
|
|
18416
|
+
string;
|
|
18417
|
+
/** OAuth access token. */
|
|
18418
|
+
access_token?:
|
|
18419
|
+
string;
|
|
18420
|
+
/** Data format for response. */
|
|
18421
|
+
alt?:
|
|
18422
|
+
string;
|
|
18423
|
+
/** JSONP */
|
|
18424
|
+
callback?:
|
|
18425
|
+
string;
|
|
18426
|
+
/** Required. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
|
|
18427
|
+
featureView:
|
|
18428
|
+
string;
|
|
18429
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18430
|
+
fields?:
|
|
18431
|
+
string;
|
|
18432
|
+
/** 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. */
|
|
18433
|
+
key?:
|
|
18434
|
+
string;
|
|
18435
|
+
/** OAuth 2.0 token for the current user. */
|
|
18436
|
+
oauth_token?:
|
|
18437
|
+
string;
|
|
18438
|
+
/** Returns response with indentations and line breaks. */
|
|
18439
|
+
prettyPrint?:
|
|
18440
|
+
boolean;
|
|
18441
|
+
/** 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. */
|
|
18442
|
+
quotaUser?:
|
|
18443
|
+
string;
|
|
18444
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18445
|
+
upload_protocol?:
|
|
18446
|
+
string;
|
|
18447
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18448
|
+
uploadType?:
|
|
18449
|
+
string;
|
|
18450
|
+
},
|
|
18451
|
+
body: GoogleCloudAiplatformV1beta1SyncFeatureViewRequest): Request<GoogleCloudAiplatformV1beta1SyncFeatureViewResponse>;
|
|
18452
|
+
featureViewSyncs:
|
|
18453
|
+
FeatureViewSyncsResource;
|
|
16288
18454
|
operations:
|
|
16289
18455
|
OperationsResource;
|
|
16290
18456
|
}
|
|
@@ -16470,6 +18636,340 @@ declare namespace gapi.client {
|
|
|
16470
18636
|
}): Request<GoogleLongrunningOperation>;
|
|
16471
18637
|
}
|
|
16472
18638
|
interface FeatureOnlineStoresResource {
|
|
18639
|
+
/** Creates a new FeatureOnlineStore in a given project and location. */
|
|
18640
|
+
create(request: {
|
|
18641
|
+
/** V1 error format. */
|
|
18642
|
+
"$.xgafv"?:
|
|
18643
|
+
string;
|
|
18644
|
+
/** OAuth access token. */
|
|
18645
|
+
access_token?:
|
|
18646
|
+
string;
|
|
18647
|
+
/** Data format for response. */
|
|
18648
|
+
alt?:
|
|
18649
|
+
string;
|
|
18650
|
+
/** JSONP */
|
|
18651
|
+
callback?:
|
|
18652
|
+
string;
|
|
18653
|
+
/**
|
|
18654
|
+
* Required. The ID to use for this FeatureOnlineStore, which will become the final component of the FeatureOnlineStore's resource name. This value may be up to 60 characters, and
|
|
18655
|
+
* valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
|
|
18656
|
+
*/
|
|
18657
|
+
featureOnlineStoreId?:
|
|
18658
|
+
string;
|
|
18659
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18660
|
+
fields?:
|
|
18661
|
+
string;
|
|
18662
|
+
/** 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. */
|
|
18663
|
+
key?:
|
|
18664
|
+
string;
|
|
18665
|
+
/** OAuth 2.0 token for the current user. */
|
|
18666
|
+
oauth_token?:
|
|
18667
|
+
string;
|
|
18668
|
+
/** Required. The resource name of the Location to create FeatureOnlineStores. Format: `projects/{project}/locations/{location}'` */
|
|
18669
|
+
parent:
|
|
18670
|
+
string;
|
|
18671
|
+
/** Returns response with indentations and line breaks. */
|
|
18672
|
+
prettyPrint?:
|
|
18673
|
+
boolean;
|
|
18674
|
+
/** 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. */
|
|
18675
|
+
quotaUser?:
|
|
18676
|
+
string;
|
|
18677
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18678
|
+
upload_protocol?:
|
|
18679
|
+
string;
|
|
18680
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18681
|
+
uploadType?:
|
|
18682
|
+
string;
|
|
18683
|
+
/** Request body */
|
|
18684
|
+
resource:
|
|
18685
|
+
GoogleCloudAiplatformV1beta1FeatureOnlineStore;
|
|
18686
|
+
}): Request<GoogleLongrunningOperation>;
|
|
18687
|
+
create(request: {
|
|
18688
|
+
/** V1 error format. */
|
|
18689
|
+
"$.xgafv"?:
|
|
18690
|
+
string;
|
|
18691
|
+
/** OAuth access token. */
|
|
18692
|
+
access_token?:
|
|
18693
|
+
string;
|
|
18694
|
+
/** Data format for response. */
|
|
18695
|
+
alt?:
|
|
18696
|
+
string;
|
|
18697
|
+
/** JSONP */
|
|
18698
|
+
callback?:
|
|
18699
|
+
string;
|
|
18700
|
+
/**
|
|
18701
|
+
* Required. The ID to use for this FeatureOnlineStore, which will become the final component of the FeatureOnlineStore's resource name. This value may be up to 60 characters, and
|
|
18702
|
+
* valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
|
|
18703
|
+
*/
|
|
18704
|
+
featureOnlineStoreId?:
|
|
18705
|
+
string;
|
|
18706
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18707
|
+
fields?:
|
|
18708
|
+
string;
|
|
18709
|
+
/** 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. */
|
|
18710
|
+
key?:
|
|
18711
|
+
string;
|
|
18712
|
+
/** OAuth 2.0 token for the current user. */
|
|
18713
|
+
oauth_token?:
|
|
18714
|
+
string;
|
|
18715
|
+
/** Required. The resource name of the Location to create FeatureOnlineStores. Format: `projects/{project}/locations/{location}'` */
|
|
18716
|
+
parent:
|
|
18717
|
+
string;
|
|
18718
|
+
/** Returns response with indentations and line breaks. */
|
|
18719
|
+
prettyPrint?:
|
|
18720
|
+
boolean;
|
|
18721
|
+
/** 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. */
|
|
18722
|
+
quotaUser?:
|
|
18723
|
+
string;
|
|
18724
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18725
|
+
upload_protocol?:
|
|
18726
|
+
string;
|
|
18727
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18728
|
+
uploadType?:
|
|
18729
|
+
string;
|
|
18730
|
+
},
|
|
18731
|
+
body: GoogleCloudAiplatformV1beta1FeatureOnlineStore): Request<GoogleLongrunningOperation>;
|
|
18732
|
+
/** Deletes a single FeatureOnlineStore. The FeatureOnlineStore must not contain any FeatureViews. */
|
|
18733
|
+
delete(request?: {
|
|
18734
|
+
/** V1 error format. */
|
|
18735
|
+
"$.xgafv"?:
|
|
18736
|
+
string;
|
|
18737
|
+
/** OAuth access token. */
|
|
18738
|
+
access_token?:
|
|
18739
|
+
string;
|
|
18740
|
+
/** Data format for response. */
|
|
18741
|
+
alt?:
|
|
18742
|
+
string;
|
|
18743
|
+
/** JSONP */
|
|
18744
|
+
callback?:
|
|
18745
|
+
string;
|
|
18746
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18747
|
+
fields?:
|
|
18748
|
+
string;
|
|
18749
|
+
/**
|
|
18750
|
+
* If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted. (Otherwise, the request will only work if the FeatureOnlineStore has no
|
|
18751
|
+
* FeatureViews.)
|
|
18752
|
+
*/
|
|
18753
|
+
force?:
|
|
18754
|
+
boolean;
|
|
18755
|
+
/** 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. */
|
|
18756
|
+
key?:
|
|
18757
|
+
string;
|
|
18758
|
+
/** Required. The name of the FeatureOnlineStore to be deleted. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}` */
|
|
18759
|
+
name:
|
|
18760
|
+
string;
|
|
18761
|
+
/** OAuth 2.0 token for the current user. */
|
|
18762
|
+
oauth_token?:
|
|
18763
|
+
string;
|
|
18764
|
+
/** Returns response with indentations and line breaks. */
|
|
18765
|
+
prettyPrint?:
|
|
18766
|
+
boolean;
|
|
18767
|
+
/** 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. */
|
|
18768
|
+
quotaUser?:
|
|
18769
|
+
string;
|
|
18770
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18771
|
+
upload_protocol?:
|
|
18772
|
+
string;
|
|
18773
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18774
|
+
uploadType?:
|
|
18775
|
+
string;
|
|
18776
|
+
}): Request<GoogleLongrunningOperation>;
|
|
18777
|
+
/** Gets details of a single FeatureOnlineStore. */
|
|
18778
|
+
get(request?: {
|
|
18779
|
+
/** V1 error format. */
|
|
18780
|
+
"$.xgafv"?:
|
|
18781
|
+
string;
|
|
18782
|
+
/** OAuth access token. */
|
|
18783
|
+
access_token?:
|
|
18784
|
+
string;
|
|
18785
|
+
/** Data format for response. */
|
|
18786
|
+
alt?:
|
|
18787
|
+
string;
|
|
18788
|
+
/** JSONP */
|
|
18789
|
+
callback?:
|
|
18790
|
+
string;
|
|
18791
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18792
|
+
fields?:
|
|
18793
|
+
string;
|
|
18794
|
+
/** 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. */
|
|
18795
|
+
key?:
|
|
18796
|
+
string;
|
|
18797
|
+
/** Required. The name of the FeatureOnlineStore resource. */
|
|
18798
|
+
name:
|
|
18799
|
+
string;
|
|
18800
|
+
/** OAuth 2.0 token for the current user. */
|
|
18801
|
+
oauth_token?:
|
|
18802
|
+
string;
|
|
18803
|
+
/** Returns response with indentations and line breaks. */
|
|
18804
|
+
prettyPrint?:
|
|
18805
|
+
boolean;
|
|
18806
|
+
/** 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. */
|
|
18807
|
+
quotaUser?:
|
|
18808
|
+
string;
|
|
18809
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18810
|
+
upload_protocol?:
|
|
18811
|
+
string;
|
|
18812
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18813
|
+
uploadType?:
|
|
18814
|
+
string;
|
|
18815
|
+
}): Request<GoogleCloudAiplatformV1beta1FeatureOnlineStore>;
|
|
18816
|
+
/** Lists FeatureOnlineStores in a given project and location. */
|
|
18817
|
+
list(request?: {
|
|
18818
|
+
/** V1 error format. */
|
|
18819
|
+
"$.xgafv"?:
|
|
18820
|
+
string;
|
|
18821
|
+
/** OAuth access token. */
|
|
18822
|
+
access_token?:
|
|
18823
|
+
string;
|
|
18824
|
+
/** Data format for response. */
|
|
18825
|
+
alt?:
|
|
18826
|
+
string;
|
|
18827
|
+
/** JSONP */
|
|
18828
|
+
callback?:
|
|
18829
|
+
string;
|
|
18830
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18831
|
+
fields?:
|
|
18832
|
+
string;
|
|
18833
|
+
/**
|
|
18834
|
+
* Lists the FeatureOnlineStores that match the filter expression. The following fields are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons.
|
|
18835
|
+
* Values must be in RFC 3339 format. * `update_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values must be in RFC 3339 format. * `labels`: Supports key-value
|
|
18836
|
+
* equality and key presence. Examples: * `create_time > "2020-01-01" OR update_time > "2020-01-01"` FeatureOnlineStores created or updated after 2020-01-01. * `labels.env =
|
|
18837
|
+
* "prod"` FeatureOnlineStores with label "env" set to "prod".
|
|
18838
|
+
*/
|
|
18839
|
+
filter?:
|
|
18840
|
+
string;
|
|
18841
|
+
/** 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. */
|
|
18842
|
+
key?:
|
|
18843
|
+
string;
|
|
18844
|
+
/** OAuth 2.0 token for the current user. */
|
|
18845
|
+
oauth_token?:
|
|
18846
|
+
string;
|
|
18847
|
+
/** A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported Fields: * `create_time` * `update_time` */
|
|
18848
|
+
orderBy?:
|
|
18849
|
+
string;
|
|
18850
|
+
/**
|
|
18851
|
+
* The maximum number of FeatureOnlineStores to return. The service may return fewer than this value. If unspecified, at most 100 FeatureOnlineStores will be returned. The maximum
|
|
18852
|
+
* value is 100; any value greater than 100 will be coerced to 100.
|
|
18853
|
+
*/
|
|
18854
|
+
pageSize?:
|
|
18855
|
+
number;
|
|
18856
|
+
/**
|
|
18857
|
+
* A page token, received from a previous FeatureOnlineStoreAdminService.ListFeatureOnlineStores call. Provide this to retrieve the subsequent page. When paginating, all other
|
|
18858
|
+
* parameters provided to FeatureOnlineStoreAdminService.ListFeatureOnlineStores must match the call that provided the page token.
|
|
18859
|
+
*/
|
|
18860
|
+
pageToken?:
|
|
18861
|
+
string;
|
|
18862
|
+
/** Required. The resource name of the Location to list FeatureOnlineStores. Format: `projects/{project}/locations/{location}` */
|
|
18863
|
+
parent:
|
|
18864
|
+
string;
|
|
18865
|
+
/** Returns response with indentations and line breaks. */
|
|
18866
|
+
prettyPrint?:
|
|
18867
|
+
boolean;
|
|
18868
|
+
/** 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. */
|
|
18869
|
+
quotaUser?:
|
|
18870
|
+
string;
|
|
18871
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18872
|
+
upload_protocol?:
|
|
18873
|
+
string;
|
|
18874
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18875
|
+
uploadType?:
|
|
18876
|
+
string;
|
|
18877
|
+
}): Request<GoogleCloudAiplatformV1beta1ListFeatureOnlineStoresResponse>;
|
|
18878
|
+
/** Updates the parameters of a single FeatureOnlineStore. */
|
|
18879
|
+
patch(request: {
|
|
18880
|
+
/** V1 error format. */
|
|
18881
|
+
"$.xgafv"?:
|
|
18882
|
+
string;
|
|
18883
|
+
/** OAuth access token. */
|
|
18884
|
+
access_token?:
|
|
18885
|
+
string;
|
|
18886
|
+
/** Data format for response. */
|
|
18887
|
+
alt?:
|
|
18888
|
+
string;
|
|
18889
|
+
/** JSONP */
|
|
18890
|
+
callback?:
|
|
18891
|
+
string;
|
|
18892
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18893
|
+
fields?:
|
|
18894
|
+
string;
|
|
18895
|
+
/** 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. */
|
|
18896
|
+
key?:
|
|
18897
|
+
string;
|
|
18898
|
+
/** Output only. Name of the FeatureOnlineStore. Format: `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}` */
|
|
18899
|
+
name:
|
|
18900
|
+
string;
|
|
18901
|
+
/** OAuth 2.0 token for the current user. */
|
|
18902
|
+
oauth_token?:
|
|
18903
|
+
string;
|
|
18904
|
+
/** Returns response with indentations and line breaks. */
|
|
18905
|
+
prettyPrint?:
|
|
18906
|
+
boolean;
|
|
18907
|
+
/** 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. */
|
|
18908
|
+
quotaUser?:
|
|
18909
|
+
string;
|
|
18910
|
+
/**
|
|
18911
|
+
* 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
|
|
18912
|
+
* 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
|
|
18913
|
+
* be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `big_query_source` * `labels` * `sync_config`
|
|
18914
|
+
*/
|
|
18915
|
+
updateMask?:
|
|
18916
|
+
string;
|
|
18917
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18918
|
+
upload_protocol?:
|
|
18919
|
+
string;
|
|
18920
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18921
|
+
uploadType?:
|
|
18922
|
+
string;
|
|
18923
|
+
/** Request body */
|
|
18924
|
+
resource:
|
|
18925
|
+
GoogleCloudAiplatformV1beta1FeatureOnlineStore;
|
|
18926
|
+
}): Request<GoogleLongrunningOperation>;
|
|
18927
|
+
patch(request: {
|
|
18928
|
+
/** V1 error format. */
|
|
18929
|
+
"$.xgafv"?:
|
|
18930
|
+
string;
|
|
18931
|
+
/** OAuth access token. */
|
|
18932
|
+
access_token?:
|
|
18933
|
+
string;
|
|
18934
|
+
/** Data format for response. */
|
|
18935
|
+
alt?:
|
|
18936
|
+
string;
|
|
18937
|
+
/** JSONP */
|
|
18938
|
+
callback?:
|
|
18939
|
+
string;
|
|
18940
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
18941
|
+
fields?:
|
|
18942
|
+
string;
|
|
18943
|
+
/** 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. */
|
|
18944
|
+
key?:
|
|
18945
|
+
string;
|
|
18946
|
+
/** Output only. Name of the FeatureOnlineStore. Format: `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}` */
|
|
18947
|
+
name:
|
|
18948
|
+
string;
|
|
18949
|
+
/** OAuth 2.0 token for the current user. */
|
|
18950
|
+
oauth_token?:
|
|
18951
|
+
string;
|
|
18952
|
+
/** Returns response with indentations and line breaks. */
|
|
18953
|
+
prettyPrint?:
|
|
18954
|
+
boolean;
|
|
18955
|
+
/** 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. */
|
|
18956
|
+
quotaUser?:
|
|
18957
|
+
string;
|
|
18958
|
+
/**
|
|
18959
|
+
* 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
|
|
18960
|
+
* 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
|
|
18961
|
+
* be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `big_query_source` * `labels` * `sync_config`
|
|
18962
|
+
*/
|
|
18963
|
+
updateMask?:
|
|
18964
|
+
string;
|
|
18965
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18966
|
+
upload_protocol?:
|
|
18967
|
+
string;
|
|
18968
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
18969
|
+
uploadType?:
|
|
18970
|
+
string;
|
|
18971
|
+
},
|
|
18972
|
+
body: GoogleCloudAiplatformV1beta1FeatureOnlineStore): Request<GoogleLongrunningOperation>;
|
|
16473
18973
|
featureViews:
|
|
16474
18974
|
FeatureViewsResource;
|
|
16475
18975
|
operations:
|
|
@@ -16804,7 +19304,7 @@ declare namespace gapi.client {
|
|
|
16804
19304
|
string;
|
|
16805
19305
|
/**
|
|
16806
19306
|
* Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are
|
|
16807
|
-
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType
|
|
19307
|
+
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
|
|
16808
19308
|
*/
|
|
16809
19309
|
featureId?:
|
|
16810
19310
|
string;
|
|
@@ -16817,7 +19317,6 @@ declare namespace gapi.client {
|
|
|
16817
19317
|
/** OAuth 2.0 token for the current user. */
|
|
16818
19318
|
oauth_token?:
|
|
16819
19319
|
string;
|
|
16820
|
-
/** Required. The resource name of the EntityType to create a Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` */
|
|
16821
19320
|
parent:
|
|
16822
19321
|
string;
|
|
16823
19322
|
/** Returns response with indentations and line breaks. */
|
|
@@ -16851,7 +19350,7 @@ declare namespace gapi.client {
|
|
|
16851
19350
|
string;
|
|
16852
19351
|
/**
|
|
16853
19352
|
* Required. The ID to use for the Feature, which will become the final component of the Feature's resource name. This value may be up to 128 characters, and valid characters are
|
|
16854
|
-
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType
|
|
19353
|
+
* `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
|
|
16855
19354
|
*/
|
|
16856
19355
|
featureId?:
|
|
16857
19356
|
string;
|
|
@@ -16864,7 +19363,6 @@ declare namespace gapi.client {
|
|
|
16864
19363
|
/** OAuth 2.0 token for the current user. */
|
|
16865
19364
|
oauth_token?:
|
|
16866
19365
|
string;
|
|
16867
|
-
/** Required. The resource name of the EntityType to create a Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` */
|
|
16868
19366
|
parent:
|
|
16869
19367
|
string;
|
|
16870
19368
|
/** Returns response with indentations and line breaks. */
|
|
@@ -16901,7 +19399,10 @@ declare namespace gapi.client {
|
|
|
16901
19399
|
/** 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. */
|
|
16902
19400
|
key?:
|
|
16903
19401
|
string;
|
|
16904
|
-
/**
|
|
19402
|
+
/**
|
|
19403
|
+
* Required. The name of the Features to be deleted. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}`
|
|
19404
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}`
|
|
19405
|
+
*/
|
|
16905
19406
|
name:
|
|
16906
19407
|
string;
|
|
16907
19408
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -16940,7 +19441,10 @@ declare namespace gapi.client {
|
|
|
16940
19441
|
/** 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. */
|
|
16941
19442
|
key?:
|
|
16942
19443
|
string;
|
|
16943
|
-
/**
|
|
19444
|
+
/**
|
|
19445
|
+
* Required. The name of the Feature resource. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
|
|
19446
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
|
|
19447
|
+
*/
|
|
16944
19448
|
name:
|
|
16945
19449
|
string;
|
|
16946
19450
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -17015,7 +19519,10 @@ declare namespace gapi.client {
|
|
|
17015
19519
|
*/
|
|
17016
19520
|
pageToken?:
|
|
17017
19521
|
string;
|
|
17018
|
-
/**
|
|
19522
|
+
/**
|
|
19523
|
+
* Required. The resource name of the Location to list Features. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
|
|
19524
|
+
* `projects/{project}/locations/{location}/featureGroups/{feature_group}`
|
|
19525
|
+
*/
|
|
17019
19526
|
parent:
|
|
17020
19527
|
string;
|
|
17021
19528
|
/** Returns response with indentations and line breaks. */
|
|
@@ -27132,7 +29639,302 @@ declare namespace gapi.client {
|
|
|
27132
29639
|
/** 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. */
|
|
27133
29640
|
key?:
|
|
27134
29641
|
string;
|
|
27135
|
-
/**
|
|
29642
|
+
/**
|
|
29643
|
+
* Required. The name of the resource requesting the OAuth2 token. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}`
|
|
29644
|
+
* `projects/{project}/locations/{location}/notebookExecutionJobs/{notebook_execution_job}`
|
|
29645
|
+
*/
|
|
29646
|
+
name:
|
|
29647
|
+
string;
|
|
29648
|
+
/** OAuth 2.0 token for the current user. */
|
|
29649
|
+
oauth_token?:
|
|
29650
|
+
string;
|
|
29651
|
+
/** Returns response with indentations and line breaks. */
|
|
29652
|
+
prettyPrint?:
|
|
29653
|
+
boolean;
|
|
29654
|
+
/** 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. */
|
|
29655
|
+
quotaUser?:
|
|
29656
|
+
string;
|
|
29657
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29658
|
+
upload_protocol?:
|
|
29659
|
+
string;
|
|
29660
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29661
|
+
uploadType?:
|
|
29662
|
+
string;
|
|
29663
|
+
/** Request body */
|
|
29664
|
+
resource:
|
|
29665
|
+
GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest;
|
|
29666
|
+
}): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
|
|
29667
|
+
generateAccessToken(request: {
|
|
29668
|
+
/** V1 error format. */
|
|
29669
|
+
"$.xgafv"?:
|
|
29670
|
+
string;
|
|
29671
|
+
/** OAuth access token. */
|
|
29672
|
+
access_token?:
|
|
29673
|
+
string;
|
|
29674
|
+
/** Data format for response. */
|
|
29675
|
+
alt?:
|
|
29676
|
+
string;
|
|
29677
|
+
/** JSONP */
|
|
29678
|
+
callback?:
|
|
29679
|
+
string;
|
|
29680
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29681
|
+
fields?:
|
|
29682
|
+
string;
|
|
29683
|
+
/** 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. */
|
|
29684
|
+
key?:
|
|
29685
|
+
string;
|
|
29686
|
+
/**
|
|
29687
|
+
* Required. The name of the resource requesting the OAuth2 token. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}`
|
|
29688
|
+
* `projects/{project}/locations/{location}/notebookExecutionJobs/{notebook_execution_job}`
|
|
29689
|
+
*/
|
|
29690
|
+
name:
|
|
29691
|
+
string;
|
|
29692
|
+
/** OAuth 2.0 token for the current user. */
|
|
29693
|
+
oauth_token?:
|
|
29694
|
+
string;
|
|
29695
|
+
/** Returns response with indentations and line breaks. */
|
|
29696
|
+
prettyPrint?:
|
|
29697
|
+
boolean;
|
|
29698
|
+
/** 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. */
|
|
29699
|
+
quotaUser?:
|
|
29700
|
+
string;
|
|
29701
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29702
|
+
upload_protocol?:
|
|
29703
|
+
string;
|
|
29704
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29705
|
+
uploadType?:
|
|
29706
|
+
string;
|
|
29707
|
+
},
|
|
29708
|
+
body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
|
|
29709
|
+
reportEvent(request: {
|
|
29710
|
+
/** V1 error format. */
|
|
29711
|
+
"$.xgafv"?:
|
|
29712
|
+
string;
|
|
29713
|
+
/** OAuth access token. */
|
|
29714
|
+
access_token?:
|
|
29715
|
+
string;
|
|
29716
|
+
/** Data format for response. */
|
|
29717
|
+
alt?:
|
|
29718
|
+
string;
|
|
29719
|
+
/** JSONP */
|
|
29720
|
+
callback?:
|
|
29721
|
+
string;
|
|
29722
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29723
|
+
fields?:
|
|
29724
|
+
string;
|
|
29725
|
+
/** 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. */
|
|
29726
|
+
key?:
|
|
29727
|
+
string;
|
|
29728
|
+
/** Required. The name of the NotebookExecutionJob resource. Format: `projects/{project}/locations/{location}/notebookExecutionJobs/{notebook_execution_jobs}` */
|
|
29729
|
+
name:
|
|
29730
|
+
string;
|
|
29731
|
+
/** OAuth 2.0 token for the current user. */
|
|
29732
|
+
oauth_token?:
|
|
29733
|
+
string;
|
|
29734
|
+
/** Returns response with indentations and line breaks. */
|
|
29735
|
+
prettyPrint?:
|
|
29736
|
+
boolean;
|
|
29737
|
+
/** 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. */
|
|
29738
|
+
quotaUser?:
|
|
29739
|
+
string;
|
|
29740
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29741
|
+
upload_protocol?:
|
|
29742
|
+
string;
|
|
29743
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29744
|
+
uploadType?:
|
|
29745
|
+
string;
|
|
29746
|
+
/** Request body */
|
|
29747
|
+
resource:
|
|
29748
|
+
GoogleCloudAiplatformV1beta1ReportExecutionEventRequest;
|
|
29749
|
+
}): Request<{}>;
|
|
29750
|
+
reportEvent(request: {
|
|
29751
|
+
/** V1 error format. */
|
|
29752
|
+
"$.xgafv"?:
|
|
29753
|
+
string;
|
|
29754
|
+
/** OAuth access token. */
|
|
29755
|
+
access_token?:
|
|
29756
|
+
string;
|
|
29757
|
+
/** Data format for response. */
|
|
29758
|
+
alt?:
|
|
29759
|
+
string;
|
|
29760
|
+
/** JSONP */
|
|
29761
|
+
callback?:
|
|
29762
|
+
string;
|
|
29763
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29764
|
+
fields?:
|
|
29765
|
+
string;
|
|
29766
|
+
/** 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. */
|
|
29767
|
+
key?:
|
|
29768
|
+
string;
|
|
29769
|
+
/** Required. The name of the NotebookExecutionJob resource. Format: `projects/{project}/locations/{location}/notebookExecutionJobs/{notebook_execution_jobs}` */
|
|
29770
|
+
name:
|
|
29771
|
+
string;
|
|
29772
|
+
/** OAuth 2.0 token for the current user. */
|
|
29773
|
+
oauth_token?:
|
|
29774
|
+
string;
|
|
29775
|
+
/** Returns response with indentations and line breaks. */
|
|
29776
|
+
prettyPrint?:
|
|
29777
|
+
boolean;
|
|
29778
|
+
/** 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. */
|
|
29779
|
+
quotaUser?:
|
|
29780
|
+
string;
|
|
29781
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29782
|
+
upload_protocol?:
|
|
29783
|
+
string;
|
|
29784
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29785
|
+
uploadType?:
|
|
29786
|
+
string;
|
|
29787
|
+
},
|
|
29788
|
+
body: GoogleCloudAiplatformV1beta1ReportExecutionEventRequest): Request<{}>;
|
|
29789
|
+
}
|
|
29790
|
+
interface NotebookRuntimesResource {
|
|
29791
|
+
/** Assigns a NotebookRuntime to a user for a particular Notebook file. This method will either returns an existing assignment or generates a new one. */
|
|
29792
|
+
assign(request: {
|
|
29793
|
+
/** V1 error format. */
|
|
29794
|
+
"$.xgafv"?:
|
|
29795
|
+
string;
|
|
29796
|
+
/** OAuth access token. */
|
|
29797
|
+
access_token?:
|
|
29798
|
+
string;
|
|
29799
|
+
/** Data format for response. */
|
|
29800
|
+
alt?:
|
|
29801
|
+
string;
|
|
29802
|
+
/** JSONP */
|
|
29803
|
+
callback?:
|
|
29804
|
+
string;
|
|
29805
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29806
|
+
fields?:
|
|
29807
|
+
string;
|
|
29808
|
+
/** 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. */
|
|
29809
|
+
key?:
|
|
29810
|
+
string;
|
|
29811
|
+
/** OAuth 2.0 token for the current user. */
|
|
29812
|
+
oauth_token?:
|
|
29813
|
+
string;
|
|
29814
|
+
/** Required. The resource name of the Location to get the NotebookRuntime assignment. Format: `projects/{project}/locations/{location}` */
|
|
29815
|
+
parent:
|
|
29816
|
+
string;
|
|
29817
|
+
/** Returns response with indentations and line breaks. */
|
|
29818
|
+
prettyPrint?:
|
|
29819
|
+
boolean;
|
|
29820
|
+
/** 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. */
|
|
29821
|
+
quotaUser?:
|
|
29822
|
+
string;
|
|
29823
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29824
|
+
upload_protocol?:
|
|
29825
|
+
string;
|
|
29826
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29827
|
+
uploadType?:
|
|
29828
|
+
string;
|
|
29829
|
+
/** Request body */
|
|
29830
|
+
resource:
|
|
29831
|
+
GoogleCloudAiplatformV1beta1AssignNotebookRuntimeRequest;
|
|
29832
|
+
}): Request<GoogleLongrunningOperation>;
|
|
29833
|
+
assign(request: {
|
|
29834
|
+
/** V1 error format. */
|
|
29835
|
+
"$.xgafv"?:
|
|
29836
|
+
string;
|
|
29837
|
+
/** OAuth access token. */
|
|
29838
|
+
access_token?:
|
|
29839
|
+
string;
|
|
29840
|
+
/** Data format for response. */
|
|
29841
|
+
alt?:
|
|
29842
|
+
string;
|
|
29843
|
+
/** JSONP */
|
|
29844
|
+
callback?:
|
|
29845
|
+
string;
|
|
29846
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29847
|
+
fields?:
|
|
29848
|
+
string;
|
|
29849
|
+
/** 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. */
|
|
29850
|
+
key?:
|
|
29851
|
+
string;
|
|
29852
|
+
/** OAuth 2.0 token for the current user. */
|
|
29853
|
+
oauth_token?:
|
|
29854
|
+
string;
|
|
29855
|
+
/** Required. The resource name of the Location to get the NotebookRuntime assignment. Format: `projects/{project}/locations/{location}` */
|
|
29856
|
+
parent:
|
|
29857
|
+
string;
|
|
29858
|
+
/** Returns response with indentations and line breaks. */
|
|
29859
|
+
prettyPrint?:
|
|
29860
|
+
boolean;
|
|
29861
|
+
/** 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. */
|
|
29862
|
+
quotaUser?:
|
|
29863
|
+
string;
|
|
29864
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29865
|
+
upload_protocol?:
|
|
29866
|
+
string;
|
|
29867
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29868
|
+
uploadType?:
|
|
29869
|
+
string;
|
|
29870
|
+
},
|
|
29871
|
+
body: GoogleCloudAiplatformV1beta1AssignNotebookRuntimeRequest): Request<GoogleLongrunningOperation>;
|
|
29872
|
+
/** Deletes a NotebookRuntime. */
|
|
29873
|
+
delete(request?: {
|
|
29874
|
+
/** V1 error format. */
|
|
29875
|
+
"$.xgafv"?:
|
|
29876
|
+
string;
|
|
29877
|
+
/** OAuth access token. */
|
|
29878
|
+
access_token?:
|
|
29879
|
+
string;
|
|
29880
|
+
/** Data format for response. */
|
|
29881
|
+
alt?:
|
|
29882
|
+
string;
|
|
29883
|
+
/** JSONP */
|
|
29884
|
+
callback?:
|
|
29885
|
+
string;
|
|
29886
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29887
|
+
fields?:
|
|
29888
|
+
string;
|
|
29889
|
+
/** 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. */
|
|
29890
|
+
key?:
|
|
29891
|
+
string;
|
|
29892
|
+
/**
|
|
29893
|
+
* Required. The name of the NotebookRuntime resource to be deleted. Instead of checking whether the name is in valid NotebookRuntime resource name format, directly throw NotFound
|
|
29894
|
+
* exception if there is no such NotebookRuntime in spanner.
|
|
29895
|
+
*/
|
|
29896
|
+
name:
|
|
29897
|
+
string;
|
|
29898
|
+
/** OAuth 2.0 token for the current user. */
|
|
29899
|
+
oauth_token?:
|
|
29900
|
+
string;
|
|
29901
|
+
/** Returns response with indentations and line breaks. */
|
|
29902
|
+
prettyPrint?:
|
|
29903
|
+
boolean;
|
|
29904
|
+
/** 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. */
|
|
29905
|
+
quotaUser?:
|
|
29906
|
+
string;
|
|
29907
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29908
|
+
upload_protocol?:
|
|
29909
|
+
string;
|
|
29910
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29911
|
+
uploadType?:
|
|
29912
|
+
string;
|
|
29913
|
+
}): Request<GoogleLongrunningOperation>;
|
|
29914
|
+
/** Internal only: Called from Compute Engine instance to obtain EUC for owner Anonymous access: authenticates caller using VM identity JWT. Design doc: go/colab-on-vertex-euc-dd */
|
|
29915
|
+
generateAccessToken(request: {
|
|
29916
|
+
/** V1 error format. */
|
|
29917
|
+
"$.xgafv"?:
|
|
29918
|
+
string;
|
|
29919
|
+
/** OAuth access token. */
|
|
29920
|
+
access_token?:
|
|
29921
|
+
string;
|
|
29922
|
+
/** Data format for response. */
|
|
29923
|
+
alt?:
|
|
29924
|
+
string;
|
|
29925
|
+
/** JSONP */
|
|
29926
|
+
callback?:
|
|
29927
|
+
string;
|
|
29928
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29929
|
+
fields?:
|
|
29930
|
+
string;
|
|
29931
|
+
/** 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. */
|
|
29932
|
+
key?:
|
|
29933
|
+
string;
|
|
29934
|
+
/**
|
|
29935
|
+
* Required. The name of the resource requesting the OAuth2 token. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}`
|
|
29936
|
+
* `projects/{project}/locations/{location}/notebookExecutionJobs/{notebook_execution_job}`
|
|
29937
|
+
*/
|
|
27136
29938
|
name:
|
|
27137
29939
|
string;
|
|
27138
29940
|
/** OAuth 2.0 token for the current user. */
|
|
@@ -27155,209 +29957,6 @@ declare namespace gapi.client {
|
|
|
27155
29957
|
GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest;
|
|
27156
29958
|
}): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
|
|
27157
29959
|
generateAccessToken(request: {
|
|
27158
|
-
/** V1 error format. */
|
|
27159
|
-
"$.xgafv"?:
|
|
27160
|
-
string;
|
|
27161
|
-
/** OAuth access token. */
|
|
27162
|
-
access_token?:
|
|
27163
|
-
string;
|
|
27164
|
-
/** Data format for response. */
|
|
27165
|
-
alt?:
|
|
27166
|
-
string;
|
|
27167
|
-
/** JSONP */
|
|
27168
|
-
callback?:
|
|
27169
|
-
string;
|
|
27170
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
27171
|
-
fields?:
|
|
27172
|
-
string;
|
|
27173
|
-
/** 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. */
|
|
27174
|
-
key?:
|
|
27175
|
-
string;
|
|
27176
|
-
/** Required. The name of the NotebookRuntime resource. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}` */
|
|
27177
|
-
name:
|
|
27178
|
-
string;
|
|
27179
|
-
/** OAuth 2.0 token for the current user. */
|
|
27180
|
-
oauth_token?:
|
|
27181
|
-
string;
|
|
27182
|
-
/** Returns response with indentations and line breaks. */
|
|
27183
|
-
prettyPrint?:
|
|
27184
|
-
boolean;
|
|
27185
|
-
/** 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. */
|
|
27186
|
-
quotaUser?:
|
|
27187
|
-
string;
|
|
27188
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27189
|
-
upload_protocol?:
|
|
27190
|
-
string;
|
|
27191
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27192
|
-
uploadType?:
|
|
27193
|
-
string;
|
|
27194
|
-
},
|
|
27195
|
-
body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
|
|
27196
|
-
reportEvent(request: {
|
|
27197
|
-
/** V1 error format. */
|
|
27198
|
-
"$.xgafv"?:
|
|
27199
|
-
string;
|
|
27200
|
-
/** OAuth access token. */
|
|
27201
|
-
access_token?:
|
|
27202
|
-
string;
|
|
27203
|
-
/** Data format for response. */
|
|
27204
|
-
alt?:
|
|
27205
|
-
string;
|
|
27206
|
-
/** JSONP */
|
|
27207
|
-
callback?:
|
|
27208
|
-
string;
|
|
27209
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
27210
|
-
fields?:
|
|
27211
|
-
string;
|
|
27212
|
-
/** 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. */
|
|
27213
|
-
key?:
|
|
27214
|
-
string;
|
|
27215
|
-
/** Required. The name of the NotebookRuntime resource. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}` */
|
|
27216
|
-
name:
|
|
27217
|
-
string;
|
|
27218
|
-
/** OAuth 2.0 token for the current user. */
|
|
27219
|
-
oauth_token?:
|
|
27220
|
-
string;
|
|
27221
|
-
/** Returns response with indentations and line breaks. */
|
|
27222
|
-
prettyPrint?:
|
|
27223
|
-
boolean;
|
|
27224
|
-
/** 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. */
|
|
27225
|
-
quotaUser?:
|
|
27226
|
-
string;
|
|
27227
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27228
|
-
upload_protocol?:
|
|
27229
|
-
string;
|
|
27230
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27231
|
-
uploadType?:
|
|
27232
|
-
string;
|
|
27233
|
-
/** Request body */
|
|
27234
|
-
resource:
|
|
27235
|
-
GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest;
|
|
27236
|
-
}): Request<GoogleCloudAiplatformV1beta1ReportRuntimeEventResponse>;
|
|
27237
|
-
reportEvent(request: {
|
|
27238
|
-
/** V1 error format. */
|
|
27239
|
-
"$.xgafv"?:
|
|
27240
|
-
string;
|
|
27241
|
-
/** OAuth access token. */
|
|
27242
|
-
access_token?:
|
|
27243
|
-
string;
|
|
27244
|
-
/** Data format for response. */
|
|
27245
|
-
alt?:
|
|
27246
|
-
string;
|
|
27247
|
-
/** JSONP */
|
|
27248
|
-
callback?:
|
|
27249
|
-
string;
|
|
27250
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
27251
|
-
fields?:
|
|
27252
|
-
string;
|
|
27253
|
-
/** 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. */
|
|
27254
|
-
key?:
|
|
27255
|
-
string;
|
|
27256
|
-
/** Required. The name of the NotebookRuntime resource. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}` */
|
|
27257
|
-
name:
|
|
27258
|
-
string;
|
|
27259
|
-
/** OAuth 2.0 token for the current user. */
|
|
27260
|
-
oauth_token?:
|
|
27261
|
-
string;
|
|
27262
|
-
/** Returns response with indentations and line breaks. */
|
|
27263
|
-
prettyPrint?:
|
|
27264
|
-
boolean;
|
|
27265
|
-
/** 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. */
|
|
27266
|
-
quotaUser?:
|
|
27267
|
-
string;
|
|
27268
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27269
|
-
upload_protocol?:
|
|
27270
|
-
string;
|
|
27271
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27272
|
-
uploadType?:
|
|
27273
|
-
string;
|
|
27274
|
-
},
|
|
27275
|
-
body: GoogleCloudAiplatformV1beta1ReportRuntimeEventRequest): Request<GoogleCloudAiplatformV1beta1ReportRuntimeEventResponse>;
|
|
27276
|
-
}
|
|
27277
|
-
interface NotebookRuntimesResource {
|
|
27278
|
-
/** Assigns a NotebookRuntime to a user for a particular Notebook file. This method will either returns an existing assignment or generates a new one. */
|
|
27279
|
-
assign(request: {
|
|
27280
|
-
/** V1 error format. */
|
|
27281
|
-
"$.xgafv"?:
|
|
27282
|
-
string;
|
|
27283
|
-
/** OAuth access token. */
|
|
27284
|
-
access_token?:
|
|
27285
|
-
string;
|
|
27286
|
-
/** Data format for response. */
|
|
27287
|
-
alt?:
|
|
27288
|
-
string;
|
|
27289
|
-
/** JSONP */
|
|
27290
|
-
callback?:
|
|
27291
|
-
string;
|
|
27292
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
27293
|
-
fields?:
|
|
27294
|
-
string;
|
|
27295
|
-
/** 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. */
|
|
27296
|
-
key?:
|
|
27297
|
-
string;
|
|
27298
|
-
/** OAuth 2.0 token for the current user. */
|
|
27299
|
-
oauth_token?:
|
|
27300
|
-
string;
|
|
27301
|
-
/** Required. The resource name of the Location to get the NotebookRuntime assignment. Format: `projects/{project}/locations/{location}` */
|
|
27302
|
-
parent:
|
|
27303
|
-
string;
|
|
27304
|
-
/** Returns response with indentations and line breaks. */
|
|
27305
|
-
prettyPrint?:
|
|
27306
|
-
boolean;
|
|
27307
|
-
/** 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. */
|
|
27308
|
-
quotaUser?:
|
|
27309
|
-
string;
|
|
27310
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27311
|
-
upload_protocol?:
|
|
27312
|
-
string;
|
|
27313
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27314
|
-
uploadType?:
|
|
27315
|
-
string;
|
|
27316
|
-
/** Request body */
|
|
27317
|
-
resource:
|
|
27318
|
-
GoogleCloudAiplatformV1beta1AssignNotebookRuntimeRequest;
|
|
27319
|
-
}): Request<GoogleLongrunningOperation>;
|
|
27320
|
-
assign(request: {
|
|
27321
|
-
/** V1 error format. */
|
|
27322
|
-
"$.xgafv"?:
|
|
27323
|
-
string;
|
|
27324
|
-
/** OAuth access token. */
|
|
27325
|
-
access_token?:
|
|
27326
|
-
string;
|
|
27327
|
-
/** Data format for response. */
|
|
27328
|
-
alt?:
|
|
27329
|
-
string;
|
|
27330
|
-
/** JSONP */
|
|
27331
|
-
callback?:
|
|
27332
|
-
string;
|
|
27333
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
27334
|
-
fields?:
|
|
27335
|
-
string;
|
|
27336
|
-
/** 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. */
|
|
27337
|
-
key?:
|
|
27338
|
-
string;
|
|
27339
|
-
/** OAuth 2.0 token for the current user. */
|
|
27340
|
-
oauth_token?:
|
|
27341
|
-
string;
|
|
27342
|
-
/** Required. The resource name of the Location to get the NotebookRuntime assignment. Format: `projects/{project}/locations/{location}` */
|
|
27343
|
-
parent:
|
|
27344
|
-
string;
|
|
27345
|
-
/** Returns response with indentations and line breaks. */
|
|
27346
|
-
prettyPrint?:
|
|
27347
|
-
boolean;
|
|
27348
|
-
/** 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. */
|
|
27349
|
-
quotaUser?:
|
|
27350
|
-
string;
|
|
27351
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27352
|
-
upload_protocol?:
|
|
27353
|
-
string;
|
|
27354
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27355
|
-
uploadType?:
|
|
27356
|
-
string;
|
|
27357
|
-
},
|
|
27358
|
-
body: GoogleCloudAiplatformV1beta1AssignNotebookRuntimeRequest): Request<GoogleLongrunningOperation>;
|
|
27359
|
-
/** Deletes a NotebookRuntime. */
|
|
27360
|
-
delete(request?: {
|
|
27361
29960
|
/** V1 error format. */
|
|
27362
29961
|
"$.xgafv"?:
|
|
27363
29962
|
string;
|
|
@@ -27377,8 +29976,8 @@ declare namespace gapi.client {
|
|
|
27377
29976
|
key?:
|
|
27378
29977
|
string;
|
|
27379
29978
|
/**
|
|
27380
|
-
* Required. The name of the
|
|
27381
|
-
*
|
|
29979
|
+
* Required. The name of the resource requesting the OAuth2 token. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}`
|
|
29980
|
+
* `projects/{project}/locations/{location}/notebookExecutionJobs/{notebook_execution_job}`
|
|
27382
29981
|
*/
|
|
27383
29982
|
name:
|
|
27384
29983
|
string;
|
|
@@ -27397,86 +29996,6 @@ declare namespace gapi.client {
|
|
|
27397
29996
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27398
29997
|
uploadType?:
|
|
27399
29998
|
string;
|
|
27400
|
-
}): Request<GoogleLongrunningOperation>;
|
|
27401
|
-
/** Internal only: Called from Compute Engine instance to obtain EUC for owner Anonymous access: authenticates caller using VM identity JWT. Design doc: go/colab-on-vertex-euc-dd */
|
|
27402
|
-
generateAccessToken(request: {
|
|
27403
|
-
/** V1 error format. */
|
|
27404
|
-
"$.xgafv"?:
|
|
27405
|
-
string;
|
|
27406
|
-
/** OAuth access token. */
|
|
27407
|
-
access_token?:
|
|
27408
|
-
string;
|
|
27409
|
-
/** Data format for response. */
|
|
27410
|
-
alt?:
|
|
27411
|
-
string;
|
|
27412
|
-
/** JSONP */
|
|
27413
|
-
callback?:
|
|
27414
|
-
string;
|
|
27415
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
27416
|
-
fields?:
|
|
27417
|
-
string;
|
|
27418
|
-
/** 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. */
|
|
27419
|
-
key?:
|
|
27420
|
-
string;
|
|
27421
|
-
/** Required. The name of the NotebookRuntime resource. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}` */
|
|
27422
|
-
name:
|
|
27423
|
-
string;
|
|
27424
|
-
/** OAuth 2.0 token for the current user. */
|
|
27425
|
-
oauth_token?:
|
|
27426
|
-
string;
|
|
27427
|
-
/** Returns response with indentations and line breaks. */
|
|
27428
|
-
prettyPrint?:
|
|
27429
|
-
boolean;
|
|
27430
|
-
/** 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. */
|
|
27431
|
-
quotaUser?:
|
|
27432
|
-
string;
|
|
27433
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27434
|
-
upload_protocol?:
|
|
27435
|
-
string;
|
|
27436
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27437
|
-
uploadType?:
|
|
27438
|
-
string;
|
|
27439
|
-
/** Request body */
|
|
27440
|
-
resource:
|
|
27441
|
-
GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest;
|
|
27442
|
-
}): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
|
|
27443
|
-
generateAccessToken(request: {
|
|
27444
|
-
/** V1 error format. */
|
|
27445
|
-
"$.xgafv"?:
|
|
27446
|
-
string;
|
|
27447
|
-
/** OAuth access token. */
|
|
27448
|
-
access_token?:
|
|
27449
|
-
string;
|
|
27450
|
-
/** Data format for response. */
|
|
27451
|
-
alt?:
|
|
27452
|
-
string;
|
|
27453
|
-
/** JSONP */
|
|
27454
|
-
callback?:
|
|
27455
|
-
string;
|
|
27456
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
27457
|
-
fields?:
|
|
27458
|
-
string;
|
|
27459
|
-
/** 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. */
|
|
27460
|
-
key?:
|
|
27461
|
-
string;
|
|
27462
|
-
/** Required. The name of the NotebookRuntime resource. Format: `projects/{project}/locations/{location}/notebookRuntimes/{notebook_runtime}` */
|
|
27463
|
-
name:
|
|
27464
|
-
string;
|
|
27465
|
-
/** OAuth 2.0 token for the current user. */
|
|
27466
|
-
oauth_token?:
|
|
27467
|
-
string;
|
|
27468
|
-
/** Returns response with indentations and line breaks. */
|
|
27469
|
-
prettyPrint?:
|
|
27470
|
-
boolean;
|
|
27471
|
-
/** 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. */
|
|
27472
|
-
quotaUser?:
|
|
27473
|
-
string;
|
|
27474
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27475
|
-
upload_protocol?:
|
|
27476
|
-
string;
|
|
27477
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27478
|
-
uploadType?:
|
|
27479
|
-
string;
|
|
27480
29999
|
},
|
|
27481
30000
|
body: GoogleCloudAiplatformV1beta1GenerateAccessTokenRequest): Request<GoogleCloudAiplatformV1beta1GenerateAccessTokenResponse>;
|
|
27482
30001
|
/** Gets a NotebookRuntime. */
|
|
@@ -27545,9 +30064,9 @@ declare namespace gapi.client {
|
|
|
27545
30064
|
* name. * `healthState` supports = and !=. healthState enum: [HEALTHY, UNHEALTHY, HEALTH_STATE_UNSPECIFIED]. * `runtimeState` supports = and !=. runtimeState enum:
|
|
27546
30065
|
* [RUNTIME_STATE_UNSPECIFIED, RUNNING, BEING_STARTED, BEING_STOPPED, STOPPED, BEING_UPGRADED]. * `runtimeUser` supports = and !=. * API version is UI only: `uiState` supports =
|
|
27547
30066
|
* and !=. uiState enum: [UI_RESOURCE_STATE_UNSPECIFIED, UI_RESOURCE_STATE_BEING_CREATED, UI_RESOURCE_STATE_ACTIVE, UI_RESOURCE_STATE_BEING_DELETED,
|
|
27548
|
-
* UI_RESOURCE_STATE_CREATION_FAILED].
|
|
27549
|
-
* `
|
|
27550
|
-
* `uiState=UI_RESOURCE_STATE_BEING_DELETED`
|
|
30067
|
+
* UI_RESOURCE_STATE_CREATION_FAILED]. * `notebookRuntimeType` supports = and !=. notebookRuntimeType enum: [USER_DEFINED, ONE_CLICK]. Some examples: *
|
|
30068
|
+
* `notebookRuntime="notebookRuntime123"` * `displayName="myDisplayName"` and `displayName=~"myDisplayNameRegex"` * `notebookRuntimeTemplate="notebookRuntimeTemplate321"` *
|
|
30069
|
+
* `healthState=HEALTHY` * `runtimeState=RUNNING` * `runtimeUser="test@google.com"` * `uiState=UI_RESOURCE_STATE_BEING_DELETED` * `notebookRuntimeType=USER_DEFINED`
|
|
27551
30070
|
*/
|
|
27552
30071
|
filter?:
|
|
27553
30072
|
string;
|
|
@@ -27994,7 +30513,8 @@ declare namespace gapi.client {
|
|
|
27994
30513
|
* Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `notebookRuntimeTemplate` supports = and !=.
|
|
27995
30514
|
* `notebookRuntimeTemplate` represents the NotebookRuntimeTemplate ID, i.e. the last segment of the NotebookRuntimeTemplate's resource name. * `display_name` supports = and != *
|
|
27996
30515
|
* `labels` supports general map functions that is: * `labels.key=value` - key:value equality * `labels.key:* or labels:key - key existence * A key including a space must be
|
|
27997
|
-
* quoted. `labels."a key"`.
|
|
30516
|
+
* quoted. `labels."a key"`. * `notebookRuntimeType` supports = and !=. notebookRuntimeType enum: [USER_DEFINED, ONE_CLICK]. Some examples: *
|
|
30517
|
+
* `notebookRuntimeTemplate=notebookRuntimeTemplate123` * `displayName="myDisplayName"` * `labels.myKey="myValue"` * `notebookRuntimeType=USER_DEFINED`
|
|
27998
30518
|
*/
|
|
27999
30519
|
filter?:
|
|
28000
30520
|
string;
|
|
@@ -28612,7 +31132,7 @@ declare namespace gapi.client {
|
|
|
28612
31132
|
string;
|
|
28613
31133
|
/**
|
|
28614
31134
|
* Required. The ID to use for the PersistentResource, which become the final component of the PersistentResource's resource name. The maximum length is 63 characters, and valid
|
|
28615
|
-
* characters are
|
|
31135
|
+
* characters are `/^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$/`.
|
|
28616
31136
|
*/
|
|
28617
31137
|
persistentResourceId?:
|
|
28618
31138
|
string;
|
|
@@ -28659,7 +31179,7 @@ declare namespace gapi.client {
|
|
|
28659
31179
|
string;
|
|
28660
31180
|
/**
|
|
28661
31181
|
* Required. The ID to use for the PersistentResource, which become the final component of the PersistentResource's resource name. The maximum length is 63 characters, and valid
|
|
28662
|
-
* characters are
|
|
31182
|
+
* characters are `/^[a-z]([a-z0-9-]{0,61}[a-z0-9])?$/`.
|
|
28663
31183
|
*/
|
|
28664
31184
|
persistentResourceId?:
|
|
28665
31185
|
string;
|
|
@@ -29233,7 +31753,7 @@ declare namespace gapi.client {
|
|
|
29233
31753
|
string;
|
|
29234
31754
|
/**
|
|
29235
31755
|
* The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be
|
|
29236
|
-
* less than 128 characters, and valid characters are
|
|
31756
|
+
* less than 128 characters, and valid characters are `/a-z-/`.
|
|
29237
31757
|
*/
|
|
29238
31758
|
pipelineJobId?:
|
|
29239
31759
|
string;
|
|
@@ -29280,7 +31800,7 @@ declare namespace gapi.client {
|
|
|
29280
31800
|
string;
|
|
29281
31801
|
/**
|
|
29282
31802
|
* The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be
|
|
29283
|
-
* less than 128 characters, and valid characters are
|
|
31803
|
+
* less than 128 characters, and valid characters are `/a-z-/`.
|
|
29284
31804
|
*/
|
|
29285
31805
|
pipelineJobId?:
|
|
29286
31806
|
string;
|
|
@@ -34068,7 +36588,7 @@ declare namespace gapi.client {
|
|
|
34068
36588
|
string;
|
|
34069
36589
|
/**
|
|
34070
36590
|
* Required. The ID to use for the Tensorboard run, which becomes the final component of the Tensorboard run's resource name. This value should be 1-128 characters, and valid
|
|
34071
|
-
* characters are
|
|
36591
|
+
* characters are `/a-z-/`.
|
|
34072
36592
|
*/
|
|
34073
36593
|
tensorboardRunId?:
|
|
34074
36594
|
string;
|
|
@@ -34118,7 +36638,7 @@ declare namespace gapi.client {
|
|
|
34118
36638
|
string;
|
|
34119
36639
|
/**
|
|
34120
36640
|
* Required. The ID to use for the Tensorboard run, which becomes the final component of the Tensorboard run's resource name. This value should be 1-128 characters, and valid
|
|
34121
|
-
* characters are
|
|
36641
|
+
* characters are `/a-z-/`.
|
|
34122
36642
|
*/
|
|
34123
36643
|
tensorboardRunId?:
|
|
34124
36644
|
string;
|
|
@@ -34491,7 +37011,7 @@ declare namespace gapi.client {
|
|
|
34491
37011
|
string;
|
|
34492
37012
|
/**
|
|
34493
37013
|
* Required. The ID to use for the Tensorboard experiment, which becomes the final component of the Tensorboard experiment's resource name. This value should be 1-128 characters,
|
|
34494
|
-
* and valid characters are
|
|
37014
|
+
* and valid characters are `/a-z-/`.
|
|
34495
37015
|
*/
|
|
34496
37016
|
tensorboardExperimentId?:
|
|
34497
37017
|
string;
|
|
@@ -34538,7 +37058,7 @@ declare namespace gapi.client {
|
|
|
34538
37058
|
string;
|
|
34539
37059
|
/**
|
|
34540
37060
|
* Required. The ID to use for the Tensorboard experiment, which becomes the final component of the Tensorboard experiment's resource name. This value should be 1-128 characters,
|
|
34541
|
-
* and valid characters are
|
|
37061
|
+
* and valid characters are `/a-z-/`.
|
|
34542
37062
|
*/
|
|
34543
37063
|
tensorboardExperimentId?:
|
|
34544
37064
|
string;
|
|
@@ -36229,6 +38749,66 @@ declare namespace gapi.client {
|
|
|
36229
38749
|
view?:
|
|
36230
38750
|
string;
|
|
36231
38751
|
}): Request<GoogleCloudAiplatformV1beta1PublisherModel>;
|
|
38752
|
+
/** Lists publisher models in Model Garden. */
|
|
38753
|
+
list(request?: {
|
|
38754
|
+
/** V1 error format. */
|
|
38755
|
+
"$.xgafv"?:
|
|
38756
|
+
string;
|
|
38757
|
+
/** OAuth access token. */
|
|
38758
|
+
access_token?:
|
|
38759
|
+
string;
|
|
38760
|
+
/** Data format for response. */
|
|
38761
|
+
alt?:
|
|
38762
|
+
string;
|
|
38763
|
+
/** JSONP */
|
|
38764
|
+
callback?:
|
|
38765
|
+
string;
|
|
38766
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
38767
|
+
fields?:
|
|
38768
|
+
string;
|
|
38769
|
+
/** Optional. The standard list filter. */
|
|
38770
|
+
filter?:
|
|
38771
|
+
string;
|
|
38772
|
+
/** 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. */
|
|
38773
|
+
key?:
|
|
38774
|
+
string;
|
|
38775
|
+
/**
|
|
38776
|
+
* Optional. The IETF BCP-47 language code representing the language in which the publisher models' text information should be written in (see go/bcp47). If not set, by default
|
|
38777
|
+
* English (en).
|
|
38778
|
+
*/
|
|
38779
|
+
languageCode?:
|
|
38780
|
+
string;
|
|
38781
|
+
/** OAuth 2.0 token for the current user. */
|
|
38782
|
+
oauth_token?:
|
|
38783
|
+
string;
|
|
38784
|
+
/** Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. */
|
|
38785
|
+
orderBy?:
|
|
38786
|
+
string;
|
|
38787
|
+
/** Optional. The standard list page size. */
|
|
38788
|
+
pageSize?:
|
|
38789
|
+
number;
|
|
38790
|
+
/** Optional. The standard list page token. Typically obtained via ListPublisherModelsResponse.next_page_token of the previous ModelGardenService.ListPublisherModels call. */
|
|
38791
|
+
pageToken?:
|
|
38792
|
+
string;
|
|
38793
|
+
/** Required. The name of the Publisher from which to list the PublisherModels. Format: `publishers/{publisher}` */
|
|
38794
|
+
parent:
|
|
38795
|
+
string;
|
|
38796
|
+
/** Returns response with indentations and line breaks. */
|
|
38797
|
+
prettyPrint?:
|
|
38798
|
+
boolean;
|
|
38799
|
+
/** 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. */
|
|
38800
|
+
quotaUser?:
|
|
38801
|
+
string;
|
|
38802
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
38803
|
+
upload_protocol?:
|
|
38804
|
+
string;
|
|
38805
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
38806
|
+
uploadType?:
|
|
38807
|
+
string;
|
|
38808
|
+
/** Optional. PublisherModel view specifying which fields to read. */
|
|
38809
|
+
view?:
|
|
38810
|
+
string;
|
|
38811
|
+
}): Request<GoogleCloudAiplatformV1beta1ListPublisherModelsResponse>;
|
|
36232
38812
|
}
|
|
36233
38813
|
interface PublishersResource {
|
|
36234
38814
|
models:
|