@maxim_mazurok/gapi.client.aiplatform-v1 0.4.20251114 → 0.4.20251204

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.
Files changed (2) hide show
  1. package/index.d.ts +2072 -274
  2. 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=v1
12
- // Revision: 20251114
12
+ // Revision: 20251204
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -229,6 +229,7 @@ declare namespace gapi.client {
229
229
  /** The API key string. Either this or `api_key_secret_version` must be set. */
230
230
  apiKeyString?: string;
231
231
  }
232
+ interface GoogleCloudAiplatformV1AppendEventResponse {}
232
233
  interface GoogleCloudAiplatformV1Artifact {
233
234
  /** Output only. Timestamp when this Artifact was created. */
234
235
  createTime?: string;
@@ -488,7 +489,7 @@ declare namespace gapi.client {
488
489
  labels?: {[P in string]: string};
489
490
  /** Immutable. Parameters configuring the batch behavior. Currently only applicable when dedicated_resources are used (in other cases Vertex AI does the tuning itself). */
490
491
  manualBatchTuningParameters?: GoogleCloudAiplatformV1ManualBatchTuningParameters;
491
- /** The name of the Model resource that produces the predictions via this job, must share the same ancestor Location. Starting this job has no impact on any existing deployments of the Model and their resources. Exactly one of model and unmanaged_container_model must be set. The model resource name may contain version id or version alias to specify the version. Example: `projects/{project}/locations/{location}/models/{model}@2` or `projects/{project}/locations/{location}/models/{model}@golden` if no version is specified, the default version will be deployed. The model resource could also be a publisher model. Example: `publishers/{publisher}/models/{model}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
492
+ /** The name of the Model resource that produces the predictions via this job, must share the same ancestor Location. Starting this job has no impact on any existing deployments of the Model and their resources. Exactly one of model, unmanaged_container_model, or endpoint must be set. The model resource name may contain version id or version alias to specify the version. Example: `projects/{project}/locations/{location}/models/{model}@2` or `projects/{project}/locations/{location}/models/{model}@golden` if no version is specified, the default version will be deployed. The model resource could also be a publisher model. Example: `publishers/{publisher}/models/{model}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
492
493
  model?: string;
493
494
  /** The parameters that govern the predictions. The schema of the parameters may be specified via the Model's PredictSchemata's parameters_schema_uri. */
494
495
  modelParameters?: any;
@@ -514,7 +515,7 @@ declare namespace gapi.client {
514
515
  startTime?: string;
515
516
  /** Output only. The detailed state of the job. */
516
517
  state?: string;
517
- /** Contains model information necessary to perform batch prediction without requiring uploading to model registry. Exactly one of model and unmanaged_container_model must be set. */
518
+ /** Contains model information necessary to perform batch prediction without requiring uploading to model registry. Exactly one of model, unmanaged_container_model, or endpoint must be set. */
518
519
  unmanagedContainerModel?: GoogleCloudAiplatformV1UnmanagedContainerModel;
519
520
  /** Output only. Time when the BatchPredictionJob was most recently updated. */
520
521
  updateTime?: string;
@@ -2317,6 +2318,36 @@ declare namespace gapi.client {
2317
2318
  /** Required. The type of the Event. */
2318
2319
  type?: string;
2319
2320
  }
2321
+ interface GoogleCloudAiplatformV1EventActions {
2322
+ /** Optional. Indicates that the event is updating an artifact. key is the filename, value is the version. */
2323
+ artifactDelta?: {[P in string]: number};
2324
+ /** Optional. The agent is escalating to a higher level agent. */
2325
+ escalate?: boolean;
2326
+ /** Optional. Will only be set by a tool response indicating tool request euc. Struct key is the function call id since one function call response (from model) could correspond to multiple function calls. Struct value is the required auth config, which can be another struct. */
2327
+ requestedAuthConfigs?: {[P in string]: any};
2328
+ /** Optional. If true, it won't call model to summarize function response. Only used for function_response event. */
2329
+ skipSummarization?: boolean;
2330
+ /** Optional. Indicates that the event is updating the state with the given delta. */
2331
+ stateDelta?: {[P in string]: any};
2332
+ /** Optional. If set, the event transfers to the specified agent. */
2333
+ transferAgent?: string;
2334
+ }
2335
+ interface GoogleCloudAiplatformV1EventMetadata {
2336
+ /** Optional. The branch of the event. The format is like agent_1.agent_2.agent_3, where agent_1 is the parent of agent_2, and agent_2 is the parent of agent_3. Branch is used when multiple child agents shouldn't see their siblings' conversation history. */
2337
+ branch?: string;
2338
+ /** The custom metadata of the LlmResponse. */
2339
+ customMetadata?: {[P in string]: any};
2340
+ /** Optional. Metadata returned to client when grounding is enabled. */
2341
+ groundingMetadata?: GoogleCloudAiplatformV1GroundingMetadata;
2342
+ /** Optional. Flag indicating that LLM was interrupted when generating the content. Usually it's due to user interruption during a bidi streaming. */
2343
+ interrupted?: boolean;
2344
+ /** Optional. Set of ids of the long running function calls. Agent client will know from this field about which function call is long running. Only valid for function call event. */
2345
+ longRunningToolIds?: string[];
2346
+ /** Optional. Indicates whether the text content is part of a unfinished text stream. Only used for streaming mode and when the content is plain text. */
2347
+ partial?: boolean;
2348
+ /** Optional. Indicates whether the response from the model is complete. Only used for streaming mode. */
2349
+ turnComplete?: boolean;
2350
+ }
2320
2351
  interface GoogleCloudAiplatformV1ExactMatchInput {
2321
2352
  /** Required. Repeated exact match instances. */
2322
2353
  instances?: GoogleCloudAiplatformV1ExactMatchInstance[];
@@ -2808,6 +2839,8 @@ declare namespace gapi.client {
2808
2839
  bigtableMetadata?: GoogleCloudAiplatformV1FeatureOnlineStoreBigtableBigtableMetadata;
2809
2840
  /** Optional. It true, enable direct access to the Bigtable instance. */
2810
2841
  enableDirectBigtableAccess?: boolean;
2842
+ /** Optional. The zone where the underlying Bigtable cluster for the primary Bigtable instance will be provisioned. Only the zone must be provided. For example, only "us-central1-a" should be provided. */
2843
+ zone?: string;
2811
2844
  }
2812
2845
  interface GoogleCloudAiplatformV1FeatureOnlineStoreBigtableAutoScaling {
2813
2846
  /** Optional. A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%. */
@@ -3268,17 +3301,23 @@ declare namespace gapi.client {
3268
3301
  args?: {[P in string]: any};
3269
3302
  /** Optional. The name of the function to call. Matches [FunctionDeclaration.name]. */
3270
3303
  name?: string;
3304
+ /** Optional. The partial argument value of the function call. If provided, represents the arguments/fields that are streamed incrementally. */
3305
+ partialArgs?: GoogleCloudAiplatformV1PartialArg[];
3306
+ /** Optional. Whether this is the last part of the FunctionCall. If true, another partial message for the current FunctionCall is expected to follow. */
3307
+ willContinue?: boolean;
3271
3308
  }
3272
3309
  interface GoogleCloudAiplatformV1FunctionCallingConfig {
3273
3310
  /** Optional. Function names to call. Only set when the Mode is ANY. Function names should match [FunctionDeclaration.name]. With mode set to ANY, model will predict a function call from the set of function names provided. */
3274
3311
  allowedFunctionNames?: string[];
3275
3312
  /** Optional. Function calling mode. */
3276
3313
  mode?: string;
3314
+ /** Optional. When set to true, arguments of a single function call will be streamed out in multiple parts/contents/responses. Partial parameter results will be returned in the [FunctionCall.partial_args] field. */
3315
+ streamFunctionCallArguments?: boolean;
3277
3316
  }
3278
3317
  interface GoogleCloudAiplatformV1FunctionDeclaration {
3279
3318
  /** Optional. Description and purpose of the function. Model uses it to decide how and whether to call the function. */
3280
3319
  description?: string;
3281
- /** Required. The name of the function to call. Must start with a letter or an underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots and dashes, with a maximum length of 64. */
3320
+ /** Required. The name of the function to call. Must start with a letter or an underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots, colons and dashes, with a maximum length of 64. */
3282
3321
  name?: string;
3283
3322
  /** Optional. Describes the parameters to this function in JSON Schema Object format. Reflects the Open API 3.03 Parameter Object. string Key: the name of the parameter. Parameter names are case sensitive. Schema Value: the Schema defining the type used for the parameter. For function with no parameters, this can be left unset. Parameter names must start with a letter or an underscore and must only contain chars a-z, A-Z, 0-9, or underscores with a maximum length of 64. Example with 1 required and 1 optional parameter: type: OBJECT properties: param1: type: STRING param2: type: INTEGER required: - param1 */
3284
3323
  parameters?: GoogleCloudAiplatformV1Schema;
@@ -3438,6 +3477,52 @@ declare namespace gapi.client {
3438
3477
  /** Output only. A list of generated rubrics. */
3439
3478
  generatedRubrics?: GoogleCloudAiplatformV1Rubric[];
3440
3479
  }
3480
+ interface GoogleCloudAiplatformV1GenerateMemoriesRequest {
3481
+ /** Defines a direct source of content as the source content from which to generate memories. */
3482
+ directContentsSource?: GoogleCloudAiplatformV1GenerateMemoriesRequestDirectContentsSource;
3483
+ /** Defines a direct source of memories that should be uploaded to Memory Bank. This is similar to `CreateMemory`, but it allows for consolidation between these new memories and existing memories for the same scope. */
3484
+ directMemoriesSource?: GoogleCloudAiplatformV1GenerateMemoriesRequestDirectMemoriesSource;
3485
+ /** Optional. If true, generated memories will not be consolidated with existing memories; all generated memories will be added as new memories regardless of whether they are duplicates of or contradictory to existing memories. By default, memory consolidation is enabled. */
3486
+ disableConsolidation?: boolean;
3487
+ /** Optional. If true, no revisions will be created for this request. */
3488
+ disableMemoryRevisions?: boolean;
3489
+ /** Optional. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
3490
+ revisionExpireTime?: string;
3491
+ /** Optional. Labels to be applied to the generated memory revisions. For example, you can use this to label a revision with its data source. */
3492
+ revisionLabels?: {[P in string]: string};
3493
+ /** Optional. The TTL for the revision. The expiration time is computed: now + TTL. */
3494
+ revisionTtl?: string;
3495
+ /** Optional. The scope of the memories that should be generated. Memories will be consolidated across memories with the same scope. Must be provided unless the scope is defined in the source content. If `scope` is provided, it will override the scope defined in the source content. Scope values cannot contain the wildcard character '*'. */
3496
+ scope?: {[P in string]: string};
3497
+ /** Defines a Vertex Session as the source content from which to generate memories. */
3498
+ vertexSessionSource?: GoogleCloudAiplatformV1GenerateMemoriesRequestVertexSessionSource;
3499
+ }
3500
+ interface GoogleCloudAiplatformV1GenerateMemoriesRequestDirectContentsSource {
3501
+ /** Required. The source content (i.e. chat history) to generate memories from. */
3502
+ events?: GoogleCloudAiplatformV1GenerateMemoriesRequestDirectContentsSourceEvent[];
3503
+ }
3504
+ interface GoogleCloudAiplatformV1GenerateMemoriesRequestDirectContentsSourceEvent {
3505
+ /** Required. A single piece of content from which to generate memories. */
3506
+ content?: GoogleCloudAiplatformV1Content;
3507
+ }
3508
+ interface GoogleCloudAiplatformV1GenerateMemoriesRequestDirectMemoriesSource {
3509
+ /** Required. The direct memories to upload to Memory Bank. At most 5 direct memories are allowed per request. */
3510
+ directMemories?: GoogleCloudAiplatformV1GenerateMemoriesRequestDirectMemoriesSourceDirectMemory[];
3511
+ }
3512
+ interface GoogleCloudAiplatformV1GenerateMemoriesRequestDirectMemoriesSourceDirectMemory {
3513
+ /** Required. The fact to consolidate with existing memories. */
3514
+ fact?: string;
3515
+ /** Optional. The topics that the consolidated memories should be associated with. */
3516
+ topics?: GoogleCloudAiplatformV1MemoryTopicId[];
3517
+ }
3518
+ interface GoogleCloudAiplatformV1GenerateMemoriesRequestVertexSessionSource {
3519
+ /** Optional. End time (exclusive) of the time range. If not set, the end time is unbounded. */
3520
+ endTime?: string;
3521
+ /** Required. The resource name of the Session to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
3522
+ session?: string;
3523
+ /** Optional. Time range to define which session events should be used to generate memories. Start time (inclusive) of the time range. If not set, the start time is unbounded. */
3524
+ startTime?: string;
3525
+ }
3441
3526
  interface GoogleCloudAiplatformV1GenerateSyntheticDataRequest {
3442
3527
  /** Required. The number of synthetic examples to generate. For this stateless API, the count is limited to a small number. */
3443
3528
  count?: number;
@@ -3535,6 +3620,8 @@ declare namespace gapi.client {
3535
3620
  includeThoughts?: boolean;
3536
3621
  /** Optional. The token budget for the model's thinking process. The model will make a best effort to stay within this budget. This can be used to control the trade-off between response quality and latency. */
3537
3622
  thinkingBudget?: number;
3623
+ /** Optional. The number of thoughts tokens that the model should generate. */
3624
+ thinkingLevel?: string;
3538
3625
  }
3539
3626
  interface GoogleCloudAiplatformV1GenericOperationMetadata {
3540
3627
  /** Output only. Time when the operation was created. */
@@ -3719,6 +3806,8 @@ declare namespace gapi.client {
3719
3806
  aspectRatio?: string;
3720
3807
  /** Optional. The image output format for generated images. */
3721
3808
  imageOutputOptions?: GoogleCloudAiplatformV1ImageConfigImageOutputOptions;
3809
+ /** Optional. Specifies the size of generated images. Supported values are `1K`, `2K`, `4K`. If not specified, the model will use default value `1K`. */
3810
+ imageSize?: string;
3722
3811
  /** Optional. Controls whether the model can generate people. */
3723
3812
  personGeneration?: string;
3724
3813
  }
@@ -4000,6 +4089,10 @@ declare namespace gapi.client {
4000
4089
  /** Required. The number of steps for approximating the path integral. A good value to start is 50 and gradually increase until the sum to diff property is within the desired error range. Valid range of its value is [1, 100], inclusively. */
4001
4090
  stepCount?: number;
4002
4091
  }
4092
+ interface GoogleCloudAiplatformV1IntermediateExtractedMemory {
4093
+ /** Output only. The fact of the extracted memory. */
4094
+ fact?: string;
4095
+ }
4003
4096
  interface GoogleCloudAiplatformV1InvokeRequest {
4004
4097
  /** ID of the DeployedModel that serves the invoke request. */
4005
4098
  deployedModelId?: string;
@@ -4130,6 +4223,12 @@ declare namespace gapi.client {
4130
4223
  /** A token to retrieve the next page of results. */
4131
4224
  nextPageToken?: string;
4132
4225
  }
4226
+ interface GoogleCloudAiplatformV1ListEventsResponse {
4227
+ /** 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. */
4228
+ nextPageToken?: string;
4229
+ /** A list of events matching the request. Ordered by timestamp in ascending order. */
4230
+ sessionEvents?: GoogleCloudAiplatformV1SessionEvent[];
4231
+ }
4133
4232
  interface GoogleCloudAiplatformV1ListExecutionsResponse {
4134
4233
  /** The Executions retrieved from the MetadataStore. */
4135
4234
  executions?: GoogleCloudAiplatformV1Execution[];
@@ -4190,6 +4289,18 @@ declare namespace gapi.client {
4190
4289
  /** A token to retrieve next page of results. Pass to ListIndexesRequest.page_token to obtain that page. */
4191
4290
  nextPageToken?: string;
4192
4291
  }
4292
+ interface GoogleCloudAiplatformV1ListMemoriesResponse {
4293
+ /** List of Memories in the requested page. */
4294
+ memories?: GoogleCloudAiplatformV1Memory[];
4295
+ /** A token to retrieve the next page of results. Pass to ListMemoriesRequest.page_token to obtain that page. */
4296
+ nextPageToken?: string;
4297
+ }
4298
+ interface GoogleCloudAiplatformV1ListMemoryRevisionsResponse {
4299
+ /** The list of Memory Revisions in the request page. */
4300
+ memoryRevisions?: GoogleCloudAiplatformV1MemoryRevision[];
4301
+ /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
4302
+ nextPageToken?: string;
4303
+ }
4193
4304
  interface GoogleCloudAiplatformV1ListMetadataSchemasResponse {
4194
4305
  /** The MetadataSchemas found for the MetadataStore. */
4195
4306
  metadataSchemas?: GoogleCloudAiplatformV1MetadataSchema[];
@@ -4314,6 +4425,12 @@ declare namespace gapi.client {
4314
4425
  /** List of Schedules in the requested page. */
4315
4426
  schedules?: GoogleCloudAiplatformV1Schedule[];
4316
4427
  }
4428
+ interface GoogleCloudAiplatformV1ListSessionsResponse {
4429
+ /** A token, which can be sent as ListSessionsRequest.page_token to retrieve the next page. Absence of this field indicates there are no subsequent pages. */
4430
+ nextPageToken?: string;
4431
+ /** A list of sessions matching the request. */
4432
+ sessions?: GoogleCloudAiplatformV1Session[];
4433
+ }
4317
4434
  interface GoogleCloudAiplatformV1ListSpecialistPoolsResponse {
4318
4435
  /** The standard List next-page token. */
4319
4436
  nextPageToken?: string;
@@ -4417,10 +4534,12 @@ declare namespace gapi.client {
4417
4534
  volumeHandle?: string;
4418
4535
  }
4419
4536
  interface GoogleCloudAiplatformV1MachineSpec {
4420
- /** The number of accelerators to attach to the machine. */
4537
+ /** The number of accelerators to attach to the machine. For accelerator optimized machine types (https://cloud.google.com/compute/docs/accelerator-optimized-machines), One may set the accelerator_count from 1 to N for machine with N GPUs. If accelerator_count is less than or equal to N / 2, Vertex will co-schedule the replicas of the model into the same VM to save cost. For example, if the machine type is a3-highgpu-8g, which has 8 H100 GPUs, one can set accelerator_count to 1 to 8. If accelerator_count is 1, 2, 3, or 4, Vertex will co-schedule 8, 4, 2, or 2 replicas of the model into the same VM to save cost. When co-scheduling, CPU, memory and storage on the VM will be distributed to replicas on the VM. For example, one can expect a co-scheduled replica requesting 2 GPUs out of a 8-GPU VM will receive 25% of the CPU, memory and storage of the VM. Note that the feature is not compatible with multihost_gpu_node_count. When multihost_gpu_node_count is set, the co-scheduling will not be enabled. */
4421
4538
  acceleratorCount?: number;
4422
4539
  /** Immutable. The type of accelerator(s) that may be attached to the machine as per accelerator_count. */
4423
4540
  acceleratorType?: string;
4541
+ /** Optional. Immutable. The Nvidia GPU partition size. When specified, the requested accelerators will be partitioned into smaller GPU partitions. For example, if the request is for 8 units of NVIDIA A100 GPUs, and gpu_partition_size="1g.10gb", the service will create 8 * 7 = 56 partitioned MIG instances. The partition size must be a value supported by the requested accelerator. Refer to [Nvidia GPU Partitioning](https://cloud.google.com/kubernetes-engine/docs/how-to/gpus-multi#multi-instance_gpu_partitions) for the available partition sizes. If set, the accelerator_count should be set to 1. */
4542
+ gpuPartitionSize?: string;
4424
4543
  /** Immutable. The type of the machine. See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types) See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types). For DeployedModel this field is optional, and the default value is `n1-standard-2`. For BatchPredictionJob or as part of WorkerPoolSpec this field is required. */
4425
4544
  machineType?: string;
4426
4545
  /** Optional. Immutable. Configuration controlling how this resource pool consumes reservation. */
@@ -4446,6 +4565,100 @@ declare namespace gapi.client {
4446
4565
  /** Output only. The value for this metric. */
4447
4566
  value?: number;
4448
4567
  }
4568
+ interface GoogleCloudAiplatformV1Memory {
4569
+ /** Output only. Timestamp when this Memory was created. */
4570
+ createTime?: string;
4571
+ /** Optional. Description of the Memory. */
4572
+ description?: string;
4573
+ /** Optional. Input only. If true, no revision will be created for this request. */
4574
+ disableMemoryRevisions?: boolean;
4575
+ /** Optional. Display name of the Memory. */
4576
+ displayName?: string;
4577
+ /** Optional. Timestamp of when this resource is considered expired. This is *always* provided on output when `expiration` is set on input, regardless of whether `expire_time` or `ttl` was provided. */
4578
+ expireTime?: string;
4579
+ /** Required. Semantic knowledge extracted from the source content. */
4580
+ fact?: string;
4581
+ /** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
4582
+ name?: string;
4583
+ /** Optional. Input only. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
4584
+ revisionExpireTime?: string;
4585
+ /** Optional. Input only. The labels to apply to the Memory Revision created as a result of this request. */
4586
+ revisionLabels?: {[P in string]: string};
4587
+ /** Optional. Input only. The TTL for the revision. The expiration time is computed: now + TTL. */
4588
+ revisionTtl?: string;
4589
+ /** Required. Immutable. The scope of the Memory. Memories are isolated within their scope. The scope is defined when creating or generating memories. Scope values cannot contain the wildcard character '*'. */
4590
+ scope?: {[P in string]: string};
4591
+ /** Optional. The Topics of the Memory. */
4592
+ topics?: GoogleCloudAiplatformV1MemoryTopicId[];
4593
+ /** Optional. Input only. The TTL for this resource. The expiration time is computed: now + TTL. */
4594
+ ttl?: string;
4595
+ /** Output only. Timestamp when this Memory was most recently updated. */
4596
+ updateTime?: string;
4597
+ }
4598
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfig {
4599
+ /** Optional. Examples of how to generate memories for a particular scope. */
4600
+ generateMemoriesExamples?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExample[];
4601
+ /** Optional. Topics of information that should be extracted from conversations and stored as memories. If not set, then Memory Bank's default topics will be used. */
4602
+ memoryTopics?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic[];
4603
+ /** Optional. The scope keys (i.e. 'user_id') for which to use this config. A request's scope must include all of the provided keys for the config to be used (order does not matter). If empty, then the config will be used for all requests that do not have a more specific config. Only one default config is allowed per Memory Bank. */
4604
+ scopeKeys?: string[];
4605
+ }
4606
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExample {
4607
+ /** A conversation source for the example. */
4608
+ conversationSource?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSource;
4609
+ /** Optional. The memories that are expected to be generated from the input conversation. An empty list indicates that no memories are expected to be generated for the input conversation. */
4610
+ generatedMemories?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleGeneratedMemory[];
4611
+ }
4612
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSource {
4613
+ /** Optional. The input conversation events for the example. */
4614
+ events?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSourceEvent[];
4615
+ }
4616
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSourceEvent {
4617
+ /** Required. The content of the event. */
4618
+ content?: GoogleCloudAiplatformV1Content;
4619
+ }
4620
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleGeneratedMemory {
4621
+ /** Required. The fact to generate a memory from. */
4622
+ fact?: string;
4623
+ /** Optional. The list of topics that the memory should be associated with. For example, use `custom_memory_topic_label = "jargon"` if the extracted memory is an example of memory extraction for the custom topic `jargon`. */
4624
+ topics?: GoogleCloudAiplatformV1MemoryTopicId[];
4625
+ }
4626
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic {
4627
+ /** A custom memory topic defined by the developer. */
4628
+ customMemoryTopic?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic;
4629
+ /** A managed memory topic defined by Memory Bank. */
4630
+ managedMemoryTopic?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic;
4631
+ }
4632
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic {
4633
+ /** Required. Description of the memory topic. This should explain what information should be extracted for this topic. */
4634
+ description?: string;
4635
+ /** Required. The label of the topic. */
4636
+ label?: string;
4637
+ }
4638
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic {
4639
+ /** Required. The managed topic. */
4640
+ managedTopicEnum?: string;
4641
+ }
4642
+ interface GoogleCloudAiplatformV1MemoryRevision {
4643
+ /** Output only. Timestamp when this Memory Revision was created. */
4644
+ createTime?: string;
4645
+ /** Output only. Timestamp of when this resource is considered expired. */
4646
+ expireTime?: string;
4647
+ /** Output only. The extracted memories from the source content before consolidation when the memory was updated via GenerateMemories. This information was used to modify an existing Memory via Consolidation. */
4648
+ extractedMemories?: GoogleCloudAiplatformV1IntermediateExtractedMemory[];
4649
+ /** Output only. The fact of the Memory Revision. This corresponds to the `fact` field of the parent Memory at the time of revision creation. */
4650
+ fact?: string;
4651
+ /** Output only. The labels of the Memory Revision. These labels are applied to the MemoryRevision when it is created based on `GenerateMemoriesRequest.revision_labels`. */
4652
+ labels?: {[P in string]: string};
4653
+ /** Identifier. The resource name of the Memory Revision. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}/revisions/{memory_revision}` */
4654
+ name?: string;
4655
+ }
4656
+ interface GoogleCloudAiplatformV1MemoryTopicId {
4657
+ /** Optional. The custom memory topic label. */
4658
+ customMemoryTopicLabel?: string;
4659
+ /** Optional. The managed memory topic. */
4660
+ managedMemoryTopic?: string;
4661
+ }
4449
4662
  interface GoogleCloudAiplatformV1MergeVersionAliasesRequest {
4450
4663
  /** Required. The set of version aliases to merge. The alias should be at most 128 characters, and match `a-z{0,126}[a-z-0-9]`. Add the `-` prefix to an alias means removing that alias from the version. `-` is NOT counted in the 128 characters. Example: `-golden` means removing the `golden` alias from the version. There is NO ordering in aliases, which means 1) The aliases returned from GetModel API might not have the exactly same order from this MergeVersionAliases API. 2) Adding and deleting the same alias in the request is not recommended, and the 2 operations will be cancelled out. */
4451
4664
  versionAliases?: string[];
@@ -5624,6 +5837,8 @@ declare namespace gapi.client {
5624
5837
  functionResponse?: GoogleCloudAiplatformV1FunctionResponse;
5625
5838
  /** Optional. The inline data content of the part. This can be used to include images, audio, or video in a request. */
5626
5839
  inlineData?: GoogleCloudAiplatformV1Blob;
5840
+ /** per part media resolution. Media resolution for the input media. */
5841
+ mediaResolution?: GoogleCloudAiplatformV1PartMediaResolution;
5627
5842
  /** Optional. The text content of the part. */
5628
5843
  text?: string;
5629
5844
  /** Optional. Indicates whether the `part` represents the model's thought process or reasoning. */
@@ -5633,6 +5848,24 @@ declare namespace gapi.client {
5633
5848
  /** Optional. Video metadata. The metadata should only be specified while the video data is presented in inline_data or file_data. */
5634
5849
  videoMetadata?: GoogleCloudAiplatformV1VideoMetadata;
5635
5850
  }
5851
+ interface GoogleCloudAiplatformV1PartialArg {
5852
+ /** Optional. Represents a boolean value. */
5853
+ boolValue?: boolean;
5854
+ /** Required. A JSON Path (RFC 9535) to the argument being streamed. https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data". */
5855
+ jsonPath?: string;
5856
+ /** Optional. Represents a null value. */
5857
+ nullValue?: string;
5858
+ /** Optional. Represents a double value. */
5859
+ numberValue?: number;
5860
+ /** Optional. Represents a string value. */
5861
+ stringValue?: string;
5862
+ /** Optional. Whether this is not the last part of the same json_path. If true, another PartialArg message for the current json_path is expected to follow. */
5863
+ willContinue?: boolean;
5864
+ }
5865
+ interface GoogleCloudAiplatformV1PartMediaResolution {
5866
+ /** The tokenization quality used for given media. */
5867
+ level?: string;
5868
+ }
5636
5869
  interface GoogleCloudAiplatformV1PauseModelDeploymentMonitoringJobRequest {}
5637
5870
  interface GoogleCloudAiplatformV1PauseScheduleRequest {}
5638
5871
  interface GoogleCloudAiplatformV1PersistentDiskSpec {
@@ -6259,6 +6492,12 @@ declare namespace gapi.client {
6259
6492
  /** A sample of the Execution names that will be deleted. Only populated if `force` is set to false. The maximum number of samples is 100 (it is possible to return fewer). */
6260
6493
  purgeSample?: string[];
6261
6494
  }
6495
+ interface GoogleCloudAiplatformV1PurgeMemoriesRequest {
6496
+ /** Required. The standard list filter to determine which memories to purge. More detail in [AIP-160](https://google.aip.dev/160). */
6497
+ filter?: string;
6498
+ /** Optional. If true, the memories will actually be purged. If false, the purge request will be validated but not executed. */
6499
+ force?: boolean;
6500
+ }
6262
6501
  interface GoogleCloudAiplatformV1PythonPackageSpec {
6263
6502
  /** Command line arguments to be passed to the Python task. */
6264
6503
  args?: string[];
@@ -6728,6 +6967,8 @@ declare namespace gapi.client {
6728
6967
  viewCount?: string;
6729
6968
  }
6730
6969
  interface GoogleCloudAiplatformV1ReasoningEngine {
6970
+ /** Optional. Configuration for how Agent Engine sub-resources should manage context. */
6971
+ contextSpec?: GoogleCloudAiplatformV1ReasoningEngineContextSpec;
6731
6972
  /** Output only. Timestamp when this ReasoningEngine was created. */
6732
6973
  createTime?: string;
6733
6974
  /** Optional. The description of the ReasoningEngine. */
@@ -6747,6 +6988,46 @@ declare namespace gapi.client {
6747
6988
  /** Output only. Timestamp when this ReasoningEngine was most recently updated. */
6748
6989
  updateTime?: string;
6749
6990
  }
6991
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpec {
6992
+ /** Optional. Specification for a Memory Bank, which manages memories for the Agent Engine. */
6993
+ memoryBankConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfig;
6994
+ }
6995
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfig {
6996
+ /** Optional. Configuration for how to customize Memory Bank behavior for a particular scope. */
6997
+ customizationConfigs?: GoogleCloudAiplatformV1MemoryBankCustomizationConfig[];
6998
+ /** If true, no memory revisions will be created for any requests to the Memory Bank. */
6999
+ disableMemoryRevisions?: boolean;
7000
+ /** Optional. Configuration for how to generate memories for the Memory Bank. */
7001
+ generationConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig;
7002
+ /** Optional. Configuration for how to perform similarity search on memories. If not set, the Memory Bank will use the default embedding model `text-embedding-005`. */
7003
+ similaritySearchConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig;
7004
+ /** Optional. Configuration for automatic TTL ("time-to-live") of the memories in the Memory Bank. If not set, TTL will not be applied automatically. The TTL can be explicitly set by modifying the `expire_time` of each Memory resource. */
7005
+ ttlConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigTtlConfig;
7006
+ }
7007
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig {
7008
+ /** Required. The model used to generate memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}`. */
7009
+ model?: string;
7010
+ }
7011
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig {
7012
+ /** Required. The model used to generate embeddings to lookup similar memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}`. */
7013
+ embeddingModel?: string;
7014
+ }
7015
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigTtlConfig {
7016
+ /** Optional. The default TTL duration of the memories in the Memory Bank. This applies to all operations that create or update a memory. */
7017
+ defaultTtl?: string;
7018
+ /** Optional. The granular TTL configuration of the memories in the Memory Bank. */
7019
+ granularTtlConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig;
7020
+ /** Optional. The default TTL duration of the memory revisions in the Memory Bank. This applies to all operations that create a memory revision. If not set, a default TTL of 365 days will be used. */
7021
+ memoryRevisionDefaultTtl?: string;
7022
+ }
7023
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig {
7024
+ /** Optional. The TTL duration for memories uploaded via CreateMemory. */
7025
+ createTtl?: string;
7026
+ /** Optional. The TTL duration for memories newly generated via GenerateMemories (GenerateMemoriesResponse.GeneratedMemory.Action.CREATED). */
7027
+ generateCreatedTtl?: string;
7028
+ /** Optional. The TTL duration for memories updated via GenerateMemories (GenerateMemoriesResponse.GeneratedMemory.Action.UPDATED). In the case of an UPDATE action, the `expire_time` of the existing memory will be updated to the new value (now + TTL). */
7029
+ generateUpdatedTtl?: string;
7030
+ }
6750
7031
  interface GoogleCloudAiplatformV1ReasoningEngineSpec {
6751
7032
  /** Optional. The OSS agent framework used to develop the agent. Currently supported values: "google-adk", "langchain", "langgraph", "ag2", "llama-index", "custom". */
6752
7033
  agentFramework?: string;
@@ -6754,6 +7035,10 @@ declare namespace gapi.client {
6754
7035
  classMethods?: Array<{[P in string]: any}>;
6755
7036
  /** Optional. The specification of a Reasoning Engine deployment. */
6756
7037
  deploymentSpec?: GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpec;
7038
+ /** Output only. The identity to use for the Reasoning Engine. It can contain one of the following values: * service-{project}@gcp-sa-aiplatform-re.googleapis.com (for SERVICE_AGENT identity type) * {name}@{project}.gserviceaccount.com (for SERVICE_ACCOUNT identity type) * agents.global.{org}.system.id.goog/resources/aiplatform/projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine} (for AGENT_IDENTITY identity type) */
7039
+ effectiveIdentity?: string;
7040
+ /** Optional. The identity type to use for the Reasoning Engine. If not specified, the `service_account` field will be used if set, otherwise the default Vertex AI Reasoning Engine Service Agent in the project will be used. */
7041
+ identityType?: string;
6757
7042
  /** Optional. User provided package spec of the ReasoningEngine. Ignored when users directly specify a deployment image through `deployment_spec.first_party_image_override`, but keeping the field_behavior to avoid introducing breaking changes. The `deployment_source` field should not be set if `package_spec` is specified. */
6758
7043
  packageSpec?: GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec;
6759
7044
  /** Optional. The service account that the Reasoning Engine artifact runs as. It should have "roles/storage.objectViewer" for reading the user project's Cloud Storage and "roles/aiplatform.user" for using Vertex extensions. If not specified, the Vertex AI Reasoning Engine Service Agent in the project will be used. */
@@ -6788,13 +7073,27 @@ declare namespace gapi.client {
6788
7073
  requirementsGcsUri?: string;
6789
7074
  }
6790
7075
  interface GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpec {
7076
+ /** Source code is in a Git repository managed by Developer Connect. */
7077
+ developerConnectSource?: GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecDeveloperConnectSource;
6791
7078
  /** Source code is provided directly in the request. */
6792
7079
  inlineSource?: GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource;
6793
7080
  /** Configuration for a Python application. */
6794
7081
  pythonSpec?: GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecPythonSpec;
6795
7082
  }
7083
+ interface GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecDeveloperConnectConfig {
7084
+ /** Required. Directory, relative to the source root, in which to run the build. */
7085
+ dir?: string;
7086
+ /** Required. The Developer Connect Git repository link, formatted as `projects/*‍/locations/*‍/connections/*‍/gitRepositoryLink/*`. */
7087
+ gitRepositoryLink?: string;
7088
+ /** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
7089
+ revision?: string;
7090
+ }
7091
+ interface GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecDeveloperConnectSource {
7092
+ /** Required. The Developer Connect configuration that defines the specific repository, revision, and directory to use as the source code root. */
7093
+ config?: GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecDeveloperConnectConfig;
7094
+ }
6796
7095
  interface GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource {
6797
- /** Required. Input only. The application source code archive, provided as a compressed tarball (.tar.gz) file. */
7096
+ /** Required. Input only. The application source code archive. It must be a compressed tarball (.tar.gz) file. */
6798
7097
  sourceArchive?: string;
6799
7098
  }
6800
7099
  interface GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecPythonSpec {
@@ -6834,6 +7133,12 @@ declare namespace gapi.client {
6834
7133
  datapointIds?: string[];
6835
7134
  }
6836
7135
  interface GoogleCloudAiplatformV1RemoveDatapointsResponse {}
7136
+ interface GoogleCloudAiplatformV1ReplicatedVoiceConfig {
7137
+ /** Optional. The mimetype of the voice sample. The only currently supported value is `audio/wav`. This represents 16-bit signed little-endian wav data, with a 24kHz sampling rate. `mime_type` will default to `audio/wav` if not set. */
7138
+ mimeType?: string;
7139
+ /** Optional. The sample of the custom voice. */
7140
+ voiceSampleAudio?: string;
7141
+ }
6837
7142
  interface GoogleCloudAiplatformV1ReservationAffinity {
6838
7143
  /** Optional. Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, use `compute.googleapis.com/reservation-name` as the key and specify the name of your reservation as its value. */
6839
7144
  key?: string;
@@ -6927,6 +7232,44 @@ declare namespace gapi.client {
6927
7232
  /** The contexts of the query. */
6928
7233
  contexts?: GoogleCloudAiplatformV1RagContexts;
6929
7234
  }
7235
+ interface GoogleCloudAiplatformV1RetrieveMemoriesRequest {
7236
+ /** Optional. The standard list filter that will be applied to the retrieved memories. More detail in [AIP-160](https://google.aip.dev/160). Supported fields: * `fact` * `create_time` * `update_time` * `topics` (i.e. `topics.custom_memory_topic_label: "example topic" OR topics.managed_memory_topic: USER_PREFERENCES`) */
7237
+ filter?: string;
7238
+ /** Required. The scope of the memories to retrieve. A memory must have exactly the same scope (`Memory.scope`) as the scope provided here to be retrieved (same keys and values). Order does not matter, but it is case-sensitive. */
7239
+ scope?: {[P in string]: string};
7240
+ /** Parameters for semantic similarity search based retrieval. */
7241
+ similaritySearchParams?: GoogleCloudAiplatformV1RetrieveMemoriesRequestSimilaritySearchParams;
7242
+ /** Parameters for simple (non-similarity search) retrieval. */
7243
+ simpleRetrievalParams?: GoogleCloudAiplatformV1RetrieveMemoriesRequestSimpleRetrievalParams;
7244
+ }
7245
+ interface GoogleCloudAiplatformV1RetrieveMemoriesRequestSimilaritySearchParams {
7246
+ /** Required. Query to use for similarity search retrieval. If provided, then the parent ReasoningEngine must have ReasoningEngineContextSpec.MemoryBankConfig.SimilaritySearchConfig set. */
7247
+ searchQuery?: string;
7248
+ /** Optional. The maximum number of memories to return. The service may return fewer than this value. If unspecified, at most 3 memories will be returned. The maximum value is 100; values above 100 will be coerced to 100. */
7249
+ topK?: number;
7250
+ }
7251
+ interface GoogleCloudAiplatformV1RetrieveMemoriesRequestSimpleRetrievalParams {
7252
+ /** Optional. The maximum number of memories to return. The service may return fewer than this value. If unspecified, at most 3 memories will be returned. The maximum value is 100; values above 100 will be coerced to 100. */
7253
+ pageSize?: number;
7254
+ /** Optional. A page token, received from a previous `RetrieveMemories` call. Provide this to retrieve the subsequent page. */
7255
+ pageToken?: string;
7256
+ }
7257
+ interface GoogleCloudAiplatformV1RetrieveMemoriesResponse {
7258
+ /** A token that can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. This token is not set if similarity search was used for retrieval. */
7259
+ nextPageToken?: string;
7260
+ /** The retrieved memories. */
7261
+ retrievedMemories?: GoogleCloudAiplatformV1RetrieveMemoriesResponseRetrievedMemory[];
7262
+ }
7263
+ interface GoogleCloudAiplatformV1RetrieveMemoriesResponseRetrievedMemory {
7264
+ /** The distance between the query and the retrieved Memory. Smaller values indicate more similar memories. This is only set if similarity search was used for retrieval. */
7265
+ distance?: number;
7266
+ /** The retrieved Memory. */
7267
+ memory?: GoogleCloudAiplatformV1Memory;
7268
+ }
7269
+ interface GoogleCloudAiplatformV1RollbackMemoryRequest {
7270
+ /** Required. The ID of the revision to rollback to. */
7271
+ targetRevisionId?: string;
7272
+ }
6930
7273
  interface GoogleCloudAiplatformV1RougeInput {
6931
7274
  /** Required. Repeated rouge instances. */
6932
7275
  instances?: GoogleCloudAiplatformV1RougeInstance[];
@@ -8770,6 +9113,46 @@ declare namespace gapi.client {
8770
9113
  /** Optional. Required when all below conditions are met * `enable_custom_service_account` is true; * any runtime is specified via `ResourceRuntimeSpec` on creation time, for example, Ray The users must have `iam.serviceAccounts.actAs` permission on this service account and then the specified runtime containers will run as it. Do not set this field if you want to submit jobs using custom service account to this PersistentResource after creation, but only specify the `service_account` inside the job. */
8771
9114
  serviceAccount?: string;
8772
9115
  }
9116
+ interface GoogleCloudAiplatformV1Session {
9117
+ /** Output only. Timestamp when the session was created. */
9118
+ createTime?: string;
9119
+ /** Optional. The display name of the session. */
9120
+ displayName?: string;
9121
+ /** Optional. Timestamp of when this session is considered expired. This is *always* provided on output, regardless of what was sent on input. The minimum value is 24 hours from the time of creation. */
9122
+ expireTime?: string;
9123
+ /** The labels with user-defined metadata to organize your Sessions. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */
9124
+ labels?: {[P in string]: string};
9125
+ /** Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
9126
+ name?: string;
9127
+ /** Optional. Session specific memory which stores key conversation points. */
9128
+ sessionState?: {[P in string]: any};
9129
+ /** Optional. Input only. The TTL for this session. The minimum value is 24 hours. */
9130
+ ttl?: string;
9131
+ /** Output only. Timestamp when the session was updated. */
9132
+ updateTime?: string;
9133
+ /** Required. Immutable. String id provided by the user */
9134
+ userId?: string;
9135
+ }
9136
+ interface GoogleCloudAiplatformV1SessionEvent {
9137
+ /** Optional. Actions executed by the agent. */
9138
+ actions?: GoogleCloudAiplatformV1EventActions;
9139
+ /** Required. The name of the agent that sent the event, or user. */
9140
+ author?: string;
9141
+ /** Optional. Content of the event provided by the author. */
9142
+ content?: GoogleCloudAiplatformV1Content;
9143
+ /** Optional. Error code if the response is an error. Code varies by model. */
9144
+ errorCode?: string;
9145
+ /** Optional. Error message if the response is an error. */
9146
+ errorMessage?: string;
9147
+ /** Optional. Metadata relating to this event. */
9148
+ eventMetadata?: GoogleCloudAiplatformV1EventMetadata;
9149
+ /** Required. The invocation id of the event, multiple events can have the same invocation id. */
9150
+ invocationId?: string;
9151
+ /** Identifier. The resource name of the event. Format:`projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}/events/{event}`. */
9152
+ name?: string;
9153
+ /** Required. Timestamp when the event was created on client side. */
9154
+ timestamp?: string;
9155
+ }
8773
9156
  interface GoogleCloudAiplatformV1SharePointSources {
8774
9157
  /** The SharePoint sources. */
8775
9158
  sharePointSources?: GoogleCloudAiplatformV1SharePointSourcesSharePointSource[];
@@ -10138,6 +10521,8 @@ declare namespace gapi.client {
10138
10521
  interface GoogleCloudAiplatformV1VoiceConfig {
10139
10522
  /** The configuration for a prebuilt voice. */
10140
10523
  prebuiltVoiceConfig?: GoogleCloudAiplatformV1PrebuiltVoiceConfig;
10524
+ /** Optional. The configuration for a replicated voice. This enables users to replicate a voice from an audio sample. */
10525
+ replicatedVoiceConfig?: GoogleCloudAiplatformV1ReplicatedVoiceConfig;
10141
10526
  }
10142
10527
  interface GoogleCloudAiplatformV1WorkerPoolSpec {
10143
10528
  /** The custom container task. */
@@ -10233,7 +10618,7 @@ declare namespace gapi.client {
10233
10618
  nextPageToken?: string;
10234
10619
  /** A list of operations that matches the specified filter in the request. */
10235
10620
  operations?: GoogleLongrunningOperation[];
10236
- /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
10621
+ /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
10237
10622
  unreachable?: string[];
10238
10623
  }
10239
10624
  interface GoogleLongrunningOperation {
@@ -10537,7 +10922,7 @@ declare namespace gapi.client {
10537
10922
  prettyPrint?: boolean;
10538
10923
  /** 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. */
10539
10924
  quotaUser?: string;
10540
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10925
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10541
10926
  returnPartialSuccess?: boolean;
10542
10927
  /** Upload protocol for media (e.g. "raw", "multipart"). */
10543
10928
  upload_protocol?: string;
@@ -10687,7 +11072,7 @@ declare namespace gapi.client {
10687
11072
  prettyPrint?: boolean;
10688
11073
  /** 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. */
10689
11074
  quotaUser?: string;
10690
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11075
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10691
11076
  returnPartialSuccess?: boolean;
10692
11077
  /** Upload protocol for media (e.g. "raw", "multipart"). */
10693
11078
  upload_protocol?: string;
@@ -10837,7 +11222,7 @@ declare namespace gapi.client {
10837
11222
  prettyPrint?: boolean;
10838
11223
  /** 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. */
10839
11224
  quotaUser?: string;
10840
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11225
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10841
11226
  returnPartialSuccess?: boolean;
10842
11227
  /** Upload protocol for media (e.g. "raw", "multipart"). */
10843
11228
  upload_protocol?: string;
@@ -10987,7 +11372,7 @@ declare namespace gapi.client {
10987
11372
  prettyPrint?: boolean;
10988
11373
  /** 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. */
10989
11374
  quotaUser?: string;
10990
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11375
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10991
11376
  returnPartialSuccess?: boolean;
10992
11377
  /** Upload protocol for media (e.g. "raw", "multipart"). */
10993
11378
  upload_protocol?: string;
@@ -11137,7 +11522,7 @@ declare namespace gapi.client {
11137
11522
  prettyPrint?: boolean;
11138
11523
  /** 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. */
11139
11524
  quotaUser?: string;
11140
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11525
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11141
11526
  returnPartialSuccess?: boolean;
11142
11527
  /** Upload protocol for media (e.g. "raw", "multipart"). */
11143
11528
  upload_protocol?: string;
@@ -11530,7 +11915,7 @@ declare namespace gapi.client {
11530
11915
  prettyPrint?: boolean;
11531
11916
  /** 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. */
11532
11917
  quotaUser?: string;
11533
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11918
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11534
11919
  returnPartialSuccess?: boolean;
11535
11920
  /** Upload protocol for media (e.g. "raw", "multipart"). */
11536
11921
  upload_protocol?: string;
@@ -11677,7 +12062,7 @@ declare namespace gapi.client {
11677
12062
  prettyPrint?: boolean;
11678
12063
  /** 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. */
11679
12064
  quotaUser?: string;
11680
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12065
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11681
12066
  returnPartialSuccess?: boolean;
11682
12067
  /** Upload protocol for media (e.g. "raw", "multipart"). */
11683
12068
  upload_protocol?: string;
@@ -12047,7 +12432,7 @@ declare namespace gapi.client {
12047
12432
  prettyPrint?: boolean;
12048
12433
  /** 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. */
12049
12434
  quotaUser?: string;
12050
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12435
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12051
12436
  returnPartialSuccess?: boolean;
12052
12437
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12053
12438
  upload_protocol?: string;
@@ -12257,7 +12642,7 @@ declare namespace gapi.client {
12257
12642
  prettyPrint?: boolean;
12258
12643
  /** 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. */
12259
12644
  quotaUser?: string;
12260
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12645
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12261
12646
  returnPartialSuccess?: boolean;
12262
12647
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12263
12648
  upload_protocol?: string;
@@ -12786,7 +13171,7 @@ declare namespace gapi.client {
12786
13171
  prettyPrint?: boolean;
12787
13172
  /** 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. */
12788
13173
  quotaUser?: string;
12789
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13174
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12790
13175
  returnPartialSuccess?: boolean;
12791
13176
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12792
13177
  upload_protocol?: string;
@@ -12909,7 +13294,7 @@ declare namespace gapi.client {
12909
13294
  prettyPrint?: boolean;
12910
13295
  /** 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. */
12911
13296
  quotaUser?: string;
12912
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13297
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12913
13298
  returnPartialSuccess?: boolean;
12914
13299
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12915
13300
  upload_protocol?: string;
@@ -13033,7 +13418,7 @@ declare namespace gapi.client {
13033
13418
  prettyPrint?: boolean;
13034
13419
  /** 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. */
13035
13420
  quotaUser?: string;
13036
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13421
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13037
13422
  returnPartialSuccess?: boolean;
13038
13423
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13039
13424
  upload_protocol?: string;
@@ -13156,7 +13541,7 @@ declare namespace gapi.client {
13156
13541
  prettyPrint?: boolean;
13157
13542
  /** 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. */
13158
13543
  quotaUser?: string;
13159
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13544
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13160
13545
  returnPartialSuccess?: boolean;
13161
13546
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13162
13547
  upload_protocol?: string;
@@ -13307,7 +13692,7 @@ declare namespace gapi.client {
13307
13692
  prettyPrint?: boolean;
13308
13693
  /** 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. */
13309
13694
  quotaUser?: string;
13310
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13695
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13311
13696
  returnPartialSuccess?: boolean;
13312
13697
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13313
13698
  upload_protocol?: string;
@@ -13457,7 +13842,7 @@ declare namespace gapi.client {
13457
13842
  prettyPrint?: boolean;
13458
13843
  /** 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. */
13459
13844
  quotaUser?: string;
13460
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13845
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13461
13846
  returnPartialSuccess?: boolean;
13462
13847
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13463
13848
  upload_protocol?: string;
@@ -13608,7 +13993,7 @@ declare namespace gapi.client {
13608
13993
  prettyPrint?: boolean;
13609
13994
  /** 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. */
13610
13995
  quotaUser?: string;
13611
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13996
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13612
13997
  returnPartialSuccess?: boolean;
13613
13998
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13614
13999
  upload_protocol?: string;
@@ -13759,7 +14144,7 @@ declare namespace gapi.client {
13759
14144
  prettyPrint?: boolean;
13760
14145
  /** 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. */
13761
14146
  quotaUser?: string;
13762
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14147
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13763
14148
  returnPartialSuccess?: boolean;
13764
14149
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13765
14150
  upload_protocol?: string;
@@ -13909,7 +14294,7 @@ declare namespace gapi.client {
13909
14294
  prettyPrint?: boolean;
13910
14295
  /** 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. */
13911
14296
  quotaUser?: string;
13912
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14297
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13913
14298
  returnPartialSuccess?: boolean;
13914
14299
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13915
14300
  upload_protocol?: string;
@@ -14059,7 +14444,7 @@ declare namespace gapi.client {
14059
14444
  prettyPrint?: boolean;
14060
14445
  /** 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. */
14061
14446
  quotaUser?: string;
14062
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14447
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14063
14448
  returnPartialSuccess?: boolean;
14064
14449
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14065
14450
  upload_protocol?: string;
@@ -14269,7 +14654,7 @@ declare namespace gapi.client {
14269
14654
  prettyPrint?: boolean;
14270
14655
  /** 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. */
14271
14656
  quotaUser?: string;
14272
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14657
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14273
14658
  returnPartialSuccess?: boolean;
14274
14659
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14275
14660
  upload_protocol?: string;
@@ -14419,7 +14804,7 @@ declare namespace gapi.client {
14419
14804
  prettyPrint?: boolean;
14420
14805
  /** 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. */
14421
14806
  quotaUser?: string;
14422
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14807
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14423
14808
  returnPartialSuccess?: boolean;
14424
14809
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14425
14810
  upload_protocol?: string;
@@ -14569,7 +14954,7 @@ declare namespace gapi.client {
14569
14954
  prettyPrint?: boolean;
14570
14955
  /** 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. */
14571
14956
  quotaUser?: string;
14572
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14957
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14573
14958
  returnPartialSuccess?: boolean;
14574
14959
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14575
14960
  upload_protocol?: string;
@@ -14719,7 +15104,7 @@ declare namespace gapi.client {
14719
15104
  prettyPrint?: boolean;
14720
15105
  /** 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. */
14721
15106
  quotaUser?: string;
14722
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15107
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14723
15108
  returnPartialSuccess?: boolean;
14724
15109
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14725
15110
  upload_protocol?: string;
@@ -14872,7 +15257,7 @@ declare namespace gapi.client {
14872
15257
  prettyPrint?: boolean;
14873
15258
  /** 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. */
14874
15259
  quotaUser?: string;
14875
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15260
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14876
15261
  returnPartialSuccess?: boolean;
14877
15262
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14878
15263
  upload_protocol?: string;
@@ -15022,7 +15407,7 @@ declare namespace gapi.client {
15022
15407
  prettyPrint?: boolean;
15023
15408
  /** 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. */
15024
15409
  quotaUser?: string;
15025
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15410
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15026
15411
  returnPartialSuccess?: boolean;
15027
15412
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15028
15413
  upload_protocol?: string;
@@ -15172,7 +15557,7 @@ declare namespace gapi.client {
15172
15557
  prettyPrint?: boolean;
15173
15558
  /** 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. */
15174
15559
  quotaUser?: string;
15175
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15560
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15176
15561
  returnPartialSuccess?: boolean;
15177
15562
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15178
15563
  upload_protocol?: string;
@@ -15322,7 +15707,7 @@ declare namespace gapi.client {
15322
15707
  prettyPrint?: boolean;
15323
15708
  /** 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. */
15324
15709
  quotaUser?: string;
15325
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15710
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15326
15711
  returnPartialSuccess?: boolean;
15327
15712
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15328
15713
  upload_protocol?: string;
@@ -15473,7 +15858,7 @@ declare namespace gapi.client {
15473
15858
  prettyPrint?: boolean;
15474
15859
  /** 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. */
15475
15860
  quotaUser?: string;
15476
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15861
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15477
15862
  returnPartialSuccess?: boolean;
15478
15863
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15479
15864
  upload_protocol?: string;
@@ -15623,7 +16008,7 @@ declare namespace gapi.client {
15623
16008
  prettyPrint?: boolean;
15624
16009
  /** 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. */
15625
16010
  quotaUser?: string;
15626
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16011
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15627
16012
  returnPartialSuccess?: boolean;
15628
16013
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15629
16014
  upload_protocol?: string;
@@ -15773,7 +16158,7 @@ declare namespace gapi.client {
15773
16158
  prettyPrint?: boolean;
15774
16159
  /** 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. */
15775
16160
  quotaUser?: string;
15776
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16161
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15777
16162
  returnPartialSuccess?: boolean;
15778
16163
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15779
16164
  upload_protocol?: string;
@@ -15923,7 +16308,7 @@ declare namespace gapi.client {
15923
16308
  prettyPrint?: boolean;
15924
16309
  /** 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. */
15925
16310
  quotaUser?: string;
15926
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16311
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15927
16312
  returnPartialSuccess?: boolean;
15928
16313
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15929
16314
  upload_protocol?: string;
@@ -16070,7 +16455,7 @@ declare namespace gapi.client {
16070
16455
  prettyPrint?: boolean;
16071
16456
  /** 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. */
16072
16457
  quotaUser?: string;
16073
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16458
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16074
16459
  returnPartialSuccess?: boolean;
16075
16460
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16076
16461
  upload_protocol?: string;
@@ -16220,7 +16605,7 @@ declare namespace gapi.client {
16220
16605
  prettyPrint?: boolean;
16221
16606
  /** 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. */
16222
16607
  quotaUser?: string;
16223
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16608
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16224
16609
  returnPartialSuccess?: boolean;
16225
16610
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16226
16611
  upload_protocol?: string;
@@ -16784,7 +17169,7 @@ declare namespace gapi.client {
16784
17169
  prettyPrint?: boolean;
16785
17170
  /** 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. */
16786
17171
  quotaUser?: string;
16787
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17172
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16788
17173
  returnPartialSuccess?: boolean;
16789
17174
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16790
17175
  upload_protocol?: string;
@@ -17139,7 +17524,7 @@ declare namespace gapi.client {
17139
17524
  prettyPrint?: boolean;
17140
17525
  /** 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. */
17141
17526
  quotaUser?: string;
17142
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17527
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17143
17528
  returnPartialSuccess?: boolean;
17144
17529
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17145
17530
  upload_protocol?: string;
@@ -17496,7 +17881,7 @@ declare namespace gapi.client {
17496
17881
  prettyPrint?: boolean;
17497
17882
  /** 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. */
17498
17883
  quotaUser?: string;
17499
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17884
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17500
17885
  returnPartialSuccess?: boolean;
17501
17886
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17502
17887
  upload_protocol?: string;
@@ -17675,7 +18060,7 @@ declare namespace gapi.client {
17675
18060
  prettyPrint?: boolean;
17676
18061
  /** 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. */
17677
18062
  quotaUser?: string;
17678
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18063
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17679
18064
  returnPartialSuccess?: boolean;
17680
18065
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17681
18066
  upload_protocol?: string;
@@ -17862,7 +18247,7 @@ declare namespace gapi.client {
17862
18247
  prettyPrint?: boolean;
17863
18248
  /** 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. */
17864
18249
  quotaUser?: string;
17865
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18250
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17866
18251
  returnPartialSuccess?: boolean;
17867
18252
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17868
18253
  upload_protocol?: string;
@@ -18292,7 +18677,7 @@ declare namespace gapi.client {
18292
18677
  prettyPrint?: boolean;
18293
18678
  /** 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. */
18294
18679
  quotaUser?: string;
18295
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18680
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18296
18681
  returnPartialSuccess?: boolean;
18297
18682
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18298
18683
  upload_protocol?: string;
@@ -18439,7 +18824,7 @@ declare namespace gapi.client {
18439
18824
  prettyPrint?: boolean;
18440
18825
  /** 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. */
18441
18826
  quotaUser?: string;
18442
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18827
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18443
18828
  returnPartialSuccess?: boolean;
18444
18829
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18445
18830
  upload_protocol?: string;
@@ -19130,7 +19515,7 @@ declare namespace gapi.client {
19130
19515
  prettyPrint?: boolean;
19131
19516
  /** 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. */
19132
19517
  quotaUser?: string;
19133
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19518
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19134
19519
  returnPartialSuccess?: boolean;
19135
19520
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19136
19521
  upload_protocol?: string;
@@ -19838,7 +20223,7 @@ declare namespace gapi.client {
19838
20223
  prettyPrint?: boolean;
19839
20224
  /** 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. */
19840
20225
  quotaUser?: string;
19841
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20226
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19842
20227
  returnPartialSuccess?: boolean;
19843
20228
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19844
20229
  upload_protocol?: string;
@@ -21735,7 +22120,7 @@ declare namespace gapi.client {
21735
22120
  prettyPrint?: boolean;
21736
22121
  /** 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. */
21737
22122
  quotaUser?: string;
21738
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22123
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21739
22124
  returnPartialSuccess?: boolean;
21740
22125
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21741
22126
  upload_protocol?: string;
@@ -22133,7 +22518,7 @@ declare namespace gapi.client {
22133
22518
  prettyPrint?: boolean;
22134
22519
  /** 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. */
22135
22520
  quotaUser?: string;
22136
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22521
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22137
22522
  returnPartialSuccess?: boolean;
22138
22523
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22139
22524
  upload_protocol?: string;
@@ -22624,7 +23009,7 @@ declare namespace gapi.client {
22624
23009
  prettyPrint?: boolean;
22625
23010
  /** 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. */
22626
23011
  quotaUser?: string;
22627
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23012
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22628
23013
  returnPartialSuccess?: boolean;
22629
23014
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22630
23015
  upload_protocol?: string;
@@ -23343,7 +23728,7 @@ declare namespace gapi.client {
23343
23728
  prettyPrint?: boolean;
23344
23729
  /** 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. */
23345
23730
  quotaUser?: string;
23346
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23731
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23347
23732
  returnPartialSuccess?: boolean;
23348
23733
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23349
23734
  upload_protocol?: string;
@@ -23797,7 +24182,7 @@ declare namespace gapi.client {
23797
24182
  prettyPrint?: boolean;
23798
24183
  /** 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. */
23799
24184
  quotaUser?: string;
23800
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
24185
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23801
24186
  returnPartialSuccess?: boolean;
23802
24187
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23803
24188
  upload_protocol?: string;
@@ -24222,7 +24607,7 @@ declare namespace gapi.client {
24222
24607
  prettyPrint?: boolean;
24223
24608
  /** 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. */
24224
24609
  quotaUser?: string;
24225
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
24610
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
24226
24611
  returnPartialSuccess?: boolean;
24227
24612
  /** Upload protocol for media (e.g. "raw", "multipart"). */
24228
24613
  upload_protocol?: string;
@@ -25026,7 +25411,7 @@ declare namespace gapi.client {
25026
25411
  prettyPrint?: boolean;
25027
25412
  /** 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. */
25028
25413
  quotaUser?: string;
25029
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25414
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25030
25415
  returnPartialSuccess?: boolean;
25031
25416
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25032
25417
  upload_protocol?: string;
@@ -25573,7 +25958,7 @@ declare namespace gapi.client {
25573
25958
  prettyPrint?: boolean;
25574
25959
  /** 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. */
25575
25960
  quotaUser?: string;
25576
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25961
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25577
25962
  returnPartialSuccess?: boolean;
25578
25963
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25579
25964
  upload_protocol?: string;
@@ -25928,7 +26313,7 @@ declare namespace gapi.client {
25928
26313
  prettyPrint?: boolean;
25929
26314
  /** 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. */
25930
26315
  quotaUser?: string;
25931
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26316
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25932
26317
  returnPartialSuccess?: boolean;
25933
26318
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25934
26319
  upload_protocol?: string;
@@ -26577,7 +26962,7 @@ declare namespace gapi.client {
26577
26962
  prettyPrint?: boolean;
26578
26963
  /** 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. */
26579
26964
  quotaUser?: string;
26580
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26965
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26581
26966
  returnPartialSuccess?: boolean;
26582
26967
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26583
26968
  upload_protocol?: string;
@@ -27052,7 +27437,7 @@ declare namespace gapi.client {
27052
27437
  prettyPrint?: boolean;
27053
27438
  /** 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. */
27054
27439
  quotaUser?: string;
27055
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27440
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27056
27441
  returnPartialSuccess?: boolean;
27057
27442
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27058
27443
  upload_protocol?: string;
@@ -27510,7 +27895,7 @@ declare namespace gapi.client {
27510
27895
  prettyPrint?: boolean;
27511
27896
  /** 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. */
27512
27897
  quotaUser?: string;
27513
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27898
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27514
27899
  returnPartialSuccess?: boolean;
27515
27900
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27516
27901
  upload_protocol?: string;
@@ -28140,7 +28525,7 @@ declare namespace gapi.client {
28140
28525
  prettyPrint?: boolean;
28141
28526
  /** 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. */
28142
28527
  quotaUser?: string;
28143
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28528
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28144
28529
  returnPartialSuccess?: boolean;
28145
28530
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28146
28531
  upload_protocol?: string;
@@ -28776,7 +29161,7 @@ declare namespace gapi.client {
28776
29161
  prettyPrint?: boolean;
28777
29162
  /** 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. */
28778
29163
  quotaUser?: string;
28779
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29164
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28780
29165
  returnPartialSuccess?: boolean;
28781
29166
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28782
29167
  upload_protocol?: string;
@@ -29079,7 +29464,7 @@ declare namespace gapi.client {
29079
29464
  prettyPrint?: boolean;
29080
29465
  /** 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. */
29081
29466
  quotaUser?: string;
29082
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29467
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29083
29468
  returnPartialSuccess?: boolean;
29084
29469
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29085
29470
  upload_protocol?: string;
@@ -29345,7 +29730,7 @@ declare namespace gapi.client {
29345
29730
  prettyPrint?: boolean;
29346
29731
  /** 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. */
29347
29732
  quotaUser?: string;
29348
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29733
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29349
29734
  returnPartialSuccess?: boolean;
29350
29735
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29351
29736
  upload_protocol?: string;
@@ -29878,7 +30263,7 @@ declare namespace gapi.client {
29878
30263
  prettyPrint?: boolean;
29879
30264
  /** 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. */
29880
30265
  quotaUser?: string;
29881
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30266
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29882
30267
  returnPartialSuccess?: boolean;
29883
30268
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29884
30269
  upload_protocol?: string;
@@ -30271,7 +30656,7 @@ declare namespace gapi.client {
30271
30656
  prettyPrint?: boolean;
30272
30657
  /** 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. */
30273
30658
  quotaUser?: string;
30274
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30659
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30275
30660
  returnPartialSuccess?: boolean;
30276
30661
  /** Upload protocol for media (e.g. "raw", "multipart"). */
30277
30662
  upload_protocol?: string;
@@ -31316,7 +31701,7 @@ declare namespace gapi.client {
31316
31701
  prettyPrint?: boolean;
31317
31702
  /** 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. */
31318
31703
  quotaUser?: string;
31319
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31704
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31320
31705
  returnPartialSuccess?: boolean;
31321
31706
  /** Upload protocol for media (e.g. "raw", "multipart"). */
31322
31707
  upload_protocol?: string;
@@ -31621,7 +32006,7 @@ declare namespace gapi.client {
31621
32006
  prettyPrint?: boolean;
31622
32007
  /** 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. */
31623
32008
  quotaUser?: string;
31624
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32009
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31625
32010
  returnPartialSuccess?: boolean;
31626
32011
  /** Upload protocol for media (e.g. "raw", "multipart"). */
31627
32012
  upload_protocol?: string;
@@ -32094,7 +32479,7 @@ declare namespace gapi.client {
32094
32479
  prettyPrint?: boolean;
32095
32480
  /** 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. */
32096
32481
  quotaUser?: string;
32097
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32482
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32098
32483
  returnPartialSuccess?: boolean;
32099
32484
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32100
32485
  upload_protocol?: string;
@@ -32336,7 +32721,7 @@ declare namespace gapi.client {
32336
32721
  prettyPrint?: boolean;
32337
32722
  /** 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. */
32338
32723
  quotaUser?: string;
32339
- /** Required. The update mask applies to the resource. For the `FieldMask` definition, see google.protobuf.FieldMask. Input format: `{paths: "${updated_filed}"}` Updatable fields: * `encryption_spec.kms_key_name` */
32724
+ /** Required. The update mask applies to the resource. For the `FieldMask` definition, see google.protobuf.FieldMask. Input format: `{paths: "${updated_field}"}` Updatable fields: * `encryption_spec.kms_key_name` * `display_name` * `software_config.post_startup_script_config.post_startup_script` * `software_config.post_startup_script_config.post_startup_script_url` * `software_config.post_startup_script_config.post_startup_script_behavior` * `software_config.env` * `software_config.colab_image.release_name` */
32340
32725
  updateMask?: string;
32341
32726
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32342
32727
  upload_protocol?: string;
@@ -32367,7 +32752,7 @@ declare namespace gapi.client {
32367
32752
  prettyPrint?: boolean;
32368
32753
  /** 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. */
32369
32754
  quotaUser?: string;
32370
- /** Required. The update mask applies to the resource. For the `FieldMask` definition, see google.protobuf.FieldMask. Input format: `{paths: "${updated_filed}"}` Updatable fields: * `encryption_spec.kms_key_name` */
32755
+ /** Required. The update mask applies to the resource. For the `FieldMask` definition, see google.protobuf.FieldMask. Input format: `{paths: "${updated_field}"}` Updatable fields: * `encryption_spec.kms_key_name` * `display_name` * `software_config.post_startup_script_config.post_startup_script` * `software_config.post_startup_script_config.post_startup_script_url` * `software_config.post_startup_script_config.post_startup_script_behavior` * `software_config.env` * `software_config.colab_image.release_name` */
32371
32756
  updateMask?: string;
32372
32757
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32373
32758
  upload_protocol?: string;
@@ -32547,7 +32932,7 @@ declare namespace gapi.client {
32547
32932
  prettyPrint?: boolean;
32548
32933
  /** 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. */
32549
32934
  quotaUser?: string;
32550
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32935
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32551
32936
  returnPartialSuccess?: boolean;
32552
32937
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32553
32938
  upload_protocol?: string;
@@ -32694,7 +33079,7 @@ declare namespace gapi.client {
32694
33079
  prettyPrint?: boolean;
32695
33080
  /** 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. */
32696
33081
  quotaUser?: string;
32697
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33082
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32698
33083
  returnPartialSuccess?: boolean;
32699
33084
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32700
33085
  upload_protocol?: string;
@@ -33111,7 +33496,7 @@ declare namespace gapi.client {
33111
33496
  prettyPrint?: boolean;
33112
33497
  /** 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. */
33113
33498
  quotaUser?: string;
33114
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33499
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33115
33500
  returnPartialSuccess?: boolean;
33116
33501
  /** Upload protocol for media (e.g. "raw", "multipart"). */
33117
33502
  upload_protocol?: string;
@@ -34230,7 +34615,7 @@ declare namespace gapi.client {
34230
34615
  prettyPrint?: boolean;
34231
34616
  /** 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. */
34232
34617
  quotaUser?: string;
34233
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34618
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34234
34619
  returnPartialSuccess?: boolean;
34235
34620
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34236
34621
  upload_protocol?: string;
@@ -34377,7 +34762,7 @@ declare namespace gapi.client {
34377
34762
  prettyPrint?: boolean;
34378
34763
  /** 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. */
34379
34764
  quotaUser?: string;
34380
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34765
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34381
34766
  returnPartialSuccess?: boolean;
34382
34767
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34383
34768
  upload_protocol?: string;
@@ -34879,7 +35264,7 @@ declare namespace gapi.client {
34879
35264
  prettyPrint?: boolean;
34880
35265
  /** 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. */
34881
35266
  quotaUser?: string;
34882
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35267
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34883
35268
  returnPartialSuccess?: boolean;
34884
35269
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34885
35270
  upload_protocol?: string;
@@ -35029,7 +35414,7 @@ declare namespace gapi.client {
35029
35414
  prettyPrint?: boolean;
35030
35415
  /** 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. */
35031
35416
  quotaUser?: string;
35032
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35417
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35033
35418
  returnPartialSuccess?: boolean;
35034
35419
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35035
35420
  upload_protocol?: string;
@@ -35066,8 +35451,70 @@ declare namespace gapi.client {
35066
35451
  uploadType?: string;
35067
35452
  }): Request<GoogleLongrunningOperation>;
35068
35453
  }
35069
- interface ReasoningEnginesResource {
35070
- /** Creates a reasoning engine. */
35454
+ interface RevisionsResource {
35455
+ /** Get a Memory Revision. */
35456
+ get(request?: {
35457
+ /** V1 error format. */
35458
+ '$.xgafv'?: string;
35459
+ /** OAuth access token. */
35460
+ access_token?: string;
35461
+ /** Data format for response. */
35462
+ alt?: string;
35463
+ /** JSONP */
35464
+ callback?: string;
35465
+ /** Selector specifying which fields to include in a partial response. */
35466
+ fields?: string;
35467
+ /** 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. */
35468
+ key?: string;
35469
+ /** Required. The resource name of the Memory Revision to retrieve. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}/revisions/{revision}` */
35470
+ name: string;
35471
+ /** OAuth 2.0 token for the current user. */
35472
+ oauth_token?: string;
35473
+ /** Returns response with indentations and line breaks. */
35474
+ prettyPrint?: boolean;
35475
+ /** 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. */
35476
+ quotaUser?: string;
35477
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
35478
+ upload_protocol?: string;
35479
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35480
+ uploadType?: string;
35481
+ }): Request<GoogleCloudAiplatformV1MemoryRevision>;
35482
+ /** List Memory Revisions for a Memory. */
35483
+ list(request?: {
35484
+ /** V1 error format. */
35485
+ '$.xgafv'?: string;
35486
+ /** OAuth access token. */
35487
+ access_token?: string;
35488
+ /** Data format for response. */
35489
+ alt?: string;
35490
+ /** JSONP */
35491
+ callback?: string;
35492
+ /** Selector specifying which fields to include in a partial response. */
35493
+ fields?: string;
35494
+ /** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). Supported fields (equality match only): * `labels` */
35495
+ filter?: string;
35496
+ /** 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. */
35497
+ key?: string;
35498
+ /** OAuth 2.0 token for the current user. */
35499
+ oauth_token?: string;
35500
+ /** Optional. The standard list page size. */
35501
+ pageSize?: number;
35502
+ /** Optional. The standard list page token. */
35503
+ pageToken?: string;
35504
+ /** Required. The resource name of the Memory to list revisions for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
35505
+ parent: string;
35506
+ /** Returns response with indentations and line breaks. */
35507
+ prettyPrint?: boolean;
35508
+ /** 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. */
35509
+ quotaUser?: string;
35510
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
35511
+ upload_protocol?: string;
35512
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35513
+ uploadType?: string;
35514
+ }): Request<GoogleCloudAiplatformV1ListMemoryRevisionsResponse>;
35515
+ }
35516
+ interface MemoriesResource {
35517
+ /** Create a Memory. */
35071
35518
  create(request: {
35072
35519
  /** V1 error format. */
35073
35520
  '$.xgafv'?: string;
@@ -35083,7 +35530,7 @@ declare namespace gapi.client {
35083
35530
  key?: string;
35084
35531
  /** OAuth 2.0 token for the current user. */
35085
35532
  oauth_token?: string;
35086
- /** Required. The resource name of the Location to create the ReasoningEngine in. Format: `projects/{project}/locations/{location}` */
35533
+ /** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35087
35534
  parent: string;
35088
35535
  /** Returns response with indentations and line breaks. */
35089
35536
  prettyPrint?: boolean;
@@ -35094,7 +35541,7 @@ declare namespace gapi.client {
35094
35541
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35095
35542
  uploadType?: string;
35096
35543
  /** Request body */
35097
- resource: GoogleCloudAiplatformV1ReasoningEngine;
35544
+ resource: GoogleCloudAiplatformV1Memory;
35098
35545
  }): Request<GoogleLongrunningOperation>;
35099
35546
  create(
35100
35547
  request: {
@@ -35112,7 +35559,7 @@ declare namespace gapi.client {
35112
35559
  key?: string;
35113
35560
  /** OAuth 2.0 token for the current user. */
35114
35561
  oauth_token?: string;
35115
- /** Required. The resource name of the Location to create the ReasoningEngine in. Format: `projects/{project}/locations/{location}` */
35562
+ /** Required. The resource name of the ReasoningEngine to create the Memory under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35116
35563
  parent: string;
35117
35564
  /** Returns response with indentations and line breaks. */
35118
35565
  prettyPrint?: boolean;
@@ -35123,9 +35570,9 @@ declare namespace gapi.client {
35123
35570
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35124
35571
  uploadType?: string;
35125
35572
  },
35126
- body: GoogleCloudAiplatformV1ReasoningEngine,
35573
+ body: GoogleCloudAiplatformV1Memory,
35127
35574
  ): Request<GoogleLongrunningOperation>;
35128
- /** Deletes a reasoning engine. */
35575
+ /** Delete a Memory. */
35129
35576
  delete(request?: {
35130
35577
  /** V1 error format. */
35131
35578
  '$.xgafv'?: string;
@@ -35137,11 +35584,9 @@ declare namespace gapi.client {
35137
35584
  callback?: string;
35138
35585
  /** Selector specifying which fields to include in a partial response. */
35139
35586
  fields?: string;
35140
- /** Optional. If set to true, child resources of this reasoning engine will also be deleted. Otherwise, the request will fail with FAILED_PRECONDITION error when the reasoning engine has undeleted child resources. */
35141
- force?: boolean;
35142
35587
  /** 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. */
35143
35588
  key?: string;
35144
- /** Required. The name of the ReasoningEngine resource to be deleted. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35589
+ /** Required. The resource name of the Memory to delete. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
35145
35590
  name: string;
35146
35591
  /** OAuth 2.0 token for the current user. */
35147
35592
  oauth_token?: string;
@@ -35154,7 +35599,65 @@ declare namespace gapi.client {
35154
35599
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35155
35600
  uploadType?: string;
35156
35601
  }): Request<GoogleLongrunningOperation>;
35157
- /** Gets a reasoning engine. */
35602
+ /** Generate memories. */
35603
+ generate(request: {
35604
+ /** V1 error format. */
35605
+ '$.xgafv'?: string;
35606
+ /** OAuth access token. */
35607
+ access_token?: string;
35608
+ /** Data format for response. */
35609
+ alt?: string;
35610
+ /** JSONP */
35611
+ callback?: string;
35612
+ /** Selector specifying which fields to include in a partial response. */
35613
+ fields?: string;
35614
+ /** 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. */
35615
+ key?: string;
35616
+ /** OAuth 2.0 token for the current user. */
35617
+ oauth_token?: string;
35618
+ /** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35619
+ parent: string;
35620
+ /** Returns response with indentations and line breaks. */
35621
+ prettyPrint?: boolean;
35622
+ /** 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. */
35623
+ quotaUser?: string;
35624
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
35625
+ upload_protocol?: string;
35626
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35627
+ uploadType?: string;
35628
+ /** Request body */
35629
+ resource: GoogleCloudAiplatformV1GenerateMemoriesRequest;
35630
+ }): Request<GoogleLongrunningOperation>;
35631
+ generate(
35632
+ request: {
35633
+ /** V1 error format. */
35634
+ '$.xgafv'?: string;
35635
+ /** OAuth access token. */
35636
+ access_token?: string;
35637
+ /** Data format for response. */
35638
+ alt?: string;
35639
+ /** JSONP */
35640
+ callback?: string;
35641
+ /** Selector specifying which fields to include in a partial response. */
35642
+ fields?: string;
35643
+ /** 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. */
35644
+ key?: string;
35645
+ /** OAuth 2.0 token for the current user. */
35646
+ oauth_token?: string;
35647
+ /** Required. The resource name of the ReasoningEngine to generate memories for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35648
+ parent: string;
35649
+ /** Returns response with indentations and line breaks. */
35650
+ prettyPrint?: boolean;
35651
+ /** 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. */
35652
+ quotaUser?: string;
35653
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
35654
+ upload_protocol?: string;
35655
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35656
+ uploadType?: string;
35657
+ },
35658
+ body: GoogleCloudAiplatformV1GenerateMemoriesRequest,
35659
+ ): Request<GoogleLongrunningOperation>;
35660
+ /** Get a Memory. */
35158
35661
  get(request?: {
35159
35662
  /** V1 error format. */
35160
35663
  '$.xgafv'?: string;
@@ -35168,7 +35671,7 @@ declare namespace gapi.client {
35168
35671
  fields?: string;
35169
35672
  /** 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. */
35170
35673
  key?: string;
35171
- /** Required. The name of the ReasoningEngine resource. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35674
+ /** Required. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
35172
35675
  name: string;
35173
35676
  /** OAuth 2.0 token for the current user. */
35174
35677
  oauth_token?: string;
@@ -35180,8 +35683,8 @@ declare namespace gapi.client {
35180
35683
  upload_protocol?: string;
35181
35684
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35182
35685
  uploadType?: string;
35183
- }): Request<GoogleCloudAiplatformV1ReasoningEngine>;
35184
- /** Lists reasoning engines in a location. */
35686
+ }): Request<GoogleCloudAiplatformV1Memory>;
35687
+ /** List Memories. */
35185
35688
  list(request?: {
35186
35689
  /** V1 error format. */
35187
35690
  '$.xgafv'?: string;
@@ -35193,17 +35696,19 @@ declare namespace gapi.client {
35193
35696
  callback?: string;
35194
35697
  /** Selector specifying which fields to include in a partial response. */
35195
35698
  fields?: string;
35196
- /** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). */
35699
+ /** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). Supported fields: * `scope` (as a JSON string with equality match only) * `topics` (i.e. `topics.custom_memory_topic_label: "example topic" OR topics.managed_memory_topic: USER_PREFERENCES`) */
35197
35700
  filter?: string;
35198
35701
  /** 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. */
35199
35702
  key?: string;
35200
35703
  /** OAuth 2.0 token for the current user. */
35201
35704
  oauth_token?: string;
35705
+ /** Optional. The standard list order by string. If not specified, the default order is `create_time desc`. If specified, the default sorting order of provided fields is ascending. More detail in [AIP-132](https://google.aip.dev/132). Supported fields: * `create_time` * `update_time` */
35706
+ orderBy?: string;
35202
35707
  /** Optional. The standard list page size. */
35203
35708
  pageSize?: number;
35204
35709
  /** Optional. The standard list page token. */
35205
35710
  pageToken?: string;
35206
- /** Required. The resource name of the Location to list the ReasoningEngines from. Format: `projects/{project}/locations/{location}` */
35711
+ /** Required. The resource name of the ReasoningEngine to list the Memories under. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35207
35712
  parent: string;
35208
35713
  /** Returns response with indentations and line breaks. */
35209
35714
  prettyPrint?: boolean;
@@ -35213,8 +35718,8 @@ declare namespace gapi.client {
35213
35718
  upload_protocol?: string;
35214
35719
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35215
35720
  uploadType?: string;
35216
- }): Request<GoogleCloudAiplatformV1ListReasoningEnginesResponse>;
35217
- /** Updates a reasoning engine. */
35721
+ }): Request<GoogleCloudAiplatformV1ListMemoriesResponse>;
35722
+ /** Update a Memory. */
35218
35723
  patch(request: {
35219
35724
  /** V1 error format. */
35220
35725
  '$.xgafv'?: string;
@@ -35228,7 +35733,7 @@ declare namespace gapi.client {
35228
35733
  fields?: string;
35229
35734
  /** 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. */
35230
35735
  key?: string;
35231
- /** Identifier. The resource name of the ReasoningEngine. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35736
+ /** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
35232
35737
  name: string;
35233
35738
  /** OAuth 2.0 token for the current user. */
35234
35739
  oauth_token?: string;
@@ -35236,14 +35741,14 @@ declare namespace gapi.client {
35236
35741
  prettyPrint?: boolean;
35237
35742
  /** 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. */
35238
35743
  quotaUser?: string;
35239
- /** Optional. Mask specifying which fields to update. */
35744
+ /** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
35240
35745
  updateMask?: string;
35241
35746
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35242
35747
  upload_protocol?: string;
35243
35748
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35244
35749
  uploadType?: string;
35245
35750
  /** Request body */
35246
- resource: GoogleCloudAiplatformV1ReasoningEngine;
35751
+ resource: GoogleCloudAiplatformV1Memory;
35247
35752
  }): Request<GoogleLongrunningOperation>;
35248
35753
  patch(
35249
35754
  request: {
@@ -35259,7 +35764,7 @@ declare namespace gapi.client {
35259
35764
  fields?: string;
35260
35765
  /** 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. */
35261
35766
  key?: string;
35262
- /** Identifier. The resource name of the ReasoningEngine. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35767
+ /** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
35263
35768
  name: string;
35264
35769
  /** OAuth 2.0 token for the current user. */
35265
35770
  oauth_token?: string;
@@ -35267,17 +35772,75 @@ declare namespace gapi.client {
35267
35772
  prettyPrint?: boolean;
35268
35773
  /** 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. */
35269
35774
  quotaUser?: string;
35270
- /** Optional. Mask specifying which fields to update. */
35775
+ /** Optional. Mask specifying which fields to update. Supported fields: * `display_name` * `description` * `fact` */
35271
35776
  updateMask?: string;
35272
35777
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35273
35778
  upload_protocol?: string;
35274
35779
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35275
35780
  uploadType?: string;
35276
35781
  },
35277
- body: GoogleCloudAiplatformV1ReasoningEngine,
35782
+ body: GoogleCloudAiplatformV1Memory,
35278
35783
  ): Request<GoogleLongrunningOperation>;
35279
- /** Queries using a reasoning engine. */
35280
- query(request: {
35784
+ /** Purge memories. */
35785
+ purge(request: {
35786
+ /** V1 error format. */
35787
+ '$.xgafv'?: string;
35788
+ /** OAuth access token. */
35789
+ access_token?: string;
35790
+ /** Data format for response. */
35791
+ alt?: string;
35792
+ /** JSONP */
35793
+ callback?: string;
35794
+ /** Selector specifying which fields to include in a partial response. */
35795
+ fields?: string;
35796
+ /** 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. */
35797
+ key?: string;
35798
+ /** OAuth 2.0 token for the current user. */
35799
+ oauth_token?: string;
35800
+ /** Required. The resource name of the ReasoningEngine to purge memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35801
+ parent: string;
35802
+ /** Returns response with indentations and line breaks. */
35803
+ prettyPrint?: boolean;
35804
+ /** 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. */
35805
+ quotaUser?: string;
35806
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
35807
+ upload_protocol?: string;
35808
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35809
+ uploadType?: string;
35810
+ /** Request body */
35811
+ resource: GoogleCloudAiplatformV1PurgeMemoriesRequest;
35812
+ }): Request<GoogleLongrunningOperation>;
35813
+ purge(
35814
+ request: {
35815
+ /** V1 error format. */
35816
+ '$.xgafv'?: string;
35817
+ /** OAuth access token. */
35818
+ access_token?: string;
35819
+ /** Data format for response. */
35820
+ alt?: string;
35821
+ /** JSONP */
35822
+ callback?: string;
35823
+ /** Selector specifying which fields to include in a partial response. */
35824
+ fields?: string;
35825
+ /** 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. */
35826
+ key?: string;
35827
+ /** OAuth 2.0 token for the current user. */
35828
+ oauth_token?: string;
35829
+ /** Required. The resource name of the ReasoningEngine to purge memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35830
+ parent: string;
35831
+ /** Returns response with indentations and line breaks. */
35832
+ prettyPrint?: boolean;
35833
+ /** 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. */
35834
+ quotaUser?: string;
35835
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
35836
+ upload_protocol?: string;
35837
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35838
+ uploadType?: string;
35839
+ },
35840
+ body: GoogleCloudAiplatformV1PurgeMemoriesRequest,
35841
+ ): Request<GoogleLongrunningOperation>;
35842
+ /** Retrieve memories. */
35843
+ retrieve(request: {
35281
35844
  /** V1 error format. */
35282
35845
  '$.xgafv'?: string;
35283
35846
  /** OAuth access token. */
@@ -35290,10 +35853,10 @@ declare namespace gapi.client {
35290
35853
  fields?: string;
35291
35854
  /** 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. */
35292
35855
  key?: string;
35293
- /** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35294
- name: string;
35295
35856
  /** OAuth 2.0 token for the current user. */
35296
35857
  oauth_token?: string;
35858
+ /** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35859
+ parent: string;
35297
35860
  /** Returns response with indentations and line breaks. */
35298
35861
  prettyPrint?: boolean;
35299
35862
  /** 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. */
@@ -35303,9 +35866,9 @@ declare namespace gapi.client {
35303
35866
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35304
35867
  uploadType?: string;
35305
35868
  /** Request body */
35306
- resource: GoogleCloudAiplatformV1QueryReasoningEngineRequest;
35307
- }): Request<GoogleCloudAiplatformV1QueryReasoningEngineResponse>;
35308
- query(
35869
+ resource: GoogleCloudAiplatformV1RetrieveMemoriesRequest;
35870
+ }): Request<GoogleCloudAiplatformV1RetrieveMemoriesResponse>;
35871
+ retrieve(
35309
35872
  request: {
35310
35873
  /** V1 error format. */
35311
35874
  '$.xgafv'?: string;
@@ -35319,10 +35882,10 @@ declare namespace gapi.client {
35319
35882
  fields?: string;
35320
35883
  /** 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. */
35321
35884
  key?: string;
35322
- /** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35323
- name: string;
35324
35885
  /** OAuth 2.0 token for the current user. */
35325
35886
  oauth_token?: string;
35887
+ /** Required. The resource name of the ReasoningEngine to retrieve memories from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35888
+ parent: string;
35326
35889
  /** Returns response with indentations and line breaks. */
35327
35890
  prettyPrint?: boolean;
35328
35891
  /** 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. */
@@ -35332,10 +35895,10 @@ declare namespace gapi.client {
35332
35895
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35333
35896
  uploadType?: string;
35334
35897
  },
35335
- body: GoogleCloudAiplatformV1QueryReasoningEngineRequest,
35336
- ): Request<GoogleCloudAiplatformV1QueryReasoningEngineResponse>;
35337
- /** Streams queries using a reasoning engine. */
35338
- streamQuery(request: {
35898
+ body: GoogleCloudAiplatformV1RetrieveMemoriesRequest,
35899
+ ): Request<GoogleCloudAiplatformV1RetrieveMemoriesResponse>;
35900
+ /** Rollback Memory to a specific revision. */
35901
+ rollback(request: {
35339
35902
  /** V1 error format. */
35340
35903
  '$.xgafv'?: string;
35341
35904
  /** OAuth access token. */
@@ -35348,7 +35911,7 @@ declare namespace gapi.client {
35348
35911
  fields?: string;
35349
35912
  /** 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. */
35350
35913
  key?: string;
35351
- /** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35914
+ /** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
35352
35915
  name: string;
35353
35916
  /** OAuth 2.0 token for the current user. */
35354
35917
  oauth_token?: string;
@@ -35361,9 +35924,9 @@ declare namespace gapi.client {
35361
35924
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35362
35925
  uploadType?: string;
35363
35926
  /** Request body */
35364
- resource: GoogleCloudAiplatformV1StreamQueryReasoningEngineRequest;
35365
- }): Request<GoogleApiHttpBody>;
35366
- streamQuery(
35927
+ resource: GoogleCloudAiplatformV1RollbackMemoryRequest;
35928
+ }): Request<GoogleLongrunningOperation>;
35929
+ rollback(
35367
35930
  request: {
35368
35931
  /** V1 error format. */
35369
35932
  '$.xgafv'?: string;
@@ -35377,7 +35940,7 @@ declare namespace gapi.client {
35377
35940
  fields?: string;
35378
35941
  /** 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. */
35379
35942
  key?: string;
35380
- /** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
35943
+ /** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
35381
35944
  name: string;
35382
35945
  /** OAuth 2.0 token for the current user. */
35383
35946
  oauth_token?: string;
@@ -35390,9 +35953,10 @@ declare namespace gapi.client {
35390
35953
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
35391
35954
  uploadType?: string;
35392
35955
  },
35393
- body: GoogleCloudAiplatformV1StreamQueryReasoningEngineRequest,
35394
- ): Request<GoogleApiHttpBody>;
35956
+ body: GoogleCloudAiplatformV1RollbackMemoryRequest,
35957
+ ): Request<GoogleLongrunningOperation>;
35395
35958
  operations: OperationsResource;
35959
+ revisions: RevisionsResource;
35396
35960
  }
35397
35961
  interface OperationsResource {
35398
35962
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
@@ -35504,7 +36068,939 @@ declare namespace gapi.client {
35504
36068
  prettyPrint?: boolean;
35505
36069
  /** 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. */
35506
36070
  quotaUser?: string;
35507
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36071
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36072
+ returnPartialSuccess?: boolean;
36073
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36074
+ upload_protocol?: string;
36075
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36076
+ uploadType?: string;
36077
+ }): Request<GoogleLongrunningListOperationsResponse>;
36078
+ /** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
36079
+ wait(request?: {
36080
+ /** V1 error format. */
36081
+ '$.xgafv'?: string;
36082
+ /** OAuth access token. */
36083
+ access_token?: string;
36084
+ /** Data format for response. */
36085
+ alt?: string;
36086
+ /** JSONP */
36087
+ callback?: string;
36088
+ /** Selector specifying which fields to include in a partial response. */
36089
+ fields?: string;
36090
+ /** 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. */
36091
+ key?: string;
36092
+ /** The name of the operation resource to wait on. */
36093
+ name: string;
36094
+ /** OAuth 2.0 token for the current user. */
36095
+ oauth_token?: string;
36096
+ /** Returns response with indentations and line breaks. */
36097
+ prettyPrint?: boolean;
36098
+ /** 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. */
36099
+ quotaUser?: string;
36100
+ /** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
36101
+ timeout?: string;
36102
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36103
+ upload_protocol?: string;
36104
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36105
+ uploadType?: string;
36106
+ }): Request<GoogleLongrunningOperation>;
36107
+ }
36108
+ interface EventsResource {
36109
+ /** Lists Events in a given session. */
36110
+ list(request?: {
36111
+ /** V1 error format. */
36112
+ '$.xgafv'?: string;
36113
+ /** OAuth access token. */
36114
+ access_token?: string;
36115
+ /** Data format for response. */
36116
+ alt?: string;
36117
+ /** JSONP */
36118
+ callback?: string;
36119
+ /** Selector specifying which fields to include in a partial response. */
36120
+ fields?: string;
36121
+ /** Optional. The standard list filter. Supported fields: * `timestamp` range (i.e. `timestamp>="2025-01-31T11:30:00-04:00"` where the timestamp is in RFC 3339 format) More detail in [AIP-160](https://google.aip.dev/160). */
36122
+ filter?: string;
36123
+ /** 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. */
36124
+ key?: string;
36125
+ /** OAuth 2.0 token for the current user. */
36126
+ oauth_token?: string;
36127
+ /** Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported fields: * `timestamp` Example: `timestamp desc`. */
36128
+ orderBy?: string;
36129
+ /** 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. */
36130
+ pageSize?: number;
36131
+ /** Optional. The next_page_token value returned from a previous list SessionService.ListEvents call. */
36132
+ pageToken?: string;
36133
+ /** Required. The resource name of the session to list events from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
36134
+ parent: string;
36135
+ /** Returns response with indentations and line breaks. */
36136
+ prettyPrint?: boolean;
36137
+ /** 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. */
36138
+ quotaUser?: string;
36139
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36140
+ upload_protocol?: string;
36141
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36142
+ uploadType?: string;
36143
+ }): Request<GoogleCloudAiplatformV1ListEventsResponse>;
36144
+ }
36145
+ interface OperationsResource {
36146
+ /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
36147
+ cancel(request?: {
36148
+ /** V1 error format. */
36149
+ '$.xgafv'?: string;
36150
+ /** OAuth access token. */
36151
+ access_token?: string;
36152
+ /** Data format for response. */
36153
+ alt?: string;
36154
+ /** JSONP */
36155
+ callback?: string;
36156
+ /** Selector specifying which fields to include in a partial response. */
36157
+ fields?: string;
36158
+ /** 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. */
36159
+ key?: string;
36160
+ /** The name of the operation resource to be cancelled. */
36161
+ name: string;
36162
+ /** OAuth 2.0 token for the current user. */
36163
+ oauth_token?: string;
36164
+ /** Returns response with indentations and line breaks. */
36165
+ prettyPrint?: boolean;
36166
+ /** 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. */
36167
+ quotaUser?: string;
36168
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36169
+ upload_protocol?: string;
36170
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36171
+ uploadType?: string;
36172
+ }): Request<{}>;
36173
+ /** 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`. */
36174
+ delete(request?: {
36175
+ /** V1 error format. */
36176
+ '$.xgafv'?: string;
36177
+ /** OAuth access token. */
36178
+ access_token?: string;
36179
+ /** Data format for response. */
36180
+ alt?: string;
36181
+ /** JSONP */
36182
+ callback?: string;
36183
+ /** Selector specifying which fields to include in a partial response. */
36184
+ fields?: string;
36185
+ /** 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. */
36186
+ key?: string;
36187
+ /** The name of the operation resource to be deleted. */
36188
+ name: string;
36189
+ /** OAuth 2.0 token for the current user. */
36190
+ oauth_token?: string;
36191
+ /** Returns response with indentations and line breaks. */
36192
+ prettyPrint?: boolean;
36193
+ /** 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. */
36194
+ quotaUser?: string;
36195
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36196
+ upload_protocol?: string;
36197
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36198
+ uploadType?: string;
36199
+ }): Request<{}>;
36200
+ /** 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. */
36201
+ get(request?: {
36202
+ /** V1 error format. */
36203
+ '$.xgafv'?: string;
36204
+ /** OAuth access token. */
36205
+ access_token?: string;
36206
+ /** Data format for response. */
36207
+ alt?: string;
36208
+ /** JSONP */
36209
+ callback?: string;
36210
+ /** Selector specifying which fields to include in a partial response. */
36211
+ fields?: string;
36212
+ /** 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. */
36213
+ key?: string;
36214
+ /** The name of the operation resource. */
36215
+ name: string;
36216
+ /** OAuth 2.0 token for the current user. */
36217
+ oauth_token?: string;
36218
+ /** Returns response with indentations and line breaks. */
36219
+ prettyPrint?: boolean;
36220
+ /** 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. */
36221
+ quotaUser?: string;
36222
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36223
+ upload_protocol?: string;
36224
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36225
+ uploadType?: string;
36226
+ }): Request<GoogleLongrunningOperation>;
36227
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
36228
+ list(request?: {
36229
+ /** V1 error format. */
36230
+ '$.xgafv'?: string;
36231
+ /** OAuth access token. */
36232
+ access_token?: string;
36233
+ /** Data format for response. */
36234
+ alt?: string;
36235
+ /** JSONP */
36236
+ callback?: string;
36237
+ /** Selector specifying which fields to include in a partial response. */
36238
+ fields?: string;
36239
+ /** The standard list filter. */
36240
+ filter?: string;
36241
+ /** 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. */
36242
+ key?: string;
36243
+ /** The name of the operation's parent resource. */
36244
+ name: string;
36245
+ /** OAuth 2.0 token for the current user. */
36246
+ oauth_token?: string;
36247
+ /** The standard list page size. */
36248
+ pageSize?: number;
36249
+ /** The standard list page token. */
36250
+ pageToken?: string;
36251
+ /** Returns response with indentations and line breaks. */
36252
+ prettyPrint?: boolean;
36253
+ /** 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. */
36254
+ quotaUser?: string;
36255
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36256
+ returnPartialSuccess?: boolean;
36257
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36258
+ upload_protocol?: string;
36259
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36260
+ uploadType?: string;
36261
+ }): Request<GoogleLongrunningListOperationsResponse>;
36262
+ /** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
36263
+ wait(request?: {
36264
+ /** V1 error format. */
36265
+ '$.xgafv'?: string;
36266
+ /** OAuth access token. */
36267
+ access_token?: string;
36268
+ /** Data format for response. */
36269
+ alt?: string;
36270
+ /** JSONP */
36271
+ callback?: string;
36272
+ /** Selector specifying which fields to include in a partial response. */
36273
+ fields?: string;
36274
+ /** 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. */
36275
+ key?: string;
36276
+ /** The name of the operation resource to wait on. */
36277
+ name: string;
36278
+ /** OAuth 2.0 token for the current user. */
36279
+ oauth_token?: string;
36280
+ /** Returns response with indentations and line breaks. */
36281
+ prettyPrint?: boolean;
36282
+ /** 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. */
36283
+ quotaUser?: string;
36284
+ /** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
36285
+ timeout?: string;
36286
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36287
+ upload_protocol?: string;
36288
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36289
+ uploadType?: string;
36290
+ }): Request<GoogleLongrunningOperation>;
36291
+ }
36292
+ interface SessionsResource {
36293
+ /** Appends an event to a given session. */
36294
+ appendEvent(request: {
36295
+ /** V1 error format. */
36296
+ '$.xgafv'?: string;
36297
+ /** OAuth access token. */
36298
+ access_token?: string;
36299
+ /** Data format for response. */
36300
+ alt?: string;
36301
+ /** JSONP */
36302
+ callback?: string;
36303
+ /** Selector specifying which fields to include in a partial response. */
36304
+ fields?: string;
36305
+ /** 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. */
36306
+ key?: string;
36307
+ /** Required. The resource name of the session to append event to. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
36308
+ name: string;
36309
+ /** OAuth 2.0 token for the current user. */
36310
+ oauth_token?: string;
36311
+ /** Returns response with indentations and line breaks. */
36312
+ prettyPrint?: boolean;
36313
+ /** 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. */
36314
+ quotaUser?: string;
36315
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36316
+ upload_protocol?: string;
36317
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36318
+ uploadType?: string;
36319
+ /** Request body */
36320
+ resource: GoogleCloudAiplatformV1SessionEvent;
36321
+ }): Request<{}>;
36322
+ appendEvent(
36323
+ request: {
36324
+ /** V1 error format. */
36325
+ '$.xgafv'?: string;
36326
+ /** OAuth access token. */
36327
+ access_token?: string;
36328
+ /** Data format for response. */
36329
+ alt?: string;
36330
+ /** JSONP */
36331
+ callback?: string;
36332
+ /** Selector specifying which fields to include in a partial response. */
36333
+ fields?: string;
36334
+ /** 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. */
36335
+ key?: string;
36336
+ /** Required. The resource name of the session to append event to. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
36337
+ name: string;
36338
+ /** OAuth 2.0 token for the current user. */
36339
+ oauth_token?: string;
36340
+ /** Returns response with indentations and line breaks. */
36341
+ prettyPrint?: boolean;
36342
+ /** 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. */
36343
+ quotaUser?: string;
36344
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36345
+ upload_protocol?: string;
36346
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36347
+ uploadType?: string;
36348
+ },
36349
+ body: GoogleCloudAiplatformV1SessionEvent,
36350
+ ): Request<{}>;
36351
+ /** Creates a new Session. */
36352
+ create(request: {
36353
+ /** V1 error format. */
36354
+ '$.xgafv'?: string;
36355
+ /** OAuth access token. */
36356
+ access_token?: string;
36357
+ /** Data format for response. */
36358
+ alt?: string;
36359
+ /** JSONP */
36360
+ callback?: string;
36361
+ /** Selector specifying which fields to include in a partial response. */
36362
+ fields?: string;
36363
+ /** 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. */
36364
+ key?: string;
36365
+ /** OAuth 2.0 token for the current user. */
36366
+ oauth_token?: string;
36367
+ /** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36368
+ parent: string;
36369
+ /** Returns response with indentations and line breaks. */
36370
+ prettyPrint?: boolean;
36371
+ /** 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. */
36372
+ quotaUser?: string;
36373
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36374
+ upload_protocol?: string;
36375
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36376
+ uploadType?: string;
36377
+ /** Request body */
36378
+ resource: GoogleCloudAiplatformV1Session;
36379
+ }): Request<GoogleLongrunningOperation>;
36380
+ create(
36381
+ request: {
36382
+ /** V1 error format. */
36383
+ '$.xgafv'?: string;
36384
+ /** OAuth access token. */
36385
+ access_token?: string;
36386
+ /** Data format for response. */
36387
+ alt?: string;
36388
+ /** JSONP */
36389
+ callback?: string;
36390
+ /** Selector specifying which fields to include in a partial response. */
36391
+ fields?: string;
36392
+ /** 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. */
36393
+ key?: string;
36394
+ /** OAuth 2.0 token for the current user. */
36395
+ oauth_token?: string;
36396
+ /** Required. The resource name of the location to create the session in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36397
+ parent: string;
36398
+ /** Returns response with indentations and line breaks. */
36399
+ prettyPrint?: boolean;
36400
+ /** 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. */
36401
+ quotaUser?: string;
36402
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36403
+ upload_protocol?: string;
36404
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36405
+ uploadType?: string;
36406
+ },
36407
+ body: GoogleCloudAiplatformV1Session,
36408
+ ): Request<GoogleLongrunningOperation>;
36409
+ /** Deletes details of the specific Session. */
36410
+ delete(request?: {
36411
+ /** V1 error format. */
36412
+ '$.xgafv'?: string;
36413
+ /** OAuth access token. */
36414
+ access_token?: string;
36415
+ /** Data format for response. */
36416
+ alt?: string;
36417
+ /** JSONP */
36418
+ callback?: string;
36419
+ /** Selector specifying which fields to include in a partial response. */
36420
+ fields?: string;
36421
+ /** 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. */
36422
+ key?: string;
36423
+ /** Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
36424
+ name: string;
36425
+ /** OAuth 2.0 token for the current user. */
36426
+ oauth_token?: string;
36427
+ /** Returns response with indentations and line breaks. */
36428
+ prettyPrint?: boolean;
36429
+ /** 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. */
36430
+ quotaUser?: string;
36431
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36432
+ upload_protocol?: string;
36433
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36434
+ uploadType?: string;
36435
+ }): Request<GoogleLongrunningOperation>;
36436
+ /** Gets details of the specific Session. */
36437
+ get(request?: {
36438
+ /** V1 error format. */
36439
+ '$.xgafv'?: string;
36440
+ /** OAuth access token. */
36441
+ access_token?: string;
36442
+ /** Data format for response. */
36443
+ alt?: string;
36444
+ /** JSONP */
36445
+ callback?: string;
36446
+ /** Selector specifying which fields to include in a partial response. */
36447
+ fields?: string;
36448
+ /** 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. */
36449
+ key?: string;
36450
+ /** Required. The resource name of the session. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}` */
36451
+ name: string;
36452
+ /** OAuth 2.0 token for the current user. */
36453
+ oauth_token?: string;
36454
+ /** Returns response with indentations and line breaks. */
36455
+ prettyPrint?: boolean;
36456
+ /** 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. */
36457
+ quotaUser?: string;
36458
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36459
+ upload_protocol?: string;
36460
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36461
+ uploadType?: string;
36462
+ }): Request<GoogleCloudAiplatformV1Session>;
36463
+ /** Lists Sessions in a given reasoning engine. */
36464
+ list(request?: {
36465
+ /** V1 error format. */
36466
+ '$.xgafv'?: string;
36467
+ /** OAuth access token. */
36468
+ access_token?: string;
36469
+ /** Data format for response. */
36470
+ alt?: string;
36471
+ /** JSONP */
36472
+ callback?: string;
36473
+ /** Selector specifying which fields to include in a partial response. */
36474
+ fields?: string;
36475
+ /** Optional. The standard list filter. Supported fields: * `display_name` * `user_id` * `labels` Example: `display_name="abc"`, `user_id="123"`, `labels.key="value"`. */
36476
+ filter?: string;
36477
+ /** 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. */
36478
+ key?: string;
36479
+ /** OAuth 2.0 token for the current user. */
36480
+ oauth_token?: string;
36481
+ /** 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`. */
36482
+ orderBy?: string;
36483
+ /** 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. */
36484
+ pageSize?: number;
36485
+ /** Optional. The next_page_token value returned from a previous list SessionService.ListSessions call. */
36486
+ pageToken?: string;
36487
+ /** Required. The resource name of the location to list sessions from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36488
+ parent: string;
36489
+ /** Returns response with indentations and line breaks. */
36490
+ prettyPrint?: boolean;
36491
+ /** 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. */
36492
+ quotaUser?: string;
36493
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36494
+ upload_protocol?: string;
36495
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36496
+ uploadType?: string;
36497
+ }): Request<GoogleCloudAiplatformV1ListSessionsResponse>;
36498
+ /** Updates the specific Session. */
36499
+ patch(request: {
36500
+ /** V1 error format. */
36501
+ '$.xgafv'?: string;
36502
+ /** OAuth access token. */
36503
+ access_token?: string;
36504
+ /** Data format for response. */
36505
+ alt?: string;
36506
+ /** JSONP */
36507
+ callback?: string;
36508
+ /** Selector specifying which fields to include in a partial response. */
36509
+ fields?: string;
36510
+ /** 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. */
36511
+ key?: string;
36512
+ /** Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
36513
+ name: string;
36514
+ /** OAuth 2.0 token for the current user. */
36515
+ oauth_token?: string;
36516
+ /** Returns response with indentations and line breaks. */
36517
+ prettyPrint?: boolean;
36518
+ /** 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. */
36519
+ quotaUser?: string;
36520
+ /** Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated. */
36521
+ updateMask?: string;
36522
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36523
+ upload_protocol?: string;
36524
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36525
+ uploadType?: string;
36526
+ /** Request body */
36527
+ resource: GoogleCloudAiplatformV1Session;
36528
+ }): Request<GoogleCloudAiplatformV1Session>;
36529
+ patch(
36530
+ request: {
36531
+ /** V1 error format. */
36532
+ '$.xgafv'?: string;
36533
+ /** OAuth access token. */
36534
+ access_token?: string;
36535
+ /** Data format for response. */
36536
+ alt?: string;
36537
+ /** JSONP */
36538
+ callback?: string;
36539
+ /** Selector specifying which fields to include in a partial response. */
36540
+ fields?: string;
36541
+ /** 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. */
36542
+ key?: string;
36543
+ /** Identifier. The resource name of the session. Format: 'projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sessions/{session}'. */
36544
+ name: string;
36545
+ /** OAuth 2.0 token for the current user. */
36546
+ oauth_token?: string;
36547
+ /** Returns response with indentations and line breaks. */
36548
+ prettyPrint?: boolean;
36549
+ /** 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. */
36550
+ quotaUser?: string;
36551
+ /** Optional. Field mask is used to control which fields get updated. If the mask is not present, all fields will be updated. */
36552
+ updateMask?: string;
36553
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36554
+ upload_protocol?: string;
36555
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36556
+ uploadType?: string;
36557
+ },
36558
+ body: GoogleCloudAiplatformV1Session,
36559
+ ): Request<GoogleCloudAiplatformV1Session>;
36560
+ events: EventsResource;
36561
+ operations: OperationsResource;
36562
+ }
36563
+ interface ReasoningEnginesResource {
36564
+ /** Creates a reasoning engine. */
36565
+ create(request: {
36566
+ /** V1 error format. */
36567
+ '$.xgafv'?: string;
36568
+ /** OAuth access token. */
36569
+ access_token?: string;
36570
+ /** Data format for response. */
36571
+ alt?: string;
36572
+ /** JSONP */
36573
+ callback?: string;
36574
+ /** Selector specifying which fields to include in a partial response. */
36575
+ fields?: string;
36576
+ /** 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. */
36577
+ key?: string;
36578
+ /** OAuth 2.0 token for the current user. */
36579
+ oauth_token?: string;
36580
+ /** Required. The resource name of the Location to create the ReasoningEngine in. Format: `projects/{project}/locations/{location}` */
36581
+ parent: string;
36582
+ /** Returns response with indentations and line breaks. */
36583
+ prettyPrint?: boolean;
36584
+ /** 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. */
36585
+ quotaUser?: string;
36586
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36587
+ upload_protocol?: string;
36588
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36589
+ uploadType?: string;
36590
+ /** Request body */
36591
+ resource: GoogleCloudAiplatformV1ReasoningEngine;
36592
+ }): Request<GoogleLongrunningOperation>;
36593
+ create(
36594
+ request: {
36595
+ /** V1 error format. */
36596
+ '$.xgafv'?: string;
36597
+ /** OAuth access token. */
36598
+ access_token?: string;
36599
+ /** Data format for response. */
36600
+ alt?: string;
36601
+ /** JSONP */
36602
+ callback?: string;
36603
+ /** Selector specifying which fields to include in a partial response. */
36604
+ fields?: string;
36605
+ /** 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. */
36606
+ key?: string;
36607
+ /** OAuth 2.0 token for the current user. */
36608
+ oauth_token?: string;
36609
+ /** Required. The resource name of the Location to create the ReasoningEngine in. Format: `projects/{project}/locations/{location}` */
36610
+ parent: string;
36611
+ /** Returns response with indentations and line breaks. */
36612
+ prettyPrint?: boolean;
36613
+ /** 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. */
36614
+ quotaUser?: string;
36615
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36616
+ upload_protocol?: string;
36617
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36618
+ uploadType?: string;
36619
+ },
36620
+ body: GoogleCloudAiplatformV1ReasoningEngine,
36621
+ ): Request<GoogleLongrunningOperation>;
36622
+ /** Deletes a reasoning engine. */
36623
+ delete(request?: {
36624
+ /** V1 error format. */
36625
+ '$.xgafv'?: string;
36626
+ /** OAuth access token. */
36627
+ access_token?: string;
36628
+ /** Data format for response. */
36629
+ alt?: string;
36630
+ /** JSONP */
36631
+ callback?: string;
36632
+ /** Selector specifying which fields to include in a partial response. */
36633
+ fields?: string;
36634
+ /** Optional. If set to true, child resources of this reasoning engine will also be deleted. Otherwise, the request will fail with FAILED_PRECONDITION error when the reasoning engine has undeleted child resources. */
36635
+ force?: boolean;
36636
+ /** 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. */
36637
+ key?: string;
36638
+ /** Required. The name of the ReasoningEngine resource to be deleted. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36639
+ name: string;
36640
+ /** OAuth 2.0 token for the current user. */
36641
+ oauth_token?: string;
36642
+ /** Returns response with indentations and line breaks. */
36643
+ prettyPrint?: boolean;
36644
+ /** 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. */
36645
+ quotaUser?: string;
36646
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36647
+ upload_protocol?: string;
36648
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36649
+ uploadType?: string;
36650
+ }): Request<GoogleLongrunningOperation>;
36651
+ /** Gets a reasoning engine. */
36652
+ get(request?: {
36653
+ /** V1 error format. */
36654
+ '$.xgafv'?: string;
36655
+ /** OAuth access token. */
36656
+ access_token?: string;
36657
+ /** Data format for response. */
36658
+ alt?: string;
36659
+ /** JSONP */
36660
+ callback?: string;
36661
+ /** Selector specifying which fields to include in a partial response. */
36662
+ fields?: string;
36663
+ /** 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. */
36664
+ key?: string;
36665
+ /** Required. The name of the ReasoningEngine resource. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36666
+ name: string;
36667
+ /** OAuth 2.0 token for the current user. */
36668
+ oauth_token?: string;
36669
+ /** Returns response with indentations and line breaks. */
36670
+ prettyPrint?: boolean;
36671
+ /** 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. */
36672
+ quotaUser?: string;
36673
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36674
+ upload_protocol?: string;
36675
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36676
+ uploadType?: string;
36677
+ }): Request<GoogleCloudAiplatformV1ReasoningEngine>;
36678
+ /** Lists reasoning engines in a location. */
36679
+ list(request?: {
36680
+ /** V1 error format. */
36681
+ '$.xgafv'?: string;
36682
+ /** OAuth access token. */
36683
+ access_token?: string;
36684
+ /** Data format for response. */
36685
+ alt?: string;
36686
+ /** JSONP */
36687
+ callback?: string;
36688
+ /** Selector specifying which fields to include in a partial response. */
36689
+ fields?: string;
36690
+ /** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). */
36691
+ filter?: string;
36692
+ /** 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. */
36693
+ key?: string;
36694
+ /** OAuth 2.0 token for the current user. */
36695
+ oauth_token?: string;
36696
+ /** Optional. The standard list page size. */
36697
+ pageSize?: number;
36698
+ /** Optional. The standard list page token. */
36699
+ pageToken?: string;
36700
+ /** Required. The resource name of the Location to list the ReasoningEngines from. Format: `projects/{project}/locations/{location}` */
36701
+ parent: string;
36702
+ /** Returns response with indentations and line breaks. */
36703
+ prettyPrint?: boolean;
36704
+ /** 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. */
36705
+ quotaUser?: string;
36706
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36707
+ upload_protocol?: string;
36708
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36709
+ uploadType?: string;
36710
+ }): Request<GoogleCloudAiplatformV1ListReasoningEnginesResponse>;
36711
+ /** Updates a reasoning engine. */
36712
+ patch(request: {
36713
+ /** V1 error format. */
36714
+ '$.xgafv'?: string;
36715
+ /** OAuth access token. */
36716
+ access_token?: string;
36717
+ /** Data format for response. */
36718
+ alt?: string;
36719
+ /** JSONP */
36720
+ callback?: string;
36721
+ /** Selector specifying which fields to include in a partial response. */
36722
+ fields?: string;
36723
+ /** 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. */
36724
+ key?: string;
36725
+ /** Identifier. The resource name of the ReasoningEngine. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36726
+ name: string;
36727
+ /** OAuth 2.0 token for the current user. */
36728
+ oauth_token?: string;
36729
+ /** Returns response with indentations and line breaks. */
36730
+ prettyPrint?: boolean;
36731
+ /** 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. */
36732
+ quotaUser?: string;
36733
+ /** Optional. Mask specifying which fields to update. */
36734
+ updateMask?: string;
36735
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36736
+ upload_protocol?: string;
36737
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36738
+ uploadType?: string;
36739
+ /** Request body */
36740
+ resource: GoogleCloudAiplatformV1ReasoningEngine;
36741
+ }): Request<GoogleLongrunningOperation>;
36742
+ patch(
36743
+ request: {
36744
+ /** V1 error format. */
36745
+ '$.xgafv'?: string;
36746
+ /** OAuth access token. */
36747
+ access_token?: string;
36748
+ /** Data format for response. */
36749
+ alt?: string;
36750
+ /** JSONP */
36751
+ callback?: string;
36752
+ /** Selector specifying which fields to include in a partial response. */
36753
+ fields?: string;
36754
+ /** 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. */
36755
+ key?: string;
36756
+ /** Identifier. The resource name of the ReasoningEngine. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36757
+ name: string;
36758
+ /** OAuth 2.0 token for the current user. */
36759
+ oauth_token?: string;
36760
+ /** Returns response with indentations and line breaks. */
36761
+ prettyPrint?: boolean;
36762
+ /** 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. */
36763
+ quotaUser?: string;
36764
+ /** Optional. Mask specifying which fields to update. */
36765
+ updateMask?: string;
36766
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36767
+ upload_protocol?: string;
36768
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36769
+ uploadType?: string;
36770
+ },
36771
+ body: GoogleCloudAiplatformV1ReasoningEngine,
36772
+ ): Request<GoogleLongrunningOperation>;
36773
+ /** Queries using a reasoning engine. */
36774
+ query(request: {
36775
+ /** V1 error format. */
36776
+ '$.xgafv'?: string;
36777
+ /** OAuth access token. */
36778
+ access_token?: string;
36779
+ /** Data format for response. */
36780
+ alt?: string;
36781
+ /** JSONP */
36782
+ callback?: string;
36783
+ /** Selector specifying which fields to include in a partial response. */
36784
+ fields?: string;
36785
+ /** 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. */
36786
+ key?: string;
36787
+ /** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36788
+ name: string;
36789
+ /** OAuth 2.0 token for the current user. */
36790
+ oauth_token?: string;
36791
+ /** Returns response with indentations and line breaks. */
36792
+ prettyPrint?: boolean;
36793
+ /** 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. */
36794
+ quotaUser?: string;
36795
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36796
+ upload_protocol?: string;
36797
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36798
+ uploadType?: string;
36799
+ /** Request body */
36800
+ resource: GoogleCloudAiplatformV1QueryReasoningEngineRequest;
36801
+ }): Request<GoogleCloudAiplatformV1QueryReasoningEngineResponse>;
36802
+ query(
36803
+ request: {
36804
+ /** V1 error format. */
36805
+ '$.xgafv'?: string;
36806
+ /** OAuth access token. */
36807
+ access_token?: string;
36808
+ /** Data format for response. */
36809
+ alt?: string;
36810
+ /** JSONP */
36811
+ callback?: string;
36812
+ /** Selector specifying which fields to include in a partial response. */
36813
+ fields?: string;
36814
+ /** 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. */
36815
+ key?: string;
36816
+ /** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36817
+ name: string;
36818
+ /** OAuth 2.0 token for the current user. */
36819
+ oauth_token?: string;
36820
+ /** Returns response with indentations and line breaks. */
36821
+ prettyPrint?: boolean;
36822
+ /** 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. */
36823
+ quotaUser?: string;
36824
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36825
+ upload_protocol?: string;
36826
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36827
+ uploadType?: string;
36828
+ },
36829
+ body: GoogleCloudAiplatformV1QueryReasoningEngineRequest,
36830
+ ): Request<GoogleCloudAiplatformV1QueryReasoningEngineResponse>;
36831
+ /** Streams queries using a reasoning engine. */
36832
+ streamQuery(request: {
36833
+ /** V1 error format. */
36834
+ '$.xgafv'?: string;
36835
+ /** OAuth access token. */
36836
+ access_token?: string;
36837
+ /** Data format for response. */
36838
+ alt?: string;
36839
+ /** JSONP */
36840
+ callback?: string;
36841
+ /** Selector specifying which fields to include in a partial response. */
36842
+ fields?: string;
36843
+ /** 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. */
36844
+ key?: string;
36845
+ /** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36846
+ name: string;
36847
+ /** OAuth 2.0 token for the current user. */
36848
+ oauth_token?: string;
36849
+ /** Returns response with indentations and line breaks. */
36850
+ prettyPrint?: boolean;
36851
+ /** 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. */
36852
+ quotaUser?: string;
36853
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36854
+ upload_protocol?: string;
36855
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36856
+ uploadType?: string;
36857
+ /** Request body */
36858
+ resource: GoogleCloudAiplatformV1StreamQueryReasoningEngineRequest;
36859
+ }): Request<GoogleApiHttpBody>;
36860
+ streamQuery(
36861
+ request: {
36862
+ /** V1 error format. */
36863
+ '$.xgafv'?: string;
36864
+ /** OAuth access token. */
36865
+ access_token?: string;
36866
+ /** Data format for response. */
36867
+ alt?: string;
36868
+ /** JSONP */
36869
+ callback?: string;
36870
+ /** Selector specifying which fields to include in a partial response. */
36871
+ fields?: string;
36872
+ /** 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. */
36873
+ key?: string;
36874
+ /** Required. The name of the ReasoningEngine resource to use. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
36875
+ name: string;
36876
+ /** OAuth 2.0 token for the current user. */
36877
+ oauth_token?: string;
36878
+ /** Returns response with indentations and line breaks. */
36879
+ prettyPrint?: boolean;
36880
+ /** 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. */
36881
+ quotaUser?: string;
36882
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36883
+ upload_protocol?: string;
36884
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36885
+ uploadType?: string;
36886
+ },
36887
+ body: GoogleCloudAiplatformV1StreamQueryReasoningEngineRequest,
36888
+ ): Request<GoogleApiHttpBody>;
36889
+ memories: MemoriesResource;
36890
+ operations: OperationsResource;
36891
+ sessions: SessionsResource;
36892
+ }
36893
+ interface OperationsResource {
36894
+ /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
36895
+ cancel(request?: {
36896
+ /** V1 error format. */
36897
+ '$.xgafv'?: string;
36898
+ /** OAuth access token. */
36899
+ access_token?: string;
36900
+ /** Data format for response. */
36901
+ alt?: string;
36902
+ /** JSONP */
36903
+ callback?: string;
36904
+ /** Selector specifying which fields to include in a partial response. */
36905
+ fields?: string;
36906
+ /** 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. */
36907
+ key?: string;
36908
+ /** The name of the operation resource to be cancelled. */
36909
+ name: string;
36910
+ /** OAuth 2.0 token for the current user. */
36911
+ oauth_token?: string;
36912
+ /** Returns response with indentations and line breaks. */
36913
+ prettyPrint?: boolean;
36914
+ /** 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. */
36915
+ quotaUser?: string;
36916
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36917
+ upload_protocol?: string;
36918
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36919
+ uploadType?: string;
36920
+ }): Request<{}>;
36921
+ /** 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`. */
36922
+ delete(request?: {
36923
+ /** V1 error format. */
36924
+ '$.xgafv'?: string;
36925
+ /** OAuth access token. */
36926
+ access_token?: string;
36927
+ /** Data format for response. */
36928
+ alt?: string;
36929
+ /** JSONP */
36930
+ callback?: string;
36931
+ /** Selector specifying which fields to include in a partial response. */
36932
+ fields?: string;
36933
+ /** 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. */
36934
+ key?: string;
36935
+ /** The name of the operation resource to be deleted. */
36936
+ name: string;
36937
+ /** OAuth 2.0 token for the current user. */
36938
+ oauth_token?: string;
36939
+ /** Returns response with indentations and line breaks. */
36940
+ prettyPrint?: boolean;
36941
+ /** 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. */
36942
+ quotaUser?: string;
36943
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36944
+ upload_protocol?: string;
36945
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36946
+ uploadType?: string;
36947
+ }): Request<{}>;
36948
+ /** 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. */
36949
+ get(request?: {
36950
+ /** V1 error format. */
36951
+ '$.xgafv'?: string;
36952
+ /** OAuth access token. */
36953
+ access_token?: string;
36954
+ /** Data format for response. */
36955
+ alt?: string;
36956
+ /** JSONP */
36957
+ callback?: string;
36958
+ /** Selector specifying which fields to include in a partial response. */
36959
+ fields?: string;
36960
+ /** 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. */
36961
+ key?: string;
36962
+ /** The name of the operation resource. */
36963
+ name: string;
36964
+ /** OAuth 2.0 token for the current user. */
36965
+ oauth_token?: string;
36966
+ /** Returns response with indentations and line breaks. */
36967
+ prettyPrint?: boolean;
36968
+ /** 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. */
36969
+ quotaUser?: string;
36970
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36971
+ upload_protocol?: string;
36972
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36973
+ uploadType?: string;
36974
+ }): Request<GoogleLongrunningOperation>;
36975
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
36976
+ list(request?: {
36977
+ /** V1 error format. */
36978
+ '$.xgafv'?: string;
36979
+ /** OAuth access token. */
36980
+ access_token?: string;
36981
+ /** Data format for response. */
36982
+ alt?: string;
36983
+ /** JSONP */
36984
+ callback?: string;
36985
+ /** Selector specifying which fields to include in a partial response. */
36986
+ fields?: string;
36987
+ /** The standard list filter. */
36988
+ filter?: string;
36989
+ /** 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. */
36990
+ key?: string;
36991
+ /** The name of the operation's parent resource. */
36992
+ name: string;
36993
+ /** OAuth 2.0 token for the current user. */
36994
+ oauth_token?: string;
36995
+ /** The standard list page size. */
36996
+ pageSize?: number;
36997
+ /** The standard list page token. */
36998
+ pageToken?: string;
36999
+ /** Returns response with indentations and line breaks. */
37000
+ prettyPrint?: boolean;
37001
+ /** 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. */
37002
+ quotaUser?: string;
37003
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35508
37004
  returnPartialSuccess?: boolean;
35509
37005
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35510
37006
  upload_protocol?: string;
@@ -35979,7 +37475,7 @@ declare namespace gapi.client {
35979
37475
  prettyPrint?: boolean;
35980
37476
  /** 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. */
35981
37477
  quotaUser?: string;
35982
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37478
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35983
37479
  returnPartialSuccess?: boolean;
35984
37480
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35985
37481
  upload_protocol?: string;
@@ -36338,7 +37834,7 @@ declare namespace gapi.client {
36338
37834
  prettyPrint?: boolean;
36339
37835
  /** 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. */
36340
37836
  quotaUser?: string;
36341
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37837
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36342
37838
  returnPartialSuccess?: boolean;
36343
37839
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36344
37840
  upload_protocol?: string;
@@ -36485,7 +37981,7 @@ declare namespace gapi.client {
36485
37981
  prettyPrint?: boolean;
36486
37982
  /** 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. */
36487
37983
  quotaUser?: string;
36488
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37984
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36489
37985
  returnPartialSuccess?: boolean;
36490
37986
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36491
37987
  upload_protocol?: string;
@@ -37331,7 +38827,7 @@ declare namespace gapi.client {
37331
38827
  prettyPrint?: boolean;
37332
38828
  /** 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. */
37333
38829
  quotaUser?: string;
37334
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38830
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37335
38831
  returnPartialSuccess?: boolean;
37336
38832
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37337
38833
  upload_protocol?: string;
@@ -37478,7 +38974,7 @@ declare namespace gapi.client {
37478
38974
  prettyPrint?: boolean;
37479
38975
  /** 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. */
37480
38976
  quotaUser?: string;
37481
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38977
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37482
38978
  returnPartialSuccess?: boolean;
37483
38979
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37484
38980
  upload_protocol?: string;
@@ -37625,7 +39121,7 @@ declare namespace gapi.client {
37625
39121
  prettyPrint?: boolean;
37626
39122
  /** 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. */
37627
39123
  quotaUser?: string;
37628
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39124
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37629
39125
  returnPartialSuccess?: boolean;
37630
39126
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37631
39127
  upload_protocol?: string;
@@ -38778,7 +40274,7 @@ declare namespace gapi.client {
38778
40274
  prettyPrint?: boolean;
38779
40275
  /** 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. */
38780
40276
  quotaUser?: string;
38781
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40277
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38782
40278
  returnPartialSuccess?: boolean;
38783
40279
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38784
40280
  upload_protocol?: string;
@@ -39223,7 +40719,7 @@ declare namespace gapi.client {
39223
40719
  prettyPrint?: boolean;
39224
40720
  /** 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. */
39225
40721
  quotaUser?: string;
39226
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40722
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39227
40723
  returnPartialSuccess?: boolean;
39228
40724
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39229
40725
  upload_protocol?: string;
@@ -39578,7 +41074,7 @@ declare namespace gapi.client {
39578
41074
  prettyPrint?: boolean;
39579
41075
  /** 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. */
39580
41076
  quotaUser?: string;
39581
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41077
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39582
41078
  returnPartialSuccess?: boolean;
39583
41079
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39584
41080
  upload_protocol?: string;
@@ -40794,8 +42290,221 @@ declare namespace gapi.client {
40794
42290
  },
40795
42291
  body: GoogleCloudAiplatformV1GenerateContentRequest,
40796
42292
  ): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
40797
- /** Gets a Model Garden publisher model. */
40798
- get(request?: {
42293
+ /** Gets a Model Garden publisher model. */
42294
+ get(request?: {
42295
+ /** V1 error format. */
42296
+ '$.xgafv'?: string;
42297
+ /** OAuth access token. */
42298
+ access_token?: string;
42299
+ /** Data format for response. */
42300
+ alt?: string;
42301
+ /** JSONP */
42302
+ callback?: string;
42303
+ /** Selector specifying which fields to include in a partial response. */
42304
+ fields?: string;
42305
+ /** Optional. Token used to access Hugging Face gated models. */
42306
+ huggingFaceToken?: string;
42307
+ /** Optional. Boolean indicates whether the requested model is a Hugging Face model. */
42308
+ isHuggingFaceModel?: boolean;
42309
+ /** 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. */
42310
+ key?: string;
42311
+ /** Optional. The IETF BCP-47 language code representing the language in which the publisher model's text information should be written in. */
42312
+ languageCode?: string;
42313
+ /** Required. The name of the PublisherModel resource. Format: `publishers/{publisher}/models/{publisher_model}` */
42314
+ name: string;
42315
+ /** OAuth 2.0 token for the current user. */
42316
+ oauth_token?: string;
42317
+ /** Returns response with indentations and line breaks. */
42318
+ prettyPrint?: boolean;
42319
+ /** 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. */
42320
+ quotaUser?: string;
42321
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
42322
+ upload_protocol?: string;
42323
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
42324
+ uploadType?: string;
42325
+ /** Optional. PublisherModel view specifying which fields to read. */
42326
+ view?: string;
42327
+ }): Request<GoogleCloudAiplatformV1PublisherModel>;
42328
+ /** Perform an online prediction. */
42329
+ predict(request: {
42330
+ /** V1 error format. */
42331
+ '$.xgafv'?: string;
42332
+ /** OAuth access token. */
42333
+ access_token?: string;
42334
+ /** Data format for response. */
42335
+ alt?: string;
42336
+ /** JSONP */
42337
+ callback?: string;
42338
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
42339
+ endpoint: string;
42340
+ /** Selector specifying which fields to include in a partial response. */
42341
+ fields?: string;
42342
+ /** 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. */
42343
+ key?: string;
42344
+ /** OAuth 2.0 token for the current user. */
42345
+ oauth_token?: string;
42346
+ /** Returns response with indentations and line breaks. */
42347
+ prettyPrint?: boolean;
42348
+ /** 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. */
42349
+ quotaUser?: string;
42350
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
42351
+ upload_protocol?: string;
42352
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
42353
+ uploadType?: string;
42354
+ /** Request body */
42355
+ resource: GoogleCloudAiplatformV1PredictRequest;
42356
+ }): Request<GoogleCloudAiplatformV1PredictResponse>;
42357
+ predict(
42358
+ request: {
42359
+ /** V1 error format. */
42360
+ '$.xgafv'?: string;
42361
+ /** OAuth access token. */
42362
+ access_token?: string;
42363
+ /** Data format for response. */
42364
+ alt?: string;
42365
+ /** JSONP */
42366
+ callback?: string;
42367
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
42368
+ endpoint: string;
42369
+ /** Selector specifying which fields to include in a partial response. */
42370
+ fields?: string;
42371
+ /** 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. */
42372
+ key?: string;
42373
+ /** OAuth 2.0 token for the current user. */
42374
+ oauth_token?: string;
42375
+ /** Returns response with indentations and line breaks. */
42376
+ prettyPrint?: boolean;
42377
+ /** 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. */
42378
+ quotaUser?: string;
42379
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
42380
+ upload_protocol?: string;
42381
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
42382
+ uploadType?: string;
42383
+ },
42384
+ body: GoogleCloudAiplatformV1PredictRequest,
42385
+ ): Request<GoogleCloudAiplatformV1PredictResponse>;
42386
+ predictLongRunning(request: {
42387
+ /** V1 error format. */
42388
+ '$.xgafv'?: string;
42389
+ /** OAuth access token. */
42390
+ access_token?: string;
42391
+ /** Data format for response. */
42392
+ alt?: string;
42393
+ /** JSONP */
42394
+ callback?: string;
42395
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
42396
+ endpoint: string;
42397
+ /** Selector specifying which fields to include in a partial response. */
42398
+ fields?: string;
42399
+ /** 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. */
42400
+ key?: string;
42401
+ /** OAuth 2.0 token for the current user. */
42402
+ oauth_token?: string;
42403
+ /** Returns response with indentations and line breaks. */
42404
+ prettyPrint?: boolean;
42405
+ /** 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. */
42406
+ quotaUser?: string;
42407
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
42408
+ upload_protocol?: string;
42409
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
42410
+ uploadType?: string;
42411
+ /** Request body */
42412
+ resource: GoogleCloudAiplatformV1PredictLongRunningRequest;
42413
+ }): Request<GoogleLongrunningOperation>;
42414
+ predictLongRunning(
42415
+ request: {
42416
+ /** V1 error format. */
42417
+ '$.xgafv'?: string;
42418
+ /** OAuth access token. */
42419
+ access_token?: string;
42420
+ /** Data format for response. */
42421
+ alt?: string;
42422
+ /** JSONP */
42423
+ callback?: string;
42424
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
42425
+ endpoint: string;
42426
+ /** Selector specifying which fields to include in a partial response. */
42427
+ fields?: string;
42428
+ /** 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. */
42429
+ key?: string;
42430
+ /** OAuth 2.0 token for the current user. */
42431
+ oauth_token?: string;
42432
+ /** Returns response with indentations and line breaks. */
42433
+ prettyPrint?: boolean;
42434
+ /** 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. */
42435
+ quotaUser?: string;
42436
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
42437
+ upload_protocol?: string;
42438
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
42439
+ uploadType?: string;
42440
+ },
42441
+ body: GoogleCloudAiplatformV1PredictLongRunningRequest,
42442
+ ): Request<GoogleLongrunningOperation>;
42443
+ /** Generate content with multimodal inputs with streaming support. */
42444
+ streamGenerateContent(request: {
42445
+ /** V1 error format. */
42446
+ '$.xgafv'?: string;
42447
+ /** OAuth access token. */
42448
+ access_token?: string;
42449
+ /** Data format for response. */
42450
+ alt?: string;
42451
+ /** JSONP */
42452
+ callback?: string;
42453
+ /** Selector specifying which fields to include in a partial response. */
42454
+ fields?: string;
42455
+ /** 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. */
42456
+ key?: string;
42457
+ /** Required. The fully qualified name of the publisher model or tuned model endpoint to use. Publisher model format: `projects/{project}/locations/{location}/publishers/*‍/models/*` Tuned model endpoint format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
42458
+ model: string;
42459
+ /** OAuth 2.0 token for the current user. */
42460
+ oauth_token?: string;
42461
+ /** Returns response with indentations and line breaks. */
42462
+ prettyPrint?: boolean;
42463
+ /** 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. */
42464
+ quotaUser?: string;
42465
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
42466
+ upload_protocol?: string;
42467
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
42468
+ uploadType?: string;
42469
+ /** Request body */
42470
+ resource: GoogleCloudAiplatformV1GenerateContentRequest;
42471
+ }): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
42472
+ streamGenerateContent(
42473
+ request: {
42474
+ /** V1 error format. */
42475
+ '$.xgafv'?: string;
42476
+ /** OAuth access token. */
42477
+ access_token?: string;
42478
+ /** Data format for response. */
42479
+ alt?: string;
42480
+ /** JSONP */
42481
+ callback?: string;
42482
+ /** Selector specifying which fields to include in a partial response. */
42483
+ fields?: string;
42484
+ /** 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. */
42485
+ key?: string;
42486
+ /** Required. The fully qualified name of the publisher model or tuned model endpoint to use. Publisher model format: `projects/{project}/locations/{location}/publishers/*‍/models/*` Tuned model endpoint format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
42487
+ model: string;
42488
+ /** OAuth 2.0 token for the current user. */
42489
+ oauth_token?: string;
42490
+ /** Returns response with indentations and line breaks. */
42491
+ prettyPrint?: boolean;
42492
+ /** 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. */
42493
+ quotaUser?: string;
42494
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
42495
+ upload_protocol?: string;
42496
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
42497
+ uploadType?: string;
42498
+ },
42499
+ body: GoogleCloudAiplatformV1GenerateContentRequest,
42500
+ ): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
42501
+ }
42502
+ interface PublishersResource {
42503
+ models: ModelsResource;
42504
+ }
42505
+ interface OperationsResource {
42506
+ /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
42507
+ cancel(request?: {
40799
42508
  /** V1 error format. */
40800
42509
  '$.xgafv'?: string;
40801
42510
  /** OAuth access token. */
@@ -40806,15 +42515,9 @@ declare namespace gapi.client {
40806
42515
  callback?: string;
40807
42516
  /** Selector specifying which fields to include in a partial response. */
40808
42517
  fields?: string;
40809
- /** Optional. Token used to access Hugging Face gated models. */
40810
- huggingFaceToken?: string;
40811
- /** Optional. Boolean indicates whether the requested model is a Hugging Face model. */
40812
- isHuggingFaceModel?: boolean;
40813
42518
  /** 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. */
40814
42519
  key?: string;
40815
- /** Optional. The IETF BCP-47 language code representing the language in which the publisher model's text information should be written in. */
40816
- languageCode?: string;
40817
- /** Required. The name of the PublisherModel resource. Format: `publishers/{publisher}/models/{publisher_model}` */
42520
+ /** The name of the operation resource to be cancelled. */
40818
42521
  name: string;
40819
42522
  /** OAuth 2.0 token for the current user. */
40820
42523
  oauth_token?: string;
@@ -40826,11 +42529,9 @@ declare namespace gapi.client {
40826
42529
  upload_protocol?: string;
40827
42530
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
40828
42531
  uploadType?: string;
40829
- /** Optional. PublisherModel view specifying which fields to read. */
40830
- view?: string;
40831
- }): Request<GoogleCloudAiplatformV1PublisherModel>;
40832
- /** Perform an online prediction. */
40833
- predict(request: {
42532
+ }): Request<{}>;
42533
+ /** 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`. */
42534
+ delete(request?: {
40834
42535
  /** V1 error format. */
40835
42536
  '$.xgafv'?: string;
40836
42537
  /** OAuth access token. */
@@ -40839,12 +42540,12 @@ declare namespace gapi.client {
40839
42540
  alt?: string;
40840
42541
  /** JSONP */
40841
42542
  callback?: string;
40842
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
40843
- endpoint: string;
40844
42543
  /** Selector specifying which fields to include in a partial response. */
40845
42544
  fields?: string;
40846
42545
  /** 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. */
40847
42546
  key?: string;
42547
+ /** The name of the operation resource to be deleted. */
42548
+ name: string;
40848
42549
  /** OAuth 2.0 token for the current user. */
40849
42550
  oauth_token?: string;
40850
42551
  /** Returns response with indentations and line breaks. */
@@ -40855,39 +42556,9 @@ declare namespace gapi.client {
40855
42556
  upload_protocol?: string;
40856
42557
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
40857
42558
  uploadType?: string;
40858
- /** Request body */
40859
- resource: GoogleCloudAiplatformV1PredictRequest;
40860
- }): Request<GoogleCloudAiplatformV1PredictResponse>;
40861
- predict(
40862
- request: {
40863
- /** V1 error format. */
40864
- '$.xgafv'?: string;
40865
- /** OAuth access token. */
40866
- access_token?: string;
40867
- /** Data format for response. */
40868
- alt?: string;
40869
- /** JSONP */
40870
- callback?: string;
40871
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
40872
- endpoint: string;
40873
- /** Selector specifying which fields to include in a partial response. */
40874
- fields?: string;
40875
- /** 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. */
40876
- key?: string;
40877
- /** OAuth 2.0 token for the current user. */
40878
- oauth_token?: string;
40879
- /** Returns response with indentations and line breaks. */
40880
- prettyPrint?: boolean;
40881
- /** 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. */
40882
- quotaUser?: string;
40883
- /** Upload protocol for media (e.g. "raw", "multipart"). */
40884
- upload_protocol?: string;
40885
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
40886
- uploadType?: string;
40887
- },
40888
- body: GoogleCloudAiplatformV1PredictRequest,
40889
- ): Request<GoogleCloudAiplatformV1PredictResponse>;
40890
- predictLongRunning(request: {
42559
+ }): Request<{}>;
42560
+ /** 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. */
42561
+ get(request?: {
40891
42562
  /** V1 error format. */
40892
42563
  '$.xgafv'?: string;
40893
42564
  /** OAuth access token. */
@@ -40896,12 +42567,12 @@ declare namespace gapi.client {
40896
42567
  alt?: string;
40897
42568
  /** JSONP */
40898
42569
  callback?: string;
40899
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
40900
- endpoint: string;
40901
42570
  /** Selector specifying which fields to include in a partial response. */
40902
42571
  fields?: string;
40903
42572
  /** 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. */
40904
42573
  key?: string;
42574
+ /** The name of the operation resource. */
42575
+ name: string;
40905
42576
  /** OAuth 2.0 token for the current user. */
40906
42577
  oauth_token?: string;
40907
42578
  /** Returns response with indentations and line breaks. */
@@ -40912,40 +42583,9 @@ declare namespace gapi.client {
40912
42583
  upload_protocol?: string;
40913
42584
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
40914
42585
  uploadType?: string;
40915
- /** Request body */
40916
- resource: GoogleCloudAiplatformV1PredictLongRunningRequest;
40917
42586
  }): Request<GoogleLongrunningOperation>;
40918
- predictLongRunning(
40919
- request: {
40920
- /** V1 error format. */
40921
- '$.xgafv'?: string;
40922
- /** OAuth access token. */
40923
- access_token?: string;
40924
- /** Data format for response. */
40925
- alt?: string;
40926
- /** JSONP */
40927
- callback?: string;
40928
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
40929
- endpoint: string;
40930
- /** Selector specifying which fields to include in a partial response. */
40931
- fields?: string;
40932
- /** 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. */
40933
- key?: string;
40934
- /** OAuth 2.0 token for the current user. */
40935
- oauth_token?: string;
40936
- /** Returns response with indentations and line breaks. */
40937
- prettyPrint?: boolean;
40938
- /** 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. */
40939
- quotaUser?: string;
40940
- /** Upload protocol for media (e.g. "raw", "multipart"). */
40941
- upload_protocol?: string;
40942
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
40943
- uploadType?: string;
40944
- },
40945
- body: GoogleCloudAiplatformV1PredictLongRunningRequest,
40946
- ): Request<GoogleLongrunningOperation>;
40947
- /** Generate content with multimodal inputs with streaming support. */
40948
- streamGenerateContent(request: {
42587
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
42588
+ list(request?: {
40949
42589
  /** V1 error format. */
40950
42590
  '$.xgafv'?: string;
40951
42591
  /** OAuth access token. */
@@ -40956,55 +42596,58 @@ declare namespace gapi.client {
40956
42596
  callback?: string;
40957
42597
  /** Selector specifying which fields to include in a partial response. */
40958
42598
  fields?: string;
42599
+ /** The standard list filter. */
42600
+ filter?: string;
40959
42601
  /** 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. */
40960
42602
  key?: string;
40961
- /** Required. The fully qualified name of the publisher model or tuned model endpoint to use. Publisher model format: `projects/{project}/locations/{location}/publishers/*‍/models/*` Tuned model endpoint format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
40962
- model: string;
42603
+ /** The name of the operation's parent resource. */
42604
+ name: string;
40963
42605
  /** OAuth 2.0 token for the current user. */
40964
42606
  oauth_token?: string;
42607
+ /** The standard list page size. */
42608
+ pageSize?: number;
42609
+ /** The standard list page token. */
42610
+ pageToken?: string;
40965
42611
  /** Returns response with indentations and line breaks. */
40966
42612
  prettyPrint?: boolean;
40967
42613
  /** 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. */
40968
42614
  quotaUser?: string;
42615
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42616
+ returnPartialSuccess?: boolean;
40969
42617
  /** Upload protocol for media (e.g. "raw", "multipart"). */
40970
42618
  upload_protocol?: string;
40971
42619
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
40972
42620
  uploadType?: string;
40973
- /** Request body */
40974
- resource: GoogleCloudAiplatformV1GenerateContentRequest;
40975
- }): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
40976
- streamGenerateContent(
40977
- request: {
40978
- /** V1 error format. */
40979
- '$.xgafv'?: string;
40980
- /** OAuth access token. */
40981
- access_token?: string;
40982
- /** Data format for response. */
40983
- alt?: string;
40984
- /** JSONP */
40985
- callback?: string;
40986
- /** Selector specifying which fields to include in a partial response. */
40987
- fields?: string;
40988
- /** 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. */
40989
- key?: string;
40990
- /** Required. The fully qualified name of the publisher model or tuned model endpoint to use. Publisher model format: `projects/{project}/locations/{location}/publishers/*‍/models/*` Tuned model endpoint format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
40991
- model: string;
40992
- /** OAuth 2.0 token for the current user. */
40993
- oauth_token?: string;
40994
- /** Returns response with indentations and line breaks. */
40995
- prettyPrint?: boolean;
40996
- /** 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. */
40997
- quotaUser?: string;
40998
- /** Upload protocol for media (e.g. "raw", "multipart"). */
40999
- upload_protocol?: string;
41000
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
41001
- uploadType?: string;
41002
- },
41003
- body: GoogleCloudAiplatformV1GenerateContentRequest,
41004
- ): Request<GoogleCloudAiplatformV1GenerateContentResponse>;
41005
- }
41006
- interface PublishersResource {
41007
- models: ModelsResource;
42621
+ }): Request<GoogleLongrunningListOperationsResponse>;
42622
+ /** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
42623
+ wait(request?: {
42624
+ /** V1 error format. */
42625
+ '$.xgafv'?: string;
42626
+ /** OAuth access token. */
42627
+ access_token?: string;
42628
+ /** Data format for response. */
42629
+ alt?: string;
42630
+ /** JSONP */
42631
+ callback?: string;
42632
+ /** Selector specifying which fields to include in a partial response. */
42633
+ fields?: string;
42634
+ /** 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. */
42635
+ key?: string;
42636
+ /** The name of the operation resource to wait on. */
42637
+ name: string;
42638
+ /** OAuth 2.0 token for the current user. */
42639
+ oauth_token?: string;
42640
+ /** Returns response with indentations and line breaks. */
42641
+ prettyPrint?: boolean;
42642
+ /** 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. */
42643
+ quotaUser?: string;
42644
+ /** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
42645
+ timeout?: string;
42646
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
42647
+ upload_protocol?: string;
42648
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
42649
+ uploadType?: string;
42650
+ }): Request<GoogleLongrunningOperation>;
41008
42651
  }
41009
42652
  interface OperationsResource {
41010
42653
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
@@ -41116,7 +42759,7 @@ declare namespace gapi.client {
41116
42759
  prettyPrint?: boolean;
41117
42760
  /** 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. */
41118
42761
  quotaUser?: string;
41119
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42762
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41120
42763
  returnPartialSuccess?: boolean;
41121
42764
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41122
42765
  upload_protocol?: string;
@@ -41153,6 +42796,13 @@ declare namespace gapi.client {
41153
42796
  uploadType?: string;
41154
42797
  }): Request<GoogleLongrunningOperation>;
41155
42798
  }
42799
+ interface RagFilesResource {
42800
+ operations: OperationsResource;
42801
+ }
42802
+ interface RagCorporaResource {
42803
+ operations: OperationsResource;
42804
+ ragFiles: RagFilesResource;
42805
+ }
41156
42806
  interface OperationsResource {
41157
42807
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
41158
42808
  cancel(request?: {
@@ -41263,7 +42913,7 @@ declare namespace gapi.client {
41263
42913
  prettyPrint?: boolean;
41264
42914
  /** 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. */
41265
42915
  quotaUser?: string;
41266
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42916
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41267
42917
  returnPartialSuccess?: boolean;
41268
42918
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41269
42919
  upload_protocol?: string;
@@ -41300,12 +42950,8 @@ declare namespace gapi.client {
41300
42950
  uploadType?: string;
41301
42951
  }): Request<GoogleLongrunningOperation>;
41302
42952
  }
41303
- interface RagFilesResource {
41304
- operations: OperationsResource;
41305
- }
41306
- interface RagCorporaResource {
42953
+ interface RagEngineConfigResource {
41307
42954
  operations: OperationsResource;
41308
- ragFiles: RagFilesResource;
41309
42955
  }
41310
42956
  interface OperationsResource {
41311
42957
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
@@ -41417,7 +43063,7 @@ declare namespace gapi.client {
41417
43063
  prettyPrint?: boolean;
41418
43064
  /** 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. */
41419
43065
  quotaUser?: string;
41420
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43066
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41421
43067
  returnPartialSuccess?: boolean;
41422
43068
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41423
43069
  upload_protocol?: string;
@@ -41454,7 +43100,7 @@ declare namespace gapi.client {
41454
43100
  uploadType?: string;
41455
43101
  }): Request<GoogleLongrunningOperation>;
41456
43102
  }
41457
- interface RagEngineConfigResource {
43103
+ interface MemoriesResource {
41458
43104
  operations: OperationsResource;
41459
43105
  }
41460
43106
  interface OperationsResource {
@@ -41567,7 +43213,7 @@ declare namespace gapi.client {
41567
43213
  prettyPrint?: boolean;
41568
43214
  /** 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. */
41569
43215
  quotaUser?: string;
41570
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43216
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41571
43217
  returnPartialSuccess?: boolean;
41572
43218
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41573
43219
  upload_protocol?: string;
@@ -41604,6 +43250,156 @@ declare namespace gapi.client {
41604
43250
  uploadType?: string;
41605
43251
  }): Request<GoogleLongrunningOperation>;
41606
43252
  }
43253
+ interface OperationsResource {
43254
+ /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
43255
+ cancel(request?: {
43256
+ /** V1 error format. */
43257
+ '$.xgafv'?: string;
43258
+ /** OAuth access token. */
43259
+ access_token?: string;
43260
+ /** Data format for response. */
43261
+ alt?: string;
43262
+ /** JSONP */
43263
+ callback?: string;
43264
+ /** Selector specifying which fields to include in a partial response. */
43265
+ fields?: string;
43266
+ /** 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. */
43267
+ key?: string;
43268
+ /** The name of the operation resource to be cancelled. */
43269
+ name: string;
43270
+ /** OAuth 2.0 token for the current user. */
43271
+ oauth_token?: string;
43272
+ /** Returns response with indentations and line breaks. */
43273
+ prettyPrint?: boolean;
43274
+ /** 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. */
43275
+ quotaUser?: string;
43276
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
43277
+ upload_protocol?: string;
43278
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
43279
+ uploadType?: string;
43280
+ }): Request<{}>;
43281
+ /** 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`. */
43282
+ delete(request?: {
43283
+ /** V1 error format. */
43284
+ '$.xgafv'?: string;
43285
+ /** OAuth access token. */
43286
+ access_token?: string;
43287
+ /** Data format for response. */
43288
+ alt?: string;
43289
+ /** JSONP */
43290
+ callback?: string;
43291
+ /** Selector specifying which fields to include in a partial response. */
43292
+ fields?: string;
43293
+ /** 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. */
43294
+ key?: string;
43295
+ /** The name of the operation resource to be deleted. */
43296
+ name: string;
43297
+ /** OAuth 2.0 token for the current user. */
43298
+ oauth_token?: string;
43299
+ /** Returns response with indentations and line breaks. */
43300
+ prettyPrint?: boolean;
43301
+ /** 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. */
43302
+ quotaUser?: string;
43303
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
43304
+ upload_protocol?: string;
43305
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
43306
+ uploadType?: string;
43307
+ }): Request<{}>;
43308
+ /** 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. */
43309
+ get(request?: {
43310
+ /** V1 error format. */
43311
+ '$.xgafv'?: string;
43312
+ /** OAuth access token. */
43313
+ access_token?: string;
43314
+ /** Data format for response. */
43315
+ alt?: string;
43316
+ /** JSONP */
43317
+ callback?: string;
43318
+ /** Selector specifying which fields to include in a partial response. */
43319
+ fields?: string;
43320
+ /** 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. */
43321
+ key?: string;
43322
+ /** The name of the operation resource. */
43323
+ name: string;
43324
+ /** OAuth 2.0 token for the current user. */
43325
+ oauth_token?: string;
43326
+ /** Returns response with indentations and line breaks. */
43327
+ prettyPrint?: boolean;
43328
+ /** 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. */
43329
+ quotaUser?: string;
43330
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
43331
+ upload_protocol?: string;
43332
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
43333
+ uploadType?: string;
43334
+ }): Request<GoogleLongrunningOperation>;
43335
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
43336
+ list(request?: {
43337
+ /** V1 error format. */
43338
+ '$.xgafv'?: string;
43339
+ /** OAuth access token. */
43340
+ access_token?: string;
43341
+ /** Data format for response. */
43342
+ alt?: string;
43343
+ /** JSONP */
43344
+ callback?: string;
43345
+ /** Selector specifying which fields to include in a partial response. */
43346
+ fields?: string;
43347
+ /** The standard list filter. */
43348
+ filter?: string;
43349
+ /** 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. */
43350
+ key?: string;
43351
+ /** The name of the operation's parent resource. */
43352
+ name: string;
43353
+ /** OAuth 2.0 token for the current user. */
43354
+ oauth_token?: string;
43355
+ /** The standard list page size. */
43356
+ pageSize?: number;
43357
+ /** The standard list page token. */
43358
+ pageToken?: string;
43359
+ /** Returns response with indentations and line breaks. */
43360
+ prettyPrint?: boolean;
43361
+ /** 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. */
43362
+ quotaUser?: string;
43363
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43364
+ returnPartialSuccess?: boolean;
43365
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
43366
+ upload_protocol?: string;
43367
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
43368
+ uploadType?: string;
43369
+ }): Request<GoogleLongrunningListOperationsResponse>;
43370
+ /** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
43371
+ wait(request?: {
43372
+ /** V1 error format. */
43373
+ '$.xgafv'?: string;
43374
+ /** OAuth access token. */
43375
+ access_token?: string;
43376
+ /** Data format for response. */
43377
+ alt?: string;
43378
+ /** JSONP */
43379
+ callback?: string;
43380
+ /** Selector specifying which fields to include in a partial response. */
43381
+ fields?: string;
43382
+ /** 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. */
43383
+ key?: string;
43384
+ /** The name of the operation resource to wait on. */
43385
+ name: string;
43386
+ /** OAuth 2.0 token for the current user. */
43387
+ oauth_token?: string;
43388
+ /** Returns response with indentations and line breaks. */
43389
+ prettyPrint?: boolean;
43390
+ /** 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. */
43391
+ quotaUser?: string;
43392
+ /** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
43393
+ timeout?: string;
43394
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
43395
+ upload_protocol?: string;
43396
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
43397
+ uploadType?: string;
43398
+ }): Request<GoogleLongrunningOperation>;
43399
+ }
43400
+ interface SessionsResource {
43401
+ operations: OperationsResource;
43402
+ }
41607
43403
  interface ReasoningEnginesResource {
41608
43404
  /** Creates a reasoning engine. */
41609
43405
  create(request: {
@@ -41930,7 +43726,9 @@ declare namespace gapi.client {
41930
43726
  },
41931
43727
  body: GoogleCloudAiplatformV1StreamQueryReasoningEngineRequest,
41932
43728
  ): Request<GoogleApiHttpBody>;
43729
+ memories: MemoriesResource;
41933
43730
  operations: OperationsResource;
43731
+ sessions: SessionsResource;
41934
43732
  }
41935
43733
  interface OperationsResource {
41936
43734
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
@@ -42042,7 +43840,7 @@ declare namespace gapi.client {
42042
43840
  prettyPrint?: boolean;
42043
43841
  /** 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. */
42044
43842
  quotaUser?: string;
42045
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43843
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42046
43844
  returnPartialSuccess?: boolean;
42047
43845
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42048
43846
  upload_protocol?: string;
@@ -42192,7 +43990,7 @@ declare namespace gapi.client {
42192
43990
  prettyPrint?: boolean;
42193
43991
  /** 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. */
42194
43992
  quotaUser?: string;
42195
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43993
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42196
43994
  returnPartialSuccess?: boolean;
42197
43995
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42198
43996
  upload_protocol?: string;
@@ -42342,7 +44140,7 @@ declare namespace gapi.client {
42342
44140
  prettyPrint?: boolean;
42343
44141
  /** 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. */
42344
44142
  quotaUser?: string;
42345
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44143
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42346
44144
  returnPartialSuccess?: boolean;
42347
44145
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42348
44146
  upload_protocol?: string;
@@ -42489,7 +44287,7 @@ declare namespace gapi.client {
42489
44287
  prettyPrint?: boolean;
42490
44288
  /** 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. */
42491
44289
  quotaUser?: string;
42492
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44290
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42493
44291
  returnPartialSuccess?: boolean;
42494
44292
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42495
44293
  upload_protocol?: string;
@@ -42643,7 +44441,7 @@ declare namespace gapi.client {
42643
44441
  prettyPrint?: boolean;
42644
44442
  /** 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. */
42645
44443
  quotaUser?: string;
42646
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44444
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42647
44445
  returnPartialSuccess?: boolean;
42648
44446
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42649
44447
  upload_protocol?: string;
@@ -42790,7 +44588,7 @@ declare namespace gapi.client {
42790
44588
  prettyPrint?: boolean;
42791
44589
  /** 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. */
42792
44590
  quotaUser?: string;
42793
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44591
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42794
44592
  returnPartialSuccess?: boolean;
42795
44593
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42796
44594
  upload_protocol?: string;
@@ -42937,7 +44735,7 @@ declare namespace gapi.client {
42937
44735
  prettyPrint?: boolean;
42938
44736
  /** 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. */
42939
44737
  quotaUser?: string;
42940
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44738
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42941
44739
  returnPartialSuccess?: boolean;
42942
44740
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42943
44741
  upload_protocol?: string;
@@ -43095,7 +44893,7 @@ declare namespace gapi.client {
43095
44893
  prettyPrint?: boolean;
43096
44894
  /** 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. */
43097
44895
  quotaUser?: string;
43098
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44896
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43099
44897
  returnPartialSuccess?: boolean;
43100
44898
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43101
44899
  upload_protocol?: string;
@@ -43246,7 +45044,7 @@ declare namespace gapi.client {
43246
45044
  prettyPrint?: boolean;
43247
45045
  /** 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. */
43248
45046
  quotaUser?: string;
43249
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45047
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43250
45048
  returnPartialSuccess?: boolean;
43251
45049
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43252
45050
  upload_protocol?: string;
@@ -43396,7 +45194,7 @@ declare namespace gapi.client {
43396
45194
  prettyPrint?: boolean;
43397
45195
  /** 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. */
43398
45196
  quotaUser?: string;
43399
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45197
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43400
45198
  returnPartialSuccess?: boolean;
43401
45199
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43402
45200
  upload_protocol?: string;