@maxim_mazurok/gapi.client.discoveryengine-v1 0.1.20260209 → 0.1.20260226
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 +799 -8
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://discoveryengine.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260226
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -28,6 +28,340 @@ declare namespace gapi.client {
|
|
|
28
28
|
): void;
|
|
29
29
|
|
|
30
30
|
namespace discoveryengine {
|
|
31
|
+
interface A2aV1AgentCapabilities {
|
|
32
|
+
/** Extensions supported by this agent. */
|
|
33
|
+
extensions?: A2aV1AgentExtension[];
|
|
34
|
+
/** If the agent can send push notifications to the clients webhook */
|
|
35
|
+
pushNotifications?: boolean;
|
|
36
|
+
/** If the agent will support streaming responses */
|
|
37
|
+
streaming?: boolean;
|
|
38
|
+
}
|
|
39
|
+
interface A2aV1AgentCard {
|
|
40
|
+
/** Announcement of additional supported transports. Client can use any of the supported transports. */
|
|
41
|
+
additionalInterfaces?: A2aV1AgentInterface[];
|
|
42
|
+
/** A2A Capability set supported by the agent. */
|
|
43
|
+
capabilities?: A2aV1AgentCapabilities;
|
|
44
|
+
/** protolint:enable REPEATED_FIELD_NAMES_PLURALIZED The set of interaction modes that the agent supports across all skills. This can be overridden per skill. Defined as mime types. */
|
|
45
|
+
defaultInputModes?: string[];
|
|
46
|
+
/** The mime types supported as outputs from this agent. */
|
|
47
|
+
defaultOutputModes?: string[];
|
|
48
|
+
/** A description of the agent's domain of action/solution space. Example: "Agent that helps users with recipes and cooking." */
|
|
49
|
+
description?: string;
|
|
50
|
+
/** A url to provide additional documentation about the agent. */
|
|
51
|
+
documentationUrl?: string;
|
|
52
|
+
/** An optional URL to an icon for the agent. */
|
|
53
|
+
iconUrl?: string;
|
|
54
|
+
/** A human readable name for the agent. Example: "Recipe Agent" */
|
|
55
|
+
name?: string;
|
|
56
|
+
/** The transport of the preferred endpoint. If empty, defaults to JSONRPC. */
|
|
57
|
+
preferredTransport?: string;
|
|
58
|
+
/** The version of the A2A protocol this agent supports. */
|
|
59
|
+
protocolVersion?: string;
|
|
60
|
+
/** The service provider of the agent. */
|
|
61
|
+
provider?: A2aV1AgentProvider;
|
|
62
|
+
/** protolint:disable REPEATED_FIELD_NAMES_PLURALIZED Security requirements for contacting the agent. This list can be seen as an OR of ANDs. Each object in the list describes one possible set of security requirements that must be present on a request. This allows specifying, for example, "callers must either use OAuth OR an API Key AND mTLS." Example: security { schemes { key: "oauth" value { list: ["read"] } } } security { schemes { key: "api-key" } schemes { key: "mtls" } } */
|
|
63
|
+
security?: A2aV1Security[];
|
|
64
|
+
/** The security scheme details used for authenticating with this agent. */
|
|
65
|
+
securitySchemes?: {[P in string]: A2aV1SecurityScheme};
|
|
66
|
+
/** JSON Web Signatures computed for this AgentCard. */
|
|
67
|
+
signatures?: A2aV1AgentCardSignature[];
|
|
68
|
+
/** Skills represent a unit of ability an agent can perform. This may somewhat abstract but represents a more focused set of actions that the agent is highly likely to succeed at. */
|
|
69
|
+
skills?: A2aV1AgentSkill[];
|
|
70
|
+
/** Whether the agent supports providing an extended agent card when the user is authenticated, i.e. is the card from .well-known different than the card from GetAgentCard. */
|
|
71
|
+
supportsAuthenticatedExtendedCard?: boolean;
|
|
72
|
+
/** A URL to the address the agent is hosted at. This represents the preferred endpoint as declared by the agent. */
|
|
73
|
+
url?: string;
|
|
74
|
+
/** The version of the agent. Example: "1.0.0" */
|
|
75
|
+
version?: string;
|
|
76
|
+
}
|
|
77
|
+
interface A2aV1AgentCardSignature {
|
|
78
|
+
/** The unprotected JWS header values. */
|
|
79
|
+
header?: {[P in string]: any};
|
|
80
|
+
/** Required. The protected JWS header for the signature. This is always a base64url-encoded JSON object. Required. */
|
|
81
|
+
protected?: string;
|
|
82
|
+
/** Required. The computed signature, base64url-encoded. Required. */
|
|
83
|
+
signature?: string;
|
|
84
|
+
}
|
|
85
|
+
interface A2aV1AgentExtension {
|
|
86
|
+
/** A description of how this agent uses this extension. Example: "Google OAuth 2.0 authentication" */
|
|
87
|
+
description?: string;
|
|
88
|
+
/** Optional configuration for the extension. */
|
|
89
|
+
params?: {[P in string]: any};
|
|
90
|
+
/** Whether the client must follow specific requirements of the extension. Example: false */
|
|
91
|
+
required?: boolean;
|
|
92
|
+
/** The URI of the extension. Example: "https://developers.google.com/identity/protocols/oauth2" */
|
|
93
|
+
uri?: string;
|
|
94
|
+
}
|
|
95
|
+
interface A2aV1AgentInterface {
|
|
96
|
+
/** Tenant to be set in the request when calling the agent. Experimental, might still change for 1.0 release. */
|
|
97
|
+
tenant?: string;
|
|
98
|
+
/** The transport supported this url. This is an open form string, to be easily extended for many transport protocols. The core ones officially supported are JSONRPC, GRPC and HTTP+JSON. */
|
|
99
|
+
transport?: string;
|
|
100
|
+
/** The url this interface is found at. */
|
|
101
|
+
url?: string;
|
|
102
|
+
}
|
|
103
|
+
interface A2aV1AgentProvider {
|
|
104
|
+
/** The providers organization name Example: "Google" */
|
|
105
|
+
organization?: string;
|
|
106
|
+
/** The providers reference url Example: "https://ai.google.dev" */
|
|
107
|
+
url?: string;
|
|
108
|
+
}
|
|
109
|
+
interface A2aV1AgentSkill {
|
|
110
|
+
/** A human (or llm) readable description of the skill details and behaviors. */
|
|
111
|
+
description?: string;
|
|
112
|
+
/** A set of example queries that this skill is designed to address. These examples should help the caller to understand how to craft requests to the agent to achieve specific goals. Example: ["I need a recipe for bread"] */
|
|
113
|
+
examples?: string[];
|
|
114
|
+
/** Unique identifier of the skill within this agent. */
|
|
115
|
+
id?: string;
|
|
116
|
+
/** Possible input modalities supported. */
|
|
117
|
+
inputModes?: string[];
|
|
118
|
+
/** A human readable name for the skill. */
|
|
119
|
+
name?: string;
|
|
120
|
+
/** Possible output modalities produced */
|
|
121
|
+
outputModes?: string[];
|
|
122
|
+
/** protolint:disable REPEATED_FIELD_NAMES_PLURALIZED Security schemes necessary for the agent to leverage this skill. As in the overall AgentCard.security, this list represents a logical OR of security requirement objects. Each object is a set of security schemes that must be used together (a logical AND). protolint:enable REPEATED_FIELD_NAMES_PLURALIZED */
|
|
123
|
+
security?: A2aV1Security[];
|
|
124
|
+
/** A set of tags for the skill to enhance categorization/utilization. Example: ["cooking", "customer support", "billing"] */
|
|
125
|
+
tags?: string[];
|
|
126
|
+
}
|
|
127
|
+
interface A2aV1APIKeySecurityScheme {
|
|
128
|
+
/** Description of this security scheme. */
|
|
129
|
+
description?: string;
|
|
130
|
+
/** Location of the API key, valid values are "query", "header", or "cookie" */
|
|
131
|
+
location?: string;
|
|
132
|
+
/** Name of the header, query or cookie parameter to be used. */
|
|
133
|
+
name?: string;
|
|
134
|
+
}
|
|
135
|
+
interface A2aV1Artifact {
|
|
136
|
+
/** Unique identifier (e.g. UUID) for the artifact. It must be at least unique within a task. */
|
|
137
|
+
artifactId?: string;
|
|
138
|
+
/** A human readable description of the artifact, optional. */
|
|
139
|
+
description?: string;
|
|
140
|
+
/** The URIs of extensions that are present or contributed to this Artifact. */
|
|
141
|
+
extensions?: string[];
|
|
142
|
+
/** Optional metadata included with the artifact. */
|
|
143
|
+
metadata?: {[P in string]: any};
|
|
144
|
+
/** A human readable name for the artifact. */
|
|
145
|
+
name?: string;
|
|
146
|
+
/** The content of the artifact. */
|
|
147
|
+
parts?: A2aV1Part[];
|
|
148
|
+
}
|
|
149
|
+
interface A2aV1AuthenticationInfo {
|
|
150
|
+
/** Optional credentials */
|
|
151
|
+
credentials?: string;
|
|
152
|
+
/** Supported authentication schemes - e.g. Basic, Bearer, etc */
|
|
153
|
+
schemes?: string[];
|
|
154
|
+
}
|
|
155
|
+
interface A2aV1AuthorizationCodeOAuthFlow {
|
|
156
|
+
/** The authorization URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS */
|
|
157
|
+
authorizationUrl?: string;
|
|
158
|
+
/** The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. */
|
|
159
|
+
refreshUrl?: string;
|
|
160
|
+
/** The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it. The map MAY be empty. */
|
|
161
|
+
scopes?: {[P in string]: string};
|
|
162
|
+
/** The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. */
|
|
163
|
+
tokenUrl?: string;
|
|
164
|
+
}
|
|
165
|
+
interface A2aV1CancelTaskRequest {}
|
|
166
|
+
interface A2aV1ClientCredentialsOAuthFlow {
|
|
167
|
+
/** The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. */
|
|
168
|
+
refreshUrl?: string;
|
|
169
|
+
/** The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it. The map MAY be empty. */
|
|
170
|
+
scopes?: {[P in string]: string};
|
|
171
|
+
/** The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. */
|
|
172
|
+
tokenUrl?: string;
|
|
173
|
+
}
|
|
174
|
+
interface A2aV1DataPart {
|
|
175
|
+
data?: {[P in string]: any};
|
|
176
|
+
}
|
|
177
|
+
interface A2aV1FilePart {
|
|
178
|
+
fileWithBytes?: string;
|
|
179
|
+
fileWithUri?: string;
|
|
180
|
+
mimeType?: string;
|
|
181
|
+
name?: string;
|
|
182
|
+
}
|
|
183
|
+
interface A2aV1HTTPAuthSecurityScheme {
|
|
184
|
+
/** A hint to the client to identify how the bearer token is formatted. Bearer tokens are usually generated by an authorization server, so this information is primarily for documentation purposes. */
|
|
185
|
+
bearerFormat?: string;
|
|
186
|
+
/** Description of this security scheme. */
|
|
187
|
+
description?: string;
|
|
188
|
+
/** The name of the HTTP Authentication scheme to be used in the Authorization header as defined in RFC7235. The values used SHOULD be registered in the IANA Authentication Scheme registry. The value is case-insensitive, as defined in RFC7235. */
|
|
189
|
+
scheme?: string;
|
|
190
|
+
}
|
|
191
|
+
interface A2aV1ImplicitOAuthFlow {
|
|
192
|
+
/** The authorization URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS */
|
|
193
|
+
authorizationUrl?: string;
|
|
194
|
+
/** The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. */
|
|
195
|
+
refreshUrl?: string;
|
|
196
|
+
/** The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it. The map MAY be empty. */
|
|
197
|
+
scopes?: {[P in string]: string};
|
|
198
|
+
}
|
|
199
|
+
interface A2aV1ListTaskPushNotificationConfigResponse {
|
|
200
|
+
/** The list of push notification configurations. */
|
|
201
|
+
configs?: A2aV1TaskPushNotificationConfig[];
|
|
202
|
+
/** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
203
|
+
nextPageToken?: string;
|
|
204
|
+
}
|
|
205
|
+
interface A2aV1Message {
|
|
206
|
+
/** protolint:disable REPEATED_FIELD_NAMES_PLURALIZED Content is the container of the message content. */
|
|
207
|
+
content?: A2aV1Part[];
|
|
208
|
+
/** The context id of the message. This is optional and if set, the message will be associated with the given context. */
|
|
209
|
+
contextId?: string;
|
|
210
|
+
/** The URIs of extensions that are present or contributed to this Message. */
|
|
211
|
+
extensions?: string[];
|
|
212
|
+
/** The unique identifier (e.g. UUID)of the message. This is required and created by the message creator. */
|
|
213
|
+
messageId?: string;
|
|
214
|
+
/** protolint:enable REPEATED_FIELD_NAMES_PLURALIZED Any optional metadata to provide along with the message. */
|
|
215
|
+
metadata?: {[P in string]: any};
|
|
216
|
+
/** A role for the message. */
|
|
217
|
+
role?: string;
|
|
218
|
+
/** The task id of the message. This is optional and if set, the message will be associated with the given task. */
|
|
219
|
+
taskId?: string;
|
|
220
|
+
}
|
|
221
|
+
interface A2aV1MutualTlsSecurityScheme {
|
|
222
|
+
/** Description of this security scheme. */
|
|
223
|
+
description?: string;
|
|
224
|
+
}
|
|
225
|
+
interface A2aV1OAuth2SecurityScheme {
|
|
226
|
+
/** Description of this security scheme. */
|
|
227
|
+
description?: string;
|
|
228
|
+
/** An object containing configuration information for the flow types supported */
|
|
229
|
+
flows?: A2aV1OAuthFlows;
|
|
230
|
+
/** URL to the oauth2 authorization server metadata [RFC8414](https://datatracker.ietf.org/doc/html/rfc8414). TLS is required. */
|
|
231
|
+
oauth2MetadataUrl?: string;
|
|
232
|
+
}
|
|
233
|
+
interface A2aV1OAuthFlows {
|
|
234
|
+
authorizationCode?: A2aV1AuthorizationCodeOAuthFlow;
|
|
235
|
+
clientCredentials?: A2aV1ClientCredentialsOAuthFlow;
|
|
236
|
+
implicit?: A2aV1ImplicitOAuthFlow;
|
|
237
|
+
password?: A2aV1PasswordOAuthFlow;
|
|
238
|
+
}
|
|
239
|
+
interface A2aV1OpenIdConnectSecurityScheme {
|
|
240
|
+
/** Description of this security scheme. */
|
|
241
|
+
description?: string;
|
|
242
|
+
/** Well-known URL to discover the [[OpenID-Connect-Discovery]] provider metadata. */
|
|
243
|
+
openIdConnectUrl?: string;
|
|
244
|
+
}
|
|
245
|
+
interface A2aV1Part {
|
|
246
|
+
data?: A2aV1DataPart;
|
|
247
|
+
file?: A2aV1FilePart;
|
|
248
|
+
/** Optional metadata associated with this part. */
|
|
249
|
+
metadata?: {[P in string]: any};
|
|
250
|
+
text?: string;
|
|
251
|
+
}
|
|
252
|
+
interface A2aV1PasswordOAuthFlow {
|
|
253
|
+
/** The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. */
|
|
254
|
+
refreshUrl?: string;
|
|
255
|
+
/** The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it. The map MAY be empty. */
|
|
256
|
+
scopes?: {[P in string]: string};
|
|
257
|
+
/** The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS. */
|
|
258
|
+
tokenUrl?: string;
|
|
259
|
+
}
|
|
260
|
+
interface A2aV1PushNotificationConfig {
|
|
261
|
+
/** Information about the authentication to sent with the notification */
|
|
262
|
+
authentication?: A2aV1AuthenticationInfo;
|
|
263
|
+
/** A unique identifier (e.g. UUID) for this push notification. */
|
|
264
|
+
id?: string;
|
|
265
|
+
/** Token unique for this task/session */
|
|
266
|
+
token?: string;
|
|
267
|
+
/** Url to send the notification too */
|
|
268
|
+
url?: string;
|
|
269
|
+
}
|
|
270
|
+
interface A2aV1Security {
|
|
271
|
+
schemes?: {[P in string]: A2aV1StringList};
|
|
272
|
+
}
|
|
273
|
+
interface A2aV1SecurityScheme {
|
|
274
|
+
apiKeySecurityScheme?: A2aV1APIKeySecurityScheme;
|
|
275
|
+
httpAuthSecurityScheme?: A2aV1HTTPAuthSecurityScheme;
|
|
276
|
+
mtlsSecurityScheme?: A2aV1MutualTlsSecurityScheme;
|
|
277
|
+
oauth2SecurityScheme?: A2aV1OAuth2SecurityScheme;
|
|
278
|
+
openIdConnectSecurityScheme?: A2aV1OpenIdConnectSecurityScheme;
|
|
279
|
+
}
|
|
280
|
+
interface A2aV1SendMessageConfiguration {
|
|
281
|
+
/** The output modes that the agent is expected to respond with. */
|
|
282
|
+
acceptedOutputModes?: string[];
|
|
283
|
+
/** If true, the message will be blocking until the task is completed. If false, the message will be non-blocking and the task will be returned immediately. It is the caller's responsibility to check for any task updates. */
|
|
284
|
+
blocking?: boolean;
|
|
285
|
+
/** The maximum number of messages to include in the history. if 0, the history will be unlimited. */
|
|
286
|
+
historyLength?: number;
|
|
287
|
+
/** A configuration of a webhook that can be used to receive updates */
|
|
288
|
+
pushNotification?: A2aV1PushNotificationConfig;
|
|
289
|
+
}
|
|
290
|
+
interface A2aV1SendMessageRequest {
|
|
291
|
+
/** Configuration for the send request. */
|
|
292
|
+
configuration?: A2aV1SendMessageConfiguration;
|
|
293
|
+
/** Required. The message to send to the agent. */
|
|
294
|
+
message?: A2aV1Message;
|
|
295
|
+
/** Optional metadata for the request. */
|
|
296
|
+
metadata?: {[P in string]: any};
|
|
297
|
+
}
|
|
298
|
+
interface A2aV1SendMessageResponse {
|
|
299
|
+
message?: A2aV1Message;
|
|
300
|
+
task?: A2aV1Task;
|
|
301
|
+
}
|
|
302
|
+
interface A2aV1StreamResponse {
|
|
303
|
+
artifactUpdate?: A2aV1TaskArtifactUpdateEvent;
|
|
304
|
+
message?: A2aV1Message;
|
|
305
|
+
statusUpdate?: A2aV1TaskStatusUpdateEvent;
|
|
306
|
+
task?: A2aV1Task;
|
|
307
|
+
}
|
|
308
|
+
interface A2aV1StringList {
|
|
309
|
+
list?: string[];
|
|
310
|
+
}
|
|
311
|
+
interface A2aV1Task {
|
|
312
|
+
/** A set of output artifacts for a Task. */
|
|
313
|
+
artifacts?: A2aV1Artifact[];
|
|
314
|
+
/** Unique identifier (e.g. UUID) for the contextual collection of interactions (tasks and messages). Created by the A2A server. */
|
|
315
|
+
contextId?: string;
|
|
316
|
+
/** protolint:disable REPEATED_FIELD_NAMES_PLURALIZED The history of interactions from a task. */
|
|
317
|
+
history?: A2aV1Message[];
|
|
318
|
+
/** Unique identifier (e.g. UUID) for the task, generated by the server for a new task. */
|
|
319
|
+
id?: string;
|
|
320
|
+
/** protolint:enable REPEATED_FIELD_NAMES_PLURALIZED A key/value object to store custom metadata about a task. */
|
|
321
|
+
metadata?: {[P in string]: any};
|
|
322
|
+
/** The current status of a Task, including state and a message. */
|
|
323
|
+
status?: A2aV1TaskStatus;
|
|
324
|
+
}
|
|
325
|
+
interface A2aV1TaskArtifactUpdateEvent {
|
|
326
|
+
/** Whether this should be appended to a prior one produced */
|
|
327
|
+
append?: boolean;
|
|
328
|
+
/** The artifact itself */
|
|
329
|
+
artifact?: A2aV1Artifact;
|
|
330
|
+
/** The id of the context that this task belongs too */
|
|
331
|
+
contextId?: string;
|
|
332
|
+
/** Whether this represents the last part of an artifact */
|
|
333
|
+
lastChunk?: boolean;
|
|
334
|
+
/** Optional metadata associated with the artifact update. */
|
|
335
|
+
metadata?: {[P in string]: any};
|
|
336
|
+
/** The id of the task for this artifact */
|
|
337
|
+
taskId?: string;
|
|
338
|
+
}
|
|
339
|
+
interface A2aV1TaskPushNotificationConfig {
|
|
340
|
+
/** The resource name of the config. Format: tasks/{task_id}/pushNotificationConfigs/{config_id} */
|
|
341
|
+
name?: string;
|
|
342
|
+
/** The push notification configuration details. */
|
|
343
|
+
pushNotificationConfig?: A2aV1PushNotificationConfig;
|
|
344
|
+
}
|
|
345
|
+
interface A2aV1TaskStatus {
|
|
346
|
+
/** A message associated with the status. */
|
|
347
|
+
message?: A2aV1Message;
|
|
348
|
+
/** The current state of this task */
|
|
349
|
+
state?: string;
|
|
350
|
+
/** Timestamp when the status was recorded. Example: "2023-10-27T10:00:00Z" */
|
|
351
|
+
timestamp?: string;
|
|
352
|
+
}
|
|
353
|
+
interface A2aV1TaskStatusUpdateEvent {
|
|
354
|
+
/** The id of the context that the task belongs to */
|
|
355
|
+
contextId?: string;
|
|
356
|
+
/** Whether this is the last status update expected for this task. */
|
|
357
|
+
final?: boolean;
|
|
358
|
+
/** Optional metadata to associate with the task update. */
|
|
359
|
+
metadata?: {[P in string]: any};
|
|
360
|
+
/** The new status of the task. */
|
|
361
|
+
status?: A2aV1TaskStatus;
|
|
362
|
+
/** The id of the task that is changed */
|
|
363
|
+
taskId?: string;
|
|
364
|
+
}
|
|
31
365
|
interface GoogleApiDistribution {
|
|
32
366
|
/** The number of values in each bucket of the histogram, as described in `bucket_options`. If the distribution does not have a histogram, then omit this field. If there is a histogram, then the sum of the values in `bucket_counts` must equal the value in the `count` field of the distribution. If present, `bucket_counts` should contain N values, where N is the number of buckets specified in `bucket_options`. If you supply fewer than N values, the remaining values are assumed to be 0. The order of the values in `bucket_counts` follows the bucket numbering schemes described for the three bucket types. The first value must be the count for the underflow bucket (number 0). The next N-2 values are the counts for the finite buckets (number 1 through N-2). The N'th value in `bucket_counts` is the count for the overflow bucket (number N-1). */
|
|
33
367
|
bucketCounts?: string[];
|
|
@@ -1002,6 +1336,8 @@ declare namespace gapi.client {
|
|
|
1002
1336
|
dataSource?: string;
|
|
1003
1337
|
/** Optional. Any target destinations used to connect to third-party services. */
|
|
1004
1338
|
destinationConfigs?: GoogleCloudDiscoveryengineV1alphaDestinationConfig[];
|
|
1339
|
+
/** Output only. The list of FQDNs of the data connector can egress to. This includes both FQDN derived from the customer provided instance URL and default per connector type FQDNs. Note: This field is derived from both the DataConnector.params, and connector source spec. It should only be used for CAIS and Org Policy evaluation purposes. */
|
|
1340
|
+
egressFqdns?: string[];
|
|
1005
1341
|
/** Optional. Any params and credentials used specifically for EUA connectors. */
|
|
1006
1342
|
endUserConfig?: GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig;
|
|
1007
1343
|
/** List of entities from the connected data source to ingest. */
|
|
@@ -1054,6 +1390,8 @@ declare namespace gapi.client {
|
|
|
1054
1390
|
syncMode?: string;
|
|
1055
1391
|
/** Output only. Timestamp the DataConnector was last updated. */
|
|
1056
1392
|
updateTime?: string;
|
|
1393
|
+
/** Output only. Whether the connector is created with VPC-SC enabled. This is only used for CuOP evaluation purpose. */
|
|
1394
|
+
vpcscEnabled?: boolean;
|
|
1057
1395
|
}
|
|
1058
1396
|
interface GoogleCloudDiscoveryengineV1alphaDataConnectorEndUserConfig {
|
|
1059
1397
|
/** Optional. Any additional parameters needed for EUA. */
|
|
@@ -1355,6 +1693,8 @@ declare namespace gapi.client {
|
|
|
1355
1693
|
commonConfig?: GoogleCloudDiscoveryengineV1alphaEngineCommonConfig;
|
|
1356
1694
|
/** Optional. Configuration for configurable billing approach. */
|
|
1357
1695
|
configurableBillingApproach?: string;
|
|
1696
|
+
/** Optional. Maps a connector ID (e.g., "hybrid-github", "shopify") to tenant-specific information required for that connector. The structure of the tenant information string is connector-dependent. */
|
|
1697
|
+
connectorTenantInfo?: {[P in string]: string};
|
|
1358
1698
|
/** Output only. Timestamp the Recommendation Engine was created at. */
|
|
1359
1699
|
createTime?: string;
|
|
1360
1700
|
/** Optional. The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be associated here. Note that when used in CreateEngineRequest, one DataStore id must be provided as the system will use it for necessary initializations. */
|
|
@@ -1369,6 +1709,8 @@ declare namespace gapi.client {
|
|
|
1369
1709
|
industryVertical?: string;
|
|
1370
1710
|
/** Optional. Configurations for the Knowledge Graph. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
1371
1711
|
knowledgeGraphConfig?: GoogleCloudDiscoveryengineV1alphaEngineKnowledgeGraphConfig;
|
|
1712
|
+
/** Optional. The visibility of marketplace agents in the agent gallery. */
|
|
1713
|
+
marketplaceAgentVisibility?: string;
|
|
1372
1714
|
/** Configurations for the Media Engine. Only applicable on the data stores with solution_type SOLUTION_TYPE_RECOMMENDATION and IndustryVertical.MEDIA vertical. */
|
|
1373
1715
|
mediaRecommendationEngineConfig?: GoogleCloudDiscoveryengineV1alphaEngineMediaRecommendationEngineConfig;
|
|
1374
1716
|
/** Optional. Maps a model name to its specific configuration for this engine. This allows admin users to turn on/off individual models. This only stores models whose states are overridden by the admin. When the state is unspecified, or model_configs is empty for this model, the system will decide if this model should be available or not based on the default configuration. For example, a preview model should be disabled by default if the admin has not chosen to enable it. */
|
|
@@ -1377,6 +1719,8 @@ declare namespace gapi.client {
|
|
|
1377
1719
|
name?: string;
|
|
1378
1720
|
/** Optional. Observability config for the engine. */
|
|
1379
1721
|
observabilityConfig?: GoogleCloudDiscoveryengineV1alphaObservabilityConfig;
|
|
1722
|
+
/** Optional. The email of the procurement contact. */
|
|
1723
|
+
procurementContactEmail?: string;
|
|
1380
1724
|
/** Output only. Additional information of a recommendation engine. Only applicable if solution_type is SOLUTION_TYPE_RECOMMENDATION. */
|
|
1381
1725
|
recommendationMetadata?: GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata;
|
|
1382
1726
|
/** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
@@ -1745,7 +2089,7 @@ declare namespace gapi.client {
|
|
|
1745
2089
|
subscriptionTier?: string;
|
|
1746
2090
|
}
|
|
1747
2091
|
interface GoogleCloudDiscoveryengineV1alphaListSessionsRequest {
|
|
1748
|
-
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` */
|
|
2092
|
+
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/global/collections/default_collection/engines/" "default_engine/collaborative_projects/cp1"` */
|
|
1749
2093
|
filter?: string;
|
|
1750
2094
|
/** A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `update_time` * `create_time` * `session_name` * `is_pinned` Example: * `update_time desc` * `create_time` * `is_pinned desc,update_time desc`: list sessions by is_pinned first, then by update_time. */
|
|
1751
2095
|
orderBy?: string;
|
|
@@ -2148,7 +2492,7 @@ declare namespace gapi.client {
|
|
|
2148
2492
|
languageCode?: string;
|
|
2149
2493
|
/** Optional. Config for natural language query understanding capabilities, such as extracting structured field filters from the query. Refer to [this documentation](https://cloud.google.com/generative-ai-app-builder/docs/natural-language-queries) for more information. If `naturalLanguageQueryUnderstandingSpec` is not specified, no additional natural language query understanding will be done. */
|
|
2150
2494
|
naturalLanguageQueryUnderstandingSpec?: GoogleCloudDiscoveryengineV1alphaSearchRequestNaturalLanguageQueryUnderstandingSpec;
|
|
2151
|
-
/** Optional. The maximum number of results to retrieve from each data store. If not specified, it will use the SearchRequest.
|
|
2495
|
+
/** Optional. The maximum number of results to retrieve from each data store. If not specified, it will use the SearchRequest.DataStoreSpec.num_results if provided, otherwise there is no limit. */
|
|
2152
2496
|
numResultsPerDataStore?: number;
|
|
2153
2497
|
/** A 0-indexed integer that specifies the current offset (that is, starting result location, amongst the Documents deemed by the API as relevant) in search results. This field is only considered if page_token is unset. If this field is negative, an `INVALID_ARGUMENT` is returned. A large offset may be capped to a reasonable threshold. */
|
|
2154
2498
|
offset?: number;
|
|
@@ -3662,6 +4006,8 @@ declare namespace gapi.client {
|
|
|
3662
4006
|
commonConfig?: GoogleCloudDiscoveryengineV1betaEngineCommonConfig;
|
|
3663
4007
|
/** Optional. Configuration for configurable billing approach. */
|
|
3664
4008
|
configurableBillingApproach?: string;
|
|
4009
|
+
/** Optional. Maps a connector ID (e.g., "hybrid-github", "shopify") to tenant-specific information required for that connector. The structure of the tenant information string is connector-dependent. */
|
|
4010
|
+
connectorTenantInfo?: {[P in string]: string};
|
|
3665
4011
|
/** Output only. Timestamp the Recommendation Engine was created at. */
|
|
3666
4012
|
createTime?: string;
|
|
3667
4013
|
/** Optional. The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be associated here. Note that when used in CreateEngineRequest, one DataStore id must be provided as the system will use it for necessary initializations. */
|
|
@@ -3676,6 +4022,8 @@ declare namespace gapi.client {
|
|
|
3676
4022
|
industryVertical?: string;
|
|
3677
4023
|
/** Optional. Configurations for the Knowledge Graph. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
3678
4024
|
knowledgeGraphConfig?: GoogleCloudDiscoveryengineV1betaEngineKnowledgeGraphConfig;
|
|
4025
|
+
/** Optional. The visibility of marketplace agents in the agent gallery. */
|
|
4026
|
+
marketplaceAgentVisibility?: string;
|
|
3679
4027
|
/** Configurations for the Media Engine. Only applicable on the data stores with solution_type SOLUTION_TYPE_RECOMMENDATION and IndustryVertical.MEDIA vertical. */
|
|
3680
4028
|
mediaRecommendationEngineConfig?: GoogleCloudDiscoveryengineV1betaEngineMediaRecommendationEngineConfig;
|
|
3681
4029
|
/** Optional. Maps a model name to its specific configuration for this engine. This allows admin users to turn on/off individual models. This only stores models whose states are overridden by the admin. When the state is unspecified, or model_configs is empty for this model, the system will decide if this model should be available or not based on the default configuration. For example, a preview model should be disabled by default if the admin has not chosen to enable it. */
|
|
@@ -3684,6 +4032,8 @@ declare namespace gapi.client {
|
|
|
3684
4032
|
name?: string;
|
|
3685
4033
|
/** Optional. Observability config for the engine. */
|
|
3686
4034
|
observabilityConfig?: GoogleCloudDiscoveryengineV1betaObservabilityConfig;
|
|
4035
|
+
/** Optional. The email of the procurement contact. */
|
|
4036
|
+
procurementContactEmail?: string;
|
|
3687
4037
|
/** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
3688
4038
|
searchEngineConfig?: GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig;
|
|
3689
4039
|
/** Required. The solutions of the engine. */
|
|
@@ -4183,7 +4533,7 @@ declare namespace gapi.client {
|
|
|
4183
4533
|
languageCode?: string;
|
|
4184
4534
|
/** Optional. Config for natural language query understanding capabilities, such as extracting structured field filters from the query. Refer to [this documentation](https://cloud.google.com/generative-ai-app-builder/docs/natural-language-queries) for more information. If `naturalLanguageQueryUnderstandingSpec` is not specified, no additional natural language query understanding will be done. */
|
|
4185
4535
|
naturalLanguageQueryUnderstandingSpec?: GoogleCloudDiscoveryengineV1betaSearchRequestNaturalLanguageQueryUnderstandingSpec;
|
|
4186
|
-
/** Optional. The maximum number of results to retrieve from each data store. If not specified, it will use the SearchRequest.
|
|
4536
|
+
/** Optional. The maximum number of results to retrieve from each data store. If not specified, it will use the SearchRequest.DataStoreSpec.num_results if provided, otherwise there is no limit. */
|
|
4187
4537
|
numResultsPerDataStore?: number;
|
|
4188
4538
|
/** A 0-indexed integer that specifies the current offset (that is, starting result location, amongst the Documents deemed by the API as relevant) in search results. This field is only considered if page_token is unset. If this field is negative, an `INVALID_ARGUMENT` is returned. A large offset may be capped to a reasonable threshold. */
|
|
4189
4539
|
offset?: number;
|
|
@@ -5082,6 +5432,8 @@ declare namespace gapi.client {
|
|
|
5082
5432
|
dataSource?: string;
|
|
5083
5433
|
/** Optional. Any target destinations used to connect to third-party services. */
|
|
5084
5434
|
destinationConfigs?: GoogleCloudDiscoveryengineV1DestinationConfig[];
|
|
5435
|
+
/** Output only. The list of FQDNs of the data connector can egress to. This includes both FQDN derived from the customer provided instance URL and default per connector type FQDNs. Note: This field is derived from both the DataConnector.params, and connector source spec. It should only be used for CAIS and Org Policy evaluation purposes. */
|
|
5436
|
+
egressFqdns?: string[];
|
|
5085
5437
|
/** Optional. Any params and credentials used specifically for EUA connectors. */
|
|
5086
5438
|
endUserConfig?: GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig;
|
|
5087
5439
|
/** List of entities from the connected data source to ingest. */
|
|
@@ -5134,6 +5486,8 @@ declare namespace gapi.client {
|
|
|
5134
5486
|
syncMode?: string;
|
|
5135
5487
|
/** Output only. Timestamp the DataConnector was last updated. */
|
|
5136
5488
|
updateTime?: string;
|
|
5489
|
+
/** Output only. Whether the connector is created with VPC-SC enabled. This is only used for CuOP evaluation purpose. */
|
|
5490
|
+
vpcscEnabled?: boolean;
|
|
5137
5491
|
}
|
|
5138
5492
|
interface GoogleCloudDiscoveryengineV1DataConnectorEndUserConfig {
|
|
5139
5493
|
/** Optional. Any additional parameters needed for EUA. */
|
|
@@ -5465,6 +5819,8 @@ declare namespace gapi.client {
|
|
|
5465
5819
|
commonConfig?: GoogleCloudDiscoveryengineV1EngineCommonConfig;
|
|
5466
5820
|
/** Optional. Configuration for configurable billing approach. */
|
|
5467
5821
|
configurableBillingApproach?: string;
|
|
5822
|
+
/** Optional. Maps a connector ID (e.g., "hybrid-github", "shopify") to tenant-specific information required for that connector. The structure of the tenant information string is connector-dependent. */
|
|
5823
|
+
connectorTenantInfo?: {[P in string]: string};
|
|
5468
5824
|
/** Output only. Timestamp the Recommendation Engine was created at. */
|
|
5469
5825
|
createTime?: string;
|
|
5470
5826
|
/** Optional. The data stores associated with this engine. For SOLUTION_TYPE_SEARCH and SOLUTION_TYPE_RECOMMENDATION type of engines, they can only associate with at most one data store. If solution_type is SOLUTION_TYPE_CHAT, multiple DataStores in the same Collection can be associated here. Note that when used in CreateEngineRequest, one DataStore id must be provided as the system will use it for necessary initializations. */
|
|
@@ -5479,6 +5835,8 @@ declare namespace gapi.client {
|
|
|
5479
5835
|
industryVertical?: string;
|
|
5480
5836
|
/** Optional. Configurations for the Knowledge Graph. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
5481
5837
|
knowledgeGraphConfig?: GoogleCloudDiscoveryengineV1EngineKnowledgeGraphConfig;
|
|
5838
|
+
/** Optional. The visibility of marketplace agents in the agent gallery. */
|
|
5839
|
+
marketplaceAgentVisibility?: string;
|
|
5482
5840
|
/** Configurations for the Media Engine. Only applicable on the data stores with solution_type SOLUTION_TYPE_RECOMMENDATION and IndustryVertical.MEDIA vertical. */
|
|
5483
5841
|
mediaRecommendationEngineConfig?: GoogleCloudDiscoveryengineV1EngineMediaRecommendationEngineConfig;
|
|
5484
5842
|
/** Optional. Maps a model name to its specific configuration for this engine. This allows admin users to turn on/off individual models. This only stores models whose states are overridden by the admin. When the state is unspecified, or model_configs is empty for this model, the system will decide if this model should be available or not based on the default configuration. For example, a preview model should be disabled by default if the admin has not chosen to enable it. */
|
|
@@ -5487,6 +5845,8 @@ declare namespace gapi.client {
|
|
|
5487
5845
|
name?: string;
|
|
5488
5846
|
/** Optional. Observability config for the engine. */
|
|
5489
5847
|
observabilityConfig?: GoogleCloudDiscoveryengineV1ObservabilityConfig;
|
|
5848
|
+
/** Optional. The email of the procurement contact. */
|
|
5849
|
+
procurementContactEmail?: string;
|
|
5490
5850
|
/** Configurations for the Search Engine. Only applicable if solution_type is SOLUTION_TYPE_SEARCH. */
|
|
5491
5851
|
searchEngineConfig?: GoogleCloudDiscoveryengineV1EngineSearchEngineConfig;
|
|
5492
5852
|
/** Required. The solutions of the engine. */
|
|
@@ -10014,7 +10374,7 @@ declare namespace gapi.client {
|
|
|
10014
10374
|
callback?: string;
|
|
10015
10375
|
/** Selector specifying which fields to include in a partial response. */
|
|
10016
10376
|
fields?: string;
|
|
10017
|
-
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` */
|
|
10377
|
+
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/global/collections/default_collection/engines/" "default_engine/collaborative_projects/cp1"` */
|
|
10018
10378
|
filter?: string;
|
|
10019
10379
|
/** 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. */
|
|
10020
10380
|
key?: string;
|
|
@@ -11665,6 +12025,124 @@ declare namespace gapi.client {
|
|
|
11665
12025
|
userEvents: UserEventsResource;
|
|
11666
12026
|
widgetConfigs: WidgetConfigsResource;
|
|
11667
12027
|
}
|
|
12028
|
+
interface MessageResource {
|
|
12029
|
+
/** Send a message to the agent. This is a blocking call that will return the task once it is completed, or a LRO if requested. */
|
|
12030
|
+
send(request: {
|
|
12031
|
+
/** V1 error format. */
|
|
12032
|
+
'$.xgafv'?: string;
|
|
12033
|
+
/** OAuth access token. */
|
|
12034
|
+
access_token?: string;
|
|
12035
|
+
/** Data format for response. */
|
|
12036
|
+
alt?: string;
|
|
12037
|
+
/** JSONP */
|
|
12038
|
+
callback?: string;
|
|
12039
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12040
|
+
fields?: string;
|
|
12041
|
+
/** 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. */
|
|
12042
|
+
key?: string;
|
|
12043
|
+
/** OAuth 2.0 token for the current user. */
|
|
12044
|
+
oauth_token?: string;
|
|
12045
|
+
/** Returns response with indentations and line breaks. */
|
|
12046
|
+
prettyPrint?: boolean;
|
|
12047
|
+
/** 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. */
|
|
12048
|
+
quotaUser?: string;
|
|
12049
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12050
|
+
tenant: string;
|
|
12051
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12052
|
+
upload_protocol?: string;
|
|
12053
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12054
|
+
uploadType?: string;
|
|
12055
|
+
/** Request body */
|
|
12056
|
+
resource: A2aV1SendMessageRequest;
|
|
12057
|
+
}): Request<A2aV1SendMessageResponse>;
|
|
12058
|
+
send(
|
|
12059
|
+
request: {
|
|
12060
|
+
/** V1 error format. */
|
|
12061
|
+
'$.xgafv'?: string;
|
|
12062
|
+
/** OAuth access token. */
|
|
12063
|
+
access_token?: string;
|
|
12064
|
+
/** Data format for response. */
|
|
12065
|
+
alt?: string;
|
|
12066
|
+
/** JSONP */
|
|
12067
|
+
callback?: string;
|
|
12068
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12069
|
+
fields?: string;
|
|
12070
|
+
/** 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. */
|
|
12071
|
+
key?: string;
|
|
12072
|
+
/** OAuth 2.0 token for the current user. */
|
|
12073
|
+
oauth_token?: string;
|
|
12074
|
+
/** Returns response with indentations and line breaks. */
|
|
12075
|
+
prettyPrint?: boolean;
|
|
12076
|
+
/** 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. */
|
|
12077
|
+
quotaUser?: string;
|
|
12078
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12079
|
+
tenant: string;
|
|
12080
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12081
|
+
upload_protocol?: string;
|
|
12082
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12083
|
+
uploadType?: string;
|
|
12084
|
+
},
|
|
12085
|
+
body: A2aV1SendMessageRequest,
|
|
12086
|
+
): Request<A2aV1SendMessageResponse>;
|
|
12087
|
+
/** SendStreamingMessage is a streaming call that will return a stream of task update events until the Task is in an interrupted or terminal state. */
|
|
12088
|
+
stream(request: {
|
|
12089
|
+
/** V1 error format. */
|
|
12090
|
+
'$.xgafv'?: string;
|
|
12091
|
+
/** OAuth access token. */
|
|
12092
|
+
access_token?: string;
|
|
12093
|
+
/** Data format for response. */
|
|
12094
|
+
alt?: string;
|
|
12095
|
+
/** JSONP */
|
|
12096
|
+
callback?: string;
|
|
12097
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12098
|
+
fields?: string;
|
|
12099
|
+
/** 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. */
|
|
12100
|
+
key?: string;
|
|
12101
|
+
/** OAuth 2.0 token for the current user. */
|
|
12102
|
+
oauth_token?: string;
|
|
12103
|
+
/** Returns response with indentations and line breaks. */
|
|
12104
|
+
prettyPrint?: boolean;
|
|
12105
|
+
/** 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. */
|
|
12106
|
+
quotaUser?: string;
|
|
12107
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12108
|
+
tenant: string;
|
|
12109
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12110
|
+
upload_protocol?: string;
|
|
12111
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12112
|
+
uploadType?: string;
|
|
12113
|
+
/** Request body */
|
|
12114
|
+
resource: A2aV1SendMessageRequest;
|
|
12115
|
+
}): Request<A2aV1StreamResponse>;
|
|
12116
|
+
stream(
|
|
12117
|
+
request: {
|
|
12118
|
+
/** V1 error format. */
|
|
12119
|
+
'$.xgafv'?: string;
|
|
12120
|
+
/** OAuth access token. */
|
|
12121
|
+
access_token?: string;
|
|
12122
|
+
/** Data format for response. */
|
|
12123
|
+
alt?: string;
|
|
12124
|
+
/** JSONP */
|
|
12125
|
+
callback?: string;
|
|
12126
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12127
|
+
fields?: string;
|
|
12128
|
+
/** 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. */
|
|
12129
|
+
key?: string;
|
|
12130
|
+
/** OAuth 2.0 token for the current user. */
|
|
12131
|
+
oauth_token?: string;
|
|
12132
|
+
/** Returns response with indentations and line breaks. */
|
|
12133
|
+
prettyPrint?: boolean;
|
|
12134
|
+
/** 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. */
|
|
12135
|
+
quotaUser?: string;
|
|
12136
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12137
|
+
tenant: string;
|
|
12138
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12139
|
+
upload_protocol?: string;
|
|
12140
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12141
|
+
uploadType?: string;
|
|
12142
|
+
},
|
|
12143
|
+
body: A2aV1SendMessageRequest,
|
|
12144
|
+
): Request<A2aV1StreamResponse>;
|
|
12145
|
+
}
|
|
11668
12146
|
interface OperationsResource {
|
|
11669
12147
|
/** 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. */
|
|
11670
12148
|
get(request?: {
|
|
@@ -11694,8 +12172,321 @@ declare namespace gapi.client {
|
|
|
11694
12172
|
uploadType?: string;
|
|
11695
12173
|
}): Request<GoogleLongrunningOperation>;
|
|
11696
12174
|
}
|
|
12175
|
+
interface PushNotificationConfigsResource {
|
|
12176
|
+
/** Set a push notification config for a task. */
|
|
12177
|
+
create(request: {
|
|
12178
|
+
/** V1 error format. */
|
|
12179
|
+
'$.xgafv'?: string;
|
|
12180
|
+
/** OAuth access token. */
|
|
12181
|
+
access_token?: string;
|
|
12182
|
+
/** Data format for response. */
|
|
12183
|
+
alt?: string;
|
|
12184
|
+
/** JSONP */
|
|
12185
|
+
callback?: string;
|
|
12186
|
+
/** Required. The ID for the new config. */
|
|
12187
|
+
configId?: string;
|
|
12188
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12189
|
+
fields?: string;
|
|
12190
|
+
/** 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. */
|
|
12191
|
+
key?: string;
|
|
12192
|
+
/** OAuth 2.0 token for the current user. */
|
|
12193
|
+
oauth_token?: string;
|
|
12194
|
+
/** Required. The parent task resource for this config. Format: tasks/{task_id} */
|
|
12195
|
+
parent: string;
|
|
12196
|
+
/** Returns response with indentations and line breaks. */
|
|
12197
|
+
prettyPrint?: boolean;
|
|
12198
|
+
/** 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. */
|
|
12199
|
+
quotaUser?: string;
|
|
12200
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12201
|
+
tenant: string;
|
|
12202
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12203
|
+
upload_protocol?: string;
|
|
12204
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12205
|
+
uploadType?: string;
|
|
12206
|
+
/** Request body */
|
|
12207
|
+
resource: A2aV1TaskPushNotificationConfig;
|
|
12208
|
+
}): Request<A2aV1TaskPushNotificationConfig>;
|
|
12209
|
+
create(
|
|
12210
|
+
request: {
|
|
12211
|
+
/** V1 error format. */
|
|
12212
|
+
'$.xgafv'?: string;
|
|
12213
|
+
/** OAuth access token. */
|
|
12214
|
+
access_token?: string;
|
|
12215
|
+
/** Data format for response. */
|
|
12216
|
+
alt?: string;
|
|
12217
|
+
/** JSONP */
|
|
12218
|
+
callback?: string;
|
|
12219
|
+
/** Required. The ID for the new config. */
|
|
12220
|
+
configId?: string;
|
|
12221
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12222
|
+
fields?: string;
|
|
12223
|
+
/** 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. */
|
|
12224
|
+
key?: string;
|
|
12225
|
+
/** OAuth 2.0 token for the current user. */
|
|
12226
|
+
oauth_token?: string;
|
|
12227
|
+
/** Required. The parent task resource for this config. Format: tasks/{task_id} */
|
|
12228
|
+
parent: string;
|
|
12229
|
+
/** Returns response with indentations and line breaks. */
|
|
12230
|
+
prettyPrint?: boolean;
|
|
12231
|
+
/** 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. */
|
|
12232
|
+
quotaUser?: string;
|
|
12233
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12234
|
+
tenant: string;
|
|
12235
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12236
|
+
upload_protocol?: string;
|
|
12237
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12238
|
+
uploadType?: string;
|
|
12239
|
+
},
|
|
12240
|
+
body: A2aV1TaskPushNotificationConfig,
|
|
12241
|
+
): Request<A2aV1TaskPushNotificationConfig>;
|
|
12242
|
+
/** Delete a push notification config for a task. */
|
|
12243
|
+
delete(request?: {
|
|
12244
|
+
/** V1 error format. */
|
|
12245
|
+
'$.xgafv'?: string;
|
|
12246
|
+
/** OAuth access token. */
|
|
12247
|
+
access_token?: string;
|
|
12248
|
+
/** Data format for response. */
|
|
12249
|
+
alt?: string;
|
|
12250
|
+
/** JSONP */
|
|
12251
|
+
callback?: string;
|
|
12252
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12253
|
+
fields?: string;
|
|
12254
|
+
/** 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. */
|
|
12255
|
+
key?: string;
|
|
12256
|
+
/** The resource name of the config to delete. Format: tasks/{task_id}/pushNotificationConfigs/{config_id} */
|
|
12257
|
+
name: string;
|
|
12258
|
+
/** OAuth 2.0 token for the current user. */
|
|
12259
|
+
oauth_token?: string;
|
|
12260
|
+
/** Returns response with indentations and line breaks. */
|
|
12261
|
+
prettyPrint?: boolean;
|
|
12262
|
+
/** 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. */
|
|
12263
|
+
quotaUser?: string;
|
|
12264
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12265
|
+
tenant: string;
|
|
12266
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12267
|
+
upload_protocol?: string;
|
|
12268
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12269
|
+
uploadType?: string;
|
|
12270
|
+
}): Request<{}>;
|
|
12271
|
+
/** Get a push notification config for a task. */
|
|
12272
|
+
get(request?: {
|
|
12273
|
+
/** V1 error format. */
|
|
12274
|
+
'$.xgafv'?: string;
|
|
12275
|
+
/** OAuth access token. */
|
|
12276
|
+
access_token?: string;
|
|
12277
|
+
/** Data format for response. */
|
|
12278
|
+
alt?: string;
|
|
12279
|
+
/** JSONP */
|
|
12280
|
+
callback?: string;
|
|
12281
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12282
|
+
fields?: string;
|
|
12283
|
+
/** 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. */
|
|
12284
|
+
key?: string;
|
|
12285
|
+
/** The resource name of the config to retrieve. Format: tasks/{task_id}/pushNotificationConfigs/{config_id} */
|
|
12286
|
+
name: string;
|
|
12287
|
+
/** OAuth 2.0 token for the current user. */
|
|
12288
|
+
oauth_token?: string;
|
|
12289
|
+
/** Returns response with indentations and line breaks. */
|
|
12290
|
+
prettyPrint?: boolean;
|
|
12291
|
+
/** 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. */
|
|
12292
|
+
quotaUser?: string;
|
|
12293
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12294
|
+
tenant: string;
|
|
12295
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12296
|
+
upload_protocol?: string;
|
|
12297
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12298
|
+
uploadType?: string;
|
|
12299
|
+
}): Request<A2aV1TaskPushNotificationConfig>;
|
|
12300
|
+
/** Get a list of push notifications configured for a task. */
|
|
12301
|
+
list(request?: {
|
|
12302
|
+
/** V1 error format. */
|
|
12303
|
+
'$.xgafv'?: string;
|
|
12304
|
+
/** OAuth access token. */
|
|
12305
|
+
access_token?: string;
|
|
12306
|
+
/** Data format for response. */
|
|
12307
|
+
alt?: string;
|
|
12308
|
+
/** JSONP */
|
|
12309
|
+
callback?: string;
|
|
12310
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12311
|
+
fields?: string;
|
|
12312
|
+
/** 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. */
|
|
12313
|
+
key?: string;
|
|
12314
|
+
/** OAuth 2.0 token for the current user. */
|
|
12315
|
+
oauth_token?: string;
|
|
12316
|
+
/** For AIP-158 these fields are present. Usually not used/needed. The maximum number of configurations to return. If unspecified, all configs will be returned. */
|
|
12317
|
+
pageSize?: number;
|
|
12318
|
+
/** A page token received from a previous ListTaskPushNotificationConfigRequest call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListTaskPushNotificationConfigRequest` must match the call that provided the page token. */
|
|
12319
|
+
pageToken?: string;
|
|
12320
|
+
/** The parent task resource. Format: tasks/{task_id} */
|
|
12321
|
+
parent: string;
|
|
12322
|
+
/** Returns response with indentations and line breaks. */
|
|
12323
|
+
prettyPrint?: boolean;
|
|
12324
|
+
/** 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. */
|
|
12325
|
+
quotaUser?: string;
|
|
12326
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12327
|
+
tenant: string;
|
|
12328
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12329
|
+
upload_protocol?: string;
|
|
12330
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12331
|
+
uploadType?: string;
|
|
12332
|
+
}): Request<A2aV1ListTaskPushNotificationConfigResponse>;
|
|
12333
|
+
}
|
|
12334
|
+
interface TasksResource {
|
|
12335
|
+
/** Cancel a task from the agent. If supported one should expect no more task updates for the task. */
|
|
12336
|
+
cancel(request: {
|
|
12337
|
+
/** V1 error format. */
|
|
12338
|
+
'$.xgafv'?: string;
|
|
12339
|
+
/** OAuth access token. */
|
|
12340
|
+
access_token?: string;
|
|
12341
|
+
/** Data format for response. */
|
|
12342
|
+
alt?: string;
|
|
12343
|
+
/** JSONP */
|
|
12344
|
+
callback?: string;
|
|
12345
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12346
|
+
fields?: string;
|
|
12347
|
+
/** 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. */
|
|
12348
|
+
key?: string;
|
|
12349
|
+
/** The resource name of the task to cancel. Format: tasks/{task_id} */
|
|
12350
|
+
name: string;
|
|
12351
|
+
/** OAuth 2.0 token for the current user. */
|
|
12352
|
+
oauth_token?: string;
|
|
12353
|
+
/** Returns response with indentations and line breaks. */
|
|
12354
|
+
prettyPrint?: boolean;
|
|
12355
|
+
/** 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. */
|
|
12356
|
+
quotaUser?: string;
|
|
12357
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12358
|
+
tenant: string;
|
|
12359
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12360
|
+
upload_protocol?: string;
|
|
12361
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12362
|
+
uploadType?: string;
|
|
12363
|
+
/** Request body */
|
|
12364
|
+
resource: A2aV1CancelTaskRequest;
|
|
12365
|
+
}): Request<A2aV1Task>;
|
|
12366
|
+
cancel(
|
|
12367
|
+
request: {
|
|
12368
|
+
/** V1 error format. */
|
|
12369
|
+
'$.xgafv'?: string;
|
|
12370
|
+
/** OAuth access token. */
|
|
12371
|
+
access_token?: string;
|
|
12372
|
+
/** Data format for response. */
|
|
12373
|
+
alt?: string;
|
|
12374
|
+
/** JSONP */
|
|
12375
|
+
callback?: string;
|
|
12376
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12377
|
+
fields?: string;
|
|
12378
|
+
/** 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. */
|
|
12379
|
+
key?: string;
|
|
12380
|
+
/** The resource name of the task to cancel. Format: tasks/{task_id} */
|
|
12381
|
+
name: string;
|
|
12382
|
+
/** OAuth 2.0 token for the current user. */
|
|
12383
|
+
oauth_token?: string;
|
|
12384
|
+
/** Returns response with indentations and line breaks. */
|
|
12385
|
+
prettyPrint?: boolean;
|
|
12386
|
+
/** 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. */
|
|
12387
|
+
quotaUser?: string;
|
|
12388
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12389
|
+
tenant: string;
|
|
12390
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12391
|
+
upload_protocol?: string;
|
|
12392
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12393
|
+
uploadType?: string;
|
|
12394
|
+
},
|
|
12395
|
+
body: A2aV1CancelTaskRequest,
|
|
12396
|
+
): Request<A2aV1Task>;
|
|
12397
|
+
/** Get the current state of a task from the agent. */
|
|
12398
|
+
get(request?: {
|
|
12399
|
+
/** V1 error format. */
|
|
12400
|
+
'$.xgafv'?: string;
|
|
12401
|
+
/** OAuth access token. */
|
|
12402
|
+
access_token?: string;
|
|
12403
|
+
/** Data format for response. */
|
|
12404
|
+
alt?: string;
|
|
12405
|
+
/** JSONP */
|
|
12406
|
+
callback?: string;
|
|
12407
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12408
|
+
fields?: string;
|
|
12409
|
+
/** The number of most recent messages from the task's history to retrieve. */
|
|
12410
|
+
historyLength?: number;
|
|
12411
|
+
/** 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. */
|
|
12412
|
+
key?: string;
|
|
12413
|
+
/** Required. The resource name of the task. Format: tasks/{task_id} */
|
|
12414
|
+
name: string;
|
|
12415
|
+
/** OAuth 2.0 token for the current user. */
|
|
12416
|
+
oauth_token?: string;
|
|
12417
|
+
/** Returns response with indentations and line breaks. */
|
|
12418
|
+
prettyPrint?: boolean;
|
|
12419
|
+
/** 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. */
|
|
12420
|
+
quotaUser?: string;
|
|
12421
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12422
|
+
tenant: string;
|
|
12423
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12424
|
+
upload_protocol?: string;
|
|
12425
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12426
|
+
uploadType?: string;
|
|
12427
|
+
}): Request<A2aV1Task>;
|
|
12428
|
+
/** TaskSubscription is a streaming call that will return a stream of task update events. This attaches the stream to an existing in process task. If the task is complete the stream will return the completed task (like GetTask) and close the stream. */
|
|
12429
|
+
subscribe(request?: {
|
|
12430
|
+
/** V1 error format. */
|
|
12431
|
+
'$.xgafv'?: string;
|
|
12432
|
+
/** OAuth access token. */
|
|
12433
|
+
access_token?: string;
|
|
12434
|
+
/** Data format for response. */
|
|
12435
|
+
alt?: string;
|
|
12436
|
+
/** JSONP */
|
|
12437
|
+
callback?: string;
|
|
12438
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12439
|
+
fields?: string;
|
|
12440
|
+
/** 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. */
|
|
12441
|
+
key?: string;
|
|
12442
|
+
/** The resource name of the task to subscribe to. Format: tasks/{task_id} */
|
|
12443
|
+
name: string;
|
|
12444
|
+
/** OAuth 2.0 token for the current user. */
|
|
12445
|
+
oauth_token?: string;
|
|
12446
|
+
/** Returns response with indentations and line breaks. */
|
|
12447
|
+
prettyPrint?: boolean;
|
|
12448
|
+
/** 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. */
|
|
12449
|
+
quotaUser?: string;
|
|
12450
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12451
|
+
tenant: string;
|
|
12452
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12453
|
+
upload_protocol?: string;
|
|
12454
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12455
|
+
uploadType?: string;
|
|
12456
|
+
}): Request<A2aV1StreamResponse>;
|
|
12457
|
+
pushNotificationConfigs: PushNotificationConfigsResource;
|
|
12458
|
+
}
|
|
11697
12459
|
interface AgentsResource {
|
|
12460
|
+
/** GetAgentCard returns the agent card for the agent. */
|
|
12461
|
+
getCard(request?: {
|
|
12462
|
+
/** V1 error format. */
|
|
12463
|
+
'$.xgafv'?: string;
|
|
12464
|
+
/** OAuth access token. */
|
|
12465
|
+
access_token?: string;
|
|
12466
|
+
/** Data format for response. */
|
|
12467
|
+
alt?: string;
|
|
12468
|
+
/** JSONP */
|
|
12469
|
+
callback?: string;
|
|
12470
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
12471
|
+
fields?: string;
|
|
12472
|
+
/** 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. */
|
|
12473
|
+
key?: string;
|
|
12474
|
+
/** OAuth 2.0 token for the current user. */
|
|
12475
|
+
oauth_token?: string;
|
|
12476
|
+
/** Returns response with indentations and line breaks. */
|
|
12477
|
+
prettyPrint?: boolean;
|
|
12478
|
+
/** 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. */
|
|
12479
|
+
quotaUser?: string;
|
|
12480
|
+
/** Optional tenant, provided as a path parameter. Experimental, might still change for 1.0 release. */
|
|
12481
|
+
tenant: string;
|
|
12482
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12483
|
+
upload_protocol?: string;
|
|
12484
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
12485
|
+
uploadType?: string;
|
|
12486
|
+
}): Request<A2aV1AgentCard>;
|
|
12487
|
+
message: MessageResource;
|
|
11698
12488
|
operations: OperationsResource;
|
|
12489
|
+
tasks: TasksResource;
|
|
11699
12490
|
}
|
|
11700
12491
|
interface AssistantsResource {
|
|
11701
12492
|
/** Creates an Assistant. */
|
|
@@ -13288,7 +14079,7 @@ declare namespace gapi.client {
|
|
|
13288
14079
|
callback?: string;
|
|
13289
14080
|
/** Selector specifying which fields to include in a partial response. */
|
|
13290
14081
|
fields?: string;
|
|
13291
|
-
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` */
|
|
14082
|
+
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/global/collections/default_collection/engines/" "default_engine/collaborative_projects/cp1"` */
|
|
13292
14083
|
filter?: string;
|
|
13293
14084
|
/** 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. */
|
|
13294
14085
|
key?: string;
|
|
@@ -16083,7 +16874,7 @@ declare namespace gapi.client {
|
|
|
16083
16874
|
callback?: string;
|
|
16084
16875
|
/** Selector specifying which fields to include in a partial response. */
|
|
16085
16876
|
fields?: string;
|
|
16086
|
-
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` */
|
|
16877
|
+
/** A comma-separated list of fields to filter by, in EBNF grammar. The supported fields are: * `user_pseudo_id` * `state` * `display_name` * `starred` * `is_pinned` * `labels` * `create_time` * `update_time` * `collaborative_project` Examples: * `user_pseudo_id = some_id` * `display_name = "some_name"` * `starred = true` * `is_pinned=true AND (NOT labels:hidden)` * `create_time > "1970-01-01T12:00:00Z"` * `collaborative_project = "projects/123/locations/global/collections/default_collection/engines/" "default_engine/collaborative_projects/cp1"` */
|
|
16087
16878
|
filter?: string;
|
|
16088
16879
|
/** 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. */
|
|
16089
16880
|
key?: string;
|
|
@@ -17886,7 +18677,7 @@ declare namespace gapi.client {
|
|
|
17886
18677
|
operations: OperationsResource;
|
|
17887
18678
|
}
|
|
17888
18679
|
interface LicenseConfigsResource {
|
|
17889
|
-
/** Creates a LicenseConfig */
|
|
18680
|
+
/** Creates a LicenseConfig This method should only be used for creating NotebookLm licenses or Gemini Enterprise free trial licenses. */
|
|
17890
18681
|
create(request: {
|
|
17891
18682
|
/** V1 error format. */
|
|
17892
18683
|
'$.xgafv'?: string;
|