@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.3.20250926 → 0.3.20251010
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 +543 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251010
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1614,7 +1614,7 @@ declare namespace gapi.client {
|
|
|
1614
1614
|
deployedIndexAuthConfig?: GoogleCloudAiplatformV1beta1DeployedIndexAuthConfig;
|
|
1615
1615
|
/** 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'). */
|
|
1616
1616
|
deploymentGroup?: string;
|
|
1617
|
-
/** Optional. The deployment tier that the index is deployed to. DEPLOYMENT_TIER_UNSPECIFIED
|
|
1617
|
+
/** Optional. The deployment tier that the index is deployed to. DEPLOYMENT_TIER_UNSPECIFIED will use a system-chosen default tier. */
|
|
1618
1618
|
deploymentTier?: string;
|
|
1619
1619
|
/** The display name of the DeployedIndex. If not provided upon creation, the Index's display_name is used. */
|
|
1620
1620
|
displayName?: string;
|
|
@@ -1918,6 +1918,30 @@ declare namespace gapi.client {
|
|
|
1918
1918
|
/** The mode of the predictor to be used in dynamic retrieval. */
|
|
1919
1919
|
mode?: string;
|
|
1920
1920
|
}
|
|
1921
|
+
interface GoogleCloudAiplatformV1beta1EmbedContentRequest {
|
|
1922
|
+
/** Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length. */
|
|
1923
|
+
autoTruncate?: boolean;
|
|
1924
|
+
/** Required. Input content to be embedded. Required. */
|
|
1925
|
+
content?: GoogleCloudAiplatformV1beta1Content;
|
|
1926
|
+
/** Optional. Optional reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. */
|
|
1927
|
+
outputDimensionality?: number;
|
|
1928
|
+
/** Optional. The task type of the embedding. */
|
|
1929
|
+
taskType?: string;
|
|
1930
|
+
/** Optional. An optional title for the text. */
|
|
1931
|
+
title?: string;
|
|
1932
|
+
}
|
|
1933
|
+
interface GoogleCloudAiplatformV1beta1EmbedContentResponse {
|
|
1934
|
+
/** The embedding generated from the input content. */
|
|
1935
|
+
embedding?: GoogleCloudAiplatformV1beta1EmbedContentResponseEmbedding;
|
|
1936
|
+
/** Whether the input content was truncated before generating the embedding. */
|
|
1937
|
+
truncated?: boolean;
|
|
1938
|
+
/** Metadata about the response(s). */
|
|
1939
|
+
usageMetadata?: GoogleCloudAiplatformV1beta1UsageMetadata;
|
|
1940
|
+
}
|
|
1941
|
+
interface GoogleCloudAiplatformV1beta1EmbedContentResponseEmbedding {
|
|
1942
|
+
/** Embedding vector values. */
|
|
1943
|
+
values?: number[];
|
|
1944
|
+
}
|
|
1921
1945
|
interface GoogleCloudAiplatformV1beta1EnableModelRequest {
|
|
1922
1946
|
/** Optional. The ID links the Marketplace listing to the underlying Vertex AI model endpoint. Format: `services/{service_id}` Format: `services/{service_id}` */
|
|
1923
1947
|
service?: string;
|
|
@@ -1979,6 +2003,8 @@ declare namespace gapi.client {
|
|
|
1979
2003
|
updateTime?: string;
|
|
1980
2004
|
}
|
|
1981
2005
|
interface GoogleCloudAiplatformV1beta1EnterpriseWebSearch {
|
|
2006
|
+
/** Optional. Sites with confidence level chosen & above this value will be blocked from the search results. */
|
|
2007
|
+
blockingConfidence?: string;
|
|
1982
2008
|
/** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. */
|
|
1983
2009
|
excludeDomains?: string[];
|
|
1984
2010
|
}
|
|
@@ -2505,8 +2531,6 @@ declare namespace gapi.client {
|
|
|
2505
2531
|
stateDelta?: {[P in string]: any};
|
|
2506
2532
|
/** Optional. If set, the event transfers to the specified agent. */
|
|
2507
2533
|
transferAgent?: string;
|
|
2508
|
-
/** Deprecated. If set, the event transfers to the specified agent. */
|
|
2509
|
-
transferToAgent?: boolean;
|
|
2510
2534
|
}
|
|
2511
2535
|
interface GoogleCloudAiplatformV1beta1EventMetadata {
|
|
2512
2536
|
/** Optional. The branch of the event. The format is like agent_1.agent_2.agent_3, where agent_1 is the parent of agent_2, and agent_2 is the parent of agent_3. Branch is used when multiple child agents shouldn't see their siblings' conversation history. */
|
|
@@ -3183,6 +3207,10 @@ declare namespace gapi.client {
|
|
|
3183
3207
|
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtable {
|
|
3184
3208
|
/** Required. Autoscaling config applied to Bigtable Instance. */
|
|
3185
3209
|
autoScaling?: GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling;
|
|
3210
|
+
/** Output only. Metadata of the Bigtable instance. Output only. */
|
|
3211
|
+
bigtableMetadata?: GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata;
|
|
3212
|
+
/** Optional. It true, enable direct access to the Bigtable instance. */
|
|
3213
|
+
enableDirectBigtableAccess?: boolean;
|
|
3186
3214
|
}
|
|
3187
3215
|
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling {
|
|
3188
3216
|
/** 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 to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%. */
|
|
@@ -3192,6 +3220,14 @@ declare namespace gapi.client {
|
|
|
3192
3220
|
/** Required. The minimum number of nodes to scale down to. Must be greater than or equal to 1. */
|
|
3193
3221
|
minNodeCount?: number;
|
|
3194
3222
|
}
|
|
3223
|
+
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata {
|
|
3224
|
+
/** The Cloud Bigtable instance id. */
|
|
3225
|
+
instanceId?: string;
|
|
3226
|
+
/** The Cloud Bigtable table id. */
|
|
3227
|
+
tableId?: string;
|
|
3228
|
+
/** Tenant project ID. */
|
|
3229
|
+
tenantProjectId?: string;
|
|
3230
|
+
}
|
|
3195
3231
|
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreDedicatedServingEndpoint {
|
|
3196
3232
|
/** Optional. Private service connect config. The private service connection is available only for Optimized storage type, not for embedding management now. If PrivateServiceConnectConfig.enable_private_service_connect set to true, customers will use private service connection to send request. Otherwise, the connection will set to public endpoint. */
|
|
3197
3233
|
privateServiceConnectConfig?: GoogleCloudAiplatformV1beta1PrivateServiceConnectConfig;
|
|
@@ -3364,6 +3400,8 @@ declare namespace gapi.client {
|
|
|
3364
3400
|
interface GoogleCloudAiplatformV1beta1FeatureView {
|
|
3365
3401
|
/** Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore. */
|
|
3366
3402
|
bigQuerySource?: GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource;
|
|
3403
|
+
/** Output only. Metadata containing information about the Cloud Bigtable. */
|
|
3404
|
+
bigtableMetadata?: GoogleCloudAiplatformV1beta1FeatureViewBigtableMetadata;
|
|
3367
3405
|
/** Output only. Timestamp when this FeatureView was created. */
|
|
3368
3406
|
createTime?: string;
|
|
3369
3407
|
/** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
@@ -3401,6 +3439,10 @@ declare namespace gapi.client {
|
|
|
3401
3439
|
/** Required. The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig. */
|
|
3402
3440
|
uri?: string;
|
|
3403
3441
|
}
|
|
3442
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewBigtableMetadata {
|
|
3443
|
+
/** Output only. The Bigtable App Profile to use for reading from Bigtable. */
|
|
3444
|
+
readAppProfile?: string;
|
|
3445
|
+
}
|
|
3404
3446
|
interface GoogleCloudAiplatformV1beta1FeatureViewDataKey {
|
|
3405
3447
|
/** The actual Entity ID will be composed from this struct. This should match with the way ID is defined in the FeatureView spec. */
|
|
3406
3448
|
compositeKey?: GoogleCloudAiplatformV1beta1FeatureViewDataKeyCompositeKey;
|
|
@@ -3714,6 +3756,8 @@ declare namespace gapi.client {
|
|
|
3714
3756
|
version?: number;
|
|
3715
3757
|
}
|
|
3716
3758
|
interface GoogleCloudAiplatformV1beta1FullFineTuningSpec {
|
|
3759
|
+
/** Optional. Hyperparameters for Full Fine Tuning. */
|
|
3760
|
+
hyperParameters?: GoogleCloudAiplatformV1beta1SupervisedHyperParameters;
|
|
3717
3761
|
/** Required. Training dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
|
|
3718
3762
|
trainingDatasetUri?: string;
|
|
3719
3763
|
/** Optional. Validation dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
|
|
@@ -3752,9 +3796,33 @@ declare namespace gapi.client {
|
|
|
3752
3796
|
id?: string;
|
|
3753
3797
|
/** Required. The name of the function to call. Matches [FunctionDeclaration.name] and [FunctionCall.name]. */
|
|
3754
3798
|
name?: string;
|
|
3799
|
+
/** Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types. */
|
|
3800
|
+
parts?: GoogleCloudAiplatformV1beta1FunctionResponsePart[];
|
|
3755
3801
|
/** Required. The function response in JSON object format. Use "output" key to specify function output and "error" key to specify error details (if any). If "output" and "error" keys are not specified, then whole "response" is treated as function output. */
|
|
3756
3802
|
response?: {[P in string]: any};
|
|
3757
3803
|
}
|
|
3804
|
+
interface GoogleCloudAiplatformV1beta1FunctionResponseBlob {
|
|
3805
|
+
/** Required. Raw bytes. */
|
|
3806
|
+
data?: string;
|
|
3807
|
+
/** Optional. Display name of the blob. Used to provide a label or filename to distinguish blobs. This field is only returned in PromptMessage for prompt management. It is currently used in the Gemini GenerateContent calls only when server side tools (code_execution, google_search, and url_context) are enabled. */
|
|
3808
|
+
displayName?: string;
|
|
3809
|
+
/** Required. The IANA standard MIME type of the source data. */
|
|
3810
|
+
mimeType?: string;
|
|
3811
|
+
}
|
|
3812
|
+
interface GoogleCloudAiplatformV1beta1FunctionResponseFileData {
|
|
3813
|
+
/** Optional. Display name of the file data. Used to provide a label or filename to distinguish file datas. This field is only returned in PromptMessage for prompt management. It is currently used in the Gemini GenerateContent calls only when server side tools (code_execution, google_search, and url_context) are enabled. */
|
|
3814
|
+
displayName?: string;
|
|
3815
|
+
/** Required. URI. */
|
|
3816
|
+
fileUri?: string;
|
|
3817
|
+
/** Required. The IANA standard MIME type of the source data. */
|
|
3818
|
+
mimeType?: string;
|
|
3819
|
+
}
|
|
3820
|
+
interface GoogleCloudAiplatformV1beta1FunctionResponsePart {
|
|
3821
|
+
/** URI based data. */
|
|
3822
|
+
fileData?: GoogleCloudAiplatformV1beta1FunctionResponseFileData;
|
|
3823
|
+
/** Inline media bytes. */
|
|
3824
|
+
inlineData?: GoogleCloudAiplatformV1beta1FunctionResponseBlob;
|
|
3825
|
+
}
|
|
3758
3826
|
interface GoogleCloudAiplatformV1beta1GcsDestination {
|
|
3759
3827
|
/** Required. Google Cloud Storage URI to output directory. If the uri doesn't end with '/', a '/' will be automatically appended. The directory is created if it doesn't exist. */
|
|
3760
3828
|
outputUriPrefix?: string;
|
|
@@ -3899,6 +3967,13 @@ declare namespace gapi.client {
|
|
|
3899
3967
|
/** Output only. The traffic type for this request. */
|
|
3900
3968
|
trafficType?: string;
|
|
3901
3969
|
}
|
|
3970
|
+
interface GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest {}
|
|
3971
|
+
interface GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse {
|
|
3972
|
+
/** The OAuth 2.0 access token. */
|
|
3973
|
+
accessToken?: string;
|
|
3974
|
+
/** Token expiration time. This is always set */
|
|
3975
|
+
expireTime?: string;
|
|
3976
|
+
}
|
|
3902
3977
|
interface GoogleCloudAiplatformV1beta1GenerateInstanceRubricsRequest {
|
|
3903
3978
|
/** Required. The prompt to generate rubrics from. For single-turn queries, this is a single instance. For multi-turn queries, this is a repeated field that contains conversation history + latest request. */
|
|
3904
3979
|
contents?: GoogleCloudAiplatformV1beta1Content[];
|
|
@@ -3918,6 +3993,14 @@ declare namespace gapi.client {
|
|
|
3918
3993
|
directMemoriesSource?: GoogleCloudAiplatformV1beta1GenerateMemoriesRequestDirectMemoriesSource;
|
|
3919
3994
|
/** Optional. If true, generated memories will not be consolidated with existing memories; all generated memories will be added as new memories regardless of whether they are duplicates of or contradictory to existing memories. By default, memory consolidation is enabled. */
|
|
3920
3995
|
disableConsolidation?: boolean;
|
|
3996
|
+
/** Optional. If true, no revisions will be created for this request. */
|
|
3997
|
+
disableMemoryRevisions?: boolean;
|
|
3998
|
+
/** Optional. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
|
|
3999
|
+
revisionExpireTime?: string;
|
|
4000
|
+
/** Optional. Labels to be applied to the generated memory revisions. For example, you can use this to label a revision with its data source. */
|
|
4001
|
+
revisionLabels?: {[P in string]: string};
|
|
4002
|
+
/** Optional. The TTL for the revision. The expiration time is computed: now + TTL. */
|
|
4003
|
+
revisionTtl?: string;
|
|
3921
4004
|
/** Optional. The scope of the memories that should be generated. Memories will be consolidated across memories with the same scope. Must be provided unless the scope is defined in the source content. If `scope` is provided, it will override the scope defined in the source content. Scope values cannot contain the wildcard character '*'. */
|
|
3922
4005
|
scope?: {[P in string]: string};
|
|
3923
4006
|
/** Defines a Vertex Session as the source content from which to generate memories. */
|
|
@@ -3988,6 +4071,8 @@ declare namespace gapi.client {
|
|
|
3988
4071
|
enableAffectiveDialog?: boolean;
|
|
3989
4072
|
/** Optional. Frequency penalties. */
|
|
3990
4073
|
frequencyPenalty?: number;
|
|
4074
|
+
/** Optional. Config for image generation features. */
|
|
4075
|
+
imageConfig?: GoogleCloudAiplatformV1beta1ImageConfig;
|
|
3991
4076
|
/** Optional. Logit probabilities. */
|
|
3992
4077
|
logprobs?: number;
|
|
3993
4078
|
/** Optional. The maximum number of output tokens to generate per message. */
|
|
@@ -4229,6 +4314,10 @@ declare namespace gapi.client {
|
|
|
4229
4314
|
/** Required. The following are accepted as `ids`: * A single-element list containing only `*`, which selects all Features in the target EntityType, or * A list containing only Feature IDs, which selects only Features with those IDs in the target EntityType. */
|
|
4230
4315
|
ids?: string[];
|
|
4231
4316
|
}
|
|
4317
|
+
interface GoogleCloudAiplatformV1beta1ImageConfig {
|
|
4318
|
+
/** Optional. The desired aspect ratio for the generated images. The following aspect ratios are supported: "1:1" "2:3", "3:2" "3:4", "4:3" "4:5", "5:4" "9:16", "16:9" "21:9" */
|
|
4319
|
+
aspectRatio?: string;
|
|
4320
|
+
}
|
|
4232
4321
|
interface GoogleCloudAiplatformV1beta1ImportDataConfig {
|
|
4233
4322
|
/** Labels that will be applied to newly imported Annotations. If two Annotations are identical, one of them will be deduped. Two Annotations are considered identical if their payload, payload_schema_uri and all of their labels are the same. These labels will be overridden by Annotation labels specified inside index file referenced by import_schema_uri, e.g. jsonl file. */
|
|
4234
4323
|
annotationLabels?: {[P in string]: string};
|
|
@@ -4787,6 +4876,12 @@ declare namespace gapi.client {
|
|
|
4787
4876
|
/** A token to retrieve the next page of results. Pass to ListMemoriesRequest.page_token to obtain that page. */
|
|
4788
4877
|
nextPageToken?: string;
|
|
4789
4878
|
}
|
|
4879
|
+
interface GoogleCloudAiplatformV1beta1ListMemoryRevisionsResponse {
|
|
4880
|
+
/** The list of Memory Revisions in the request page. */
|
|
4881
|
+
memoryRevisions?: GoogleCloudAiplatformV1beta1MemoryRevision[];
|
|
4882
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
4883
|
+
nextPageToken?: string;
|
|
4884
|
+
}
|
|
4790
4885
|
interface GoogleCloudAiplatformV1beta1ListMetadataSchemasResponse {
|
|
4791
4886
|
/** The MetadataSchemas found for the MetadataStore. */
|
|
4792
4887
|
metadataSchemas?: GoogleCloudAiplatformV1beta1MetadataSchema[];
|
|
@@ -5082,6 +5177,8 @@ declare namespace gapi.client {
|
|
|
5082
5177
|
createTime?: string;
|
|
5083
5178
|
/** Optional. Description of the Memory. */
|
|
5084
5179
|
description?: string;
|
|
5180
|
+
/** Optional. Input only. If true, no revision will be created for this request. */
|
|
5181
|
+
disableMemoryRevisions?: boolean;
|
|
5085
5182
|
/** Optional. Display name of the Memory. */
|
|
5086
5183
|
displayName?: string;
|
|
5087
5184
|
/** Optional. Timestamp of when this resource is considered expired. This is *always* provided on output when `expiration` is set on input, regardless of whether `expire_time` or `ttl` was provided. */
|
|
@@ -5090,6 +5187,10 @@ declare namespace gapi.client {
|
|
|
5090
5187
|
fact?: string;
|
|
5091
5188
|
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
5092
5189
|
name?: string;
|
|
5190
|
+
/** Optional. Input only. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
|
|
5191
|
+
revisionExpireTime?: string;
|
|
5192
|
+
/** Optional. Input only. The TTL for the revision. The expiration time is computed: now + TTL. */
|
|
5193
|
+
revisionTtl?: string;
|
|
5093
5194
|
/** Required. Immutable. The scope of the Memory. Memories are isolated within their scope. The scope is defined when creating or generating memories. Scope values cannot contain the wildcard character '*'. */
|
|
5094
5195
|
scope?: {[P in string]: string};
|
|
5095
5196
|
/** Optional. Input only. The TTL for this resource. The expiration time is computed: now + TTL. */
|
|
@@ -5141,6 +5242,18 @@ declare namespace gapi.client {
|
|
|
5141
5242
|
/** Required. The managed topic. */
|
|
5142
5243
|
managedTopicEnum?: string;
|
|
5143
5244
|
}
|
|
5245
|
+
interface GoogleCloudAiplatformV1beta1MemoryRevision {
|
|
5246
|
+
/** Output only. Timestamp when this Memory Revision was created. */
|
|
5247
|
+
createTime?: string;
|
|
5248
|
+
/** Output only. Timestamp of when this resource is considered expired. */
|
|
5249
|
+
expireTime?: string;
|
|
5250
|
+
/** Output only. The fact of the Memory Revision. This corresponds to the `fact` field of the parent Memory at the time of revision creation. */
|
|
5251
|
+
fact?: string;
|
|
5252
|
+
/** Output only. The labels of the Memory Revision. These labels are applied to the MemoryRevision when it is created based on `GenerateMemoriesRequest.revision_labels`. */
|
|
5253
|
+
labels?: {[P in string]: string};
|
|
5254
|
+
/** Identifier. The resource name of the Memory Revision. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}/revisions/{memory_revision}` */
|
|
5255
|
+
name?: string;
|
|
5256
|
+
}
|
|
5144
5257
|
interface GoogleCloudAiplatformV1beta1MemoryTopicId {
|
|
5145
5258
|
/** Optional. The custom memory topic label. */
|
|
5146
5259
|
customMemoryTopicLabel?: string;
|
|
@@ -6051,6 +6164,10 @@ declare namespace gapi.client {
|
|
|
6051
6164
|
/** The step of the checkpoint. */
|
|
6052
6165
|
step?: string;
|
|
6053
6166
|
}
|
|
6167
|
+
interface GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig {
|
|
6168
|
+
/** Required. A list of configurations for the voices of the speakers. Exactly two speaker voice configurations must be provided. */
|
|
6169
|
+
speakerVoiceConfigs?: GoogleCloudAiplatformV1beta1SpeakerVoiceConfig[];
|
|
6170
|
+
}
|
|
6054
6171
|
interface GoogleCloudAiplatformV1beta1MutateDeployedIndexOperationMetadata {
|
|
6055
6172
|
/** The unique index id specified by user */
|
|
6056
6173
|
deployedIndexId?: string;
|
|
@@ -6942,6 +7059,8 @@ declare namespace gapi.client {
|
|
|
6942
7059
|
interface GoogleCloudAiplatformV1beta1PredictRequest {
|
|
6943
7060
|
/** Required. The instances that are the input to the prediction call. A DeployedModel may have an upper limit on the number of instances it supports per request, and when it is exceeded the prediction call errors in case of AutoML Models, or, in case of customer created Models, the behaviour is as documented by that Model. The schema of any single instance may be specified via Endpoint's DeployedModels' Model's PredictSchemata's instance_schema_uri. */
|
|
6944
7061
|
instances?: any[];
|
|
7062
|
+
/** Optional. The user labels for Imagen billing usage only. Only Imagen supports labels. For other use cases, it will be ignored. */
|
|
7063
|
+
labels?: {[P in string]: string};
|
|
6945
7064
|
/** The parameters that govern the prediction. The schema of the parameters may be specified via Endpoint's DeployedModels' Model's PredictSchemata's parameters_schema_uri. */
|
|
6946
7065
|
parameters?: any;
|
|
6947
7066
|
}
|
|
@@ -7958,6 +8077,8 @@ declare namespace gapi.client {
|
|
|
7958
8077
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfig {
|
|
7959
8078
|
/** Optional. Configuration for how to customize Memory Bank behavior for a particular scope. */
|
|
7960
8079
|
customizationConfigs?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfig[];
|
|
8080
|
+
/** If true, no memory revisions will be created for any requests to the Memory Bank. */
|
|
8081
|
+
disableMemoryRevisions?: boolean;
|
|
7961
8082
|
/** Optional. Configuration for how to generate memories for the Memory Bank. */
|
|
7962
8083
|
generationConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig;
|
|
7963
8084
|
/** Optional. Configuration for how to perform similarity search on memories. If not set, the Memory Bank will use the default embedding model `text-embedding-005`. */
|
|
@@ -7978,6 +8099,8 @@ declare namespace gapi.client {
|
|
|
7978
8099
|
defaultTtl?: string;
|
|
7979
8100
|
/** Optional. The granular TTL configuration of the memories in the Memory Bank. */
|
|
7980
8101
|
granularTtlConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig;
|
|
8102
|
+
/** Optional. The default TTL duration of the memory revisions in the Memory Bank. This applies to all operations that create a memory revision. If not set, a default TTL of 365 days will be used. */
|
|
8103
|
+
memoryRevisionDefaultTtl?: string;
|
|
7981
8104
|
}
|
|
7982
8105
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig {
|
|
7983
8106
|
/** Optional. The TTL duration for memories uploaded via CreateMemory. */
|
|
@@ -8248,6 +8371,10 @@ declare namespace gapi.client {
|
|
|
8248
8371
|
/** The retrieved Memory. */
|
|
8249
8372
|
memory?: GoogleCloudAiplatformV1beta1Memory;
|
|
8250
8373
|
}
|
|
8374
|
+
interface GoogleCloudAiplatformV1beta1RollbackMemoryRequest {
|
|
8375
|
+
/** Required. The ID of the revision to rollback to. */
|
|
8376
|
+
targetRevisionId?: string;
|
|
8377
|
+
}
|
|
8251
8378
|
interface GoogleCloudAiplatformV1beta1RolloutOptions {
|
|
8252
8379
|
/** Percentage of allowed additional replicas. For autoscaling deployments, this refers to the target replica count. */
|
|
8253
8380
|
maxSurgePercentage?: number;
|
|
@@ -8458,6 +8585,8 @@ declare namespace gapi.client {
|
|
|
8458
8585
|
sampleRate?: number;
|
|
8459
8586
|
}
|
|
8460
8587
|
interface GoogleCloudAiplatformV1beta1SandboxEnvironment {
|
|
8588
|
+
/** Output only. The connection information of the SandboxEnvironment. */
|
|
8589
|
+
connectionInfo?: GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo;
|
|
8461
8590
|
/** Output only. The timestamp when this SandboxEnvironment was created. */
|
|
8462
8591
|
createTime?: string;
|
|
8463
8592
|
/** Required. The display name of the SandboxEnvironment. */
|
|
@@ -8475,6 +8604,14 @@ declare namespace gapi.client {
|
|
|
8475
8604
|
/** Output only. The timestamp when this SandboxEnvironment was most recently updated. */
|
|
8476
8605
|
updateTime?: string;
|
|
8477
8606
|
}
|
|
8607
|
+
interface GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo {
|
|
8608
|
+
/** Output only. The hostname of the load balancer. */
|
|
8609
|
+
loadBalancerHostname?: string;
|
|
8610
|
+
/** Output only. The IP address of the load balancer. */
|
|
8611
|
+
loadBalancerIp?: string;
|
|
8612
|
+
/** Output only. The internal IP address of the SandboxEnvironment. */
|
|
8613
|
+
sandboxInternalIp?: string;
|
|
8614
|
+
}
|
|
8478
8615
|
interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec {
|
|
8479
8616
|
/** Optional. The code execution environment. */
|
|
8480
8617
|
codeExecutionEnvironment?: GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment;
|
|
@@ -10326,6 +10463,12 @@ declare namespace gapi.client {
|
|
|
10326
10463
|
/** The number of gradient samples to use for approximation. The higher this number, the more accurate the gradient is, but the runtime complexity increases by this factor as well. Valid range of its value is [1, 50]. Defaults to 3. */
|
|
10327
10464
|
noisySampleCount?: number;
|
|
10328
10465
|
}
|
|
10466
|
+
interface GoogleCloudAiplatformV1beta1SpeakerVoiceConfig {
|
|
10467
|
+
/** Required. The name of the speaker. This should be the same as the speaker name used in the prompt. */
|
|
10468
|
+
speaker?: string;
|
|
10469
|
+
/** Required. The configuration for the voice of this speaker. */
|
|
10470
|
+
voiceConfig?: GoogleCloudAiplatformV1beta1VoiceConfig;
|
|
10471
|
+
}
|
|
10329
10472
|
interface GoogleCloudAiplatformV1beta1SpecialistPool {
|
|
10330
10473
|
/** Required. The user-defined name of the SpecialistPool. The name can be up to 128 characters long and can consist of any UTF-8 characters. This field should be unique on project-level. */
|
|
10331
10474
|
displayName?: string;
|
|
@@ -10359,6 +10502,8 @@ declare namespace gapi.client {
|
|
|
10359
10502
|
interface GoogleCloudAiplatformV1beta1SpeechConfig {
|
|
10360
10503
|
/** Optional. Language code (ISO 639. e.g. en-US) for the speech synthesization. */
|
|
10361
10504
|
languageCode?: string;
|
|
10505
|
+
/** The configuration for a multi-speaker text-to-speech request. This field is mutually exclusive with `voice_config`. */
|
|
10506
|
+
multiSpeakerVoiceConfig?: GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig;
|
|
10362
10507
|
/** The configuration for the speaker to use. */
|
|
10363
10508
|
voiceConfig?: GoogleCloudAiplatformV1beta1VoiceConfig;
|
|
10364
10509
|
}
|
|
@@ -11055,6 +11200,8 @@ declare namespace gapi.client {
|
|
|
11055
11200
|
interface GoogleCloudAiplatformV1beta1Tool {
|
|
11056
11201
|
/** Optional. CodeExecution tool type. Enables the model to execute code as part of generation. */
|
|
11057
11202
|
codeExecution?: any;
|
|
11203
|
+
/** Optional. Tool to support the model interacting directly with the computer. If enabled, it automatically populates computer-use specific Function Declarations. */
|
|
11204
|
+
computerUse?: GoogleCloudAiplatformV1beta1ToolComputerUse;
|
|
11058
11205
|
/** Optional. Tool to support searching public web data, powered by Vertex AI Search and Sec4 compliance. */
|
|
11059
11206
|
enterpriseWebSearch?: GoogleCloudAiplatformV1beta1EnterpriseWebSearch;
|
|
11060
11207
|
/** 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. */
|
|
@@ -11098,6 +11245,12 @@ declare namespace gapi.client {
|
|
|
11098
11245
|
}
|
|
11099
11246
|
interface GoogleCloudAiplatformV1beta1ToolCallValidSpec {}
|
|
11100
11247
|
interface GoogleCloudAiplatformV1beta1ToolCodeExecution {}
|
|
11248
|
+
interface GoogleCloudAiplatformV1beta1ToolComputerUse {
|
|
11249
|
+
/** Required. The environment being operated. */
|
|
11250
|
+
environment?: string;
|
|
11251
|
+
/** Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes: 1. Using a more restricted / different action space. 2. Improving the definitions / instructions of predefined functions. */
|
|
11252
|
+
excludedPredefinedFunctions?: string[];
|
|
11253
|
+
}
|
|
11101
11254
|
interface GoogleCloudAiplatformV1beta1ToolConfig {
|
|
11102
11255
|
/** Optional. Function calling config. */
|
|
11103
11256
|
functionCallingConfig?: GoogleCloudAiplatformV1beta1FunctionCallingConfig;
|
|
@@ -11105,6 +11258,8 @@ declare namespace gapi.client {
|
|
|
11105
11258
|
retrievalConfig?: GoogleCloudAiplatformV1beta1RetrievalConfig;
|
|
11106
11259
|
}
|
|
11107
11260
|
interface GoogleCloudAiplatformV1beta1ToolGoogleSearch {
|
|
11261
|
+
/** Optional. Sites with confidence level chosen & above this value will be blocked from the search results. */
|
|
11262
|
+
blockingConfidence?: string;
|
|
11108
11263
|
/** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"]. */
|
|
11109
11264
|
excludeDomains?: string[];
|
|
11110
11265
|
}
|
|
@@ -11410,7 +11565,7 @@ declare namespace gapi.client {
|
|
|
11410
11565
|
checkpoints?: GoogleCloudAiplatformV1beta1TunedModelCheckpoint[];
|
|
11411
11566
|
/** Output only. A resource name of an Endpoint. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
|
|
11412
11567
|
endpoint?: string;
|
|
11413
|
-
/** Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base model, the
|
|
11568
|
+
/** Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base model, the version ID will be 1. For continuous tuning, if the provided tuned_model_display_name is set and different from parent model's display name, the tuned model will have a new parent model with version 1. Otherwise the version id will be incremented by 1 from the last version ID in the parent model. E.g., `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}` */
|
|
11414
11569
|
model?: string;
|
|
11415
11570
|
}
|
|
11416
11571
|
interface GoogleCloudAiplatformV1beta1TunedModelCheckpoint {
|
|
@@ -11490,7 +11645,7 @@ declare namespace gapi.client {
|
|
|
11490
11645
|
supervisedTuningSpec?: GoogleCloudAiplatformV1beta1SupervisedTuningSpec;
|
|
11491
11646
|
/** Output only. The tuned model resources associated with this TuningJob. */
|
|
11492
11647
|
tunedModel?: GoogleCloudAiplatformV1beta1TunedModel;
|
|
11493
|
-
/** Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
|
|
11648
|
+
/** Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters. For continuous tuning, tuned_model_display_name will by default use the same display name as the pre-tuned model. If a new display name is provided, the tuning job will create a new model instead of a new version. */
|
|
11494
11649
|
tunedModelDisplayName?: string;
|
|
11495
11650
|
/** Output only. The tuning data statistics associated with this TuningJob. */
|
|
11496
11651
|
tuningDataStats?: GoogleCloudAiplatformV1beta1TuningDataStats;
|
|
@@ -11683,6 +11838,30 @@ declare namespace gapi.client {
|
|
|
11683
11838
|
/** Status of the url retrieval. */
|
|
11684
11839
|
urlRetrievalStatus?: string;
|
|
11685
11840
|
}
|
|
11841
|
+
interface GoogleCloudAiplatformV1beta1UsageMetadata {
|
|
11842
|
+
/** Output only. The number of tokens in the cached content that was used for this request. */
|
|
11843
|
+
cachedContentTokenCount?: number;
|
|
11844
|
+
/** Output only. A detailed breakdown of the token count for each modality in the cached content. */
|
|
11845
|
+
cacheTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
|
|
11846
|
+
/** The total number of tokens in the generated candidates. */
|
|
11847
|
+
candidatesTokenCount?: number;
|
|
11848
|
+
/** Output only. A detailed breakdown of the token count for each modality in the generated candidates. */
|
|
11849
|
+
candidatesTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
|
|
11850
|
+
/** The total number of tokens in the prompt. This includes any text, images, or other media provided in the request. When `cached_content` is set, this also includes the number of tokens in the cached content. */
|
|
11851
|
+
promptTokenCount?: number;
|
|
11852
|
+
/** Output only. A detailed breakdown of the token count for each modality in the prompt. */
|
|
11853
|
+
promptTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
|
|
11854
|
+
/** Output only. The number of tokens that were part of the model's generated "thoughts" output, if applicable. */
|
|
11855
|
+
thoughtsTokenCount?: number;
|
|
11856
|
+
/** Output only. The number of tokens in the results from tool executions, which are provided back to the model as input, if applicable. */
|
|
11857
|
+
toolUsePromptTokenCount?: number;
|
|
11858
|
+
/** Output only. A detailed breakdown by modality of the token counts from the results of tool executions, which are provided back to the model as input. */
|
|
11859
|
+
toolUsePromptTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
|
|
11860
|
+
/** The total number of tokens for the entire request. This is the sum of `prompt_token_count`, `candidates_token_count`, `tool_use_prompt_token_count`, and `thoughts_token_count`. */
|
|
11861
|
+
totalTokenCount?: number;
|
|
11862
|
+
/** Output only. The traffic type for this request. */
|
|
11863
|
+
trafficType?: string;
|
|
11864
|
+
}
|
|
11686
11865
|
interface GoogleCloudAiplatformV1beta1UserActionReference {
|
|
11687
11866
|
/** For API calls that start a LabelingJob. Resource name of the LabelingJob. Format: `projects/{project}/locations/{location}/dataLabelingJobs/{data_labeling_job}` */
|
|
11688
11867
|
dataLabelingJob?: string;
|
|
@@ -22313,6 +22492,64 @@ declare namespace gapi.client {
|
|
|
22313
22492
|
},
|
|
22314
22493
|
body: GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest,
|
|
22315
22494
|
): Request<GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse>;
|
|
22495
|
+
/** RPC to generate an access token for the given feature view. FeatureViews under the same FeatureOnlineStore share the same access token. */
|
|
22496
|
+
generateFetchAccessToken(request: {
|
|
22497
|
+
/** V1 error format. */
|
|
22498
|
+
'$.xgafv'?: string;
|
|
22499
|
+
/** OAuth access token. */
|
|
22500
|
+
access_token?: string;
|
|
22501
|
+
/** Data format for response. */
|
|
22502
|
+
alt?: string;
|
|
22503
|
+
/** JSONP */
|
|
22504
|
+
callback?: string;
|
|
22505
|
+
/** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
22506
|
+
featureView: string;
|
|
22507
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
22508
|
+
fields?: string;
|
|
22509
|
+
/** 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. */
|
|
22510
|
+
key?: string;
|
|
22511
|
+
/** OAuth 2.0 token for the current user. */
|
|
22512
|
+
oauth_token?: string;
|
|
22513
|
+
/** Returns response with indentations and line breaks. */
|
|
22514
|
+
prettyPrint?: boolean;
|
|
22515
|
+
/** 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. */
|
|
22516
|
+
quotaUser?: string;
|
|
22517
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
22518
|
+
upload_protocol?: string;
|
|
22519
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22520
|
+
uploadType?: string;
|
|
22521
|
+
/** Request body */
|
|
22522
|
+
resource: GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest;
|
|
22523
|
+
}): Request<GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse>;
|
|
22524
|
+
generateFetchAccessToken(
|
|
22525
|
+
request: {
|
|
22526
|
+
/** V1 error format. */
|
|
22527
|
+
'$.xgafv'?: string;
|
|
22528
|
+
/** OAuth access token. */
|
|
22529
|
+
access_token?: string;
|
|
22530
|
+
/** Data format for response. */
|
|
22531
|
+
alt?: string;
|
|
22532
|
+
/** JSONP */
|
|
22533
|
+
callback?: string;
|
|
22534
|
+
/** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
22535
|
+
featureView: string;
|
|
22536
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
22537
|
+
fields?: string;
|
|
22538
|
+
/** 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. */
|
|
22539
|
+
key?: string;
|
|
22540
|
+
/** OAuth 2.0 token for the current user. */
|
|
22541
|
+
oauth_token?: string;
|
|
22542
|
+
/** Returns response with indentations and line breaks. */
|
|
22543
|
+
prettyPrint?: boolean;
|
|
22544
|
+
/** 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. */
|
|
22545
|
+
quotaUser?: string;
|
|
22546
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
22547
|
+
upload_protocol?: string;
|
|
22548
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
22549
|
+
uploadType?: string;
|
|
22550
|
+
},
|
|
22551
|
+
body: GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest,
|
|
22552
|
+
): Request<GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse>;
|
|
22316
22553
|
/** Gets details of a single FeatureView. */
|
|
22317
22554
|
get(request?: {
|
|
22318
22555
|
/** V1 error format. */
|
|
@@ -33966,6 +34203,64 @@ declare namespace gapi.client {
|
|
|
33966
34203
|
},
|
|
33967
34204
|
body: GoogleCloudAiplatformV1beta1CountTokensRequest,
|
|
33968
34205
|
): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
|
|
34206
|
+
/** Embed content with multimodal inputs. */
|
|
34207
|
+
embedContent(request: {
|
|
34208
|
+
/** V1 error format. */
|
|
34209
|
+
'$.xgafv'?: string;
|
|
34210
|
+
/** OAuth access token. */
|
|
34211
|
+
access_token?: string;
|
|
34212
|
+
/** Data format for response. */
|
|
34213
|
+
alt?: string;
|
|
34214
|
+
/** JSONP */
|
|
34215
|
+
callback?: string;
|
|
34216
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34217
|
+
fields?: string;
|
|
34218
|
+
/** 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. */
|
|
34219
|
+
key?: string;
|
|
34220
|
+
/** Required. The name of the publisher model requested to serve the prediction. Format: `projects/{project}/locations/{location}/publishers/*/models/*` */
|
|
34221
|
+
model: string;
|
|
34222
|
+
/** OAuth 2.0 token for the current user. */
|
|
34223
|
+
oauth_token?: string;
|
|
34224
|
+
/** Returns response with indentations and line breaks. */
|
|
34225
|
+
prettyPrint?: boolean;
|
|
34226
|
+
/** 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. */
|
|
34227
|
+
quotaUser?: string;
|
|
34228
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34229
|
+
upload_protocol?: string;
|
|
34230
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34231
|
+
uploadType?: string;
|
|
34232
|
+
/** Request body */
|
|
34233
|
+
resource: GoogleCloudAiplatformV1beta1EmbedContentRequest;
|
|
34234
|
+
}): Request<GoogleCloudAiplatformV1beta1EmbedContentResponse>;
|
|
34235
|
+
embedContent(
|
|
34236
|
+
request: {
|
|
34237
|
+
/** V1 error format. */
|
|
34238
|
+
'$.xgafv'?: string;
|
|
34239
|
+
/** OAuth access token. */
|
|
34240
|
+
access_token?: string;
|
|
34241
|
+
/** Data format for response. */
|
|
34242
|
+
alt?: string;
|
|
34243
|
+
/** JSONP */
|
|
34244
|
+
callback?: string;
|
|
34245
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34246
|
+
fields?: string;
|
|
34247
|
+
/** 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. */
|
|
34248
|
+
key?: string;
|
|
34249
|
+
/** Required. The name of the publisher model requested to serve the prediction. Format: `projects/{project}/locations/{location}/publishers/*/models/*` */
|
|
34250
|
+
model: string;
|
|
34251
|
+
/** OAuth 2.0 token for the current user. */
|
|
34252
|
+
oauth_token?: string;
|
|
34253
|
+
/** Returns response with indentations and line breaks. */
|
|
34254
|
+
prettyPrint?: boolean;
|
|
34255
|
+
/** 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. */
|
|
34256
|
+
quotaUser?: string;
|
|
34257
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34258
|
+
upload_protocol?: string;
|
|
34259
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34260
|
+
uploadType?: string;
|
|
34261
|
+
},
|
|
34262
|
+
body: GoogleCloudAiplatformV1beta1EmbedContentRequest,
|
|
34263
|
+
): Request<GoogleCloudAiplatformV1beta1EmbedContentResponse>;
|
|
33969
34264
|
/** Exports a publisher model to a user provided Google Cloud Storage bucket. */
|
|
33970
34265
|
export(request: {
|
|
33971
34266
|
/** V1 error format. */
|
|
@@ -35893,6 +36188,68 @@ declare namespace gapi.client {
|
|
|
35893
36188
|
uploadType?: string;
|
|
35894
36189
|
}): Request<GoogleLongrunningOperation>;
|
|
35895
36190
|
}
|
|
36191
|
+
interface RevisionsResource {
|
|
36192
|
+
/** Get a Memory Revision. */
|
|
36193
|
+
get(request?: {
|
|
36194
|
+
/** V1 error format. */
|
|
36195
|
+
'$.xgafv'?: string;
|
|
36196
|
+
/** OAuth access token. */
|
|
36197
|
+
access_token?: string;
|
|
36198
|
+
/** Data format for response. */
|
|
36199
|
+
alt?: string;
|
|
36200
|
+
/** JSONP */
|
|
36201
|
+
callback?: string;
|
|
36202
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36203
|
+
fields?: string;
|
|
36204
|
+
/** 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. */
|
|
36205
|
+
key?: string;
|
|
36206
|
+
/** Required. The resource name of the Memory Revision to retrieve. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}/revisions/{revision}` */
|
|
36207
|
+
name: string;
|
|
36208
|
+
/** OAuth 2.0 token for the current user. */
|
|
36209
|
+
oauth_token?: string;
|
|
36210
|
+
/** Returns response with indentations and line breaks. */
|
|
36211
|
+
prettyPrint?: boolean;
|
|
36212
|
+
/** 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. */
|
|
36213
|
+
quotaUser?: string;
|
|
36214
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36215
|
+
upload_protocol?: string;
|
|
36216
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36217
|
+
uploadType?: string;
|
|
36218
|
+
}): Request<GoogleCloudAiplatformV1beta1MemoryRevision>;
|
|
36219
|
+
/** List Memory Revisions for a Memory. */
|
|
36220
|
+
list(request?: {
|
|
36221
|
+
/** V1 error format. */
|
|
36222
|
+
'$.xgafv'?: string;
|
|
36223
|
+
/** OAuth access token. */
|
|
36224
|
+
access_token?: string;
|
|
36225
|
+
/** Data format for response. */
|
|
36226
|
+
alt?: string;
|
|
36227
|
+
/** JSONP */
|
|
36228
|
+
callback?: string;
|
|
36229
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36230
|
+
fields?: string;
|
|
36231
|
+
/** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). Supported fields (equality match only): * `labels` */
|
|
36232
|
+
filter?: string;
|
|
36233
|
+
/** 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. */
|
|
36234
|
+
key?: string;
|
|
36235
|
+
/** OAuth 2.0 token for the current user. */
|
|
36236
|
+
oauth_token?: string;
|
|
36237
|
+
/** Optional. The standard list page size. */
|
|
36238
|
+
pageSize?: number;
|
|
36239
|
+
/** Optional. The standard list page token. */
|
|
36240
|
+
pageToken?: string;
|
|
36241
|
+
/** Required. The resource name of the Memory to list revisions for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
36242
|
+
parent: string;
|
|
36243
|
+
/** Returns response with indentations and line breaks. */
|
|
36244
|
+
prettyPrint?: boolean;
|
|
36245
|
+
/** 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. */
|
|
36246
|
+
quotaUser?: string;
|
|
36247
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36248
|
+
upload_protocol?: string;
|
|
36249
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36250
|
+
uploadType?: string;
|
|
36251
|
+
}): Request<GoogleCloudAiplatformV1beta1ListMemoryRevisionsResponse>;
|
|
36252
|
+
}
|
|
35896
36253
|
interface MemoriesResource {
|
|
35897
36254
|
/** Create a Memory. */
|
|
35898
36255
|
create(request: {
|
|
@@ -36219,7 +36576,66 @@ declare namespace gapi.client {
|
|
|
36219
36576
|
},
|
|
36220
36577
|
body: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest,
|
|
36221
36578
|
): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
36579
|
+
/** Rollback Memory to a specific revision. */
|
|
36580
|
+
rollback(request: {
|
|
36581
|
+
/** V1 error format. */
|
|
36582
|
+
'$.xgafv'?: string;
|
|
36583
|
+
/** OAuth access token. */
|
|
36584
|
+
access_token?: string;
|
|
36585
|
+
/** Data format for response. */
|
|
36586
|
+
alt?: string;
|
|
36587
|
+
/** JSONP */
|
|
36588
|
+
callback?: string;
|
|
36589
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36590
|
+
fields?: string;
|
|
36591
|
+
/** 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. */
|
|
36592
|
+
key?: string;
|
|
36593
|
+
/** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
36594
|
+
name: string;
|
|
36595
|
+
/** OAuth 2.0 token for the current user. */
|
|
36596
|
+
oauth_token?: string;
|
|
36597
|
+
/** Returns response with indentations and line breaks. */
|
|
36598
|
+
prettyPrint?: boolean;
|
|
36599
|
+
/** 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. */
|
|
36600
|
+
quotaUser?: string;
|
|
36601
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36602
|
+
upload_protocol?: string;
|
|
36603
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36604
|
+
uploadType?: string;
|
|
36605
|
+
/** Request body */
|
|
36606
|
+
resource: GoogleCloudAiplatformV1beta1RollbackMemoryRequest;
|
|
36607
|
+
}): Request<GoogleLongrunningOperation>;
|
|
36608
|
+
rollback(
|
|
36609
|
+
request: {
|
|
36610
|
+
/** V1 error format. */
|
|
36611
|
+
'$.xgafv'?: string;
|
|
36612
|
+
/** OAuth access token. */
|
|
36613
|
+
access_token?: string;
|
|
36614
|
+
/** Data format for response. */
|
|
36615
|
+
alt?: string;
|
|
36616
|
+
/** JSONP */
|
|
36617
|
+
callback?: string;
|
|
36618
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36619
|
+
fields?: string;
|
|
36620
|
+
/** 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. */
|
|
36621
|
+
key?: string;
|
|
36622
|
+
/** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
36623
|
+
name: string;
|
|
36624
|
+
/** OAuth 2.0 token for the current user. */
|
|
36625
|
+
oauth_token?: string;
|
|
36626
|
+
/** Returns response with indentations and line breaks. */
|
|
36627
|
+
prettyPrint?: boolean;
|
|
36628
|
+
/** 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. */
|
|
36629
|
+
quotaUser?: string;
|
|
36630
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36631
|
+
upload_protocol?: string;
|
|
36632
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36633
|
+
uploadType?: string;
|
|
36634
|
+
},
|
|
36635
|
+
body: GoogleCloudAiplatformV1beta1RollbackMemoryRequest,
|
|
36636
|
+
): Request<GoogleLongrunningOperation>;
|
|
36222
36637
|
operations: OperationsResource;
|
|
36638
|
+
revisions: RevisionsResource;
|
|
36223
36639
|
}
|
|
36224
36640
|
interface OperationsResource {
|
|
36225
36641
|
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
@@ -43845,6 +44261,68 @@ declare namespace gapi.client {
|
|
|
43845
44261
|
interface A2aResource {
|
|
43846
44262
|
v1: V1Resource;
|
|
43847
44263
|
}
|
|
44264
|
+
interface RevisionsResource {
|
|
44265
|
+
/** Get a Memory Revision. */
|
|
44266
|
+
get(request?: {
|
|
44267
|
+
/** V1 error format. */
|
|
44268
|
+
'$.xgafv'?: string;
|
|
44269
|
+
/** OAuth access token. */
|
|
44270
|
+
access_token?: string;
|
|
44271
|
+
/** Data format for response. */
|
|
44272
|
+
alt?: string;
|
|
44273
|
+
/** JSONP */
|
|
44274
|
+
callback?: string;
|
|
44275
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44276
|
+
fields?: string;
|
|
44277
|
+
/** 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. */
|
|
44278
|
+
key?: string;
|
|
44279
|
+
/** Required. The resource name of the Memory Revision to retrieve. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}/revisions/{revision}` */
|
|
44280
|
+
name: string;
|
|
44281
|
+
/** OAuth 2.0 token for the current user. */
|
|
44282
|
+
oauth_token?: string;
|
|
44283
|
+
/** Returns response with indentations and line breaks. */
|
|
44284
|
+
prettyPrint?: boolean;
|
|
44285
|
+
/** 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. */
|
|
44286
|
+
quotaUser?: string;
|
|
44287
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
44288
|
+
upload_protocol?: string;
|
|
44289
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
44290
|
+
uploadType?: string;
|
|
44291
|
+
}): Request<GoogleCloudAiplatformV1beta1MemoryRevision>;
|
|
44292
|
+
/** List Memory Revisions for a Memory. */
|
|
44293
|
+
list(request?: {
|
|
44294
|
+
/** V1 error format. */
|
|
44295
|
+
'$.xgafv'?: string;
|
|
44296
|
+
/** OAuth access token. */
|
|
44297
|
+
access_token?: string;
|
|
44298
|
+
/** Data format for response. */
|
|
44299
|
+
alt?: string;
|
|
44300
|
+
/** JSONP */
|
|
44301
|
+
callback?: string;
|
|
44302
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44303
|
+
fields?: string;
|
|
44304
|
+
/** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). Supported fields (equality match only): * `labels` */
|
|
44305
|
+
filter?: string;
|
|
44306
|
+
/** 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. */
|
|
44307
|
+
key?: string;
|
|
44308
|
+
/** OAuth 2.0 token for the current user. */
|
|
44309
|
+
oauth_token?: string;
|
|
44310
|
+
/** Optional. The standard list page size. */
|
|
44311
|
+
pageSize?: number;
|
|
44312
|
+
/** Optional. The standard list page token. */
|
|
44313
|
+
pageToken?: string;
|
|
44314
|
+
/** Required. The resource name of the Memory to list revisions for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
44315
|
+
parent: string;
|
|
44316
|
+
/** Returns response with indentations and line breaks. */
|
|
44317
|
+
prettyPrint?: boolean;
|
|
44318
|
+
/** 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. */
|
|
44319
|
+
quotaUser?: string;
|
|
44320
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
44321
|
+
upload_protocol?: string;
|
|
44322
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
44323
|
+
uploadType?: string;
|
|
44324
|
+
}): Request<GoogleCloudAiplatformV1beta1ListMemoryRevisionsResponse>;
|
|
44325
|
+
}
|
|
43848
44326
|
interface MemoriesResource {
|
|
43849
44327
|
/** Create a Memory. */
|
|
43850
44328
|
create(request: {
|
|
@@ -44171,6 +44649,65 @@ declare namespace gapi.client {
|
|
|
44171
44649
|
},
|
|
44172
44650
|
body: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest,
|
|
44173
44651
|
): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
44652
|
+
/** Rollback Memory to a specific revision. */
|
|
44653
|
+
rollback(request: {
|
|
44654
|
+
/** V1 error format. */
|
|
44655
|
+
'$.xgafv'?: string;
|
|
44656
|
+
/** OAuth access token. */
|
|
44657
|
+
access_token?: string;
|
|
44658
|
+
/** Data format for response. */
|
|
44659
|
+
alt?: string;
|
|
44660
|
+
/** JSONP */
|
|
44661
|
+
callback?: string;
|
|
44662
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44663
|
+
fields?: string;
|
|
44664
|
+
/** 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. */
|
|
44665
|
+
key?: string;
|
|
44666
|
+
/** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
44667
|
+
name: string;
|
|
44668
|
+
/** OAuth 2.0 token for the current user. */
|
|
44669
|
+
oauth_token?: string;
|
|
44670
|
+
/** Returns response with indentations and line breaks. */
|
|
44671
|
+
prettyPrint?: boolean;
|
|
44672
|
+
/** 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. */
|
|
44673
|
+
quotaUser?: string;
|
|
44674
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
44675
|
+
upload_protocol?: string;
|
|
44676
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
44677
|
+
uploadType?: string;
|
|
44678
|
+
/** Request body */
|
|
44679
|
+
resource: GoogleCloudAiplatformV1beta1RollbackMemoryRequest;
|
|
44680
|
+
}): Request<GoogleLongrunningOperation>;
|
|
44681
|
+
rollback(
|
|
44682
|
+
request: {
|
|
44683
|
+
/** V1 error format. */
|
|
44684
|
+
'$.xgafv'?: string;
|
|
44685
|
+
/** OAuth access token. */
|
|
44686
|
+
access_token?: string;
|
|
44687
|
+
/** Data format for response. */
|
|
44688
|
+
alt?: string;
|
|
44689
|
+
/** JSONP */
|
|
44690
|
+
callback?: string;
|
|
44691
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44692
|
+
fields?: string;
|
|
44693
|
+
/** 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. */
|
|
44694
|
+
key?: string;
|
|
44695
|
+
/** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
44696
|
+
name: string;
|
|
44697
|
+
/** OAuth 2.0 token for the current user. */
|
|
44698
|
+
oauth_token?: string;
|
|
44699
|
+
/** Returns response with indentations and line breaks. */
|
|
44700
|
+
prettyPrint?: boolean;
|
|
44701
|
+
/** 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. */
|
|
44702
|
+
quotaUser?: string;
|
|
44703
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
44704
|
+
upload_protocol?: string;
|
|
44705
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
44706
|
+
uploadType?: string;
|
|
44707
|
+
},
|
|
44708
|
+
body: GoogleCloudAiplatformV1beta1RollbackMemoryRequest,
|
|
44709
|
+
): Request<GoogleLongrunningOperation>;
|
|
44710
|
+
revisions: RevisionsResource;
|
|
44174
44711
|
}
|
|
44175
44712
|
interface EventsResource {
|
|
44176
44713
|
/** Lists Events in a given session. */
|