@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250602 → 0.0.20250613
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 +1183 -8
- 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: 20250613
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -696,7 +696,7 @@ declare namespace gapi.client {
|
|
|
696
696
|
interface GoogleCloudAiplatformV1beta1Blob {
|
|
697
697
|
/** Required. Raw bytes. */
|
|
698
698
|
data?: string;
|
|
699
|
-
/** 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
|
|
699
|
+
/** 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. */
|
|
700
700
|
displayName?: string;
|
|
701
701
|
/** Required. The IANA standard MIME type of the source data. */
|
|
702
702
|
mimeType?: string;
|
|
@@ -782,6 +782,8 @@ declare namespace gapi.client {
|
|
|
782
782
|
logprobsResult?: GoogleCloudAiplatformV1beta1LogprobsResult;
|
|
783
783
|
/** Output only. List of ratings for the safety of a response candidate. There is at most one rating per category. */
|
|
784
784
|
safetyRatings?: GoogleCloudAiplatformV1beta1SafetyRating[];
|
|
785
|
+
/** Output only. Metadata related to url context retrieval tool. */
|
|
786
|
+
urlContextMetadata?: GoogleCloudAiplatformV1beta1UrlContextMetadata;
|
|
785
787
|
}
|
|
786
788
|
interface GoogleCloudAiplatformV1beta1Checkpoint {
|
|
787
789
|
/** The ID of the checkpoint. */
|
|
@@ -1581,7 +1583,7 @@ declare namespace gapi.client {
|
|
|
1581
1583
|
fasterDeploymentConfig?: GoogleCloudAiplatformV1beta1FasterDeploymentConfig;
|
|
1582
1584
|
/** Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID. This value should be 1-10 characters, and valid characters are `/[0-9]/`. */
|
|
1583
1585
|
id?: string;
|
|
1584
|
-
/**
|
|
1586
|
+
/** The resource name of the Model that this is the deployment of. Note that the Model may be in a different location than the DeployedModel's Endpoint. The resource name may contain version id or version alias to specify the version. Example: `projects/{project}/locations/{location}/models/{model}@2` or `projects/{project}/locations/{location}/models/{model}@golden` if no version is specified, the default version will be deployed. */
|
|
1585
1587
|
model?: string;
|
|
1586
1588
|
/** Output only. The version ID of the model that is deployed. */
|
|
1587
1589
|
modelVersionId?: string;
|
|
@@ -1781,6 +1783,14 @@ declare namespace gapi.client {
|
|
|
1781
1783
|
/** Optional. Cloud Storage path to file containing validation dataset for tuning. The dataset must be formatted as a JSONL file. */
|
|
1782
1784
|
validationDatasetUri?: string;
|
|
1783
1785
|
}
|
|
1786
|
+
interface GoogleCloudAiplatformV1beta1DnsPeeringConfig {
|
|
1787
|
+
/** Required. The DNS name suffix of the zone being peered to, e.g., "my-internal-domain.corp.". Must end with a dot. */
|
|
1788
|
+
domain?: string;
|
|
1789
|
+
/** Required. The VPC network name in the target_project where the DNS zone specified by 'domain' is visible. */
|
|
1790
|
+
targetNetwork?: string;
|
|
1791
|
+
/** Required. The project ID hosting the Cloud DNS managed zone that contains the 'domain'. The Vertex AI Service Agent requires the dns.peer role on this project. */
|
|
1792
|
+
targetProject?: string;
|
|
1793
|
+
}
|
|
1784
1794
|
interface GoogleCloudAiplatformV1beta1DoubleArray {
|
|
1785
1795
|
/** A list of double values. */
|
|
1786
1796
|
values?: number[];
|
|
@@ -3160,7 +3170,7 @@ declare namespace gapi.client {
|
|
|
3160
3170
|
operationName?: string;
|
|
3161
3171
|
}
|
|
3162
3172
|
interface GoogleCloudAiplatformV1beta1FileData {
|
|
3163
|
-
/** 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
|
|
3173
|
+
/** 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. */
|
|
3164
3174
|
displayName?: string;
|
|
3165
3175
|
/** Required. URI. */
|
|
3166
3176
|
fileUri?: string;
|
|
@@ -3441,6 +3451,32 @@ declare namespace gapi.client {
|
|
|
3441
3451
|
/** Output only. Traffic type. This shows whether a request consumes Pay-As-You-Go or Provisioned Throughput quota. */
|
|
3442
3452
|
trafficType?: string;
|
|
3443
3453
|
}
|
|
3454
|
+
interface GoogleCloudAiplatformV1beta1GenerateMemoriesRequest {
|
|
3455
|
+
/** Defines a direct source of content as the source content from which to generate memories. */
|
|
3456
|
+
directContentsSource?: GoogleCloudAiplatformV1beta1GenerateMemoriesRequestDirectContentsSource;
|
|
3457
|
+
/** 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. */
|
|
3458
|
+
disableConsolidation?: boolean;
|
|
3459
|
+
/** 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 '*'. */
|
|
3460
|
+
scope?: {[P in string]: string};
|
|
3461
|
+
/** Defines a Vertex Session as the source content from which to generate memories. */
|
|
3462
|
+
vertexSessionSource?: GoogleCloudAiplatformV1beta1GenerateMemoriesRequestVertexSessionSource;
|
|
3463
|
+
}
|
|
3464
|
+
interface GoogleCloudAiplatformV1beta1GenerateMemoriesRequestDirectContentsSource {
|
|
3465
|
+
/** Required. The source content (i.e. chat history) to generate memories from. */
|
|
3466
|
+
events?: GoogleCloudAiplatformV1beta1GenerateMemoriesRequestDirectContentsSourceEvent[];
|
|
3467
|
+
}
|
|
3468
|
+
interface GoogleCloudAiplatformV1beta1GenerateMemoriesRequestDirectContentsSourceEvent {
|
|
3469
|
+
/** Required. A single piece of content from which to generate memories. */
|
|
3470
|
+
content?: GoogleCloudAiplatformV1beta1Content;
|
|
3471
|
+
}
|
|
3472
|
+
interface GoogleCloudAiplatformV1beta1GenerateMemoriesRequestVertexSessionSource {
|
|
3473
|
+
/** Optional. End time (exclusive) of the time range. If not set, the end time is unbounded. */
|
|
3474
|
+
endTime?: string;
|
|
3475
|
+
/** Required. The resource name of the Session to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
3476
|
+
session?: string;
|
|
3477
|
+
/** Optional. Time range to define which session events should be used to generate memories. Start time (inclusive) of the time range. If not set, the start time is unbounded. */
|
|
3478
|
+
startTime?: string;
|
|
3479
|
+
}
|
|
3444
3480
|
interface GoogleCloudAiplatformV1beta1GenerateVideoResponse {
|
|
3445
3481
|
/** The cloud storage uris of the generated videos. */
|
|
3446
3482
|
generatedSamples?: string[];
|
|
@@ -3618,7 +3654,7 @@ declare namespace gapi.client {
|
|
|
3618
3654
|
webSearchQueries?: string[];
|
|
3619
3655
|
}
|
|
3620
3656
|
interface GoogleCloudAiplatformV1beta1GroundingSupport {
|
|
3621
|
-
/** Confidence score of the support references. Ranges from 0 to 1. 1 is the most confident.
|
|
3657
|
+
/** Confidence score of the support references. Ranges from 0 to 1. 1 is the most confident. For Gemini 2.0 and before, this list must have the same size as the grounding_chunk_indices. For Gemini 2.5 and after, this list will be empty and should be ignored. */
|
|
3622
3658
|
confidenceScores?: number[];
|
|
3623
3659
|
/** A list of indices (into 'grounding_chunk') specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. */
|
|
3624
3660
|
groundingChunkIndices?: number[];
|
|
@@ -3810,6 +3846,8 @@ declare namespace gapi.client {
|
|
|
3810
3846
|
partialFailureGcsSink?: GoogleCloudAiplatformV1beta1GcsDestination;
|
|
3811
3847
|
/** Specifies the size and overlap of chunks after importing RagFiles. */
|
|
3812
3848
|
ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
|
|
3849
|
+
/** Specifies the metadata config for RagFiles. Including paths for metadata schema and metadata. */
|
|
3850
|
+
ragFileMetadataConfig?: GoogleCloudAiplatformV1beta1RagFileMetadataConfig;
|
|
3813
3851
|
/** Optional. Specifies the parsing config for RagFiles. RAG will use the default parser if this field is not set. */
|
|
3814
3852
|
ragFileParsingConfig?: GoogleCloudAiplatformV1beta1RagFileParsingConfig;
|
|
3815
3853
|
/** Specifies the transformation config for RagFiles. */
|
|
@@ -4191,6 +4229,12 @@ declare namespace gapi.client {
|
|
|
4191
4229
|
/** A token to retrieve next page of results. Pass to ListIndexesRequest.page_token to obtain that page. */
|
|
4192
4230
|
nextPageToken?: string;
|
|
4193
4231
|
}
|
|
4232
|
+
interface GoogleCloudAiplatformV1beta1ListMemoriesResponse {
|
|
4233
|
+
/** List of Memories in the requested page. */
|
|
4234
|
+
memories?: GoogleCloudAiplatformV1beta1Memory[];
|
|
4235
|
+
/** A token to retrieve the next page of results. Pass to ListMemoriesRequest.page_token to obtain that page. */
|
|
4236
|
+
nextPageToken?: string;
|
|
4237
|
+
}
|
|
4194
4238
|
interface GoogleCloudAiplatformV1beta1ListMetadataSchemasResponse {
|
|
4195
4239
|
/** The MetadataSchemas found for the MetadataStore. */
|
|
4196
4240
|
metadataSchemas?: GoogleCloudAiplatformV1beta1MetadataSchema[];
|
|
@@ -4447,6 +4491,22 @@ declare namespace gapi.client {
|
|
|
4447
4491
|
/** Output only. The value for this metric. */
|
|
4448
4492
|
value?: number;
|
|
4449
4493
|
}
|
|
4494
|
+
interface GoogleCloudAiplatformV1beta1Memory {
|
|
4495
|
+
/** Output only. Timestamp when this Memory was created. */
|
|
4496
|
+
createTime?: string;
|
|
4497
|
+
/** Optional. Description of the Memory. */
|
|
4498
|
+
description?: string;
|
|
4499
|
+
/** Optional. Display name of the Memory. */
|
|
4500
|
+
displayName?: string;
|
|
4501
|
+
/** Required. Semantic knowledge extracted from the source content. */
|
|
4502
|
+
fact?: string;
|
|
4503
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
4504
|
+
name?: string;
|
|
4505
|
+
/** 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 '*'. */
|
|
4506
|
+
scope?: {[P in string]: string};
|
|
4507
|
+
/** Output only. Timestamp when this Memory was most recently updated. */
|
|
4508
|
+
updateTime?: string;
|
|
4509
|
+
}
|
|
4450
4510
|
interface GoogleCloudAiplatformV1beta1MergeVersionAliasesRequest {
|
|
4451
4511
|
/** Required. The set of version aliases to merge. The alias should be at most 128 characters, and match `a-z{0,126}[a-z-0-9]`. Add the `-` prefix to an alias means removing that alias from the version. `-` is NOT counted in the 128 characters. Example: `-golden` means removing the `golden` alias from the version. There is NO ordering in aliases, which means 1) The aliases returned from GetModel API might not have the exactly same order from this MergeVersionAliases API. 2) Adding and deleting the same alias in the request is not recommended, and the 2 operations will be cancelled out. */
|
|
4452
4512
|
versionAliases?: string[];
|
|
@@ -4722,6 +4782,8 @@ declare namespace gapi.client {
|
|
|
4722
4782
|
healthRoute?: string;
|
|
4723
4783
|
/** Required. Immutable. URI of the Docker image to be used as the custom container for serving predictions. This URI must identify an image in Artifact Registry or Container Registry. Learn more about the [container publishing requirements](https://cloud.google.com/vertex-ai/docs/predictions/custom-container-requirements#publishing), including permissions requirements for the Vertex AI Service Agent. The container image is ingested upon ModelService.UploadModel, stored internally, and this original path is afterwards not used. To learn about the requirements for the Docker image itself, see [Custom container requirements](https://cloud.google.com/vertex-ai/docs/predictions/custom-container-requirements#). You can use the URI to one of Vertex AI's [pre-built container images for prediction](https://cloud.google.com/vertex-ai/docs/predictions/pre-built-containers) in this field. */
|
|
4724
4784
|
imageUri?: string;
|
|
4785
|
+
/** Immutable. Invoke route prefix for the custom container. "/*" is the only supported value right now. By setting this field, any non-root route on this model will be accessible with [PredictionService.Invoke] eg: "/invoke/foo/bar". Only one of `predict_route` or `invoke_route_prefix` can be set, and we default to using `predict_route` if this field is not set. If this field is set, the Model can only be deployed to dedicated endpoint. */
|
|
4786
|
+
invokeRoutePrefix?: string;
|
|
4725
4787
|
/** Immutable. Specification for Kubernetes liveness probe. */
|
|
4726
4788
|
livenessProbe?: GoogleCloudAiplatformV1beta1Probe;
|
|
4727
4789
|
/** Immutable. List of ports to expose from the container. Vertex AI sends any prediction requests that it receives to the first port on this list. Vertex AI also sends [liveness and health checks](https://cloud.google.com/vertex-ai/docs/predictions/custom-container-requirements#liveness) to this port. If you do not specify this field, it defaults to following value: ```json [ { "containerPort": 8080 } ] ``` Vertex AI does not use ports other than the first one listed. This field corresponds to the `ports` field of the Kubernetes Containers [v1 core API](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#container-v1-core). */
|
|
@@ -6314,16 +6376,22 @@ declare namespace gapi.client {
|
|
|
6314
6376
|
projectId?: string;
|
|
6315
6377
|
}
|
|
6316
6378
|
interface GoogleCloudAiplatformV1beta1PSCAutomationConfig {
|
|
6317
|
-
/** Output only.
|
|
6379
|
+
/** Output only. Error message if the PSC service automation failed. */
|
|
6380
|
+
errorMessage?: string;
|
|
6381
|
+
/** Output only. Forwarding rule created by the PSC service automation. */
|
|
6318
6382
|
forwardingRule?: string;
|
|
6319
|
-
/** Output only. IP address rule created by the PSC service automation.
|
|
6383
|
+
/** Output only. IP address rule created by the PSC service automation. */
|
|
6320
6384
|
ipAddress?: string;
|
|
6321
6385
|
/** Required. The full name of the Google Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert): `projects/{project}/global/networks/{network}`. Where {project} is a project number, as in '12345', and {network} is network name. */
|
|
6322
6386
|
network?: string;
|
|
6323
6387
|
/** Required. Project id used to create forwarding rule. */
|
|
6324
6388
|
projectId?: string;
|
|
6389
|
+
/** Output only. The state of the PSC service automation. */
|
|
6390
|
+
state?: string;
|
|
6325
6391
|
}
|
|
6326
6392
|
interface GoogleCloudAiplatformV1beta1PscInterfaceConfig {
|
|
6393
|
+
/** Optional. DNS peering configurations. When specified, Vertex AI will attempt to configure DNS peering zones in the tenant project VPC to resolve the specified domains using the target network's Cloud DNS. The user must grant the dns.peer role to the Vertex AI Service Agent on the target project. */
|
|
6394
|
+
dnsPeeringConfigs?: GoogleCloudAiplatformV1beta1DnsPeeringConfig[];
|
|
6327
6395
|
/** Optional. The name of the Compute Engine [network attachment](https://cloud.google.com/vpc/docs/about-network-attachments) to attach to the resource within the region and user project. To specify this field, you must have already [created a network attachment] (https://cloud.google.com/vpc/docs/create-manage-network-attachments#create-network-attachments). This field is only used for resources using PSC-I. */
|
|
6328
6396
|
networkAttachment?: string;
|
|
6329
6397
|
}
|
|
@@ -6436,6 +6504,8 @@ declare namespace gapi.client {
|
|
|
6436
6504
|
resourceTitle?: string;
|
|
6437
6505
|
/** Optional. Use case (CUJ) of the resource. */
|
|
6438
6506
|
resourceUseCase?: string;
|
|
6507
|
+
/** Optional. For notebook resource, whether the notebook supports Workbench. */
|
|
6508
|
+
supportsWorkbench?: boolean;
|
|
6439
6509
|
/** Required. */
|
|
6440
6510
|
title?: string;
|
|
6441
6511
|
}
|
|
@@ -6829,6 +6899,8 @@ declare namespace gapi.client {
|
|
|
6829
6899
|
slackSource?: GoogleCloudAiplatformV1beta1SlackSource;
|
|
6830
6900
|
/** Output only. Timestamp when this RagFile was last updated. */
|
|
6831
6901
|
updateTime?: string;
|
|
6902
|
+
/** Output only. The metadata for metadata search. The user_metadata Needs to be in JSON format. */
|
|
6903
|
+
userMetadata?: string;
|
|
6832
6904
|
}
|
|
6833
6905
|
interface GoogleCloudAiplatformV1beta1RagFileChunkingConfig {
|
|
6834
6906
|
/** The overlap between chunks. */
|
|
@@ -6844,6 +6916,20 @@ declare namespace gapi.client {
|
|
|
6844
6916
|
/** The size of the chunks. */
|
|
6845
6917
|
chunkSize?: number;
|
|
6846
6918
|
}
|
|
6919
|
+
interface GoogleCloudAiplatformV1beta1RagFileMetadataConfig {
|
|
6920
|
+
/** Google Cloud Storage location. Supports importing individual files as well as entire Google Cloud Storage directories. Sample formats: - `gs://bucket_name/my_directory/object_name/metadata_schema.json` - `gs://bucket_name/my_directory` If the user provides a directory, the metadata schema will be read from the files that ends with "metadata_schema.json" in the directory. */
|
|
6921
|
+
gcsMetadataSchemaSource?: GoogleCloudAiplatformV1beta1GcsSource;
|
|
6922
|
+
/** Google Cloud Storage location. Supports importing individual files as well as entire Google Cloud Storage directories. Sample formats: - `gs://bucket_name/my_directory/object_name/metadata.json` - `gs://bucket_name/my_directory` If the user provides a directory, the metadata will be read from the files that ends with "metadata.json" in the directory. */
|
|
6923
|
+
gcsMetadataSource?: GoogleCloudAiplatformV1beta1GcsSource;
|
|
6924
|
+
/** Google Drive location. Supports importing individual files as well as Google Drive folders. If the user provides a folder, the metadata schema will be read from the files that ends with "metadata_schema.json" in the directory. */
|
|
6925
|
+
googleDriveMetadataSchemaSource?: GoogleCloudAiplatformV1beta1GoogleDriveSource;
|
|
6926
|
+
/** Google Drive location. Supports importing individual files as well as Google Drive folders. If the user provides a directory, the metadata will be read from the files that ends with "metadata.json" in the directory. */
|
|
6927
|
+
googleDriveMetadataSource?: GoogleCloudAiplatformV1beta1GoogleDriveSource;
|
|
6928
|
+
/** Inline metadata schema source. Must be a JSON string. */
|
|
6929
|
+
inlineMetadataSchemaSource?: string;
|
|
6930
|
+
/** Inline metadata source. Must be a JSON string. */
|
|
6931
|
+
inlineMetadataSource?: string;
|
|
6932
|
+
}
|
|
6847
6933
|
interface GoogleCloudAiplatformV1beta1RagFileParsingConfig {
|
|
6848
6934
|
/** The Advanced Parser to use for RagFiles. */
|
|
6849
6935
|
advancedParser?: GoogleCloudAiplatformV1beta1RagFileParsingConfigAdvancedParser;
|
|
@@ -6885,9 +6971,15 @@ declare namespace gapi.client {
|
|
|
6885
6971
|
basic?: any;
|
|
6886
6972
|
/** Sets the RagManagedDb to the Enterprise tier. This is the default tier if not explicitly chosen. */
|
|
6887
6973
|
enterprise?: any;
|
|
6974
|
+
/** Sets the RagManagedDb to the Scaled tier. */
|
|
6975
|
+
scaled?: any;
|
|
6976
|
+
/** Sets the RagManagedDb to the Unprovisioned tier. */
|
|
6977
|
+
unprovisioned?: any;
|
|
6888
6978
|
}
|
|
6889
6979
|
interface GoogleCloudAiplatformV1beta1RagManagedDbConfigBasic {}
|
|
6890
6980
|
interface GoogleCloudAiplatformV1beta1RagManagedDbConfigEnterprise {}
|
|
6981
|
+
interface GoogleCloudAiplatformV1beta1RagManagedDbConfigScaled {}
|
|
6982
|
+
interface GoogleCloudAiplatformV1beta1RagManagedDbConfigUnprovisioned {}
|
|
6891
6983
|
interface GoogleCloudAiplatformV1beta1RagQuery {
|
|
6892
6984
|
/** Optional. The retrieval config for the query. */
|
|
6893
6985
|
ragRetrievalConfig?: GoogleCloudAiplatformV1beta1RagRetrievalConfig;
|
|
@@ -7090,6 +7182,8 @@ declare namespace gapi.client {
|
|
|
7090
7182
|
viewCount?: string;
|
|
7091
7183
|
}
|
|
7092
7184
|
interface GoogleCloudAiplatformV1beta1ReasoningEngine {
|
|
7185
|
+
/** Optional. Configuration for how Agent Engine sub-resources should manage context. */
|
|
7186
|
+
contextSpec?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpec;
|
|
7093
7187
|
/** Output only. Timestamp when this ReasoningEngine was created. */
|
|
7094
7188
|
createTime?: string;
|
|
7095
7189
|
/** Optional. The description of the ReasoningEngine. */
|
|
@@ -7105,6 +7199,24 @@ declare namespace gapi.client {
|
|
|
7105
7199
|
/** Output only. Timestamp when this ReasoningEngine was most recently updated. */
|
|
7106
7200
|
updateTime?: string;
|
|
7107
7201
|
}
|
|
7202
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpec {
|
|
7203
|
+
/** Optional. Specification for a Memory Bank, which manages memories for the Agent Engine. */
|
|
7204
|
+
memoryBankConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfig;
|
|
7205
|
+
}
|
|
7206
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfig {
|
|
7207
|
+
/** Optional. Configuration for how to generate memories for the Memory Bank. */
|
|
7208
|
+
generationConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig;
|
|
7209
|
+
/** 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`. */
|
|
7210
|
+
similaritySearchConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig;
|
|
7211
|
+
}
|
|
7212
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig {
|
|
7213
|
+
/** Required. The model used to generate memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}` or `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
|
|
7214
|
+
model?: string;
|
|
7215
|
+
}
|
|
7216
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig {
|
|
7217
|
+
/** Required. The model used to generate embeddings to lookup similar memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}` or `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
|
|
7218
|
+
embeddingModel?: string;
|
|
7219
|
+
}
|
|
7108
7220
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineSpec {
|
|
7109
7221
|
/** Optional. The OSS agent framework used to develop the agent. Currently supported values: "google-adk", "langchain", "langgraph", "ag2", "llama-index", "custom". */
|
|
7110
7222
|
agentFramework?: string;
|
|
@@ -7290,6 +7402,38 @@ declare namespace gapi.client {
|
|
|
7290
7402
|
/** The contexts of the query. */
|
|
7291
7403
|
contexts?: GoogleCloudAiplatformV1beta1RagContexts;
|
|
7292
7404
|
}
|
|
7405
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest {
|
|
7406
|
+
/** Required. The scope of the memories to retrieve. A memory must have exactly the same scope (`Memory.scope`) as the scope provided here to be retrieved (same keys and values). Order does not matter, but it is case-sensitive. */
|
|
7407
|
+
scope?: {[P in string]: string};
|
|
7408
|
+
/** Parameters for semantic similarity search based retrieval. */
|
|
7409
|
+
similaritySearchParams?: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequestSimilaritySearchParams;
|
|
7410
|
+
/** Parameters for simple (non-similarity search) retrieval. */
|
|
7411
|
+
simpleRetrievalParams?: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequestSimpleRetrievalParams;
|
|
7412
|
+
}
|
|
7413
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesRequestSimilaritySearchParams {
|
|
7414
|
+
/** Required. Query to use for similarity search retrieval. If provided, then the parent ReasoningEngine must have ReasoningEngineContextSpec.MemoryBankConfig.SimilaritySearchConfig set. */
|
|
7415
|
+
searchQuery?: string;
|
|
7416
|
+
/** Optional. The maximum number of memories to return. The service may return fewer than this value. If unspecified, at most 3 memories will be returned. The maximum value is 100; values above 100 will be coerced to 100. */
|
|
7417
|
+
topK?: number;
|
|
7418
|
+
}
|
|
7419
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesRequestSimpleRetrievalParams {
|
|
7420
|
+
/** Optional. The maximum number of memories to return. The service may return fewer than this value. If unspecified, at most 3 memories will be returned. The maximum value is 100; values above 100 will be coerced to 100. */
|
|
7421
|
+
pageSize?: number;
|
|
7422
|
+
/** Optional. A page token, received from a previous `RetrieveMemories` call. Provide this to retrieve the subsequent page. */
|
|
7423
|
+
pageToken?: string;
|
|
7424
|
+
}
|
|
7425
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse {
|
|
7426
|
+
/** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. This token is not set if similarity search was used for retrieval. */
|
|
7427
|
+
nextPageToken?: string;
|
|
7428
|
+
/** The retrieved memories. */
|
|
7429
|
+
retrievedMemories?: GoogleCloudAiplatformV1beta1RetrieveMemoriesResponseRetrievedMemory[];
|
|
7430
|
+
}
|
|
7431
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesResponseRetrievedMemory {
|
|
7432
|
+
/** The distance between the query and the retrieved Memory. Smaller values indicate more similar memories. This is only set if similarity search was used for retrieval. */
|
|
7433
|
+
distance?: number;
|
|
7434
|
+
/** The retrieved Memory. */
|
|
7435
|
+
memory?: GoogleCloudAiplatformV1beta1Memory;
|
|
7436
|
+
}
|
|
7293
7437
|
interface GoogleCloudAiplatformV1beta1RolloutOptions {
|
|
7294
7438
|
/** Percentage of allowed additional replicas. For autoscaling deployments, this refers to the target replica count. */
|
|
7295
7439
|
maxSurgePercentage?: number;
|
|
@@ -7404,6 +7548,8 @@ declare namespace gapi.client {
|
|
|
7404
7548
|
blocked?: boolean;
|
|
7405
7549
|
/** Output only. Harm category. */
|
|
7406
7550
|
category?: string;
|
|
7551
|
+
/** Output only. The overwritten threshold for the safety category of Gemini 2.0 image out. If minors are detected in the output image, the threshold of each safety category will be overwritten if user sets a lower threshold. */
|
|
7552
|
+
overwrittenThreshold?: string;
|
|
7407
7553
|
/** Output only. Harm probability levels in the content. */
|
|
7408
7554
|
probability?: string;
|
|
7409
7555
|
/** Output only. Harm probability score. */
|
|
@@ -9727,7 +9873,7 @@ declare namespace gapi.client {
|
|
|
9727
9873
|
adapterSize?: string;
|
|
9728
9874
|
/** Optional. Number of complete passes the model makes over the entire training dataset during training. */
|
|
9729
9875
|
epochCount?: string;
|
|
9730
|
-
/** Optional. Multiplier for adjusting the default learning rate. */
|
|
9876
|
+
/** Optional. Multiplier for adjusting the default learning rate. Mutually exclusive with `learning_rate`. */
|
|
9731
9877
|
learningRateMultiplier?: number;
|
|
9732
9878
|
}
|
|
9733
9879
|
interface GoogleCloudAiplatformV1beta1SupervisedTuningDatasetDistribution {
|
|
@@ -10544,6 +10690,10 @@ declare namespace gapi.client {
|
|
|
10544
10690
|
interface GoogleCloudAiplatformV1beta1UploadRagFileConfig {
|
|
10545
10691
|
/** Specifies the size and overlap of chunks after uploading RagFile. */
|
|
10546
10692
|
ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
|
|
10693
|
+
/** Specifies the metadata config for RagFiles. Including paths for metadata schema and metadata. Alteratively, inline metadata schema and metadata can be provided. */
|
|
10694
|
+
ragFileMetadataConfig?: GoogleCloudAiplatformV1beta1RagFileMetadataConfig;
|
|
10695
|
+
/** Optional. Specifies the parsing config for RagFiles. RAG will use the default parser if this field is not set. */
|
|
10696
|
+
ragFileParsingConfig?: GoogleCloudAiplatformV1beta1RagFileParsingConfig;
|
|
10547
10697
|
/** Specifies the transformation config for RagFiles. */
|
|
10548
10698
|
ragFileTransformationConfig?: GoogleCloudAiplatformV1beta1RagFileTransformationConfig;
|
|
10549
10699
|
}
|
|
@@ -10583,6 +10733,16 @@ declare namespace gapi.client {
|
|
|
10583
10733
|
status?: GoogleRpcStatus;
|
|
10584
10734
|
}
|
|
10585
10735
|
interface GoogleCloudAiplatformV1beta1UrlContext {}
|
|
10736
|
+
interface GoogleCloudAiplatformV1beta1UrlContextMetadata {
|
|
10737
|
+
/** Output only. List of url context. */
|
|
10738
|
+
urlMetadata?: GoogleCloudAiplatformV1beta1UrlMetadata[];
|
|
10739
|
+
}
|
|
10740
|
+
interface GoogleCloudAiplatformV1beta1UrlMetadata {
|
|
10741
|
+
/** Retrieved url by the tool. */
|
|
10742
|
+
retrievedUrl?: string;
|
|
10743
|
+
/** Status of the url retrieval. */
|
|
10744
|
+
urlRetrievalStatus?: string;
|
|
10745
|
+
}
|
|
10586
10746
|
interface GoogleCloudAiplatformV1beta1UserActionReference {
|
|
10587
10747
|
/** For API calls that start a LabelingJob. Resource name of the LabelingJob. Format: `projects/{project}/locations/{location}/dataLabelingJobs/{data_labeling_job}` */
|
|
10588
10748
|
dataLabelingJob?: string;
|
|
@@ -17148,6 +17308,369 @@ declare namespace gapi.client {
|
|
|
17148
17308
|
uploadType?: string;
|
|
17149
17309
|
}): Request<GoogleLongrunningOperation>;
|
|
17150
17310
|
}
|
|
17311
|
+
interface EvaluationItemsResource {
|
|
17312
|
+
operations: OperationsResource;
|
|
17313
|
+
}
|
|
17314
|
+
interface OperationsResource {
|
|
17315
|
+
/** 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 support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
17316
|
+
delete(request?: {
|
|
17317
|
+
/** V1 error format. */
|
|
17318
|
+
'$.xgafv'?: string;
|
|
17319
|
+
/** OAuth access token. */
|
|
17320
|
+
access_token?: string;
|
|
17321
|
+
/** Data format for response. */
|
|
17322
|
+
alt?: string;
|
|
17323
|
+
/** JSONP */
|
|
17324
|
+
callback?: string;
|
|
17325
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17326
|
+
fields?: string;
|
|
17327
|
+
/** 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. */
|
|
17328
|
+
key?: string;
|
|
17329
|
+
/** The name of the operation resource to be deleted. */
|
|
17330
|
+
name: string;
|
|
17331
|
+
/** OAuth 2.0 token for the current user. */
|
|
17332
|
+
oauth_token?: string;
|
|
17333
|
+
/** Returns response with indentations and line breaks. */
|
|
17334
|
+
prettyPrint?: boolean;
|
|
17335
|
+
/** 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. */
|
|
17336
|
+
quotaUser?: string;
|
|
17337
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17338
|
+
upload_protocol?: string;
|
|
17339
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17340
|
+
uploadType?: string;
|
|
17341
|
+
}): Request<{}>;
|
|
17342
|
+
/** 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. */
|
|
17343
|
+
get(request?: {
|
|
17344
|
+
/** V1 error format. */
|
|
17345
|
+
'$.xgafv'?: string;
|
|
17346
|
+
/** OAuth access token. */
|
|
17347
|
+
access_token?: string;
|
|
17348
|
+
/** Data format for response. */
|
|
17349
|
+
alt?: string;
|
|
17350
|
+
/** JSONP */
|
|
17351
|
+
callback?: string;
|
|
17352
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17353
|
+
fields?: string;
|
|
17354
|
+
/** 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. */
|
|
17355
|
+
key?: string;
|
|
17356
|
+
/** The name of the operation resource. */
|
|
17357
|
+
name: string;
|
|
17358
|
+
/** OAuth 2.0 token for the current user. */
|
|
17359
|
+
oauth_token?: string;
|
|
17360
|
+
/** Returns response with indentations and line breaks. */
|
|
17361
|
+
prettyPrint?: boolean;
|
|
17362
|
+
/** 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. */
|
|
17363
|
+
quotaUser?: string;
|
|
17364
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17365
|
+
upload_protocol?: string;
|
|
17366
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17367
|
+
uploadType?: string;
|
|
17368
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17369
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
17370
|
+
list(request?: {
|
|
17371
|
+
/** V1 error format. */
|
|
17372
|
+
'$.xgafv'?: string;
|
|
17373
|
+
/** OAuth access token. */
|
|
17374
|
+
access_token?: string;
|
|
17375
|
+
/** Data format for response. */
|
|
17376
|
+
alt?: string;
|
|
17377
|
+
/** JSONP */
|
|
17378
|
+
callback?: string;
|
|
17379
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17380
|
+
fields?: string;
|
|
17381
|
+
/** The standard list filter. */
|
|
17382
|
+
filter?: string;
|
|
17383
|
+
/** 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. */
|
|
17384
|
+
key?: string;
|
|
17385
|
+
/** The name of the operation's parent resource. */
|
|
17386
|
+
name: string;
|
|
17387
|
+
/** OAuth 2.0 token for the current user. */
|
|
17388
|
+
oauth_token?: string;
|
|
17389
|
+
/** The standard list page size. */
|
|
17390
|
+
pageSize?: number;
|
|
17391
|
+
/** The standard list page token. */
|
|
17392
|
+
pageToken?: string;
|
|
17393
|
+
/** Returns response with indentations and line breaks. */
|
|
17394
|
+
prettyPrint?: boolean;
|
|
17395
|
+
/** 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. */
|
|
17396
|
+
quotaUser?: string;
|
|
17397
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17398
|
+
upload_protocol?: string;
|
|
17399
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17400
|
+
uploadType?: string;
|
|
17401
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
17402
|
+
/** 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 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 `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 an immediate response is no guarantee that the operation is done. */
|
|
17403
|
+
wait(request?: {
|
|
17404
|
+
/** V1 error format. */
|
|
17405
|
+
'$.xgafv'?: string;
|
|
17406
|
+
/** OAuth access token. */
|
|
17407
|
+
access_token?: string;
|
|
17408
|
+
/** Data format for response. */
|
|
17409
|
+
alt?: string;
|
|
17410
|
+
/** JSONP */
|
|
17411
|
+
callback?: string;
|
|
17412
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17413
|
+
fields?: string;
|
|
17414
|
+
/** 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. */
|
|
17415
|
+
key?: string;
|
|
17416
|
+
/** The name of the operation resource to wait on. */
|
|
17417
|
+
name: string;
|
|
17418
|
+
/** OAuth 2.0 token for the current user. */
|
|
17419
|
+
oauth_token?: string;
|
|
17420
|
+
/** Returns response with indentations and line breaks. */
|
|
17421
|
+
prettyPrint?: boolean;
|
|
17422
|
+
/** 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. */
|
|
17423
|
+
quotaUser?: string;
|
|
17424
|
+
/** 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 specified, the shorter one will be used. */
|
|
17425
|
+
timeout?: string;
|
|
17426
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17427
|
+
upload_protocol?: string;
|
|
17428
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17429
|
+
uploadType?: string;
|
|
17430
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17431
|
+
}
|
|
17432
|
+
interface EvaluationRunsResource {
|
|
17433
|
+
operations: OperationsResource;
|
|
17434
|
+
}
|
|
17435
|
+
interface OperationsResource {
|
|
17436
|
+
/** 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 support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
17437
|
+
delete(request?: {
|
|
17438
|
+
/** V1 error format. */
|
|
17439
|
+
'$.xgafv'?: string;
|
|
17440
|
+
/** OAuth access token. */
|
|
17441
|
+
access_token?: string;
|
|
17442
|
+
/** Data format for response. */
|
|
17443
|
+
alt?: string;
|
|
17444
|
+
/** JSONP */
|
|
17445
|
+
callback?: string;
|
|
17446
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17447
|
+
fields?: string;
|
|
17448
|
+
/** 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. */
|
|
17449
|
+
key?: string;
|
|
17450
|
+
/** The name of the operation resource to be deleted. */
|
|
17451
|
+
name: string;
|
|
17452
|
+
/** OAuth 2.0 token for the current user. */
|
|
17453
|
+
oauth_token?: string;
|
|
17454
|
+
/** Returns response with indentations and line breaks. */
|
|
17455
|
+
prettyPrint?: boolean;
|
|
17456
|
+
/** 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. */
|
|
17457
|
+
quotaUser?: string;
|
|
17458
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17459
|
+
upload_protocol?: string;
|
|
17460
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17461
|
+
uploadType?: string;
|
|
17462
|
+
}): Request<{}>;
|
|
17463
|
+
/** 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. */
|
|
17464
|
+
get(request?: {
|
|
17465
|
+
/** V1 error format. */
|
|
17466
|
+
'$.xgafv'?: string;
|
|
17467
|
+
/** OAuth access token. */
|
|
17468
|
+
access_token?: string;
|
|
17469
|
+
/** Data format for response. */
|
|
17470
|
+
alt?: string;
|
|
17471
|
+
/** JSONP */
|
|
17472
|
+
callback?: string;
|
|
17473
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17474
|
+
fields?: string;
|
|
17475
|
+
/** 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. */
|
|
17476
|
+
key?: string;
|
|
17477
|
+
/** The name of the operation resource. */
|
|
17478
|
+
name: string;
|
|
17479
|
+
/** OAuth 2.0 token for the current user. */
|
|
17480
|
+
oauth_token?: string;
|
|
17481
|
+
/** Returns response with indentations and line breaks. */
|
|
17482
|
+
prettyPrint?: boolean;
|
|
17483
|
+
/** 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. */
|
|
17484
|
+
quotaUser?: string;
|
|
17485
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17486
|
+
upload_protocol?: string;
|
|
17487
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17488
|
+
uploadType?: string;
|
|
17489
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17490
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
17491
|
+
list(request?: {
|
|
17492
|
+
/** V1 error format. */
|
|
17493
|
+
'$.xgafv'?: string;
|
|
17494
|
+
/** OAuth access token. */
|
|
17495
|
+
access_token?: string;
|
|
17496
|
+
/** Data format for response. */
|
|
17497
|
+
alt?: string;
|
|
17498
|
+
/** JSONP */
|
|
17499
|
+
callback?: string;
|
|
17500
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17501
|
+
fields?: string;
|
|
17502
|
+
/** The standard list filter. */
|
|
17503
|
+
filter?: string;
|
|
17504
|
+
/** 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. */
|
|
17505
|
+
key?: string;
|
|
17506
|
+
/** The name of the operation's parent resource. */
|
|
17507
|
+
name: string;
|
|
17508
|
+
/** OAuth 2.0 token for the current user. */
|
|
17509
|
+
oauth_token?: string;
|
|
17510
|
+
/** The standard list page size. */
|
|
17511
|
+
pageSize?: number;
|
|
17512
|
+
/** The standard list page token. */
|
|
17513
|
+
pageToken?: string;
|
|
17514
|
+
/** Returns response with indentations and line breaks. */
|
|
17515
|
+
prettyPrint?: boolean;
|
|
17516
|
+
/** 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. */
|
|
17517
|
+
quotaUser?: string;
|
|
17518
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17519
|
+
upload_protocol?: string;
|
|
17520
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17521
|
+
uploadType?: string;
|
|
17522
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
17523
|
+
/** 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 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 `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 an immediate response is no guarantee that the operation is done. */
|
|
17524
|
+
wait(request?: {
|
|
17525
|
+
/** V1 error format. */
|
|
17526
|
+
'$.xgafv'?: string;
|
|
17527
|
+
/** OAuth access token. */
|
|
17528
|
+
access_token?: string;
|
|
17529
|
+
/** Data format for response. */
|
|
17530
|
+
alt?: string;
|
|
17531
|
+
/** JSONP */
|
|
17532
|
+
callback?: string;
|
|
17533
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17534
|
+
fields?: string;
|
|
17535
|
+
/** 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. */
|
|
17536
|
+
key?: string;
|
|
17537
|
+
/** The name of the operation resource to wait on. */
|
|
17538
|
+
name: string;
|
|
17539
|
+
/** OAuth 2.0 token for the current user. */
|
|
17540
|
+
oauth_token?: string;
|
|
17541
|
+
/** Returns response with indentations and line breaks. */
|
|
17542
|
+
prettyPrint?: boolean;
|
|
17543
|
+
/** 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. */
|
|
17544
|
+
quotaUser?: string;
|
|
17545
|
+
/** 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 specified, the shorter one will be used. */
|
|
17546
|
+
timeout?: string;
|
|
17547
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17548
|
+
upload_protocol?: string;
|
|
17549
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17550
|
+
uploadType?: string;
|
|
17551
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17552
|
+
}
|
|
17553
|
+
interface EvaluationSetsResource {
|
|
17554
|
+
operations: OperationsResource;
|
|
17555
|
+
}
|
|
17556
|
+
interface OperationsResource {
|
|
17557
|
+
/** 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 support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
|
|
17558
|
+
delete(request?: {
|
|
17559
|
+
/** V1 error format. */
|
|
17560
|
+
'$.xgafv'?: string;
|
|
17561
|
+
/** OAuth access token. */
|
|
17562
|
+
access_token?: string;
|
|
17563
|
+
/** Data format for response. */
|
|
17564
|
+
alt?: string;
|
|
17565
|
+
/** JSONP */
|
|
17566
|
+
callback?: string;
|
|
17567
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17568
|
+
fields?: string;
|
|
17569
|
+
/** 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. */
|
|
17570
|
+
key?: string;
|
|
17571
|
+
/** The name of the operation resource to be deleted. */
|
|
17572
|
+
name: string;
|
|
17573
|
+
/** OAuth 2.0 token for the current user. */
|
|
17574
|
+
oauth_token?: string;
|
|
17575
|
+
/** Returns response with indentations and line breaks. */
|
|
17576
|
+
prettyPrint?: boolean;
|
|
17577
|
+
/** 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. */
|
|
17578
|
+
quotaUser?: string;
|
|
17579
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17580
|
+
upload_protocol?: string;
|
|
17581
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17582
|
+
uploadType?: string;
|
|
17583
|
+
}): Request<{}>;
|
|
17584
|
+
/** 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. */
|
|
17585
|
+
get(request?: {
|
|
17586
|
+
/** V1 error format. */
|
|
17587
|
+
'$.xgafv'?: string;
|
|
17588
|
+
/** OAuth access token. */
|
|
17589
|
+
access_token?: string;
|
|
17590
|
+
/** Data format for response. */
|
|
17591
|
+
alt?: string;
|
|
17592
|
+
/** JSONP */
|
|
17593
|
+
callback?: string;
|
|
17594
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17595
|
+
fields?: string;
|
|
17596
|
+
/** 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. */
|
|
17597
|
+
key?: string;
|
|
17598
|
+
/** The name of the operation resource. */
|
|
17599
|
+
name: string;
|
|
17600
|
+
/** OAuth 2.0 token for the current user. */
|
|
17601
|
+
oauth_token?: string;
|
|
17602
|
+
/** Returns response with indentations and line breaks. */
|
|
17603
|
+
prettyPrint?: boolean;
|
|
17604
|
+
/** 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. */
|
|
17605
|
+
quotaUser?: string;
|
|
17606
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17607
|
+
upload_protocol?: string;
|
|
17608
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17609
|
+
uploadType?: string;
|
|
17610
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17611
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
17612
|
+
list(request?: {
|
|
17613
|
+
/** V1 error format. */
|
|
17614
|
+
'$.xgafv'?: string;
|
|
17615
|
+
/** OAuth access token. */
|
|
17616
|
+
access_token?: string;
|
|
17617
|
+
/** Data format for response. */
|
|
17618
|
+
alt?: string;
|
|
17619
|
+
/** JSONP */
|
|
17620
|
+
callback?: string;
|
|
17621
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17622
|
+
fields?: string;
|
|
17623
|
+
/** The standard list filter. */
|
|
17624
|
+
filter?: string;
|
|
17625
|
+
/** 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. */
|
|
17626
|
+
key?: string;
|
|
17627
|
+
/** The name of the operation's parent resource. */
|
|
17628
|
+
name: string;
|
|
17629
|
+
/** OAuth 2.0 token for the current user. */
|
|
17630
|
+
oauth_token?: string;
|
|
17631
|
+
/** The standard list page size. */
|
|
17632
|
+
pageSize?: number;
|
|
17633
|
+
/** The standard list page token. */
|
|
17634
|
+
pageToken?: string;
|
|
17635
|
+
/** Returns response with indentations and line breaks. */
|
|
17636
|
+
prettyPrint?: boolean;
|
|
17637
|
+
/** 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. */
|
|
17638
|
+
quotaUser?: string;
|
|
17639
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17640
|
+
upload_protocol?: string;
|
|
17641
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17642
|
+
uploadType?: string;
|
|
17643
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
17644
|
+
/** 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 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 `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 an immediate response is no guarantee that the operation is done. */
|
|
17645
|
+
wait(request?: {
|
|
17646
|
+
/** V1 error format. */
|
|
17647
|
+
'$.xgafv'?: string;
|
|
17648
|
+
/** OAuth access token. */
|
|
17649
|
+
access_token?: string;
|
|
17650
|
+
/** Data format for response. */
|
|
17651
|
+
alt?: string;
|
|
17652
|
+
/** JSONP */
|
|
17653
|
+
callback?: string;
|
|
17654
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17655
|
+
fields?: string;
|
|
17656
|
+
/** 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. */
|
|
17657
|
+
key?: string;
|
|
17658
|
+
/** The name of the operation resource to wait on. */
|
|
17659
|
+
name: string;
|
|
17660
|
+
/** OAuth 2.0 token for the current user. */
|
|
17661
|
+
oauth_token?: string;
|
|
17662
|
+
/** Returns response with indentations and line breaks. */
|
|
17663
|
+
prettyPrint?: boolean;
|
|
17664
|
+
/** 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. */
|
|
17665
|
+
quotaUser?: string;
|
|
17666
|
+
/** 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 specified, the shorter one will be used. */
|
|
17667
|
+
timeout?: string;
|
|
17668
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17669
|
+
upload_protocol?: string;
|
|
17670
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17671
|
+
uploadType?: string;
|
|
17672
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17673
|
+
}
|
|
17151
17674
|
interface EvaluationTasksResource {
|
|
17152
17675
|
operations: OperationsResource;
|
|
17153
17676
|
}
|
|
@@ -33325,6 +33848,329 @@ declare namespace gapi.client {
|
|
|
33325
33848
|
}): Request<GoogleLongrunningOperation>;
|
|
33326
33849
|
}
|
|
33327
33850
|
interface MemoriesResource {
|
|
33851
|
+
/** Create a Memory. */
|
|
33852
|
+
create(request: {
|
|
33853
|
+
/** V1 error format. */
|
|
33854
|
+
'$.xgafv'?: string;
|
|
33855
|
+
/** OAuth access token. */
|
|
33856
|
+
access_token?: string;
|
|
33857
|
+
/** Data format for response. */
|
|
33858
|
+
alt?: string;
|
|
33859
|
+
/** JSONP */
|
|
33860
|
+
callback?: string;
|
|
33861
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33862
|
+
fields?: string;
|
|
33863
|
+
/** 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. */
|
|
33864
|
+
key?: string;
|
|
33865
|
+
/** OAuth 2.0 token for the current user. */
|
|
33866
|
+
oauth_token?: string;
|
|
33867
|
+
/** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33868
|
+
parent: string;
|
|
33869
|
+
/** Returns response with indentations and line breaks. */
|
|
33870
|
+
prettyPrint?: boolean;
|
|
33871
|
+
/** 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. */
|
|
33872
|
+
quotaUser?: string;
|
|
33873
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33874
|
+
upload_protocol?: string;
|
|
33875
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33876
|
+
uploadType?: string;
|
|
33877
|
+
/** Request body */
|
|
33878
|
+
resource: GoogleCloudAiplatformV1beta1Memory;
|
|
33879
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33880
|
+
create(
|
|
33881
|
+
request: {
|
|
33882
|
+
/** V1 error format. */
|
|
33883
|
+
'$.xgafv'?: string;
|
|
33884
|
+
/** OAuth access token. */
|
|
33885
|
+
access_token?: string;
|
|
33886
|
+
/** Data format for response. */
|
|
33887
|
+
alt?: string;
|
|
33888
|
+
/** JSONP */
|
|
33889
|
+
callback?: string;
|
|
33890
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33891
|
+
fields?: string;
|
|
33892
|
+
/** 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. */
|
|
33893
|
+
key?: string;
|
|
33894
|
+
/** OAuth 2.0 token for the current user. */
|
|
33895
|
+
oauth_token?: string;
|
|
33896
|
+
/** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33897
|
+
parent: string;
|
|
33898
|
+
/** Returns response with indentations and line breaks. */
|
|
33899
|
+
prettyPrint?: boolean;
|
|
33900
|
+
/** 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. */
|
|
33901
|
+
quotaUser?: string;
|
|
33902
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33903
|
+
upload_protocol?: string;
|
|
33904
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33905
|
+
uploadType?: string;
|
|
33906
|
+
},
|
|
33907
|
+
body: GoogleCloudAiplatformV1beta1Memory,
|
|
33908
|
+
): Request<GoogleLongrunningOperation>;
|
|
33909
|
+
/** Delete a Memory. */
|
|
33910
|
+
delete(request?: {
|
|
33911
|
+
/** V1 error format. */
|
|
33912
|
+
'$.xgafv'?: string;
|
|
33913
|
+
/** OAuth access token. */
|
|
33914
|
+
access_token?: string;
|
|
33915
|
+
/** Data format for response. */
|
|
33916
|
+
alt?: string;
|
|
33917
|
+
/** JSONP */
|
|
33918
|
+
callback?: string;
|
|
33919
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33920
|
+
fields?: string;
|
|
33921
|
+
/** 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. */
|
|
33922
|
+
key?: string;
|
|
33923
|
+
/** Required. The resource name of the Memory to delete. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
33924
|
+
name: string;
|
|
33925
|
+
/** OAuth 2.0 token for the current user. */
|
|
33926
|
+
oauth_token?: string;
|
|
33927
|
+
/** Returns response with indentations and line breaks. */
|
|
33928
|
+
prettyPrint?: boolean;
|
|
33929
|
+
/** 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. */
|
|
33930
|
+
quotaUser?: string;
|
|
33931
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33932
|
+
upload_protocol?: string;
|
|
33933
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33934
|
+
uploadType?: string;
|
|
33935
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33936
|
+
/** Generate memories. */
|
|
33937
|
+
generate(request: {
|
|
33938
|
+
/** V1 error format. */
|
|
33939
|
+
'$.xgafv'?: string;
|
|
33940
|
+
/** OAuth access token. */
|
|
33941
|
+
access_token?: string;
|
|
33942
|
+
/** Data format for response. */
|
|
33943
|
+
alt?: string;
|
|
33944
|
+
/** JSONP */
|
|
33945
|
+
callback?: string;
|
|
33946
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33947
|
+
fields?: string;
|
|
33948
|
+
/** 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. */
|
|
33949
|
+
key?: string;
|
|
33950
|
+
/** OAuth 2.0 token for the current user. */
|
|
33951
|
+
oauth_token?: string;
|
|
33952
|
+
/** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33953
|
+
parent: string;
|
|
33954
|
+
/** Returns response with indentations and line breaks. */
|
|
33955
|
+
prettyPrint?: boolean;
|
|
33956
|
+
/** 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. */
|
|
33957
|
+
quotaUser?: string;
|
|
33958
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33959
|
+
upload_protocol?: string;
|
|
33960
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33961
|
+
uploadType?: string;
|
|
33962
|
+
/** Request body */
|
|
33963
|
+
resource: GoogleCloudAiplatformV1beta1GenerateMemoriesRequest;
|
|
33964
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33965
|
+
generate(
|
|
33966
|
+
request: {
|
|
33967
|
+
/** V1 error format. */
|
|
33968
|
+
'$.xgafv'?: string;
|
|
33969
|
+
/** OAuth access token. */
|
|
33970
|
+
access_token?: string;
|
|
33971
|
+
/** Data format for response. */
|
|
33972
|
+
alt?: string;
|
|
33973
|
+
/** JSONP */
|
|
33974
|
+
callback?: string;
|
|
33975
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33976
|
+
fields?: string;
|
|
33977
|
+
/** 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. */
|
|
33978
|
+
key?: string;
|
|
33979
|
+
/** OAuth 2.0 token for the current user. */
|
|
33980
|
+
oauth_token?: string;
|
|
33981
|
+
/** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33982
|
+
parent: string;
|
|
33983
|
+
/** Returns response with indentations and line breaks. */
|
|
33984
|
+
prettyPrint?: boolean;
|
|
33985
|
+
/** 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. */
|
|
33986
|
+
quotaUser?: string;
|
|
33987
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33988
|
+
upload_protocol?: string;
|
|
33989
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33990
|
+
uploadType?: string;
|
|
33991
|
+
},
|
|
33992
|
+
body: GoogleCloudAiplatformV1beta1GenerateMemoriesRequest,
|
|
33993
|
+
): Request<GoogleLongrunningOperation>;
|
|
33994
|
+
/** Get a Memory. */
|
|
33995
|
+
get(request?: {
|
|
33996
|
+
/** V1 error format. */
|
|
33997
|
+
'$.xgafv'?: string;
|
|
33998
|
+
/** OAuth access token. */
|
|
33999
|
+
access_token?: string;
|
|
34000
|
+
/** Data format for response. */
|
|
34001
|
+
alt?: string;
|
|
34002
|
+
/** JSONP */
|
|
34003
|
+
callback?: string;
|
|
34004
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34005
|
+
fields?: string;
|
|
34006
|
+
/** 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. */
|
|
34007
|
+
key?: string;
|
|
34008
|
+
/** Required. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
34009
|
+
name: string;
|
|
34010
|
+
/** OAuth 2.0 token for the current user. */
|
|
34011
|
+
oauth_token?: string;
|
|
34012
|
+
/** Returns response with indentations and line breaks. */
|
|
34013
|
+
prettyPrint?: boolean;
|
|
34014
|
+
/** 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. */
|
|
34015
|
+
quotaUser?: string;
|
|
34016
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34017
|
+
upload_protocol?: string;
|
|
34018
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34019
|
+
uploadType?: string;
|
|
34020
|
+
}): Request<GoogleCloudAiplatformV1beta1Memory>;
|
|
34021
|
+
/** List Memories. */
|
|
34022
|
+
list(request?: {
|
|
34023
|
+
/** V1 error format. */
|
|
34024
|
+
'$.xgafv'?: string;
|
|
34025
|
+
/** OAuth access token. */
|
|
34026
|
+
access_token?: string;
|
|
34027
|
+
/** Data format for response. */
|
|
34028
|
+
alt?: string;
|
|
34029
|
+
/** JSONP */
|
|
34030
|
+
callback?: string;
|
|
34031
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34032
|
+
fields?: string;
|
|
34033
|
+
/** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). Supported fields (equality match only): * `scope` (as a JSON string) */
|
|
34034
|
+
filter?: string;
|
|
34035
|
+
/** 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. */
|
|
34036
|
+
key?: string;
|
|
34037
|
+
/** OAuth 2.0 token for the current user. */
|
|
34038
|
+
oauth_token?: string;
|
|
34039
|
+
/** Optional. The standard list page size. */
|
|
34040
|
+
pageSize?: number;
|
|
34041
|
+
/** Optional. The standard list page token. */
|
|
34042
|
+
pageToken?: string;
|
|
34043
|
+
/** Required. The resource name of the ReasoningEngine to list the Memories under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
34044
|
+
parent: string;
|
|
34045
|
+
/** Returns response with indentations and line breaks. */
|
|
34046
|
+
prettyPrint?: boolean;
|
|
34047
|
+
/** 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. */
|
|
34048
|
+
quotaUser?: string;
|
|
34049
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34050
|
+
upload_protocol?: string;
|
|
34051
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34052
|
+
uploadType?: string;
|
|
34053
|
+
}): Request<GoogleCloudAiplatformV1beta1ListMemoriesResponse>;
|
|
34054
|
+
/** Update a Memory. */
|
|
34055
|
+
patch(request: {
|
|
34056
|
+
/** V1 error format. */
|
|
34057
|
+
'$.xgafv'?: string;
|
|
34058
|
+
/** OAuth access token. */
|
|
34059
|
+
access_token?: string;
|
|
34060
|
+
/** Data format for response. */
|
|
34061
|
+
alt?: string;
|
|
34062
|
+
/** JSONP */
|
|
34063
|
+
callback?: string;
|
|
34064
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34065
|
+
fields?: string;
|
|
34066
|
+
/** 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. */
|
|
34067
|
+
key?: string;
|
|
34068
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
34069
|
+
name: string;
|
|
34070
|
+
/** OAuth 2.0 token for the current user. */
|
|
34071
|
+
oauth_token?: string;
|
|
34072
|
+
/** Returns response with indentations and line breaks. */
|
|
34073
|
+
prettyPrint?: boolean;
|
|
34074
|
+
/** 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. */
|
|
34075
|
+
quotaUser?: string;
|
|
34076
|
+
/** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
|
|
34077
|
+
updateMask?: string;
|
|
34078
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34079
|
+
upload_protocol?: string;
|
|
34080
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34081
|
+
uploadType?: string;
|
|
34082
|
+
/** Request body */
|
|
34083
|
+
resource: GoogleCloudAiplatformV1beta1Memory;
|
|
34084
|
+
}): Request<GoogleLongrunningOperation>;
|
|
34085
|
+
patch(
|
|
34086
|
+
request: {
|
|
34087
|
+
/** V1 error format. */
|
|
34088
|
+
'$.xgafv'?: string;
|
|
34089
|
+
/** OAuth access token. */
|
|
34090
|
+
access_token?: string;
|
|
34091
|
+
/** Data format for response. */
|
|
34092
|
+
alt?: string;
|
|
34093
|
+
/** JSONP */
|
|
34094
|
+
callback?: string;
|
|
34095
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34096
|
+
fields?: string;
|
|
34097
|
+
/** 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. */
|
|
34098
|
+
key?: string;
|
|
34099
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
34100
|
+
name: string;
|
|
34101
|
+
/** OAuth 2.0 token for the current user. */
|
|
34102
|
+
oauth_token?: string;
|
|
34103
|
+
/** Returns response with indentations and line breaks. */
|
|
34104
|
+
prettyPrint?: boolean;
|
|
34105
|
+
/** 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. */
|
|
34106
|
+
quotaUser?: string;
|
|
34107
|
+
/** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
|
|
34108
|
+
updateMask?: string;
|
|
34109
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34110
|
+
upload_protocol?: string;
|
|
34111
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34112
|
+
uploadType?: string;
|
|
34113
|
+
},
|
|
34114
|
+
body: GoogleCloudAiplatformV1beta1Memory,
|
|
34115
|
+
): Request<GoogleLongrunningOperation>;
|
|
34116
|
+
/** Retrieve memories. */
|
|
34117
|
+
retrieve(request: {
|
|
34118
|
+
/** V1 error format. */
|
|
34119
|
+
'$.xgafv'?: string;
|
|
34120
|
+
/** OAuth access token. */
|
|
34121
|
+
access_token?: string;
|
|
34122
|
+
/** Data format for response. */
|
|
34123
|
+
alt?: string;
|
|
34124
|
+
/** JSONP */
|
|
34125
|
+
callback?: string;
|
|
34126
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34127
|
+
fields?: string;
|
|
34128
|
+
/** 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. */
|
|
34129
|
+
key?: string;
|
|
34130
|
+
/** OAuth 2.0 token for the current user. */
|
|
34131
|
+
oauth_token?: string;
|
|
34132
|
+
/** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
34133
|
+
parent: string;
|
|
34134
|
+
/** Returns response with indentations and line breaks. */
|
|
34135
|
+
prettyPrint?: boolean;
|
|
34136
|
+
/** 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. */
|
|
34137
|
+
quotaUser?: string;
|
|
34138
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34139
|
+
upload_protocol?: string;
|
|
34140
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34141
|
+
uploadType?: string;
|
|
34142
|
+
/** Request body */
|
|
34143
|
+
resource: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest;
|
|
34144
|
+
}): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
34145
|
+
retrieve(
|
|
34146
|
+
request: {
|
|
34147
|
+
/** V1 error format. */
|
|
34148
|
+
'$.xgafv'?: string;
|
|
34149
|
+
/** OAuth access token. */
|
|
34150
|
+
access_token?: string;
|
|
34151
|
+
/** Data format for response. */
|
|
34152
|
+
alt?: string;
|
|
34153
|
+
/** JSONP */
|
|
34154
|
+
callback?: string;
|
|
34155
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34156
|
+
fields?: string;
|
|
34157
|
+
/** 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. */
|
|
34158
|
+
key?: string;
|
|
34159
|
+
/** OAuth 2.0 token for the current user. */
|
|
34160
|
+
oauth_token?: string;
|
|
34161
|
+
/** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
34162
|
+
parent: string;
|
|
34163
|
+
/** Returns response with indentations and line breaks. */
|
|
34164
|
+
prettyPrint?: boolean;
|
|
34165
|
+
/** 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. */
|
|
34166
|
+
quotaUser?: string;
|
|
34167
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34168
|
+
upload_protocol?: string;
|
|
34169
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34170
|
+
uploadType?: string;
|
|
34171
|
+
},
|
|
34172
|
+
body: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest,
|
|
34173
|
+
): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
33328
34174
|
operations: OperationsResource;
|
|
33329
34175
|
}
|
|
33330
34176
|
interface OperationsResource {
|
|
@@ -39379,6 +40225,9 @@ declare namespace gapi.client {
|
|
|
39379
40225
|
deploymentResourcePools: DeploymentResourcePoolsResource;
|
|
39380
40226
|
edgeDevices: EdgeDevicesResource;
|
|
39381
40227
|
endpoints: EndpointsResource;
|
|
40228
|
+
evaluationItems: EvaluationItemsResource;
|
|
40229
|
+
evaluationRuns: EvaluationRunsResource;
|
|
40230
|
+
evaluationSets: EvaluationSetsResource;
|
|
39382
40231
|
evaluationTasks: EvaluationTasksResource;
|
|
39383
40232
|
exampleStores: ExampleStoresResource;
|
|
39384
40233
|
extensionControllers: ExtensionControllersResource;
|
|
@@ -40108,6 +40957,331 @@ declare namespace gapi.client {
|
|
|
40108
40957
|
interface PublishersResource {
|
|
40109
40958
|
models: ModelsResource;
|
|
40110
40959
|
}
|
|
40960
|
+
interface MemoriesResource {
|
|
40961
|
+
/** Create a Memory. */
|
|
40962
|
+
create(request: {
|
|
40963
|
+
/** V1 error format. */
|
|
40964
|
+
'$.xgafv'?: string;
|
|
40965
|
+
/** OAuth access token. */
|
|
40966
|
+
access_token?: string;
|
|
40967
|
+
/** Data format for response. */
|
|
40968
|
+
alt?: string;
|
|
40969
|
+
/** JSONP */
|
|
40970
|
+
callback?: string;
|
|
40971
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40972
|
+
fields?: string;
|
|
40973
|
+
/** 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. */
|
|
40974
|
+
key?: string;
|
|
40975
|
+
/** OAuth 2.0 token for the current user. */
|
|
40976
|
+
oauth_token?: string;
|
|
40977
|
+
/** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40978
|
+
parent: string;
|
|
40979
|
+
/** Returns response with indentations and line breaks. */
|
|
40980
|
+
prettyPrint?: boolean;
|
|
40981
|
+
/** 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. */
|
|
40982
|
+
quotaUser?: string;
|
|
40983
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40984
|
+
upload_protocol?: string;
|
|
40985
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40986
|
+
uploadType?: string;
|
|
40987
|
+
/** Request body */
|
|
40988
|
+
resource: GoogleCloudAiplatformV1beta1Memory;
|
|
40989
|
+
}): Request<GoogleLongrunningOperation>;
|
|
40990
|
+
create(
|
|
40991
|
+
request: {
|
|
40992
|
+
/** V1 error format. */
|
|
40993
|
+
'$.xgafv'?: string;
|
|
40994
|
+
/** OAuth access token. */
|
|
40995
|
+
access_token?: string;
|
|
40996
|
+
/** Data format for response. */
|
|
40997
|
+
alt?: string;
|
|
40998
|
+
/** JSONP */
|
|
40999
|
+
callback?: string;
|
|
41000
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41001
|
+
fields?: string;
|
|
41002
|
+
/** 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. */
|
|
41003
|
+
key?: string;
|
|
41004
|
+
/** OAuth 2.0 token for the current user. */
|
|
41005
|
+
oauth_token?: string;
|
|
41006
|
+
/** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41007
|
+
parent: string;
|
|
41008
|
+
/** Returns response with indentations and line breaks. */
|
|
41009
|
+
prettyPrint?: boolean;
|
|
41010
|
+
/** 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. */
|
|
41011
|
+
quotaUser?: string;
|
|
41012
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41013
|
+
upload_protocol?: string;
|
|
41014
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41015
|
+
uploadType?: string;
|
|
41016
|
+
},
|
|
41017
|
+
body: GoogleCloudAiplatformV1beta1Memory,
|
|
41018
|
+
): Request<GoogleLongrunningOperation>;
|
|
41019
|
+
/** Delete a Memory. */
|
|
41020
|
+
delete(request?: {
|
|
41021
|
+
/** V1 error format. */
|
|
41022
|
+
'$.xgafv'?: string;
|
|
41023
|
+
/** OAuth access token. */
|
|
41024
|
+
access_token?: string;
|
|
41025
|
+
/** Data format for response. */
|
|
41026
|
+
alt?: string;
|
|
41027
|
+
/** JSONP */
|
|
41028
|
+
callback?: string;
|
|
41029
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41030
|
+
fields?: string;
|
|
41031
|
+
/** 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. */
|
|
41032
|
+
key?: string;
|
|
41033
|
+
/** Required. The resource name of the Memory to delete. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
41034
|
+
name: string;
|
|
41035
|
+
/** OAuth 2.0 token for the current user. */
|
|
41036
|
+
oauth_token?: string;
|
|
41037
|
+
/** Returns response with indentations and line breaks. */
|
|
41038
|
+
prettyPrint?: boolean;
|
|
41039
|
+
/** 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. */
|
|
41040
|
+
quotaUser?: string;
|
|
41041
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41042
|
+
upload_protocol?: string;
|
|
41043
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41044
|
+
uploadType?: string;
|
|
41045
|
+
}): Request<GoogleLongrunningOperation>;
|
|
41046
|
+
/** Generate memories. */
|
|
41047
|
+
generate(request: {
|
|
41048
|
+
/** V1 error format. */
|
|
41049
|
+
'$.xgafv'?: string;
|
|
41050
|
+
/** OAuth access token. */
|
|
41051
|
+
access_token?: string;
|
|
41052
|
+
/** Data format for response. */
|
|
41053
|
+
alt?: string;
|
|
41054
|
+
/** JSONP */
|
|
41055
|
+
callback?: string;
|
|
41056
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41057
|
+
fields?: string;
|
|
41058
|
+
/** 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. */
|
|
41059
|
+
key?: string;
|
|
41060
|
+
/** OAuth 2.0 token for the current user. */
|
|
41061
|
+
oauth_token?: string;
|
|
41062
|
+
/** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41063
|
+
parent: string;
|
|
41064
|
+
/** Returns response with indentations and line breaks. */
|
|
41065
|
+
prettyPrint?: boolean;
|
|
41066
|
+
/** 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. */
|
|
41067
|
+
quotaUser?: string;
|
|
41068
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41069
|
+
upload_protocol?: string;
|
|
41070
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41071
|
+
uploadType?: string;
|
|
41072
|
+
/** Request body */
|
|
41073
|
+
resource: GoogleCloudAiplatformV1beta1GenerateMemoriesRequest;
|
|
41074
|
+
}): Request<GoogleLongrunningOperation>;
|
|
41075
|
+
generate(
|
|
41076
|
+
request: {
|
|
41077
|
+
/** V1 error format. */
|
|
41078
|
+
'$.xgafv'?: string;
|
|
41079
|
+
/** OAuth access token. */
|
|
41080
|
+
access_token?: string;
|
|
41081
|
+
/** Data format for response. */
|
|
41082
|
+
alt?: string;
|
|
41083
|
+
/** JSONP */
|
|
41084
|
+
callback?: string;
|
|
41085
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41086
|
+
fields?: string;
|
|
41087
|
+
/** 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. */
|
|
41088
|
+
key?: string;
|
|
41089
|
+
/** OAuth 2.0 token for the current user. */
|
|
41090
|
+
oauth_token?: string;
|
|
41091
|
+
/** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41092
|
+
parent: string;
|
|
41093
|
+
/** Returns response with indentations and line breaks. */
|
|
41094
|
+
prettyPrint?: boolean;
|
|
41095
|
+
/** 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. */
|
|
41096
|
+
quotaUser?: string;
|
|
41097
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41098
|
+
upload_protocol?: string;
|
|
41099
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41100
|
+
uploadType?: string;
|
|
41101
|
+
},
|
|
41102
|
+
body: GoogleCloudAiplatformV1beta1GenerateMemoriesRequest,
|
|
41103
|
+
): Request<GoogleLongrunningOperation>;
|
|
41104
|
+
/** Get a Memory. */
|
|
41105
|
+
get(request?: {
|
|
41106
|
+
/** V1 error format. */
|
|
41107
|
+
'$.xgafv'?: string;
|
|
41108
|
+
/** OAuth access token. */
|
|
41109
|
+
access_token?: string;
|
|
41110
|
+
/** Data format for response. */
|
|
41111
|
+
alt?: string;
|
|
41112
|
+
/** JSONP */
|
|
41113
|
+
callback?: string;
|
|
41114
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41115
|
+
fields?: string;
|
|
41116
|
+
/** 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. */
|
|
41117
|
+
key?: string;
|
|
41118
|
+
/** Required. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
41119
|
+
name: string;
|
|
41120
|
+
/** OAuth 2.0 token for the current user. */
|
|
41121
|
+
oauth_token?: string;
|
|
41122
|
+
/** Returns response with indentations and line breaks. */
|
|
41123
|
+
prettyPrint?: boolean;
|
|
41124
|
+
/** 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. */
|
|
41125
|
+
quotaUser?: string;
|
|
41126
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41127
|
+
upload_protocol?: string;
|
|
41128
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41129
|
+
uploadType?: string;
|
|
41130
|
+
}): Request<GoogleCloudAiplatformV1beta1Memory>;
|
|
41131
|
+
/** List Memories. */
|
|
41132
|
+
list(request?: {
|
|
41133
|
+
/** V1 error format. */
|
|
41134
|
+
'$.xgafv'?: string;
|
|
41135
|
+
/** OAuth access token. */
|
|
41136
|
+
access_token?: string;
|
|
41137
|
+
/** Data format for response. */
|
|
41138
|
+
alt?: string;
|
|
41139
|
+
/** JSONP */
|
|
41140
|
+
callback?: string;
|
|
41141
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41142
|
+
fields?: string;
|
|
41143
|
+
/** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). Supported fields (equality match only): * `scope` (as a JSON string) */
|
|
41144
|
+
filter?: string;
|
|
41145
|
+
/** 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. */
|
|
41146
|
+
key?: string;
|
|
41147
|
+
/** OAuth 2.0 token for the current user. */
|
|
41148
|
+
oauth_token?: string;
|
|
41149
|
+
/** Optional. The standard list page size. */
|
|
41150
|
+
pageSize?: number;
|
|
41151
|
+
/** Optional. The standard list page token. */
|
|
41152
|
+
pageToken?: string;
|
|
41153
|
+
/** Required. The resource name of the ReasoningEngine to list the Memories under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41154
|
+
parent: string;
|
|
41155
|
+
/** Returns response with indentations and line breaks. */
|
|
41156
|
+
prettyPrint?: boolean;
|
|
41157
|
+
/** 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. */
|
|
41158
|
+
quotaUser?: string;
|
|
41159
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41160
|
+
upload_protocol?: string;
|
|
41161
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41162
|
+
uploadType?: string;
|
|
41163
|
+
}): Request<GoogleCloudAiplatformV1beta1ListMemoriesResponse>;
|
|
41164
|
+
/** Update a Memory. */
|
|
41165
|
+
patch(request: {
|
|
41166
|
+
/** V1 error format. */
|
|
41167
|
+
'$.xgafv'?: string;
|
|
41168
|
+
/** OAuth access token. */
|
|
41169
|
+
access_token?: string;
|
|
41170
|
+
/** Data format for response. */
|
|
41171
|
+
alt?: string;
|
|
41172
|
+
/** JSONP */
|
|
41173
|
+
callback?: string;
|
|
41174
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41175
|
+
fields?: string;
|
|
41176
|
+
/** 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. */
|
|
41177
|
+
key?: string;
|
|
41178
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
41179
|
+
name: string;
|
|
41180
|
+
/** OAuth 2.0 token for the current user. */
|
|
41181
|
+
oauth_token?: string;
|
|
41182
|
+
/** Returns response with indentations and line breaks. */
|
|
41183
|
+
prettyPrint?: boolean;
|
|
41184
|
+
/** 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. */
|
|
41185
|
+
quotaUser?: string;
|
|
41186
|
+
/** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
|
|
41187
|
+
updateMask?: string;
|
|
41188
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41189
|
+
upload_protocol?: string;
|
|
41190
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41191
|
+
uploadType?: string;
|
|
41192
|
+
/** Request body */
|
|
41193
|
+
resource: GoogleCloudAiplatformV1beta1Memory;
|
|
41194
|
+
}): Request<GoogleLongrunningOperation>;
|
|
41195
|
+
patch(
|
|
41196
|
+
request: {
|
|
41197
|
+
/** V1 error format. */
|
|
41198
|
+
'$.xgafv'?: string;
|
|
41199
|
+
/** OAuth access token. */
|
|
41200
|
+
access_token?: string;
|
|
41201
|
+
/** Data format for response. */
|
|
41202
|
+
alt?: string;
|
|
41203
|
+
/** JSONP */
|
|
41204
|
+
callback?: string;
|
|
41205
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41206
|
+
fields?: string;
|
|
41207
|
+
/** 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. */
|
|
41208
|
+
key?: string;
|
|
41209
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
41210
|
+
name: string;
|
|
41211
|
+
/** OAuth 2.0 token for the current user. */
|
|
41212
|
+
oauth_token?: string;
|
|
41213
|
+
/** Returns response with indentations and line breaks. */
|
|
41214
|
+
prettyPrint?: boolean;
|
|
41215
|
+
/** 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. */
|
|
41216
|
+
quotaUser?: string;
|
|
41217
|
+
/** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
|
|
41218
|
+
updateMask?: string;
|
|
41219
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41220
|
+
upload_protocol?: string;
|
|
41221
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41222
|
+
uploadType?: string;
|
|
41223
|
+
},
|
|
41224
|
+
body: GoogleCloudAiplatformV1beta1Memory,
|
|
41225
|
+
): Request<GoogleLongrunningOperation>;
|
|
41226
|
+
/** Retrieve memories. */
|
|
41227
|
+
retrieve(request: {
|
|
41228
|
+
/** V1 error format. */
|
|
41229
|
+
'$.xgafv'?: string;
|
|
41230
|
+
/** OAuth access token. */
|
|
41231
|
+
access_token?: string;
|
|
41232
|
+
/** Data format for response. */
|
|
41233
|
+
alt?: string;
|
|
41234
|
+
/** JSONP */
|
|
41235
|
+
callback?: string;
|
|
41236
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41237
|
+
fields?: string;
|
|
41238
|
+
/** 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. */
|
|
41239
|
+
key?: string;
|
|
41240
|
+
/** OAuth 2.0 token for the current user. */
|
|
41241
|
+
oauth_token?: string;
|
|
41242
|
+
/** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41243
|
+
parent: string;
|
|
41244
|
+
/** Returns response with indentations and line breaks. */
|
|
41245
|
+
prettyPrint?: boolean;
|
|
41246
|
+
/** 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. */
|
|
41247
|
+
quotaUser?: string;
|
|
41248
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41249
|
+
upload_protocol?: string;
|
|
41250
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41251
|
+
uploadType?: string;
|
|
41252
|
+
/** Request body */
|
|
41253
|
+
resource: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest;
|
|
41254
|
+
}): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
41255
|
+
retrieve(
|
|
41256
|
+
request: {
|
|
41257
|
+
/** V1 error format. */
|
|
41258
|
+
'$.xgafv'?: string;
|
|
41259
|
+
/** OAuth access token. */
|
|
41260
|
+
access_token?: string;
|
|
41261
|
+
/** Data format for response. */
|
|
41262
|
+
alt?: string;
|
|
41263
|
+
/** JSONP */
|
|
41264
|
+
callback?: string;
|
|
41265
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41266
|
+
fields?: string;
|
|
41267
|
+
/** 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. */
|
|
41268
|
+
key?: string;
|
|
41269
|
+
/** OAuth 2.0 token for the current user. */
|
|
41270
|
+
oauth_token?: string;
|
|
41271
|
+
/** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41272
|
+
parent: string;
|
|
41273
|
+
/** Returns response with indentations and line breaks. */
|
|
41274
|
+
prettyPrint?: boolean;
|
|
41275
|
+
/** 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. */
|
|
41276
|
+
quotaUser?: string;
|
|
41277
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41278
|
+
upload_protocol?: string;
|
|
41279
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41280
|
+
uploadType?: string;
|
|
41281
|
+
},
|
|
41282
|
+
body: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest,
|
|
41283
|
+
): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
41284
|
+
}
|
|
40111
41285
|
interface EventsResource {
|
|
40112
41286
|
/** Lists Events in a given session. */
|
|
40113
41287
|
list(request?: {
|
|
@@ -40737,6 +41911,7 @@ declare namespace gapi.client {
|
|
|
40737
41911
|
},
|
|
40738
41912
|
body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest,
|
|
40739
41913
|
): Request<GoogleApiHttpBody>;
|
|
41914
|
+
memories: MemoriesResource;
|
|
40740
41915
|
sessions: SessionsResource;
|
|
40741
41916
|
}
|
|
40742
41917
|
|