@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250415 → 0.0.20250422
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 +21 -223
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250422
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -273,6 +273,8 @@ declare namespace gapi.client {
|
|
|
273
273
|
schemaVersion?: string;
|
|
274
274
|
}
|
|
275
275
|
interface GoogleCloudAiplatformV1beta1AssembleDataRequest {
|
|
276
|
+
/** Optional. The read config for the dataset. */
|
|
277
|
+
geminiRequestReadConfig?: GoogleCloudAiplatformV1beta1GeminiRequestReadConfig;
|
|
276
278
|
/** Optional. Config for assembling templates with a Gemini API structure. */
|
|
277
279
|
geminiTemplateConfig?: GoogleCloudAiplatformV1beta1GeminiTemplateConfig;
|
|
278
280
|
/** Optional. The column name in the underlying table that contains already fully assembled requests. If this field is set, the original request will be copied to the output table. */
|
|
@@ -283,6 +285,8 @@ declare namespace gapi.client {
|
|
|
283
285
|
batchPredictionResourceUsageAssessmentConfig?: GoogleCloudAiplatformV1beta1AssessDataRequestBatchPredictionResourceUsageAssessmentConfig;
|
|
284
286
|
/** Optional. Configuration for the batch prediction validation assessment. */
|
|
285
287
|
batchPredictionValidationAssessmentConfig?: GoogleCloudAiplatformV1beta1AssessDataRequestBatchPredictionValidationAssessmentConfig;
|
|
288
|
+
/** Optional. The Gemini request read config for the dataset. */
|
|
289
|
+
geminiRequestReadConfig?: GoogleCloudAiplatformV1beta1GeminiRequestReadConfig;
|
|
286
290
|
/** Optional. Config for assembling templates with a Gemini API structure to assess assembled data. */
|
|
287
291
|
geminiTemplateConfig?: GoogleCloudAiplatformV1beta1GeminiTemplateConfig;
|
|
288
292
|
/** Optional. The column name in the underlying table that contains already fully assembled requests. */
|
|
@@ -1667,6 +1671,8 @@ declare namespace gapi.client {
|
|
|
1667
1671
|
dedicatedResources?: GoogleCloudAiplatformV1beta1DedicatedResources;
|
|
1668
1672
|
/** Optional. If true, enable the QMT fast tryout feature for this model if possible. */
|
|
1669
1673
|
fastTryoutEnabled?: boolean;
|
|
1674
|
+
/** Optional. System labels for Model Garden deployments. These labels are managed by Google and for tracking purposes only. */
|
|
1675
|
+
systemLabels?: {[P in string]: string};
|
|
1670
1676
|
}
|
|
1671
1677
|
interface GoogleCloudAiplatformV1beta1DeployRequestEndpointConfig {
|
|
1672
1678
|
/** Optional. If true, the endpoint will be exposed through a dedicated DNS [Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS will be isolated from other users' traffic and will have better performance and reliability. Note: Once you enabled dedicated endpoint, you won't be able to send request to the shared DNS {region}-aiplatform.googleapis.com. The limitations will be removed soon. */
|
|
@@ -3288,8 +3294,14 @@ declare namespace gapi.client {
|
|
|
3288
3294
|
/** Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. */
|
|
3289
3295
|
tools?: GoogleCloudAiplatformV1beta1Tool[];
|
|
3290
3296
|
}
|
|
3297
|
+
interface GoogleCloudAiplatformV1beta1GeminiRequestReadConfig {
|
|
3298
|
+
/** Optional. Column name in the dataset table that contains already fully assembled Gemini requests. */
|
|
3299
|
+
assembledRequestColumnName?: string;
|
|
3300
|
+
/** Gemini request template with placeholders. */
|
|
3301
|
+
templateConfig?: GoogleCloudAiplatformV1beta1GeminiTemplateConfig;
|
|
3302
|
+
}
|
|
3291
3303
|
interface GoogleCloudAiplatformV1beta1GeminiTemplateConfig {
|
|
3292
|
-
/** Required. Map of template
|
|
3304
|
+
/** Required. Map of template parameters to the columns in the dataset table. */
|
|
3293
3305
|
fieldMapping?: {[P in string]: string};
|
|
3294
3306
|
/** Required. The template that will be used for assembling the request to use for downstream applications. */
|
|
3295
3307
|
geminiExample?: GoogleCloudAiplatformV1beta1GeminiExample;
|
|
@@ -3991,7 +4003,7 @@ declare namespace gapi.client {
|
|
|
3991
4003
|
interface GoogleCloudAiplatformV1beta1ListEventsResponse {
|
|
3992
4004
|
/** A token, which can be sent as ListEventsRequest.page_token to retrieve the next page. Absence of this field indicates there are no subsequent pages. */
|
|
3993
4005
|
nextPageToken?: string;
|
|
3994
|
-
/** A list of events matching the request. */
|
|
4006
|
+
/** A list of events matching the request. Ordered by timestamp in ascending order. */
|
|
3995
4007
|
sessionEvents?: GoogleCloudAiplatformV1beta1SessionEvent[];
|
|
3996
4008
|
}
|
|
3997
4009
|
interface GoogleCloudAiplatformV1beta1ListExampleStoresResponse {
|
|
@@ -5205,8 +5217,6 @@ declare namespace gapi.client {
|
|
|
5205
5217
|
checkpointId?: string;
|
|
5206
5218
|
/** The epoch of the checkpoint. */
|
|
5207
5219
|
epoch?: string;
|
|
5208
|
-
/** Identifier. The resource name of the ModelVersionCheckpoint. Format: `projects/{project}/locations/{location}/models/{model}/versions/{version}/checkpoints/{checkpoint}` */
|
|
5209
|
-
name?: string;
|
|
5210
5220
|
/** The step of the checkpoint. */
|
|
5211
5221
|
step?: string;
|
|
5212
5222
|
}
|
|
@@ -32854,7 +32864,7 @@ declare namespace gapi.client {
|
|
|
32854
32864
|
key?: string;
|
|
32855
32865
|
/** OAuth 2.0 token for the current user. */
|
|
32856
32866
|
oauth_token?: string;
|
|
32857
|
-
/** 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. */
|
|
32867
|
+
/** 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. */
|
|
32858
32868
|
pageSize?: number;
|
|
32859
32869
|
/** Optional. The next_page_token value returned from a previous list SessionService.ListEvents call. */
|
|
32860
32870
|
pageToken?: string;
|
|
@@ -32929,7 +32939,7 @@ declare namespace gapi.client {
|
|
|
32929
32939
|
},
|
|
32930
32940
|
body: GoogleCloudAiplatformV1beta1SessionEvent,
|
|
32931
32941
|
): Request<{}>;
|
|
32932
|
-
/** Creates a new Session
|
|
32942
|
+
/** Creates a new Session. */
|
|
32933
32943
|
create(request: {
|
|
32934
32944
|
/** V1 error format. */
|
|
32935
32945
|
'$.xgafv'?: string;
|
|
@@ -32945,7 +32955,7 @@ declare namespace gapi.client {
|
|
|
32945
32955
|
key?: string;
|
|
32946
32956
|
/** OAuth 2.0 token for the current user. */
|
|
32947
32957
|
oauth_token?: string;
|
|
32948
|
-
/** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}
|
|
32958
|
+
/** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
32949
32959
|
parent: string;
|
|
32950
32960
|
/** Returns response with indentations and line breaks. */
|
|
32951
32961
|
prettyPrint?: boolean;
|
|
@@ -32974,7 +32984,7 @@ declare namespace gapi.client {
|
|
|
32974
32984
|
key?: string;
|
|
32975
32985
|
/** OAuth 2.0 token for the current user. */
|
|
32976
32986
|
oauth_token?: string;
|
|
32977
|
-
/** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}
|
|
32987
|
+
/** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
32978
32988
|
parent: string;
|
|
32979
32989
|
/** Returns response with indentations and line breaks. */
|
|
32980
32990
|
prettyPrint?: boolean;
|
|
@@ -33001,7 +33011,7 @@ declare namespace gapi.client {
|
|
|
33001
33011
|
fields?: string;
|
|
33002
33012
|
/** 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. */
|
|
33003
33013
|
key?: string;
|
|
33004
|
-
/** Required. The resource name of the session. Format: `projects/{project}/locations/{location}/
|
|
33014
|
+
/** Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
33005
33015
|
name: string;
|
|
33006
33016
|
/** OAuth 2.0 token for the current user. */
|
|
33007
33017
|
oauth_token?: string;
|
|
@@ -33041,7 +33051,7 @@ declare namespace gapi.client {
|
|
|
33041
33051
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33042
33052
|
uploadType?: string;
|
|
33043
33053
|
}): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
33044
|
-
/** Lists Sessions in a given
|
|
33054
|
+
/** Lists Sessions in a given reasoning engine. */
|
|
33045
33055
|
list(request?: {
|
|
33046
33056
|
/** V1 error format. */
|
|
33047
33057
|
'$.xgafv'?: string;
|
|
@@ -33942,217 +33952,6 @@ declare namespace gapi.client {
|
|
|
33942
33952
|
): Request<{}>;
|
|
33943
33953
|
operations: OperationsResource;
|
|
33944
33954
|
}
|
|
33945
|
-
interface SessionsResource {
|
|
33946
|
-
/** Creates a new Session in a given project and location. */
|
|
33947
|
-
create(request: {
|
|
33948
|
-
/** V1 error format. */
|
|
33949
|
-
'$.xgafv'?: string;
|
|
33950
|
-
/** OAuth access token. */
|
|
33951
|
-
access_token?: string;
|
|
33952
|
-
/** Data format for response. */
|
|
33953
|
-
alt?: string;
|
|
33954
|
-
/** JSONP */
|
|
33955
|
-
callback?: string;
|
|
33956
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
33957
|
-
fields?: string;
|
|
33958
|
-
/** 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. */
|
|
33959
|
-
key?: string;
|
|
33960
|
-
/** OAuth 2.0 token for the current user. */
|
|
33961
|
-
oauth_token?: string;
|
|
33962
|
-
/** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}` or `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33963
|
-
parent: string;
|
|
33964
|
-
/** Returns response with indentations and line breaks. */
|
|
33965
|
-
prettyPrint?: boolean;
|
|
33966
|
-
/** 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. */
|
|
33967
|
-
quotaUser?: string;
|
|
33968
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33969
|
-
upload_protocol?: string;
|
|
33970
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
33971
|
-
uploadType?: string;
|
|
33972
|
-
/** Request body */
|
|
33973
|
-
resource: GoogleCloudAiplatformV1beta1Session;
|
|
33974
|
-
}): Request<GoogleLongrunningOperation>;
|
|
33975
|
-
create(
|
|
33976
|
-
request: {
|
|
33977
|
-
/** V1 error format. */
|
|
33978
|
-
'$.xgafv'?: string;
|
|
33979
|
-
/** OAuth access token. */
|
|
33980
|
-
access_token?: string;
|
|
33981
|
-
/** Data format for response. */
|
|
33982
|
-
alt?: string;
|
|
33983
|
-
/** JSONP */
|
|
33984
|
-
callback?: string;
|
|
33985
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
33986
|
-
fields?: string;
|
|
33987
|
-
/** 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. */
|
|
33988
|
-
key?: string;
|
|
33989
|
-
/** OAuth 2.0 token for the current user. */
|
|
33990
|
-
oauth_token?: string;
|
|
33991
|
-
/** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}` or `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
33992
|
-
parent: string;
|
|
33993
|
-
/** Returns response with indentations and line breaks. */
|
|
33994
|
-
prettyPrint?: boolean;
|
|
33995
|
-
/** 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. */
|
|
33996
|
-
quotaUser?: string;
|
|
33997
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33998
|
-
upload_protocol?: string;
|
|
33999
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34000
|
-
uploadType?: string;
|
|
34001
|
-
},
|
|
34002
|
-
body: GoogleCloudAiplatformV1beta1Session,
|
|
34003
|
-
): Request<GoogleLongrunningOperation>;
|
|
34004
|
-
/** Deletes details of the specific Session. */
|
|
34005
|
-
delete(request?: {
|
|
34006
|
-
/** V1 error format. */
|
|
34007
|
-
'$.xgafv'?: string;
|
|
34008
|
-
/** OAuth access token. */
|
|
34009
|
-
access_token?: string;
|
|
34010
|
-
/** Data format for response. */
|
|
34011
|
-
alt?: string;
|
|
34012
|
-
/** JSONP */
|
|
34013
|
-
callback?: string;
|
|
34014
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
34015
|
-
fields?: string;
|
|
34016
|
-
/** 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. */
|
|
34017
|
-
key?: string;
|
|
34018
|
-
/** Required. The resource name of the session. Format: `projects/{project}/locations/{location}/sessions/{session}` or `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
34019
|
-
name: string;
|
|
34020
|
-
/** OAuth 2.0 token for the current user. */
|
|
34021
|
-
oauth_token?: string;
|
|
34022
|
-
/** Returns response with indentations and line breaks. */
|
|
34023
|
-
prettyPrint?: boolean;
|
|
34024
|
-
/** 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. */
|
|
34025
|
-
quotaUser?: string;
|
|
34026
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34027
|
-
upload_protocol?: string;
|
|
34028
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34029
|
-
uploadType?: string;
|
|
34030
|
-
}): Request<GoogleLongrunningOperation>;
|
|
34031
|
-
/** Gets details of the specific Session. */
|
|
34032
|
-
get(request?: {
|
|
34033
|
-
/** V1 error format. */
|
|
34034
|
-
'$.xgafv'?: string;
|
|
34035
|
-
/** OAuth access token. */
|
|
34036
|
-
access_token?: string;
|
|
34037
|
-
/** Data format for response. */
|
|
34038
|
-
alt?: string;
|
|
34039
|
-
/** JSONP */
|
|
34040
|
-
callback?: string;
|
|
34041
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
34042
|
-
fields?: string;
|
|
34043
|
-
/** 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. */
|
|
34044
|
-
key?: string;
|
|
34045
|
-
/** Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
|
|
34046
|
-
name: string;
|
|
34047
|
-
/** OAuth 2.0 token for the current user. */
|
|
34048
|
-
oauth_token?: string;
|
|
34049
|
-
/** Returns response with indentations and line breaks. */
|
|
34050
|
-
prettyPrint?: boolean;
|
|
34051
|
-
/** 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. */
|
|
34052
|
-
quotaUser?: string;
|
|
34053
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34054
|
-
upload_protocol?: string;
|
|
34055
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34056
|
-
uploadType?: string;
|
|
34057
|
-
}): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
34058
|
-
/** Lists Sessions in a given project and location. */
|
|
34059
|
-
list(request?: {
|
|
34060
|
-
/** V1 error format. */
|
|
34061
|
-
'$.xgafv'?: string;
|
|
34062
|
-
/** OAuth access token. */
|
|
34063
|
-
access_token?: string;
|
|
34064
|
-
/** Data format for response. */
|
|
34065
|
-
alt?: string;
|
|
34066
|
-
/** JSONP */
|
|
34067
|
-
callback?: string;
|
|
34068
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
34069
|
-
fields?: string;
|
|
34070
|
-
/** Optional. The standard list filter. Supported fields: * `display_name` Example: `display_name=abc`. */
|
|
34071
|
-
filter?: string;
|
|
34072
|
-
/** 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. */
|
|
34073
|
-
key?: string;
|
|
34074
|
-
/** OAuth 2.0 token for the current user. */
|
|
34075
|
-
oauth_token?: string;
|
|
34076
|
-
/** 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`. */
|
|
34077
|
-
orderBy?: string;
|
|
34078
|
-
/** 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. */
|
|
34079
|
-
pageSize?: number;
|
|
34080
|
-
/** Optional. The next_page_token value returned from a previous list SessionService.ListSessions call. */
|
|
34081
|
-
pageToken?: string;
|
|
34082
|
-
/** Required. The resource name of the location to list sessions from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
34083
|
-
parent: string;
|
|
34084
|
-
/** Returns response with indentations and line breaks. */
|
|
34085
|
-
prettyPrint?: boolean;
|
|
34086
|
-
/** 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. */
|
|
34087
|
-
quotaUser?: string;
|
|
34088
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34089
|
-
upload_protocol?: string;
|
|
34090
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34091
|
-
uploadType?: string;
|
|
34092
|
-
}): Request<GoogleCloudAiplatformV1beta1ListSessionsResponse>;
|
|
34093
|
-
/** Updates the specific Session. */
|
|
34094
|
-
patch(request: {
|
|
34095
|
-
/** V1 error format. */
|
|
34096
|
-
'$.xgafv'?: string;
|
|
34097
|
-
/** OAuth access token. */
|
|
34098
|
-
access_token?: string;
|
|
34099
|
-
/** Data format for response. */
|
|
34100
|
-
alt?: string;
|
|
34101
|
-
/** JSONP */
|
|
34102
|
-
callback?: string;
|
|
34103
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
34104
|
-
fields?: string;
|
|
34105
|
-
/** 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. */
|
|
34106
|
-
key?: string;
|
|
34107
|
-
/** Required. Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
|
|
34108
|
-
name: string;
|
|
34109
|
-
/** OAuth 2.0 token for the current user. */
|
|
34110
|
-
oauth_token?: string;
|
|
34111
|
-
/** Returns response with indentations and line breaks. */
|
|
34112
|
-
prettyPrint?: boolean;
|
|
34113
|
-
/** 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. */
|
|
34114
|
-
quotaUser?: string;
|
|
34115
|
-
/** Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated. */
|
|
34116
|
-
updateMask?: string;
|
|
34117
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34118
|
-
upload_protocol?: string;
|
|
34119
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34120
|
-
uploadType?: string;
|
|
34121
|
-
/** Request body */
|
|
34122
|
-
resource: GoogleCloudAiplatformV1beta1Session;
|
|
34123
|
-
}): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
34124
|
-
patch(
|
|
34125
|
-
request: {
|
|
34126
|
-
/** V1 error format. */
|
|
34127
|
-
'$.xgafv'?: string;
|
|
34128
|
-
/** OAuth access token. */
|
|
34129
|
-
access_token?: string;
|
|
34130
|
-
/** Data format for response. */
|
|
34131
|
-
alt?: string;
|
|
34132
|
-
/** JSONP */
|
|
34133
|
-
callback?: string;
|
|
34134
|
-
/** Selector specifying which fields to include in a partial response. */
|
|
34135
|
-
fields?: string;
|
|
34136
|
-
/** 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. */
|
|
34137
|
-
key?: string;
|
|
34138
|
-
/** Required. Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
|
|
34139
|
-
name: string;
|
|
34140
|
-
/** OAuth 2.0 token for the current user. */
|
|
34141
|
-
oauth_token?: string;
|
|
34142
|
-
/** Returns response with indentations and line breaks. */
|
|
34143
|
-
prettyPrint?: boolean;
|
|
34144
|
-
/** 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. */
|
|
34145
|
-
quotaUser?: string;
|
|
34146
|
-
/** Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated. */
|
|
34147
|
-
updateMask?: string;
|
|
34148
|
-
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34149
|
-
upload_protocol?: string;
|
|
34150
|
-
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34151
|
-
uploadType?: string;
|
|
34152
|
-
},
|
|
34153
|
-
body: GoogleCloudAiplatformV1beta1Session,
|
|
34154
|
-
): Request<GoogleCloudAiplatformV1beta1Session>;
|
|
34155
|
-
}
|
|
34156
33955
|
interface OperationsResource {
|
|
34157
33956
|
/** 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`. */
|
|
34158
33957
|
delete(request?: {
|
|
@@ -38685,7 +38484,6 @@ declare namespace gapi.client {
|
|
|
38685
38484
|
ragEngineConfig: RagEngineConfigResource;
|
|
38686
38485
|
reasoningEngines: ReasoningEnginesResource;
|
|
38687
38486
|
schedules: SchedulesResource;
|
|
38688
|
-
sessions: SessionsResource;
|
|
38689
38487
|
solvers: SolversResource;
|
|
38690
38488
|
specialistPools: SpecialistPoolsResource;
|
|
38691
38489
|
studies: StudiesResource;
|