@maxim_mazurok/gapi.client.aiplatform-v1beta1 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 (3) hide show
  1. package/index.d.ts +928 -137
  2. package/package.json +1 -1
  3. package/readme.md +15 -0
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
12
- // Revision: 20251114
12
+ // Revision: 20251204
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -577,7 +577,7 @@ declare namespace gapi.client {
577
577
  labels?: {[P in string]: string};
578
578
  /** Immutable. Parameters configuring the batch behavior. Currently only applicable when dedicated_resources are used (in other cases Vertex AI does the tuning itself). */
579
579
  manualBatchTuningParameters?: GoogleCloudAiplatformV1beta1ManualBatchTuningParameters;
580
- /** 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}` */
580
+ /** 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}` */
581
581
  model?: string;
582
582
  /** Model monitoring config will be used for analysis model behaviors, based on the input and output to the batch prediction job, as well as the provided training dataset. */
583
583
  modelMonitoringConfig?: GoogleCloudAiplatformV1beta1ModelMonitoringConfig;
@@ -609,7 +609,7 @@ declare namespace gapi.client {
609
609
  startTime?: string;
610
610
  /** Output only. The detailed state of the job. */
611
611
  state?: string;
612
- /** 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. */
612
+ /** 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. */
613
613
  unmanagedContainerModel?: GoogleCloudAiplatformV1beta1UnmanagedContainerModel;
614
614
  /** Output only. Time when the BatchPredictionJob was most recently updated. */
615
615
  updateTime?: string;
@@ -3275,6 +3275,8 @@ declare namespace gapi.client {
3275
3275
  bigtableMetadata?: GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata;
3276
3276
  /** Optional. It true, enable direct access to the Bigtable instance. */
3277
3277
  enableDirectBigtableAccess?: boolean;
3278
+ /** 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. */
3279
+ zone?: string;
3278
3280
  }
3279
3281
  interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling {
3280
3282
  /** 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%. */
@@ -3834,17 +3836,23 @@ declare namespace gapi.client {
3834
3836
  id?: string;
3835
3837
  /** Optional. The name of the function to call. Matches [FunctionDeclaration.name]. */
3836
3838
  name?: string;
3839
+ /** Optional. The partial argument value of the function call. If provided, represents the arguments/fields that are streamed incrementally. */
3840
+ partialArgs?: GoogleCloudAiplatformV1beta1PartialArg[];
3841
+ /** Optional. Whether this is the last part of the FunctionCall. If true, another partial message for the current FunctionCall is expected to follow. */
3842
+ willContinue?: boolean;
3837
3843
  }
3838
3844
  interface GoogleCloudAiplatformV1beta1FunctionCallingConfig {
3839
3845
  /** 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. */
3840
3846
  allowedFunctionNames?: string[];
3841
3847
  /** Optional. Function calling mode. */
3842
3848
  mode?: string;
3849
+ /** 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. */
3850
+ streamFunctionCallArguments?: boolean;
3843
3851
  }
3844
3852
  interface GoogleCloudAiplatformV1beta1FunctionDeclaration {
3845
3853
  /** Optional. Description and purpose of the function. Model uses it to decide how and whether to call the function. */
3846
3854
  description?: string;
3847
- /** 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. */
3855
+ /** 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. */
3848
3856
  name?: string;
3849
3857
  /** 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 */
3850
3858
  parameters?: GoogleCloudAiplatformV1beta1Schema;
@@ -4201,6 +4209,8 @@ declare namespace gapi.client {
4201
4209
  includeThoughts?: boolean;
4202
4210
  /** 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. */
4203
4211
  thinkingBudget?: number;
4212
+ /** Optional. The number of thoughts tokens that the model should generate. */
4213
+ thinkingLevel?: string;
4204
4214
  }
4205
4215
  interface GoogleCloudAiplatformV1beta1GenericOperationMetadata {
4206
4216
  /** Output only. Time when the operation was created. */
@@ -4387,6 +4397,8 @@ declare namespace gapi.client {
4387
4397
  aspectRatio?: string;
4388
4398
  /** Optional. The image output format for generated images. */
4389
4399
  imageOutputOptions?: GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions;
4400
+ /** Optional. Specifies the size of generated images. Supported values are `1K`, `2K`, `4K`. If not specified, the model will use default value `1K`. */
4401
+ imageSize?: string;
4390
4402
  /** Optional. Controls whether the model can generate people. */
4391
4403
  personGeneration?: string;
4392
4404
  }
@@ -5221,7 +5233,7 @@ declare namespace gapi.client {
5221
5233
  volumeHandle?: string;
5222
5234
  }
5223
5235
  interface GoogleCloudAiplatformV1beta1MachineSpec {
5224
- /** The number of accelerators to attach to the machine. */
5236
+ /** 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. */
5225
5237
  acceleratorCount?: number;
5226
5238
  /** Immutable. The type of accelerator(s) that may be attached to the machine as per accelerator_count. */
5227
5239
  acceleratorType?: string;
@@ -5229,6 +5241,8 @@ declare namespace gapi.client {
5229
5241
  gpuPartitionSize?: string;
5230
5242
  /** 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. */
5231
5243
  machineType?: string;
5244
+ /** Optional. Immutable. The minimum GPU driver version that this machine requires. For example, "535.104.06". If not specified, the default GPU driver version will be used by the underlying infrastructure. */
5245
+ minGpuDriverVersion?: string;
5232
5246
  /** Optional. Immutable. The number of nodes per replica for multihost GPU deployments. */
5233
5247
  multihostGpuNodeCount?: number;
5234
5248
  /** Optional. Immutable. Configuration controlling how this resource pool consumes reservation. */
@@ -6702,7 +6716,7 @@ declare namespace gapi.client {
6702
6716
  interface GoogleCloudAiplatformV1beta1OptimizePromptRequest {
6703
6717
  /** Required. The content to optimize. */
6704
6718
  content?: GoogleCloudAiplatformV1beta1Content;
6705
- /** Optional. The target model to optimize the prompt for. */
6719
+ /** Optional. The optimization strategy for prompt optimization. */
6706
6720
  optimizationTarget?: string;
6707
6721
  }
6708
6722
  interface GoogleCloudAiplatformV1beta1OptimizePromptResponse {
@@ -6834,6 +6848,8 @@ declare namespace gapi.client {
6834
6848
  functionResponse?: GoogleCloudAiplatformV1beta1FunctionResponse;
6835
6849
  /** Optional. The inline data content of the part. This can be used to include images, audio, or video in a request. */
6836
6850
  inlineData?: GoogleCloudAiplatformV1beta1Blob;
6851
+ /** per part media resolution. Media resolution for the input media. */
6852
+ mediaResolution?: GoogleCloudAiplatformV1beta1PartMediaResolution;
6837
6853
  /** Optional. The text content of the part. */
6838
6854
  text?: string;
6839
6855
  /** Optional. Indicates whether the `part` represents the model's thought process or reasoning. */
@@ -6843,6 +6859,24 @@ declare namespace gapi.client {
6843
6859
  /** Optional. Video metadata. The metadata should only be specified while the video data is presented in inline_data or file_data. */
6844
6860
  videoMetadata?: GoogleCloudAiplatformV1beta1VideoMetadata;
6845
6861
  }
6862
+ interface GoogleCloudAiplatformV1beta1PartialArg {
6863
+ /** Optional. Represents a boolean value. */
6864
+ boolValue?: boolean;
6865
+ /** Required. A JSON Path (RFC 9535) to the argument being streamed. https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data". */
6866
+ jsonPath?: string;
6867
+ /** Optional. Represents a null value. */
6868
+ nullValue?: string;
6869
+ /** Optional. Represents a double value. */
6870
+ numberValue?: number;
6871
+ /** Optional. Represents a string value. */
6872
+ stringValue?: string;
6873
+ /** 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. */
6874
+ willContinue?: boolean;
6875
+ }
6876
+ interface GoogleCloudAiplatformV1beta1PartMediaResolution {
6877
+ /** The tokenization quality used for given media. */
6878
+ level?: string;
6879
+ }
6846
6880
  interface GoogleCloudAiplatformV1beta1PartnerModelTuningSpec {
6847
6881
  /** Hyperparameters for tuning. The accepted hyper_parameters and their valid range of values will differ depending on the base model. */
6848
6882
  hyperParameters?: {[P in string]: any};
@@ -8006,6 +8040,8 @@ declare namespace gapi.client {
8006
8040
  ragEmbeddingModelConfig?: GoogleCloudAiplatformV1beta1RagEmbeddingModelConfig;
8007
8041
  /** The config for the RAG-managed Vector DB. */
8008
8042
  ragManagedDb?: GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDb;
8043
+ /** The config for the RAG-managed Vertex Vector Search 2.0. */
8044
+ ragManagedVertexVectorSearch?: GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedVertexVectorSearch;
8009
8045
  /** The config for the Vertex Feature Store. */
8010
8046
  vertexFeatureStore?: GoogleCloudAiplatformV1beta1RagVectorDbConfigVertexFeatureStore;
8011
8047
  /** The config for the Vertex Vector Search. */
@@ -8030,6 +8066,10 @@ declare namespace gapi.client {
8030
8066
  treeDepth?: number;
8031
8067
  }
8032
8068
  interface GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedDbKNN {}
8069
+ interface GoogleCloudAiplatformV1beta1RagVectorDbConfigRagManagedVertexVectorSearch {
8070
+ /** Output only. The resource name of the Vector Search 2.0 Collection that RAG Created for the corpus. Only populated after the corpus is successfully created. Format: `projects/{project}/locations/{location}/collections/{collection_id}` */
8071
+ collectionName?: string;
8072
+ }
8033
8073
  interface GoogleCloudAiplatformV1beta1RagVectorDbConfigVertexFeatureStore {
8034
8074
  /** The resource name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
8035
8075
  featureViewResourceName?: string;
@@ -8259,13 +8299,27 @@ declare namespace gapi.client {
8259
8299
  requirementsGcsUri?: string;
8260
8300
  }
8261
8301
  interface GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpec {
8302
+ /** Source code is in a Git repository managed by Developer Connect. */
8303
+ developerConnectSource?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecDeveloperConnectSource;
8262
8304
  /** Source code is provided directly in the request. */
8263
8305
  inlineSource?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecInlineSource;
8264
8306
  /** Configuration for a Python application. */
8265
8307
  pythonSpec?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecPythonSpec;
8266
8308
  }
8309
+ interface GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecDeveloperConnectConfig {
8310
+ /** Required. Directory, relative to the source root, in which to run the build. */
8311
+ dir?: string;
8312
+ /** Required. The Developer Connect Git repository link, formatted as `projects/*‍/locations/*‍/connections/*‍/gitRepositoryLink/*`. */
8313
+ gitRepositoryLink?: string;
8314
+ /** Required. The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref. */
8315
+ revision?: string;
8316
+ }
8317
+ interface GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecDeveloperConnectSource {
8318
+ /** Required. The Developer Connect configuration that defines the specific repository, revision, and directory to use as the source code root. */
8319
+ config?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecDeveloperConnectConfig;
8320
+ }
8267
8321
  interface GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecInlineSource {
8268
- /** Required. Input only. The application source code archive, provided as a compressed tarball (.tar.gz) file. */
8322
+ /** Required. Input only. The application source code archive. It must be a compressed tarball (.tar.gz) file. */
8269
8323
  sourceArchive?: string;
8270
8324
  }
8271
8325
  interface GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecPythonSpec {
@@ -8345,6 +8399,12 @@ declare namespace gapi.client {
8345
8399
  /** The IDs for the removed examples. */
8346
8400
  exampleIds?: string[];
8347
8401
  }
8402
+ interface GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig {
8403
+ /** 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. */
8404
+ mimeType?: string;
8405
+ /** Optional. The sample of the custom voice. */
8406
+ voiceSampleAudio?: string;
8407
+ }
8348
8408
  interface GoogleCloudAiplatformV1beta1ReportExecutionEventRequest {
8349
8409
  /** Required. The type of the event. */
8350
8410
  eventType?: string;
@@ -10518,7 +10578,7 @@ declare namespace gapi.client {
10518
10578
  createTime?: string;
10519
10579
  /** Optional. The display name of the session. */
10520
10580
  displayName?: string;
10521
- /** Optional. Timestamp of when this session is considered expired. This is *always* provided on output, regardless of what was sent on input. */
10581
+ /** 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. */
10522
10582
  expireTime?: string;
10523
10583
  /** 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. */
10524
10584
  labels?: {[P in string]: string};
@@ -10526,7 +10586,7 @@ declare namespace gapi.client {
10526
10586
  name?: string;
10527
10587
  /** Optional. Session specific memory which stores key conversation points. */
10528
10588
  sessionState?: {[P in string]: any};
10529
- /** Optional. Input only. The TTL for this session. */
10589
+ /** Optional. Input only. The TTL for this session. The minimum value is 24 hours. */
10530
10590
  ttl?: string;
10531
10591
  /** Output only. Timestamp when the session was updated. */
10532
10592
  updateTime?: string;
@@ -11735,7 +11795,7 @@ declare namespace gapi.client {
11735
11795
  tuningJob?: string;
11736
11796
  }
11737
11797
  interface GoogleCloudAiplatformV1beta1TuningDataStats {
11738
- /** Output only. Statistics for distillation. */
11798
+ /** Output only. Statistics for distillation prompt dataset. These statistics do not include the responses sampled from the teacher model. */
11739
11799
  distillationDataStats?: GoogleCloudAiplatformV1beta1DistillationDataStats;
11740
11800
  /** Output only. Statistics for preference optimization. */
11741
11801
  preferenceOptimizationDataStats?: GoogleCloudAiplatformV1beta1PreferenceOptimizationDataStats;
@@ -12095,6 +12155,8 @@ declare namespace gapi.client {
12095
12155
  interface GoogleCloudAiplatformV1beta1VoiceConfig {
12096
12156
  /** The configuration for a prebuilt voice. */
12097
12157
  prebuiltVoiceConfig?: GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig;
12158
+ /** Optional. The configuration for a replicated voice. This enables users to replicate a voice from an audio sample. */
12159
+ replicatedVoiceConfig?: GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig;
12098
12160
  }
12099
12161
  interface GoogleCloudAiplatformV1beta1WorkerPoolSpec {
12100
12162
  /** The custom container task. */
@@ -12197,12 +12259,527 @@ declare namespace gapi.client {
12197
12259
  /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
12198
12260
  permissions?: string[];
12199
12261
  }
12262
+ interface GoogleLearningVertexApiInteractionsV1beta1AgentInteraction {
12263
+ /** The name of the `Agent` used for generating the completion. */
12264
+ agent?: string;
12265
+ deep_research_config?: GoogleLearningVertexApiInteractionsV1beta1DeepResearchAgentConfig;
12266
+ dynamic_config?: GoogleLearningVertexApiInteractionsV1beta1DynamicAgentConfig;
12267
+ }
12268
+ interface GoogleLearningVertexApiInteractionsV1beta1AllowedTools {
12269
+ /** The mode of the tool choice. */
12270
+ mode?: string;
12271
+ /** The names of the allowed tools. */
12272
+ tools?: string[];
12273
+ }
12274
+ interface GoogleLearningVertexApiInteractionsV1beta1AudioContent {
12275
+ data?: string;
12276
+ mime_type?: string;
12277
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12278
+ type?: string;
12279
+ uri?: string;
12280
+ }
12281
+ interface GoogleLearningVertexApiInteractionsV1beta1CodeExecution {
12282
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12283
+ type?: string;
12284
+ }
12285
+ interface GoogleLearningVertexApiInteractionsV1beta1CodeExecutionCallContent {
12286
+ /** The arguments to pass to the code execution. */
12287
+ arguments?: GoogleLearningVertexApiInteractionsV1beta1CodeExecutionCallContentCodeExecutionCallArguments;
12288
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12289
+ type?: string;
12290
+ }
12291
+ interface GoogleLearningVertexApiInteractionsV1beta1CodeExecutionCallContentCodeExecutionCallArguments {
12292
+ /** The code to be executed. */
12293
+ code?: string;
12294
+ /** Programming language of the `code`. */
12295
+ language?: string;
12296
+ }
12297
+ interface GoogleLearningVertexApiInteractionsV1beta1CodeExecutionResultContent {
12298
+ /** Whether the code execution resulted in an error. */
12299
+ is_error?: boolean;
12300
+ /** The output of the code execution. */
12301
+ result?: string;
12302
+ /** A signature hash for backend validation. */
12303
+ signature?: string;
12304
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12305
+ type?: string;
12306
+ }
12307
+ interface GoogleLearningVertexApiInteractionsV1beta1ComputerUse {
12308
+ /** The environment being operated. */
12309
+ environment?: string;
12310
+ /** The list of predefined functions that are excluded from the model call. */
12311
+ excludedPredefinedFunctions?: string[];
12312
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12313
+ type?: string;
12314
+ }
12315
+ interface GoogleLearningVertexApiInteractionsV1beta1Content {
12316
+ audio?: GoogleLearningVertexApiInteractionsV1beta1AudioContent;
12317
+ document?: GoogleLearningVertexApiInteractionsV1beta1DocumentContent;
12318
+ function?: GoogleLearningVertexApiInteractionsV1beta1FunctionContent;
12319
+ functionResponse?: GoogleLearningVertexApiInteractionsV1beta1FunctionResponseContent;
12320
+ image?: GoogleLearningVertexApiInteractionsV1beta1ImageContent;
12321
+ text?: GoogleLearningVertexApiInteractionsV1beta1TextContent;
12322
+ thought?: GoogleLearningVertexApiInteractionsV1beta1ThoughtContent;
12323
+ video?: GoogleLearningVertexApiInteractionsV1beta1VideoContent;
12324
+ }
12325
+ interface GoogleLearningVertexApiInteractionsV1beta1ContentDelta {
12326
+ delta?: GoogleLearningVertexApiInteractionsV1beta1Content;
12327
+ event_type?: string;
12328
+ index?: number;
12329
+ }
12330
+ interface GoogleLearningVertexApiInteractionsV1beta1ContentList {
12331
+ /** The contents of the list. */
12332
+ contents?: GoogleLearningVertexApiInteractionsV1beta1Content[];
12333
+ }
12334
+ interface GoogleLearningVertexApiInteractionsV1beta1ContentStart {
12335
+ content?: GoogleLearningVertexApiInteractionsV1beta1Content;
12336
+ event_type?: string;
12337
+ index?: number;
12338
+ }
12339
+ interface GoogleLearningVertexApiInteractionsV1beta1ContentStop {
12340
+ event_type?: string;
12341
+ index?: number;
12342
+ }
12343
+ interface GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams {
12344
+ /** The interaction to create. */
12345
+ interaction?: GoogleLearningVertexApiInteractionsV1beta1Interaction;
12346
+ /** Input only. Whether to store the response and request for later retrieval. */
12347
+ store?: boolean;
12348
+ /** Input only. Whether the interaction will be streamed. */
12349
+ stream?: boolean;
12350
+ }
12351
+ interface GoogleLearningVertexApiInteractionsV1beta1DeepResearchAgentConfig {
12352
+ /** If true, pauses for user confirmation of the research plan before executing it. */
12353
+ explicit_planning?: boolean;
12354
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12355
+ type?: string;
12356
+ }
12357
+ interface GoogleLearningVertexApiInteractionsV1beta1DocumentContent {
12358
+ data?: string;
12359
+ mime_type?: string;
12360
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12361
+ type?: string;
12362
+ uri?: string;
12363
+ }
12364
+ interface GoogleLearningVertexApiInteractionsV1beta1DynamicAgentConfig {
12365
+ /** For agents that are not supported statically in the API definition. */
12366
+ config?: {[P in string]: any};
12367
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12368
+ type?: string;
12369
+ }
12370
+ interface GoogleLearningVertexApiInteractionsV1beta1Error {
12371
+ /** A URI that identifies the error type. */
12372
+ code?: string;
12373
+ /** A human-readable error message. */
12374
+ message?: string;
12375
+ }
12376
+ interface GoogleLearningVertexApiInteractionsV1beta1ErrorEvent {
12377
+ error?: GoogleLearningVertexApiInteractionsV1beta1Error;
12378
+ event_type?: string;
12379
+ }
12380
+ interface GoogleLearningVertexApiInteractionsV1beta1FileSearchPreview {
12381
+ /** The file search store names to search. */
12382
+ file_search_store_names?: string[];
12383
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12384
+ type?: string;
12385
+ }
12386
+ interface GoogleLearningVertexApiInteractionsV1beta1FileSearchResultContent {
12387
+ /** The results of the File Search. */
12388
+ result?: GoogleLearningVertexApiInteractionsV1beta1FileSearchResultContentFileSearchResult[];
12389
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12390
+ type?: string;
12391
+ }
12392
+ interface GoogleLearningVertexApiInteractionsV1beta1FileSearchResultContentFileSearchResult {
12393
+ /** The name of the file search store. */
12394
+ file_search_store?: string;
12395
+ /** The text of the search result. */
12396
+ text?: string;
12397
+ }
12398
+ interface GoogleLearningVertexApiInteractionsV1beta1Function {
12399
+ /** A description of the function. */
12400
+ description?: string;
12401
+ /** The name of the function. */
12402
+ name?: string;
12403
+ /** The JSON Schema for the function's parameters. */
12404
+ parameters?: any;
12405
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12406
+ type?: string;
12407
+ }
12408
+ interface GoogleLearningVertexApiInteractionsV1beta1FunctionCallContent {
12409
+ /** The arguments to pass to the function. */
12410
+ arguments?: {[P in string]: any};
12411
+ /** The name of the tool to call. */
12412
+ name?: string;
12413
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12414
+ type?: string;
12415
+ }
12416
+ interface GoogleLearningVertexApiInteractionsV1beta1FunctionContent {
12417
+ codeExecutionCall?: GoogleLearningVertexApiInteractionsV1beta1CodeExecutionCallContent;
12418
+ functionCall?: GoogleLearningVertexApiInteractionsV1beta1FunctionCallContent;
12419
+ googleSearchCall?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearchCallContent;
12420
+ /** A unique ID for this specific tool call. */
12421
+ id?: string;
12422
+ mcpServerToolCall?: GoogleLearningVertexApiInteractionsV1beta1McpServerToolCallContent;
12423
+ urlContextCall?: GoogleLearningVertexApiInteractionsV1beta1UrlContextCallContent;
12424
+ }
12425
+ interface GoogleLearningVertexApiInteractionsV1beta1FunctionResponseContent {
12426
+ codeExecutionResult?: GoogleLearningVertexApiInteractionsV1beta1CodeExecutionResultContent;
12427
+ fileSearchResult?: GoogleLearningVertexApiInteractionsV1beta1FileSearchResultContent;
12428
+ functionResult?: GoogleLearningVertexApiInteractionsV1beta1FunctionResultContent;
12429
+ googleSearchResult?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearchResultContent;
12430
+ mcpServerToolResult?: GoogleLearningVertexApiInteractionsV1beta1McpServerToolResultContent;
12431
+ /** ID to match the ID from the function call block. */
12432
+ toolUseId?: string;
12433
+ urlContextResult?: GoogleLearningVertexApiInteractionsV1beta1UrlContextResultContent;
12434
+ }
12435
+ interface GoogleLearningVertexApiInteractionsV1beta1FunctionResultContent {
12436
+ contentList?: GoogleLearningVertexApiInteractionsV1beta1TextOrImageContentList;
12437
+ /** Whether the tool call resulted in an error. */
12438
+ is_error?: boolean;
12439
+ /** The name of the tool that was called. */
12440
+ name?: string;
12441
+ stringResult?: string;
12442
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12443
+ type?: string;
12444
+ }
12445
+ interface GoogleLearningVertexApiInteractionsV1beta1GenerationConfig {
12446
+ /** The maximum number of tokens to include in the response. */
12447
+ max_output_tokens?: number;
12448
+ /** Seed used in decoding for reproducibility. */
12449
+ seed?: number;
12450
+ /** A list of character sequences that will stop output interaction. */
12451
+ stop_sequences?: string[];
12452
+ /** Controls the randomness of the output. */
12453
+ temperature?: number;
12454
+ /** The level of thought tokens that the model should generate. */
12455
+ thinking_level?: string;
12456
+ /** Whether to include thought summaries in the response. */
12457
+ thinking_summaries?: string;
12458
+ /** The tool choice for the interaction. */
12459
+ tool_choice?: GoogleLearningVertexApiInteractionsV1beta1ToolChoice;
12460
+ /** The maximum cumulative probability of tokens to consider when sampling. */
12461
+ top_p?: number;
12462
+ }
12463
+ interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearch {
12464
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12465
+ type?: string;
12466
+ }
12467
+ interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearchCallContent {
12468
+ /** The arguments to pass to Google Search. */
12469
+ arguments?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearchCallContentGoogleSearchCallArguments;
12470
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12471
+ type?: string;
12472
+ }
12473
+ interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearchCallContentGoogleSearchCallArguments {
12474
+ /** Web search queries for the following-up web search. */
12475
+ queries?: string[];
12476
+ }
12477
+ interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearchResultContent {
12478
+ /** Whether the Google Search resulted in an error. */
12479
+ is_error?: boolean;
12480
+ /** The results of the Google Search. */
12481
+ result?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearchResultContentGoogleSearchResult[];
12482
+ /** The signature of the Google Search result. */
12483
+ signature?: string;
12484
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12485
+ type?: string;
12486
+ }
12487
+ interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearchResultContentGoogleSearchResult {
12488
+ /** Web content snippet that can be embedded in a web page or an app webview. */
12489
+ rendered_content?: string;
12490
+ /** Title of the search result. */
12491
+ title?: string;
12492
+ /** URI reference of the search result. */
12493
+ url?: string;
12494
+ }
12495
+ interface GoogleLearningVertexApiInteractionsV1beta1ImageContent {
12496
+ data?: string;
12497
+ mime_type?: string;
12498
+ /** The resolution of the media. */
12499
+ resolution?: string;
12500
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12501
+ type?: string;
12502
+ uri?: string;
12503
+ }
12504
+ interface GoogleLearningVertexApiInteractionsV1beta1Interaction {
12505
+ /** Interaction for generating the completion using agents. */
12506
+ agentInteraction?: GoogleLearningVertexApiInteractionsV1beta1AgentInteraction;
12507
+ /** Whether to run the model interaction in the background. */
12508
+ background?: boolean;
12509
+ /** The content for the interaction. */
12510
+ content?: GoogleLearningVertexApiInteractionsV1beta1Content;
12511
+ /** The inputs for the interaction. */
12512
+ contentList?: GoogleLearningVertexApiInteractionsV1beta1ContentList;
12513
+ /** Output only. The time at which the response was created in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). */
12514
+ created?: string;
12515
+ /** Output only. The error message for the interaction, if any. */
12516
+ error?: GoogleLearningVertexApiInteractionsV1beta1Error;
12517
+ /** Output only. A unique identifier for the interaction completion. */
12518
+ id?: string;
12519
+ /** Interaction for generating the completion using models. */
12520
+ modelInteraction?: GoogleLearningVertexApiInteractionsV1beta1ModelInteraction;
12521
+ /** Output only. The object type of the interaction. Always set to `interaction`. */
12522
+ object?: string;
12523
+ /** Output only. Responses from the model. */
12524
+ outputs?: GoogleLearningVertexApiInteractionsV1beta1Content[];
12525
+ /** The ID of the previous interaction, if any. */
12526
+ previous_interaction_id?: string;
12527
+ /** Enforces that the generated response is a JSON object that complies with the JSON schema specified in this field. */
12528
+ response_format?: any;
12529
+ /** The mime type of the response. This is required if response_format is set. */
12530
+ response_mime_type?: string;
12531
+ /** The requested modalities of the response (TEXT, IMAGE, AUDIO). */
12532
+ response_modalities?: string[];
12533
+ /** Output only. The role of the interaction. */
12534
+ role?: string;
12535
+ /** Configuration for speech interaction. */
12536
+ speech_config?: GoogleLearningVertexApiInteractionsV1beta1SpeechConfig[];
12537
+ /** Output only. The status of the interaction. */
12538
+ status?: string;
12539
+ /** A string input for the interaction, it will be processed as a single text input. */
12540
+ stringContent?: string;
12541
+ /** System instruction for the interaction. */
12542
+ system_instruction?: string;
12543
+ /** A list of tool declarations the model may call during interaction. */
12544
+ tools?: GoogleLearningVertexApiInteractionsV1beta1Tool[];
12545
+ /** The turns for the interaction. */
12546
+ turnList?: GoogleLearningVertexApiInteractionsV1beta1TurnList;
12547
+ /** Output only. The time at which the response was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). */
12548
+ updated?: string;
12549
+ /** Output only. Statistics on the interaction request's token usage. */
12550
+ usage?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsage;
12551
+ }
12552
+ interface GoogleLearningVertexApiInteractionsV1beta1InteractionEvent {
12553
+ event_type?: string;
12554
+ interaction?: GoogleLearningVertexApiInteractionsV1beta1Interaction;
12555
+ }
12556
+ interface GoogleLearningVertexApiInteractionsV1beta1InteractionMetadata {
12557
+ /** Output only. The time at which the response was created in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). */
12558
+ created?: string;
12559
+ /** Output only. A unique identifier for the interaction completion. */
12560
+ id?: string;
12561
+ /** Output only. The status of the interaction. */
12562
+ status?: string;
12563
+ /** Output only. The time at which the response was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). */
12564
+ updated?: string;
12565
+ }
12566
+ interface GoogleLearningVertexApiInteractionsV1beta1InteractionStatusUpdate {
12567
+ event_type?: string;
12568
+ interaction_id?: string;
12569
+ status?: string;
12570
+ }
12571
+ interface GoogleLearningVertexApiInteractionsV1beta1InteractionStreamingEvent {
12572
+ /** The content block delta data, used for content.delta events. */
12573
+ contentDelta?: GoogleLearningVertexApiInteractionsV1beta1ContentDelta;
12574
+ /** The content block start data, used for content.start events. */
12575
+ contentStart?: GoogleLearningVertexApiInteractionsV1beta1ContentStart;
12576
+ /** The content block stop data, used for content.stop events. */
12577
+ contentStop?: GoogleLearningVertexApiInteractionsV1beta1ContentStop;
12578
+ /** The error event data, used for error events. */
12579
+ errorEvent?: GoogleLearningVertexApiInteractionsV1beta1ErrorEvent;
12580
+ /** The interaction data, used for interaction.start and interaction.complete events. */
12581
+ interactionEvent?: GoogleLearningVertexApiInteractionsV1beta1InteractionEvent;
12582
+ /** The interaction status data, used for interaction.status_update events. */
12583
+ interactionStatusUpdate?: GoogleLearningVertexApiInteractionsV1beta1InteractionStatusUpdate;
12584
+ /** The raw data, used for raw events. */
12585
+ rawData?: string;
12586
+ }
12587
+ interface GoogleLearningVertexApiInteractionsV1beta1InteractionUsage {
12588
+ /** A breakdown of cached token usage by modality. */
12589
+ cached_tokens_by_modality?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens[];
12590
+ /** A breakdown of input token usage by modality. */
12591
+ input_tokens_by_modality?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens[];
12592
+ /** A breakdown of output token usage by modality. */
12593
+ output_tokens_by_modality?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens[];
12594
+ /** A breakdown of tool-use token usage by modality. */
12595
+ tool_use_tokens_by_modality?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens[];
12596
+ /** Number of tokens in the cached part of the prompt (the cached content). */
12597
+ total_cached_tokens?: number;
12598
+ /** Number of tokens in the prompt (context). */
12599
+ total_input_tokens?: number;
12600
+ /** Total number of tokens across all the generated responses. */
12601
+ total_output_tokens?: number;
12602
+ /** Number of tokens of thoughts for thinking models. */
12603
+ total_reasoning_tokens?: number;
12604
+ /** Total token count for the interaction request (prompt + responses + other internal tokens). */
12605
+ total_tokens?: number;
12606
+ /** Number of tokens present in tool-use prompt(s). */
12607
+ total_tool_use_tokens?: number;
12608
+ }
12609
+ interface GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens {
12610
+ /** The modality associated with the token count. */
12611
+ modality?: string;
12612
+ /** Number of tokens for the modality. */
12613
+ tokens?: number;
12614
+ }
12615
+ interface GoogleLearningVertexApiInteractionsV1beta1ListInteractionsResponse {
12616
+ /** The `InteractionMetadata` from the specified collection. */
12617
+ interactionMetadatas?: GoogleLearningVertexApiInteractionsV1beta1InteractionMetadata[];
12618
+ /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
12619
+ next_page_token?: string;
12620
+ }
12621
+ interface GoogleLearningVertexApiInteractionsV1beta1McpServer {
12622
+ /** The allowed tools. */
12623
+ allowed_tools?: GoogleLearningVertexApiInteractionsV1beta1AllowedTools[];
12624
+ /** Optional: Fields for authentication headers, timeouts, etc., if needed. */
12625
+ headers?: {[P in string]: string};
12626
+ /** The name of the MCPServer. */
12627
+ name?: string;
12628
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12629
+ type?: string;
12630
+ /** The full URL for the MCPServer endpoint. Example: "https://api.example.com/mcp" */
12631
+ url?: string;
12632
+ }
12633
+ interface GoogleLearningVertexApiInteractionsV1beta1McpServerToolCallContent {
12634
+ /** The JSON object of arguments for the function. */
12635
+ arguments?: {[P in string]: any};
12636
+ /** The name of the tool which was called. */
12637
+ name?: string;
12638
+ /** The name of the used MCP server. */
12639
+ server_name?: string;
12640
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12641
+ type?: string;
12642
+ }
12643
+ interface GoogleLearningVertexApiInteractionsV1beta1McpServerToolResultContent {
12644
+ contentList?: GoogleLearningVertexApiInteractionsV1beta1TextOrImageContentList;
12645
+ /** Name of the tool which is called for this specific tool call. */
12646
+ name?: string;
12647
+ /** The name of the used MCP server. */
12648
+ server_name?: string;
12649
+ stringResult?: string;
12650
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12651
+ type?: string;
12652
+ }
12653
+ interface GoogleLearningVertexApiInteractionsV1beta1ModelInteraction {
12654
+ /** Input only. Configuration parameters for the model interaction. */
12655
+ generation_config?: GoogleLearningVertexApiInteractionsV1beta1GenerationConfig;
12656
+ /** The name of the `Model` used for generating the completion. */
12657
+ model?: string;
12658
+ }
12659
+ interface GoogleLearningVertexApiInteractionsV1beta1SpeechConfig {
12660
+ /** The language of the speech. */
12661
+ language?: string;
12662
+ /** The speaker's name, it should match the speaker name given in the prompt. */
12663
+ speaker?: string;
12664
+ /** The voice of the speaker. */
12665
+ voice?: string;
12666
+ }
12667
+ interface GoogleLearningVertexApiInteractionsV1beta1TextContent {
12668
+ /** Citation information for model-generated content. */
12669
+ annotations?: GoogleLearningVertexApiInteractionsV1beta1TextContentAnnotation[];
12670
+ /** The text content. */
12671
+ text?: string;
12672
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12673
+ type?: string;
12674
+ }
12675
+ interface GoogleLearningVertexApiInteractionsV1beta1TextContentAnnotation {
12676
+ /** End of the attributed segment, exclusive. */
12677
+ end_index?: number;
12678
+ /** Source attributed for a portion of the text. Could be a URL, title, or other identifier. */
12679
+ source?: string;
12680
+ /** Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes. */
12681
+ start_index?: number;
12682
+ }
12683
+ interface GoogleLearningVertexApiInteractionsV1beta1TextOrImageContent {
12684
+ image?: GoogleLearningVertexApiInteractionsV1beta1ImageContent;
12685
+ text?: string;
12686
+ }
12687
+ interface GoogleLearningVertexApiInteractionsV1beta1TextOrImageContentList {
12688
+ contents?: GoogleLearningVertexApiInteractionsV1beta1TextOrImageContent[];
12689
+ }
12690
+ interface GoogleLearningVertexApiInteractionsV1beta1ThoughtContent {
12691
+ /** Signature to match the backend source to be part of the generation. */
12692
+ signature?: string;
12693
+ /** A summary of the thought. */
12694
+ summary?: GoogleLearningVertexApiInteractionsV1beta1ThoughtSummary;
12695
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12696
+ type?: string;
12697
+ }
12698
+ interface GoogleLearningVertexApiInteractionsV1beta1ThoughtSummary {
12699
+ items?: GoogleLearningVertexApiInteractionsV1beta1ThoughtSummaryContent[];
12700
+ }
12701
+ interface GoogleLearningVertexApiInteractionsV1beta1ThoughtSummaryContent {
12702
+ image?: GoogleLearningVertexApiInteractionsV1beta1ImageContent;
12703
+ text?: GoogleLearningVertexApiInteractionsV1beta1TextContent;
12704
+ }
12705
+ interface GoogleLearningVertexApiInteractionsV1beta1Tool {
12706
+ /** A tool that can be used by the model to execute code. */
12707
+ codeExecution?: GoogleLearningVertexApiInteractionsV1beta1CodeExecution;
12708
+ /** Tool to support the model interacting directly with the computer. */
12709
+ computerUse?: GoogleLearningVertexApiInteractionsV1beta1ComputerUse;
12710
+ /** A tool that can be used by the model to search files. */
12711
+ fileSearch?: GoogleLearningVertexApiInteractionsV1beta1FileSearchPreview;
12712
+ /** A function that can be used by the model. */
12713
+ function?: GoogleLearningVertexApiInteractionsV1beta1Function;
12714
+ /** A tool that can be used by the model to search Google. */
12715
+ googleSearch?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearch;
12716
+ /** A MCPServer is a server that can be called by the model to perform actions. */
12717
+ mcpServer?: GoogleLearningVertexApiInteractionsV1beta1McpServer;
12718
+ /** A tool that can be used by the model to fetch URL context. */
12719
+ urlContext?: GoogleLearningVertexApiInteractionsV1beta1UrlContext;
12720
+ }
12721
+ interface GoogleLearningVertexApiInteractionsV1beta1ToolChoice {
12722
+ /** The allowed tools. */
12723
+ allowed_tools?: GoogleLearningVertexApiInteractionsV1beta1AllowedTools;
12724
+ /** The mode of the tool choice. */
12725
+ mode?: string;
12726
+ }
12727
+ interface GoogleLearningVertexApiInteractionsV1beta1Turn {
12728
+ /** The content of the turn. An array of Content objects. */
12729
+ contentList?: GoogleLearningVertexApiInteractionsV1beta1ContentList;
12730
+ /** The content of the turn. A single string. */
12731
+ contentString?: string;
12732
+ /** The originator of this turn. Must be user for input or model for model output. */
12733
+ role?: string;
12734
+ }
12735
+ interface GoogleLearningVertexApiInteractionsV1beta1TurnList {
12736
+ turns?: GoogleLearningVertexApiInteractionsV1beta1Turn[];
12737
+ }
12738
+ interface GoogleLearningVertexApiInteractionsV1beta1UrlContext {
12739
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12740
+ type?: string;
12741
+ }
12742
+ interface GoogleLearningVertexApiInteractionsV1beta1UrlContextCallContent {
12743
+ /** The arguments to pass to the URL context. */
12744
+ arguments?: GoogleLearningVertexApiInteractionsV1beta1UrlContextCallContentUrlContextCallArguments;
12745
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12746
+ type?: string;
12747
+ }
12748
+ interface GoogleLearningVertexApiInteractionsV1beta1UrlContextCallContentUrlContextCallArguments {
12749
+ /** The URLs to fetch. */
12750
+ urls?: string[];
12751
+ }
12752
+ interface GoogleLearningVertexApiInteractionsV1beta1UrlContextResultContent {
12753
+ /** Whether the URL context resulted in an error. */
12754
+ is_error?: boolean;
12755
+ /** The results of the URL context. */
12756
+ result?: GoogleLearningVertexApiInteractionsV1beta1UrlContextResultContentUrlContextResult[];
12757
+ /** The signature of the URL context result. */
12758
+ signature?: string;
12759
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12760
+ type?: string;
12761
+ }
12762
+ interface GoogleLearningVertexApiInteractionsV1beta1UrlContextResultContentUrlContextResult {
12763
+ /** The status of the URL retrieval. */
12764
+ status?: string;
12765
+ /** The URL that was fetched. */
12766
+ url?: string;
12767
+ }
12768
+ interface GoogleLearningVertexApiInteractionsV1beta1VideoContent {
12769
+ data?: string;
12770
+ mime_type?: string;
12771
+ /** The resolution of the media. */
12772
+ resolution?: string;
12773
+ /** Used as the OpenAPI type discriminator for the content oneof. */
12774
+ type?: string;
12775
+ uri?: string;
12776
+ }
12200
12777
  interface GoogleLongrunningListOperationsResponse {
12201
12778
  /** The standard List next-page token. */
12202
12779
  nextPageToken?: string;
12203
12780
  /** A list of operations that matches the specified filter in the request. */
12204
12781
  operations?: GoogleLongrunningOperation[];
12205
- /** 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. */
12782
+ /** 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. */
12206
12783
  unreachable?: string[];
12207
12784
  }
12208
12785
  interface GoogleLongrunningOperation {
@@ -12384,7 +12961,7 @@ declare namespace gapi.client {
12384
12961
  prettyPrint?: boolean;
12385
12962
  /** 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. */
12386
12963
  quotaUser?: string;
12387
- /** 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. */
12964
+ /** 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. */
12388
12965
  returnPartialSuccess?: boolean;
12389
12966
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12390
12967
  upload_protocol?: string;
@@ -12534,7 +13111,7 @@ declare namespace gapi.client {
12534
13111
  prettyPrint?: boolean;
12535
13112
  /** 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. */
12536
13113
  quotaUser?: string;
12537
- /** 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. */
13114
+ /** 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. */
12538
13115
  returnPartialSuccess?: boolean;
12539
13116
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12540
13117
  upload_protocol?: string;
@@ -12806,7 +13383,7 @@ declare namespace gapi.client {
12806
13383
  prettyPrint?: boolean;
12807
13384
  /** 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. */
12808
13385
  quotaUser?: string;
12809
- /** 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. */
13386
+ /** 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. */
12810
13387
  returnPartialSuccess?: boolean;
12811
13388
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12812
13389
  upload_protocol?: string;
@@ -12956,7 +13533,7 @@ declare namespace gapi.client {
12956
13533
  prettyPrint?: boolean;
12957
13534
  /** 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. */
12958
13535
  quotaUser?: string;
12959
- /** 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. */
13536
+ /** 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. */
12960
13537
  returnPartialSuccess?: boolean;
12961
13538
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12962
13539
  upload_protocol?: string;
@@ -13106,7 +13683,7 @@ declare namespace gapi.client {
13106
13683
  prettyPrint?: boolean;
13107
13684
  /** 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. */
13108
13685
  quotaUser?: string;
13109
- /** 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. */
13686
+ /** 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. */
13110
13687
  returnPartialSuccess?: boolean;
13111
13688
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13112
13689
  upload_protocol?: string;
@@ -13256,7 +13833,7 @@ declare namespace gapi.client {
13256
13833
  prettyPrint?: boolean;
13257
13834
  /** 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. */
13258
13835
  quotaUser?: string;
13259
- /** 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. */
13836
+ /** 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. */
13260
13837
  returnPartialSuccess?: boolean;
13261
13838
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13262
13839
  upload_protocol?: string;
@@ -13406,7 +13983,7 @@ declare namespace gapi.client {
13406
13983
  prettyPrint?: boolean;
13407
13984
  /** 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. */
13408
13985
  quotaUser?: string;
13409
- /** 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. */
13986
+ /** 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. */
13410
13987
  returnPartialSuccess?: boolean;
13411
13988
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13412
13989
  upload_protocol?: string;
@@ -13799,7 +14376,7 @@ declare namespace gapi.client {
13799
14376
  prettyPrint?: boolean;
13800
14377
  /** 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. */
13801
14378
  quotaUser?: string;
13802
- /** 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. */
14379
+ /** 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. */
13803
14380
  returnPartialSuccess?: boolean;
13804
14381
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13805
14382
  upload_protocol?: string;
@@ -13946,7 +14523,7 @@ declare namespace gapi.client {
13946
14523
  prettyPrint?: boolean;
13947
14524
  /** 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. */
13948
14525
  quotaUser?: string;
13949
- /** 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. */
14526
+ /** 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. */
13950
14527
  returnPartialSuccess?: boolean;
13951
14528
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13952
14529
  upload_protocol?: string;
@@ -14316,7 +14893,7 @@ declare namespace gapi.client {
14316
14893
  prettyPrint?: boolean;
14317
14894
  /** 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. */
14318
14895
  quotaUser?: string;
14319
- /** 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. */
14896
+ /** 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. */
14320
14897
  returnPartialSuccess?: boolean;
14321
14898
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14322
14899
  upload_protocol?: string;
@@ -14466,7 +15043,7 @@ declare namespace gapi.client {
14466
15043
  prettyPrint?: boolean;
14467
15044
  /** 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. */
14468
15045
  quotaUser?: string;
14469
- /** 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. */
15046
+ /** 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. */
14470
15047
  returnPartialSuccess?: boolean;
14471
15048
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14472
15049
  upload_protocol?: string;
@@ -14676,7 +15253,7 @@ declare namespace gapi.client {
14676
15253
  prettyPrint?: boolean;
14677
15254
  /** 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. */
14678
15255
  quotaUser?: string;
14679
- /** 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. */
15256
+ /** 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. */
14680
15257
  returnPartialSuccess?: boolean;
14681
15258
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14682
15259
  upload_protocol?: string;
@@ -15205,7 +15782,7 @@ declare namespace gapi.client {
15205
15782
  prettyPrint?: boolean;
15206
15783
  /** 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. */
15207
15784
  quotaUser?: string;
15208
- /** 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. */
15785
+ /** 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. */
15209
15786
  returnPartialSuccess?: boolean;
15210
15787
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15211
15788
  upload_protocol?: string;
@@ -15328,7 +15905,7 @@ declare namespace gapi.client {
15328
15905
  prettyPrint?: boolean;
15329
15906
  /** 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. */
15330
15907
  quotaUser?: string;
15331
- /** 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. */
15908
+ /** 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. */
15332
15909
  returnPartialSuccess?: boolean;
15333
15910
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15334
15911
  upload_protocol?: string;
@@ -15451,7 +16028,7 @@ declare namespace gapi.client {
15451
16028
  prettyPrint?: boolean;
15452
16029
  /** 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. */
15453
16030
  quotaUser?: string;
15454
- /** 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. */
16031
+ /** 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. */
15455
16032
  returnPartialSuccess?: boolean;
15456
16033
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15457
16034
  upload_protocol?: string;
@@ -15574,7 +16151,7 @@ declare namespace gapi.client {
15574
16151
  prettyPrint?: boolean;
15575
16152
  /** 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. */
15576
16153
  quotaUser?: string;
15577
- /** 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. */
16154
+ /** 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. */
15578
16155
  returnPartialSuccess?: boolean;
15579
16156
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15580
16157
  upload_protocol?: string;
@@ -15724,7 +16301,7 @@ declare namespace gapi.client {
15724
16301
  prettyPrint?: boolean;
15725
16302
  /** 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. */
15726
16303
  quotaUser?: string;
15727
- /** 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. */
16304
+ /** 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. */
15728
16305
  returnPartialSuccess?: boolean;
15729
16306
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15730
16307
  upload_protocol?: string;
@@ -15874,7 +16451,7 @@ declare namespace gapi.client {
15874
16451
  prettyPrint?: boolean;
15875
16452
  /** 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. */
15876
16453
  quotaUser?: string;
15877
- /** 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. */
16454
+ /** 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. */
15878
16455
  returnPartialSuccess?: boolean;
15879
16456
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15880
16457
  upload_protocol?: string;
@@ -16024,7 +16601,7 @@ declare namespace gapi.client {
16024
16601
  prettyPrint?: boolean;
16025
16602
  /** 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. */
16026
16603
  quotaUser?: string;
16027
- /** 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. */
16604
+ /** 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. */
16028
16605
  returnPartialSuccess?: boolean;
16029
16606
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16030
16607
  upload_protocol?: string;
@@ -16147,7 +16724,7 @@ declare namespace gapi.client {
16147
16724
  prettyPrint?: boolean;
16148
16725
  /** 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. */
16149
16726
  quotaUser?: string;
16150
- /** 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. */
16727
+ /** 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. */
16151
16728
  returnPartialSuccess?: boolean;
16152
16729
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16153
16730
  upload_protocol?: string;
@@ -16270,7 +16847,7 @@ declare namespace gapi.client {
16270
16847
  prettyPrint?: boolean;
16271
16848
  /** 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. */
16272
16849
  quotaUser?: string;
16273
- /** 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. */
16850
+ /** 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. */
16274
16851
  returnPartialSuccess?: boolean;
16275
16852
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16276
16853
  upload_protocol?: string;
@@ -16393,7 +16970,7 @@ declare namespace gapi.client {
16393
16970
  prettyPrint?: boolean;
16394
16971
  /** 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. */
16395
16972
  quotaUser?: string;
16396
- /** 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. */
16973
+ /** 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. */
16397
16974
  returnPartialSuccess?: boolean;
16398
16975
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16399
16976
  upload_protocol?: string;
@@ -16518,7 +17095,7 @@ declare namespace gapi.client {
16518
17095
  prettyPrint?: boolean;
16519
17096
  /** 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. */
16520
17097
  quotaUser?: string;
16521
- /** 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. */
17098
+ /** 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. */
16522
17099
  returnPartialSuccess?: boolean;
16523
17100
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16524
17101
  upload_protocol?: string;
@@ -16641,7 +17218,7 @@ declare namespace gapi.client {
16641
17218
  prettyPrint?: boolean;
16642
17219
  /** 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. */
16643
17220
  quotaUser?: string;
16644
- /** 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. */
17221
+ /** 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. */
16645
17222
  returnPartialSuccess?: boolean;
16646
17223
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16647
17224
  upload_protocol?: string;
@@ -16792,7 +17369,7 @@ declare namespace gapi.client {
16792
17369
  prettyPrint?: boolean;
16793
17370
  /** 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. */
16794
17371
  quotaUser?: string;
16795
- /** 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. */
17372
+ /** 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. */
16796
17373
  returnPartialSuccess?: boolean;
16797
17374
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16798
17375
  upload_protocol?: string;
@@ -16942,7 +17519,7 @@ declare namespace gapi.client {
16942
17519
  prettyPrint?: boolean;
16943
17520
  /** 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. */
16944
17521
  quotaUser?: string;
16945
- /** 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. */
17522
+ /** 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. */
16946
17523
  returnPartialSuccess?: boolean;
16947
17524
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16948
17525
  upload_protocol?: string;
@@ -17093,7 +17670,7 @@ declare namespace gapi.client {
17093
17670
  prettyPrint?: boolean;
17094
17671
  /** 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. */
17095
17672
  quotaUser?: string;
17096
- /** 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. */
17673
+ /** 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. */
17097
17674
  returnPartialSuccess?: boolean;
17098
17675
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17099
17676
  upload_protocol?: string;
@@ -17244,7 +17821,7 @@ declare namespace gapi.client {
17244
17821
  prettyPrint?: boolean;
17245
17822
  /** 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. */
17246
17823
  quotaUser?: string;
17247
- /** 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. */
17824
+ /** 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. */
17248
17825
  returnPartialSuccess?: boolean;
17249
17826
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17250
17827
  upload_protocol?: string;
@@ -17394,7 +17971,7 @@ declare namespace gapi.client {
17394
17971
  prettyPrint?: boolean;
17395
17972
  /** 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. */
17396
17973
  quotaUser?: string;
17397
- /** 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. */
17974
+ /** 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. */
17398
17975
  returnPartialSuccess?: boolean;
17399
17976
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17400
17977
  upload_protocol?: string;
@@ -17544,7 +18121,7 @@ declare namespace gapi.client {
17544
18121
  prettyPrint?: boolean;
17545
18122
  /** 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. */
17546
18123
  quotaUser?: string;
17547
- /** 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. */
18124
+ /** 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. */
17548
18125
  returnPartialSuccess?: boolean;
17549
18126
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17550
18127
  upload_protocol?: string;
@@ -17584,6 +18161,97 @@ declare namespace gapi.client {
17584
18161
  interface IndexesResource {
17585
18162
  operations: OperationsResource;
17586
18163
  }
18164
+ interface InteractionsResource {
18165
+ /** Fully typed proto, unary version of GetInteraction that returns Interaction proto. */
18166
+ getPoll(request?: {
18167
+ /** V1 error format. */
18168
+ '$.xgafv'?: string;
18169
+ /** OAuth access token. */
18170
+ access_token?: string;
18171
+ /** Data format for response. */
18172
+ alt?: string;
18173
+ /** JSONP */
18174
+ callback?: string;
18175
+ /** Selector specifying which fields to include in a partial response. */
18176
+ fields?: string;
18177
+ /** 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. */
18178
+ key?: string;
18179
+ /** Required. The name of the interaction to retrieve. Format: interactions/{interaction} */
18180
+ name: string;
18181
+ /** OAuth 2.0 token for the current user. */
18182
+ oauth_token?: string;
18183
+ /** Returns response with indentations and line breaks. */
18184
+ prettyPrint?: boolean;
18185
+ /** 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. */
18186
+ quotaUser?: string;
18187
+ /** Optional. If true, streams the interaction events as Server-Sent Events. */
18188
+ stream?: boolean;
18189
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
18190
+ upload_protocol?: string;
18191
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18192
+ uploadType?: string;
18193
+ }): Request<GoogleLearningVertexApiInteractionsV1beta1Interaction>;
18194
+ /** Fully typed proto, streaming version of GetInteraction that returns Interaction proto. */
18195
+ getStream(request?: {
18196
+ /** V1 error format. */
18197
+ '$.xgafv'?: string;
18198
+ /** OAuth access token. */
18199
+ access_token?: string;
18200
+ /** Data format for response. */
18201
+ alt?: string;
18202
+ /** JSONP */
18203
+ callback?: string;
18204
+ /** Selector specifying which fields to include in a partial response. */
18205
+ fields?: string;
18206
+ /** 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. */
18207
+ key?: string;
18208
+ /** Required. The name of the interaction to retrieve. Format: interactions/{interaction} */
18209
+ name: string;
18210
+ /** OAuth 2.0 token for the current user. */
18211
+ oauth_token?: string;
18212
+ /** Returns response with indentations and line breaks. */
18213
+ prettyPrint?: boolean;
18214
+ /** 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. */
18215
+ quotaUser?: string;
18216
+ /** Optional. If true, streams the interaction events as Server-Sent Events. */
18217
+ stream?: boolean;
18218
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
18219
+ upload_protocol?: string;
18220
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18221
+ uploadType?: string;
18222
+ }): Request<GoogleLearningVertexApiInteractionsV1beta1InteractionStreamingEvent>;
18223
+ }
18224
+ interface InteractionsInternalResource {
18225
+ /** Internal version of ListInteractions that returns a list of Interactions. */
18226
+ list(request?: {
18227
+ /** V1 error format. */
18228
+ '$.xgafv'?: string;
18229
+ /** OAuth access token. */
18230
+ access_token?: string;
18231
+ /** Data format for response. */
18232
+ alt?: string;
18233
+ /** JSONP */
18234
+ callback?: string;
18235
+ /** Selector specifying which fields to include in a partial response. */
18236
+ fields?: string;
18237
+ /** 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. */
18238
+ key?: string;
18239
+ /** OAuth 2.0 token for the current user. */
18240
+ oauth_token?: string;
18241
+ /** Optional. The maximum number of `Interactions` to return (per page). The service may return fewer `Interactions`. If unspecified, at most 10 `Interactions` will be returned. The maximum size limit is 20 `Interactions` per page. */
18242
+ page_size?: number;
18243
+ /** Optional. A page token, received from a previous `ListInteractions` call. Provide the `next_page_token` returned in the response as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListInteractions` must match the call that provided the page token. */
18244
+ page_token?: string;
18245
+ /** Returns response with indentations and line breaks. */
18246
+ prettyPrint?: boolean;
18247
+ /** 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. */
18248
+ quotaUser?: string;
18249
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
18250
+ upload_protocol?: string;
18251
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18252
+ uploadType?: string;
18253
+ }): Request<GoogleLearningVertexApiInteractionsV1beta1ListInteractionsResponse>;
18254
+ }
17587
18255
  interface MediaResource {
17588
18256
  /** Upload a file into a RagCorpus. */
17589
18257
  upload(request: {
@@ -17754,7 +18422,7 @@ declare namespace gapi.client {
17754
18422
  prettyPrint?: boolean;
17755
18423
  /** 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. */
17756
18424
  quotaUser?: string;
17757
- /** 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. */
18425
+ /** 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. */
17758
18426
  returnPartialSuccess?: boolean;
17759
18427
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17760
18428
  upload_protocol?: string;
@@ -17904,7 +18572,7 @@ declare namespace gapi.client {
17904
18572
  prettyPrint?: boolean;
17905
18573
  /** 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. */
17906
18574
  quotaUser?: string;
17907
- /** 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. */
18575
+ /** 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. */
17908
18576
  returnPartialSuccess?: boolean;
17909
18577
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17910
18578
  upload_protocol?: string;
@@ -18054,7 +18722,7 @@ declare namespace gapi.client {
18054
18722
  prettyPrint?: boolean;
18055
18723
  /** 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. */
18056
18724
  quotaUser?: string;
18057
- /** 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. */
18725
+ /** 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. */
18058
18726
  returnPartialSuccess?: boolean;
18059
18727
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18060
18728
  upload_protocol?: string;
@@ -18204,7 +18872,7 @@ declare namespace gapi.client {
18204
18872
  prettyPrint?: boolean;
18205
18873
  /** 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. */
18206
18874
  quotaUser?: string;
18207
- /** 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. */
18875
+ /** 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. */
18208
18876
  returnPartialSuccess?: boolean;
18209
18877
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18210
18878
  upload_protocol?: string;
@@ -18357,7 +19025,7 @@ declare namespace gapi.client {
18357
19025
  prettyPrint?: boolean;
18358
19026
  /** 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. */
18359
19027
  quotaUser?: string;
18360
- /** 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. */
19028
+ /** 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. */
18361
19029
  returnPartialSuccess?: boolean;
18362
19030
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18363
19031
  upload_protocol?: string;
@@ -18507,7 +19175,7 @@ declare namespace gapi.client {
18507
19175
  prettyPrint?: boolean;
18508
19176
  /** 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. */
18509
19177
  quotaUser?: string;
18510
- /** 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. */
19178
+ /** 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. */
18511
19179
  returnPartialSuccess?: boolean;
18512
19180
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18513
19181
  upload_protocol?: string;
@@ -18657,7 +19325,7 @@ declare namespace gapi.client {
18657
19325
  prettyPrint?: boolean;
18658
19326
  /** 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. */
18659
19327
  quotaUser?: string;
18660
- /** 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. */
19328
+ /** 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. */
18661
19329
  returnPartialSuccess?: boolean;
18662
19330
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18663
19331
  upload_protocol?: string;
@@ -18807,7 +19475,7 @@ declare namespace gapi.client {
18807
19475
  prettyPrint?: boolean;
18808
19476
  /** 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. */
18809
19477
  quotaUser?: string;
18810
- /** 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. */
19478
+ /** 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. */
18811
19479
  returnPartialSuccess?: boolean;
18812
19480
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18813
19481
  upload_protocol?: string;
@@ -18957,7 +19625,7 @@ declare namespace gapi.client {
18957
19625
  prettyPrint?: boolean;
18958
19626
  /** 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. */
18959
19627
  quotaUser?: string;
18960
- /** 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. */
19628
+ /** 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. */
18961
19629
  returnPartialSuccess?: boolean;
18962
19630
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18963
19631
  upload_protocol?: string;
@@ -19108,7 +19776,7 @@ declare namespace gapi.client {
19108
19776
  prettyPrint?: boolean;
19109
19777
  /** 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. */
19110
19778
  quotaUser?: string;
19111
- /** 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. */
19779
+ /** 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. */
19112
19780
  returnPartialSuccess?: boolean;
19113
19781
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19114
19782
  upload_protocol?: string;
@@ -19258,7 +19926,7 @@ declare namespace gapi.client {
19258
19926
  prettyPrint?: boolean;
19259
19927
  /** 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. */
19260
19928
  quotaUser?: string;
19261
- /** 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. */
19929
+ /** 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. */
19262
19930
  returnPartialSuccess?: boolean;
19263
19931
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19264
19932
  upload_protocol?: string;
@@ -19408,7 +20076,7 @@ declare namespace gapi.client {
19408
20076
  prettyPrint?: boolean;
19409
20077
  /** 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. */
19410
20078
  quotaUser?: string;
19411
- /** 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. */
20079
+ /** 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. */
19412
20080
  returnPartialSuccess?: boolean;
19413
20081
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19414
20082
  upload_protocol?: string;
@@ -19558,7 +20226,7 @@ declare namespace gapi.client {
19558
20226
  prettyPrint?: boolean;
19559
20227
  /** 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. */
19560
20228
  quotaUser?: string;
19561
- /** 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. */
20229
+ /** 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. */
19562
20230
  returnPartialSuccess?: boolean;
19563
20231
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19564
20232
  upload_protocol?: string;
@@ -19705,7 +20373,7 @@ declare namespace gapi.client {
19705
20373
  prettyPrint?: boolean;
19706
20374
  /** 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. */
19707
20375
  quotaUser?: string;
19708
- /** 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. */
20376
+ /** 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. */
19709
20377
  returnPartialSuccess?: boolean;
19710
20378
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19711
20379
  upload_protocol?: string;
@@ -19855,7 +20523,7 @@ declare namespace gapi.client {
19855
20523
  prettyPrint?: boolean;
19856
20524
  /** 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. */
19857
20525
  quotaUser?: string;
19858
- /** 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. */
20526
+ /** 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. */
19859
20527
  returnPartialSuccess?: boolean;
19860
20528
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19861
20529
  upload_protocol?: string;
@@ -20042,7 +20710,7 @@ declare namespace gapi.client {
20042
20710
  prettyPrint?: boolean;
20043
20711
  /** 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. */
20044
20712
  quotaUser?: string;
20045
- /** 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. */
20713
+ /** 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. */
20046
20714
  returnPartialSuccess?: boolean;
20047
20715
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20048
20716
  upload_protocol?: string;
@@ -20192,7 +20860,7 @@ declare namespace gapi.client {
20192
20860
  prettyPrint?: boolean;
20193
20861
  /** 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. */
20194
20862
  quotaUser?: string;
20195
- /** 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. */
20863
+ /** 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. */
20196
20864
  returnPartialSuccess?: boolean;
20197
20865
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20198
20866
  upload_protocol?: string;
@@ -20756,7 +21424,7 @@ declare namespace gapi.client {
20756
21424
  prettyPrint?: boolean;
20757
21425
  /** 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. */
20758
21426
  quotaUser?: string;
20759
- /** 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. */
21427
+ /** 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. */
20760
21428
  returnPartialSuccess?: boolean;
20761
21429
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20762
21430
  upload_protocol?: string;
@@ -21111,7 +21779,7 @@ declare namespace gapi.client {
21111
21779
  prettyPrint?: boolean;
21112
21780
  /** 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. */
21113
21781
  quotaUser?: string;
21114
- /** 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. */
21782
+ /** 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. */
21115
21783
  returnPartialSuccess?: boolean;
21116
21784
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21117
21785
  upload_protocol?: string;
@@ -21468,7 +22136,7 @@ declare namespace gapi.client {
21468
22136
  prettyPrint?: boolean;
21469
22137
  /** 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. */
21470
22138
  quotaUser?: string;
21471
- /** 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. */
22139
+ /** 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. */
21472
22140
  returnPartialSuccess?: boolean;
21473
22141
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21474
22142
  upload_protocol?: string;
@@ -21647,7 +22315,7 @@ declare namespace gapi.client {
21647
22315
  prettyPrint?: boolean;
21648
22316
  /** 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. */
21649
22317
  quotaUser?: string;
21650
- /** 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. */
22318
+ /** 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. */
21651
22319
  returnPartialSuccess?: boolean;
21652
22320
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21653
22321
  upload_protocol?: string;
@@ -21834,7 +22502,7 @@ declare namespace gapi.client {
21834
22502
  prettyPrint?: boolean;
21835
22503
  /** 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. */
21836
22504
  quotaUser?: string;
21837
- /** 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. */
22505
+ /** 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. */
21838
22506
  returnPartialSuccess?: boolean;
21839
22507
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21840
22508
  upload_protocol?: string;
@@ -22264,7 +22932,7 @@ declare namespace gapi.client {
22264
22932
  prettyPrint?: boolean;
22265
22933
  /** 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. */
22266
22934
  quotaUser?: string;
22267
- /** 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. */
22935
+ /** 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. */
22268
22936
  returnPartialSuccess?: boolean;
22269
22937
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22270
22938
  upload_protocol?: string;
@@ -22411,7 +23079,7 @@ declare namespace gapi.client {
22411
23079
  prettyPrint?: boolean;
22412
23080
  /** 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. */
22413
23081
  quotaUser?: string;
22414
- /** 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. */
23082
+ /** 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. */
22415
23083
  returnPartialSuccess?: boolean;
22416
23084
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22417
23085
  upload_protocol?: string;
@@ -23189,7 +23857,7 @@ declare namespace gapi.client {
23189
23857
  prettyPrint?: boolean;
23190
23858
  /** 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. */
23191
23859
  quotaUser?: string;
23192
- /** 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. */
23860
+ /** 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. */
23193
23861
  returnPartialSuccess?: boolean;
23194
23862
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23195
23863
  upload_protocol?: string;
@@ -23575,7 +24243,7 @@ declare namespace gapi.client {
23575
24243
  prettyPrint?: boolean;
23576
24244
  /** 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. */
23577
24245
  quotaUser?: string;
23578
- /** 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. */
24246
+ /** 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. */
23579
24247
  returnPartialSuccess?: boolean;
23580
24248
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23581
24249
  upload_protocol?: string;
@@ -24047,7 +24715,7 @@ declare namespace gapi.client {
24047
24715
  prettyPrint?: boolean;
24048
24716
  /** 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. */
24049
24717
  quotaUser?: string;
24050
- /** 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. */
24718
+ /** 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. */
24051
24719
  returnPartialSuccess?: boolean;
24052
24720
  /** Upload protocol for media (e.g. "raw", "multipart"). */
24053
24721
  upload_protocol?: string;
@@ -25463,7 +26131,7 @@ declare namespace gapi.client {
25463
26131
  prettyPrint?: boolean;
25464
26132
  /** 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. */
25465
26133
  quotaUser?: string;
25466
- /** 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. */
26134
+ /** 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. */
25467
26135
  returnPartialSuccess?: boolean;
25468
26136
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25469
26137
  upload_protocol?: string;
@@ -25733,7 +26401,7 @@ declare namespace gapi.client {
25733
26401
  prettyPrint?: boolean;
25734
26402
  /** 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. */
25735
26403
  quotaUser?: string;
25736
- /** 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. */
26404
+ /** 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. */
25737
26405
  returnPartialSuccess?: boolean;
25738
26406
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25739
26407
  upload_protocol?: string;
@@ -26061,7 +26729,7 @@ declare namespace gapi.client {
26061
26729
  prettyPrint?: boolean;
26062
26730
  /** 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. */
26063
26731
  quotaUser?: string;
26064
- /** 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. */
26732
+ /** 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. */
26065
26733
  returnPartialSuccess?: boolean;
26066
26734
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26067
26735
  upload_protocol?: string;
@@ -26393,7 +27061,7 @@ declare namespace gapi.client {
26393
27061
  prettyPrint?: boolean;
26394
27062
  /** 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. */
26395
27063
  quotaUser?: string;
26396
- /** 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. */
27064
+ /** 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. */
26397
27065
  returnPartialSuccess?: boolean;
26398
27066
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26399
27067
  upload_protocol?: string;
@@ -26543,7 +27211,7 @@ declare namespace gapi.client {
26543
27211
  prettyPrint?: boolean;
26544
27212
  /** 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. */
26545
27213
  quotaUser?: string;
26546
- /** 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. */
27214
+ /** 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. */
26547
27215
  returnPartialSuccess?: boolean;
26548
27216
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26549
27217
  upload_protocol?: string;
@@ -27113,7 +27781,7 @@ declare namespace gapi.client {
27113
27781
  prettyPrint?: boolean;
27114
27782
  /** 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. */
27115
27783
  quotaUser?: string;
27116
- /** 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. */
27784
+ /** 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. */
27117
27785
  returnPartialSuccess?: boolean;
27118
27786
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27119
27787
  upload_protocol?: string;
@@ -27263,7 +27931,7 @@ declare namespace gapi.client {
27263
27931
  prettyPrint?: boolean;
27264
27932
  /** 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. */
27265
27933
  quotaUser?: string;
27266
- /** 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. */
27934
+ /** 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. */
27267
27935
  returnPartialSuccess?: boolean;
27268
27936
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27269
27937
  upload_protocol?: string;
@@ -27837,7 +28505,7 @@ declare namespace gapi.client {
27837
28505
  prettyPrint?: boolean;
27838
28506
  /** 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. */
27839
28507
  quotaUser?: string;
27840
- /** 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. */
28508
+ /** 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. */
27841
28509
  returnPartialSuccess?: boolean;
27842
28510
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27843
28511
  upload_protocol?: string;
@@ -28174,7 +28842,7 @@ declare namespace gapi.client {
28174
28842
  prettyPrint?: boolean;
28175
28843
  /** 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. */
28176
28844
  quotaUser?: string;
28177
- /** 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. */
28845
+ /** 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. */
28178
28846
  returnPartialSuccess?: boolean;
28179
28847
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28180
28848
  upload_protocol?: string;
@@ -28578,7 +29246,7 @@ declare namespace gapi.client {
28578
29246
  prettyPrint?: boolean;
28579
29247
  /** 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. */
28580
29248
  quotaUser?: string;
28581
- /** 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. */
29249
+ /** 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. */
28582
29250
  returnPartialSuccess?: boolean;
28583
29251
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28584
29252
  upload_protocol?: string;
@@ -29070,7 +29738,7 @@ declare namespace gapi.client {
29070
29738
  prettyPrint?: boolean;
29071
29739
  /** 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. */
29072
29740
  quotaUser?: string;
29073
- /** 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. */
29741
+ /** 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. */
29074
29742
  returnPartialSuccess?: boolean;
29075
29743
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29076
29744
  upload_protocol?: string;
@@ -29847,7 +30515,7 @@ declare namespace gapi.client {
29847
30515
  prettyPrint?: boolean;
29848
30516
  /** 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. */
29849
30517
  quotaUser?: string;
29850
- /** 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. */
30518
+ /** 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. */
29851
30519
  returnPartialSuccess?: boolean;
29852
30520
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29853
30521
  upload_protocol?: string;
@@ -30301,7 +30969,7 @@ declare namespace gapi.client {
30301
30969
  prettyPrint?: boolean;
30302
30970
  /** 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. */
30303
30971
  quotaUser?: string;
30304
- /** 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. */
30972
+ /** 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. */
30305
30973
  returnPartialSuccess?: boolean;
30306
30974
  /** Upload protocol for media (e.g. "raw", "multipart"). */
30307
30975
  upload_protocol?: string;
@@ -30732,7 +31400,7 @@ declare namespace gapi.client {
30732
31400
  prettyPrint?: boolean;
30733
31401
  /** 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. */
30734
31402
  quotaUser?: string;
30735
- /** 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. */
31403
+ /** 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. */
30736
31404
  returnPartialSuccess?: boolean;
30737
31405
  /** Upload protocol for media (e.g. "raw", "multipart"). */
30738
31406
  upload_protocol?: string;
@@ -31536,7 +32204,7 @@ declare namespace gapi.client {
31536
32204
  prettyPrint?: boolean;
31537
32205
  /** 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. */
31538
32206
  quotaUser?: string;
31539
- /** 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. */
32207
+ /** 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. */
31540
32208
  returnPartialSuccess?: boolean;
31541
32209
  /** Upload protocol for media (e.g. "raw", "multipart"). */
31542
32210
  upload_protocol?: string;
@@ -32085,7 +32753,7 @@ declare namespace gapi.client {
32085
32753
  prettyPrint?: boolean;
32086
32754
  /** 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. */
32087
32755
  quotaUser?: string;
32088
- /** 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. */
32756
+ /** 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. */
32089
32757
  returnPartialSuccess?: boolean;
32090
32758
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32091
32759
  upload_protocol?: string;
@@ -32440,7 +33108,7 @@ declare namespace gapi.client {
32440
33108
  prettyPrint?: boolean;
32441
33109
  /** 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. */
32442
33110
  quotaUser?: string;
32443
- /** 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. */
33111
+ /** 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. */
32444
33112
  returnPartialSuccess?: boolean;
32445
33113
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32446
33114
  upload_protocol?: string;
@@ -33089,7 +33757,7 @@ declare namespace gapi.client {
33089
33757
  prettyPrint?: boolean;
33090
33758
  /** 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. */
33091
33759
  quotaUser?: string;
33092
- /** 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. */
33760
+ /** 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. */
33093
33761
  returnPartialSuccess?: boolean;
33094
33762
  /** Upload protocol for media (e.g. "raw", "multipart"). */
33095
33763
  upload_protocol?: string;
@@ -33512,6 +34180,124 @@ declare namespace gapi.client {
33512
34180
  ): Request<{}>;
33513
34181
  operations: OperationsResource;
33514
34182
  }
34183
+ interface InteractionsResource {
34184
+ /** Creates an interaction. */
34185
+ create(request: {
34186
+ /** V1 error format. */
34187
+ '$.xgafv'?: string;
34188
+ /** OAuth access token. */
34189
+ access_token?: string;
34190
+ /** Data format for response. */
34191
+ alt?: string;
34192
+ /** JSONP */
34193
+ callback?: string;
34194
+ /** Selector specifying which fields to include in a partial response. */
34195
+ fields?: string;
34196
+ /** 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. */
34197
+ key?: string;
34198
+ locationsId: string;
34199
+ /** OAuth 2.0 token for the current user. */
34200
+ oauth_token?: string;
34201
+ /** Returns response with indentations and line breaks. */
34202
+ prettyPrint?: boolean;
34203
+ projectsId: string;
34204
+ /** 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. */
34205
+ quotaUser?: string;
34206
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
34207
+ upload_protocol?: string;
34208
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34209
+ uploadType?: string;
34210
+ /** Request body */
34211
+ resource: GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams;
34212
+ }): Request<GoogleLearningVertexApiInteractionsV1beta1Interaction>;
34213
+ create(
34214
+ request: {
34215
+ /** V1 error format. */
34216
+ '$.xgafv'?: string;
34217
+ /** OAuth access token. */
34218
+ access_token?: string;
34219
+ /** Data format for response. */
34220
+ alt?: string;
34221
+ /** JSONP */
34222
+ callback?: string;
34223
+ /** Selector specifying which fields to include in a partial response. */
34224
+ fields?: string;
34225
+ /** 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. */
34226
+ key?: string;
34227
+ locationsId: string;
34228
+ /** OAuth 2.0 token for the current user. */
34229
+ oauth_token?: string;
34230
+ /** Returns response with indentations and line breaks. */
34231
+ prettyPrint?: boolean;
34232
+ projectsId: string;
34233
+ /** 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. */
34234
+ quotaUser?: string;
34235
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
34236
+ upload_protocol?: string;
34237
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34238
+ uploadType?: string;
34239
+ },
34240
+ body: GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams,
34241
+ ): Request<GoogleLearningVertexApiInteractionsV1beta1Interaction>;
34242
+ /** Creates an interaction and streams the response. */
34243
+ createStream(request: {
34244
+ /** V1 error format. */
34245
+ '$.xgafv'?: string;
34246
+ /** OAuth access token. */
34247
+ access_token?: string;
34248
+ /** Data format for response. */
34249
+ alt?: string;
34250
+ /** JSONP */
34251
+ callback?: string;
34252
+ /** Selector specifying which fields to include in a partial response. */
34253
+ fields?: string;
34254
+ /** 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. */
34255
+ key?: string;
34256
+ locationsId: string;
34257
+ /** OAuth 2.0 token for the current user. */
34258
+ oauth_token?: string;
34259
+ /** Returns response with indentations and line breaks. */
34260
+ prettyPrint?: boolean;
34261
+ projectsId: string;
34262
+ /** 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. */
34263
+ quotaUser?: string;
34264
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
34265
+ upload_protocol?: string;
34266
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34267
+ uploadType?: string;
34268
+ /** Request body */
34269
+ resource: GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams;
34270
+ }): Request<GoogleLearningVertexApiInteractionsV1beta1InteractionStreamingEvent>;
34271
+ createStream(
34272
+ request: {
34273
+ /** V1 error format. */
34274
+ '$.xgafv'?: string;
34275
+ /** OAuth access token. */
34276
+ access_token?: string;
34277
+ /** Data format for response. */
34278
+ alt?: string;
34279
+ /** JSONP */
34280
+ callback?: string;
34281
+ /** Selector specifying which fields to include in a partial response. */
34282
+ fields?: string;
34283
+ /** 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. */
34284
+ key?: string;
34285
+ locationsId: string;
34286
+ /** OAuth 2.0 token for the current user. */
34287
+ oauth_token?: string;
34288
+ /** Returns response with indentations and line breaks. */
34289
+ prettyPrint?: boolean;
34290
+ projectsId: string;
34291
+ /** 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. */
34292
+ quotaUser?: string;
34293
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
34294
+ upload_protocol?: string;
34295
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34296
+ uploadType?: string;
34297
+ },
34298
+ body: GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams,
34299
+ ): Request<GoogleLearningVertexApiInteractionsV1beta1InteractionStreamingEvent>;
34300
+ }
33515
34301
  interface OperationsResource {
33516
34302
  /** 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`. */
33517
34303
  cancel(request?: {
@@ -33622,7 +34408,7 @@ declare namespace gapi.client {
33622
34408
  prettyPrint?: boolean;
33623
34409
  /** 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. */
33624
34410
  quotaUser?: string;
33625
- /** 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. */
34411
+ /** 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. */
33626
34412
  returnPartialSuccess?: boolean;
33627
34413
  /** Upload protocol for media (e.g. "raw", "multipart"). */
33628
34414
  upload_protocol?: string;
@@ -34080,7 +34866,7 @@ declare namespace gapi.client {
34080
34866
  prettyPrint?: boolean;
34081
34867
  /** 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. */
34082
34868
  quotaUser?: string;
34083
- /** 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. */
34869
+ /** 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. */
34084
34870
  returnPartialSuccess?: boolean;
34085
34871
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34086
34872
  upload_protocol?: string;
@@ -34710,7 +35496,7 @@ declare namespace gapi.client {
34710
35496
  prettyPrint?: boolean;
34711
35497
  /** 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. */
34712
35498
  quotaUser?: string;
34713
- /** 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. */
35499
+ /** 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. */
34714
35500
  returnPartialSuccess?: boolean;
34715
35501
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34716
35502
  upload_protocol?: string;
@@ -35346,7 +36132,7 @@ declare namespace gapi.client {
35346
36132
  prettyPrint?: boolean;
35347
36133
  /** 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. */
35348
36134
  quotaUser?: string;
35349
- /** 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. */
36135
+ /** 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. */
35350
36136
  returnPartialSuccess?: boolean;
35351
36137
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35352
36138
  upload_protocol?: string;
@@ -35649,7 +36435,7 @@ declare namespace gapi.client {
35649
36435
  prettyPrint?: boolean;
35650
36436
  /** 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. */
35651
36437
  quotaUser?: string;
35652
- /** 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. */
36438
+ /** 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. */
35653
36439
  returnPartialSuccess?: boolean;
35654
36440
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35655
36441
  upload_protocol?: string;
@@ -35915,7 +36701,7 @@ declare namespace gapi.client {
35915
36701
  prettyPrint?: boolean;
35916
36702
  /** 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. */
35917
36703
  quotaUser?: string;
35918
- /** 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. */
36704
+ /** 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. */
35919
36705
  returnPartialSuccess?: boolean;
35920
36706
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35921
36707
  upload_protocol?: string;
@@ -36601,7 +37387,7 @@ declare namespace gapi.client {
36601
37387
  prettyPrint?: boolean;
36602
37388
  /** 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. */
36603
37389
  quotaUser?: string;
36604
- /** 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. */
37390
+ /** 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. */
36605
37391
  returnPartialSuccess?: boolean;
36606
37392
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36607
37393
  upload_protocol?: string;
@@ -37083,7 +37869,7 @@ declare namespace gapi.client {
37083
37869
  prettyPrint?: boolean;
37084
37870
  /** 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. */
37085
37871
  quotaUser?: string;
37086
- /** 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. */
37872
+ /** 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. */
37087
37873
  returnPartialSuccess?: boolean;
37088
37874
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37089
37875
  upload_protocol?: string;
@@ -37476,7 +38262,7 @@ declare namespace gapi.client {
37476
38262
  prettyPrint?: boolean;
37477
38263
  /** 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. */
37478
38264
  quotaUser?: string;
37479
- /** 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. */
38265
+ /** 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. */
37480
38266
  returnPartialSuccess?: boolean;
37481
38267
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37482
38268
  upload_protocol?: string;
@@ -38519,7 +39305,7 @@ declare namespace gapi.client {
38519
39305
  prettyPrint?: boolean;
38520
39306
  /** 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. */
38521
39307
  quotaUser?: string;
38522
- /** 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. */
39308
+ /** 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. */
38523
39309
  returnPartialSuccess?: boolean;
38524
39310
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38525
39311
  upload_protocol?: string;
@@ -38939,7 +39725,7 @@ declare namespace gapi.client {
38939
39725
  prettyPrint?: boolean;
38940
39726
  /** 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. */
38941
39727
  quotaUser?: string;
38942
- /** 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. */
39728
+ /** 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. */
38943
39729
  returnPartialSuccess?: boolean;
38944
39730
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38945
39731
  upload_protocol?: string;
@@ -39527,7 +40313,7 @@ declare namespace gapi.client {
39527
40313
  prettyPrint?: boolean;
39528
40314
  /** 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. */
39529
40315
  quotaUser?: string;
39530
- /** 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. */
40316
+ /** 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. */
39531
40317
  returnPartialSuccess?: boolean;
39532
40318
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39533
40319
  upload_protocol?: string;
@@ -39769,7 +40555,7 @@ declare namespace gapi.client {
39769
40555
  prettyPrint?: boolean;
39770
40556
  /** 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. */
39771
40557
  quotaUser?: string;
39772
- /** 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` */
40558
+ /** 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` */
39773
40559
  updateMask?: string;
39774
40560
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39775
40561
  upload_protocol?: string;
@@ -39800,7 +40586,7 @@ declare namespace gapi.client {
39800
40586
  prettyPrint?: boolean;
39801
40587
  /** 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. */
39802
40588
  quotaUser?: string;
39803
- /** 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` */
40589
+ /** 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` */
39804
40590
  updateMask?: string;
39805
40591
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39806
40592
  upload_protocol?: string;
@@ -39980,7 +40766,7 @@ declare namespace gapi.client {
39980
40766
  prettyPrint?: boolean;
39981
40767
  /** 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. */
39982
40768
  quotaUser?: string;
39983
- /** 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. */
40769
+ /** 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. */
39984
40770
  returnPartialSuccess?: boolean;
39985
40771
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39986
40772
  upload_protocol?: string;
@@ -40127,7 +40913,7 @@ declare namespace gapi.client {
40127
40913
  prettyPrint?: boolean;
40128
40914
  /** 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. */
40129
40915
  quotaUser?: string;
40130
- /** 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. */
40916
+ /** 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. */
40131
40917
  returnPartialSuccess?: boolean;
40132
40918
  /** Upload protocol for media (e.g. "raw", "multipart"). */
40133
40919
  upload_protocol?: string;
@@ -40544,7 +41330,7 @@ declare namespace gapi.client {
40544
41330
  prettyPrint?: boolean;
40545
41331
  /** 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. */
40546
41332
  quotaUser?: string;
40547
- /** 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. */
41333
+ /** 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. */
40548
41334
  returnPartialSuccess?: boolean;
40549
41335
  /** Upload protocol for media (e.g. "raw", "multipart"). */
40550
41336
  upload_protocol?: string;
@@ -41839,7 +42625,7 @@ declare namespace gapi.client {
41839
42625
  prettyPrint?: boolean;
41840
42626
  /** 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. */
41841
42627
  quotaUser?: string;
41842
- /** 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. */
42628
+ /** 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. */
41843
42629
  returnPartialSuccess?: boolean;
41844
42630
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41845
42631
  upload_protocol?: string;
@@ -41986,7 +42772,7 @@ declare namespace gapi.client {
41986
42772
  prettyPrint?: boolean;
41987
42773
  /** 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. */
41988
42774
  quotaUser?: string;
41989
- /** 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. */
42775
+ /** 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. */
41990
42776
  returnPartialSuccess?: boolean;
41991
42777
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41992
42778
  upload_protocol?: string;
@@ -42488,7 +43274,7 @@ declare namespace gapi.client {
42488
43274
  prettyPrint?: boolean;
42489
43275
  /** 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. */
42490
43276
  quotaUser?: string;
42491
- /** 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. */
43277
+ /** 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. */
42492
43278
  returnPartialSuccess?: boolean;
42493
43279
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42494
43280
  upload_protocol?: string;
@@ -42976,7 +43762,7 @@ declare namespace gapi.client {
42976
43762
  prettyPrint?: boolean;
42977
43763
  /** 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. */
42978
43764
  quotaUser?: string;
42979
- /** 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. */
43765
+ /** 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. */
42980
43766
  returnPartialSuccess?: boolean;
42981
43767
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42982
43768
  upload_protocol?: string;
@@ -43630,7 +44416,7 @@ declare namespace gapi.client {
43630
44416
  prettyPrint?: boolean;
43631
44417
  /** 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. */
43632
44418
  quotaUser?: string;
43633
- /** 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. */
44419
+ /** 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. */
43634
44420
  returnPartialSuccess?: boolean;
43635
44421
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43636
44422
  upload_protocol?: string;
@@ -43777,7 +44563,7 @@ declare namespace gapi.client {
43777
44563
  prettyPrint?: boolean;
43778
44564
  /** 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. */
43779
44565
  quotaUser?: string;
43780
- /** 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. */
44566
+ /** 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. */
43781
44567
  returnPartialSuccess?: boolean;
43782
44568
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43783
44569
  upload_protocol?: string;
@@ -44167,7 +44953,7 @@ declare namespace gapi.client {
44167
44953
  prettyPrint?: boolean;
44168
44954
  /** 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. */
44169
44955
  quotaUser?: string;
44170
- /** 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. */
44956
+ /** 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. */
44171
44957
  returnPartialSuccess?: boolean;
44172
44958
  /** Upload protocol for media (e.g. "raw", "multipart"). */
44173
44959
  upload_protocol?: string;
@@ -44976,7 +45762,7 @@ declare namespace gapi.client {
44976
45762
  prettyPrint?: boolean;
44977
45763
  /** 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. */
44978
45764
  quotaUser?: string;
44979
- /** 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. */
45765
+ /** 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. */
44980
45766
  returnPartialSuccess?: boolean;
44981
45767
  /** Upload protocol for media (e.g. "raw", "multipart"). */
44982
45768
  upload_protocol?: string;
@@ -45424,7 +46210,7 @@ declare namespace gapi.client {
45424
46210
  prettyPrint?: boolean;
45425
46211
  /** 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. */
45426
46212
  quotaUser?: string;
45427
- /** 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. */
46213
+ /** 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. */
45428
46214
  returnPartialSuccess?: boolean;
45429
46215
  /** Upload protocol for media (e.g. "raw", "multipart"). */
45430
46216
  upload_protocol?: string;
@@ -45545,7 +46331,7 @@ declare namespace gapi.client {
45545
46331
  prettyPrint?: boolean;
45546
46332
  /** 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. */
45547
46333
  quotaUser?: string;
45548
- /** 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. */
46334
+ /** 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. */
45549
46335
  returnPartialSuccess?: boolean;
45550
46336
  /** Upload protocol for media (e.g. "raw", "multipart"). */
45551
46337
  upload_protocol?: string;
@@ -45904,7 +46690,7 @@ declare namespace gapi.client {
45904
46690
  prettyPrint?: boolean;
45905
46691
  /** 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. */
45906
46692
  quotaUser?: string;
45907
- /** 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. */
46693
+ /** 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. */
45908
46694
  returnPartialSuccess?: boolean;
45909
46695
  /** Upload protocol for media (e.g. "raw", "multipart"). */
45910
46696
  upload_protocol?: string;
@@ -46051,7 +46837,7 @@ declare namespace gapi.client {
46051
46837
  prettyPrint?: boolean;
46052
46838
  /** 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. */
46053
46839
  quotaUser?: string;
46054
- /** 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. */
46840
+ /** 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. */
46055
46841
  returnPartialSuccess?: boolean;
46056
46842
  /** Upload protocol for media (e.g. "raw", "multipart"). */
46057
46843
  upload_protocol?: string;
@@ -46897,7 +47683,7 @@ declare namespace gapi.client {
46897
47683
  prettyPrint?: boolean;
46898
47684
  /** 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. */
46899
47685
  quotaUser?: string;
46900
- /** 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. */
47686
+ /** 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. */
46901
47687
  returnPartialSuccess?: boolean;
46902
47688
  /** Upload protocol for media (e.g. "raw", "multipart"). */
46903
47689
  upload_protocol?: string;
@@ -47044,7 +47830,7 @@ declare namespace gapi.client {
47044
47830
  prettyPrint?: boolean;
47045
47831
  /** 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. */
47046
47832
  quotaUser?: string;
47047
- /** 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. */
47833
+ /** 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. */
47048
47834
  returnPartialSuccess?: boolean;
47049
47835
  /** Upload protocol for media (e.g. "raw", "multipart"). */
47050
47836
  upload_protocol?: string;
@@ -47191,7 +47977,7 @@ declare namespace gapi.client {
47191
47977
  prettyPrint?: boolean;
47192
47978
  /** 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. */
47193
47979
  quotaUser?: string;
47194
- /** 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. */
47980
+ /** 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. */
47195
47981
  returnPartialSuccess?: boolean;
47196
47982
  /** Upload protocol for media (e.g. "raw", "multipart"). */
47197
47983
  upload_protocol?: string;
@@ -48344,7 +49130,7 @@ declare namespace gapi.client {
48344
49130
  prettyPrint?: boolean;
48345
49131
  /** 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. */
48346
49132
  quotaUser?: string;
48347
- /** 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. */
49133
+ /** 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. */
48348
49134
  returnPartialSuccess?: boolean;
48349
49135
  /** Upload protocol for media (e.g. "raw", "multipart"). */
48350
49136
  upload_protocol?: string;
@@ -48789,7 +49575,7 @@ declare namespace gapi.client {
48789
49575
  prettyPrint?: boolean;
48790
49576
  /** 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. */
48791
49577
  quotaUser?: string;
48792
- /** 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. */
49578
+ /** 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. */
48793
49579
  returnPartialSuccess?: boolean;
48794
49580
  /** Upload protocol for media (e.g. "raw", "multipart"). */
48795
49581
  upload_protocol?: string;
@@ -50109,6 +50895,7 @@ declare namespace gapi.client {
50109
50895
  hyperparameterTuningJobs: HyperparameterTuningJobsResource;
50110
50896
  indexEndpoints: IndexEndpointsResource;
50111
50897
  indexes: IndexesResource;
50898
+ interactions: InteractionsResource;
50112
50899
  metadataStores: MetadataStoresResource;
50113
50900
  migratableResources: MigratableResourcesResource;
50114
50901
  modelDeploymentMonitoringJobs: ModelDeploymentMonitoringJobsResource;
@@ -51091,7 +51878,7 @@ declare namespace gapi.client {
51091
51878
  prettyPrint?: boolean;
51092
51879
  /** 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. */
51093
51880
  quotaUser?: string;
51094
- /** 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. */
51881
+ /** 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. */
51095
51882
  returnPartialSuccess?: boolean;
51096
51883
  /** Upload protocol for media (e.g. "raw", "multipart"). */
51097
51884
  upload_protocol?: string;
@@ -51238,7 +52025,7 @@ declare namespace gapi.client {
51238
52025
  prettyPrint?: boolean;
51239
52026
  /** 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. */
51240
52027
  quotaUser?: string;
51241
- /** 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. */
52028
+ /** 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. */
51242
52029
  returnPartialSuccess?: boolean;
51243
52030
  /** Upload protocol for media (e.g. "raw", "multipart"). */
51244
52031
  upload_protocol?: string;
@@ -51392,7 +52179,7 @@ declare namespace gapi.client {
51392
52179
  prettyPrint?: boolean;
51393
52180
  /** 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. */
51394
52181
  quotaUser?: string;
51395
- /** 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. */
52182
+ /** 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. */
51396
52183
  returnPartialSuccess?: boolean;
51397
52184
  /** Upload protocol for media (e.g. "raw", "multipart"). */
51398
52185
  upload_protocol?: string;
@@ -51880,7 +52667,7 @@ declare namespace gapi.client {
51880
52667
  prettyPrint?: boolean;
51881
52668
  /** 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. */
51882
52669
  quotaUser?: string;
51883
- /** 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. */
52670
+ /** 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. */
51884
52671
  returnPartialSuccess?: boolean;
51885
52672
  /** Upload protocol for media (e.g. "raw", "multipart"). */
51886
52673
  upload_protocol?: string;
@@ -52534,7 +53321,7 @@ declare namespace gapi.client {
52534
53321
  prettyPrint?: boolean;
52535
53322
  /** 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. */
52536
53323
  quotaUser?: string;
52537
- /** 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. */
53324
+ /** 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. */
52538
53325
  returnPartialSuccess?: boolean;
52539
53326
  /** Upload protocol for media (e.g. "raw", "multipart"). */
52540
53327
  upload_protocol?: string;
@@ -52681,7 +53468,7 @@ declare namespace gapi.client {
52681
53468
  prettyPrint?: boolean;
52682
53469
  /** 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. */
52683
53470
  quotaUser?: string;
52684
- /** 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. */
53471
+ /** 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. */
52685
53472
  returnPartialSuccess?: boolean;
52686
53473
  /** Upload protocol for media (e.g. "raw", "multipart"). */
52687
53474
  upload_protocol?: string;
@@ -53071,7 +53858,7 @@ declare namespace gapi.client {
53071
53858
  prettyPrint?: boolean;
53072
53859
  /** 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. */
53073
53860
  quotaUser?: string;
53074
- /** 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. */
53861
+ /** 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. */
53075
53862
  returnPartialSuccess?: boolean;
53076
53863
  /** Upload protocol for media (e.g. "raw", "multipart"). */
53077
53864
  upload_protocol?: string;
@@ -53880,7 +54667,7 @@ declare namespace gapi.client {
53880
54667
  prettyPrint?: boolean;
53881
54668
  /** 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. */
53882
54669
  quotaUser?: string;
53883
- /** 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. */
54670
+ /** 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. */
53884
54671
  returnPartialSuccess?: boolean;
53885
54672
  /** Upload protocol for media (e.g. "raw", "multipart"). */
53886
54673
  upload_protocol?: string;
@@ -54003,7 +54790,7 @@ declare namespace gapi.client {
54003
54790
  prettyPrint?: boolean;
54004
54791
  /** 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. */
54005
54792
  quotaUser?: string;
54006
- /** 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. */
54793
+ /** 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. */
54007
54794
  returnPartialSuccess?: boolean;
54008
54795
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54009
54796
  upload_protocol?: string;
@@ -54124,7 +54911,7 @@ declare namespace gapi.client {
54124
54911
  prettyPrint?: boolean;
54125
54912
  /** 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. */
54126
54913
  quotaUser?: string;
54127
- /** 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. */
54914
+ /** 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. */
54128
54915
  returnPartialSuccess?: boolean;
54129
54916
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54130
54917
  upload_protocol?: string;
@@ -54274,7 +55061,7 @@ declare namespace gapi.client {
54274
55061
  prettyPrint?: boolean;
54275
55062
  /** 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. */
54276
55063
  quotaUser?: string;
54277
- /** 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. */
55064
+ /** 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. */
54278
55065
  returnPartialSuccess?: boolean;
54279
55066
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54280
55067
  upload_protocol?: string;
@@ -54421,7 +55208,7 @@ declare namespace gapi.client {
54421
55208
  prettyPrint?: boolean;
54422
55209
  /** 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. */
54423
55210
  quotaUser?: string;
54424
- /** 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. */
55211
+ /** 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. */
54425
55212
  returnPartialSuccess?: boolean;
54426
55213
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54427
55214
  upload_protocol?: string;
@@ -54575,7 +55362,7 @@ declare namespace gapi.client {
54575
55362
  prettyPrint?: boolean;
54576
55363
  /** 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. */
54577
55364
  quotaUser?: string;
54578
- /** 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. */
55365
+ /** 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. */
54579
55366
  returnPartialSuccess?: boolean;
54580
55367
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54581
55368
  upload_protocol?: string;
@@ -54722,7 +55509,7 @@ declare namespace gapi.client {
54722
55509
  prettyPrint?: boolean;
54723
55510
  /** 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. */
54724
55511
  quotaUser?: string;
54725
- /** 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. */
55512
+ /** 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. */
54726
55513
  returnPartialSuccess?: boolean;
54727
55514
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54728
55515
  upload_protocol?: string;
@@ -54869,7 +55656,7 @@ declare namespace gapi.client {
54869
55656
  prettyPrint?: boolean;
54870
55657
  /** 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. */
54871
55658
  quotaUser?: string;
54872
- /** 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. */
55659
+ /** 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. */
54873
55660
  returnPartialSuccess?: boolean;
54874
55661
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54875
55662
  upload_protocol?: string;
@@ -55027,7 +55814,7 @@ declare namespace gapi.client {
55027
55814
  prettyPrint?: boolean;
55028
55815
  /** 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. */
55029
55816
  quotaUser?: string;
55030
- /** 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. */
55817
+ /** 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. */
55031
55818
  returnPartialSuccess?: boolean;
55032
55819
  /** Upload protocol for media (e.g. "raw", "multipart"). */
55033
55820
  upload_protocol?: string;
@@ -55178,7 +55965,7 @@ declare namespace gapi.client {
55178
55965
  prettyPrint?: boolean;
55179
55966
  /** 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. */
55180
55967
  quotaUser?: string;
55181
- /** 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. */
55968
+ /** 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. */
55182
55969
  returnPartialSuccess?: boolean;
55183
55970
  /** Upload protocol for media (e.g. "raw", "multipart"). */
55184
55971
  upload_protocol?: string;
@@ -55295,6 +56082,10 @@ declare namespace gapi.client {
55295
56082
 
55296
56083
  const indexes: IndexesResource;
55297
56084
 
56085
+ const interactions: InteractionsResource;
56086
+
56087
+ const interactionsInternal: InteractionsInternalResource;
56088
+
55298
56089
  const media: MediaResource;
55299
56090
 
55300
56091
  const metadataStores: MetadataStoresResource;