@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250527 → 0.0.20250529
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 +317 -1
- 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: 20250529
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3300,8 +3300,12 @@ declare namespace gapi.client {
|
|
|
3300
3300
|
name?: string;
|
|
3301
3301
|
/** Optional. Describes the parameters to this function in JSON Schema Object format. Reflects the Open API 3.03 Parameter Object. string Key: the name of the parameter. Parameter names are case sensitive. Schema Value: the Schema defining the type used for the parameter. For function with no parameters, this can be left unset. Parameter names must start with a letter or an underscore and must only contain chars a-z, A-Z, 0-9, or underscores with a maximum length of 64. Example with 1 required and 1 optional parameter: type: OBJECT properties: param1: type: STRING param2: type: INTEGER required: - param1 */
|
|
3302
3302
|
parameters?: GoogleCloudAiplatformV1beta1Schema;
|
|
3303
|
+
/** Optional. Describes the parameters to the function in JSON Schema format. The schema must describe an object where the properties are the parameters to the function. For example: ``` { "type": "object", "properties": { "name": { "type": "string" }, "age": { "type": "integer" } }, "additionalProperties": false, "required": ["name", "age"], "propertyOrdering": ["name", "age"] } ``` This field is mutually exclusive with `parameters`. */
|
|
3304
|
+
parametersJsonSchema?: any;
|
|
3303
3305
|
/** Optional. Describes the output from this function in JSON Schema format. Reflects the Open API 3.03 Response Object. The Schema defines the type used for the response value of the function. */
|
|
3304
3306
|
response?: GoogleCloudAiplatformV1beta1Schema;
|
|
3307
|
+
/** Optional. Describes the output from this function in JSON Schema format. The value specified by the schema is the response value of the function. This field is mutually exclusive with `response`. */
|
|
3308
|
+
responseJsonSchema?: any;
|
|
3305
3309
|
}
|
|
3306
3310
|
interface GoogleCloudAiplatformV1beta1FunctionResponse {
|
|
3307
3311
|
/** Optional. The id of the function call this response is for. Populated by the client to match the corresponding function call `id`. */
|
|
@@ -3474,6 +3478,8 @@ declare namespace gapi.client {
|
|
|
3474
3478
|
modelConfig?: GoogleCloudAiplatformV1beta1GenerationConfigModelConfig;
|
|
3475
3479
|
/** Optional. Positive penalties. */
|
|
3476
3480
|
presencePenalty?: number;
|
|
3481
|
+
/** Optional. Output schema of the generated response. This is an alternative to `response_schema` that accepts [JSON Schema](https://json-schema.org/). If set, `response_schema` must be omitted, but `response_mime_type` is required. While the full JSON Schema may be sent, not all features are supported. Specifically, only the following properties are supported: - `$id` - `$defs` - `$ref` - `$anchor` - `type` - `format` - `title` - `description` - `enum` (for strings and numbers) - `items` - `prefixItems` - `minItems` - `maxItems` - `minimum` - `maximum` - `anyOf` - `oneOf` (interpreted the same as `anyOf`) - `properties` - `additionalProperties` - `required` The non-standard `propertyOrdering` property may also be set. Cyclic references are unrolled to a limited degree and, as such, may only be used within non-required properties. (Nullable properties are not sufficient.) If `$ref` is set on a sub-schema, no other properties, except for than those starting as a `$`, may be set. */
|
|
3482
|
+
responseJsonSchema?: any;
|
|
3477
3483
|
/** Optional. If true, export the logprobs results in response. */
|
|
3478
3484
|
responseLogprobs?: boolean;
|
|
3479
3485
|
/** Optional. Output response mimetype of the generated candidate text. Supported mimetype: - `text/plain`: (default) Text output. - `application/json`: JSON response in the candidates. The model needs to be prompted to output the appropriate response type, otherwise the behavior is undefined. This is a preview feature. */
|
|
@@ -6718,6 +6724,8 @@ declare namespace gapi.client {
|
|
|
6718
6724
|
interface GoogleCloudAiplatformV1beta1RagCorpus {
|
|
6719
6725
|
/** Output only. RagCorpus state. */
|
|
6720
6726
|
corpusStatus?: GoogleCloudAiplatformV1beta1CorpusStatus;
|
|
6727
|
+
/** Optional. The corpus type config of the RagCorpus. */
|
|
6728
|
+
corpusTypeConfig?: GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig;
|
|
6721
6729
|
/** Output only. Timestamp when this RagCorpus was created. */
|
|
6722
6730
|
createTime?: string;
|
|
6723
6731
|
/** Optional. The description of the RagCorpus. */
|
|
@@ -6741,6 +6749,17 @@ declare namespace gapi.client {
|
|
|
6741
6749
|
/** Optional. Immutable. The config for the Vertex AI Search. */
|
|
6742
6750
|
vertexAiSearchConfig?: GoogleCloudAiplatformV1beta1VertexAiSearchConfig;
|
|
6743
6751
|
}
|
|
6752
|
+
interface GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig {
|
|
6753
|
+
/** Optional. Config for the document corpus. */
|
|
6754
|
+
documentCorpus?: any;
|
|
6755
|
+
/** Optional. Config for the memory corpus. */
|
|
6756
|
+
memoryCorpus?: GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigMemoryCorpus;
|
|
6757
|
+
}
|
|
6758
|
+
interface GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigDocumentCorpus {}
|
|
6759
|
+
interface GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfigMemoryCorpus {
|
|
6760
|
+
/** The LLM parser to use for the memory corpus. */
|
|
6761
|
+
llmParser?: GoogleCloudAiplatformV1beta1RagFileParsingConfigLlmParser;
|
|
6762
|
+
}
|
|
6744
6763
|
interface GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig {
|
|
6745
6764
|
/** Configuration for hybrid search. */
|
|
6746
6765
|
hybridSearchConfig?: GoogleCloudAiplatformV1beta1RagEmbeddingModelConfigHybridSearchConfig;
|
|
@@ -10596,6 +10615,8 @@ declare namespace gapi.client {
|
|
|
10596
10615
|
ragRetrievalConfig?: GoogleCloudAiplatformV1beta1RagRetrievalConfig;
|
|
10597
10616
|
/** Optional. Number of top k results to return from the selected corpora. */
|
|
10598
10617
|
similarityTopK?: number;
|
|
10618
|
+
/** Optional. Currently only supported for Gemini Multimodal Live API. In Gemini Multimodal Live API, if `store_context` bool is specified, Gemini will leverage it to automatically memorize the interactions between the client and Gemini, and retrieve context when needed to augment the response generation for users' ongoing and future interactions. */
|
|
10619
|
+
storeContext?: boolean;
|
|
10599
10620
|
/** Optional. Only return results with vector distance smaller than the threshold. */
|
|
10600
10621
|
vectorDistanceThreshold?: number;
|
|
10601
10622
|
}
|
|
@@ -33173,6 +33194,154 @@ declare namespace gapi.client {
|
|
|
33173
33194
|
uploadType?: string;
|
|
33174
33195
|
}): Request<GoogleLongrunningOperation>;
|
|
33175
33196
|
}
|
|
33197
|
+
interface MemoriesResource {
|
|
33198
|
+
operations: OperationsResource;
|
|
33199
|
+
}
|
|
33200
|
+
interface OperationsResource {
|
|
33201
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
33202
|
+
cancel(request?: {
|
|
33203
|
+
/** V1 error format. */
|
|
33204
|
+
'$.xgafv'?: string;
|
|
33205
|
+
/** OAuth access token. */
|
|
33206
|
+
access_token?: string;
|
|
33207
|
+
/** Data format for response. */
|
|
33208
|
+
alt?: string;
|
|
33209
|
+
/** JSONP */
|
|
33210
|
+
callback?: string;
|
|
33211
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33212
|
+
fields?: string;
|
|
33213
|
+
/** 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. */
|
|
33214
|
+
key?: string;
|
|
33215
|
+
/** The name of the operation resource to be cancelled. */
|
|
33216
|
+
name: string;
|
|
33217
|
+
/** OAuth 2.0 token for the current user. */
|
|
33218
|
+
oauth_token?: string;
|
|
33219
|
+
/** Returns response with indentations and line breaks. */
|
|
33220
|
+
prettyPrint?: boolean;
|
|
33221
|
+
/** 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. */
|
|
33222
|
+
quotaUser?: string;
|
|
33223
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33224
|
+
upload_protocol?: string;
|
|
33225
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33226
|
+
uploadType?: string;
|
|
33227
|
+
}): Request<{}>;
|
|
33228
|
+
/** 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`. */
|
|
33229
|
+
delete(request?: {
|
|
33230
|
+
/** V1 error format. */
|
|
33231
|
+
'$.xgafv'?: string;
|
|
33232
|
+
/** OAuth access token. */
|
|
33233
|
+
access_token?: string;
|
|
33234
|
+
/** Data format for response. */
|
|
33235
|
+
alt?: string;
|
|
33236
|
+
/** JSONP */
|
|
33237
|
+
callback?: string;
|
|
33238
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33239
|
+
fields?: string;
|
|
33240
|
+
/** 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. */
|
|
33241
|
+
key?: string;
|
|
33242
|
+
/** The name of the operation resource to be deleted. */
|
|
33243
|
+
name: string;
|
|
33244
|
+
/** OAuth 2.0 token for the current user. */
|
|
33245
|
+
oauth_token?: string;
|
|
33246
|
+
/** Returns response with indentations and line breaks. */
|
|
33247
|
+
prettyPrint?: boolean;
|
|
33248
|
+
/** 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. */
|
|
33249
|
+
quotaUser?: string;
|
|
33250
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33251
|
+
upload_protocol?: string;
|
|
33252
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33253
|
+
uploadType?: string;
|
|
33254
|
+
}): Request<{}>;
|
|
33255
|
+
/** 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. */
|
|
33256
|
+
get(request?: {
|
|
33257
|
+
/** V1 error format. */
|
|
33258
|
+
'$.xgafv'?: string;
|
|
33259
|
+
/** OAuth access token. */
|
|
33260
|
+
access_token?: string;
|
|
33261
|
+
/** Data format for response. */
|
|
33262
|
+
alt?: string;
|
|
33263
|
+
/** JSONP */
|
|
33264
|
+
callback?: string;
|
|
33265
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33266
|
+
fields?: string;
|
|
33267
|
+
/** 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. */
|
|
33268
|
+
key?: string;
|
|
33269
|
+
/** The name of the operation resource. */
|
|
33270
|
+
name: string;
|
|
33271
|
+
/** OAuth 2.0 token for the current user. */
|
|
33272
|
+
oauth_token?: string;
|
|
33273
|
+
/** Returns response with indentations and line breaks. */
|
|
33274
|
+
prettyPrint?: boolean;
|
|
33275
|
+
/** 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. */
|
|
33276
|
+
quotaUser?: string;
|
|
33277
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33278
|
+
upload_protocol?: string;
|
|
33279
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33280
|
+
uploadType?: string;
|
|
33281
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33282
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
33283
|
+
list(request?: {
|
|
33284
|
+
/** V1 error format. */
|
|
33285
|
+
'$.xgafv'?: string;
|
|
33286
|
+
/** OAuth access token. */
|
|
33287
|
+
access_token?: string;
|
|
33288
|
+
/** Data format for response. */
|
|
33289
|
+
alt?: string;
|
|
33290
|
+
/** JSONP */
|
|
33291
|
+
callback?: string;
|
|
33292
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33293
|
+
fields?: string;
|
|
33294
|
+
/** The standard list filter. */
|
|
33295
|
+
filter?: string;
|
|
33296
|
+
/** 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. */
|
|
33297
|
+
key?: string;
|
|
33298
|
+
/** The name of the operation's parent resource. */
|
|
33299
|
+
name: string;
|
|
33300
|
+
/** OAuth 2.0 token for the current user. */
|
|
33301
|
+
oauth_token?: string;
|
|
33302
|
+
/** The standard list page size. */
|
|
33303
|
+
pageSize?: number;
|
|
33304
|
+
/** The standard list page token. */
|
|
33305
|
+
pageToken?: string;
|
|
33306
|
+
/** Returns response with indentations and line breaks. */
|
|
33307
|
+
prettyPrint?: boolean;
|
|
33308
|
+
/** 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. */
|
|
33309
|
+
quotaUser?: string;
|
|
33310
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33311
|
+
upload_protocol?: string;
|
|
33312
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33313
|
+
uploadType?: string;
|
|
33314
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
33315
|
+
/** 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. */
|
|
33316
|
+
wait(request?: {
|
|
33317
|
+
/** V1 error format. */
|
|
33318
|
+
'$.xgafv'?: string;
|
|
33319
|
+
/** OAuth access token. */
|
|
33320
|
+
access_token?: string;
|
|
33321
|
+
/** Data format for response. */
|
|
33322
|
+
alt?: string;
|
|
33323
|
+
/** JSONP */
|
|
33324
|
+
callback?: string;
|
|
33325
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33326
|
+
fields?: string;
|
|
33327
|
+
/** 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. */
|
|
33328
|
+
key?: string;
|
|
33329
|
+
/** The name of the operation resource to wait on. */
|
|
33330
|
+
name: string;
|
|
33331
|
+
/** OAuth 2.0 token for the current user. */
|
|
33332
|
+
oauth_token?: string;
|
|
33333
|
+
/** Returns response with indentations and line breaks. */
|
|
33334
|
+
prettyPrint?: boolean;
|
|
33335
|
+
/** 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. */
|
|
33336
|
+
quotaUser?: string;
|
|
33337
|
+
/** 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. */
|
|
33338
|
+
timeout?: string;
|
|
33339
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33340
|
+
upload_protocol?: string;
|
|
33341
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33342
|
+
uploadType?: string;
|
|
33343
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33344
|
+
}
|
|
33176
33345
|
interface OperationsResource {
|
|
33177
33346
|
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
33178
33347
|
cancel(request?: {
|
|
@@ -33354,6 +33523,151 @@ declare namespace gapi.client {
|
|
|
33354
33523
|
uploadType?: string;
|
|
33355
33524
|
}): Request<GoogleCloudAiplatformV1beta1ListEventsResponse>;
|
|
33356
33525
|
}
|
|
33526
|
+
interface OperationsResource {
|
|
33527
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
|
|
33528
|
+
cancel(request?: {
|
|
33529
|
+
/** V1 error format. */
|
|
33530
|
+
'$.xgafv'?: string;
|
|
33531
|
+
/** OAuth access token. */
|
|
33532
|
+
access_token?: string;
|
|
33533
|
+
/** Data format for response. */
|
|
33534
|
+
alt?: string;
|
|
33535
|
+
/** JSONP */
|
|
33536
|
+
callback?: string;
|
|
33537
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33538
|
+
fields?: string;
|
|
33539
|
+
/** 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. */
|
|
33540
|
+
key?: string;
|
|
33541
|
+
/** The name of the operation resource to be cancelled. */
|
|
33542
|
+
name: string;
|
|
33543
|
+
/** OAuth 2.0 token for the current user. */
|
|
33544
|
+
oauth_token?: string;
|
|
33545
|
+
/** Returns response with indentations and line breaks. */
|
|
33546
|
+
prettyPrint?: boolean;
|
|
33547
|
+
/** 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. */
|
|
33548
|
+
quotaUser?: string;
|
|
33549
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33550
|
+
upload_protocol?: string;
|
|
33551
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33552
|
+
uploadType?: string;
|
|
33553
|
+
}): Request<{}>;
|
|
33554
|
+
/** 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`. */
|
|
33555
|
+
delete(request?: {
|
|
33556
|
+
/** V1 error format. */
|
|
33557
|
+
'$.xgafv'?: string;
|
|
33558
|
+
/** OAuth access token. */
|
|
33559
|
+
access_token?: string;
|
|
33560
|
+
/** Data format for response. */
|
|
33561
|
+
alt?: string;
|
|
33562
|
+
/** JSONP */
|
|
33563
|
+
callback?: string;
|
|
33564
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33565
|
+
fields?: string;
|
|
33566
|
+
/** 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. */
|
|
33567
|
+
key?: string;
|
|
33568
|
+
/** The name of the operation resource to be deleted. */
|
|
33569
|
+
name: string;
|
|
33570
|
+
/** OAuth 2.0 token for the current user. */
|
|
33571
|
+
oauth_token?: string;
|
|
33572
|
+
/** Returns response with indentations and line breaks. */
|
|
33573
|
+
prettyPrint?: boolean;
|
|
33574
|
+
/** 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. */
|
|
33575
|
+
quotaUser?: string;
|
|
33576
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33577
|
+
upload_protocol?: string;
|
|
33578
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33579
|
+
uploadType?: string;
|
|
33580
|
+
}): Request<{}>;
|
|
33581
|
+
/** 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. */
|
|
33582
|
+
get(request?: {
|
|
33583
|
+
/** V1 error format. */
|
|
33584
|
+
'$.xgafv'?: string;
|
|
33585
|
+
/** OAuth access token. */
|
|
33586
|
+
access_token?: string;
|
|
33587
|
+
/** Data format for response. */
|
|
33588
|
+
alt?: string;
|
|
33589
|
+
/** JSONP */
|
|
33590
|
+
callback?: string;
|
|
33591
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33592
|
+
fields?: string;
|
|
33593
|
+
/** 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. */
|
|
33594
|
+
key?: string;
|
|
33595
|
+
/** The name of the operation resource. */
|
|
33596
|
+
name: string;
|
|
33597
|
+
/** OAuth 2.0 token for the current user. */
|
|
33598
|
+
oauth_token?: string;
|
|
33599
|
+
/** Returns response with indentations and line breaks. */
|
|
33600
|
+
prettyPrint?: boolean;
|
|
33601
|
+
/** 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. */
|
|
33602
|
+
quotaUser?: string;
|
|
33603
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33604
|
+
upload_protocol?: string;
|
|
33605
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33606
|
+
uploadType?: string;
|
|
33607
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33608
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
33609
|
+
list(request?: {
|
|
33610
|
+
/** V1 error format. */
|
|
33611
|
+
'$.xgafv'?: string;
|
|
33612
|
+
/** OAuth access token. */
|
|
33613
|
+
access_token?: string;
|
|
33614
|
+
/** Data format for response. */
|
|
33615
|
+
alt?: string;
|
|
33616
|
+
/** JSONP */
|
|
33617
|
+
callback?: string;
|
|
33618
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33619
|
+
fields?: string;
|
|
33620
|
+
/** The standard list filter. */
|
|
33621
|
+
filter?: string;
|
|
33622
|
+
/** 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. */
|
|
33623
|
+
key?: string;
|
|
33624
|
+
/** The name of the operation's parent resource. */
|
|
33625
|
+
name: string;
|
|
33626
|
+
/** OAuth 2.0 token for the current user. */
|
|
33627
|
+
oauth_token?: string;
|
|
33628
|
+
/** The standard list page size. */
|
|
33629
|
+
pageSize?: number;
|
|
33630
|
+
/** The standard list page token. */
|
|
33631
|
+
pageToken?: string;
|
|
33632
|
+
/** Returns response with indentations and line breaks. */
|
|
33633
|
+
prettyPrint?: boolean;
|
|
33634
|
+
/** 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. */
|
|
33635
|
+
quotaUser?: string;
|
|
33636
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33637
|
+
upload_protocol?: string;
|
|
33638
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33639
|
+
uploadType?: string;
|
|
33640
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
33641
|
+
/** 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. */
|
|
33642
|
+
wait(request?: {
|
|
33643
|
+
/** V1 error format. */
|
|
33644
|
+
'$.xgafv'?: string;
|
|
33645
|
+
/** OAuth access token. */
|
|
33646
|
+
access_token?: string;
|
|
33647
|
+
/** Data format for response. */
|
|
33648
|
+
alt?: string;
|
|
33649
|
+
/** JSONP */
|
|
33650
|
+
callback?: string;
|
|
33651
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
33652
|
+
fields?: string;
|
|
33653
|
+
/** 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. */
|
|
33654
|
+
key?: string;
|
|
33655
|
+
/** The name of the operation resource to wait on. */
|
|
33656
|
+
name: string;
|
|
33657
|
+
/** OAuth 2.0 token for the current user. */
|
|
33658
|
+
oauth_token?: string;
|
|
33659
|
+
/** Returns response with indentations and line breaks. */
|
|
33660
|
+
prettyPrint?: boolean;
|
|
33661
|
+
/** 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. */
|
|
33662
|
+
quotaUser?: string;
|
|
33663
|
+
/** 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. */
|
|
33664
|
+
timeout?: string;
|
|
33665
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33666
|
+
upload_protocol?: string;
|
|
33667
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33668
|
+
uploadType?: string;
|
|
33669
|
+
}): Request<GoogleLongrunningOperation>;
|
|
33670
|
+
}
|
|
33357
33671
|
interface SessionsResource {
|
|
33358
33672
|
/** Appends an event to a given session. */
|
|
33359
33673
|
appendEvent(request: {
|
|
@@ -33623,6 +33937,7 @@ declare namespace gapi.client {
|
|
|
33623
33937
|
body: GoogleCloudAiplatformV1beta1Session,
|
|
33624
33938
|
): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
33625
33939
|
events: EventsResource;
|
|
33940
|
+
operations: OperationsResource;
|
|
33626
33941
|
}
|
|
33627
33942
|
interface ReasoningEnginesResource {
|
|
33628
33943
|
/** Creates a reasoning engine. */
|
|
@@ -33950,6 +34265,7 @@ declare namespace gapi.client {
|
|
|
33950
34265
|
},
|
|
33951
34266
|
body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest,
|
|
33952
34267
|
): Request<GoogleApiHttpBody>;
|
|
34268
|
+
memories: MemoriesResource;
|
|
33953
34269
|
operations: OperationsResource;
|
|
33954
34270
|
sandboxEnvironments: SandboxEnvironmentsResource;
|
|
33955
34271
|
sessions: SessionsResource;
|