@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250522 → 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 +1302 -7
- package/package.json +1 -1
- package/readme.md +49 -0
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
|
|
|
@@ -868,6 +868,12 @@ declare namespace gapi.client {
|
|
|
868
868
|
/** Optional. Which version to use for evaluation. */
|
|
869
869
|
version?: number;
|
|
870
870
|
}
|
|
871
|
+
interface GoogleCloudAiplatformV1beta1ColabImage {
|
|
872
|
+
/** Output only. A human-readable description of the specified colab image release, populated by the system. Example: "Python 3.10", "Latest - current Python 3.11" */
|
|
873
|
+
description?: string;
|
|
874
|
+
/** Optional. The release name of the NotebookRuntime Colab image, e.g. "py310". If not specified, detault to the latest release. */
|
|
875
|
+
releaseName?: string;
|
|
876
|
+
}
|
|
871
877
|
interface GoogleCloudAiplatformV1beta1CometInput {
|
|
872
878
|
/** Required. Comet instance. */
|
|
873
879
|
instance?: GoogleCloudAiplatformV1beta1CometInstance;
|
|
@@ -3294,8 +3300,12 @@ declare namespace gapi.client {
|
|
|
3294
3300
|
name?: string;
|
|
3295
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 */
|
|
3296
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;
|
|
3297
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. */
|
|
3298
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;
|
|
3299
3309
|
}
|
|
3300
3310
|
interface GoogleCloudAiplatformV1beta1FunctionResponse {
|
|
3301
3311
|
/** Optional. The id of the function call this response is for. Populated by the client to match the corresponding function call `id`. */
|
|
@@ -3454,6 +3464,8 @@ declare namespace gapi.client {
|
|
|
3454
3464
|
audioTimestamp?: boolean;
|
|
3455
3465
|
/** Optional. Number of candidates to generate. */
|
|
3456
3466
|
candidateCount?: number;
|
|
3467
|
+
/** Optional. If enabled, the model will detect emotions and adapt its responses accordingly. */
|
|
3468
|
+
enableAffectiveDialog?: boolean;
|
|
3457
3469
|
/** Optional. Frequency penalties. */
|
|
3458
3470
|
frequencyPenalty?: number;
|
|
3459
3471
|
/** Optional. Logit probabilities. */
|
|
@@ -3466,6 +3478,8 @@ declare namespace gapi.client {
|
|
|
3466
3478
|
modelConfig?: GoogleCloudAiplatformV1beta1GenerationConfigModelConfig;
|
|
3467
3479
|
/** Optional. Positive penalties. */
|
|
3468
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;
|
|
3469
3483
|
/** Optional. If true, export the logprobs results in response. */
|
|
3470
3484
|
responseLogprobs?: boolean;
|
|
3471
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. */
|
|
@@ -3727,6 +3741,50 @@ declare namespace gapi.client {
|
|
|
3727
3741
|
/** The number rows that weren't ingested due to having feature timestamps outside the retention boundary. */
|
|
3728
3742
|
timestampOutsideRetentionRowsCount?: string;
|
|
3729
3743
|
}
|
|
3744
|
+
interface GoogleCloudAiplatformV1beta1ImportIndexRequest {
|
|
3745
|
+
/** Required. Configuration for importing data from an external source. */
|
|
3746
|
+
config?: GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfig;
|
|
3747
|
+
/** Optional. If true, completely replace existing index data. Must be true for streaming update indexes. */
|
|
3748
|
+
isCompleteOverwrite?: boolean;
|
|
3749
|
+
}
|
|
3750
|
+
interface GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfig {
|
|
3751
|
+
/** Configuration for importing data from a BigQuery table. */
|
|
3752
|
+
bigQuerySourceConfig?: GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigBigQuerySourceConfig;
|
|
3753
|
+
}
|
|
3754
|
+
interface GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigBigQuerySourceConfig {
|
|
3755
|
+
/** Required. Mapping of datapoint fields to BigQuery column names. */
|
|
3756
|
+
datapointFieldMapping?: GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMapping;
|
|
3757
|
+
/** Required. The path to the BigQuery table containing the index data, in the format of `bq://..`. */
|
|
3758
|
+
tablePath?: string;
|
|
3759
|
+
}
|
|
3760
|
+
interface GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMapping {
|
|
3761
|
+
/** Required. The column with the vector embeddings for each data point. */
|
|
3762
|
+
embeddingColumn?: string;
|
|
3763
|
+
/** Required. The column with unique identifiers for each data point. */
|
|
3764
|
+
idColumn?: string;
|
|
3765
|
+
/** Optional. List of columns containing metadata to be included in the index. */
|
|
3766
|
+
metadataColumns?: string[];
|
|
3767
|
+
/** Optional. List of restricts for numeric values. */
|
|
3768
|
+
numericRestricts?: GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict[];
|
|
3769
|
+
/** Optional. List of restricts for string values. */
|
|
3770
|
+
restricts?: GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict[];
|
|
3771
|
+
}
|
|
3772
|
+
interface GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingNumericRestrict {
|
|
3773
|
+
/** Required. The namespace of the restrict. */
|
|
3774
|
+
namespace?: string;
|
|
3775
|
+
/** Optional. The column containing the numeric value. */
|
|
3776
|
+
valueColumn?: string;
|
|
3777
|
+
/** Required. Numeric type of the restrict. Must be consistent for all datapoints within the namespace. */
|
|
3778
|
+
valueType?: string;
|
|
3779
|
+
}
|
|
3780
|
+
interface GoogleCloudAiplatformV1beta1ImportIndexRequestConnectorConfigDatapointFieldMappingRestrict {
|
|
3781
|
+
/** Optional. The columns containing the allow values. */
|
|
3782
|
+
allowColumn?: string[];
|
|
3783
|
+
/** Optional. The columns containing the deny values. */
|
|
3784
|
+
denyColumn?: string[];
|
|
3785
|
+
/** Required. The namespace of the restrict in the index. */
|
|
3786
|
+
namespace?: string;
|
|
3787
|
+
}
|
|
3730
3788
|
interface GoogleCloudAiplatformV1beta1ImportModelEvaluationRequest {
|
|
3731
3789
|
/** Required. Model evaluation resource to be imported. */
|
|
3732
3790
|
modelEvaluation?: GoogleCloudAiplatformV1beta1ModelEvaluation;
|
|
@@ -5701,6 +5759,8 @@ declare namespace gapi.client {
|
|
|
5701
5759
|
notebookRuntimeTemplate?: string;
|
|
5702
5760
|
}
|
|
5703
5761
|
interface GoogleCloudAiplatformV1beta1NotebookSoftwareConfig {
|
|
5762
|
+
/** Optional. Google-managed NotebookRuntime colab image. */
|
|
5763
|
+
colabImage?: GoogleCloudAiplatformV1beta1ColabImage;
|
|
5704
5764
|
/** Optional. Environment variables to be passed to the container. Maximum limit is 100. */
|
|
5705
5765
|
env?: GoogleCloudAiplatformV1beta1EnvVar[];
|
|
5706
5766
|
/** Optional. Post startup script config. */
|
|
@@ -6252,6 +6312,10 @@ declare namespace gapi.client {
|
|
|
6252
6312
|
projectId?: string;
|
|
6253
6313
|
}
|
|
6254
6314
|
interface GoogleCloudAiplatformV1beta1PSCAutomationConfig {
|
|
6315
|
+
/** Output only. Forwarding rule created by the PSC service automation. Note for Vector search, use IndexPrivateEndpoint instead. */
|
|
6316
|
+
forwardingRule?: string;
|
|
6317
|
+
/** Output only. IP address rule created by the PSC service automation. Note for Vector search, use IndexPrivateEndpoint instead. */
|
|
6318
|
+
ipAddress?: string;
|
|
6255
6319
|
/** Required. The full name of the Google Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert): `projects/{project}/global/networks/{network}`. Where {project} is a project number, as in '12345', and {network} is network name. */
|
|
6256
6320
|
network?: string;
|
|
6257
6321
|
/** Required. Project id used to create forwarding rule. */
|
|
@@ -6660,6 +6724,8 @@ declare namespace gapi.client {
|
|
|
6660
6724
|
interface GoogleCloudAiplatformV1beta1RagCorpus {
|
|
6661
6725
|
/** Output only. RagCorpus state. */
|
|
6662
6726
|
corpusStatus?: GoogleCloudAiplatformV1beta1CorpusStatus;
|
|
6727
|
+
/** Optional. The corpus type config of the RagCorpus. */
|
|
6728
|
+
corpusTypeConfig?: GoogleCloudAiplatformV1beta1RagCorpusCorpusTypeConfig;
|
|
6663
6729
|
/** Output only. Timestamp when this RagCorpus was created. */
|
|
6664
6730
|
createTime?: string;
|
|
6665
6731
|
/** Optional. The description of the RagCorpus. */
|
|
@@ -6683,6 +6749,17 @@ declare namespace gapi.client {
|
|
|
6683
6749
|
/** Optional. Immutable. The config for the Vertex AI Search. */
|
|
6684
6750
|
vertexAiSearchConfig?: GoogleCloudAiplatformV1beta1VertexAiSearchConfig;
|
|
6685
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
|
+
}
|
|
6686
6763
|
interface GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig {
|
|
6687
6764
|
/** Configuration for hybrid search. */
|
|
6688
6765
|
hybridSearchConfig?: GoogleCloudAiplatformV1beta1RagEmbeddingModelConfigHybridSearchConfig;
|
|
@@ -9121,7 +9198,7 @@ declare namespace gapi.client {
|
|
|
9121
9198
|
createTime?: string;
|
|
9122
9199
|
/** Optional. The display name of the session. */
|
|
9123
9200
|
displayName?: string;
|
|
9124
|
-
/**
|
|
9201
|
+
/** Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
|
|
9125
9202
|
name?: string;
|
|
9126
9203
|
/** Optional. Session specific memory which stores key conversation points. */
|
|
9127
9204
|
sessionState?: {[P in string]: any};
|
|
@@ -9145,7 +9222,7 @@ declare namespace gapi.client {
|
|
|
9145
9222
|
eventMetadata?: GoogleCloudAiplatformV1beta1EventMetadata;
|
|
9146
9223
|
/** Required. The invocation id of the event, multiple events can have the same invocation id. */
|
|
9147
9224
|
invocationId?: string;
|
|
9148
|
-
/**
|
|
9225
|
+
/** Identifier. The resource name of the event. Format:`projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}/events/{event}`. */
|
|
9149
9226
|
name?: string;
|
|
9150
9227
|
/** Required. Timestamp when the event was created on client side. */
|
|
9151
9228
|
timestamp?: string;
|
|
@@ -9710,9 +9787,9 @@ declare namespace gapi.client {
|
|
|
9710
9787
|
exportLastCheckpointOnly?: boolean;
|
|
9711
9788
|
/** Optional. Hyperparameters for SFT. */
|
|
9712
9789
|
hyperParameters?: GoogleCloudAiplatformV1beta1SupervisedHyperParameters;
|
|
9713
|
-
/** Required.
|
|
9790
|
+
/** Required. Training dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
|
|
9714
9791
|
trainingDatasetUri?: string;
|
|
9715
|
-
/** Optional.
|
|
9792
|
+
/** Optional. Validation dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
|
|
9716
9793
|
validationDatasetUri?: string;
|
|
9717
9794
|
}
|
|
9718
9795
|
interface GoogleCloudAiplatformV1beta1SyncFeatureViewRequest {}
|
|
@@ -10538,6 +10615,8 @@ declare namespace gapi.client {
|
|
|
10538
10615
|
ragRetrievalConfig?: GoogleCloudAiplatformV1beta1RagRetrievalConfig;
|
|
10539
10616
|
/** Optional. Number of top k results to return from the selected corpora. */
|
|
10540
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;
|
|
10541
10620
|
/** Optional. Only return results with vector distance smaller than the threshold. */
|
|
10542
10621
|
vectorDistanceThreshold?: number;
|
|
10543
10622
|
}
|
|
@@ -11488,6 +11567,64 @@ declare namespace gapi.client {
|
|
|
11488
11567
|
},
|
|
11489
11568
|
body: GoogleCloudAiplatformV1beta1CountTokensRequest,
|
|
11490
11569
|
): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
|
|
11570
|
+
/** Fetch an asynchronous online prediction operation. */
|
|
11571
|
+
fetchPredictOperation(request: {
|
|
11572
|
+
/** V1 error format. */
|
|
11573
|
+
'$.xgafv'?: string;
|
|
11574
|
+
/** OAuth access token. */
|
|
11575
|
+
access_token?: string;
|
|
11576
|
+
/** Data format for response. */
|
|
11577
|
+
alt?: string;
|
|
11578
|
+
/** JSONP */
|
|
11579
|
+
callback?: string;
|
|
11580
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
|
|
11581
|
+
endpoint: string;
|
|
11582
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11583
|
+
fields?: string;
|
|
11584
|
+
/** 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. */
|
|
11585
|
+
key?: string;
|
|
11586
|
+
/** OAuth 2.0 token for the current user. */
|
|
11587
|
+
oauth_token?: string;
|
|
11588
|
+
/** Returns response with indentations and line breaks. */
|
|
11589
|
+
prettyPrint?: boolean;
|
|
11590
|
+
/** 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. */
|
|
11591
|
+
quotaUser?: string;
|
|
11592
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11593
|
+
upload_protocol?: string;
|
|
11594
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11595
|
+
uploadType?: string;
|
|
11596
|
+
/** Request body */
|
|
11597
|
+
resource: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest;
|
|
11598
|
+
}): Request<GoogleLongrunningOperation>;
|
|
11599
|
+
fetchPredictOperation(
|
|
11600
|
+
request: {
|
|
11601
|
+
/** V1 error format. */
|
|
11602
|
+
'$.xgafv'?: string;
|
|
11603
|
+
/** OAuth access token. */
|
|
11604
|
+
access_token?: string;
|
|
11605
|
+
/** Data format for response. */
|
|
11606
|
+
alt?: string;
|
|
11607
|
+
/** JSONP */
|
|
11608
|
+
callback?: string;
|
|
11609
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
|
|
11610
|
+
endpoint: string;
|
|
11611
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11612
|
+
fields?: string;
|
|
11613
|
+
/** 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. */
|
|
11614
|
+
key?: string;
|
|
11615
|
+
/** OAuth 2.0 token for the current user. */
|
|
11616
|
+
oauth_token?: string;
|
|
11617
|
+
/** Returns response with indentations and line breaks. */
|
|
11618
|
+
prettyPrint?: boolean;
|
|
11619
|
+
/** 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. */
|
|
11620
|
+
quotaUser?: string;
|
|
11621
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11622
|
+
upload_protocol?: string;
|
|
11623
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11624
|
+
uploadType?: string;
|
|
11625
|
+
},
|
|
11626
|
+
body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest,
|
|
11627
|
+
): Request<GoogleLongrunningOperation>;
|
|
11491
11628
|
/** Generate content with multimodal inputs. */
|
|
11492
11629
|
generateContent(request: {
|
|
11493
11630
|
/** V1 error format. */
|
|
@@ -11604,6 +11741,63 @@ declare namespace gapi.client {
|
|
|
11604
11741
|
},
|
|
11605
11742
|
body: GoogleCloudAiplatformV1beta1PredictRequest,
|
|
11606
11743
|
): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
|
|
11744
|
+
predictLongRunning(request: {
|
|
11745
|
+
/** V1 error format. */
|
|
11746
|
+
'$.xgafv'?: string;
|
|
11747
|
+
/** OAuth access token. */
|
|
11748
|
+
access_token?: string;
|
|
11749
|
+
/** Data format for response. */
|
|
11750
|
+
alt?: string;
|
|
11751
|
+
/** JSONP */
|
|
11752
|
+
callback?: string;
|
|
11753
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
|
|
11754
|
+
endpoint: string;
|
|
11755
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11756
|
+
fields?: string;
|
|
11757
|
+
/** 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. */
|
|
11758
|
+
key?: string;
|
|
11759
|
+
/** OAuth 2.0 token for the current user. */
|
|
11760
|
+
oauth_token?: string;
|
|
11761
|
+
/** Returns response with indentations and line breaks. */
|
|
11762
|
+
prettyPrint?: boolean;
|
|
11763
|
+
/** 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. */
|
|
11764
|
+
quotaUser?: string;
|
|
11765
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11766
|
+
upload_protocol?: string;
|
|
11767
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11768
|
+
uploadType?: string;
|
|
11769
|
+
/** Request body */
|
|
11770
|
+
resource: GoogleCloudAiplatformV1beta1PredictLongRunningRequest;
|
|
11771
|
+
}): Request<GoogleLongrunningOperation>;
|
|
11772
|
+
predictLongRunning(
|
|
11773
|
+
request: {
|
|
11774
|
+
/** V1 error format. */
|
|
11775
|
+
'$.xgafv'?: string;
|
|
11776
|
+
/** OAuth access token. */
|
|
11777
|
+
access_token?: string;
|
|
11778
|
+
/** Data format for response. */
|
|
11779
|
+
alt?: string;
|
|
11780
|
+
/** JSONP */
|
|
11781
|
+
callback?: string;
|
|
11782
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
|
|
11783
|
+
endpoint: string;
|
|
11784
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11785
|
+
fields?: string;
|
|
11786
|
+
/** 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. */
|
|
11787
|
+
key?: string;
|
|
11788
|
+
/** OAuth 2.0 token for the current user. */
|
|
11789
|
+
oauth_token?: string;
|
|
11790
|
+
/** Returns response with indentations and line breaks. */
|
|
11791
|
+
prettyPrint?: boolean;
|
|
11792
|
+
/** 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. */
|
|
11793
|
+
quotaUser?: string;
|
|
11794
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11795
|
+
upload_protocol?: string;
|
|
11796
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11797
|
+
uploadType?: string;
|
|
11798
|
+
},
|
|
11799
|
+
body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest,
|
|
11800
|
+
): Request<GoogleLongrunningOperation>;
|
|
11607
11801
|
/** Generate content with multimodal inputs with streaming support. */
|
|
11608
11802
|
streamGenerateContent(request: {
|
|
11609
11803
|
/** V1 error format. */
|
|
@@ -23662,6 +23856,64 @@ declare namespace gapi.client {
|
|
|
23662
23856
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23663
23857
|
uploadType?: string;
|
|
23664
23858
|
}): Request<GoogleCloudAiplatformV1beta1Index>;
|
|
23859
|
+
/** Imports an Index from an external source (e.g., BigQuery). */
|
|
23860
|
+
import(request: {
|
|
23861
|
+
/** V1 error format. */
|
|
23862
|
+
'$.xgafv'?: string;
|
|
23863
|
+
/** OAuth access token. */
|
|
23864
|
+
access_token?: string;
|
|
23865
|
+
/** Data format for response. */
|
|
23866
|
+
alt?: string;
|
|
23867
|
+
/** JSONP */
|
|
23868
|
+
callback?: string;
|
|
23869
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
23870
|
+
fields?: string;
|
|
23871
|
+
/** 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. */
|
|
23872
|
+
key?: string;
|
|
23873
|
+
/** Required. The name of the Index resource to import data to. Format: `projects/{project}/locations/{location}/indexes/{index}` */
|
|
23874
|
+
name: string;
|
|
23875
|
+
/** OAuth 2.0 token for the current user. */
|
|
23876
|
+
oauth_token?: string;
|
|
23877
|
+
/** Returns response with indentations and line breaks. */
|
|
23878
|
+
prettyPrint?: boolean;
|
|
23879
|
+
/** 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. */
|
|
23880
|
+
quotaUser?: string;
|
|
23881
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
23882
|
+
upload_protocol?: string;
|
|
23883
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23884
|
+
uploadType?: string;
|
|
23885
|
+
/** Request body */
|
|
23886
|
+
resource: GoogleCloudAiplatformV1beta1ImportIndexRequest;
|
|
23887
|
+
}): Request<GoogleLongrunningOperation>;
|
|
23888
|
+
import(
|
|
23889
|
+
request: {
|
|
23890
|
+
/** V1 error format. */
|
|
23891
|
+
'$.xgafv'?: string;
|
|
23892
|
+
/** OAuth access token. */
|
|
23893
|
+
access_token?: string;
|
|
23894
|
+
/** Data format for response. */
|
|
23895
|
+
alt?: string;
|
|
23896
|
+
/** JSONP */
|
|
23897
|
+
callback?: string;
|
|
23898
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
23899
|
+
fields?: string;
|
|
23900
|
+
/** 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. */
|
|
23901
|
+
key?: string;
|
|
23902
|
+
/** Required. The name of the Index resource to import data to. Format: `projects/{project}/locations/{location}/indexes/{index}` */
|
|
23903
|
+
name: string;
|
|
23904
|
+
/** OAuth 2.0 token for the current user. */
|
|
23905
|
+
oauth_token?: string;
|
|
23906
|
+
/** Returns response with indentations and line breaks. */
|
|
23907
|
+
prettyPrint?: boolean;
|
|
23908
|
+
/** 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. */
|
|
23909
|
+
quotaUser?: string;
|
|
23910
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
23911
|
+
upload_protocol?: string;
|
|
23912
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
23913
|
+
uploadType?: string;
|
|
23914
|
+
},
|
|
23915
|
+
body: GoogleCloudAiplatformV1beta1ImportIndexRequest,
|
|
23916
|
+
): Request<GoogleLongrunningOperation>;
|
|
23665
23917
|
/** Lists Indexes in a Location. */
|
|
23666
23918
|
list(request?: {
|
|
23667
23919
|
/** V1 error format. */
|
|
@@ -32942,6 +33194,154 @@ declare namespace gapi.client {
|
|
|
32942
33194
|
uploadType?: string;
|
|
32943
33195
|
}): Request<GoogleLongrunningOperation>;
|
|
32944
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
|
+
}
|
|
32945
33345
|
interface OperationsResource {
|
|
32946
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`. */
|
|
32947
33347
|
cancel(request?: {
|
|
@@ -33123,6 +33523,151 @@ declare namespace gapi.client {
|
|
|
33123
33523
|
uploadType?: string;
|
|
33124
33524
|
}): Request<GoogleCloudAiplatformV1beta1ListEventsResponse>;
|
|
33125
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
|
+
}
|
|
33126
33671
|
interface SessionsResource {
|
|
33127
33672
|
/** Appends an event to a given session. */
|
|
33128
33673
|
appendEvent(request: {
|
|
@@ -33343,7 +33888,7 @@ declare namespace gapi.client {
|
|
|
33343
33888
|
fields?: string;
|
|
33344
33889
|
/** 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. */
|
|
33345
33890
|
key?: string;
|
|
33346
|
-
/**
|
|
33891
|
+
/** Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
|
|
33347
33892
|
name: string;
|
|
33348
33893
|
/** OAuth 2.0 token for the current user. */
|
|
33349
33894
|
oauth_token?: string;
|
|
@@ -33374,7 +33919,7 @@ declare namespace gapi.client {
|
|
|
33374
33919
|
fields?: string;
|
|
33375
33920
|
/** 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. */
|
|
33376
33921
|
key?: string;
|
|
33377
|
-
/**
|
|
33922
|
+
/** Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
|
|
33378
33923
|
name: string;
|
|
33379
33924
|
/** OAuth 2.0 token for the current user. */
|
|
33380
33925
|
oauth_token?: string;
|
|
@@ -33392,6 +33937,7 @@ declare namespace gapi.client {
|
|
|
33392
33937
|
body: GoogleCloudAiplatformV1beta1Session,
|
|
33393
33938
|
): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
33394
33939
|
events: EventsResource;
|
|
33940
|
+
operations: OperationsResource;
|
|
33395
33941
|
}
|
|
33396
33942
|
interface ReasoningEnginesResource {
|
|
33397
33943
|
/** Creates a reasoning engine. */
|
|
@@ -33719,6 +34265,7 @@ declare namespace gapi.client {
|
|
|
33719
34265
|
},
|
|
33720
34266
|
body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest,
|
|
33721
34267
|
): Request<GoogleApiHttpBody>;
|
|
34268
|
+
memories: MemoriesResource;
|
|
33722
34269
|
operations: OperationsResource;
|
|
33723
34270
|
sandboxEnvironments: SandboxEnvironmentsResource;
|
|
33724
34271
|
sessions: SessionsResource;
|
|
@@ -39059,6 +39606,64 @@ declare namespace gapi.client {
|
|
|
39059
39606
|
},
|
|
39060
39607
|
body: GoogleCloudAiplatformV1beta1CountTokensRequest,
|
|
39061
39608
|
): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
|
|
39609
|
+
/** Fetch an asynchronous online prediction operation. */
|
|
39610
|
+
fetchPredictOperation(request: {
|
|
39611
|
+
/** V1 error format. */
|
|
39612
|
+
'$.xgafv'?: string;
|
|
39613
|
+
/** OAuth access token. */
|
|
39614
|
+
access_token?: string;
|
|
39615
|
+
/** Data format for response. */
|
|
39616
|
+
alt?: string;
|
|
39617
|
+
/** JSONP */
|
|
39618
|
+
callback?: string;
|
|
39619
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
|
|
39620
|
+
endpoint: string;
|
|
39621
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
39622
|
+
fields?: string;
|
|
39623
|
+
/** 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. */
|
|
39624
|
+
key?: string;
|
|
39625
|
+
/** OAuth 2.0 token for the current user. */
|
|
39626
|
+
oauth_token?: string;
|
|
39627
|
+
/** Returns response with indentations and line breaks. */
|
|
39628
|
+
prettyPrint?: boolean;
|
|
39629
|
+
/** 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. */
|
|
39630
|
+
quotaUser?: string;
|
|
39631
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39632
|
+
upload_protocol?: string;
|
|
39633
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
39634
|
+
uploadType?: string;
|
|
39635
|
+
/** Request body */
|
|
39636
|
+
resource: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest;
|
|
39637
|
+
}): Request<GoogleLongrunningOperation>;
|
|
39638
|
+
fetchPredictOperation(
|
|
39639
|
+
request: {
|
|
39640
|
+
/** V1 error format. */
|
|
39641
|
+
'$.xgafv'?: string;
|
|
39642
|
+
/** OAuth access token. */
|
|
39643
|
+
access_token?: string;
|
|
39644
|
+
/** Data format for response. */
|
|
39645
|
+
alt?: string;
|
|
39646
|
+
/** JSONP */
|
|
39647
|
+
callback?: string;
|
|
39648
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
|
|
39649
|
+
endpoint: string;
|
|
39650
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
39651
|
+
fields?: string;
|
|
39652
|
+
/** 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. */
|
|
39653
|
+
key?: string;
|
|
39654
|
+
/** OAuth 2.0 token for the current user. */
|
|
39655
|
+
oauth_token?: string;
|
|
39656
|
+
/** Returns response with indentations and line breaks. */
|
|
39657
|
+
prettyPrint?: boolean;
|
|
39658
|
+
/** 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. */
|
|
39659
|
+
quotaUser?: string;
|
|
39660
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39661
|
+
upload_protocol?: string;
|
|
39662
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
39663
|
+
uploadType?: string;
|
|
39664
|
+
},
|
|
39665
|
+
body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest,
|
|
39666
|
+
): Request<GoogleLongrunningOperation>;
|
|
39062
39667
|
/** Generate content with multimodal inputs. */
|
|
39063
39668
|
generateContent(request: {
|
|
39064
39669
|
/** V1 error format. */
|
|
@@ -39253,6 +39858,63 @@ declare namespace gapi.client {
|
|
|
39253
39858
|
},
|
|
39254
39859
|
body: GoogleCloudAiplatformV1beta1PredictRequest,
|
|
39255
39860
|
): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
|
|
39861
|
+
predictLongRunning(request: {
|
|
39862
|
+
/** V1 error format. */
|
|
39863
|
+
'$.xgafv'?: string;
|
|
39864
|
+
/** OAuth access token. */
|
|
39865
|
+
access_token?: string;
|
|
39866
|
+
/** Data format for response. */
|
|
39867
|
+
alt?: string;
|
|
39868
|
+
/** JSONP */
|
|
39869
|
+
callback?: string;
|
|
39870
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
|
|
39871
|
+
endpoint: string;
|
|
39872
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
39873
|
+
fields?: string;
|
|
39874
|
+
/** 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. */
|
|
39875
|
+
key?: string;
|
|
39876
|
+
/** OAuth 2.0 token for the current user. */
|
|
39877
|
+
oauth_token?: string;
|
|
39878
|
+
/** Returns response with indentations and line breaks. */
|
|
39879
|
+
prettyPrint?: boolean;
|
|
39880
|
+
/** 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. */
|
|
39881
|
+
quotaUser?: string;
|
|
39882
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39883
|
+
upload_protocol?: string;
|
|
39884
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
39885
|
+
uploadType?: string;
|
|
39886
|
+
/** Request body */
|
|
39887
|
+
resource: GoogleCloudAiplatformV1beta1PredictLongRunningRequest;
|
|
39888
|
+
}): Request<GoogleLongrunningOperation>;
|
|
39889
|
+
predictLongRunning(
|
|
39890
|
+
request: {
|
|
39891
|
+
/** V1 error format. */
|
|
39892
|
+
'$.xgafv'?: string;
|
|
39893
|
+
/** OAuth access token. */
|
|
39894
|
+
access_token?: string;
|
|
39895
|
+
/** Data format for response. */
|
|
39896
|
+
alt?: string;
|
|
39897
|
+
/** JSONP */
|
|
39898
|
+
callback?: string;
|
|
39899
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
|
|
39900
|
+
endpoint: string;
|
|
39901
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
39902
|
+
fields?: string;
|
|
39903
|
+
/** 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. */
|
|
39904
|
+
key?: string;
|
|
39905
|
+
/** OAuth 2.0 token for the current user. */
|
|
39906
|
+
oauth_token?: string;
|
|
39907
|
+
/** Returns response with indentations and line breaks. */
|
|
39908
|
+
prettyPrint?: boolean;
|
|
39909
|
+
/** 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. */
|
|
39910
|
+
quotaUser?: string;
|
|
39911
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39912
|
+
upload_protocol?: string;
|
|
39913
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
39914
|
+
uploadType?: string;
|
|
39915
|
+
},
|
|
39916
|
+
body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest,
|
|
39917
|
+
): Request<GoogleLongrunningOperation>;
|
|
39256
39918
|
/** Generate content with multimodal inputs with streaming support. */
|
|
39257
39919
|
streamGenerateContent(request: {
|
|
39258
39920
|
/** V1 error format. */
|
|
@@ -39315,6 +39977,637 @@ declare namespace gapi.client {
|
|
|
39315
39977
|
interface PublishersResource {
|
|
39316
39978
|
models: ModelsResource;
|
|
39317
39979
|
}
|
|
39980
|
+
interface EventsResource {
|
|
39981
|
+
/** Lists Events in a given session. */
|
|
39982
|
+
list(request?: {
|
|
39983
|
+
/** V1 error format. */
|
|
39984
|
+
'$.xgafv'?: string;
|
|
39985
|
+
/** OAuth access token. */
|
|
39986
|
+
access_token?: string;
|
|
39987
|
+
/** Data format for response. */
|
|
39988
|
+
alt?: string;
|
|
39989
|
+
/** JSONP */
|
|
39990
|
+
callback?: string;
|
|
39991
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
39992
|
+
fields?: string;
|
|
39993
|
+
/** 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. */
|
|
39994
|
+
key?: string;
|
|
39995
|
+
/** OAuth 2.0 token for the current user. */
|
|
39996
|
+
oauth_token?: string;
|
|
39997
|
+
/** Optional. The maximum number of events to return. The service may return fewer than this value. If unspecified, at most 100 events will be returned. These events are ordered by timestamp in ascending order. */
|
|
39998
|
+
pageSize?: number;
|
|
39999
|
+
/** Optional. The next_page_token value returned from a previous list SessionService.ListEvents call. */
|
|
40000
|
+
pageToken?: string;
|
|
40001
|
+
/** Required. The resource name of the session to list events from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
40002
|
+
parent: string;
|
|
40003
|
+
/** Returns response with indentations and line breaks. */
|
|
40004
|
+
prettyPrint?: boolean;
|
|
40005
|
+
/** 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. */
|
|
40006
|
+
quotaUser?: string;
|
|
40007
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40008
|
+
upload_protocol?: string;
|
|
40009
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40010
|
+
uploadType?: string;
|
|
40011
|
+
}): Request<GoogleCloudAiplatformV1beta1ListEventsResponse>;
|
|
40012
|
+
}
|
|
40013
|
+
interface SessionsResource {
|
|
40014
|
+
/** Appends an event to a given session. */
|
|
40015
|
+
appendEvent(request: {
|
|
40016
|
+
/** V1 error format. */
|
|
40017
|
+
'$.xgafv'?: string;
|
|
40018
|
+
/** OAuth access token. */
|
|
40019
|
+
access_token?: string;
|
|
40020
|
+
/** Data format for response. */
|
|
40021
|
+
alt?: string;
|
|
40022
|
+
/** JSONP */
|
|
40023
|
+
callback?: string;
|
|
40024
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40025
|
+
fields?: string;
|
|
40026
|
+
/** 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. */
|
|
40027
|
+
key?: string;
|
|
40028
|
+
/** Required. The resource name of the session to append event to. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
40029
|
+
name: string;
|
|
40030
|
+
/** OAuth 2.0 token for the current user. */
|
|
40031
|
+
oauth_token?: string;
|
|
40032
|
+
/** Returns response with indentations and line breaks. */
|
|
40033
|
+
prettyPrint?: boolean;
|
|
40034
|
+
/** 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. */
|
|
40035
|
+
quotaUser?: string;
|
|
40036
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40037
|
+
upload_protocol?: string;
|
|
40038
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40039
|
+
uploadType?: string;
|
|
40040
|
+
/** Request body */
|
|
40041
|
+
resource: GoogleCloudAiplatformV1beta1SessionEvent;
|
|
40042
|
+
}): Request<{}>;
|
|
40043
|
+
appendEvent(
|
|
40044
|
+
request: {
|
|
40045
|
+
/** V1 error format. */
|
|
40046
|
+
'$.xgafv'?: string;
|
|
40047
|
+
/** OAuth access token. */
|
|
40048
|
+
access_token?: string;
|
|
40049
|
+
/** Data format for response. */
|
|
40050
|
+
alt?: string;
|
|
40051
|
+
/** JSONP */
|
|
40052
|
+
callback?: string;
|
|
40053
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40054
|
+
fields?: string;
|
|
40055
|
+
/** 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. */
|
|
40056
|
+
key?: string;
|
|
40057
|
+
/** Required. The resource name of the session to append event to. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
40058
|
+
name: string;
|
|
40059
|
+
/** OAuth 2.0 token for the current user. */
|
|
40060
|
+
oauth_token?: string;
|
|
40061
|
+
/** Returns response with indentations and line breaks. */
|
|
40062
|
+
prettyPrint?: boolean;
|
|
40063
|
+
/** 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. */
|
|
40064
|
+
quotaUser?: string;
|
|
40065
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40066
|
+
upload_protocol?: string;
|
|
40067
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40068
|
+
uploadType?: string;
|
|
40069
|
+
},
|
|
40070
|
+
body: GoogleCloudAiplatformV1beta1SessionEvent,
|
|
40071
|
+
): Request<{}>;
|
|
40072
|
+
/** Creates a new Session. */
|
|
40073
|
+
create(request: {
|
|
40074
|
+
/** V1 error format. */
|
|
40075
|
+
'$.xgafv'?: string;
|
|
40076
|
+
/** OAuth access token. */
|
|
40077
|
+
access_token?: string;
|
|
40078
|
+
/** Data format for response. */
|
|
40079
|
+
alt?: string;
|
|
40080
|
+
/** JSONP */
|
|
40081
|
+
callback?: string;
|
|
40082
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40083
|
+
fields?: string;
|
|
40084
|
+
/** 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. */
|
|
40085
|
+
key?: string;
|
|
40086
|
+
/** OAuth 2.0 token for the current user. */
|
|
40087
|
+
oauth_token?: string;
|
|
40088
|
+
/** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40089
|
+
parent: string;
|
|
40090
|
+
/** Returns response with indentations and line breaks. */
|
|
40091
|
+
prettyPrint?: boolean;
|
|
40092
|
+
/** 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. */
|
|
40093
|
+
quotaUser?: string;
|
|
40094
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40095
|
+
upload_protocol?: string;
|
|
40096
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40097
|
+
uploadType?: string;
|
|
40098
|
+
/** Request body */
|
|
40099
|
+
resource: GoogleCloudAiplatformV1beta1Session;
|
|
40100
|
+
}): Request<GoogleLongrunningOperation>;
|
|
40101
|
+
create(
|
|
40102
|
+
request: {
|
|
40103
|
+
/** V1 error format. */
|
|
40104
|
+
'$.xgafv'?: string;
|
|
40105
|
+
/** OAuth access token. */
|
|
40106
|
+
access_token?: string;
|
|
40107
|
+
/** Data format for response. */
|
|
40108
|
+
alt?: string;
|
|
40109
|
+
/** JSONP */
|
|
40110
|
+
callback?: string;
|
|
40111
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40112
|
+
fields?: string;
|
|
40113
|
+
/** 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. */
|
|
40114
|
+
key?: string;
|
|
40115
|
+
/** OAuth 2.0 token for the current user. */
|
|
40116
|
+
oauth_token?: string;
|
|
40117
|
+
/** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40118
|
+
parent: string;
|
|
40119
|
+
/** Returns response with indentations and line breaks. */
|
|
40120
|
+
prettyPrint?: boolean;
|
|
40121
|
+
/** 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. */
|
|
40122
|
+
quotaUser?: string;
|
|
40123
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40124
|
+
upload_protocol?: string;
|
|
40125
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40126
|
+
uploadType?: string;
|
|
40127
|
+
},
|
|
40128
|
+
body: GoogleCloudAiplatformV1beta1Session,
|
|
40129
|
+
): Request<GoogleLongrunningOperation>;
|
|
40130
|
+
/** Deletes details of the specific Session. */
|
|
40131
|
+
delete(request?: {
|
|
40132
|
+
/** V1 error format. */
|
|
40133
|
+
'$.xgafv'?: string;
|
|
40134
|
+
/** OAuth access token. */
|
|
40135
|
+
access_token?: string;
|
|
40136
|
+
/** Data format for response. */
|
|
40137
|
+
alt?: string;
|
|
40138
|
+
/** JSONP */
|
|
40139
|
+
callback?: string;
|
|
40140
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40141
|
+
fields?: string;
|
|
40142
|
+
/** 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. */
|
|
40143
|
+
key?: string;
|
|
40144
|
+
/** Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
40145
|
+
name: string;
|
|
40146
|
+
/** OAuth 2.0 token for the current user. */
|
|
40147
|
+
oauth_token?: string;
|
|
40148
|
+
/** Returns response with indentations and line breaks. */
|
|
40149
|
+
prettyPrint?: boolean;
|
|
40150
|
+
/** 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. */
|
|
40151
|
+
quotaUser?: string;
|
|
40152
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40153
|
+
upload_protocol?: string;
|
|
40154
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40155
|
+
uploadType?: string;
|
|
40156
|
+
}): Request<GoogleLongrunningOperation>;
|
|
40157
|
+
/** Gets details of the specific Session. */
|
|
40158
|
+
get(request?: {
|
|
40159
|
+
/** V1 error format. */
|
|
40160
|
+
'$.xgafv'?: string;
|
|
40161
|
+
/** OAuth access token. */
|
|
40162
|
+
access_token?: string;
|
|
40163
|
+
/** Data format for response. */
|
|
40164
|
+
alt?: string;
|
|
40165
|
+
/** JSONP */
|
|
40166
|
+
callback?: string;
|
|
40167
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40168
|
+
fields?: string;
|
|
40169
|
+
/** 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. */
|
|
40170
|
+
key?: string;
|
|
40171
|
+
/** Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
40172
|
+
name: string;
|
|
40173
|
+
/** OAuth 2.0 token for the current user. */
|
|
40174
|
+
oauth_token?: string;
|
|
40175
|
+
/** Returns response with indentations and line breaks. */
|
|
40176
|
+
prettyPrint?: boolean;
|
|
40177
|
+
/** 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. */
|
|
40178
|
+
quotaUser?: string;
|
|
40179
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40180
|
+
upload_protocol?: string;
|
|
40181
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40182
|
+
uploadType?: string;
|
|
40183
|
+
}): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
40184
|
+
/** Lists Sessions in a given reasoning engine. */
|
|
40185
|
+
list(request?: {
|
|
40186
|
+
/** V1 error format. */
|
|
40187
|
+
'$.xgafv'?: string;
|
|
40188
|
+
/** OAuth access token. */
|
|
40189
|
+
access_token?: string;
|
|
40190
|
+
/** Data format for response. */
|
|
40191
|
+
alt?: string;
|
|
40192
|
+
/** JSONP */
|
|
40193
|
+
callback?: string;
|
|
40194
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40195
|
+
fields?: string;
|
|
40196
|
+
/** Optional. The standard list filter. Supported fields: * `display_name` Example: `display_name=abc`. */
|
|
40197
|
+
filter?: string;
|
|
40198
|
+
/** 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. */
|
|
40199
|
+
key?: string;
|
|
40200
|
+
/** OAuth 2.0 token for the current user. */
|
|
40201
|
+
oauth_token?: string;
|
|
40202
|
+
/** Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `create_time` * `update_time` Example: `create_time desc`. */
|
|
40203
|
+
orderBy?: string;
|
|
40204
|
+
/** Optional. The maximum number of sessions to return. The service may return fewer than this value. If unspecified, at most 100 sessions will be returned. */
|
|
40205
|
+
pageSize?: number;
|
|
40206
|
+
/** Optional. The next_page_token value returned from a previous list SessionService.ListSessions call. */
|
|
40207
|
+
pageToken?: string;
|
|
40208
|
+
/** Required. The resource name of the location to list sessions from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40209
|
+
parent: string;
|
|
40210
|
+
/** Returns response with indentations and line breaks. */
|
|
40211
|
+
prettyPrint?: boolean;
|
|
40212
|
+
/** 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. */
|
|
40213
|
+
quotaUser?: string;
|
|
40214
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40215
|
+
upload_protocol?: string;
|
|
40216
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40217
|
+
uploadType?: string;
|
|
40218
|
+
}): Request<GoogleCloudAiplatformV1beta1ListSessionsResponse>;
|
|
40219
|
+
/** Updates the specific Session. */
|
|
40220
|
+
patch(request: {
|
|
40221
|
+
/** V1 error format. */
|
|
40222
|
+
'$.xgafv'?: string;
|
|
40223
|
+
/** OAuth access token. */
|
|
40224
|
+
access_token?: string;
|
|
40225
|
+
/** Data format for response. */
|
|
40226
|
+
alt?: string;
|
|
40227
|
+
/** JSONP */
|
|
40228
|
+
callback?: string;
|
|
40229
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40230
|
+
fields?: string;
|
|
40231
|
+
/** 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. */
|
|
40232
|
+
key?: string;
|
|
40233
|
+
/** Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
|
|
40234
|
+
name: string;
|
|
40235
|
+
/** OAuth 2.0 token for the current user. */
|
|
40236
|
+
oauth_token?: string;
|
|
40237
|
+
/** Returns response with indentations and line breaks. */
|
|
40238
|
+
prettyPrint?: boolean;
|
|
40239
|
+
/** 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. */
|
|
40240
|
+
quotaUser?: string;
|
|
40241
|
+
/** Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated. */
|
|
40242
|
+
updateMask?: string;
|
|
40243
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40244
|
+
upload_protocol?: string;
|
|
40245
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40246
|
+
uploadType?: string;
|
|
40247
|
+
/** Request body */
|
|
40248
|
+
resource: GoogleCloudAiplatformV1beta1Session;
|
|
40249
|
+
}): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
40250
|
+
patch(
|
|
40251
|
+
request: {
|
|
40252
|
+
/** V1 error format. */
|
|
40253
|
+
'$.xgafv'?: string;
|
|
40254
|
+
/** OAuth access token. */
|
|
40255
|
+
access_token?: string;
|
|
40256
|
+
/** Data format for response. */
|
|
40257
|
+
alt?: string;
|
|
40258
|
+
/** JSONP */
|
|
40259
|
+
callback?: string;
|
|
40260
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40261
|
+
fields?: string;
|
|
40262
|
+
/** 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. */
|
|
40263
|
+
key?: string;
|
|
40264
|
+
/** Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
|
|
40265
|
+
name: string;
|
|
40266
|
+
/** OAuth 2.0 token for the current user. */
|
|
40267
|
+
oauth_token?: string;
|
|
40268
|
+
/** Returns response with indentations and line breaks. */
|
|
40269
|
+
prettyPrint?: boolean;
|
|
40270
|
+
/** 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. */
|
|
40271
|
+
quotaUser?: string;
|
|
40272
|
+
/** Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated. */
|
|
40273
|
+
updateMask?: string;
|
|
40274
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40275
|
+
upload_protocol?: string;
|
|
40276
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40277
|
+
uploadType?: string;
|
|
40278
|
+
},
|
|
40279
|
+
body: GoogleCloudAiplatformV1beta1Session,
|
|
40280
|
+
): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
40281
|
+
events: EventsResource;
|
|
40282
|
+
}
|
|
40283
|
+
interface ReasoningEnginesResource {
|
|
40284
|
+
/** Creates a reasoning engine. */
|
|
40285
|
+
create(request: {
|
|
40286
|
+
/** V1 error format. */
|
|
40287
|
+
'$.xgafv'?: string;
|
|
40288
|
+
/** OAuth access token. */
|
|
40289
|
+
access_token?: string;
|
|
40290
|
+
/** Data format for response. */
|
|
40291
|
+
alt?: string;
|
|
40292
|
+
/** JSONP */
|
|
40293
|
+
callback?: string;
|
|
40294
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40295
|
+
fields?: string;
|
|
40296
|
+
/** 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. */
|
|
40297
|
+
key?: string;
|
|
40298
|
+
/** OAuth 2.0 token for the current user. */
|
|
40299
|
+
oauth_token?: string;
|
|
40300
|
+
/** Required. The resource name of the Location to create the ReasoningEngine in. Format: `projects/{project}/locations/{location}` */
|
|
40301
|
+
parent?: string;
|
|
40302
|
+
/** Returns response with indentations and line breaks. */
|
|
40303
|
+
prettyPrint?: boolean;
|
|
40304
|
+
/** 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. */
|
|
40305
|
+
quotaUser?: string;
|
|
40306
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40307
|
+
upload_protocol?: string;
|
|
40308
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40309
|
+
uploadType?: string;
|
|
40310
|
+
/** Request body */
|
|
40311
|
+
resource: GoogleCloudAiplatformV1beta1ReasoningEngine;
|
|
40312
|
+
}): Request<GoogleLongrunningOperation>;
|
|
40313
|
+
create(
|
|
40314
|
+
request: {
|
|
40315
|
+
/** V1 error format. */
|
|
40316
|
+
'$.xgafv'?: string;
|
|
40317
|
+
/** OAuth access token. */
|
|
40318
|
+
access_token?: string;
|
|
40319
|
+
/** Data format for response. */
|
|
40320
|
+
alt?: string;
|
|
40321
|
+
/** JSONP */
|
|
40322
|
+
callback?: string;
|
|
40323
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40324
|
+
fields?: string;
|
|
40325
|
+
/** 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. */
|
|
40326
|
+
key?: string;
|
|
40327
|
+
/** OAuth 2.0 token for the current user. */
|
|
40328
|
+
oauth_token?: string;
|
|
40329
|
+
/** Required. The resource name of the Location to create the ReasoningEngine in. Format: `projects/{project}/locations/{location}` */
|
|
40330
|
+
parent?: string;
|
|
40331
|
+
/** Returns response with indentations and line breaks. */
|
|
40332
|
+
prettyPrint?: boolean;
|
|
40333
|
+
/** 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. */
|
|
40334
|
+
quotaUser?: string;
|
|
40335
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40336
|
+
upload_protocol?: string;
|
|
40337
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40338
|
+
uploadType?: string;
|
|
40339
|
+
},
|
|
40340
|
+
body: GoogleCloudAiplatformV1beta1ReasoningEngine,
|
|
40341
|
+
): Request<GoogleLongrunningOperation>;
|
|
40342
|
+
/** Deletes a reasoning engine. */
|
|
40343
|
+
delete(request?: {
|
|
40344
|
+
/** V1 error format. */
|
|
40345
|
+
'$.xgafv'?: string;
|
|
40346
|
+
/** OAuth access token. */
|
|
40347
|
+
access_token?: string;
|
|
40348
|
+
/** Data format for response. */
|
|
40349
|
+
alt?: string;
|
|
40350
|
+
/** JSONP */
|
|
40351
|
+
callback?: string;
|
|
40352
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40353
|
+
fields?: string;
|
|
40354
|
+
/** Optional. If set to true, child resources of this reasoning engine will also be deleted. Otherwise, the request will fail with FAILED_PRECONDITION error when the reasoning engine has undeleted child resources. */
|
|
40355
|
+
force?: boolean;
|
|
40356
|
+
/** 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. */
|
|
40357
|
+
key?: string;
|
|
40358
|
+
/** Required. The name of the ReasoningEngine resource to be deleted. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40359
|
+
name: string;
|
|
40360
|
+
/** OAuth 2.0 token for the current user. */
|
|
40361
|
+
oauth_token?: string;
|
|
40362
|
+
/** Returns response with indentations and line breaks. */
|
|
40363
|
+
prettyPrint?: boolean;
|
|
40364
|
+
/** 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. */
|
|
40365
|
+
quotaUser?: string;
|
|
40366
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40367
|
+
upload_protocol?: string;
|
|
40368
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40369
|
+
uploadType?: string;
|
|
40370
|
+
}): Request<GoogleLongrunningOperation>;
|
|
40371
|
+
/** Gets a reasoning engine. */
|
|
40372
|
+
get(request?: {
|
|
40373
|
+
/** V1 error format. */
|
|
40374
|
+
'$.xgafv'?: string;
|
|
40375
|
+
/** OAuth access token. */
|
|
40376
|
+
access_token?: string;
|
|
40377
|
+
/** Data format for response. */
|
|
40378
|
+
alt?: string;
|
|
40379
|
+
/** JSONP */
|
|
40380
|
+
callback?: string;
|
|
40381
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40382
|
+
fields?: string;
|
|
40383
|
+
/** 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. */
|
|
40384
|
+
key?: string;
|
|
40385
|
+
/** Required. The name of the ReasoningEngine resource. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40386
|
+
name: string;
|
|
40387
|
+
/** OAuth 2.0 token for the current user. */
|
|
40388
|
+
oauth_token?: string;
|
|
40389
|
+
/** Returns response with indentations and line breaks. */
|
|
40390
|
+
prettyPrint?: boolean;
|
|
40391
|
+
/** 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. */
|
|
40392
|
+
quotaUser?: string;
|
|
40393
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40394
|
+
upload_protocol?: string;
|
|
40395
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40396
|
+
uploadType?: string;
|
|
40397
|
+
}): Request<GoogleCloudAiplatformV1beta1ReasoningEngine>;
|
|
40398
|
+
/** Lists reasoning engines in a location. */
|
|
40399
|
+
list(request?: {
|
|
40400
|
+
/** V1 error format. */
|
|
40401
|
+
'$.xgafv'?: string;
|
|
40402
|
+
/** OAuth access token. */
|
|
40403
|
+
access_token?: string;
|
|
40404
|
+
/** Data format for response. */
|
|
40405
|
+
alt?: string;
|
|
40406
|
+
/** JSONP */
|
|
40407
|
+
callback?: string;
|
|
40408
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40409
|
+
fields?: string;
|
|
40410
|
+
/** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). */
|
|
40411
|
+
filter?: string;
|
|
40412
|
+
/** 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. */
|
|
40413
|
+
key?: string;
|
|
40414
|
+
/** OAuth 2.0 token for the current user. */
|
|
40415
|
+
oauth_token?: string;
|
|
40416
|
+
/** Optional. The standard list page size. */
|
|
40417
|
+
pageSize?: number;
|
|
40418
|
+
/** Optional. The standard list page token. */
|
|
40419
|
+
pageToken?: string;
|
|
40420
|
+
/** Required. The resource name of the Location to list the ReasoningEngines from. Format: `projects/{project}/locations/{location}` */
|
|
40421
|
+
parent?: string;
|
|
40422
|
+
/** Returns response with indentations and line breaks. */
|
|
40423
|
+
prettyPrint?: boolean;
|
|
40424
|
+
/** 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. */
|
|
40425
|
+
quotaUser?: string;
|
|
40426
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40427
|
+
upload_protocol?: string;
|
|
40428
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40429
|
+
uploadType?: string;
|
|
40430
|
+
}): Request<GoogleCloudAiplatformV1beta1ListReasoningEnginesResponse>;
|
|
40431
|
+
/** Updates a reasoning engine. */
|
|
40432
|
+
patch(request: {
|
|
40433
|
+
/** V1 error format. */
|
|
40434
|
+
'$.xgafv'?: string;
|
|
40435
|
+
/** OAuth access token. */
|
|
40436
|
+
access_token?: string;
|
|
40437
|
+
/** Data format for response. */
|
|
40438
|
+
alt?: string;
|
|
40439
|
+
/** JSONP */
|
|
40440
|
+
callback?: string;
|
|
40441
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40442
|
+
fields?: string;
|
|
40443
|
+
/** 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. */
|
|
40444
|
+
key?: string;
|
|
40445
|
+
/** Identifier. The resource name of the ReasoningEngine. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40446
|
+
name: string;
|
|
40447
|
+
/** OAuth 2.0 token for the current user. */
|
|
40448
|
+
oauth_token?: string;
|
|
40449
|
+
/** Returns response with indentations and line breaks. */
|
|
40450
|
+
prettyPrint?: boolean;
|
|
40451
|
+
/** 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. */
|
|
40452
|
+
quotaUser?: string;
|
|
40453
|
+
/** Optional. Mask specifying which fields to update. */
|
|
40454
|
+
updateMask?: string;
|
|
40455
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40456
|
+
upload_protocol?: string;
|
|
40457
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40458
|
+
uploadType?: string;
|
|
40459
|
+
/** Request body */
|
|
40460
|
+
resource: GoogleCloudAiplatformV1beta1ReasoningEngine;
|
|
40461
|
+
}): Request<GoogleLongrunningOperation>;
|
|
40462
|
+
patch(
|
|
40463
|
+
request: {
|
|
40464
|
+
/** V1 error format. */
|
|
40465
|
+
'$.xgafv'?: string;
|
|
40466
|
+
/** OAuth access token. */
|
|
40467
|
+
access_token?: string;
|
|
40468
|
+
/** Data format for response. */
|
|
40469
|
+
alt?: string;
|
|
40470
|
+
/** JSONP */
|
|
40471
|
+
callback?: string;
|
|
40472
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40473
|
+
fields?: string;
|
|
40474
|
+
/** 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. */
|
|
40475
|
+
key?: string;
|
|
40476
|
+
/** Identifier. The resource name of the ReasoningEngine. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40477
|
+
name: string;
|
|
40478
|
+
/** OAuth 2.0 token for the current user. */
|
|
40479
|
+
oauth_token?: string;
|
|
40480
|
+
/** Returns response with indentations and line breaks. */
|
|
40481
|
+
prettyPrint?: boolean;
|
|
40482
|
+
/** 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. */
|
|
40483
|
+
quotaUser?: string;
|
|
40484
|
+
/** Optional. Mask specifying which fields to update. */
|
|
40485
|
+
updateMask?: string;
|
|
40486
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40487
|
+
upload_protocol?: string;
|
|
40488
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40489
|
+
uploadType?: string;
|
|
40490
|
+
},
|
|
40491
|
+
body: GoogleCloudAiplatformV1beta1ReasoningEngine,
|
|
40492
|
+
): Request<GoogleLongrunningOperation>;
|
|
40493
|
+
/** Queries using a reasoning engine. */
|
|
40494
|
+
query(request: {
|
|
40495
|
+
/** V1 error format. */
|
|
40496
|
+
'$.xgafv'?: string;
|
|
40497
|
+
/** OAuth access token. */
|
|
40498
|
+
access_token?: string;
|
|
40499
|
+
/** Data format for response. */
|
|
40500
|
+
alt?: string;
|
|
40501
|
+
/** JSONP */
|
|
40502
|
+
callback?: string;
|
|
40503
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40504
|
+
fields?: string;
|
|
40505
|
+
/** 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. */
|
|
40506
|
+
key?: string;
|
|
40507
|
+
/** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40508
|
+
name: string;
|
|
40509
|
+
/** OAuth 2.0 token for the current user. */
|
|
40510
|
+
oauth_token?: string;
|
|
40511
|
+
/** Returns response with indentations and line breaks. */
|
|
40512
|
+
prettyPrint?: boolean;
|
|
40513
|
+
/** 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. */
|
|
40514
|
+
quotaUser?: string;
|
|
40515
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40516
|
+
upload_protocol?: string;
|
|
40517
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40518
|
+
uploadType?: string;
|
|
40519
|
+
/** Request body */
|
|
40520
|
+
resource: GoogleCloudAiplatformV1beta1QueryReasoningEngineRequest;
|
|
40521
|
+
}): Request<GoogleCloudAiplatformV1beta1QueryReasoningEngineResponse>;
|
|
40522
|
+
query(
|
|
40523
|
+
request: {
|
|
40524
|
+
/** V1 error format. */
|
|
40525
|
+
'$.xgafv'?: string;
|
|
40526
|
+
/** OAuth access token. */
|
|
40527
|
+
access_token?: string;
|
|
40528
|
+
/** Data format for response. */
|
|
40529
|
+
alt?: string;
|
|
40530
|
+
/** JSONP */
|
|
40531
|
+
callback?: string;
|
|
40532
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40533
|
+
fields?: string;
|
|
40534
|
+
/** 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. */
|
|
40535
|
+
key?: string;
|
|
40536
|
+
/** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40537
|
+
name: string;
|
|
40538
|
+
/** OAuth 2.0 token for the current user. */
|
|
40539
|
+
oauth_token?: string;
|
|
40540
|
+
/** Returns response with indentations and line breaks. */
|
|
40541
|
+
prettyPrint?: boolean;
|
|
40542
|
+
/** 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. */
|
|
40543
|
+
quotaUser?: string;
|
|
40544
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40545
|
+
upload_protocol?: string;
|
|
40546
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40547
|
+
uploadType?: string;
|
|
40548
|
+
},
|
|
40549
|
+
body: GoogleCloudAiplatformV1beta1QueryReasoningEngineRequest,
|
|
40550
|
+
): Request<GoogleCloudAiplatformV1beta1QueryReasoningEngineResponse>;
|
|
40551
|
+
/** Streams queries using a reasoning engine. */
|
|
40552
|
+
streamQuery(request: {
|
|
40553
|
+
/** V1 error format. */
|
|
40554
|
+
'$.xgafv'?: string;
|
|
40555
|
+
/** OAuth access token. */
|
|
40556
|
+
access_token?: string;
|
|
40557
|
+
/** Data format for response. */
|
|
40558
|
+
alt?: string;
|
|
40559
|
+
/** JSONP */
|
|
40560
|
+
callback?: string;
|
|
40561
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40562
|
+
fields?: string;
|
|
40563
|
+
/** 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. */
|
|
40564
|
+
key?: string;
|
|
40565
|
+
/** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40566
|
+
name: string;
|
|
40567
|
+
/** OAuth 2.0 token for the current user. */
|
|
40568
|
+
oauth_token?: string;
|
|
40569
|
+
/** Returns response with indentations and line breaks. */
|
|
40570
|
+
prettyPrint?: boolean;
|
|
40571
|
+
/** 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. */
|
|
40572
|
+
quotaUser?: string;
|
|
40573
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40574
|
+
upload_protocol?: string;
|
|
40575
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40576
|
+
uploadType?: string;
|
|
40577
|
+
/** Request body */
|
|
40578
|
+
resource: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest;
|
|
40579
|
+
}): Request<GoogleApiHttpBody>;
|
|
40580
|
+
streamQuery(
|
|
40581
|
+
request: {
|
|
40582
|
+
/** V1 error format. */
|
|
40583
|
+
'$.xgafv'?: string;
|
|
40584
|
+
/** OAuth access token. */
|
|
40585
|
+
access_token?: string;
|
|
40586
|
+
/** Data format for response. */
|
|
40587
|
+
alt?: string;
|
|
40588
|
+
/** JSONP */
|
|
40589
|
+
callback?: string;
|
|
40590
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40591
|
+
fields?: string;
|
|
40592
|
+
/** 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. */
|
|
40593
|
+
key?: string;
|
|
40594
|
+
/** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
40595
|
+
name: string;
|
|
40596
|
+
/** OAuth 2.0 token for the current user. */
|
|
40597
|
+
oauth_token?: string;
|
|
40598
|
+
/** Returns response with indentations and line breaks. */
|
|
40599
|
+
prettyPrint?: boolean;
|
|
40600
|
+
/** 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. */
|
|
40601
|
+
quotaUser?: string;
|
|
40602
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40603
|
+
upload_protocol?: string;
|
|
40604
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40605
|
+
uploadType?: string;
|
|
40606
|
+
},
|
|
40607
|
+
body: GoogleCloudAiplatformV1beta1StreamQueryReasoningEngineRequest,
|
|
40608
|
+
): Request<GoogleApiHttpBody>;
|
|
40609
|
+
sessions: SessionsResource;
|
|
40610
|
+
}
|
|
39318
40611
|
|
|
39319
40612
|
const batchPredictionJobs: BatchPredictionJobsResource;
|
|
39320
40613
|
|
|
@@ -39327,5 +40620,7 @@ declare namespace gapi.client {
|
|
|
39327
40620
|
const projects: ProjectsResource;
|
|
39328
40621
|
|
|
39329
40622
|
const publishers: PublishersResource;
|
|
40623
|
+
|
|
40624
|
+
const reasoningEngines: ReasoningEnginesResource;
|
|
39330
40625
|
}
|
|
39331
40626
|
}
|