@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20250715 → 0.0.20250731
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +165 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250731
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -364,7 +364,7 @@ declare namespace gapi.client {
|
|
|
364
364
|
samplingCount?: number;
|
|
365
365
|
}
|
|
366
366
|
interface GoogleCloudAiplatformV1AutoscalingMetricSpec {
|
|
367
|
-
/** Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` */
|
|
367
|
+
/** Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.googleapis.com/prediction/online/request_count` */
|
|
368
368
|
metricName?: string;
|
|
369
369
|
/** The target resource utilization in percentage (1% - 100%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60%) if not provided. */
|
|
370
370
|
target?: number;
|
|
@@ -990,6 +990,8 @@ declare namespace gapi.client {
|
|
|
990
990
|
deploymentResourcePoolId?: string;
|
|
991
991
|
}
|
|
992
992
|
interface GoogleCloudAiplatformV1CreateEndpointOperationMetadata {
|
|
993
|
+
/** Output only. The deployment stage of the model. Only populated if this CreateEndpoint request deploys a model at the same time. */
|
|
994
|
+
deploymentStage?: string;
|
|
993
995
|
/** The operation generic information. */
|
|
994
996
|
genericMetadata?: GoogleCloudAiplatformV1GenericOperationMetadata;
|
|
995
997
|
}
|
|
@@ -1372,6 +1374,8 @@ declare namespace gapi.client {
|
|
|
1372
1374
|
deployedIndexAuthConfig?: GoogleCloudAiplatformV1DeployedIndexAuthConfig;
|
|
1373
1375
|
/** Optional. The deployment group can be no longer than 64 characters (eg: 'test', 'prod'). If not set, we will use the 'default' deployment group. Creating `deployment_groups` with `reserved_ip_ranges` is a recommended practice when the peered network has multiple peering ranges. This creates your deployments from predictable IP spaces for easier traffic administration. Also, one deployment_group (except 'default') can only be used with the same reserved_ip_ranges which means if the deployment_group has been used with reserved_ip_ranges: [a, b, c], using it with [a, b] or [d, e] is disallowed. Note: we only support up to 5 deployment groups(not including 'default'). */
|
|
1374
1376
|
deploymentGroup?: string;
|
|
1377
|
+
/** Optional. The deployment tier that the index is deployed to. DEPLOYMENT_TIER_UNSPECIFIED defaults to PERFORMANCE. */
|
|
1378
|
+
deploymentTier?: string;
|
|
1375
1379
|
/** The display name of the DeployedIndex. If not provided upon creation, the Index's display_name is used. */
|
|
1376
1380
|
displayName?: string;
|
|
1377
1381
|
/** Optional. If true, private endpoint's access logs are sent to Cloud Logging. These logs are like standard server access logs, containing information like timestamp and latency for each MatchRequest. Note that logs may incur a cost, especially if the deployed index receives a high queries per second rate (QPS). Estimate your costs before enabling this option. */
|
|
@@ -1500,6 +1504,8 @@ declare namespace gapi.client {
|
|
|
1500
1504
|
serviceAccount?: string;
|
|
1501
1505
|
}
|
|
1502
1506
|
interface GoogleCloudAiplatformV1DeployModelOperationMetadata {
|
|
1507
|
+
/** Output only. The deployment stage of the model. */
|
|
1508
|
+
deploymentStage?: string;
|
|
1503
1509
|
/** The operation generic information. */
|
|
1504
1510
|
genericMetadata?: GoogleCloudAiplatformV1GenericOperationMetadata;
|
|
1505
1511
|
}
|
|
@@ -1676,7 +1682,10 @@ declare namespace gapi.client {
|
|
|
1676
1682
|
/** Output only. Timestamp when this Endpoint was last updated. */
|
|
1677
1683
|
updateTime?: string;
|
|
1678
1684
|
}
|
|
1679
|
-
interface GoogleCloudAiplatformV1EnterpriseWebSearch {
|
|
1685
|
+
interface GoogleCloudAiplatformV1EnterpriseWebSearch {
|
|
1686
|
+
/** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. */
|
|
1687
|
+
excludeDomains?: string[];
|
|
1688
|
+
}
|
|
1680
1689
|
interface GoogleCloudAiplatformV1EntityIdSelector {
|
|
1681
1690
|
/** Source of Csv */
|
|
1682
1691
|
csvSource?: GoogleCloudAiplatformV1CsvSource;
|
|
@@ -2590,6 +2599,34 @@ declare namespace gapi.client {
|
|
|
2590
2599
|
/** Parts to construct Entity ID. Should match with the same ID columns as defined in FeatureView in the same order. */
|
|
2591
2600
|
parts?: string[];
|
|
2592
2601
|
}
|
|
2602
|
+
interface GoogleCloudAiplatformV1FeatureViewDirectWriteRequest {
|
|
2603
|
+
/** Required. The data keys and associated feature values. */
|
|
2604
|
+
dataKeyAndFeatureValues?: GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues[];
|
|
2605
|
+
}
|
|
2606
|
+
interface GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValues {
|
|
2607
|
+
/** The data key. */
|
|
2608
|
+
dataKey?: GoogleCloudAiplatformV1FeatureViewDataKey;
|
|
2609
|
+
/** List of features to write. */
|
|
2610
|
+
features?: GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature[];
|
|
2611
|
+
}
|
|
2612
|
+
interface GoogleCloudAiplatformV1FeatureViewDirectWriteRequestDataKeyAndFeatureValuesFeature {
|
|
2613
|
+
/** Feature short name. */
|
|
2614
|
+
name?: string;
|
|
2615
|
+
/** Feature value. A user provided timestamp may be set in the `FeatureValue.metadata.generate_time` field. */
|
|
2616
|
+
value?: GoogleCloudAiplatformV1FeatureValue;
|
|
2617
|
+
}
|
|
2618
|
+
interface GoogleCloudAiplatformV1FeatureViewDirectWriteResponse {
|
|
2619
|
+
/** Response status for the keys listed in FeatureViewDirectWriteResponse.write_responses. The error only applies to the listed data keys - the stream will remain open for further FeatureOnlineStoreService.FeatureViewDirectWriteRequest requests. Partial failures (e.g. if the first 10 keys of a request fail, but the rest succeed) from a single request may result in multiple responses - there will be one response for the successful request keys and one response for the failing request keys. */
|
|
2620
|
+
status?: GoogleRpcStatus;
|
|
2621
|
+
/** Details about write for each key. If status is not OK, WriteResponse.data_key will have the key with error, but WriteResponse.online_store_write_time will not be present. */
|
|
2622
|
+
writeResponses?: GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse[];
|
|
2623
|
+
}
|
|
2624
|
+
interface GoogleCloudAiplatformV1FeatureViewDirectWriteResponseWriteResponse {
|
|
2625
|
+
/** What key is this write response associated with. */
|
|
2626
|
+
dataKey?: GoogleCloudAiplatformV1FeatureViewDataKey;
|
|
2627
|
+
/** When the feature values were written to the online store. If FeatureViewDirectWriteResponse.status is not OK, this field is not populated. */
|
|
2628
|
+
onlineStoreWriteTime?: string;
|
|
2629
|
+
}
|
|
2593
2630
|
interface GoogleCloudAiplatformV1FeatureViewFeatureRegistrySource {
|
|
2594
2631
|
/** Required. List of features that need to be synced to Online Store. */
|
|
2595
2632
|
featureGroups?: GoogleCloudAiplatformV1FeatureViewFeatureRegistrySourceFeatureGroup[];
|
|
@@ -3031,6 +3068,12 @@ declare namespace gapi.client {
|
|
|
3031
3068
|
/** Required. The type of the Google Drive resource. */
|
|
3032
3069
|
resourceType?: string;
|
|
3033
3070
|
}
|
|
3071
|
+
interface GoogleCloudAiplatformV1GoogleMaps {
|
|
3072
|
+
/** The authentication config to access the API. Deprecated. Please use auth_config instead. */
|
|
3073
|
+
apiAuth?: GoogleCloudAiplatformV1ApiAuth;
|
|
3074
|
+
/** The authentication config to access the API. Only API key is supported. */
|
|
3075
|
+
authConfig?: GoogleCloudAiplatformV1AuthConfig;
|
|
3076
|
+
}
|
|
3034
3077
|
interface GoogleCloudAiplatformV1GoogleSearchRetrieval {
|
|
3035
3078
|
/** Specifies the dynamic retrieval configuration for the given source. */
|
|
3036
3079
|
dynamicRetrievalConfig?: GoogleCloudAiplatformV1DynamicRetrievalConfig;
|
|
@@ -3060,11 +3103,51 @@ declare namespace gapi.client {
|
|
|
3060
3103
|
version?: number;
|
|
3061
3104
|
}
|
|
3062
3105
|
interface GoogleCloudAiplatformV1GroundingChunk {
|
|
3106
|
+
/** Grounding chunk from Google Maps. */
|
|
3107
|
+
maps?: GoogleCloudAiplatformV1GroundingChunkMaps;
|
|
3063
3108
|
/** Grounding chunk from context retrieved by the retrieval tools. */
|
|
3064
3109
|
retrievedContext?: GoogleCloudAiplatformV1GroundingChunkRetrievedContext;
|
|
3065
3110
|
/** Grounding chunk from the web. */
|
|
3066
3111
|
web?: GoogleCloudAiplatformV1GroundingChunkWeb;
|
|
3067
3112
|
}
|
|
3113
|
+
interface GoogleCloudAiplatformV1GroundingChunkMaps {
|
|
3114
|
+
/** Sources used to generate the place answer. This includes review snippets and photos that were used to generate the answer, as well as uris to flag content. */
|
|
3115
|
+
placeAnswerSources?: GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources;
|
|
3116
|
+
/** This Place's resource name, in `places/{place_id}` format. Can be used to look up the Place. */
|
|
3117
|
+
placeId?: string;
|
|
3118
|
+
/** Text of the chunk. */
|
|
3119
|
+
text?: string;
|
|
3120
|
+
/** Title of the chunk. */
|
|
3121
|
+
title?: string;
|
|
3122
|
+
/** URI reference of the chunk. */
|
|
3123
|
+
uri?: string;
|
|
3124
|
+
}
|
|
3125
|
+
interface GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSources {
|
|
3126
|
+
/** A link where users can flag a problem with the generated answer. */
|
|
3127
|
+
flagContentUri?: string;
|
|
3128
|
+
/** Snippets of reviews that are used to generate the answer. */
|
|
3129
|
+
reviewSnippets?: GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet[];
|
|
3130
|
+
}
|
|
3131
|
+
interface GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution {
|
|
3132
|
+
/** Name of the author of the Photo or Review. */
|
|
3133
|
+
displayName?: string;
|
|
3134
|
+
/** Profile photo URI of the author of the Photo or Review. */
|
|
3135
|
+
photoUri?: string;
|
|
3136
|
+
/** URI of the author of the Photo or Review. */
|
|
3137
|
+
uri?: string;
|
|
3138
|
+
}
|
|
3139
|
+
interface GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesReviewSnippet {
|
|
3140
|
+
/** This review's author. */
|
|
3141
|
+
authorAttribution?: GoogleCloudAiplatformV1GroundingChunkMapsPlaceAnswerSourcesAuthorAttribution;
|
|
3142
|
+
/** A link where users can flag a problem with the review. */
|
|
3143
|
+
flagContentUri?: string;
|
|
3144
|
+
/** A link to show the review on Google Maps. */
|
|
3145
|
+
googleMapsUri?: string;
|
|
3146
|
+
/** A string of formatted recent time, expressing the review time relative to the current time in a form appropriate for the language and country. */
|
|
3147
|
+
relativePublishTimeDescription?: string;
|
|
3148
|
+
/** A reference representing this place review which may be used to look up this place review again. */
|
|
3149
|
+
review?: string;
|
|
3150
|
+
}
|
|
3068
3151
|
interface GoogleCloudAiplatformV1GroundingChunkRetrievedContext {
|
|
3069
3152
|
/** Additional context for the RAG retrieval result. This is only populated when using the RAG retrieval tool. */
|
|
3070
3153
|
ragChunk?: GoogleCloudAiplatformV1RagChunk;
|
|
@@ -3084,6 +3167,8 @@ declare namespace gapi.client {
|
|
|
3084
3167
|
uri?: string;
|
|
3085
3168
|
}
|
|
3086
3169
|
interface GoogleCloudAiplatformV1GroundingMetadata {
|
|
3170
|
+
/** Optional. Output only. Resource name of the Google Maps widget context token to be used with the PlacesContextElement widget to render contextual data. This is populated only for Google Maps grounding. */
|
|
3171
|
+
googleMapsWidgetContextToken?: string;
|
|
3087
3172
|
/** List of supporting references retrieved from specified grounding source. */
|
|
3088
3173
|
groundingChunks?: GoogleCloudAiplatformV1GroundingChunk[];
|
|
3089
3174
|
/** Optional. List of grounding support. */
|
|
@@ -3288,6 +3373,8 @@ declare namespace gapi.client {
|
|
|
3288
3373
|
crowdingTag?: GoogleCloudAiplatformV1IndexDatapointCrowdingTag;
|
|
3289
3374
|
/** Required. Unique identifier of the datapoint. */
|
|
3290
3375
|
datapointId?: string;
|
|
3376
|
+
/** Optional. The key-value map of additional metadata for the datapoint. */
|
|
3377
|
+
embeddingMetadata?: {[P in string]: any};
|
|
3291
3378
|
/** Required. Feature embedding vector for dense index. An array of numbers with the length of [NearestNeighborSearchConfig.dimensions]. */
|
|
3292
3379
|
featureVector?: number[];
|
|
3293
3380
|
/** Optional. List of Restrict of the datapoint, used to perform "restricted searches" where boolean rule are used to filter the subset of the database eligible for matching. This uses numeric comparisons. */
|
|
@@ -5445,6 +5532,8 @@ declare namespace gapi.client {
|
|
|
5445
5532
|
notebooks?: GoogleCloudAiplatformV1PublisherModelCallToActionRegionalResourceReferences[];
|
|
5446
5533
|
}
|
|
5447
5534
|
interface GoogleCloudAiplatformV1PublisherModelCallToActionRegionalResourceReferences {
|
|
5535
|
+
/** Optional. For notebook resource. When set to true, the Colab Enterprise link will be disabled in the "open notebook" dialog in UI. */
|
|
5536
|
+
colabNotebookDisabled?: boolean;
|
|
5448
5537
|
/** Required. */
|
|
5449
5538
|
references?: {
|
|
5450
5539
|
[P in string]: GoogleCloudAiplatformV1PublisherModelResourceReference;
|
|
@@ -6001,6 +6090,8 @@ declare namespace gapi.client {
|
|
|
6001
6090
|
description?: string;
|
|
6002
6091
|
/** Required. The display name of the ReasoningEngine. */
|
|
6003
6092
|
displayName?: string;
|
|
6093
|
+
/** Customer-managed encryption key spec for a ReasoningEngine. If set, this ReasoningEngine and all sub-resources of this ReasoningEngine will be secured by this key. */
|
|
6094
|
+
encryptionSpec?: GoogleCloudAiplatformV1EncryptionSpec;
|
|
6004
6095
|
/** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
6005
6096
|
etag?: string;
|
|
6006
6097
|
/** Identifier. The resource name of the ReasoningEngine. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
@@ -6019,6 +6110,8 @@ declare namespace gapi.client {
|
|
|
6019
6110
|
deploymentSpec?: GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpec;
|
|
6020
6111
|
/** Optional. User provided package spec of the ReasoningEngine. Ignored when users directly specify a deployment image through `deployment_spec.first_party_image_override`, but keeping the field_behavior to avoid introducing breaking changes. */
|
|
6021
6112
|
packageSpec?: GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec;
|
|
6113
|
+
/** Optional. The service account that the Reasoning Engine artifact runs as. It should have "roles/storage.objectViewer" for reading the user project's Cloud Storage and "roles/aiplatform.user" for using Vertex extensions. If not specified, the Vertex AI Reasoning Engine Service Agent in the project will be used. */
|
|
6114
|
+
serviceAccount?: string;
|
|
6022
6115
|
}
|
|
6023
6116
|
interface GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpec {
|
|
6024
6117
|
/** Optional. Environment variables to be set with the Reasoning Engine deployment. The environment variables can be updated through the UpdateReasoningEngine API. */
|
|
@@ -8626,14 +8719,14 @@ declare namespace gapi.client {
|
|
|
8626
8719
|
interface GoogleCloudAiplatformV1Tool {
|
|
8627
8720
|
/** Optional. CodeExecution tool type. Enables the model to execute code as part of generation. */
|
|
8628
8721
|
codeExecution?: any;
|
|
8629
|
-
/** Optional. Tool to support the model interacting directly with the computer. If enabled, it automatically populates computer-use specific Function Declarations. */
|
|
8630
|
-
computerUse?: GoogleCloudAiplatformV1ToolComputerUse;
|
|
8631
8722
|
/** Optional. Tool to support searching public web data, powered by Vertex AI Search and Sec4 compliance. */
|
|
8632
|
-
enterpriseWebSearch?:
|
|
8633
|
-
/** Optional. Function tool type. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum
|
|
8723
|
+
enterpriseWebSearch?: GoogleCloudAiplatformV1EnterpriseWebSearch;
|
|
8724
|
+
/** Optional. Function tool type. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum 512 function declarations can be provided. */
|
|
8634
8725
|
functionDeclarations?: GoogleCloudAiplatformV1FunctionDeclaration[];
|
|
8726
|
+
/** Optional. GoogleMaps tool type. Tool to support Google Maps in Model. */
|
|
8727
|
+
googleMaps?: GoogleCloudAiplatformV1GoogleMaps;
|
|
8635
8728
|
/** Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. */
|
|
8636
|
-
googleSearch?:
|
|
8729
|
+
googleSearch?: GoogleCloudAiplatformV1ToolGoogleSearch;
|
|
8637
8730
|
/** Optional. GoogleSearchRetrieval tool type. Specialized retrieval tool that is powered by Google search. */
|
|
8638
8731
|
googleSearchRetrieval?: GoogleCloudAiplatformV1GoogleSearchRetrieval;
|
|
8639
8732
|
/** Optional. Retrieval tool type. System will always execute the provided retrieval tool(s) to get external knowledge to answer the prompt. Retrieval results are presented to the model for generation. */
|
|
@@ -8669,17 +8762,16 @@ declare namespace gapi.client {
|
|
|
8669
8762
|
}
|
|
8670
8763
|
interface GoogleCloudAiplatformV1ToolCallValidSpec {}
|
|
8671
8764
|
interface GoogleCloudAiplatformV1ToolCodeExecution {}
|
|
8672
|
-
interface GoogleCloudAiplatformV1ToolComputerUse {
|
|
8673
|
-
/** Required. The environment being operated. */
|
|
8674
|
-
environment?: string;
|
|
8675
|
-
}
|
|
8676
8765
|
interface GoogleCloudAiplatformV1ToolConfig {
|
|
8677
8766
|
/** Optional. Function calling config. */
|
|
8678
8767
|
functionCallingConfig?: GoogleCloudAiplatformV1FunctionCallingConfig;
|
|
8679
8768
|
/** Optional. Retrieval config. */
|
|
8680
8769
|
retrievalConfig?: GoogleCloudAiplatformV1RetrievalConfig;
|
|
8681
8770
|
}
|
|
8682
|
-
interface GoogleCloudAiplatformV1ToolGoogleSearch {
|
|
8771
|
+
interface GoogleCloudAiplatformV1ToolGoogleSearch {
|
|
8772
|
+
/** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"]. */
|
|
8773
|
+
excludeDomains?: string[];
|
|
8774
|
+
}
|
|
8683
8775
|
interface GoogleCloudAiplatformV1ToolNameMatchInput {
|
|
8684
8776
|
/** Required. Repeated tool name match instances. */
|
|
8685
8777
|
instances?: GoogleCloudAiplatformV1ToolNameMatchInstance[];
|
|
@@ -9230,6 +9322,8 @@ declare namespace gapi.client {
|
|
|
9230
9322
|
interface GoogleCloudAiplatformV1VideoMetadata {
|
|
9231
9323
|
/** Optional. The end offset of the video. */
|
|
9232
9324
|
endOffset?: string;
|
|
9325
|
+
/** Optional. The frame rate of the video sent to the model. If not specified, the default value will be 1.0. The fps range is (0.0, 24.0]. */
|
|
9326
|
+
fps?: number;
|
|
9233
9327
|
/** Optional. The start offset of the video. */
|
|
9234
9328
|
startOffset?: string;
|
|
9235
9329
|
}
|
|
@@ -16057,6 +16151,64 @@ declare namespace gapi.client {
|
|
|
16057
16151
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16058
16152
|
uploadType?: string;
|
|
16059
16153
|
}): Request<GoogleLongrunningOperation>;
|
|
16154
|
+
/** Bidirectional streaming RPC to directly write to feature values in a feature view. Requests may not have a one-to-one mapping to responses and responses may be returned out-of-order to reduce latency. */
|
|
16155
|
+
directWrite(request: {
|
|
16156
|
+
/** V1 error format. */
|
|
16157
|
+
'$.xgafv'?: string;
|
|
16158
|
+
/** OAuth access token. */
|
|
16159
|
+
access_token?: string;
|
|
16160
|
+
/** Data format for response. */
|
|
16161
|
+
alt?: string;
|
|
16162
|
+
/** JSONP */
|
|
16163
|
+
callback?: string;
|
|
16164
|
+
/** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
16165
|
+
featureView: string;
|
|
16166
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16167
|
+
fields?: string;
|
|
16168
|
+
/** 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. */
|
|
16169
|
+
key?: string;
|
|
16170
|
+
/** OAuth 2.0 token for the current user. */
|
|
16171
|
+
oauth_token?: string;
|
|
16172
|
+
/** Returns response with indentations and line breaks. */
|
|
16173
|
+
prettyPrint?: boolean;
|
|
16174
|
+
/** 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. */
|
|
16175
|
+
quotaUser?: string;
|
|
16176
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16177
|
+
upload_protocol?: string;
|
|
16178
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16179
|
+
uploadType?: string;
|
|
16180
|
+
/** Request body */
|
|
16181
|
+
resource: GoogleCloudAiplatformV1FeatureViewDirectWriteRequest;
|
|
16182
|
+
}): Request<GoogleCloudAiplatformV1FeatureViewDirectWriteResponse>;
|
|
16183
|
+
directWrite(
|
|
16184
|
+
request: {
|
|
16185
|
+
/** V1 error format. */
|
|
16186
|
+
'$.xgafv'?: string;
|
|
16187
|
+
/** OAuth access token. */
|
|
16188
|
+
access_token?: string;
|
|
16189
|
+
/** Data format for response. */
|
|
16190
|
+
alt?: string;
|
|
16191
|
+
/** JSONP */
|
|
16192
|
+
callback?: string;
|
|
16193
|
+
/** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
16194
|
+
featureView: string;
|
|
16195
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16196
|
+
fields?: string;
|
|
16197
|
+
/** 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. */
|
|
16198
|
+
key?: string;
|
|
16199
|
+
/** OAuth 2.0 token for the current user. */
|
|
16200
|
+
oauth_token?: string;
|
|
16201
|
+
/** Returns response with indentations and line breaks. */
|
|
16202
|
+
prettyPrint?: boolean;
|
|
16203
|
+
/** 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. */
|
|
16204
|
+
quotaUser?: string;
|
|
16205
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16206
|
+
upload_protocol?: string;
|
|
16207
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16208
|
+
uploadType?: string;
|
|
16209
|
+
},
|
|
16210
|
+
body: GoogleCloudAiplatformV1FeatureViewDirectWriteRequest,
|
|
16211
|
+
): Request<GoogleCloudAiplatformV1FeatureViewDirectWriteResponse>;
|
|
16060
16212
|
/** Fetch feature values under a FeatureView. */
|
|
16061
16213
|
fetchFeatureValues(request: {
|
|
16062
16214
|
/** V1 error format. */
|