@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20231024 → 0.0.20231101

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +2917 -153
  2. package/package.json +1 -1
  3. package/tests.ts +493 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20231024
12
+ // Revision: 20231101
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -875,6 +875,16 @@ declare namespace gapi.client {
875
875
  genericMetadata?:
876
876
  GoogleCloudAiplatformV1GenericOperationMetadata;
877
877
  }
878
+ interface GoogleCloudAiplatformV1CreateFeatureGroupOperationMetadata {
879
+ /** Operation metadata for FeatureGroup. */
880
+ genericMetadata?:
881
+ GoogleCloudAiplatformV1GenericOperationMetadata;
882
+ }
883
+ interface GoogleCloudAiplatformV1CreateFeatureOnlineStoreOperationMetadata {
884
+ /** Operation metadata for FeatureOnlineStore. */
885
+ genericMetadata?:
886
+ GoogleCloudAiplatformV1GenericOperationMetadata;
887
+ }
878
888
  interface GoogleCloudAiplatformV1CreateFeatureOperationMetadata {
879
889
  /** Operation metadata for Feature. */
880
890
  genericMetadata?:
@@ -903,6 +913,11 @@ declare namespace gapi.client {
903
913
  genericMetadata?:
904
914
  GoogleCloudAiplatformV1GenericOperationMetadata;
905
915
  }
916
+ interface GoogleCloudAiplatformV1CreateFeatureViewOperationMetadata {
917
+ /** Operation metadata for FeatureView Create. */
918
+ genericMetadata?:
919
+ GoogleCloudAiplatformV1GenericOperationMetadata;
920
+ }
906
921
  interface GoogleCloudAiplatformV1CreateIndexEndpointOperationMetadata {
907
922
  /** The operation generic information. */
908
923
  genericMetadata?:
@@ -940,6 +955,11 @@ declare namespace gapi.client {
940
955
  pipelineJobId?:
941
956
  string;
942
957
  }
958
+ interface GoogleCloudAiplatformV1CreateRegistryFeatureOperationMetadata {
959
+ /** Operation metadata for Feature. */
960
+ genericMetadata?:
961
+ GoogleCloudAiplatformV1GenericOperationMetadata;
962
+ }
943
963
  interface GoogleCloudAiplatformV1CreateSpecialistPoolOperationMetadata {
944
964
  /** The operation generic information. */
945
965
  genericMetadata?:
@@ -2425,6 +2445,48 @@ declare namespace gapi.client {
2425
2445
  /** Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of Feature value. */
2426
2446
  valueType?:
2427
2447
  string;
2448
+ /** Only applicable for Vertex AI Feature Store. The name of the BigQuery Table/View columnn hosting data for this version. If no value is provided, will use feature_id. */
2449
+ versionColumnName?:
2450
+ string;
2451
+ }
2452
+ interface GoogleCloudAiplatformV1FeatureGroup {
2453
+ /**
2454
+ * Indicates that features for this group come from BigQuery Table/View. By default treats the source as a sparse time series source, which is required to have an entity_id and a
2455
+ * feature_timestamp column in the source.
2456
+ */
2457
+ bigQuery?:
2458
+ GoogleCloudAiplatformV1FeatureGroupBigQuery;
2459
+ /** Output only. Timestamp when this FeatureGroup was created. */
2460
+ createTime?:
2461
+ string;
2462
+ /** Optional. Description of the FeatureGroup. */
2463
+ description?:
2464
+ string;
2465
+ /** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
2466
+ etag?:
2467
+ string;
2468
+ /**
2469
+ * 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
2470
+ * 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
2471
+ * 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
2472
+ * immutable.
2473
+ */
2474
+ labels?:
2475
+ { [P in string]: string };
2476
+ /** Output only. Name of the FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
2477
+ name?:
2478
+ string;
2479
+ /** Output only. Timestamp when this FeatureGroup was last updated. */
2480
+ updateTime?:
2481
+ string;
2482
+ }
2483
+ interface GoogleCloudAiplatformV1FeatureGroupBigQuery {
2484
+ /** Required. Immutable. The BigQuery source URI that points to either a BigQuery Table or View. */
2485
+ bigQuerySource?:
2486
+ GoogleCloudAiplatformV1BigQuerySource;
2487
+ /** Optional. Columns to construct entity_id / row keys. Currently only supports 1 entity_id_column. If not provided defaults to `entity_id`. */
2488
+ entityIdColumns?:
2489
+ string[];
2428
2490
  }
2429
2491
  interface GoogleCloudAiplatformV1FeatureMonitoringStatsAnomaly {
2430
2492
  /** Output only. The stats and anomalies generated at specific timestamp. */
@@ -2450,6 +2512,78 @@ declare namespace gapi.client {
2450
2512
  sigma?:
2451
2513
  number;
2452
2514
  }
2515
+ interface GoogleCloudAiplatformV1FeatureOnlineStore {
2516
+ /** Contains settings for the Cloud Bigtable instance that will be created to serve featureValues for all FeatureViews under this FeatureOnlineStore. */
2517
+ bigtable?:
2518
+ GoogleCloudAiplatformV1FeatureOnlineStoreBigtable;
2519
+ /** Output only. Timestamp when this FeatureOnlineStore was created. */
2520
+ createTime?:
2521
+ string;
2522
+ /** Optional. The dedicated serving endpoint for this FeatureOnlineStore, which is different from common Vertex service endpoint. */
2523
+ dedicatedServingEndpoint?:
2524
+ GoogleCloudAiplatformV1FeatureOnlineStoreDedicatedServingEndpoint;
2525
+ /** Optional. The settings for embedding management in FeatureOnlineStore. */
2526
+ embeddingManagement?:
2527
+ GoogleCloudAiplatformV1FeatureOnlineStoreEmbeddingManagement;
2528
+ /** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
2529
+ etag?:
2530
+ string;
2531
+ /**
2532
+ * 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
2533
+ * 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
2534
+ * 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
2535
+ * are immutable.
2536
+ */
2537
+ labels?:
2538
+ { [P in string]: string };
2539
+ /** Output only. Name of the FeatureOnlineStore. Format: `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}` */
2540
+ name?:
2541
+ string;
2542
+ /** Output only. State of the featureOnlineStore. */
2543
+ state?:
2544
+ string;
2545
+ /** Output only. Timestamp when this FeatureOnlineStore was last updated. */
2546
+ updateTime?:
2547
+ string;
2548
+ }
2549
+ interface GoogleCloudAiplatformV1FeatureOnlineStoreBigtable {
2550
+ /** Required. Autoscaling config applied to Bigtable Instance. */
2551
+ autoScaling?:
2552
+ GoogleCloudAiplatformV1FeatureOnlineStoreBigtableAutoScaling;
2553
+ }
2554
+ interface GoogleCloudAiplatformV1FeatureOnlineStoreBigtableAutoScaling {
2555
+ /**
2556
+ * 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
2557
+ * to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%.
2558
+ */
2559
+ cpuUtilizationTarget?:
2560
+ number;
2561
+ /** 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'. */
2562
+ maxNodeCount?:
2563
+ number;
2564
+ /** Required. The minimum number of nodes to scale down to. Must be greater than or equal to 1. */
2565
+ minNodeCount?:
2566
+ number;
2567
+ }
2568
+ interface GoogleCloudAiplatformV1FeatureOnlineStoreDedicatedServingEndpoint {
2569
+ /**
2570
+ * Optional. Private service connect config. If PrivateServiceConnectConfig.enable_private_service_connect set to true, customers will use private service connection to send request.
2571
+ * Otherwise, the connection will set to public endpoint.
2572
+ */
2573
+ privateServiceConnectConfig?:
2574
+ GoogleCloudAiplatformV1PrivateServiceConnectConfig;
2575
+ /** Output only. This field will be populated with the domain name to use for this FeatureOnlineStore */
2576
+ publicEndpointDomainName?:
2577
+ string;
2578
+ /** Output only. The name of the service attachment resource. Populated if private service connect is enabled and after FeatureViewSync is created. */
2579
+ serviceAttachment?:
2580
+ string;
2581
+ }
2582
+ interface GoogleCloudAiplatformV1FeatureOnlineStoreEmbeddingManagement {
2583
+ /** Optional. Immutable. Whether to enable embedding management in this FeatureOnlineStore. It's immutable after creation to ensure the FeatureOnlineStore availability. */
2584
+ enabled?:
2585
+ boolean;
2586
+ }
2453
2587
  interface GoogleCloudAiplatformV1FeatureSelector {
2454
2588
  /** Required. Matches Features based on ID. */
2455
2589
  idMatcher?:
@@ -2677,6 +2811,162 @@ declare namespace gapi.client {
2677
2811
  generateTime?:
2678
2812
  string;
2679
2813
  }
2814
+ interface GoogleCloudAiplatformV1FeatureView {
2815
+ /** Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore. */
2816
+ bigQuerySource?:
2817
+ GoogleCloudAiplatformV1FeatureViewBigQuerySource;
2818
+ /** Output only. Timestamp when this FeatureView was created. */
2819
+ createTime?:
2820
+ string;
2821
+ /** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
2822
+ etag?:
2823
+ string;
2824
+ /** Optional. Configures the features from a Feature Registry source that need to be loaded onto the FeatureOnlineStore. */
2825
+ featureRegistrySource?:
2826
+ GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource;
2827
+ /**
2828
+ * 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
2829
+ * 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
2830
+ * 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
2831
+ * are immutable.
2832
+ */
2833
+ labels?:
2834
+ { [P in string]: string };
2835
+ /** Output only. Name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
2836
+ name?:
2837
+ string;
2838
+ /**
2839
+ * 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
2840
+ * serving.
2841
+ */
2842
+ syncConfig?:
2843
+ GoogleCloudAiplatformV1FeatureViewSyncConfig;
2844
+ /** Output only. Timestamp when this FeatureView was last updated. */
2845
+ updateTime?:
2846
+ string;
2847
+ /**
2848
+ * 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
2849
+ * search can be performed during online serving.
2850
+ */
2851
+ vectorSearchConfig?:
2852
+ GoogleCloudAiplatformV1FeatureViewVectorSearchConfig;
2853
+ }
2854
+ interface GoogleCloudAiplatformV1FeatureViewBigQuerySource {
2855
+ /** Required. Columns to construct entity_id / row keys. Start by supporting 1 only. */
2856
+ entityIdColumns?:
2857
+ string[];
2858
+ /** Required. The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig. */
2859
+ uri?:
2860
+ string;
2861
+ }
2862
+ interface GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource {
2863
+ /** Required. List of features that need to be synced to Online Store. */
2864
+ featureGroups?:
2865
+ GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup[];
2866
+ }
2867
+ interface GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup {
2868
+ /** Required. Identifier of the feature group. */
2869
+ featureGroupId?:
2870
+ string;
2871
+ /** Required. Identifiers of features under the feature group. */
2872
+ featureIds?:
2873
+ string[];
2874
+ }
2875
+ interface GoogleCloudAiplatformV1FeatureViewSync {
2876
+ /**
2877
+ * 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
2878
+ * actual data transfer yet.
2879
+ */
2880
+ createTime?:
2881
+ string;
2882
+ /** Output only. Final status of the FeatureViewSync. */
2883
+ finalStatus?:
2884
+ GoogleRpcStatus;
2885
+ /**
2886
+ * Output only. Name of the FeatureViewSync. Format:
2887
+ * `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}`
2888
+ */
2889
+ name?:
2890
+ string;
2891
+ /** Output only. Time when this FeatureViewSync is finished. */
2892
+ runTime?:
2893
+ GoogleTypeInterval;
2894
+ }
2895
+ interface GoogleCloudAiplatformV1FeatureViewSyncConfig {
2896
+ /**
2897
+ * 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:
2898
+ * "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 * * *
2899
+ * *", or "TZ=America/New_York 1 * * * *".
2900
+ */
2901
+ cron?:
2902
+ string;
2903
+ }
2904
+ interface GoogleCloudAiplatformV1FeatureViewVectorSearchConfig {
2905
+ /**
2906
+ * 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
2907
+ * benchmarking and to generate the ground truth for approximate search.
2908
+ */
2909
+ bruteForceConfig?:
2910
+ any;
2911
+ /**
2912
+ * 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
2913
+ * value k' of the k neighbors returned have the same value of crowding_attribute.
2914
+ */
2915
+ crowdingColumn?:
2916
+ string;
2917
+ /** Optional. The distance measure used in nearest neighbor search. */
2918
+ distanceMeasureType?:
2919
+ string;
2920
+ /** 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. */
2921
+ embeddingColumn?:
2922
+ string;
2923
+ /** Optional. The number of dimensions of the input embedding. */
2924
+ embeddingDimension?:
2925
+ number;
2926
+ /** Optional. Columns of features that're used to filter vector search results. */
2927
+ filterColumns?:
2928
+ string[];
2929
+ /** 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 */
2930
+ treeAhConfig?:
2931
+ GoogleCloudAiplatformV1FeatureViewVectorSearchConfigTreeAHConfig;
2932
+ }
2933
+ // tslint:disable-next-line:no-empty-interface
2934
+ interface GoogleCloudAiplatformV1FeatureViewVectorSearchConfigBruteForceConfig {
2935
+ }
2936
+ interface GoogleCloudAiplatformV1FeatureViewVectorSearchConfigTreeAHConfig {
2937
+ /** Optional. Number of embeddings on each leaf node. The default value is 1000 if not set. */
2938
+ leafNodeEmbeddingCount?:
2939
+ string;
2940
+ }
2941
+ interface GoogleCloudAiplatformV1FetchFeatureValuesRequest {
2942
+ /** Specify response data format. If not set, KeyValue format will be used. */
2943
+ format?:
2944
+ string;
2945
+ /** Simple ID. The whole string will be used as is to identify Entity to fetch feature values for. */
2946
+ id?:
2947
+ string;
2948
+ }
2949
+ interface GoogleCloudAiplatformV1FetchFeatureValuesResponse {
2950
+ /** Feature values in KeyValue format. */
2951
+ keyValues?:
2952
+ GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairList;
2953
+ /** Feature values in proto Struct format. */
2954
+ protoStruct?:
2955
+ { [P in string]: any };
2956
+ }
2957
+ interface GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairList {
2958
+ /** List of feature names and values. */
2959
+ features?:
2960
+ GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairListFeatureNameValuePair[];
2961
+ }
2962
+ interface GoogleCloudAiplatformV1FetchFeatureValuesResponseFeatureNameValuePairListFeatureNameValuePair {
2963
+ /** Feature short name. */
2964
+ name?:
2965
+ string;
2966
+ /** Feature value. */
2967
+ value?:
2968
+ GoogleCloudAiplatformV1FeatureValue;
2969
+ }
2680
2970
  interface GoogleCloudAiplatformV1FilterSplit {
2681
2971
  /**
2682
2972
  * 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
@@ -3068,6 +3358,12 @@ declare namespace gapi.client {
3068
3358
  /** Required. Feature embedding vector. An array of numbers with the length of [NearestNeighborSearchConfig.dimensions]. */
3069
3359
  featureVector?:
3070
3360
  number[];
3361
+ /**
3362
+ * Optional. List of Restrict of the datapoint, used to perform "restricted searches" where boolean rule are used to filter the subset of the database eligible for matching. This uses
3363
+ * numeric comparisons.
3364
+ */
3365
+ numericRestricts?:
3366
+ GoogleCloudAiplatformV1IndexDatapointNumericRestriction[];
3071
3367
  /**
3072
3368
  * Optional. List of Restrict of the datapoint, used to perform "restricted searches" where boolean rule are used to filter the subset of the database eligible for matching. This uses
3073
3369
  * categorical tokens. See: https://cloud.google.com/vertex-ai/docs/matching-engine/filtering
@@ -3083,6 +3379,23 @@ declare namespace gapi.client {
3083
3379
  crowdingAttribute?:
3084
3380
  string;
3085
3381
  }
3382
+ interface GoogleCloudAiplatformV1IndexDatapointNumericRestriction {
3383
+ /** The namespace of this restriction. e.g.: cost. */
3384
+ namespace?:
3385
+ string;
3386
+ /** This MUST be specified for queries and must NOT be specified for datapoints. */
3387
+ op?:
3388
+ string;
3389
+ /** Represents 64 bit float. */
3390
+ valueDouble?:
3391
+ number;
3392
+ /** Represents 32 bit float. */
3393
+ valueFloat?:
3394
+ number;
3395
+ /** Represents 64 bit integer. */
3396
+ valueInt?:
3397
+ string;
3398
+ }
3086
3399
  interface GoogleCloudAiplatformV1IndexDatapointRestriction {
3087
3400
  /** The attributes to allow in this namespace. e.g.: 'red' */
3088
3401
  allowList?:
@@ -3371,6 +3684,22 @@ declare namespace gapi.client {
3371
3684
  nextPageToken?:
3372
3685
  string;
3373
3686
  }
3687
+ interface GoogleCloudAiplatformV1ListFeatureGroupsResponse {
3688
+ /** The FeatureGroups matching the request. */
3689
+ featureGroups?:
3690
+ GoogleCloudAiplatformV1FeatureGroup[];
3691
+ /** 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. */
3692
+ nextPageToken?:
3693
+ string;
3694
+ }
3695
+ interface GoogleCloudAiplatformV1ListFeatureOnlineStoresResponse {
3696
+ /** The FeatureOnlineStores matching the request. */
3697
+ featureOnlineStores?:
3698
+ GoogleCloudAiplatformV1FeatureOnlineStore[];
3699
+ /** 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. */
3700
+ nextPageToken?:
3701
+ string;
3702
+ }
3374
3703
  interface GoogleCloudAiplatformV1ListFeaturesResponse {
3375
3704
  /** The Features matching the request. */
3376
3705
  features?:
@@ -3387,6 +3716,22 @@ declare namespace gapi.client {
3387
3716
  nextPageToken?:
3388
3717
  string;
3389
3718
  }
3719
+ interface GoogleCloudAiplatformV1ListFeatureViewsResponse {
3720
+ /** The FeatureViews matching the request. */
3721
+ featureViews?:
3722
+ GoogleCloudAiplatformV1FeatureView[];
3723
+ /** 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. */
3724
+ nextPageToken?:
3725
+ string;
3726
+ }
3727
+ interface GoogleCloudAiplatformV1ListFeatureViewSyncsResponse {
3728
+ /** The FeatureViewSyncs matching the request. */
3729
+ featureViewSyncs?:
3730
+ GoogleCloudAiplatformV1FeatureViewSync[];
3731
+ /** 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. */
3732
+ nextPageToken?:
3733
+ string;
3734
+ }
3390
3735
  interface GoogleCloudAiplatformV1ListHyperparameterTuningJobsResponse {
3391
3736
  /** List of HyperparameterTuningJobs in the requested page. HyperparameterTuningJob.trials of the jobs will be not be returned. */
3392
3737
  hyperparameterTuningJobs?:
@@ -8487,6 +8832,14 @@ declare namespace gapi.client {
8487
8832
  trials?:
8488
8833
  GoogleCloudAiplatformV1Trial[];
8489
8834
  }
8835
+ // tslint:disable-next-line:no-empty-interface
8836
+ interface GoogleCloudAiplatformV1SyncFeatureViewRequest {
8837
+ }
8838
+ interface GoogleCloudAiplatformV1SyncFeatureViewResponse {
8839
+ /** Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}` */
8840
+ featureViewSync?:
8841
+ string;
8842
+ }
8490
8843
  interface GoogleCloudAiplatformV1Tensor {
8491
8844
  /**
8492
8845
  * 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
@@ -8974,11 +9327,31 @@ declare namespace gapi.client {
8974
9327
  // tslint:disable-next-line:no-empty-interface
8975
9328
  interface GoogleCloudAiplatformV1UpdateExplanationDatasetResponse {
8976
9329
  }
9330
+ interface GoogleCloudAiplatformV1UpdateFeatureGroupOperationMetadata {
9331
+ /** Operation metadata for FeatureGroup. */
9332
+ genericMetadata?:
9333
+ GoogleCloudAiplatformV1GenericOperationMetadata;
9334
+ }
9335
+ interface GoogleCloudAiplatformV1UpdateFeatureOnlineStoreOperationMetadata {
9336
+ /** Operation metadata for FeatureOnlineStore. */
9337
+ genericMetadata?:
9338
+ GoogleCloudAiplatformV1GenericOperationMetadata;
9339
+ }
9340
+ interface GoogleCloudAiplatformV1UpdateFeatureOperationMetadata {
9341
+ /** Operation metadata for Feature Update. */
9342
+ genericMetadata?:
9343
+ GoogleCloudAiplatformV1GenericOperationMetadata;
9344
+ }
8977
9345
  interface GoogleCloudAiplatformV1UpdateFeaturestoreOperationMetadata {
8978
9346
  /** Operation metadata for Featurestore. */
8979
9347
  genericMetadata?:
8980
9348
  GoogleCloudAiplatformV1GenericOperationMetadata;
8981
9349
  }
9350
+ interface GoogleCloudAiplatformV1UpdateFeatureViewOperationMetadata {
9351
+ /** Operation metadata for FeatureView Update. */
9352
+ genericMetadata?:
9353
+ GoogleCloudAiplatformV1GenericOperationMetadata;
9354
+ }
8982
9355
  interface GoogleCloudAiplatformV1UpdateIndexOperationMetadata {
8983
9356
  /** The operation generic information. */
8984
9357
  genericMetadata?:
@@ -13568,11 +13941,2317 @@ declare namespace gapi.client {
13568
13941
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13569
13942
  uploadType?:
13570
13943
  string;
13571
- /** Request body */
13572
- resource:
13573
- GoogleCloudAiplatformV1DeployModelRequest;
13574
- }): Request<GoogleLongrunningOperation>;
13575
- deployModel(request: {
13944
+ /** Request body */
13945
+ resource:
13946
+ GoogleCloudAiplatformV1DeployModelRequest;
13947
+ }): Request<GoogleLongrunningOperation>;
13948
+ deployModel(request: {
13949
+ /** V1 error format. */
13950
+ "$.xgafv"?:
13951
+ string;
13952
+ /** OAuth access token. */
13953
+ access_token?:
13954
+ string;
13955
+ /** Data format for response. */
13956
+ alt?:
13957
+ string;
13958
+ /** JSONP */
13959
+ callback?:
13960
+ string;
13961
+ /** Required. The name of the Endpoint resource into which to deploy a Model. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
13962
+ endpoint:
13963
+ string;
13964
+ /** Selector specifying which fields to include in a partial response. */
13965
+ fields?:
13966
+ string;
13967
+ /** 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. */
13968
+ key?:
13969
+ string;
13970
+ /** OAuth 2.0 token for the current user. */
13971
+ oauth_token?:
13972
+ string;
13973
+ /** Returns response with indentations and line breaks. */
13974
+ prettyPrint?:
13975
+ boolean;
13976
+ /** 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. */
13977
+ quotaUser?:
13978
+ string;
13979
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
13980
+ upload_protocol?:
13981
+ string;
13982
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13983
+ uploadType?:
13984
+ string;
13985
+ },
13986
+ body: GoogleCloudAiplatformV1DeployModelRequest): Request<GoogleLongrunningOperation>;
13987
+ /**
13988
+ * Perform an online explanation. If deployed_model_id is specified, the corresponding DeployModel must have explanation_spec populated. If deployed_model_id is not specified, all
13989
+ * DeployedModels must have explanation_spec populated.
13990
+ */
13991
+ explain(request: {
13992
+ /** V1 error format. */
13993
+ "$.xgafv"?:
13994
+ string;
13995
+ /** OAuth access token. */
13996
+ access_token?:
13997
+ string;
13998
+ /** Data format for response. */
13999
+ alt?:
14000
+ string;
14001
+ /** JSONP */
14002
+ callback?:
14003
+ string;
14004
+ /** Required. The name of the Endpoint requested to serve the explanation. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14005
+ endpoint:
14006
+ string;
14007
+ /** Selector specifying which fields to include in a partial response. */
14008
+ fields?:
14009
+ string;
14010
+ /** 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. */
14011
+ key?:
14012
+ string;
14013
+ /** OAuth 2.0 token for the current user. */
14014
+ oauth_token?:
14015
+ string;
14016
+ /** Returns response with indentations and line breaks. */
14017
+ prettyPrint?:
14018
+ boolean;
14019
+ /** 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. */
14020
+ quotaUser?:
14021
+ string;
14022
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14023
+ upload_protocol?:
14024
+ string;
14025
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14026
+ uploadType?:
14027
+ string;
14028
+ /** Request body */
14029
+ resource:
14030
+ GoogleCloudAiplatformV1ExplainRequest;
14031
+ }): Request<GoogleCloudAiplatformV1ExplainResponse>;
14032
+ explain(request: {
14033
+ /** V1 error format. */
14034
+ "$.xgafv"?:
14035
+ string;
14036
+ /** OAuth access token. */
14037
+ access_token?:
14038
+ string;
14039
+ /** Data format for response. */
14040
+ alt?:
14041
+ string;
14042
+ /** JSONP */
14043
+ callback?:
14044
+ string;
14045
+ /** Required. The name of the Endpoint requested to serve the explanation. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14046
+ endpoint:
14047
+ string;
14048
+ /** Selector specifying which fields to include in a partial response. */
14049
+ fields?:
14050
+ string;
14051
+ /** 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. */
14052
+ key?:
14053
+ string;
14054
+ /** OAuth 2.0 token for the current user. */
14055
+ oauth_token?:
14056
+ string;
14057
+ /** Returns response with indentations and line breaks. */
14058
+ prettyPrint?:
14059
+ boolean;
14060
+ /** 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. */
14061
+ quotaUser?:
14062
+ string;
14063
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14064
+ upload_protocol?:
14065
+ string;
14066
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14067
+ uploadType?:
14068
+ string;
14069
+ },
14070
+ body: GoogleCloudAiplatformV1ExplainRequest): Request<GoogleCloudAiplatformV1ExplainResponse>;
14071
+ /** Gets an Endpoint. */
14072
+ get(request?: {
14073
+ /** V1 error format. */
14074
+ "$.xgafv"?:
14075
+ string;
14076
+ /** OAuth access token. */
14077
+ access_token?:
14078
+ string;
14079
+ /** Data format for response. */
14080
+ alt?:
14081
+ string;
14082
+ /** JSONP */
14083
+ callback?:
14084
+ string;
14085
+ /** Selector specifying which fields to include in a partial response. */
14086
+ fields?:
14087
+ string;
14088
+ /** 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. */
14089
+ key?:
14090
+ string;
14091
+ /** Required. The name of the Endpoint resource. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14092
+ name:
14093
+ string;
14094
+ /** OAuth 2.0 token for the current user. */
14095
+ oauth_token?:
14096
+ string;
14097
+ /** Returns response with indentations and line breaks. */
14098
+ prettyPrint?:
14099
+ boolean;
14100
+ /** 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. */
14101
+ quotaUser?:
14102
+ string;
14103
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14104
+ upload_protocol?:
14105
+ string;
14106
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14107
+ uploadType?:
14108
+ string;
14109
+ }): Request<GoogleCloudAiplatformV1Endpoint>;
14110
+ /** Lists Endpoints in a Location. */
14111
+ list(request?: {
14112
+ /** V1 error format. */
14113
+ "$.xgafv"?:
14114
+ string;
14115
+ /** OAuth access token. */
14116
+ access_token?:
14117
+ string;
14118
+ /** Data format for response. */
14119
+ alt?:
14120
+ string;
14121
+ /** JSONP */
14122
+ callback?:
14123
+ string;
14124
+ /** Selector specifying which fields to include in a partial response. */
14125
+ fields?:
14126
+ string;
14127
+ /**
14128
+ * Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `endpoint` supports = and !=. `endpoint`
14129
+ * represents the Endpoint ID, i.e. the last segment of the Endpoint's resource name. * `display_name` supports = and, != * `labels` supports general map functions that is: *
14130
+ * `labels.key=value` - key:value equality * `labels.key:* or labels:key - key existence * A key including a space must be quoted. `labels."a key"`. Some examples: * `endpoint=1` *
14131
+ * `displayName="myDisplayName"` * `labels.myKey="myValue"`
14132
+ */
14133
+ filter?:
14134
+ string;
14135
+ /** 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. */
14136
+ key?:
14137
+ string;
14138
+ /** OAuth 2.0 token for the current user. */
14139
+ oauth_token?:
14140
+ string;
14141
+ /**
14142
+ * A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `display_name` * `create_time` *
14143
+ * `update_time` Example: `display_name, create_time desc`.
14144
+ */
14145
+ orderBy?:
14146
+ string;
14147
+ /** Optional. The standard list page size. */
14148
+ pageSize?:
14149
+ number;
14150
+ /** Optional. The standard list page token. Typically obtained via ListEndpointsResponse.next_page_token of the previous EndpointService.ListEndpoints call. */
14151
+ pageToken?:
14152
+ string;
14153
+ /** Required. The resource name of the Location from which to list the Endpoints. Format: `projects/{project}/locations/{location}` */
14154
+ parent:
14155
+ string;
14156
+ /** Returns response with indentations and line breaks. */
14157
+ prettyPrint?:
14158
+ boolean;
14159
+ /** 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. */
14160
+ quotaUser?:
14161
+ string;
14162
+ /** Optional. Mask specifying which fields to read. */
14163
+ readMask?:
14164
+ string;
14165
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14166
+ upload_protocol?:
14167
+ string;
14168
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14169
+ uploadType?:
14170
+ string;
14171
+ }): Request<GoogleCloudAiplatformV1ListEndpointsResponse>;
14172
+ /**
14173
+ * Updates an existing deployed model. Updatable fields include `min_replica_count`, `max_replica_count`, `autoscaling_metric_specs`, `disable_container_logging` (v1 only), and
14174
+ * `enable_container_logging` (v1beta1 only).
14175
+ */
14176
+ mutateDeployedModel(request: {
14177
+ /** V1 error format. */
14178
+ "$.xgafv"?:
14179
+ string;
14180
+ /** OAuth access token. */
14181
+ access_token?:
14182
+ string;
14183
+ /** Data format for response. */
14184
+ alt?:
14185
+ string;
14186
+ /** JSONP */
14187
+ callback?:
14188
+ string;
14189
+ /** Required. The name of the Endpoint resource into which to mutate a DeployedModel. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14190
+ endpoint:
14191
+ string;
14192
+ /** Selector specifying which fields to include in a partial response. */
14193
+ fields?:
14194
+ string;
14195
+ /** 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. */
14196
+ key?:
14197
+ string;
14198
+ /** OAuth 2.0 token for the current user. */
14199
+ oauth_token?:
14200
+ string;
14201
+ /** Returns response with indentations and line breaks. */
14202
+ prettyPrint?:
14203
+ boolean;
14204
+ /** 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. */
14205
+ quotaUser?:
14206
+ string;
14207
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14208
+ upload_protocol?:
14209
+ string;
14210
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14211
+ uploadType?:
14212
+ string;
14213
+ /** Request body */
14214
+ resource:
14215
+ GoogleCloudAiplatformV1MutateDeployedModelRequest;
14216
+ }): Request<GoogleLongrunningOperation>;
14217
+ mutateDeployedModel(request: {
14218
+ /** V1 error format. */
14219
+ "$.xgafv"?:
14220
+ string;
14221
+ /** OAuth access token. */
14222
+ access_token?:
14223
+ string;
14224
+ /** Data format for response. */
14225
+ alt?:
14226
+ string;
14227
+ /** JSONP */
14228
+ callback?:
14229
+ string;
14230
+ /** Required. The name of the Endpoint resource into which to mutate a DeployedModel. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14231
+ endpoint:
14232
+ string;
14233
+ /** Selector specifying which fields to include in a partial response. */
14234
+ fields?:
14235
+ string;
14236
+ /** 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. */
14237
+ key?:
14238
+ string;
14239
+ /** OAuth 2.0 token for the current user. */
14240
+ oauth_token?:
14241
+ string;
14242
+ /** Returns response with indentations and line breaks. */
14243
+ prettyPrint?:
14244
+ boolean;
14245
+ /** 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. */
14246
+ quotaUser?:
14247
+ string;
14248
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14249
+ upload_protocol?:
14250
+ string;
14251
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14252
+ uploadType?:
14253
+ string;
14254
+ },
14255
+ body: GoogleCloudAiplatformV1MutateDeployedModelRequest): Request<GoogleLongrunningOperation>;
14256
+ /** Updates an Endpoint. */
14257
+ patch(request: {
14258
+ /** V1 error format. */
14259
+ "$.xgafv"?:
14260
+ string;
14261
+ /** OAuth access token. */
14262
+ access_token?:
14263
+ string;
14264
+ /** Data format for response. */
14265
+ alt?:
14266
+ string;
14267
+ /** JSONP */
14268
+ callback?:
14269
+ string;
14270
+ /** Selector specifying which fields to include in a partial response. */
14271
+ fields?:
14272
+ string;
14273
+ /** 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. */
14274
+ key?:
14275
+ string;
14276
+ /** Output only. The resource name of the Endpoint. */
14277
+ name:
14278
+ string;
14279
+ /** OAuth 2.0 token for the current user. */
14280
+ oauth_token?:
14281
+ string;
14282
+ /** Returns response with indentations and line breaks. */
14283
+ prettyPrint?:
14284
+ boolean;
14285
+ /** 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. */
14286
+ quotaUser?:
14287
+ string;
14288
+ /** Required. The update mask applies to the resource. See google.protobuf.FieldMask. */
14289
+ updateMask?:
14290
+ string;
14291
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14292
+ upload_protocol?:
14293
+ string;
14294
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14295
+ uploadType?:
14296
+ string;
14297
+ /** Request body */
14298
+ resource:
14299
+ GoogleCloudAiplatformV1Endpoint;
14300
+ }): Request<GoogleCloudAiplatformV1Endpoint>;
14301
+ patch(request: {
14302
+ /** V1 error format. */
14303
+ "$.xgafv"?:
14304
+ string;
14305
+ /** OAuth access token. */
14306
+ access_token?:
14307
+ string;
14308
+ /** Data format for response. */
14309
+ alt?:
14310
+ string;
14311
+ /** JSONP */
14312
+ callback?:
14313
+ string;
14314
+ /** Selector specifying which fields to include in a partial response. */
14315
+ fields?:
14316
+ string;
14317
+ /** 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. */
14318
+ key?:
14319
+ string;
14320
+ /** Output only. The resource name of the Endpoint. */
14321
+ name:
14322
+ string;
14323
+ /** OAuth 2.0 token for the current user. */
14324
+ oauth_token?:
14325
+ string;
14326
+ /** Returns response with indentations and line breaks. */
14327
+ prettyPrint?:
14328
+ boolean;
14329
+ /** 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. */
14330
+ quotaUser?:
14331
+ string;
14332
+ /** Required. The update mask applies to the resource. See google.protobuf.FieldMask. */
14333
+ updateMask?:
14334
+ string;
14335
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14336
+ upload_protocol?:
14337
+ string;
14338
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14339
+ uploadType?:
14340
+ string;
14341
+ },
14342
+ body: GoogleCloudAiplatformV1Endpoint): Request<GoogleCloudAiplatformV1Endpoint>;
14343
+ /** Perform an online prediction. */
14344
+ predict(request: {
14345
+ /** V1 error format. */
14346
+ "$.xgafv"?:
14347
+ string;
14348
+ /** OAuth access token. */
14349
+ access_token?:
14350
+ string;
14351
+ /** Data format for response. */
14352
+ alt?:
14353
+ string;
14354
+ /** JSONP */
14355
+ callback?:
14356
+ string;
14357
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14358
+ endpoint:
14359
+ string;
14360
+ /** Selector specifying which fields to include in a partial response. */
14361
+ fields?:
14362
+ string;
14363
+ /** 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. */
14364
+ key?:
14365
+ string;
14366
+ /** OAuth 2.0 token for the current user. */
14367
+ oauth_token?:
14368
+ string;
14369
+ /** Returns response with indentations and line breaks. */
14370
+ prettyPrint?:
14371
+ boolean;
14372
+ /** 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. */
14373
+ quotaUser?:
14374
+ string;
14375
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14376
+ upload_protocol?:
14377
+ string;
14378
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14379
+ uploadType?:
14380
+ string;
14381
+ /** Request body */
14382
+ resource:
14383
+ GoogleCloudAiplatformV1PredictRequest;
14384
+ }): Request<GoogleCloudAiplatformV1PredictResponse>;
14385
+ predict(request: {
14386
+ /** V1 error format. */
14387
+ "$.xgafv"?:
14388
+ string;
14389
+ /** OAuth access token. */
14390
+ access_token?:
14391
+ string;
14392
+ /** Data format for response. */
14393
+ alt?:
14394
+ string;
14395
+ /** JSONP */
14396
+ callback?:
14397
+ string;
14398
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14399
+ endpoint:
14400
+ string;
14401
+ /** Selector specifying which fields to include in a partial response. */
14402
+ fields?:
14403
+ string;
14404
+ /** 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. */
14405
+ key?:
14406
+ string;
14407
+ /** OAuth 2.0 token for the current user. */
14408
+ oauth_token?:
14409
+ string;
14410
+ /** Returns response with indentations and line breaks. */
14411
+ prettyPrint?:
14412
+ boolean;
14413
+ /** 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. */
14414
+ quotaUser?:
14415
+ string;
14416
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14417
+ upload_protocol?:
14418
+ string;
14419
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14420
+ uploadType?:
14421
+ string;
14422
+ },
14423
+ body: GoogleCloudAiplatformV1PredictRequest): Request<GoogleCloudAiplatformV1PredictResponse>;
14424
+ /**
14425
+ * Perform an online prediction with an arbitrary HTTP payload. The response includes the following HTTP headers: * `X-Vertex-AI-Endpoint-Id`: ID of the Endpoint that served this
14426
+ * prediction. * `X-Vertex-AI-Deployed-Model-Id`: ID of the Endpoint's DeployedModel that served this prediction.
14427
+ */
14428
+ rawPredict(request: {
14429
+ /** V1 error format. */
14430
+ "$.xgafv"?:
14431
+ string;
14432
+ /** OAuth access token. */
14433
+ access_token?:
14434
+ string;
14435
+ /** Data format for response. */
14436
+ alt?:
14437
+ string;
14438
+ /** JSONP */
14439
+ callback?:
14440
+ string;
14441
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14442
+ endpoint:
14443
+ string;
14444
+ /** Selector specifying which fields to include in a partial response. */
14445
+ fields?:
14446
+ string;
14447
+ /** 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. */
14448
+ key?:
14449
+ string;
14450
+ /** OAuth 2.0 token for the current user. */
14451
+ oauth_token?:
14452
+ string;
14453
+ /** Returns response with indentations and line breaks. */
14454
+ prettyPrint?:
14455
+ boolean;
14456
+ /** 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. */
14457
+ quotaUser?:
14458
+ string;
14459
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14460
+ upload_protocol?:
14461
+ string;
14462
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14463
+ uploadType?:
14464
+ string;
14465
+ /** Request body */
14466
+ resource:
14467
+ GoogleCloudAiplatformV1RawPredictRequest;
14468
+ }): Request<GoogleApiHttpBody>;
14469
+ rawPredict(request: {
14470
+ /** V1 error format. */
14471
+ "$.xgafv"?:
14472
+ string;
14473
+ /** OAuth access token. */
14474
+ access_token?:
14475
+ string;
14476
+ /** Data format for response. */
14477
+ alt?:
14478
+ string;
14479
+ /** JSONP */
14480
+ callback?:
14481
+ string;
14482
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14483
+ endpoint:
14484
+ string;
14485
+ /** Selector specifying which fields to include in a partial response. */
14486
+ fields?:
14487
+ string;
14488
+ /** 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. */
14489
+ key?:
14490
+ string;
14491
+ /** OAuth 2.0 token for the current user. */
14492
+ oauth_token?:
14493
+ string;
14494
+ /** Returns response with indentations and line breaks. */
14495
+ prettyPrint?:
14496
+ boolean;
14497
+ /** 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. */
14498
+ quotaUser?:
14499
+ string;
14500
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14501
+ upload_protocol?:
14502
+ string;
14503
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14504
+ uploadType?:
14505
+ string;
14506
+ },
14507
+ body: GoogleCloudAiplatformV1RawPredictRequest): Request<GoogleApiHttpBody>;
14508
+ /** Perform a server-side streaming online prediction request for Vertex LLM streaming. */
14509
+ serverStreamingPredict(request: {
14510
+ /** V1 error format. */
14511
+ "$.xgafv"?:
14512
+ string;
14513
+ /** OAuth access token. */
14514
+ access_token?:
14515
+ string;
14516
+ /** Data format for response. */
14517
+ alt?:
14518
+ string;
14519
+ /** JSONP */
14520
+ callback?:
14521
+ string;
14522
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14523
+ endpoint:
14524
+ string;
14525
+ /** Selector specifying which fields to include in a partial response. */
14526
+ fields?:
14527
+ string;
14528
+ /** 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. */
14529
+ key?:
14530
+ string;
14531
+ /** OAuth 2.0 token for the current user. */
14532
+ oauth_token?:
14533
+ string;
14534
+ /** Returns response with indentations and line breaks. */
14535
+ prettyPrint?:
14536
+ boolean;
14537
+ /** 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. */
14538
+ quotaUser?:
14539
+ string;
14540
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14541
+ upload_protocol?:
14542
+ string;
14543
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14544
+ uploadType?:
14545
+ string;
14546
+ /** Request body */
14547
+ resource:
14548
+ GoogleCloudAiplatformV1StreamingPredictRequest;
14549
+ }): Request<GoogleCloudAiplatformV1StreamingPredictResponse>;
14550
+ serverStreamingPredict(request: {
14551
+ /** V1 error format. */
14552
+ "$.xgafv"?:
14553
+ string;
14554
+ /** OAuth access token. */
14555
+ access_token?:
14556
+ string;
14557
+ /** Data format for response. */
14558
+ alt?:
14559
+ string;
14560
+ /** JSONP */
14561
+ callback?:
14562
+ string;
14563
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14564
+ endpoint:
14565
+ string;
14566
+ /** Selector specifying which fields to include in a partial response. */
14567
+ fields?:
14568
+ string;
14569
+ /** 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. */
14570
+ key?:
14571
+ string;
14572
+ /** OAuth 2.0 token for the current user. */
14573
+ oauth_token?:
14574
+ string;
14575
+ /** Returns response with indentations and line breaks. */
14576
+ prettyPrint?:
14577
+ boolean;
14578
+ /** 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. */
14579
+ quotaUser?:
14580
+ string;
14581
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14582
+ upload_protocol?:
14583
+ string;
14584
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14585
+ uploadType?:
14586
+ string;
14587
+ },
14588
+ body: GoogleCloudAiplatformV1StreamingPredictRequest): Request<GoogleCloudAiplatformV1StreamingPredictResponse>;
14589
+ /** Undeploys a Model from an Endpoint, removing a DeployedModel from it, and freeing all resources it's using. */
14590
+ undeployModel(request: {
14591
+ /** V1 error format. */
14592
+ "$.xgafv"?:
14593
+ string;
14594
+ /** OAuth access token. */
14595
+ access_token?:
14596
+ string;
14597
+ /** Data format for response. */
14598
+ alt?:
14599
+ string;
14600
+ /** JSONP */
14601
+ callback?:
14602
+ string;
14603
+ /** Required. The name of the Endpoint resource from which to undeploy a Model. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14604
+ endpoint:
14605
+ string;
14606
+ /** Selector specifying which fields to include in a partial response. */
14607
+ fields?:
14608
+ string;
14609
+ /** 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. */
14610
+ key?:
14611
+ string;
14612
+ /** OAuth 2.0 token for the current user. */
14613
+ oauth_token?:
14614
+ string;
14615
+ /** Returns response with indentations and line breaks. */
14616
+ prettyPrint?:
14617
+ boolean;
14618
+ /** 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. */
14619
+ quotaUser?:
14620
+ string;
14621
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14622
+ upload_protocol?:
14623
+ string;
14624
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14625
+ uploadType?:
14626
+ string;
14627
+ /** Request body */
14628
+ resource:
14629
+ GoogleCloudAiplatformV1UndeployModelRequest;
14630
+ }): Request<GoogleLongrunningOperation>;
14631
+ undeployModel(request: {
14632
+ /** V1 error format. */
14633
+ "$.xgafv"?:
14634
+ string;
14635
+ /** OAuth access token. */
14636
+ access_token?:
14637
+ string;
14638
+ /** Data format for response. */
14639
+ alt?:
14640
+ string;
14641
+ /** JSONP */
14642
+ callback?:
14643
+ string;
14644
+ /** Required. The name of the Endpoint resource from which to undeploy a Model. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14645
+ endpoint:
14646
+ string;
14647
+ /** Selector specifying which fields to include in a partial response. */
14648
+ fields?:
14649
+ string;
14650
+ /** 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. */
14651
+ key?:
14652
+ string;
14653
+ /** OAuth 2.0 token for the current user. */
14654
+ oauth_token?:
14655
+ string;
14656
+ /** Returns response with indentations and line breaks. */
14657
+ prettyPrint?:
14658
+ boolean;
14659
+ /** 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. */
14660
+ quotaUser?:
14661
+ string;
14662
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14663
+ upload_protocol?:
14664
+ string;
14665
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14666
+ uploadType?:
14667
+ string;
14668
+ },
14669
+ body: GoogleCloudAiplatformV1UndeployModelRequest): Request<GoogleLongrunningOperation>;
14670
+ operations:
14671
+ OperationsResource;
14672
+ }
14673
+ interface OperationsResource {
14674
+ /**
14675
+ * 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
14676
+ * support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
14677
+ */
14678
+ delete(request?: {
14679
+ /** V1 error format. */
14680
+ "$.xgafv"?:
14681
+ string;
14682
+ /** OAuth access token. */
14683
+ access_token?:
14684
+ string;
14685
+ /** Data format for response. */
14686
+ alt?:
14687
+ string;
14688
+ /** JSONP */
14689
+ callback?:
14690
+ string;
14691
+ /** Selector specifying which fields to include in a partial response. */
14692
+ fields?:
14693
+ string;
14694
+ /** 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. */
14695
+ key?:
14696
+ string;
14697
+ /** The name of the operation resource to be deleted. */
14698
+ name:
14699
+ string;
14700
+ /** OAuth 2.0 token for the current user. */
14701
+ oauth_token?:
14702
+ string;
14703
+ /** Returns response with indentations and line breaks. */
14704
+ prettyPrint?:
14705
+ boolean;
14706
+ /** 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. */
14707
+ quotaUser?:
14708
+ string;
14709
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14710
+ upload_protocol?:
14711
+ string;
14712
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14713
+ uploadType?:
14714
+ string;
14715
+ }): Request<{}>;
14716
+ /** 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. */
14717
+ get(request?: {
14718
+ /** V1 error format. */
14719
+ "$.xgafv"?:
14720
+ string;
14721
+ /** OAuth access token. */
14722
+ access_token?:
14723
+ string;
14724
+ /** Data format for response. */
14725
+ alt?:
14726
+ string;
14727
+ /** JSONP */
14728
+ callback?:
14729
+ string;
14730
+ /** Selector specifying which fields to include in a partial response. */
14731
+ fields?:
14732
+ string;
14733
+ /** 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. */
14734
+ key?:
14735
+ string;
14736
+ /** The name of the operation resource. */
14737
+ name:
14738
+ string;
14739
+ /** OAuth 2.0 token for the current user. */
14740
+ oauth_token?:
14741
+ string;
14742
+ /** Returns response with indentations and line breaks. */
14743
+ prettyPrint?:
14744
+ boolean;
14745
+ /** 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. */
14746
+ quotaUser?:
14747
+ string;
14748
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14749
+ upload_protocol?:
14750
+ string;
14751
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14752
+ uploadType?:
14753
+ string;
14754
+ }): Request<GoogleLongrunningOperation>;
14755
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
14756
+ listWait(request?: {
14757
+ /** V1 error format. */
14758
+ "$.xgafv"?:
14759
+ string;
14760
+ /** OAuth access token. */
14761
+ access_token?:
14762
+ string;
14763
+ /** Data format for response. */
14764
+ alt?:
14765
+ string;
14766
+ /** JSONP */
14767
+ callback?:
14768
+ string;
14769
+ /** Selector specifying which fields to include in a partial response. */
14770
+ fields?:
14771
+ string;
14772
+ /** The standard list filter. */
14773
+ filter?:
14774
+ string;
14775
+ /** 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. */
14776
+ key?:
14777
+ string;
14778
+ /** The name of the operation's parent resource. */
14779
+ name:
14780
+ string;
14781
+ /** OAuth 2.0 token for the current user. */
14782
+ oauth_token?:
14783
+ string;
14784
+ /** The standard list page size. */
14785
+ pageSize?:
14786
+ number;
14787
+ /** The standard list page token. */
14788
+ pageToken?:
14789
+ string;
14790
+ /** Returns response with indentations and line breaks. */
14791
+ prettyPrint?:
14792
+ boolean;
14793
+ /** 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. */
14794
+ quotaUser?:
14795
+ string;
14796
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14797
+ upload_protocol?:
14798
+ string;
14799
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14800
+ uploadType?:
14801
+ string;
14802
+ }): Request<GoogleLongrunningListOperationsResponse>;
14803
+ /**
14804
+ * 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
14805
+ * 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
14806
+ * `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
14807
+ * an immediate response is no guarantee that the operation is done.
14808
+ */
14809
+ wait(request?: {
14810
+ /** V1 error format. */
14811
+ "$.xgafv"?:
14812
+ string;
14813
+ /** OAuth access token. */
14814
+ access_token?:
14815
+ string;
14816
+ /** Data format for response. */
14817
+ alt?:
14818
+ string;
14819
+ /** JSONP */
14820
+ callback?:
14821
+ string;
14822
+ /** Selector specifying which fields to include in a partial response. */
14823
+ fields?:
14824
+ string;
14825
+ /** 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. */
14826
+ key?:
14827
+ string;
14828
+ /** The name of the operation resource to wait on. */
14829
+ name:
14830
+ string;
14831
+ /** OAuth 2.0 token for the current user. */
14832
+ oauth_token?:
14833
+ string;
14834
+ /** Returns response with indentations and line breaks. */
14835
+ prettyPrint?:
14836
+ boolean;
14837
+ /** 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. */
14838
+ quotaUser?:
14839
+ string;
14840
+ /**
14841
+ * 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
14842
+ * specified, the shorter one will be used.
14843
+ */
14844
+ timeout?:
14845
+ string;
14846
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14847
+ upload_protocol?:
14848
+ string;
14849
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14850
+ uploadType?:
14851
+ string;
14852
+ }): Request<GoogleLongrunningOperation>;
14853
+ }
14854
+ interface FeaturesResource {
14855
+ /** Creates a new Feature in a given FeatureGroup. */
14856
+ create(request: {
14857
+ /** V1 error format. */
14858
+ "$.xgafv"?:
14859
+ string;
14860
+ /** OAuth access token. */
14861
+ access_token?:
14862
+ string;
14863
+ /** Data format for response. */
14864
+ alt?:
14865
+ string;
14866
+ /** JSONP */
14867
+ callback?:
14868
+ string;
14869
+ /**
14870
+ * 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
14871
+ * `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
14872
+ */
14873
+ featureId?:
14874
+ string;
14875
+ /** Selector specifying which fields to include in a partial response. */
14876
+ fields?:
14877
+ string;
14878
+ /** 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. */
14879
+ key?:
14880
+ string;
14881
+ /** OAuth 2.0 token for the current user. */
14882
+ oauth_token?:
14883
+ string;
14884
+ /**
14885
+ * Required. The resource name of the EntityType or FeatureGroup to create a Feature. Format for entity_type as parent:
14886
+ * `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent:
14887
+ * `projects/{project}/locations/{location}/featureGroups/{feature_group}`
14888
+ */
14889
+ parent:
14890
+ string;
14891
+ /** Returns response with indentations and line breaks. */
14892
+ prettyPrint?:
14893
+ boolean;
14894
+ /** 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. */
14895
+ quotaUser?:
14896
+ string;
14897
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14898
+ upload_protocol?:
14899
+ string;
14900
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14901
+ uploadType?:
14902
+ string;
14903
+ /** Request body */
14904
+ resource:
14905
+ GoogleCloudAiplatformV1Feature;
14906
+ }): Request<GoogleLongrunningOperation>;
14907
+ create(request: {
14908
+ /** V1 error format. */
14909
+ "$.xgafv"?:
14910
+ string;
14911
+ /** OAuth access token. */
14912
+ access_token?:
14913
+ string;
14914
+ /** Data format for response. */
14915
+ alt?:
14916
+ string;
14917
+ /** JSONP */
14918
+ callback?:
14919
+ string;
14920
+ /**
14921
+ * 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
14922
+ * `[a-z0-9_]`. The first character cannot be a number. The value must be unique within an EntityType/FeatureGroup.
14923
+ */
14924
+ featureId?:
14925
+ string;
14926
+ /** Selector specifying which fields to include in a partial response. */
14927
+ fields?:
14928
+ string;
14929
+ /** 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. */
14930
+ key?:
14931
+ string;
14932
+ /** OAuth 2.0 token for the current user. */
14933
+ oauth_token?:
14934
+ string;
14935
+ /**
14936
+ * Required. The resource name of the EntityType or FeatureGroup to create a Feature. Format for entity_type as parent:
14937
+ * `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent:
14938
+ * `projects/{project}/locations/{location}/featureGroups/{feature_group}`
14939
+ */
14940
+ parent:
14941
+ string;
14942
+ /** Returns response with indentations and line breaks. */
14943
+ prettyPrint?:
14944
+ boolean;
14945
+ /** 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. */
14946
+ quotaUser?:
14947
+ string;
14948
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14949
+ upload_protocol?:
14950
+ string;
14951
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14952
+ uploadType?:
14953
+ string;
14954
+ },
14955
+ body: GoogleCloudAiplatformV1Feature): Request<GoogleLongrunningOperation>;
14956
+ /** Deletes a single Feature. */
14957
+ delete(request?: {
14958
+ /** V1 error format. */
14959
+ "$.xgafv"?:
14960
+ string;
14961
+ /** OAuth access token. */
14962
+ access_token?:
14963
+ string;
14964
+ /** Data format for response. */
14965
+ alt?:
14966
+ string;
14967
+ /** JSONP */
14968
+ callback?:
14969
+ string;
14970
+ /** Selector specifying which fields to include in a partial response. */
14971
+ fields?:
14972
+ string;
14973
+ /** 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. */
14974
+ key?:
14975
+ string;
14976
+ /**
14977
+ * Required. The name of the Features to be deleted. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}`
14978
+ * `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}`
14979
+ */
14980
+ name:
14981
+ string;
14982
+ /** OAuth 2.0 token for the current user. */
14983
+ oauth_token?:
14984
+ string;
14985
+ /** Returns response with indentations and line breaks. */
14986
+ prettyPrint?:
14987
+ boolean;
14988
+ /** 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. */
14989
+ quotaUser?:
14990
+ string;
14991
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14992
+ upload_protocol?:
14993
+ string;
14994
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14995
+ uploadType?:
14996
+ string;
14997
+ }): Request<GoogleLongrunningOperation>;
14998
+ /** Gets details of a single Feature. */
14999
+ get(request?: {
15000
+ /** V1 error format. */
15001
+ "$.xgafv"?:
15002
+ string;
15003
+ /** OAuth access token. */
15004
+ access_token?:
15005
+ string;
15006
+ /** Data format for response. */
15007
+ alt?:
15008
+ string;
15009
+ /** JSONP */
15010
+ callback?:
15011
+ string;
15012
+ /** Selector specifying which fields to include in a partial response. */
15013
+ fields?:
15014
+ string;
15015
+ /** 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. */
15016
+ key?:
15017
+ string;
15018
+ /**
15019
+ * Required. The name of the Feature resource. Format for entity_type as parent: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}`
15020
+ * Format for feature_group as parent: `projects/{project}/locations/{location}/featureGroups/{feature_group}`
15021
+ */
15022
+ name:
15023
+ string;
15024
+ /** OAuth 2.0 token for the current user. */
15025
+ oauth_token?:
15026
+ string;
15027
+ /** Returns response with indentations and line breaks. */
15028
+ prettyPrint?:
15029
+ boolean;
15030
+ /** 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. */
15031
+ quotaUser?:
15032
+ string;
15033
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15034
+ upload_protocol?:
15035
+ string;
15036
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15037
+ uploadType?:
15038
+ string;
15039
+ }): Request<GoogleCloudAiplatformV1Feature>;
15040
+ /** Lists Features in a given FeatureGroup. */
15041
+ list(request?: {
15042
+ /** V1 error format. */
15043
+ "$.xgafv"?:
15044
+ string;
15045
+ /** OAuth access token. */
15046
+ access_token?:
15047
+ string;
15048
+ /** Data format for response. */
15049
+ alt?:
15050
+ string;
15051
+ /** JSONP */
15052
+ callback?:
15053
+ string;
15054
+ /** Selector specifying which fields to include in a partial response. */
15055
+ fields?:
15056
+ string;
15057
+ /**
15058
+ * Lists the Features that match the filter expression. The following filters are supported: * `value_type`: Supports = and != comparisons. * `create_time`: Supports =, !=, <, >,
15059
+ * >=, and <= comparisons. Values must be in RFC 3339 format. * `update_time`: Supports =, !=, <, >, >=, and <= comparisons. Values must be in RFC 3339 format. * `labels`: Supports
15060
+ * 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
15061
+ * > \"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
15062
+ * (active: yes) and (env: prod) labels. * `labels.env: *` --> Any Feature which has a label with 'env' as the key.
15063
+ */
15064
+ filter?:
15065
+ string;
15066
+ /** 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. */
15067
+ key?:
15068
+ string;
15069
+ /**
15070
+ * Only applicable for Vertex AI Feature Store (Legacy). If set, return the most recent ListFeaturesRequest.latest_stats_count of stats for each Feature in response. Valid value is
15071
+ * [0, 10]. If number of stats exists < ListFeaturesRequest.latest_stats_count, return all existing stats.
15072
+ */
15073
+ latestStatsCount?:
15074
+ number;
15075
+ /** OAuth 2.0 token for the current user. */
15076
+ oauth_token?:
15077
+ string;
15078
+ /**
15079
+ * 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
15080
+ * supported for FeatureRegistry Feature) * `create_time` * `update_time`
15081
+ */
15082
+ orderBy?:
15083
+ string;
15084
+ /**
15085
+ * 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
15086
+ * value greater than 1000 will be coerced to 1000.
15087
+ */
15088
+ pageSize?:
15089
+ number;
15090
+ /**
15091
+ * A page token, received from a previous FeaturestoreService.ListFeatures call or FeatureRegistryService.ListFeatures call. Provide this to retrieve the subsequent page. When
15092
+ * paginating, all other parameters provided to FeaturestoreService.ListFeatures or or FeatureRegistryService.ListFeatures must match the call that provided the page token.
15093
+ */
15094
+ pageToken?:
15095
+ string;
15096
+ /**
15097
+ * Required. The resource name of the Location to list Features. Format for entity_type as parent:
15098
+ * `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}` Format for feature_group as parent:
15099
+ * `projects/{project}/locations/{location}/featureGroups/{feature_group}`
15100
+ */
15101
+ parent:
15102
+ string;
15103
+ /** Returns response with indentations and line breaks. */
15104
+ prettyPrint?:
15105
+ boolean;
15106
+ /** 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. */
15107
+ quotaUser?:
15108
+ string;
15109
+ /** Mask specifying which fields to read. */
15110
+ readMask?:
15111
+ string;
15112
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15113
+ upload_protocol?:
15114
+ string;
15115
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15116
+ uploadType?:
15117
+ string;
15118
+ }): Request<GoogleCloudAiplatformV1ListFeaturesResponse>;
15119
+ /** Updates the parameters of a single Feature. */
15120
+ patch(request: {
15121
+ /** V1 error format. */
15122
+ "$.xgafv"?:
15123
+ string;
15124
+ /** OAuth access token. */
15125
+ access_token?:
15126
+ string;
15127
+ /** Data format for response. */
15128
+ alt?:
15129
+ string;
15130
+ /** JSONP */
15131
+ callback?:
15132
+ string;
15133
+ /** Selector specifying which fields to include in a partial response. */
15134
+ fields?:
15135
+ string;
15136
+ /** 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. */
15137
+ key?:
15138
+ string;
15139
+ /**
15140
+ * Immutable. Name of the Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}`
15141
+ * `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}` The last part feature is assigned by the client. The feature can be up to 64
15142
+ * characters long and can consist only of ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will be unique given an entity
15143
+ * type.
15144
+ */
15145
+ name:
15146
+ string;
15147
+ /** OAuth 2.0 token for the current user. */
15148
+ oauth_token?:
15149
+ string;
15150
+ /** Returns response with indentations and line breaks. */
15151
+ prettyPrint?:
15152
+ boolean;
15153
+ /** 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. */
15154
+ quotaUser?:
15155
+ string;
15156
+ /**
15157
+ * 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
15158
+ * 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.
15159
+ * Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistry Feature)
15160
+ */
15161
+ updateMask?:
15162
+ string;
15163
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15164
+ upload_protocol?:
15165
+ string;
15166
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15167
+ uploadType?:
15168
+ string;
15169
+ /** Request body */
15170
+ resource:
15171
+ GoogleCloudAiplatformV1Feature;
15172
+ }): Request<GoogleLongrunningOperation>;
15173
+ patch(request: {
15174
+ /** V1 error format. */
15175
+ "$.xgafv"?:
15176
+ string;
15177
+ /** OAuth access token. */
15178
+ access_token?:
15179
+ string;
15180
+ /** Data format for response. */
15181
+ alt?:
15182
+ string;
15183
+ /** JSONP */
15184
+ callback?:
15185
+ string;
15186
+ /** Selector specifying which fields to include in a partial response. */
15187
+ fields?:
15188
+ string;
15189
+ /** 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. */
15190
+ key?:
15191
+ string;
15192
+ /**
15193
+ * Immutable. Name of the Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}`
15194
+ * `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}` The last part feature is assigned by the client. The feature can be up to 64
15195
+ * characters long and can consist only of ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will be unique given an entity
15196
+ * type.
15197
+ */
15198
+ name:
15199
+ string;
15200
+ /** OAuth 2.0 token for the current user. */
15201
+ oauth_token?:
15202
+ string;
15203
+ /** Returns response with indentations and line breaks. */
15204
+ prettyPrint?:
15205
+ boolean;
15206
+ /** 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. */
15207
+ quotaUser?:
15208
+ string;
15209
+ /**
15210
+ * 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
15211
+ * 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.
15212
+ * Set the update_mask to `*` to override all fields. Updatable fields: * `description` * `labels` * `disable_monitoring` (Not supported for FeatureRegistry Feature)
15213
+ */
15214
+ updateMask?:
15215
+ string;
15216
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15217
+ upload_protocol?:
15218
+ string;
15219
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15220
+ uploadType?:
15221
+ string;
15222
+ },
15223
+ body: GoogleCloudAiplatformV1Feature): Request<GoogleLongrunningOperation>;
15224
+ operations:
15225
+ OperationsResource;
15226
+ }
15227
+ interface OperationsResource {
15228
+ /**
15229
+ * 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
15230
+ * support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
15231
+ */
15232
+ delete(request?: {
15233
+ /** V1 error format. */
15234
+ "$.xgafv"?:
15235
+ string;
15236
+ /** OAuth access token. */
15237
+ access_token?:
15238
+ string;
15239
+ /** Data format for response. */
15240
+ alt?:
15241
+ string;
15242
+ /** JSONP */
15243
+ callback?:
15244
+ string;
15245
+ /** Selector specifying which fields to include in a partial response. */
15246
+ fields?:
15247
+ string;
15248
+ /** 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. */
15249
+ key?:
15250
+ string;
15251
+ /** The name of the operation resource to be deleted. */
15252
+ name:
15253
+ string;
15254
+ /** OAuth 2.0 token for the current user. */
15255
+ oauth_token?:
15256
+ string;
15257
+ /** Returns response with indentations and line breaks. */
15258
+ prettyPrint?:
15259
+ boolean;
15260
+ /** 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. */
15261
+ quotaUser?:
15262
+ string;
15263
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15264
+ upload_protocol?:
15265
+ string;
15266
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15267
+ uploadType?:
15268
+ string;
15269
+ }): Request<{}>;
15270
+ /** 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. */
15271
+ get(request?: {
15272
+ /** V1 error format. */
15273
+ "$.xgafv"?:
15274
+ string;
15275
+ /** OAuth access token. */
15276
+ access_token?:
15277
+ string;
15278
+ /** Data format for response. */
15279
+ alt?:
15280
+ string;
15281
+ /** JSONP */
15282
+ callback?:
15283
+ string;
15284
+ /** Selector specifying which fields to include in a partial response. */
15285
+ fields?:
15286
+ string;
15287
+ /** 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. */
15288
+ key?:
15289
+ string;
15290
+ /** The name of the operation resource. */
15291
+ name:
15292
+ string;
15293
+ /** OAuth 2.0 token for the current user. */
15294
+ oauth_token?:
15295
+ string;
15296
+ /** Returns response with indentations and line breaks. */
15297
+ prettyPrint?:
15298
+ boolean;
15299
+ /** 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. */
15300
+ quotaUser?:
15301
+ string;
15302
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15303
+ upload_protocol?:
15304
+ string;
15305
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15306
+ uploadType?:
15307
+ string;
15308
+ }): Request<GoogleLongrunningOperation>;
15309
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
15310
+ listWait(request?: {
15311
+ /** V1 error format. */
15312
+ "$.xgafv"?:
15313
+ string;
15314
+ /** OAuth access token. */
15315
+ access_token?:
15316
+ string;
15317
+ /** Data format for response. */
15318
+ alt?:
15319
+ string;
15320
+ /** JSONP */
15321
+ callback?:
15322
+ string;
15323
+ /** Selector specifying which fields to include in a partial response. */
15324
+ fields?:
15325
+ string;
15326
+ /** The standard list filter. */
15327
+ filter?:
15328
+ string;
15329
+ /** 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. */
15330
+ key?:
15331
+ string;
15332
+ /** The name of the operation's parent resource. */
15333
+ name:
15334
+ string;
15335
+ /** OAuth 2.0 token for the current user. */
15336
+ oauth_token?:
15337
+ string;
15338
+ /** The standard list page size. */
15339
+ pageSize?:
15340
+ number;
15341
+ /** The standard list page token. */
15342
+ pageToken?:
15343
+ string;
15344
+ /** Returns response with indentations and line breaks. */
15345
+ prettyPrint?:
15346
+ boolean;
15347
+ /** 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. */
15348
+ quotaUser?:
15349
+ string;
15350
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15351
+ upload_protocol?:
15352
+ string;
15353
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15354
+ uploadType?:
15355
+ string;
15356
+ }): Request<GoogleLongrunningListOperationsResponse>;
15357
+ /**
15358
+ * 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
15359
+ * 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
15360
+ * `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
15361
+ * an immediate response is no guarantee that the operation is done.
15362
+ */
15363
+ wait(request?: {
15364
+ /** V1 error format. */
15365
+ "$.xgafv"?:
15366
+ string;
15367
+ /** OAuth access token. */
15368
+ access_token?:
15369
+ string;
15370
+ /** Data format for response. */
15371
+ alt?:
15372
+ string;
15373
+ /** JSONP */
15374
+ callback?:
15375
+ string;
15376
+ /** Selector specifying which fields to include in a partial response. */
15377
+ fields?:
15378
+ string;
15379
+ /** 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. */
15380
+ key?:
15381
+ string;
15382
+ /** The name of the operation resource to wait on. */
15383
+ name:
15384
+ string;
15385
+ /** OAuth 2.0 token for the current user. */
15386
+ oauth_token?:
15387
+ string;
15388
+ /** Returns response with indentations and line breaks. */
15389
+ prettyPrint?:
15390
+ boolean;
15391
+ /** 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. */
15392
+ quotaUser?:
15393
+ string;
15394
+ /**
15395
+ * 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
15396
+ * specified, the shorter one will be used.
15397
+ */
15398
+ timeout?:
15399
+ string;
15400
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15401
+ upload_protocol?:
15402
+ string;
15403
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15404
+ uploadType?:
15405
+ string;
15406
+ }): Request<GoogleLongrunningOperation>;
15407
+ }
15408
+ interface FeatureGroupsResource {
15409
+ /** Creates a new FeatureGroup in a given project and location. */
15410
+ create(request: {
15411
+ /** V1 error format. */
15412
+ "$.xgafv"?:
15413
+ string;
15414
+ /** OAuth access token. */
15415
+ access_token?:
15416
+ string;
15417
+ /** Data format for response. */
15418
+ alt?:
15419
+ string;
15420
+ /** JSONP */
15421
+ callback?:
15422
+ string;
15423
+ /**
15424
+ * 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
15425
+ * characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
15426
+ */
15427
+ featureGroupId?:
15428
+ string;
15429
+ /** Selector specifying which fields to include in a partial response. */
15430
+ fields?:
15431
+ string;
15432
+ /** 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. */
15433
+ key?:
15434
+ string;
15435
+ /** OAuth 2.0 token for the current user. */
15436
+ oauth_token?:
15437
+ string;
15438
+ /** Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}'` */
15439
+ parent:
15440
+ string;
15441
+ /** Returns response with indentations and line breaks. */
15442
+ prettyPrint?:
15443
+ boolean;
15444
+ /** 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. */
15445
+ quotaUser?:
15446
+ string;
15447
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15448
+ upload_protocol?:
15449
+ string;
15450
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15451
+ uploadType?:
15452
+ string;
15453
+ /** Request body */
15454
+ resource:
15455
+ GoogleCloudAiplatformV1FeatureGroup;
15456
+ }): Request<GoogleLongrunningOperation>;
15457
+ create(request: {
15458
+ /** V1 error format. */
15459
+ "$.xgafv"?:
15460
+ string;
15461
+ /** OAuth access token. */
15462
+ access_token?:
15463
+ string;
15464
+ /** Data format for response. */
15465
+ alt?:
15466
+ string;
15467
+ /** JSONP */
15468
+ callback?:
15469
+ string;
15470
+ /**
15471
+ * 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
15472
+ * characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
15473
+ */
15474
+ featureGroupId?:
15475
+ string;
15476
+ /** Selector specifying which fields to include in a partial response. */
15477
+ fields?:
15478
+ string;
15479
+ /** 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. */
15480
+ key?:
15481
+ string;
15482
+ /** OAuth 2.0 token for the current user. */
15483
+ oauth_token?:
15484
+ string;
15485
+ /** Required. The resource name of the Location to create FeatureGroups. Format: `projects/{project}/locations/{location}'` */
15486
+ parent:
15487
+ string;
15488
+ /** Returns response with indentations and line breaks. */
15489
+ prettyPrint?:
15490
+ boolean;
15491
+ /** 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. */
15492
+ quotaUser?:
15493
+ string;
15494
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15495
+ upload_protocol?:
15496
+ string;
15497
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15498
+ uploadType?:
15499
+ string;
15500
+ },
15501
+ body: GoogleCloudAiplatformV1FeatureGroup): Request<GoogleLongrunningOperation>;
15502
+ /** Deletes a single FeatureGroup. */
15503
+ delete(request?: {
15504
+ /** V1 error format. */
15505
+ "$.xgafv"?:
15506
+ string;
15507
+ /** OAuth access token. */
15508
+ access_token?:
15509
+ string;
15510
+ /** Data format for response. */
15511
+ alt?:
15512
+ string;
15513
+ /** JSONP */
15514
+ callback?:
15515
+ string;
15516
+ /** Selector specifying which fields to include in a partial response. */
15517
+ fields?:
15518
+ string;
15519
+ /** 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.) */
15520
+ force?:
15521
+ boolean;
15522
+ /** 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. */
15523
+ key?:
15524
+ string;
15525
+ /** Required. The name of the FeatureGroup to be deleted. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}` */
15526
+ name:
15527
+ string;
15528
+ /** OAuth 2.0 token for the current user. */
15529
+ oauth_token?:
15530
+ string;
15531
+ /** Returns response with indentations and line breaks. */
15532
+ prettyPrint?:
15533
+ boolean;
15534
+ /** 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. */
15535
+ quotaUser?:
15536
+ string;
15537
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15538
+ upload_protocol?:
15539
+ string;
15540
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15541
+ uploadType?:
15542
+ string;
15543
+ }): Request<GoogleLongrunningOperation>;
15544
+ /** Gets details of a single FeatureGroup. */
15545
+ get(request?: {
15546
+ /** V1 error format. */
15547
+ "$.xgafv"?:
15548
+ string;
15549
+ /** OAuth access token. */
15550
+ access_token?:
15551
+ string;
15552
+ /** Data format for response. */
15553
+ alt?:
15554
+ string;
15555
+ /** JSONP */
15556
+ callback?:
15557
+ string;
15558
+ /** Selector specifying which fields to include in a partial response. */
15559
+ fields?:
15560
+ string;
15561
+ /** 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. */
15562
+ key?:
15563
+ string;
15564
+ /** Required. The name of the FeatureGroup resource. */
15565
+ name:
15566
+ string;
15567
+ /** OAuth 2.0 token for the current user. */
15568
+ oauth_token?:
15569
+ string;
15570
+ /** Returns response with indentations and line breaks. */
15571
+ prettyPrint?:
15572
+ boolean;
15573
+ /** 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. */
15574
+ quotaUser?:
15575
+ string;
15576
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15577
+ upload_protocol?:
15578
+ string;
15579
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15580
+ uploadType?:
15581
+ string;
15582
+ }): Request<GoogleCloudAiplatformV1FeatureGroup>;
15583
+ /** Lists FeatureGroups in a given project and location. */
15584
+ list(request?: {
15585
+ /** V1 error format. */
15586
+ "$.xgafv"?:
15587
+ string;
15588
+ /** OAuth access token. */
15589
+ access_token?:
15590
+ string;
15591
+ /** Data format for response. */
15592
+ alt?:
15593
+ string;
15594
+ /** JSONP */
15595
+ callback?:
15596
+ string;
15597
+ /** Selector specifying which fields to include in a partial response. */
15598
+ fields?:
15599
+ string;
15600
+ /**
15601
+ * Lists the FeatureGroups that match the filter expression. The following fields are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values
15602
+ * must be in RFC 3339 format. * `update_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values must be in RFC 3339 format. * `labels`: Supports key-value equality
15603
+ * 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
15604
+ * with label "env" set to "prod".
15605
+ */
15606
+ filter?:
15607
+ string;
15608
+ /** 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. */
15609
+ key?:
15610
+ string;
15611
+ /** OAuth 2.0 token for the current user. */
15612
+ oauth_token?:
15613
+ string;
15614
+ /** 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` */
15615
+ orderBy?:
15616
+ string;
15617
+ /**
15618
+ * 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
15619
+ * 100; any value greater than 100 will be coerced to 100.
15620
+ */
15621
+ pageSize?:
15622
+ number;
15623
+ /**
15624
+ * A page token, received from a previous FeatureGroupAdminService.ListFeatureGroups call. Provide this to retrieve the subsequent page. When paginating, all other parameters
15625
+ * provided to FeatureGroupAdminService.ListFeatureGroups must match the call that provided the page token.
15626
+ */
15627
+ pageToken?:
15628
+ string;
15629
+ /** Required. The resource name of the Location to list FeatureGroups. Format: `projects/{project}/locations/{location}` */
15630
+ parent:
15631
+ string;
15632
+ /** Returns response with indentations and line breaks. */
15633
+ prettyPrint?:
15634
+ boolean;
15635
+ /** 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. */
15636
+ quotaUser?:
15637
+ string;
15638
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15639
+ upload_protocol?:
15640
+ string;
15641
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15642
+ uploadType?:
15643
+ string;
15644
+ }): Request<GoogleCloudAiplatformV1ListFeatureGroupsResponse>;
15645
+ /** Updates the parameters of a single FeatureGroup. */
15646
+ patch(request: {
15647
+ /** V1 error format. */
15648
+ "$.xgafv"?:
15649
+ string;
15650
+ /** OAuth access token. */
15651
+ access_token?:
15652
+ string;
15653
+ /** Data format for response. */
15654
+ alt?:
15655
+ string;
15656
+ /** JSONP */
15657
+ callback?:
15658
+ string;
15659
+ /** Selector specifying which fields to include in a partial response. */
15660
+ fields?:
15661
+ string;
15662
+ /** 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. */
15663
+ key?:
15664
+ string;
15665
+ /** Output only. Name of the FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
15666
+ name:
15667
+ string;
15668
+ /** OAuth 2.0 token for the current user. */
15669
+ oauth_token?:
15670
+ string;
15671
+ /** Returns response with indentations and line breaks. */
15672
+ prettyPrint?:
15673
+ boolean;
15674
+ /** 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. */
15675
+ quotaUser?:
15676
+ string;
15677
+ /**
15678
+ * 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
15679
+ * 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
15680
+ * overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels`
15681
+ */
15682
+ updateMask?:
15683
+ string;
15684
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15685
+ upload_protocol?:
15686
+ string;
15687
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15688
+ uploadType?:
15689
+ string;
15690
+ /** Request body */
15691
+ resource:
15692
+ GoogleCloudAiplatformV1FeatureGroup;
15693
+ }): Request<GoogleLongrunningOperation>;
15694
+ patch(request: {
15695
+ /** V1 error format. */
15696
+ "$.xgafv"?:
15697
+ string;
15698
+ /** OAuth access token. */
15699
+ access_token?:
15700
+ string;
15701
+ /** Data format for response. */
15702
+ alt?:
15703
+ string;
15704
+ /** JSONP */
15705
+ callback?:
15706
+ string;
15707
+ /** Selector specifying which fields to include in a partial response. */
15708
+ fields?:
15709
+ string;
15710
+ /** 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. */
15711
+ key?:
15712
+ string;
15713
+ /** Output only. Name of the FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
15714
+ name:
15715
+ string;
15716
+ /** OAuth 2.0 token for the current user. */
15717
+ oauth_token?:
15718
+ string;
15719
+ /** Returns response with indentations and line breaks. */
15720
+ prettyPrint?:
15721
+ boolean;
15722
+ /** 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. */
15723
+ quotaUser?:
15724
+ string;
15725
+ /**
15726
+ * 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
15727
+ * 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
15728
+ * overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels`
15729
+ */
15730
+ updateMask?:
15731
+ string;
15732
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15733
+ upload_protocol?:
15734
+ string;
15735
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15736
+ uploadType?:
15737
+ string;
15738
+ },
15739
+ body: GoogleCloudAiplatformV1FeatureGroup): Request<GoogleLongrunningOperation>;
15740
+ features:
15741
+ FeaturesResource;
15742
+ operations:
15743
+ OperationsResource;
15744
+ }
15745
+ interface FeatureViewSyncsResource {
15746
+ /** Gets details of a single FeatureViewSync. */
15747
+ get(request?: {
15748
+ /** V1 error format. */
15749
+ "$.xgafv"?:
15750
+ string;
15751
+ /** OAuth access token. */
15752
+ access_token?:
15753
+ string;
15754
+ /** Data format for response. */
15755
+ alt?:
15756
+ string;
15757
+ /** JSONP */
15758
+ callback?:
15759
+ string;
15760
+ /** Selector specifying which fields to include in a partial response. */
15761
+ fields?:
15762
+ string;
15763
+ /** 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. */
15764
+ key?:
15765
+ string;
15766
+ /**
15767
+ * Required. The name of the FeatureViewSync resource. Format:
15768
+ * `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}`
15769
+ */
15770
+ name:
15771
+ string;
15772
+ /** OAuth 2.0 token for the current user. */
15773
+ oauth_token?:
15774
+ string;
15775
+ /** Returns response with indentations and line breaks. */
15776
+ prettyPrint?:
15777
+ boolean;
15778
+ /** 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. */
15779
+ quotaUser?:
15780
+ string;
15781
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15782
+ upload_protocol?:
15783
+ string;
15784
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15785
+ uploadType?:
15786
+ string;
15787
+ }): Request<GoogleCloudAiplatformV1FeatureViewSync>;
15788
+ /** Lists FeatureViewSyncs in a given FeatureView. */
15789
+ list(request?: {
15790
+ /** V1 error format. */
15791
+ "$.xgafv"?:
15792
+ string;
15793
+ /** OAuth access token. */
15794
+ access_token?:
15795
+ string;
15796
+ /** Data format for response. */
15797
+ alt?:
15798
+ string;
15799
+ /** JSONP */
15800
+ callback?:
15801
+ string;
15802
+ /** Selector specifying which fields to include in a partial response. */
15803
+ fields?:
15804
+ string;
15805
+ /**
15806
+ * Lists the FeatureViewSyncs that match the filter expression. The following filters are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `>=`, and `<=` comparisons.
15807
+ * 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.
15808
+ */
15809
+ filter?:
15810
+ string;
15811
+ /** 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. */
15812
+ key?:
15813
+ string;
15814
+ /** OAuth 2.0 token for the current user. */
15815
+ oauth_token?:
15816
+ string;
15817
+ /** 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` */
15818
+ orderBy?:
15819
+ string;
15820
+ /**
15821
+ * 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
15822
+ * is 1000; any value greater than 1000 will be coerced to 1000.
15823
+ */
15824
+ pageSize?:
15825
+ number;
15826
+ /**
15827
+ * A page token, received from a previous FeatureOnlineStoreAdminService.ListFeatureViewSyncs call. Provide this to retrieve the subsequent page. When paginating, all other
15828
+ * parameters provided to FeatureOnlineStoreAdminService.ListFeatureViewSyncs must match the call that provided the page token.
15829
+ */
15830
+ pageToken?:
15831
+ string;
15832
+ /**
15833
+ * Required. The resource name of the FeatureView to list FeatureViewSyncs. Format:
15834
+ * `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}`
15835
+ */
15836
+ parent:
15837
+ string;
15838
+ /** Returns response with indentations and line breaks. */
15839
+ prettyPrint?:
15840
+ boolean;
15841
+ /** 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. */
15842
+ quotaUser?:
15843
+ string;
15844
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15845
+ upload_protocol?:
15846
+ string;
15847
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15848
+ uploadType?:
15849
+ string;
15850
+ }): Request<GoogleCloudAiplatformV1ListFeatureViewSyncsResponse>;
15851
+ }
15852
+ interface OperationsResource {
15853
+ /**
15854
+ * 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
15855
+ * support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
15856
+ */
15857
+ delete(request?: {
15858
+ /** V1 error format. */
15859
+ "$.xgafv"?:
15860
+ string;
15861
+ /** OAuth access token. */
15862
+ access_token?:
15863
+ string;
15864
+ /** Data format for response. */
15865
+ alt?:
15866
+ string;
15867
+ /** JSONP */
15868
+ callback?:
15869
+ string;
15870
+ /** Selector specifying which fields to include in a partial response. */
15871
+ fields?:
15872
+ string;
15873
+ /** 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. */
15874
+ key?:
15875
+ string;
15876
+ /** The name of the operation resource to be deleted. */
15877
+ name:
15878
+ string;
15879
+ /** OAuth 2.0 token for the current user. */
15880
+ oauth_token?:
15881
+ string;
15882
+ /** Returns response with indentations and line breaks. */
15883
+ prettyPrint?:
15884
+ boolean;
15885
+ /** 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. */
15886
+ quotaUser?:
15887
+ string;
15888
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15889
+ upload_protocol?:
15890
+ string;
15891
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15892
+ uploadType?:
15893
+ string;
15894
+ }): Request<{}>;
15895
+ /** 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. */
15896
+ get(request?: {
15897
+ /** V1 error format. */
15898
+ "$.xgafv"?:
15899
+ string;
15900
+ /** OAuth access token. */
15901
+ access_token?:
15902
+ string;
15903
+ /** Data format for response. */
15904
+ alt?:
15905
+ string;
15906
+ /** JSONP */
15907
+ callback?:
15908
+ string;
15909
+ /** Selector specifying which fields to include in a partial response. */
15910
+ fields?:
15911
+ string;
15912
+ /** 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. */
15913
+ key?:
15914
+ string;
15915
+ /** The name of the operation resource. */
15916
+ name:
15917
+ string;
15918
+ /** OAuth 2.0 token for the current user. */
15919
+ oauth_token?:
15920
+ string;
15921
+ /** Returns response with indentations and line breaks. */
15922
+ prettyPrint?:
15923
+ boolean;
15924
+ /** 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. */
15925
+ quotaUser?:
15926
+ string;
15927
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15928
+ upload_protocol?:
15929
+ string;
15930
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15931
+ uploadType?:
15932
+ string;
15933
+ }): Request<GoogleLongrunningOperation>;
15934
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
15935
+ listWait(request?: {
15936
+ /** V1 error format. */
15937
+ "$.xgafv"?:
15938
+ string;
15939
+ /** OAuth access token. */
15940
+ access_token?:
15941
+ string;
15942
+ /** Data format for response. */
15943
+ alt?:
15944
+ string;
15945
+ /** JSONP */
15946
+ callback?:
15947
+ string;
15948
+ /** Selector specifying which fields to include in a partial response. */
15949
+ fields?:
15950
+ string;
15951
+ /** The standard list filter. */
15952
+ filter?:
15953
+ string;
15954
+ /** 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. */
15955
+ key?:
15956
+ string;
15957
+ /** The name of the operation's parent resource. */
15958
+ name:
15959
+ string;
15960
+ /** OAuth 2.0 token for the current user. */
15961
+ oauth_token?:
15962
+ string;
15963
+ /** The standard list page size. */
15964
+ pageSize?:
15965
+ number;
15966
+ /** The standard list page token. */
15967
+ pageToken?:
15968
+ string;
15969
+ /** Returns response with indentations and line breaks. */
15970
+ prettyPrint?:
15971
+ boolean;
15972
+ /** 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. */
15973
+ quotaUser?:
15974
+ string;
15975
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15976
+ upload_protocol?:
15977
+ string;
15978
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15979
+ uploadType?:
15980
+ string;
15981
+ }): Request<GoogleLongrunningListOperationsResponse>;
15982
+ /**
15983
+ * 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
15984
+ * 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
15985
+ * `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
15986
+ * an immediate response is no guarantee that the operation is done.
15987
+ */
15988
+ wait(request?: {
15989
+ /** V1 error format. */
15990
+ "$.xgafv"?:
15991
+ string;
15992
+ /** OAuth access token. */
15993
+ access_token?:
15994
+ string;
15995
+ /** Data format for response. */
15996
+ alt?:
15997
+ string;
15998
+ /** JSONP */
15999
+ callback?:
16000
+ string;
16001
+ /** Selector specifying which fields to include in a partial response. */
16002
+ fields?:
16003
+ string;
16004
+ /** 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. */
16005
+ key?:
16006
+ string;
16007
+ /** The name of the operation resource to wait on. */
16008
+ name:
16009
+ string;
16010
+ /** OAuth 2.0 token for the current user. */
16011
+ oauth_token?:
16012
+ string;
16013
+ /** Returns response with indentations and line breaks. */
16014
+ prettyPrint?:
16015
+ boolean;
16016
+ /** 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. */
16017
+ quotaUser?:
16018
+ string;
16019
+ /**
16020
+ * 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
16021
+ * specified, the shorter one will be used.
16022
+ */
16023
+ timeout?:
16024
+ string;
16025
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16026
+ upload_protocol?:
16027
+ string;
16028
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16029
+ uploadType?:
16030
+ string;
16031
+ }): Request<GoogleLongrunningOperation>;
16032
+ }
16033
+ interface FeatureViewsResource {
16034
+ /** Creates a new FeatureView in a given FeatureOnlineStore. */
16035
+ create(request: {
16036
+ /** V1 error format. */
16037
+ "$.xgafv"?:
16038
+ string;
16039
+ /** OAuth access token. */
16040
+ access_token?:
16041
+ string;
16042
+ /** Data format for response. */
16043
+ alt?:
16044
+ string;
16045
+ /** JSONP */
16046
+ callback?:
16047
+ string;
16048
+ /**
16049
+ * 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
16050
+ * characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within a FeatureOnlineStore.
16051
+ */
16052
+ featureViewId?:
16053
+ string;
16054
+ /** Selector specifying which fields to include in a partial response. */
16055
+ fields?:
16056
+ string;
16057
+ /** 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. */
16058
+ key?:
16059
+ string;
16060
+ /** OAuth 2.0 token for the current user. */
16061
+ oauth_token?:
16062
+ string;
16063
+ /** Required. The resource name of the FeatureOnlineStore to create FeatureViews. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}` */
16064
+ parent:
16065
+ string;
16066
+ /** Returns response with indentations and line breaks. */
16067
+ prettyPrint?:
16068
+ boolean;
16069
+ /** 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. */
16070
+ quotaUser?:
16071
+ string;
16072
+ /** Immutable. If set to true, one on demand sync will be run immediately, regardless whether the FeatureView.sync_config is configured or not. */
16073
+ runSyncImmediately?:
16074
+ boolean;
16075
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16076
+ upload_protocol?:
16077
+ string;
16078
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16079
+ uploadType?:
16080
+ string;
16081
+ /** Request body */
16082
+ resource:
16083
+ GoogleCloudAiplatformV1FeatureView;
16084
+ }): Request<GoogleLongrunningOperation>;
16085
+ create(request: {
16086
+ /** V1 error format. */
16087
+ "$.xgafv"?:
16088
+ string;
16089
+ /** OAuth access token. */
16090
+ access_token?:
16091
+ string;
16092
+ /** Data format for response. */
16093
+ alt?:
16094
+ string;
16095
+ /** JSONP */
16096
+ callback?:
16097
+ string;
16098
+ /**
16099
+ * 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
16100
+ * characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within a FeatureOnlineStore.
16101
+ */
16102
+ featureViewId?:
16103
+ string;
16104
+ /** Selector specifying which fields to include in a partial response. */
16105
+ fields?:
16106
+ string;
16107
+ /** 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. */
16108
+ key?:
16109
+ string;
16110
+ /** OAuth 2.0 token for the current user. */
16111
+ oauth_token?:
16112
+ string;
16113
+ /** Required. The resource name of the FeatureOnlineStore to create FeatureViews. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}` */
16114
+ parent:
16115
+ string;
16116
+ /** Returns response with indentations and line breaks. */
16117
+ prettyPrint?:
16118
+ boolean;
16119
+ /** 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. */
16120
+ quotaUser?:
16121
+ string;
16122
+ /** Immutable. If set to true, one on demand sync will be run immediately, regardless whether the FeatureView.sync_config is configured or not. */
16123
+ runSyncImmediately?:
16124
+ boolean;
16125
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16126
+ upload_protocol?:
16127
+ string;
16128
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16129
+ uploadType?:
16130
+ string;
16131
+ },
16132
+ body: GoogleCloudAiplatformV1FeatureView): Request<GoogleLongrunningOperation>;
16133
+ /** Deletes a single FeatureView. */
16134
+ delete(request?: {
16135
+ /** V1 error format. */
16136
+ "$.xgafv"?:
16137
+ string;
16138
+ /** OAuth access token. */
16139
+ access_token?:
16140
+ string;
16141
+ /** Data format for response. */
16142
+ alt?:
16143
+ string;
16144
+ /** JSONP */
16145
+ callback?:
16146
+ string;
16147
+ /** Selector specifying which fields to include in a partial response. */
16148
+ fields?:
16149
+ string;
16150
+ /** 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. */
16151
+ key?:
16152
+ string;
16153
+ /** Required. The name of the FeatureView to be deleted. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
16154
+ name:
16155
+ string;
16156
+ /** OAuth 2.0 token for the current user. */
16157
+ oauth_token?:
16158
+ string;
16159
+ /** Returns response with indentations and line breaks. */
16160
+ prettyPrint?:
16161
+ boolean;
16162
+ /** 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. */
16163
+ quotaUser?:
16164
+ string;
16165
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16166
+ upload_protocol?:
16167
+ string;
16168
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16169
+ uploadType?:
16170
+ string;
16171
+ }): Request<GoogleLongrunningOperation>;
16172
+ /** Fetch feature values under a FeatureView. */
16173
+ fetchFeatureValues(request: {
16174
+ /** V1 error format. */
16175
+ "$.xgafv"?:
16176
+ string;
16177
+ /** OAuth access token. */
16178
+ access_token?:
16179
+ string;
16180
+ /** Data format for response. */
16181
+ alt?:
16182
+ string;
16183
+ /** JSONP */
16184
+ callback?:
16185
+ string;
16186
+ /** Required. FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
16187
+ featureView:
16188
+ string;
16189
+ /** Selector specifying which fields to include in a partial response. */
16190
+ fields?:
16191
+ string;
16192
+ /** 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. */
16193
+ key?:
16194
+ string;
16195
+ /** OAuth 2.0 token for the current user. */
16196
+ oauth_token?:
16197
+ string;
16198
+ /** Returns response with indentations and line breaks. */
16199
+ prettyPrint?:
16200
+ boolean;
16201
+ /** 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. */
16202
+ quotaUser?:
16203
+ string;
16204
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16205
+ upload_protocol?:
16206
+ string;
16207
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16208
+ uploadType?:
16209
+ string;
16210
+ /** Request body */
16211
+ resource:
16212
+ GoogleCloudAiplatformV1FetchFeatureValuesRequest;
16213
+ }): Request<GoogleCloudAiplatformV1FetchFeatureValuesResponse>;
16214
+ fetchFeatureValues(request: {
16215
+ /** V1 error format. */
16216
+ "$.xgafv"?:
16217
+ string;
16218
+ /** OAuth access token. */
16219
+ access_token?:
16220
+ string;
16221
+ /** Data format for response. */
16222
+ alt?:
16223
+ string;
16224
+ /** JSONP */
16225
+ callback?:
16226
+ string;
16227
+ /** Required. FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
16228
+ featureView:
16229
+ string;
16230
+ /** Selector specifying which fields to include in a partial response. */
16231
+ fields?:
16232
+ string;
16233
+ /** 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. */
16234
+ key?:
16235
+ string;
16236
+ /** OAuth 2.0 token for the current user. */
16237
+ oauth_token?:
16238
+ string;
16239
+ /** Returns response with indentations and line breaks. */
16240
+ prettyPrint?:
16241
+ boolean;
16242
+ /** 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. */
16243
+ quotaUser?:
16244
+ string;
16245
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
16246
+ upload_protocol?:
16247
+ string;
16248
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
16249
+ uploadType?:
16250
+ string;
16251
+ },
16252
+ body: GoogleCloudAiplatformV1FetchFeatureValuesRequest): Request<GoogleCloudAiplatformV1FetchFeatureValuesResponse>;
16253
+ /** Gets details of a single FeatureView. */
16254
+ get(request?: {
13576
16255
  /** V1 error format. */
13577
16256
  "$.xgafv"?:
13578
16257
  string;
@@ -13585,15 +16264,15 @@ declare namespace gapi.client {
13585
16264
  /** JSONP */
13586
16265
  callback?:
13587
16266
  string;
13588
- /** Required. The name of the Endpoint resource into which to deploy a Model. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
13589
- endpoint:
13590
- string;
13591
16267
  /** Selector specifying which fields to include in a partial response. */
13592
16268
  fields?:
13593
16269
  string;
13594
16270
  /** 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. */
13595
16271
  key?:
13596
16272
  string;
16273
+ /** Required. The name of the FeatureView resource. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
16274
+ name:
16275
+ string;
13597
16276
  /** OAuth 2.0 token for the current user. */
13598
16277
  oauth_token?:
13599
16278
  string;
@@ -13609,13 +16288,9 @@ declare namespace gapi.client {
13609
16288
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13610
16289
  uploadType?:
13611
16290
  string;
13612
- },
13613
- body: GoogleCloudAiplatformV1DeployModelRequest): Request<GoogleLongrunningOperation>;
13614
- /**
13615
- * Perform an online explanation. If deployed_model_id is specified, the corresponding DeployModel must have explanation_spec populated. If deployed_model_id is not specified, all
13616
- * DeployedModels must have explanation_spec populated.
13617
- */
13618
- explain(request: {
16291
+ }): Request<GoogleCloudAiplatformV1FeatureView>;
16292
+ /** Lists FeatureViews in a given FeatureOnlineStore. */
16293
+ list(request?: {
13619
16294
  /** V1 error format. */
13620
16295
  "$.xgafv"?:
13621
16296
  string;
@@ -13628,18 +16303,45 @@ declare namespace gapi.client {
13628
16303
  /** JSONP */
13629
16304
  callback?:
13630
16305
  string;
13631
- /** Required. The name of the Endpoint requested to serve the explanation. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
13632
- endpoint:
13633
- string;
13634
16306
  /** Selector specifying which fields to include in a partial response. */
13635
16307
  fields?:
13636
16308
  string;
16309
+ /**
16310
+ * Lists the FeatureViews that match the filter expression. The following filters are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `>=`, and `<=` comparisons. Values
16311
+ * must be in RFC 3339 format. * `update_time`: Supports `=`, `!=`, `<`, `>`, `>=`, and `<=` comparisons. Values must be in RFC 3339 format. * `labels`: Supports key-value equality
16312
+ * 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
16313
+ * 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
16314
+ * FeatureView which has a label with 'env' as the key.
16315
+ */
16316
+ filter?:
16317
+ string;
13637
16318
  /** 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. */
13638
16319
  key?:
13639
16320
  string;
13640
16321
  /** OAuth 2.0 token for the current user. */
13641
16322
  oauth_token?:
13642
16323
  string;
16324
+ /**
16325
+ * 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` *
16326
+ * `update_time`
16327
+ */
16328
+ orderBy?:
16329
+ string;
16330
+ /**
16331
+ * 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
16332
+ * 1000; any value greater than 1000 will be coerced to 1000.
16333
+ */
16334
+ pageSize?:
16335
+ number;
16336
+ /**
16337
+ * A page token, received from a previous FeatureOnlineStoreAdminService.ListFeatureViews call. Provide this to retrieve the subsequent page. When paginating, all other parameters
16338
+ * provided to FeatureOnlineStoreAdminService.ListFeatureViews must match the call that provided the page token.
16339
+ */
16340
+ pageToken?:
16341
+ string;
16342
+ /** Required. The resource name of the FeatureOnlineStore to list FeatureViews. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}` */
16343
+ parent:
16344
+ string;
13643
16345
  /** Returns response with indentations and line breaks. */
13644
16346
  prettyPrint?:
13645
16347
  boolean;
@@ -13652,11 +16354,9 @@ declare namespace gapi.client {
13652
16354
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13653
16355
  uploadType?:
13654
16356
  string;
13655
- /** Request body */
13656
- resource:
13657
- GoogleCloudAiplatformV1ExplainRequest;
13658
- }): Request<GoogleCloudAiplatformV1ExplainResponse>;
13659
- explain(request: {
16357
+ }): Request<GoogleCloudAiplatformV1ListFeatureViewsResponse>;
16358
+ /** Updates the parameters of a single FeatureView. */
16359
+ patch(request: {
13660
16360
  /** V1 error format. */
13661
16361
  "$.xgafv"?:
13662
16362
  string;
@@ -13669,15 +16369,15 @@ declare namespace gapi.client {
13669
16369
  /** JSONP */
13670
16370
  callback?:
13671
16371
  string;
13672
- /** Required. The name of the Endpoint requested to serve the explanation. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
13673
- endpoint:
13674
- string;
13675
16372
  /** Selector specifying which fields to include in a partial response. */
13676
16373
  fields?:
13677
16374
  string;
13678
16375
  /** 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. */
13679
16376
  key?:
13680
16377
  string;
16378
+ /** Output only. Name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
16379
+ name:
16380
+ string;
13681
16381
  /** OAuth 2.0 token for the current user. */
13682
16382
  oauth_token?:
13683
16383
  string;
@@ -13687,16 +16387,24 @@ declare namespace gapi.client {
13687
16387
  /** 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. */
13688
16388
  quotaUser?:
13689
16389
  string;
16390
+ /**
16391
+ * 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
16392
+ * 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
16393
+ * overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels`
16394
+ */
16395
+ updateMask?:
16396
+ string;
13690
16397
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13691
16398
  upload_protocol?:
13692
16399
  string;
13693
16400
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13694
16401
  uploadType?:
13695
16402
  string;
13696
- },
13697
- body: GoogleCloudAiplatformV1ExplainRequest): Request<GoogleCloudAiplatformV1ExplainResponse>;
13698
- /** Gets an Endpoint. */
13699
- get(request?: {
16403
+ /** Request body */
16404
+ resource:
16405
+ GoogleCloudAiplatformV1FeatureView;
16406
+ }): Request<GoogleLongrunningOperation>;
16407
+ patch(request: {
13700
16408
  /** V1 error format. */
13701
16409
  "$.xgafv"?:
13702
16410
  string;
@@ -13715,7 +16423,7 @@ declare namespace gapi.client {
13715
16423
  /** 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. */
13716
16424
  key?:
13717
16425
  string;
13718
- /** Required. The name of the Endpoint resource. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
16426
+ /** Output only. Name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
13719
16427
  name:
13720
16428
  string;
13721
16429
  /** OAuth 2.0 token for the current user. */
@@ -13727,15 +16435,23 @@ declare namespace gapi.client {
13727
16435
  /** 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. */
13728
16436
  quotaUser?:
13729
16437
  string;
16438
+ /**
16439
+ * 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
16440
+ * 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
16441
+ * overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels`
16442
+ */
16443
+ updateMask?:
16444
+ string;
13730
16445
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13731
16446
  upload_protocol?:
13732
16447
  string;
13733
16448
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13734
16449
  uploadType?:
13735
16450
  string;
13736
- }): Request<GoogleCloudAiplatformV1Endpoint>;
13737
- /** Lists Endpoints in a Location. */
13738
- list(request?: {
16451
+ },
16452
+ body: GoogleCloudAiplatformV1FeatureView): Request<GoogleLongrunningOperation>;
16453
+ /** Triggers on-demand sync for the FeatureView. */
16454
+ sync(request: {
13739
16455
  /** V1 error format. */
13740
16456
  "$.xgafv"?:
13741
16457
  string;
@@ -13748,59 +16464,35 @@ declare namespace gapi.client {
13748
16464
  /** JSONP */
13749
16465
  callback?:
13750
16466
  string;
16467
+ /** Required. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
16468
+ featureView:
16469
+ string;
13751
16470
  /** Selector specifying which fields to include in a partial response. */
13752
16471
  fields?:
13753
16472
  string;
13754
- /**
13755
- * Optional. An expression for filtering the results of the request. For field names both snake_case and camelCase are supported. * `endpoint` supports = and !=. `endpoint`
13756
- * represents the Endpoint ID, i.e. the last segment of the Endpoint's resource name. * `display_name` supports = and, != * `labels` supports general map functions that is: *
13757
- * `labels.key=value` - key:value equality * `labels.key:* or labels:key - key existence * A key including a space must be quoted. `labels."a key"`. Some examples: * `endpoint=1` *
13758
- * `displayName="myDisplayName"` * `labels.myKey="myValue"`
13759
- */
13760
- filter?:
13761
- string;
13762
16473
  /** 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. */
13763
16474
  key?:
13764
16475
  string;
13765
16476
  /** OAuth 2.0 token for the current user. */
13766
16477
  oauth_token?:
13767
16478
  string;
13768
- /**
13769
- * A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `display_name` * `create_time` *
13770
- * `update_time` Example: `display_name, create_time desc`.
13771
- */
13772
- orderBy?:
13773
- string;
13774
- /** Optional. The standard list page size. */
13775
- pageSize?:
13776
- number;
13777
- /** Optional. The standard list page token. Typically obtained via ListEndpointsResponse.next_page_token of the previous EndpointService.ListEndpoints call. */
13778
- pageToken?:
13779
- string;
13780
- /** Required. The resource name of the Location from which to list the Endpoints. Format: `projects/{project}/locations/{location}` */
13781
- parent:
13782
- string;
13783
16479
  /** Returns response with indentations and line breaks. */
13784
16480
  prettyPrint?:
13785
16481
  boolean;
13786
16482
  /** 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. */
13787
16483
  quotaUser?:
13788
16484
  string;
13789
- /** Optional. Mask specifying which fields to read. */
13790
- readMask?:
13791
- string;
13792
16485
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13793
16486
  upload_protocol?:
13794
16487
  string;
13795
16488
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13796
16489
  uploadType?:
13797
16490
  string;
13798
- }): Request<GoogleCloudAiplatformV1ListEndpointsResponse>;
13799
- /**
13800
- * Updates an existing deployed model. Updatable fields include `min_replica_count`, `max_replica_count`, `autoscaling_metric_specs`, `disable_container_logging` (v1 only), and
13801
- * `enable_container_logging` (v1beta1 only).
13802
- */
13803
- mutateDeployedModel(request: {
16491
+ /** Request body */
16492
+ resource:
16493
+ GoogleCloudAiplatformV1SyncFeatureViewRequest;
16494
+ }): Request<GoogleCloudAiplatformV1SyncFeatureViewResponse>;
16495
+ sync(request: {
13804
16496
  /** V1 error format. */
13805
16497
  "$.xgafv"?:
13806
16498
  string;
@@ -13813,8 +16505,8 @@ declare namespace gapi.client {
13813
16505
  /** JSONP */
13814
16506
  callback?:
13815
16507
  string;
13816
- /** Required. The name of the Endpoint resource into which to mutate a DeployedModel. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
13817
- endpoint:
16508
+ /** Required. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
16509
+ featureView:
13818
16510
  string;
13819
16511
  /** Selector specifying which fields to include in a partial response. */
13820
16512
  fields?:
@@ -13837,11 +16529,19 @@ declare namespace gapi.client {
13837
16529
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13838
16530
  uploadType?:
13839
16531
  string;
13840
- /** Request body */
13841
- resource:
13842
- GoogleCloudAiplatformV1MutateDeployedModelRequest;
13843
- }): Request<GoogleLongrunningOperation>;
13844
- mutateDeployedModel(request: {
16532
+ },
16533
+ body: GoogleCloudAiplatformV1SyncFeatureViewRequest): Request<GoogleCloudAiplatformV1SyncFeatureViewResponse>;
16534
+ featureViewSyncs:
16535
+ FeatureViewSyncsResource;
16536
+ operations:
16537
+ OperationsResource;
16538
+ }
16539
+ interface OperationsResource {
16540
+ /**
16541
+ * 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
16542
+ * support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
16543
+ */
16544
+ delete(request?: {
13845
16545
  /** V1 error format. */
13846
16546
  "$.xgafv"?:
13847
16547
  string;
@@ -13854,15 +16554,15 @@ declare namespace gapi.client {
13854
16554
  /** JSONP */
13855
16555
  callback?:
13856
16556
  string;
13857
- /** Required. The name of the Endpoint resource into which to mutate a DeployedModel. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
13858
- endpoint:
13859
- string;
13860
16557
  /** Selector specifying which fields to include in a partial response. */
13861
16558
  fields?:
13862
16559
  string;
13863
16560
  /** 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. */
13864
16561
  key?:
13865
16562
  string;
16563
+ /** The name of the operation resource to be deleted. */
16564
+ name:
16565
+ string;
13866
16566
  /** OAuth 2.0 token for the current user. */
13867
16567
  oauth_token?:
13868
16568
  string;
@@ -13878,10 +16578,9 @@ declare namespace gapi.client {
13878
16578
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13879
16579
  uploadType?:
13880
16580
  string;
13881
- },
13882
- body: GoogleCloudAiplatformV1MutateDeployedModelRequest): Request<GoogleLongrunningOperation>;
13883
- /** Updates an Endpoint. */
13884
- patch(request: {
16581
+ }): Request<{}>;
16582
+ /** 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. */
16583
+ get(request?: {
13885
16584
  /** V1 error format. */
13886
16585
  "$.xgafv"?:
13887
16586
  string;
@@ -13900,7 +16599,7 @@ declare namespace gapi.client {
13900
16599
  /** 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. */
13901
16600
  key?:
13902
16601
  string;
13903
- /** Output only. The resource name of the Endpoint. */
16602
+ /** The name of the operation resource. */
13904
16603
  name:
13905
16604
  string;
13906
16605
  /** OAuth 2.0 token for the current user. */
@@ -13912,20 +16611,15 @@ declare namespace gapi.client {
13912
16611
  /** 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. */
13913
16612
  quotaUser?:
13914
16613
  string;
13915
- /** Required. The update mask applies to the resource. See google.protobuf.FieldMask. */
13916
- updateMask?:
13917
- string;
13918
16614
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13919
16615
  upload_protocol?:
13920
16616
  string;
13921
16617
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13922
16618
  uploadType?:
13923
16619
  string;
13924
- /** Request body */
13925
- resource:
13926
- GoogleCloudAiplatformV1Endpoint;
13927
- }): Request<GoogleCloudAiplatformV1Endpoint>;
13928
- patch(request: {
16620
+ }): Request<GoogleLongrunningOperation>;
16621
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
16622
+ listWait(request?: {
13929
16623
  /** V1 error format. */
13930
16624
  "$.xgafv"?:
13931
16625
  string;
@@ -13941,34 +16635,44 @@ declare namespace gapi.client {
13941
16635
  /** Selector specifying which fields to include in a partial response. */
13942
16636
  fields?:
13943
16637
  string;
16638
+ /** The standard list filter. */
16639
+ filter?:
16640
+ string;
13944
16641
  /** 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. */
13945
16642
  key?:
13946
16643
  string;
13947
- /** Output only. The resource name of the Endpoint. */
16644
+ /** The name of the operation's parent resource. */
13948
16645
  name:
13949
16646
  string;
13950
16647
  /** OAuth 2.0 token for the current user. */
13951
16648
  oauth_token?:
13952
16649
  string;
16650
+ /** The standard list page size. */
16651
+ pageSize?:
16652
+ number;
16653
+ /** The standard list page token. */
16654
+ pageToken?:
16655
+ string;
13953
16656
  /** Returns response with indentations and line breaks. */
13954
16657
  prettyPrint?:
13955
16658
  boolean;
13956
16659
  /** 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. */
13957
16660
  quotaUser?:
13958
16661
  string;
13959
- /** Required. The update mask applies to the resource. See google.protobuf.FieldMask. */
13960
- updateMask?:
13961
- string;
13962
16662
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13963
16663
  upload_protocol?:
13964
16664
  string;
13965
16665
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
13966
16666
  uploadType?:
13967
16667
  string;
13968
- },
13969
- body: GoogleCloudAiplatformV1Endpoint): Request<GoogleCloudAiplatformV1Endpoint>;
13970
- /** Perform an online prediction. */
13971
- predict(request: {
16668
+ }): Request<GoogleLongrunningListOperationsResponse>;
16669
+ /**
16670
+ * 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
16671
+ * 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
16672
+ * `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
16673
+ * an immediate response is no guarantee that the operation is done.
16674
+ */
16675
+ wait(request?: {
13972
16676
  /** V1 error format. */
13973
16677
  "$.xgafv"?:
13974
16678
  string;
@@ -13981,15 +16685,15 @@ declare namespace gapi.client {
13981
16685
  /** JSONP */
13982
16686
  callback?:
13983
16687
  string;
13984
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
13985
- endpoint:
13986
- string;
13987
16688
  /** Selector specifying which fields to include in a partial response. */
13988
16689
  fields?:
13989
16690
  string;
13990
16691
  /** 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. */
13991
16692
  key?:
13992
16693
  string;
16694
+ /** The name of the operation resource to wait on. */
16695
+ name:
16696
+ string;
13993
16697
  /** OAuth 2.0 token for the current user. */
13994
16698
  oauth_token?:
13995
16699
  string;
@@ -13999,17 +16703,23 @@ declare namespace gapi.client {
13999
16703
  /** 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. */
14000
16704
  quotaUser?:
14001
16705
  string;
16706
+ /**
16707
+ * 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
16708
+ * specified, the shorter one will be used.
16709
+ */
16710
+ timeout?:
16711
+ string;
14002
16712
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14003
16713
  upload_protocol?:
14004
16714
  string;
14005
16715
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14006
16716
  uploadType?:
14007
16717
  string;
14008
- /** Request body */
14009
- resource:
14010
- GoogleCloudAiplatformV1PredictRequest;
14011
- }): Request<GoogleCloudAiplatformV1PredictResponse>;
14012
- predict(request: {
16718
+ }): Request<GoogleLongrunningOperation>;
16719
+ }
16720
+ interface FeatureOnlineStoresResource {
16721
+ /** Creates a new FeatureOnlineStore in a given project and location. */
16722
+ create(request: {
14013
16723
  /** V1 error format. */
14014
16724
  "$.xgafv"?:
14015
16725
  string;
@@ -14022,8 +16732,11 @@ declare namespace gapi.client {
14022
16732
  /** JSONP */
14023
16733
  callback?:
14024
16734
  string;
14025
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14026
- endpoint:
16735
+ /**
16736
+ * 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
16737
+ * valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
16738
+ */
16739
+ featureOnlineStoreId?:
14027
16740
  string;
14028
16741
  /** Selector specifying which fields to include in a partial response. */
14029
16742
  fields?:
@@ -14034,6 +16747,9 @@ declare namespace gapi.client {
14034
16747
  /** OAuth 2.0 token for the current user. */
14035
16748
  oauth_token?:
14036
16749
  string;
16750
+ /** Required. The resource name of the Location to create FeatureOnlineStores. Format: `projects/{project}/locations/{location}'` */
16751
+ parent:
16752
+ string;
14037
16753
  /** Returns response with indentations and line breaks. */
14038
16754
  prettyPrint?:
14039
16755
  boolean;
@@ -14046,13 +16762,11 @@ declare namespace gapi.client {
14046
16762
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14047
16763
  uploadType?:
14048
16764
  string;
14049
- },
14050
- body: GoogleCloudAiplatformV1PredictRequest): Request<GoogleCloudAiplatformV1PredictResponse>;
14051
- /**
14052
- * Perform an online prediction with an arbitrary HTTP payload. The response includes the following HTTP headers: * `X-Vertex-AI-Endpoint-Id`: ID of the Endpoint that served this
14053
- * prediction. * `X-Vertex-AI-Deployed-Model-Id`: ID of the Endpoint's DeployedModel that served this prediction.
14054
- */
14055
- rawPredict(request: {
16765
+ /** Request body */
16766
+ resource:
16767
+ GoogleCloudAiplatformV1FeatureOnlineStore;
16768
+ }): Request<GoogleLongrunningOperation>;
16769
+ create(request: {
14056
16770
  /** V1 error format. */
14057
16771
  "$.xgafv"?:
14058
16772
  string;
@@ -14065,8 +16779,11 @@ declare namespace gapi.client {
14065
16779
  /** JSONP */
14066
16780
  callback?:
14067
16781
  string;
14068
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14069
- endpoint:
16782
+ /**
16783
+ * 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
16784
+ * valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.
16785
+ */
16786
+ featureOnlineStoreId?:
14070
16787
  string;
14071
16788
  /** Selector specifying which fields to include in a partial response. */
14072
16789
  fields?:
@@ -14077,6 +16794,9 @@ declare namespace gapi.client {
14077
16794
  /** OAuth 2.0 token for the current user. */
14078
16795
  oauth_token?:
14079
16796
  string;
16797
+ /** Required. The resource name of the Location to create FeatureOnlineStores. Format: `projects/{project}/locations/{location}'` */
16798
+ parent:
16799
+ string;
14080
16800
  /** Returns response with indentations and line breaks. */
14081
16801
  prettyPrint?:
14082
16802
  boolean;
@@ -14089,11 +16809,10 @@ declare namespace gapi.client {
14089
16809
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14090
16810
  uploadType?:
14091
16811
  string;
14092
- /** Request body */
14093
- resource:
14094
- GoogleCloudAiplatformV1RawPredictRequest;
14095
- }): Request<GoogleApiHttpBody>;
14096
- rawPredict(request: {
16812
+ },
16813
+ body: GoogleCloudAiplatformV1FeatureOnlineStore): Request<GoogleLongrunningOperation>;
16814
+ /** Deletes a single FeatureOnlineStore. The FeatureOnlineStore must not contain any FeatureViews. */
16815
+ delete(request?: {
14097
16816
  /** V1 error format. */
14098
16817
  "$.xgafv"?:
14099
16818
  string;
@@ -14106,15 +16825,21 @@ declare namespace gapi.client {
14106
16825
  /** JSONP */
14107
16826
  callback?:
14108
16827
  string;
14109
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14110
- endpoint:
14111
- string;
14112
16828
  /** Selector specifying which fields to include in a partial response. */
14113
16829
  fields?:
14114
16830
  string;
16831
+ /**
16832
+ * 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
16833
+ * FeatureViews.)
16834
+ */
16835
+ force?:
16836
+ boolean;
14115
16837
  /** 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. */
14116
16838
  key?:
14117
16839
  string;
16840
+ /** Required. The name of the FeatureOnlineStore to be deleted. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}` */
16841
+ name:
16842
+ string;
14118
16843
  /** OAuth 2.0 token for the current user. */
14119
16844
  oauth_token?:
14120
16845
  string;
@@ -14130,10 +16855,9 @@ declare namespace gapi.client {
14130
16855
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14131
16856
  uploadType?:
14132
16857
  string;
14133
- },
14134
- body: GoogleCloudAiplatformV1RawPredictRequest): Request<GoogleApiHttpBody>;
14135
- /** Perform a server-side streaming online prediction request for Vertex LLM streaming. */
14136
- serverStreamingPredict(request: {
16858
+ }): Request<GoogleLongrunningOperation>;
16859
+ /** Gets details of a single FeatureOnlineStore. */
16860
+ get(request?: {
14137
16861
  /** V1 error format. */
14138
16862
  "$.xgafv"?:
14139
16863
  string;
@@ -14146,15 +16870,15 @@ declare namespace gapi.client {
14146
16870
  /** JSONP */
14147
16871
  callback?:
14148
16872
  string;
14149
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14150
- endpoint:
14151
- string;
14152
16873
  /** Selector specifying which fields to include in a partial response. */
14153
16874
  fields?:
14154
16875
  string;
14155
16876
  /** 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. */
14156
16877
  key?:
14157
16878
  string;
16879
+ /** Required. The name of the FeatureOnlineStore resource. */
16880
+ name:
16881
+ string;
14158
16882
  /** OAuth 2.0 token for the current user. */
14159
16883
  oauth_token?:
14160
16884
  string;
@@ -14170,11 +16894,9 @@ declare namespace gapi.client {
14170
16894
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14171
16895
  uploadType?:
14172
16896
  string;
14173
- /** Request body */
14174
- resource:
14175
- GoogleCloudAiplatformV1StreamingPredictRequest;
14176
- }): Request<GoogleCloudAiplatformV1StreamingPredictResponse>;
14177
- serverStreamingPredict(request: {
16897
+ }): Request<GoogleCloudAiplatformV1FeatureOnlineStore>;
16898
+ /** Lists FeatureOnlineStores in a given project and location. */
16899
+ list(request?: {
14178
16900
  /** V1 error format. */
14179
16901
  "$.xgafv"?:
14180
16902
  string;
@@ -14187,18 +16909,41 @@ declare namespace gapi.client {
14187
16909
  /** JSONP */
14188
16910
  callback?:
14189
16911
  string;
14190
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14191
- endpoint:
14192
- string;
14193
16912
  /** Selector specifying which fields to include in a partial response. */
14194
16913
  fields?:
14195
16914
  string;
16915
+ /**
16916
+ * Lists the FeatureOnlineStores that match the filter expression. The following fields are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons.
16917
+ * Values must be in RFC 3339 format. * `update_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values must be in RFC 3339 format. * `labels`: Supports key-value
16918
+ * 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 =
16919
+ * "prod"` FeatureOnlineStores with label "env" set to "prod".
16920
+ */
16921
+ filter?:
16922
+ string;
14196
16923
  /** 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. */
14197
16924
  key?:
14198
16925
  string;
14199
16926
  /** OAuth 2.0 token for the current user. */
14200
16927
  oauth_token?:
14201
16928
  string;
16929
+ /** 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` */
16930
+ orderBy?:
16931
+ string;
16932
+ /**
16933
+ * 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
16934
+ * value is 100; any value greater than 100 will be coerced to 100.
16935
+ */
16936
+ pageSize?:
16937
+ number;
16938
+ /**
16939
+ * A page token, received from a previous FeatureOnlineStoreAdminService.ListFeatureOnlineStores call. Provide this to retrieve the subsequent page. When paginating, all other
16940
+ * parameters provided to FeatureOnlineStoreAdminService.ListFeatureOnlineStores must match the call that provided the page token.
16941
+ */
16942
+ pageToken?:
16943
+ string;
16944
+ /** Required. The resource name of the Location to list FeatureOnlineStores. Format: `projects/{project}/locations/{location}` */
16945
+ parent:
16946
+ string;
14202
16947
  /** Returns response with indentations and line breaks. */
14203
16948
  prettyPrint?:
14204
16949
  boolean;
@@ -14211,10 +16956,9 @@ declare namespace gapi.client {
14211
16956
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14212
16957
  uploadType?:
14213
16958
  string;
14214
- },
14215
- body: GoogleCloudAiplatformV1StreamingPredictRequest): Request<GoogleCloudAiplatformV1StreamingPredictResponse>;
14216
- /** Undeploys a Model from an Endpoint, removing a DeployedModel from it, and freeing all resources it's using. */
14217
- undeployModel(request: {
16959
+ }): Request<GoogleCloudAiplatformV1ListFeatureOnlineStoresResponse>;
16960
+ /** Updates the parameters of a single FeatureOnlineStore. */
16961
+ patch(request: {
14218
16962
  /** V1 error format. */
14219
16963
  "$.xgafv"?:
14220
16964
  string;
@@ -14227,15 +16971,15 @@ declare namespace gapi.client {
14227
16971
  /** JSONP */
14228
16972
  callback?:
14229
16973
  string;
14230
- /** Required. The name of the Endpoint resource from which to undeploy a Model. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14231
- endpoint:
14232
- string;
14233
16974
  /** Selector specifying which fields to include in a partial response. */
14234
16975
  fields?:
14235
16976
  string;
14236
16977
  /** 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. */
14237
16978
  key?:
14238
16979
  string;
16980
+ /** Output only. Name of the FeatureOnlineStore. Format: `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}` */
16981
+ name:
16982
+ string;
14239
16983
  /** OAuth 2.0 token for the current user. */
14240
16984
  oauth_token?:
14241
16985
  string;
@@ -14245,6 +16989,13 @@ declare namespace gapi.client {
14245
16989
  /** 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. */
14246
16990
  quotaUser?:
14247
16991
  string;
16992
+ /**
16993
+ * 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
16994
+ * 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
16995
+ * be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `big_query_source` * `labels` * `sync_config`
16996
+ */
16997
+ updateMask?:
16998
+ string;
14248
16999
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14249
17000
  upload_protocol?:
14250
17001
  string;
@@ -14253,9 +17004,9 @@ declare namespace gapi.client {
14253
17004
  string;
14254
17005
  /** Request body */
14255
17006
  resource:
14256
- GoogleCloudAiplatformV1UndeployModelRequest;
17007
+ GoogleCloudAiplatformV1FeatureOnlineStore;
14257
17008
  }): Request<GoogleLongrunningOperation>;
14258
- undeployModel(request: {
17009
+ patch(request: {
14259
17010
  /** V1 error format. */
14260
17011
  "$.xgafv"?:
14261
17012
  string;
@@ -14268,15 +17019,15 @@ declare namespace gapi.client {
14268
17019
  /** JSONP */
14269
17020
  callback?:
14270
17021
  string;
14271
- /** Required. The name of the Endpoint resource from which to undeploy a Model. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
14272
- endpoint:
14273
- string;
14274
17022
  /** Selector specifying which fields to include in a partial response. */
14275
17023
  fields?:
14276
17024
  string;
14277
17025
  /** 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. */
14278
17026
  key?:
14279
17027
  string;
17028
+ /** Output only. Name of the FeatureOnlineStore. Format: `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}` */
17029
+ name:
17030
+ string;
14280
17031
  /** OAuth 2.0 token for the current user. */
14281
17032
  oauth_token?:
14282
17033
  string;
@@ -14286,6 +17037,13 @@ declare namespace gapi.client {
14286
17037
  /** 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. */
14287
17038
  quotaUser?:
14288
17039
  string;
17040
+ /**
17041
+ * 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
17042
+ * 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
17043
+ * be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `big_query_source` * `labels` * `sync_config`
17044
+ */
17045
+ updateMask?:
17046
+ string;
14289
17047
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14290
17048
  upload_protocol?:
14291
17049
  string;
@@ -14293,7 +17051,9 @@ declare namespace gapi.client {
14293
17051
  uploadType?:
14294
17052
  string;
14295
17053
  },
14296
- body: GoogleCloudAiplatformV1UndeployModelRequest): Request<GoogleLongrunningOperation>;
17054
+ body: GoogleCloudAiplatformV1FeatureOnlineStore): Request<GoogleLongrunningOperation>;
17055
+ featureViews:
17056
+ FeatureViewsResource;
14297
17057
  operations:
14298
17058
  OperationsResource;
14299
17059
  }
@@ -32535,6 +35295,10 @@ declare namespace gapi.client {
32535
35295
  DeploymentResourcePoolsResource;
32536
35296
  endpoints:
32537
35297
  EndpointsResource;
35298
+ featureGroups:
35299
+ FeatureGroupsResource;
35300
+ featureOnlineStores:
35301
+ FeatureOnlineStoresResource;
32538
35302
  featurestores:
32539
35303
  FeaturestoresResource;
32540
35304
  hyperparameterTuningJobs: