@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250606 → 0.0.20250625
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 +1154 -7
- 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: 20250625
|
|
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;
|
|
@@ -3170,7 +3170,7 @@ declare namespace gapi.client {
|
|
|
3170
3170
|
operationName?: string;
|
|
3171
3171
|
}
|
|
3172
3172
|
interface GoogleCloudAiplatformV1beta1FileData {
|
|
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
|
|
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. */
|
|
3174
3174
|
displayName?: string;
|
|
3175
3175
|
/** Required. URI. */
|
|
3176
3176
|
fileUri?: string;
|
|
@@ -3451,6 +3451,32 @@ declare namespace gapi.client {
|
|
|
3451
3451
|
/** Output only. Traffic type. This shows whether a request consumes Pay-As-You-Go or Provisioned Throughput quota. */
|
|
3452
3452
|
trafficType?: string;
|
|
3453
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
|
+
}
|
|
3454
3480
|
interface GoogleCloudAiplatformV1beta1GenerateVideoResponse {
|
|
3455
3481
|
/** The cloud storage uris of the generated videos. */
|
|
3456
3482
|
generatedSamples?: string[];
|
|
@@ -3536,7 +3562,7 @@ declare namespace gapi.client {
|
|
|
3536
3562
|
interface GoogleCloudAiplatformV1beta1GenerationConfigThinkingConfig {
|
|
3537
3563
|
/** Optional. Indicates whether to include thoughts in the response. If true, thoughts are returned only when available. */
|
|
3538
3564
|
includeThoughts?: boolean;
|
|
3539
|
-
/** Optional. Indicates the thinking budget in tokens.
|
|
3565
|
+
/** Optional. Indicates the thinking budget in tokens. */
|
|
3540
3566
|
thinkingBudget?: number;
|
|
3541
3567
|
}
|
|
3542
3568
|
interface GoogleCloudAiplatformV1beta1GenericOperationMetadata {
|
|
@@ -3820,6 +3846,8 @@ declare namespace gapi.client {
|
|
|
3820
3846
|
partialFailureGcsSink?: GoogleCloudAiplatformV1beta1GcsDestination;
|
|
3821
3847
|
/** Specifies the size and overlap of chunks after importing RagFiles. */
|
|
3822
3848
|
ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
|
|
3849
|
+
/** Specifies the metadata config for RagFiles. Including paths for metadata schema and metadata. */
|
|
3850
|
+
ragFileMetadataConfig?: GoogleCloudAiplatformV1beta1RagFileMetadataConfig;
|
|
3823
3851
|
/** Optional. Specifies the parsing config for RagFiles. RAG will use the default parser if this field is not set. */
|
|
3824
3852
|
ragFileParsingConfig?: GoogleCloudAiplatformV1beta1RagFileParsingConfig;
|
|
3825
3853
|
/** Specifies the transformation config for RagFiles. */
|
|
@@ -4201,6 +4229,12 @@ declare namespace gapi.client {
|
|
|
4201
4229
|
/** A token to retrieve next page of results. Pass to ListIndexesRequest.page_token to obtain that page. */
|
|
4202
4230
|
nextPageToken?: string;
|
|
4203
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
|
+
}
|
|
4204
4238
|
interface GoogleCloudAiplatformV1beta1ListMetadataSchemasResponse {
|
|
4205
4239
|
/** The MetadataSchemas found for the MetadataStore. */
|
|
4206
4240
|
metadataSchemas?: GoogleCloudAiplatformV1beta1MetadataSchema[];
|
|
@@ -4457,6 +4491,22 @@ declare namespace gapi.client {
|
|
|
4457
4491
|
/** Output only. The value for this metric. */
|
|
4458
4492
|
value?: number;
|
|
4459
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
|
+
}
|
|
4460
4510
|
interface GoogleCloudAiplatformV1beta1MergeVersionAliasesRequest {
|
|
4461
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. */
|
|
4462
4512
|
versionAliases?: string[];
|
|
@@ -4732,7 +4782,7 @@ declare namespace gapi.client {
|
|
|
4732
4782
|
healthRoute?: string;
|
|
4733
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. */
|
|
4734
4784
|
imageUri?: string;
|
|
4735
|
-
/** 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
|
|
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 invoke http call eg: "/invoke/foo/bar", however the [PredictionService.Invoke] RPC is not supported yet. 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. */
|
|
4736
4786
|
invokeRoutePrefix?: string;
|
|
4737
4787
|
/** Immutable. Specification for Kubernetes liveness probe. */
|
|
4738
4788
|
livenessProbe?: GoogleCloudAiplatformV1beta1Probe;
|
|
@@ -6260,6 +6310,8 @@ declare namespace gapi.client {
|
|
|
6260
6310
|
enableSecurePrivateServiceConnect?: boolean;
|
|
6261
6311
|
/** A list of Projects from which the forwarding rule will target the service attachment. */
|
|
6262
6312
|
projectAllowlist?: string[];
|
|
6313
|
+
/** Optional. List of projects and networks where the PSC endpoints will be created. This field is used by Online Inference(Prediction) only. */
|
|
6314
|
+
pscAutomationConfigs?: GoogleCloudAiplatformV1beta1PSCAutomationConfig[];
|
|
6263
6315
|
/** Output only. The name of the generated service attachment resource. This is only populated if the endpoint is deployed with PrivateServiceConnect. */
|
|
6264
6316
|
serviceAttachment?: string;
|
|
6265
6317
|
}
|
|
@@ -6332,7 +6384,7 @@ declare namespace gapi.client {
|
|
|
6332
6384
|
forwardingRule?: string;
|
|
6333
6385
|
/** Output only. IP address rule created by the PSC service automation. */
|
|
6334
6386
|
ipAddress?: string;
|
|
6335
|
-
/** 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/
|
|
6387
|
+
/** 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/get): `projects/{project}/global/networks/{network}`. */
|
|
6336
6388
|
network?: string;
|
|
6337
6389
|
/** Required. Project id used to create forwarding rule. */
|
|
6338
6390
|
projectId?: string;
|
|
@@ -6849,6 +6901,8 @@ declare namespace gapi.client {
|
|
|
6849
6901
|
slackSource?: GoogleCloudAiplatformV1beta1SlackSource;
|
|
6850
6902
|
/** Output only. Timestamp when this RagFile was last updated. */
|
|
6851
6903
|
updateTime?: string;
|
|
6904
|
+
/** Output only. The metadata for metadata search. The user_metadata Needs to be in JSON format. */
|
|
6905
|
+
userMetadata?: string;
|
|
6852
6906
|
}
|
|
6853
6907
|
interface GoogleCloudAiplatformV1beta1RagFileChunkingConfig {
|
|
6854
6908
|
/** The overlap between chunks. */
|
|
@@ -6864,6 +6918,20 @@ declare namespace gapi.client {
|
|
|
6864
6918
|
/** The size of the chunks. */
|
|
6865
6919
|
chunkSize?: number;
|
|
6866
6920
|
}
|
|
6921
|
+
interface GoogleCloudAiplatformV1beta1RagFileMetadataConfig {
|
|
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_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. */
|
|
6923
|
+
gcsMetadataSchemaSource?: GoogleCloudAiplatformV1beta1GcsSource;
|
|
6924
|
+
/** 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. */
|
|
6925
|
+
gcsMetadataSource?: GoogleCloudAiplatformV1beta1GcsSource;
|
|
6926
|
+
/** 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. */
|
|
6927
|
+
googleDriveMetadataSchemaSource?: GoogleCloudAiplatformV1beta1GoogleDriveSource;
|
|
6928
|
+
/** 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. */
|
|
6929
|
+
googleDriveMetadataSource?: GoogleCloudAiplatformV1beta1GoogleDriveSource;
|
|
6930
|
+
/** Inline metadata schema source. Must be a JSON string. */
|
|
6931
|
+
inlineMetadataSchemaSource?: string;
|
|
6932
|
+
/** Inline metadata source. Must be a JSON string. */
|
|
6933
|
+
inlineMetadataSource?: string;
|
|
6934
|
+
}
|
|
6867
6935
|
interface GoogleCloudAiplatformV1beta1RagFileParsingConfig {
|
|
6868
6936
|
/** The Advanced Parser to use for RagFiles. */
|
|
6869
6937
|
advancedParser?: GoogleCloudAiplatformV1beta1RagFileParsingConfigAdvancedParser;
|
|
@@ -6905,9 +6973,15 @@ declare namespace gapi.client {
|
|
|
6905
6973
|
basic?: any;
|
|
6906
6974
|
/** Sets the RagManagedDb to the Enterprise tier. This is the default tier if not explicitly chosen. */
|
|
6907
6975
|
enterprise?: any;
|
|
6976
|
+
/** Sets the RagManagedDb to the Scaled tier. */
|
|
6977
|
+
scaled?: any;
|
|
6978
|
+
/** Sets the RagManagedDb to the Unprovisioned tier. */
|
|
6979
|
+
unprovisioned?: any;
|
|
6908
6980
|
}
|
|
6909
6981
|
interface GoogleCloudAiplatformV1beta1RagManagedDbConfigBasic {}
|
|
6910
6982
|
interface GoogleCloudAiplatformV1beta1RagManagedDbConfigEnterprise {}
|
|
6983
|
+
interface GoogleCloudAiplatformV1beta1RagManagedDbConfigScaled {}
|
|
6984
|
+
interface GoogleCloudAiplatformV1beta1RagManagedDbConfigUnprovisioned {}
|
|
6911
6985
|
interface GoogleCloudAiplatformV1beta1RagQuery {
|
|
6912
6986
|
/** Optional. The retrieval config for the query. */
|
|
6913
6987
|
ragRetrievalConfig?: GoogleCloudAiplatformV1beta1RagRetrievalConfig;
|
|
@@ -7110,6 +7184,8 @@ declare namespace gapi.client {
|
|
|
7110
7184
|
viewCount?: string;
|
|
7111
7185
|
}
|
|
7112
7186
|
interface GoogleCloudAiplatformV1beta1ReasoningEngine {
|
|
7187
|
+
/** Optional. Configuration for how Agent Engine sub-resources should manage context. */
|
|
7188
|
+
contextSpec?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpec;
|
|
7113
7189
|
/** Output only. Timestamp when this ReasoningEngine was created. */
|
|
7114
7190
|
createTime?: string;
|
|
7115
7191
|
/** Optional. The description of the ReasoningEngine. */
|
|
@@ -7125,6 +7201,24 @@ declare namespace gapi.client {
|
|
|
7125
7201
|
/** Output only. Timestamp when this ReasoningEngine was most recently updated. */
|
|
7126
7202
|
updateTime?: string;
|
|
7127
7203
|
}
|
|
7204
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpec {
|
|
7205
|
+
/** Optional. Specification for a Memory Bank, which manages memories for the Agent Engine. */
|
|
7206
|
+
memoryBankConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfig;
|
|
7207
|
+
}
|
|
7208
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfig {
|
|
7209
|
+
/** Optional. Configuration for how to generate memories for the Memory Bank. */
|
|
7210
|
+
generationConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig;
|
|
7211
|
+
/** 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`. */
|
|
7212
|
+
similaritySearchConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig;
|
|
7213
|
+
}
|
|
7214
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig {
|
|
7215
|
+
/** Required. The model used to generate memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}` or `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
|
|
7216
|
+
model?: string;
|
|
7217
|
+
}
|
|
7218
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig {
|
|
7219
|
+
/** 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}`. */
|
|
7220
|
+
embeddingModel?: string;
|
|
7221
|
+
}
|
|
7128
7222
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineSpec {
|
|
7129
7223
|
/** Optional. The OSS agent framework used to develop the agent. Currently supported values: "google-adk", "langchain", "langgraph", "ag2", "llama-index", "custom". */
|
|
7130
7224
|
agentFramework?: string;
|
|
@@ -7310,6 +7404,38 @@ declare namespace gapi.client {
|
|
|
7310
7404
|
/** The contexts of the query. */
|
|
7311
7405
|
contexts?: GoogleCloudAiplatformV1beta1RagContexts;
|
|
7312
7406
|
}
|
|
7407
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest {
|
|
7408
|
+
/** 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. */
|
|
7409
|
+
scope?: {[P in string]: string};
|
|
7410
|
+
/** Parameters for semantic similarity search based retrieval. */
|
|
7411
|
+
similaritySearchParams?: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequestSimilaritySearchParams;
|
|
7412
|
+
/** Parameters for simple (non-similarity search) retrieval. */
|
|
7413
|
+
simpleRetrievalParams?: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequestSimpleRetrievalParams;
|
|
7414
|
+
}
|
|
7415
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesRequestSimilaritySearchParams {
|
|
7416
|
+
/** Required. Query to use for similarity search retrieval. If provided, then the parent ReasoningEngine must have ReasoningEngineContextSpec.MemoryBankConfig.SimilaritySearchConfig set. */
|
|
7417
|
+
searchQuery?: string;
|
|
7418
|
+
/** 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. */
|
|
7419
|
+
topK?: number;
|
|
7420
|
+
}
|
|
7421
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesRequestSimpleRetrievalParams {
|
|
7422
|
+
/** 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. */
|
|
7423
|
+
pageSize?: number;
|
|
7424
|
+
/** Optional. A page token, received from a previous `RetrieveMemories` call. Provide this to retrieve the subsequent page. */
|
|
7425
|
+
pageToken?: string;
|
|
7426
|
+
}
|
|
7427
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse {
|
|
7428
|
+
/** 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. */
|
|
7429
|
+
nextPageToken?: string;
|
|
7430
|
+
/** The retrieved memories. */
|
|
7431
|
+
retrievedMemories?: GoogleCloudAiplatformV1beta1RetrieveMemoriesResponseRetrievedMemory[];
|
|
7432
|
+
}
|
|
7433
|
+
interface GoogleCloudAiplatformV1beta1RetrieveMemoriesResponseRetrievedMemory {
|
|
7434
|
+
/** 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. */
|
|
7435
|
+
distance?: number;
|
|
7436
|
+
/** The retrieved Memory. */
|
|
7437
|
+
memory?: GoogleCloudAiplatformV1beta1Memory;
|
|
7438
|
+
}
|
|
7313
7439
|
interface GoogleCloudAiplatformV1beta1RolloutOptions {
|
|
7314
7440
|
/** Percentage of allowed additional replicas. For autoscaling deployments, this refers to the target replica count. */
|
|
7315
7441
|
maxSurgePercentage?: number;
|
|
@@ -7424,6 +7550,8 @@ declare namespace gapi.client {
|
|
|
7424
7550
|
blocked?: boolean;
|
|
7425
7551
|
/** Output only. Harm category. */
|
|
7426
7552
|
category?: string;
|
|
7553
|
+
/** 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. */
|
|
7554
|
+
overwrittenThreshold?: string;
|
|
7427
7555
|
/** Output only. Harm probability levels in the content. */
|
|
7428
7556
|
probability?: string;
|
|
7429
7557
|
/** Output only. Harm probability score. */
|
|
@@ -9747,7 +9875,7 @@ declare namespace gapi.client {
|
|
|
9747
9875
|
adapterSize?: string;
|
|
9748
9876
|
/** Optional. Number of complete passes the model makes over the entire training dataset during training. */
|
|
9749
9877
|
epochCount?: string;
|
|
9750
|
-
/** Optional. Multiplier for adjusting the default learning rate. */
|
|
9878
|
+
/** Optional. Multiplier for adjusting the default learning rate. Mutually exclusive with `learning_rate`. */
|
|
9751
9879
|
learningRateMultiplier?: number;
|
|
9752
9880
|
}
|
|
9753
9881
|
interface GoogleCloudAiplatformV1beta1SupervisedTuningDatasetDistribution {
|
|
@@ -10564,6 +10692,10 @@ declare namespace gapi.client {
|
|
|
10564
10692
|
interface GoogleCloudAiplatformV1beta1UploadRagFileConfig {
|
|
10565
10693
|
/** Specifies the size and overlap of chunks after uploading RagFile. */
|
|
10566
10694
|
ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
|
|
10695
|
+
/** Specifies the metadata config for RagFiles. Including paths for metadata schema and metadata. Alteratively, inline metadata schema and metadata can be provided. */
|
|
10696
|
+
ragFileMetadataConfig?: GoogleCloudAiplatformV1beta1RagFileMetadataConfig;
|
|
10697
|
+
/** Optional. Specifies the parsing config for RagFiles. RAG will use the default parser if this field is not set. */
|
|
10698
|
+
ragFileParsingConfig?: GoogleCloudAiplatformV1beta1RagFileParsingConfig;
|
|
10567
10699
|
/** Specifies the transformation config for RagFiles. */
|
|
10568
10700
|
ragFileTransformationConfig?: GoogleCloudAiplatformV1beta1RagFileTransformationConfig;
|
|
10569
10701
|
}
|
|
@@ -17178,6 +17310,369 @@ declare namespace gapi.client {
|
|
|
17178
17310
|
uploadType?: string;
|
|
17179
17311
|
}): Request<GoogleLongrunningOperation>;
|
|
17180
17312
|
}
|
|
17313
|
+
interface EvaluationItemsResource {
|
|
17314
|
+
operations: OperationsResource;
|
|
17315
|
+
}
|
|
17316
|
+
interface OperationsResource {
|
|
17317
|
+
/** 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`. */
|
|
17318
|
+
delete(request?: {
|
|
17319
|
+
/** V1 error format. */
|
|
17320
|
+
'$.xgafv'?: string;
|
|
17321
|
+
/** OAuth access token. */
|
|
17322
|
+
access_token?: string;
|
|
17323
|
+
/** Data format for response. */
|
|
17324
|
+
alt?: string;
|
|
17325
|
+
/** JSONP */
|
|
17326
|
+
callback?: string;
|
|
17327
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17328
|
+
fields?: string;
|
|
17329
|
+
/** 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. */
|
|
17330
|
+
key?: string;
|
|
17331
|
+
/** The name of the operation resource to be deleted. */
|
|
17332
|
+
name: string;
|
|
17333
|
+
/** OAuth 2.0 token for the current user. */
|
|
17334
|
+
oauth_token?: string;
|
|
17335
|
+
/** Returns response with indentations and line breaks. */
|
|
17336
|
+
prettyPrint?: boolean;
|
|
17337
|
+
/** 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. */
|
|
17338
|
+
quotaUser?: string;
|
|
17339
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17340
|
+
upload_protocol?: string;
|
|
17341
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17342
|
+
uploadType?: string;
|
|
17343
|
+
}): Request<{}>;
|
|
17344
|
+
/** 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. */
|
|
17345
|
+
get(request?: {
|
|
17346
|
+
/** V1 error format. */
|
|
17347
|
+
'$.xgafv'?: string;
|
|
17348
|
+
/** OAuth access token. */
|
|
17349
|
+
access_token?: string;
|
|
17350
|
+
/** Data format for response. */
|
|
17351
|
+
alt?: string;
|
|
17352
|
+
/** JSONP */
|
|
17353
|
+
callback?: string;
|
|
17354
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17355
|
+
fields?: string;
|
|
17356
|
+
/** 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. */
|
|
17357
|
+
key?: string;
|
|
17358
|
+
/** The name of the operation resource. */
|
|
17359
|
+
name: string;
|
|
17360
|
+
/** OAuth 2.0 token for the current user. */
|
|
17361
|
+
oauth_token?: string;
|
|
17362
|
+
/** Returns response with indentations and line breaks. */
|
|
17363
|
+
prettyPrint?: boolean;
|
|
17364
|
+
/** 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. */
|
|
17365
|
+
quotaUser?: string;
|
|
17366
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17367
|
+
upload_protocol?: string;
|
|
17368
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17369
|
+
uploadType?: string;
|
|
17370
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17371
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
17372
|
+
list(request?: {
|
|
17373
|
+
/** V1 error format. */
|
|
17374
|
+
'$.xgafv'?: string;
|
|
17375
|
+
/** OAuth access token. */
|
|
17376
|
+
access_token?: string;
|
|
17377
|
+
/** Data format for response. */
|
|
17378
|
+
alt?: string;
|
|
17379
|
+
/** JSONP */
|
|
17380
|
+
callback?: string;
|
|
17381
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17382
|
+
fields?: string;
|
|
17383
|
+
/** The standard list filter. */
|
|
17384
|
+
filter?: string;
|
|
17385
|
+
/** 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. */
|
|
17386
|
+
key?: string;
|
|
17387
|
+
/** The name of the operation's parent resource. */
|
|
17388
|
+
name: string;
|
|
17389
|
+
/** OAuth 2.0 token for the current user. */
|
|
17390
|
+
oauth_token?: string;
|
|
17391
|
+
/** The standard list page size. */
|
|
17392
|
+
pageSize?: number;
|
|
17393
|
+
/** The standard list page token. */
|
|
17394
|
+
pageToken?: string;
|
|
17395
|
+
/** Returns response with indentations and line breaks. */
|
|
17396
|
+
prettyPrint?: boolean;
|
|
17397
|
+
/** 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. */
|
|
17398
|
+
quotaUser?: string;
|
|
17399
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17400
|
+
upload_protocol?: string;
|
|
17401
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17402
|
+
uploadType?: string;
|
|
17403
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
17404
|
+
/** 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. */
|
|
17405
|
+
wait(request?: {
|
|
17406
|
+
/** V1 error format. */
|
|
17407
|
+
'$.xgafv'?: string;
|
|
17408
|
+
/** OAuth access token. */
|
|
17409
|
+
access_token?: string;
|
|
17410
|
+
/** Data format for response. */
|
|
17411
|
+
alt?: string;
|
|
17412
|
+
/** JSONP */
|
|
17413
|
+
callback?: string;
|
|
17414
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17415
|
+
fields?: string;
|
|
17416
|
+
/** 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. */
|
|
17417
|
+
key?: string;
|
|
17418
|
+
/** The name of the operation resource to wait on. */
|
|
17419
|
+
name: string;
|
|
17420
|
+
/** OAuth 2.0 token for the current user. */
|
|
17421
|
+
oauth_token?: string;
|
|
17422
|
+
/** Returns response with indentations and line breaks. */
|
|
17423
|
+
prettyPrint?: boolean;
|
|
17424
|
+
/** 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. */
|
|
17425
|
+
quotaUser?: string;
|
|
17426
|
+
/** 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. */
|
|
17427
|
+
timeout?: string;
|
|
17428
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17429
|
+
upload_protocol?: string;
|
|
17430
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17431
|
+
uploadType?: string;
|
|
17432
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17433
|
+
}
|
|
17434
|
+
interface EvaluationRunsResource {
|
|
17435
|
+
operations: OperationsResource;
|
|
17436
|
+
}
|
|
17437
|
+
interface OperationsResource {
|
|
17438
|
+
/** 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`. */
|
|
17439
|
+
delete(request?: {
|
|
17440
|
+
/** V1 error format. */
|
|
17441
|
+
'$.xgafv'?: string;
|
|
17442
|
+
/** OAuth access token. */
|
|
17443
|
+
access_token?: string;
|
|
17444
|
+
/** Data format for response. */
|
|
17445
|
+
alt?: string;
|
|
17446
|
+
/** JSONP */
|
|
17447
|
+
callback?: string;
|
|
17448
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17449
|
+
fields?: string;
|
|
17450
|
+
/** 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. */
|
|
17451
|
+
key?: string;
|
|
17452
|
+
/** The name of the operation resource to be deleted. */
|
|
17453
|
+
name: string;
|
|
17454
|
+
/** OAuth 2.0 token for the current user. */
|
|
17455
|
+
oauth_token?: string;
|
|
17456
|
+
/** Returns response with indentations and line breaks. */
|
|
17457
|
+
prettyPrint?: boolean;
|
|
17458
|
+
/** 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. */
|
|
17459
|
+
quotaUser?: string;
|
|
17460
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17461
|
+
upload_protocol?: string;
|
|
17462
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17463
|
+
uploadType?: string;
|
|
17464
|
+
}): Request<{}>;
|
|
17465
|
+
/** 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. */
|
|
17466
|
+
get(request?: {
|
|
17467
|
+
/** V1 error format. */
|
|
17468
|
+
'$.xgafv'?: string;
|
|
17469
|
+
/** OAuth access token. */
|
|
17470
|
+
access_token?: string;
|
|
17471
|
+
/** Data format for response. */
|
|
17472
|
+
alt?: string;
|
|
17473
|
+
/** JSONP */
|
|
17474
|
+
callback?: string;
|
|
17475
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17476
|
+
fields?: string;
|
|
17477
|
+
/** 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. */
|
|
17478
|
+
key?: string;
|
|
17479
|
+
/** The name of the operation resource. */
|
|
17480
|
+
name: string;
|
|
17481
|
+
/** OAuth 2.0 token for the current user. */
|
|
17482
|
+
oauth_token?: string;
|
|
17483
|
+
/** Returns response with indentations and line breaks. */
|
|
17484
|
+
prettyPrint?: boolean;
|
|
17485
|
+
/** 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. */
|
|
17486
|
+
quotaUser?: string;
|
|
17487
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17488
|
+
upload_protocol?: string;
|
|
17489
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17490
|
+
uploadType?: string;
|
|
17491
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17492
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
17493
|
+
list(request?: {
|
|
17494
|
+
/** V1 error format. */
|
|
17495
|
+
'$.xgafv'?: string;
|
|
17496
|
+
/** OAuth access token. */
|
|
17497
|
+
access_token?: string;
|
|
17498
|
+
/** Data format for response. */
|
|
17499
|
+
alt?: string;
|
|
17500
|
+
/** JSONP */
|
|
17501
|
+
callback?: string;
|
|
17502
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17503
|
+
fields?: string;
|
|
17504
|
+
/** The standard list filter. */
|
|
17505
|
+
filter?: string;
|
|
17506
|
+
/** 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. */
|
|
17507
|
+
key?: string;
|
|
17508
|
+
/** The name of the operation's parent resource. */
|
|
17509
|
+
name: string;
|
|
17510
|
+
/** OAuth 2.0 token for the current user. */
|
|
17511
|
+
oauth_token?: string;
|
|
17512
|
+
/** The standard list page size. */
|
|
17513
|
+
pageSize?: number;
|
|
17514
|
+
/** The standard list page token. */
|
|
17515
|
+
pageToken?: string;
|
|
17516
|
+
/** Returns response with indentations and line breaks. */
|
|
17517
|
+
prettyPrint?: boolean;
|
|
17518
|
+
/** 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. */
|
|
17519
|
+
quotaUser?: string;
|
|
17520
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17521
|
+
upload_protocol?: string;
|
|
17522
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17523
|
+
uploadType?: string;
|
|
17524
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
17525
|
+
/** 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. */
|
|
17526
|
+
wait(request?: {
|
|
17527
|
+
/** V1 error format. */
|
|
17528
|
+
'$.xgafv'?: string;
|
|
17529
|
+
/** OAuth access token. */
|
|
17530
|
+
access_token?: string;
|
|
17531
|
+
/** Data format for response. */
|
|
17532
|
+
alt?: string;
|
|
17533
|
+
/** JSONP */
|
|
17534
|
+
callback?: string;
|
|
17535
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17536
|
+
fields?: string;
|
|
17537
|
+
/** 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. */
|
|
17538
|
+
key?: string;
|
|
17539
|
+
/** The name of the operation resource to wait on. */
|
|
17540
|
+
name: string;
|
|
17541
|
+
/** OAuth 2.0 token for the current user. */
|
|
17542
|
+
oauth_token?: string;
|
|
17543
|
+
/** Returns response with indentations and line breaks. */
|
|
17544
|
+
prettyPrint?: boolean;
|
|
17545
|
+
/** 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. */
|
|
17546
|
+
quotaUser?: string;
|
|
17547
|
+
/** 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. */
|
|
17548
|
+
timeout?: string;
|
|
17549
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17550
|
+
upload_protocol?: string;
|
|
17551
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17552
|
+
uploadType?: string;
|
|
17553
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17554
|
+
}
|
|
17555
|
+
interface EvaluationSetsResource {
|
|
17556
|
+
operations: OperationsResource;
|
|
17557
|
+
}
|
|
17558
|
+
interface OperationsResource {
|
|
17559
|
+
/** 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`. */
|
|
17560
|
+
delete(request?: {
|
|
17561
|
+
/** V1 error format. */
|
|
17562
|
+
'$.xgafv'?: string;
|
|
17563
|
+
/** OAuth access token. */
|
|
17564
|
+
access_token?: string;
|
|
17565
|
+
/** Data format for response. */
|
|
17566
|
+
alt?: string;
|
|
17567
|
+
/** JSONP */
|
|
17568
|
+
callback?: string;
|
|
17569
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17570
|
+
fields?: string;
|
|
17571
|
+
/** 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. */
|
|
17572
|
+
key?: string;
|
|
17573
|
+
/** The name of the operation resource to be deleted. */
|
|
17574
|
+
name: string;
|
|
17575
|
+
/** OAuth 2.0 token for the current user. */
|
|
17576
|
+
oauth_token?: string;
|
|
17577
|
+
/** Returns response with indentations and line breaks. */
|
|
17578
|
+
prettyPrint?: boolean;
|
|
17579
|
+
/** 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. */
|
|
17580
|
+
quotaUser?: string;
|
|
17581
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17582
|
+
upload_protocol?: string;
|
|
17583
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17584
|
+
uploadType?: string;
|
|
17585
|
+
}): Request<{}>;
|
|
17586
|
+
/** 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. */
|
|
17587
|
+
get(request?: {
|
|
17588
|
+
/** V1 error format. */
|
|
17589
|
+
'$.xgafv'?: string;
|
|
17590
|
+
/** OAuth access token. */
|
|
17591
|
+
access_token?: string;
|
|
17592
|
+
/** Data format for response. */
|
|
17593
|
+
alt?: string;
|
|
17594
|
+
/** JSONP */
|
|
17595
|
+
callback?: string;
|
|
17596
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17597
|
+
fields?: string;
|
|
17598
|
+
/** 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. */
|
|
17599
|
+
key?: string;
|
|
17600
|
+
/** The name of the operation resource. */
|
|
17601
|
+
name: string;
|
|
17602
|
+
/** OAuth 2.0 token for the current user. */
|
|
17603
|
+
oauth_token?: string;
|
|
17604
|
+
/** Returns response with indentations and line breaks. */
|
|
17605
|
+
prettyPrint?: boolean;
|
|
17606
|
+
/** 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. */
|
|
17607
|
+
quotaUser?: string;
|
|
17608
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17609
|
+
upload_protocol?: string;
|
|
17610
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17611
|
+
uploadType?: string;
|
|
17612
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17613
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
17614
|
+
list(request?: {
|
|
17615
|
+
/** V1 error format. */
|
|
17616
|
+
'$.xgafv'?: string;
|
|
17617
|
+
/** OAuth access token. */
|
|
17618
|
+
access_token?: string;
|
|
17619
|
+
/** Data format for response. */
|
|
17620
|
+
alt?: string;
|
|
17621
|
+
/** JSONP */
|
|
17622
|
+
callback?: string;
|
|
17623
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17624
|
+
fields?: string;
|
|
17625
|
+
/** The standard list filter. */
|
|
17626
|
+
filter?: string;
|
|
17627
|
+
/** 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. */
|
|
17628
|
+
key?: string;
|
|
17629
|
+
/** The name of the operation's parent resource. */
|
|
17630
|
+
name: string;
|
|
17631
|
+
/** OAuth 2.0 token for the current user. */
|
|
17632
|
+
oauth_token?: string;
|
|
17633
|
+
/** The standard list page size. */
|
|
17634
|
+
pageSize?: number;
|
|
17635
|
+
/** The standard list page token. */
|
|
17636
|
+
pageToken?: string;
|
|
17637
|
+
/** Returns response with indentations and line breaks. */
|
|
17638
|
+
prettyPrint?: boolean;
|
|
17639
|
+
/** 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. */
|
|
17640
|
+
quotaUser?: string;
|
|
17641
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17642
|
+
upload_protocol?: string;
|
|
17643
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17644
|
+
uploadType?: string;
|
|
17645
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
17646
|
+
/** 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. */
|
|
17647
|
+
wait(request?: {
|
|
17648
|
+
/** V1 error format. */
|
|
17649
|
+
'$.xgafv'?: string;
|
|
17650
|
+
/** OAuth access token. */
|
|
17651
|
+
access_token?: string;
|
|
17652
|
+
/** Data format for response. */
|
|
17653
|
+
alt?: string;
|
|
17654
|
+
/** JSONP */
|
|
17655
|
+
callback?: string;
|
|
17656
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17657
|
+
fields?: string;
|
|
17658
|
+
/** 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. */
|
|
17659
|
+
key?: string;
|
|
17660
|
+
/** The name of the operation resource to wait on. */
|
|
17661
|
+
name: string;
|
|
17662
|
+
/** OAuth 2.0 token for the current user. */
|
|
17663
|
+
oauth_token?: string;
|
|
17664
|
+
/** Returns response with indentations and line breaks. */
|
|
17665
|
+
prettyPrint?: boolean;
|
|
17666
|
+
/** 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. */
|
|
17667
|
+
quotaUser?: string;
|
|
17668
|
+
/** 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. */
|
|
17669
|
+
timeout?: string;
|
|
17670
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17671
|
+
upload_protocol?: string;
|
|
17672
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17673
|
+
uploadType?: string;
|
|
17674
|
+
}): Request<GoogleLongrunningOperation>;
|
|
17675
|
+
}
|
|
17181
17676
|
interface EvaluationTasksResource {
|
|
17182
17677
|
operations: OperationsResource;
|
|
17183
17678
|
}
|
|
@@ -33355,6 +33850,329 @@ declare namespace gapi.client {
|
|
|
33355
33850
|
}): Request<GoogleLongrunningOperation>;
|
|
33356
33851
|
}
|
|
33357
33852
|
interface MemoriesResource {
|
|
33853
|
+
/** Create a Memory. */
|
|
33854
|
+
create(request: {
|
|
33855
|
+
/** V1 error format. */
|
|
33856
|
+
'$.xgafv'?: string;
|
|
33857
|
+
/** OAuth access token. */
|
|
33858
|
+
access_token?: string;
|
|
33859
|
+
/** Data format for response. */
|
|
33860
|
+
alt?: string;
|
|
33861
|
+
/** JSONP */
|
|
33862
|
+
callback?: string;
|
|
33863
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33864
|
+
fields?: string;
|
|
33865
|
+
/** 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. */
|
|
33866
|
+
key?: string;
|
|
33867
|
+
/** OAuth 2.0 token for the current user. */
|
|
33868
|
+
oauth_token?: string;
|
|
33869
|
+
/** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33870
|
+
parent: string;
|
|
33871
|
+
/** Returns response with indentations and line breaks. */
|
|
33872
|
+
prettyPrint?: boolean;
|
|
33873
|
+
/** 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. */
|
|
33874
|
+
quotaUser?: string;
|
|
33875
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33876
|
+
upload_protocol?: string;
|
|
33877
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33878
|
+
uploadType?: string;
|
|
33879
|
+
/** Request body */
|
|
33880
|
+
resource: GoogleCloudAiplatformV1beta1Memory;
|
|
33881
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33882
|
+
create(
|
|
33883
|
+
request: {
|
|
33884
|
+
/** V1 error format. */
|
|
33885
|
+
'$.xgafv'?: string;
|
|
33886
|
+
/** OAuth access token. */
|
|
33887
|
+
access_token?: string;
|
|
33888
|
+
/** Data format for response. */
|
|
33889
|
+
alt?: string;
|
|
33890
|
+
/** JSONP */
|
|
33891
|
+
callback?: string;
|
|
33892
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33893
|
+
fields?: string;
|
|
33894
|
+
/** 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. */
|
|
33895
|
+
key?: string;
|
|
33896
|
+
/** OAuth 2.0 token for the current user. */
|
|
33897
|
+
oauth_token?: string;
|
|
33898
|
+
/** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33899
|
+
parent: string;
|
|
33900
|
+
/** Returns response with indentations and line breaks. */
|
|
33901
|
+
prettyPrint?: boolean;
|
|
33902
|
+
/** 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. */
|
|
33903
|
+
quotaUser?: string;
|
|
33904
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33905
|
+
upload_protocol?: string;
|
|
33906
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33907
|
+
uploadType?: string;
|
|
33908
|
+
},
|
|
33909
|
+
body: GoogleCloudAiplatformV1beta1Memory,
|
|
33910
|
+
): Request<GoogleLongrunningOperation>;
|
|
33911
|
+
/** Delete a Memory. */
|
|
33912
|
+
delete(request?: {
|
|
33913
|
+
/** V1 error format. */
|
|
33914
|
+
'$.xgafv'?: string;
|
|
33915
|
+
/** OAuth access token. */
|
|
33916
|
+
access_token?: string;
|
|
33917
|
+
/** Data format for response. */
|
|
33918
|
+
alt?: string;
|
|
33919
|
+
/** JSONP */
|
|
33920
|
+
callback?: string;
|
|
33921
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33922
|
+
fields?: string;
|
|
33923
|
+
/** 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. */
|
|
33924
|
+
key?: string;
|
|
33925
|
+
/** Required. The resource name of the Memory to delete. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
33926
|
+
name: string;
|
|
33927
|
+
/** OAuth 2.0 token for the current user. */
|
|
33928
|
+
oauth_token?: string;
|
|
33929
|
+
/** Returns response with indentations and line breaks. */
|
|
33930
|
+
prettyPrint?: boolean;
|
|
33931
|
+
/** 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. */
|
|
33932
|
+
quotaUser?: string;
|
|
33933
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33934
|
+
upload_protocol?: string;
|
|
33935
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33936
|
+
uploadType?: string;
|
|
33937
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33938
|
+
/** Generate memories. */
|
|
33939
|
+
generate(request: {
|
|
33940
|
+
/** V1 error format. */
|
|
33941
|
+
'$.xgafv'?: string;
|
|
33942
|
+
/** OAuth access token. */
|
|
33943
|
+
access_token?: string;
|
|
33944
|
+
/** Data format for response. */
|
|
33945
|
+
alt?: string;
|
|
33946
|
+
/** JSONP */
|
|
33947
|
+
callback?: string;
|
|
33948
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33949
|
+
fields?: string;
|
|
33950
|
+
/** 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. */
|
|
33951
|
+
key?: string;
|
|
33952
|
+
/** OAuth 2.0 token for the current user. */
|
|
33953
|
+
oauth_token?: string;
|
|
33954
|
+
/** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33955
|
+
parent: string;
|
|
33956
|
+
/** Returns response with indentations and line breaks. */
|
|
33957
|
+
prettyPrint?: boolean;
|
|
33958
|
+
/** 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. */
|
|
33959
|
+
quotaUser?: string;
|
|
33960
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33961
|
+
upload_protocol?: string;
|
|
33962
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33963
|
+
uploadType?: string;
|
|
33964
|
+
/** Request body */
|
|
33965
|
+
resource: GoogleCloudAiplatformV1beta1GenerateMemoriesRequest;
|
|
33966
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33967
|
+
generate(
|
|
33968
|
+
request: {
|
|
33969
|
+
/** V1 error format. */
|
|
33970
|
+
'$.xgafv'?: string;
|
|
33971
|
+
/** OAuth access token. */
|
|
33972
|
+
access_token?: string;
|
|
33973
|
+
/** Data format for response. */
|
|
33974
|
+
alt?: string;
|
|
33975
|
+
/** JSONP */
|
|
33976
|
+
callback?: string;
|
|
33977
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33978
|
+
fields?: string;
|
|
33979
|
+
/** 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. */
|
|
33980
|
+
key?: string;
|
|
33981
|
+
/** OAuth 2.0 token for the current user. */
|
|
33982
|
+
oauth_token?: string;
|
|
33983
|
+
/** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33984
|
+
parent: string;
|
|
33985
|
+
/** Returns response with indentations and line breaks. */
|
|
33986
|
+
prettyPrint?: boolean;
|
|
33987
|
+
/** 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. */
|
|
33988
|
+
quotaUser?: string;
|
|
33989
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33990
|
+
upload_protocol?: string;
|
|
33991
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33992
|
+
uploadType?: string;
|
|
33993
|
+
},
|
|
33994
|
+
body: GoogleCloudAiplatformV1beta1GenerateMemoriesRequest,
|
|
33995
|
+
): Request<GoogleLongrunningOperation>;
|
|
33996
|
+
/** Get a Memory. */
|
|
33997
|
+
get(request?: {
|
|
33998
|
+
/** V1 error format. */
|
|
33999
|
+
'$.xgafv'?: string;
|
|
34000
|
+
/** OAuth access token. */
|
|
34001
|
+
access_token?: string;
|
|
34002
|
+
/** Data format for response. */
|
|
34003
|
+
alt?: string;
|
|
34004
|
+
/** JSONP */
|
|
34005
|
+
callback?: string;
|
|
34006
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34007
|
+
fields?: string;
|
|
34008
|
+
/** 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. */
|
|
34009
|
+
key?: string;
|
|
34010
|
+
/** Required. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
34011
|
+
name: string;
|
|
34012
|
+
/** OAuth 2.0 token for the current user. */
|
|
34013
|
+
oauth_token?: string;
|
|
34014
|
+
/** Returns response with indentations and line breaks. */
|
|
34015
|
+
prettyPrint?: boolean;
|
|
34016
|
+
/** 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. */
|
|
34017
|
+
quotaUser?: string;
|
|
34018
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34019
|
+
upload_protocol?: string;
|
|
34020
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34021
|
+
uploadType?: string;
|
|
34022
|
+
}): Request<GoogleCloudAiplatformV1beta1Memory>;
|
|
34023
|
+
/** List Memories. */
|
|
34024
|
+
list(request?: {
|
|
34025
|
+
/** V1 error format. */
|
|
34026
|
+
'$.xgafv'?: string;
|
|
34027
|
+
/** OAuth access token. */
|
|
34028
|
+
access_token?: string;
|
|
34029
|
+
/** Data format for response. */
|
|
34030
|
+
alt?: string;
|
|
34031
|
+
/** JSONP */
|
|
34032
|
+
callback?: string;
|
|
34033
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34034
|
+
fields?: string;
|
|
34035
|
+
/** 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) */
|
|
34036
|
+
filter?: string;
|
|
34037
|
+
/** 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. */
|
|
34038
|
+
key?: string;
|
|
34039
|
+
/** OAuth 2.0 token for the current user. */
|
|
34040
|
+
oauth_token?: string;
|
|
34041
|
+
/** Optional. The standard list page size. */
|
|
34042
|
+
pageSize?: number;
|
|
34043
|
+
/** Optional. The standard list page token. */
|
|
34044
|
+
pageToken?: string;
|
|
34045
|
+
/** Required. The resource name of the ReasoningEngine to list the Memories under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
34046
|
+
parent: string;
|
|
34047
|
+
/** Returns response with indentations and line breaks. */
|
|
34048
|
+
prettyPrint?: boolean;
|
|
34049
|
+
/** 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. */
|
|
34050
|
+
quotaUser?: string;
|
|
34051
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34052
|
+
upload_protocol?: string;
|
|
34053
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34054
|
+
uploadType?: string;
|
|
34055
|
+
}): Request<GoogleCloudAiplatformV1beta1ListMemoriesResponse>;
|
|
34056
|
+
/** Update a Memory. */
|
|
34057
|
+
patch(request: {
|
|
34058
|
+
/** V1 error format. */
|
|
34059
|
+
'$.xgafv'?: string;
|
|
34060
|
+
/** OAuth access token. */
|
|
34061
|
+
access_token?: string;
|
|
34062
|
+
/** Data format for response. */
|
|
34063
|
+
alt?: string;
|
|
34064
|
+
/** JSONP */
|
|
34065
|
+
callback?: string;
|
|
34066
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34067
|
+
fields?: string;
|
|
34068
|
+
/** 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. */
|
|
34069
|
+
key?: string;
|
|
34070
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
34071
|
+
name: string;
|
|
34072
|
+
/** OAuth 2.0 token for the current user. */
|
|
34073
|
+
oauth_token?: string;
|
|
34074
|
+
/** Returns response with indentations and line breaks. */
|
|
34075
|
+
prettyPrint?: boolean;
|
|
34076
|
+
/** 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. */
|
|
34077
|
+
quotaUser?: string;
|
|
34078
|
+
/** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
|
|
34079
|
+
updateMask?: string;
|
|
34080
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34081
|
+
upload_protocol?: string;
|
|
34082
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34083
|
+
uploadType?: string;
|
|
34084
|
+
/** Request body */
|
|
34085
|
+
resource: GoogleCloudAiplatformV1beta1Memory;
|
|
34086
|
+
}): Request<GoogleLongrunningOperation>;
|
|
34087
|
+
patch(
|
|
34088
|
+
request: {
|
|
34089
|
+
/** V1 error format. */
|
|
34090
|
+
'$.xgafv'?: string;
|
|
34091
|
+
/** OAuth access token. */
|
|
34092
|
+
access_token?: string;
|
|
34093
|
+
/** Data format for response. */
|
|
34094
|
+
alt?: string;
|
|
34095
|
+
/** JSONP */
|
|
34096
|
+
callback?: string;
|
|
34097
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34098
|
+
fields?: string;
|
|
34099
|
+
/** 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. */
|
|
34100
|
+
key?: string;
|
|
34101
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
34102
|
+
name: string;
|
|
34103
|
+
/** OAuth 2.0 token for the current user. */
|
|
34104
|
+
oauth_token?: string;
|
|
34105
|
+
/** Returns response with indentations and line breaks. */
|
|
34106
|
+
prettyPrint?: boolean;
|
|
34107
|
+
/** 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. */
|
|
34108
|
+
quotaUser?: string;
|
|
34109
|
+
/** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
|
|
34110
|
+
updateMask?: string;
|
|
34111
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34112
|
+
upload_protocol?: string;
|
|
34113
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34114
|
+
uploadType?: string;
|
|
34115
|
+
},
|
|
34116
|
+
body: GoogleCloudAiplatformV1beta1Memory,
|
|
34117
|
+
): Request<GoogleLongrunningOperation>;
|
|
34118
|
+
/** Retrieve memories. */
|
|
34119
|
+
retrieve(request: {
|
|
34120
|
+
/** V1 error format. */
|
|
34121
|
+
'$.xgafv'?: string;
|
|
34122
|
+
/** OAuth access token. */
|
|
34123
|
+
access_token?: string;
|
|
34124
|
+
/** Data format for response. */
|
|
34125
|
+
alt?: string;
|
|
34126
|
+
/** JSONP */
|
|
34127
|
+
callback?: string;
|
|
34128
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34129
|
+
fields?: string;
|
|
34130
|
+
/** 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. */
|
|
34131
|
+
key?: string;
|
|
34132
|
+
/** OAuth 2.0 token for the current user. */
|
|
34133
|
+
oauth_token?: string;
|
|
34134
|
+
/** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
34135
|
+
parent: string;
|
|
34136
|
+
/** Returns response with indentations and line breaks. */
|
|
34137
|
+
prettyPrint?: boolean;
|
|
34138
|
+
/** 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. */
|
|
34139
|
+
quotaUser?: string;
|
|
34140
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34141
|
+
upload_protocol?: string;
|
|
34142
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34143
|
+
uploadType?: string;
|
|
34144
|
+
/** Request body */
|
|
34145
|
+
resource: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest;
|
|
34146
|
+
}): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
34147
|
+
retrieve(
|
|
34148
|
+
request: {
|
|
34149
|
+
/** V1 error format. */
|
|
34150
|
+
'$.xgafv'?: string;
|
|
34151
|
+
/** OAuth access token. */
|
|
34152
|
+
access_token?: string;
|
|
34153
|
+
/** Data format for response. */
|
|
34154
|
+
alt?: string;
|
|
34155
|
+
/** JSONP */
|
|
34156
|
+
callback?: string;
|
|
34157
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34158
|
+
fields?: string;
|
|
34159
|
+
/** 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. */
|
|
34160
|
+
key?: string;
|
|
34161
|
+
/** OAuth 2.0 token for the current user. */
|
|
34162
|
+
oauth_token?: string;
|
|
34163
|
+
/** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
34164
|
+
parent: string;
|
|
34165
|
+
/** Returns response with indentations and line breaks. */
|
|
34166
|
+
prettyPrint?: boolean;
|
|
34167
|
+
/** 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. */
|
|
34168
|
+
quotaUser?: string;
|
|
34169
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34170
|
+
upload_protocol?: string;
|
|
34171
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34172
|
+
uploadType?: string;
|
|
34173
|
+
},
|
|
34174
|
+
body: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest,
|
|
34175
|
+
): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
33358
34176
|
operations: OperationsResource;
|
|
33359
34177
|
}
|
|
33360
34178
|
interface OperationsResource {
|
|
@@ -39409,6 +40227,9 @@ declare namespace gapi.client {
|
|
|
39409
40227
|
deploymentResourcePools: DeploymentResourcePoolsResource;
|
|
39410
40228
|
edgeDevices: EdgeDevicesResource;
|
|
39411
40229
|
endpoints: EndpointsResource;
|
|
40230
|
+
evaluationItems: EvaluationItemsResource;
|
|
40231
|
+
evaluationRuns: EvaluationRunsResource;
|
|
40232
|
+
evaluationSets: EvaluationSetsResource;
|
|
39412
40233
|
evaluationTasks: EvaluationTasksResource;
|
|
39413
40234
|
exampleStores: ExampleStoresResource;
|
|
39414
40235
|
extensionControllers: ExtensionControllersResource;
|
|
@@ -40138,6 +40959,331 @@ declare namespace gapi.client {
|
|
|
40138
40959
|
interface PublishersResource {
|
|
40139
40960
|
models: ModelsResource;
|
|
40140
40961
|
}
|
|
40962
|
+
interface MemoriesResource {
|
|
40963
|
+
/** Create a Memory. */
|
|
40964
|
+
create(request: {
|
|
40965
|
+
/** V1 error format. */
|
|
40966
|
+
'$.xgafv'?: string;
|
|
40967
|
+
/** OAuth access token. */
|
|
40968
|
+
access_token?: string;
|
|
40969
|
+
/** Data format for response. */
|
|
40970
|
+
alt?: string;
|
|
40971
|
+
/** JSONP */
|
|
40972
|
+
callback?: string;
|
|
40973
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40974
|
+
fields?: string;
|
|
40975
|
+
/** 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. */
|
|
40976
|
+
key?: string;
|
|
40977
|
+
/** OAuth 2.0 token for the current user. */
|
|
40978
|
+
oauth_token?: string;
|
|
40979
|
+
/** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40980
|
+
parent: string;
|
|
40981
|
+
/** Returns response with indentations and line breaks. */
|
|
40982
|
+
prettyPrint?: boolean;
|
|
40983
|
+
/** 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. */
|
|
40984
|
+
quotaUser?: string;
|
|
40985
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40986
|
+
upload_protocol?: string;
|
|
40987
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40988
|
+
uploadType?: string;
|
|
40989
|
+
/** Request body */
|
|
40990
|
+
resource: GoogleCloudAiplatformV1beta1Memory;
|
|
40991
|
+
}): Request<GoogleLongrunningOperation>;
|
|
40992
|
+
create(
|
|
40993
|
+
request: {
|
|
40994
|
+
/** V1 error format. */
|
|
40995
|
+
'$.xgafv'?: string;
|
|
40996
|
+
/** OAuth access token. */
|
|
40997
|
+
access_token?: string;
|
|
40998
|
+
/** Data format for response. */
|
|
40999
|
+
alt?: string;
|
|
41000
|
+
/** JSONP */
|
|
41001
|
+
callback?: string;
|
|
41002
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41003
|
+
fields?: string;
|
|
41004
|
+
/** 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. */
|
|
41005
|
+
key?: string;
|
|
41006
|
+
/** OAuth 2.0 token for the current user. */
|
|
41007
|
+
oauth_token?: string;
|
|
41008
|
+
/** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41009
|
+
parent: string;
|
|
41010
|
+
/** Returns response with indentations and line breaks. */
|
|
41011
|
+
prettyPrint?: boolean;
|
|
41012
|
+
/** 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. */
|
|
41013
|
+
quotaUser?: string;
|
|
41014
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41015
|
+
upload_protocol?: string;
|
|
41016
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41017
|
+
uploadType?: string;
|
|
41018
|
+
},
|
|
41019
|
+
body: GoogleCloudAiplatformV1beta1Memory,
|
|
41020
|
+
): Request<GoogleLongrunningOperation>;
|
|
41021
|
+
/** Delete a Memory. */
|
|
41022
|
+
delete(request?: {
|
|
41023
|
+
/** V1 error format. */
|
|
41024
|
+
'$.xgafv'?: string;
|
|
41025
|
+
/** OAuth access token. */
|
|
41026
|
+
access_token?: string;
|
|
41027
|
+
/** Data format for response. */
|
|
41028
|
+
alt?: string;
|
|
41029
|
+
/** JSONP */
|
|
41030
|
+
callback?: string;
|
|
41031
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41032
|
+
fields?: string;
|
|
41033
|
+
/** 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. */
|
|
41034
|
+
key?: string;
|
|
41035
|
+
/** Required. The resource name of the Memory to delete. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
41036
|
+
name: string;
|
|
41037
|
+
/** OAuth 2.0 token for the current user. */
|
|
41038
|
+
oauth_token?: string;
|
|
41039
|
+
/** Returns response with indentations and line breaks. */
|
|
41040
|
+
prettyPrint?: boolean;
|
|
41041
|
+
/** 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. */
|
|
41042
|
+
quotaUser?: string;
|
|
41043
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41044
|
+
upload_protocol?: string;
|
|
41045
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41046
|
+
uploadType?: string;
|
|
41047
|
+
}): Request<GoogleLongrunningOperation>;
|
|
41048
|
+
/** Generate memories. */
|
|
41049
|
+
generate(request: {
|
|
41050
|
+
/** V1 error format. */
|
|
41051
|
+
'$.xgafv'?: string;
|
|
41052
|
+
/** OAuth access token. */
|
|
41053
|
+
access_token?: string;
|
|
41054
|
+
/** Data format for response. */
|
|
41055
|
+
alt?: string;
|
|
41056
|
+
/** JSONP */
|
|
41057
|
+
callback?: string;
|
|
41058
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41059
|
+
fields?: string;
|
|
41060
|
+
/** 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. */
|
|
41061
|
+
key?: string;
|
|
41062
|
+
/** OAuth 2.0 token for the current user. */
|
|
41063
|
+
oauth_token?: string;
|
|
41064
|
+
/** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41065
|
+
parent: string;
|
|
41066
|
+
/** Returns response with indentations and line breaks. */
|
|
41067
|
+
prettyPrint?: boolean;
|
|
41068
|
+
/** 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. */
|
|
41069
|
+
quotaUser?: string;
|
|
41070
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41071
|
+
upload_protocol?: string;
|
|
41072
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41073
|
+
uploadType?: string;
|
|
41074
|
+
/** Request body */
|
|
41075
|
+
resource: GoogleCloudAiplatformV1beta1GenerateMemoriesRequest;
|
|
41076
|
+
}): Request<GoogleLongrunningOperation>;
|
|
41077
|
+
generate(
|
|
41078
|
+
request: {
|
|
41079
|
+
/** V1 error format. */
|
|
41080
|
+
'$.xgafv'?: string;
|
|
41081
|
+
/** OAuth access token. */
|
|
41082
|
+
access_token?: string;
|
|
41083
|
+
/** Data format for response. */
|
|
41084
|
+
alt?: string;
|
|
41085
|
+
/** JSONP */
|
|
41086
|
+
callback?: string;
|
|
41087
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41088
|
+
fields?: string;
|
|
41089
|
+
/** 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. */
|
|
41090
|
+
key?: string;
|
|
41091
|
+
/** OAuth 2.0 token for the current user. */
|
|
41092
|
+
oauth_token?: string;
|
|
41093
|
+
/** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41094
|
+
parent: string;
|
|
41095
|
+
/** Returns response with indentations and line breaks. */
|
|
41096
|
+
prettyPrint?: boolean;
|
|
41097
|
+
/** 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. */
|
|
41098
|
+
quotaUser?: string;
|
|
41099
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41100
|
+
upload_protocol?: string;
|
|
41101
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41102
|
+
uploadType?: string;
|
|
41103
|
+
},
|
|
41104
|
+
body: GoogleCloudAiplatformV1beta1GenerateMemoriesRequest,
|
|
41105
|
+
): Request<GoogleLongrunningOperation>;
|
|
41106
|
+
/** Get a Memory. */
|
|
41107
|
+
get(request?: {
|
|
41108
|
+
/** V1 error format. */
|
|
41109
|
+
'$.xgafv'?: string;
|
|
41110
|
+
/** OAuth access token. */
|
|
41111
|
+
access_token?: string;
|
|
41112
|
+
/** Data format for response. */
|
|
41113
|
+
alt?: string;
|
|
41114
|
+
/** JSONP */
|
|
41115
|
+
callback?: string;
|
|
41116
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41117
|
+
fields?: string;
|
|
41118
|
+
/** 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. */
|
|
41119
|
+
key?: string;
|
|
41120
|
+
/** Required. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
41121
|
+
name: string;
|
|
41122
|
+
/** OAuth 2.0 token for the current user. */
|
|
41123
|
+
oauth_token?: string;
|
|
41124
|
+
/** Returns response with indentations and line breaks. */
|
|
41125
|
+
prettyPrint?: boolean;
|
|
41126
|
+
/** 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. */
|
|
41127
|
+
quotaUser?: string;
|
|
41128
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41129
|
+
upload_protocol?: string;
|
|
41130
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41131
|
+
uploadType?: string;
|
|
41132
|
+
}): Request<GoogleCloudAiplatformV1beta1Memory>;
|
|
41133
|
+
/** List Memories. */
|
|
41134
|
+
list(request?: {
|
|
41135
|
+
/** V1 error format. */
|
|
41136
|
+
'$.xgafv'?: string;
|
|
41137
|
+
/** OAuth access token. */
|
|
41138
|
+
access_token?: string;
|
|
41139
|
+
/** Data format for response. */
|
|
41140
|
+
alt?: string;
|
|
41141
|
+
/** JSONP */
|
|
41142
|
+
callback?: string;
|
|
41143
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41144
|
+
fields?: string;
|
|
41145
|
+
/** 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) */
|
|
41146
|
+
filter?: string;
|
|
41147
|
+
/** 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. */
|
|
41148
|
+
key?: string;
|
|
41149
|
+
/** OAuth 2.0 token for the current user. */
|
|
41150
|
+
oauth_token?: string;
|
|
41151
|
+
/** Optional. The standard list page size. */
|
|
41152
|
+
pageSize?: number;
|
|
41153
|
+
/** Optional. The standard list page token. */
|
|
41154
|
+
pageToken?: string;
|
|
41155
|
+
/** Required. The resource name of the ReasoningEngine to list the Memories under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41156
|
+
parent: string;
|
|
41157
|
+
/** Returns response with indentations and line breaks. */
|
|
41158
|
+
prettyPrint?: boolean;
|
|
41159
|
+
/** 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. */
|
|
41160
|
+
quotaUser?: string;
|
|
41161
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41162
|
+
upload_protocol?: string;
|
|
41163
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41164
|
+
uploadType?: string;
|
|
41165
|
+
}): Request<GoogleCloudAiplatformV1beta1ListMemoriesResponse>;
|
|
41166
|
+
/** Update a Memory. */
|
|
41167
|
+
patch(request: {
|
|
41168
|
+
/** V1 error format. */
|
|
41169
|
+
'$.xgafv'?: string;
|
|
41170
|
+
/** OAuth access token. */
|
|
41171
|
+
access_token?: string;
|
|
41172
|
+
/** Data format for response. */
|
|
41173
|
+
alt?: string;
|
|
41174
|
+
/** JSONP */
|
|
41175
|
+
callback?: string;
|
|
41176
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41177
|
+
fields?: string;
|
|
41178
|
+
/** 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. */
|
|
41179
|
+
key?: string;
|
|
41180
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
41181
|
+
name: string;
|
|
41182
|
+
/** OAuth 2.0 token for the current user. */
|
|
41183
|
+
oauth_token?: string;
|
|
41184
|
+
/** Returns response with indentations and line breaks. */
|
|
41185
|
+
prettyPrint?: boolean;
|
|
41186
|
+
/** 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. */
|
|
41187
|
+
quotaUser?: string;
|
|
41188
|
+
/** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
|
|
41189
|
+
updateMask?: string;
|
|
41190
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41191
|
+
upload_protocol?: string;
|
|
41192
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41193
|
+
uploadType?: string;
|
|
41194
|
+
/** Request body */
|
|
41195
|
+
resource: GoogleCloudAiplatformV1beta1Memory;
|
|
41196
|
+
}): Request<GoogleLongrunningOperation>;
|
|
41197
|
+
patch(
|
|
41198
|
+
request: {
|
|
41199
|
+
/** V1 error format. */
|
|
41200
|
+
'$.xgafv'?: string;
|
|
41201
|
+
/** OAuth access token. */
|
|
41202
|
+
access_token?: string;
|
|
41203
|
+
/** Data format for response. */
|
|
41204
|
+
alt?: string;
|
|
41205
|
+
/** JSONP */
|
|
41206
|
+
callback?: string;
|
|
41207
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41208
|
+
fields?: string;
|
|
41209
|
+
/** 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. */
|
|
41210
|
+
key?: string;
|
|
41211
|
+
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
41212
|
+
name: string;
|
|
41213
|
+
/** OAuth 2.0 token for the current user. */
|
|
41214
|
+
oauth_token?: string;
|
|
41215
|
+
/** Returns response with indentations and line breaks. */
|
|
41216
|
+
prettyPrint?: boolean;
|
|
41217
|
+
/** 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. */
|
|
41218
|
+
quotaUser?: string;
|
|
41219
|
+
/** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
|
|
41220
|
+
updateMask?: string;
|
|
41221
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41222
|
+
upload_protocol?: string;
|
|
41223
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41224
|
+
uploadType?: string;
|
|
41225
|
+
},
|
|
41226
|
+
body: GoogleCloudAiplatformV1beta1Memory,
|
|
41227
|
+
): Request<GoogleLongrunningOperation>;
|
|
41228
|
+
/** Retrieve memories. */
|
|
41229
|
+
retrieve(request: {
|
|
41230
|
+
/** V1 error format. */
|
|
41231
|
+
'$.xgafv'?: string;
|
|
41232
|
+
/** OAuth access token. */
|
|
41233
|
+
access_token?: string;
|
|
41234
|
+
/** Data format for response. */
|
|
41235
|
+
alt?: string;
|
|
41236
|
+
/** JSONP */
|
|
41237
|
+
callback?: string;
|
|
41238
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41239
|
+
fields?: string;
|
|
41240
|
+
/** 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. */
|
|
41241
|
+
key?: string;
|
|
41242
|
+
/** OAuth 2.0 token for the current user. */
|
|
41243
|
+
oauth_token?: string;
|
|
41244
|
+
/** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41245
|
+
parent: string;
|
|
41246
|
+
/** Returns response with indentations and line breaks. */
|
|
41247
|
+
prettyPrint?: boolean;
|
|
41248
|
+
/** 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. */
|
|
41249
|
+
quotaUser?: string;
|
|
41250
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41251
|
+
upload_protocol?: string;
|
|
41252
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41253
|
+
uploadType?: string;
|
|
41254
|
+
/** Request body */
|
|
41255
|
+
resource: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest;
|
|
41256
|
+
}): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
41257
|
+
retrieve(
|
|
41258
|
+
request: {
|
|
41259
|
+
/** V1 error format. */
|
|
41260
|
+
'$.xgafv'?: string;
|
|
41261
|
+
/** OAuth access token. */
|
|
41262
|
+
access_token?: string;
|
|
41263
|
+
/** Data format for response. */
|
|
41264
|
+
alt?: string;
|
|
41265
|
+
/** JSONP */
|
|
41266
|
+
callback?: string;
|
|
41267
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
41268
|
+
fields?: string;
|
|
41269
|
+
/** 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. */
|
|
41270
|
+
key?: string;
|
|
41271
|
+
/** OAuth 2.0 token for the current user. */
|
|
41272
|
+
oauth_token?: string;
|
|
41273
|
+
/** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
41274
|
+
parent: string;
|
|
41275
|
+
/** Returns response with indentations and line breaks. */
|
|
41276
|
+
prettyPrint?: boolean;
|
|
41277
|
+
/** 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. */
|
|
41278
|
+
quotaUser?: string;
|
|
41279
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41280
|
+
upload_protocol?: string;
|
|
41281
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
41282
|
+
uploadType?: string;
|
|
41283
|
+
},
|
|
41284
|
+
body: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest,
|
|
41285
|
+
): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
|
|
41286
|
+
}
|
|
40141
41287
|
interface EventsResource {
|
|
40142
41288
|
/** Lists Events in a given session. */
|
|
40143
41289
|
list(request?: {
|
|
@@ -40767,6 +41913,7 @@ declare namespace gapi.client {
|
|
|
40767
41913
|
},
|
|
40768
41914
|
body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest,
|
|
40769
41915
|
): Request<GoogleApiHttpBody>;
|
|
41916
|
+
memories: MemoriesResource;
|
|
40770
41917
|
sessions: SessionsResource;
|
|
40771
41918
|
}
|
|
40772
41919
|
|