@maxim_mazurok/gapi.client.aiplatform-v1 0.4.20251107 → 0.4.20251117

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +227 -97
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20251107
12
+ // Revision: 20251117
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -3268,17 +3268,23 @@ declare namespace gapi.client {
3268
3268
  args?: {[P in string]: any};
3269
3269
  /** Optional. The name of the function to call. Matches [FunctionDeclaration.name]. */
3270
3270
  name?: string;
3271
+ /** Optional. The partial argument value of the function call. If provided, represents the arguments/fields that are streamed incrementally. */
3272
+ partialArgs?: GoogleCloudAiplatformV1PartialArg[];
3273
+ /** Optional. Whether this is the last part of the FunctionCall. If true, another partial message for the current FunctionCall is expected to follow. */
3274
+ willContinue?: boolean;
3271
3275
  }
3272
3276
  interface GoogleCloudAiplatformV1FunctionCallingConfig {
3273
3277
  /** Optional. Function names to call. Only set when the Mode is ANY. Function names should match [FunctionDeclaration.name]. With mode set to ANY, model will predict a function call from the set of function names provided. */
3274
3278
  allowedFunctionNames?: string[];
3275
3279
  /** Optional. Function calling mode. */
3276
3280
  mode?: string;
3281
+ /** 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. */
3282
+ streamFunctionCallArguments?: boolean;
3277
3283
  }
3278
3284
  interface GoogleCloudAiplatformV1FunctionDeclaration {
3279
3285
  /** Optional. Description and purpose of the function. Model uses it to decide how and whether to call the function. */
3280
3286
  description?: string;
3281
- /** Required. The name of the function to call. Must start with a letter or an underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots and dashes, with a maximum length of 64. */
3287
+ /** Required. The name of the function to call. Must start with a letter or an underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots, colons and dashes, with a maximum length of 64. */
3282
3288
  name?: string;
3283
3289
  /** Optional. Describes the parameters to this function in JSON Schema Object format. Reflects the Open API 3.03 Parameter Object. string Key: the name of the parameter. Parameter names are case sensitive. Schema Value: the Schema defining the type used for the parameter. For function with no parameters, this can be left unset. Parameter names must start with a letter or an underscore and must only contain chars a-z, A-Z, 0-9, or underscores with a maximum length of 64. Example with 1 required and 1 optional parameter: type: OBJECT properties: param1: type: STRING param2: type: INTEGER required: - param1 */
3284
3290
  parameters?: GoogleCloudAiplatformV1Schema;
@@ -3535,6 +3541,8 @@ declare namespace gapi.client {
3535
3541
  includeThoughts?: boolean;
3536
3542
  /** Optional. The token budget for the model's thinking process. The model will make a best effort to stay within this budget. This can be used to control the trade-off between response quality and latency. */
3537
3543
  thinkingBudget?: number;
3544
+ /** Optional. The number of thoughts tokens that the model should generate. */
3545
+ thinkingLevel?: string;
3538
3546
  }
3539
3547
  interface GoogleCloudAiplatformV1GenericOperationMetadata {
3540
3548
  /** Output only. Time when the operation was created. */
@@ -3719,6 +3727,8 @@ declare namespace gapi.client {
3719
3727
  aspectRatio?: string;
3720
3728
  /** Optional. The image output format for generated images. */
3721
3729
  imageOutputOptions?: GoogleCloudAiplatformV1ImageConfigImageOutputOptions;
3730
+ /** Optional. Specifies the size of generated images. Supported values are `1K`, `2K`, `4K`. If not specified, the model will use default value `1K`. */
3731
+ imageSize?: string;
3722
3732
  /** Optional. Controls whether the model can generate people. */
3723
3733
  personGeneration?: string;
3724
3734
  }
@@ -4446,6 +4456,56 @@ declare namespace gapi.client {
4446
4456
  /** Output only. The value for this metric. */
4447
4457
  value?: number;
4448
4458
  }
4459
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfig {
4460
+ /** Optional. Examples of how to generate memories for a particular scope. */
4461
+ generateMemoriesExamples?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExample[];
4462
+ /** Optional. Topics of information that should be extracted from conversations and stored as memories. If not set, then Memory Bank's default topics will be used. */
4463
+ memoryTopics?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic[];
4464
+ /** Optional. The scope keys (i.e. 'user_id') for which to use this config. A request's scope must include all of the provided keys for the config to be used (order does not matter). If empty, then the config will be used for all requests that do not have a more specific config. Only one default config is allowed per Memory Bank. */
4465
+ scopeKeys?: string[];
4466
+ }
4467
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExample {
4468
+ /** A conversation source for the example. */
4469
+ conversationSource?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSource;
4470
+ /** Optional. The memories that are expected to be generated from the input conversation. An empty list indicates that no memories are expected to be generated for the input conversation. */
4471
+ generatedMemories?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleGeneratedMemory[];
4472
+ }
4473
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSource {
4474
+ /** Optional. The input conversation events for the example. */
4475
+ events?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSourceEvent[];
4476
+ }
4477
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSourceEvent {
4478
+ /** Required. The content of the event. */
4479
+ content?: GoogleCloudAiplatformV1Content;
4480
+ }
4481
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExampleGeneratedMemory {
4482
+ /** Required. The fact to generate a memory from. */
4483
+ fact?: string;
4484
+ /** Optional. The list of topics that the memory should be associated with. For example, use `custom_memory_topic_label = "jargon"` if the extracted memory is an example of memory extraction for the custom topic `jargon`. */
4485
+ topics?: GoogleCloudAiplatformV1MemoryTopicId[];
4486
+ }
4487
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopic {
4488
+ /** A custom memory topic defined by the developer. */
4489
+ customMemoryTopic?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic;
4490
+ /** A managed memory topic defined by Memory Bank. */
4491
+ managedMemoryTopic?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic;
4492
+ }
4493
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic {
4494
+ /** Required. Description of the memory topic. This should explain what information should be extracted for this topic. */
4495
+ description?: string;
4496
+ /** Required. The label of the topic. */
4497
+ label?: string;
4498
+ }
4499
+ interface GoogleCloudAiplatformV1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic {
4500
+ /** Required. The managed topic. */
4501
+ managedTopicEnum?: string;
4502
+ }
4503
+ interface GoogleCloudAiplatformV1MemoryTopicId {
4504
+ /** Optional. The custom memory topic label. */
4505
+ customMemoryTopicLabel?: string;
4506
+ /** Optional. The managed memory topic. */
4507
+ managedMemoryTopic?: string;
4508
+ }
4449
4509
  interface GoogleCloudAiplatformV1MergeVersionAliasesRequest {
4450
4510
  /** Required. The set of version aliases to merge. The alias should be at most 128 characters, and match `a-z{0,126}[a-z-0-9]`. Add the `-` prefix to an alias means removing that alias from the version. `-` is NOT counted in the 128 characters. Example: `-golden` means removing the `golden` alias from the version. There is NO ordering in aliases, which means 1) The aliases returned from GetModel API might not have the exactly same order from this MergeVersionAliases API. 2) Adding and deleting the same alias in the request is not recommended, and the 2 operations will be cancelled out. */
4451
4511
  versionAliases?: string[];
@@ -5624,6 +5684,8 @@ declare namespace gapi.client {
5624
5684
  functionResponse?: GoogleCloudAiplatformV1FunctionResponse;
5625
5685
  /** Optional. The inline data content of the part. This can be used to include images, audio, or video in a request. */
5626
5686
  inlineData?: GoogleCloudAiplatformV1Blob;
5687
+ /** per part media resolution. Media resolution for the input media. */
5688
+ mediaResolution?: GoogleCloudAiplatformV1PartMediaResolution;
5627
5689
  /** Optional. The text content of the part. */
5628
5690
  text?: string;
5629
5691
  /** Optional. Indicates whether the `part` represents the model's thought process or reasoning. */
@@ -5633,6 +5695,24 @@ declare namespace gapi.client {
5633
5695
  /** Optional. Video metadata. The metadata should only be specified while the video data is presented in inline_data or file_data. */
5634
5696
  videoMetadata?: GoogleCloudAiplatformV1VideoMetadata;
5635
5697
  }
5698
+ interface GoogleCloudAiplatformV1PartialArg {
5699
+ /** Optional. Represents a boolean value. */
5700
+ boolValue?: boolean;
5701
+ /** Required. A JSON Path (RFC 9535) to the argument being streamed. https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data". */
5702
+ jsonPath?: string;
5703
+ /** Optional. Represents a null value. */
5704
+ nullValue?: string;
5705
+ /** Optional. Represents a double value. */
5706
+ numberValue?: number;
5707
+ /** Optional. Represents a string value. */
5708
+ stringValue?: string;
5709
+ /** 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. */
5710
+ willContinue?: boolean;
5711
+ }
5712
+ interface GoogleCloudAiplatformV1PartMediaResolution {
5713
+ /** The tokenization quality used for given media. */
5714
+ level?: string;
5715
+ }
5636
5716
  interface GoogleCloudAiplatformV1PauseModelDeploymentMonitoringJobRequest {}
5637
5717
  interface GoogleCloudAiplatformV1PauseScheduleRequest {}
5638
5718
  interface GoogleCloudAiplatformV1PersistentDiskSpec {
@@ -6728,6 +6808,8 @@ declare namespace gapi.client {
6728
6808
  viewCount?: string;
6729
6809
  }
6730
6810
  interface GoogleCloudAiplatformV1ReasoningEngine {
6811
+ /** Optional. Configuration for how Agent Engine sub-resources should manage context. */
6812
+ contextSpec?: GoogleCloudAiplatformV1ReasoningEngineContextSpec;
6731
6813
  /** Output only. Timestamp when this ReasoningEngine was created. */
6732
6814
  createTime?: string;
6733
6815
  /** Optional. The description of the ReasoningEngine. */
@@ -6747,6 +6829,46 @@ declare namespace gapi.client {
6747
6829
  /** Output only. Timestamp when this ReasoningEngine was most recently updated. */
6748
6830
  updateTime?: string;
6749
6831
  }
6832
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpec {
6833
+ /** Optional. Specification for a Memory Bank, which manages memories for the Agent Engine. */
6834
+ memoryBankConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfig;
6835
+ }
6836
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfig {
6837
+ /** Optional. Configuration for how to customize Memory Bank behavior for a particular scope. */
6838
+ customizationConfigs?: GoogleCloudAiplatformV1MemoryBankCustomizationConfig[];
6839
+ /** If true, no memory revisions will be created for any requests to the Memory Bank. */
6840
+ disableMemoryRevisions?: boolean;
6841
+ /** Optional. Configuration for how to generate memories for the Memory Bank. */
6842
+ generationConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig;
6843
+ /** Optional. Configuration for how to perform similarity search on memories. If not set, the Memory Bank will use the default embedding model `text-embedding-005`. */
6844
+ similaritySearchConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig;
6845
+ /** Optional. Configuration for automatic TTL ("time-to-live") of the memories in the Memory Bank. If not set, TTL will not be applied automatically. The TTL can be explicitly set by modifying the `expire_time` of each Memory resource. */
6846
+ ttlConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigTtlConfig;
6847
+ }
6848
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig {
6849
+ /** Required. The model used to generate memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}`. */
6850
+ model?: string;
6851
+ }
6852
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig {
6853
+ /** Required. The model used to generate embeddings to lookup similar memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}`. */
6854
+ embeddingModel?: string;
6855
+ }
6856
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigTtlConfig {
6857
+ /** Optional. The default TTL duration of the memories in the Memory Bank. This applies to all operations that create or update a memory. */
6858
+ defaultTtl?: string;
6859
+ /** Optional. The granular TTL configuration of the memories in the Memory Bank. */
6860
+ granularTtlConfig?: GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig;
6861
+ /** Optional. The default TTL duration of the memory revisions in the Memory Bank. This applies to all operations that create a memory revision. If not set, a default TTL of 365 days will be used. */
6862
+ memoryRevisionDefaultTtl?: string;
6863
+ }
6864
+ interface GoogleCloudAiplatformV1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig {
6865
+ /** Optional. The TTL duration for memories uploaded via CreateMemory. */
6866
+ createTtl?: string;
6867
+ /** Optional. The TTL duration for memories newly generated via GenerateMemories (GenerateMemoriesResponse.GeneratedMemory.Action.CREATED). */
6868
+ generateCreatedTtl?: string;
6869
+ /** Optional. The TTL duration for memories updated via GenerateMemories (GenerateMemoriesResponse.GeneratedMemory.Action.UPDATED). In the case of an UPDATE action, the `expire_time` of the existing memory will be updated to the new value (now + TTL). */
6870
+ generateUpdatedTtl?: string;
6871
+ }
6750
6872
  interface GoogleCloudAiplatformV1ReasoningEngineSpec {
6751
6873
  /** Optional. The OSS agent framework used to develop the agent. Currently supported values: "google-adk", "langchain", "langgraph", "ag2", "llama-index", "custom". */
6752
6874
  agentFramework?: string;
@@ -6834,6 +6956,12 @@ declare namespace gapi.client {
6834
6956
  datapointIds?: string[];
6835
6957
  }
6836
6958
  interface GoogleCloudAiplatformV1RemoveDatapointsResponse {}
6959
+ interface GoogleCloudAiplatformV1ReplicatedVoiceConfig {
6960
+ /** Optional. The mimetype of the voice sample. Currently only mime_type=audio/pcm is supported, which is raw mono 16-bit signed little-endian pcm data, with 24k sampling rate. */
6961
+ mimeType?: string;
6962
+ /** Optional. The sample of the custom voice. */
6963
+ voiceSampleAudio?: string;
6964
+ }
6837
6965
  interface GoogleCloudAiplatformV1ReservationAffinity {
6838
6966
  /** Optional. Corresponds to the label key of a reservation resource. To target a SPECIFIC_RESERVATION by name, use `compute.googleapis.com/reservation-name` as the key and specify the name of your reservation as its value. */
6839
6967
  key?: string;
@@ -10138,6 +10266,8 @@ declare namespace gapi.client {
10138
10266
  interface GoogleCloudAiplatformV1VoiceConfig {
10139
10267
  /** The configuration for a prebuilt voice. */
10140
10268
  prebuiltVoiceConfig?: GoogleCloudAiplatformV1PrebuiltVoiceConfig;
10269
+ /** Optional. The configuration for a replicated voice. This enables users to replicate a voice from an audio sample. */
10270
+ replicatedVoiceConfig?: GoogleCloudAiplatformV1ReplicatedVoiceConfig;
10141
10271
  }
10142
10272
  interface GoogleCloudAiplatformV1WorkerPoolSpec {
10143
10273
  /** The custom container task. */
@@ -10233,7 +10363,7 @@ declare namespace gapi.client {
10233
10363
  nextPageToken?: string;
10234
10364
  /** A list of operations that matches the specified filter in the request. */
10235
10365
  operations?: GoogleLongrunningOperation[];
10236
- /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
10366
+ /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
10237
10367
  unreachable?: string[];
10238
10368
  }
10239
10369
  interface GoogleLongrunningOperation {
@@ -10537,7 +10667,7 @@ declare namespace gapi.client {
10537
10667
  prettyPrint?: boolean;
10538
10668
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
10539
10669
  quotaUser?: string;
10540
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10670
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10541
10671
  returnPartialSuccess?: boolean;
10542
10672
  /** Upload protocol for media (e.g. "raw", "multipart"). */
10543
10673
  upload_protocol?: string;
@@ -10687,7 +10817,7 @@ declare namespace gapi.client {
10687
10817
  prettyPrint?: boolean;
10688
10818
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
10689
10819
  quotaUser?: string;
10690
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10820
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10691
10821
  returnPartialSuccess?: boolean;
10692
10822
  /** Upload protocol for media (e.g. "raw", "multipart"). */
10693
10823
  upload_protocol?: string;
@@ -10837,7 +10967,7 @@ declare namespace gapi.client {
10837
10967
  prettyPrint?: boolean;
10838
10968
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
10839
10969
  quotaUser?: string;
10840
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10970
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10841
10971
  returnPartialSuccess?: boolean;
10842
10972
  /** Upload protocol for media (e.g. "raw", "multipart"). */
10843
10973
  upload_protocol?: string;
@@ -10987,7 +11117,7 @@ declare namespace gapi.client {
10987
11117
  prettyPrint?: boolean;
10988
11118
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
10989
11119
  quotaUser?: string;
10990
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11120
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
10991
11121
  returnPartialSuccess?: boolean;
10992
11122
  /** Upload protocol for media (e.g. "raw", "multipart"). */
10993
11123
  upload_protocol?: string;
@@ -11137,7 +11267,7 @@ declare namespace gapi.client {
11137
11267
  prettyPrint?: boolean;
11138
11268
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
11139
11269
  quotaUser?: string;
11140
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11270
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11141
11271
  returnPartialSuccess?: boolean;
11142
11272
  /** Upload protocol for media (e.g. "raw", "multipart"). */
11143
11273
  upload_protocol?: string;
@@ -11530,7 +11660,7 @@ declare namespace gapi.client {
11530
11660
  prettyPrint?: boolean;
11531
11661
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
11532
11662
  quotaUser?: string;
11533
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11663
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11534
11664
  returnPartialSuccess?: boolean;
11535
11665
  /** Upload protocol for media (e.g. "raw", "multipart"). */
11536
11666
  upload_protocol?: string;
@@ -11677,7 +11807,7 @@ declare namespace gapi.client {
11677
11807
  prettyPrint?: boolean;
11678
11808
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
11679
11809
  quotaUser?: string;
11680
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11810
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
11681
11811
  returnPartialSuccess?: boolean;
11682
11812
  /** Upload protocol for media (e.g. "raw", "multipart"). */
11683
11813
  upload_protocol?: string;
@@ -12047,7 +12177,7 @@ declare namespace gapi.client {
12047
12177
  prettyPrint?: boolean;
12048
12178
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12049
12179
  quotaUser?: string;
12050
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12180
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12051
12181
  returnPartialSuccess?: boolean;
12052
12182
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12053
12183
  upload_protocol?: string;
@@ -12257,7 +12387,7 @@ declare namespace gapi.client {
12257
12387
  prettyPrint?: boolean;
12258
12388
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12259
12389
  quotaUser?: string;
12260
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12390
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12261
12391
  returnPartialSuccess?: boolean;
12262
12392
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12263
12393
  upload_protocol?: string;
@@ -12786,7 +12916,7 @@ declare namespace gapi.client {
12786
12916
  prettyPrint?: boolean;
12787
12917
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12788
12918
  quotaUser?: string;
12789
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12919
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12790
12920
  returnPartialSuccess?: boolean;
12791
12921
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12792
12922
  upload_protocol?: string;
@@ -12909,7 +13039,7 @@ declare namespace gapi.client {
12909
13039
  prettyPrint?: boolean;
12910
13040
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12911
13041
  quotaUser?: string;
12912
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13042
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12913
13043
  returnPartialSuccess?: boolean;
12914
13044
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12915
13045
  upload_protocol?: string;
@@ -13033,7 +13163,7 @@ declare namespace gapi.client {
13033
13163
  prettyPrint?: boolean;
13034
13164
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13035
13165
  quotaUser?: string;
13036
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13166
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13037
13167
  returnPartialSuccess?: boolean;
13038
13168
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13039
13169
  upload_protocol?: string;
@@ -13156,7 +13286,7 @@ declare namespace gapi.client {
13156
13286
  prettyPrint?: boolean;
13157
13287
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13158
13288
  quotaUser?: string;
13159
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13289
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13160
13290
  returnPartialSuccess?: boolean;
13161
13291
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13162
13292
  upload_protocol?: string;
@@ -13307,7 +13437,7 @@ declare namespace gapi.client {
13307
13437
  prettyPrint?: boolean;
13308
13438
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13309
13439
  quotaUser?: string;
13310
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13440
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13311
13441
  returnPartialSuccess?: boolean;
13312
13442
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13313
13443
  upload_protocol?: string;
@@ -13457,7 +13587,7 @@ declare namespace gapi.client {
13457
13587
  prettyPrint?: boolean;
13458
13588
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13459
13589
  quotaUser?: string;
13460
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13590
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13461
13591
  returnPartialSuccess?: boolean;
13462
13592
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13463
13593
  upload_protocol?: string;
@@ -13608,7 +13738,7 @@ declare namespace gapi.client {
13608
13738
  prettyPrint?: boolean;
13609
13739
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13610
13740
  quotaUser?: string;
13611
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13741
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13612
13742
  returnPartialSuccess?: boolean;
13613
13743
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13614
13744
  upload_protocol?: string;
@@ -13759,7 +13889,7 @@ declare namespace gapi.client {
13759
13889
  prettyPrint?: boolean;
13760
13890
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13761
13891
  quotaUser?: string;
13762
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13892
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13763
13893
  returnPartialSuccess?: boolean;
13764
13894
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13765
13895
  upload_protocol?: string;
@@ -13909,7 +14039,7 @@ declare namespace gapi.client {
13909
14039
  prettyPrint?: boolean;
13910
14040
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13911
14041
  quotaUser?: string;
13912
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14042
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13913
14043
  returnPartialSuccess?: boolean;
13914
14044
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13915
14045
  upload_protocol?: string;
@@ -14059,7 +14189,7 @@ declare namespace gapi.client {
14059
14189
  prettyPrint?: boolean;
14060
14190
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14061
14191
  quotaUser?: string;
14062
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14192
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14063
14193
  returnPartialSuccess?: boolean;
14064
14194
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14065
14195
  upload_protocol?: string;
@@ -14269,7 +14399,7 @@ declare namespace gapi.client {
14269
14399
  prettyPrint?: boolean;
14270
14400
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14271
14401
  quotaUser?: string;
14272
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14402
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14273
14403
  returnPartialSuccess?: boolean;
14274
14404
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14275
14405
  upload_protocol?: string;
@@ -14419,7 +14549,7 @@ declare namespace gapi.client {
14419
14549
  prettyPrint?: boolean;
14420
14550
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14421
14551
  quotaUser?: string;
14422
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14552
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14423
14553
  returnPartialSuccess?: boolean;
14424
14554
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14425
14555
  upload_protocol?: string;
@@ -14569,7 +14699,7 @@ declare namespace gapi.client {
14569
14699
  prettyPrint?: boolean;
14570
14700
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14571
14701
  quotaUser?: string;
14572
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14702
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14573
14703
  returnPartialSuccess?: boolean;
14574
14704
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14575
14705
  upload_protocol?: string;
@@ -14719,7 +14849,7 @@ declare namespace gapi.client {
14719
14849
  prettyPrint?: boolean;
14720
14850
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14721
14851
  quotaUser?: string;
14722
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14852
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14723
14853
  returnPartialSuccess?: boolean;
14724
14854
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14725
14855
  upload_protocol?: string;
@@ -14872,7 +15002,7 @@ declare namespace gapi.client {
14872
15002
  prettyPrint?: boolean;
14873
15003
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14874
15004
  quotaUser?: string;
14875
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15005
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14876
15006
  returnPartialSuccess?: boolean;
14877
15007
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14878
15008
  upload_protocol?: string;
@@ -15022,7 +15152,7 @@ declare namespace gapi.client {
15022
15152
  prettyPrint?: boolean;
15023
15153
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15024
15154
  quotaUser?: string;
15025
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15155
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15026
15156
  returnPartialSuccess?: boolean;
15027
15157
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15028
15158
  upload_protocol?: string;
@@ -15172,7 +15302,7 @@ declare namespace gapi.client {
15172
15302
  prettyPrint?: boolean;
15173
15303
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15174
15304
  quotaUser?: string;
15175
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15305
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15176
15306
  returnPartialSuccess?: boolean;
15177
15307
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15178
15308
  upload_protocol?: string;
@@ -15322,7 +15452,7 @@ declare namespace gapi.client {
15322
15452
  prettyPrint?: boolean;
15323
15453
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15324
15454
  quotaUser?: string;
15325
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15455
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15326
15456
  returnPartialSuccess?: boolean;
15327
15457
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15328
15458
  upload_protocol?: string;
@@ -15473,7 +15603,7 @@ declare namespace gapi.client {
15473
15603
  prettyPrint?: boolean;
15474
15604
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15475
15605
  quotaUser?: string;
15476
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15606
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15477
15607
  returnPartialSuccess?: boolean;
15478
15608
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15479
15609
  upload_protocol?: string;
@@ -15623,7 +15753,7 @@ declare namespace gapi.client {
15623
15753
  prettyPrint?: boolean;
15624
15754
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15625
15755
  quotaUser?: string;
15626
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15756
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15627
15757
  returnPartialSuccess?: boolean;
15628
15758
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15629
15759
  upload_protocol?: string;
@@ -15773,7 +15903,7 @@ declare namespace gapi.client {
15773
15903
  prettyPrint?: boolean;
15774
15904
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15775
15905
  quotaUser?: string;
15776
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15906
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15777
15907
  returnPartialSuccess?: boolean;
15778
15908
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15779
15909
  upload_protocol?: string;
@@ -15923,7 +16053,7 @@ declare namespace gapi.client {
15923
16053
  prettyPrint?: boolean;
15924
16054
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15925
16055
  quotaUser?: string;
15926
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16056
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15927
16057
  returnPartialSuccess?: boolean;
15928
16058
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15929
16059
  upload_protocol?: string;
@@ -16070,7 +16200,7 @@ declare namespace gapi.client {
16070
16200
  prettyPrint?: boolean;
16071
16201
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16072
16202
  quotaUser?: string;
16073
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16203
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16074
16204
  returnPartialSuccess?: boolean;
16075
16205
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16076
16206
  upload_protocol?: string;
@@ -16220,7 +16350,7 @@ declare namespace gapi.client {
16220
16350
  prettyPrint?: boolean;
16221
16351
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16222
16352
  quotaUser?: string;
16223
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16353
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16224
16354
  returnPartialSuccess?: boolean;
16225
16355
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16226
16356
  upload_protocol?: string;
@@ -16784,7 +16914,7 @@ declare namespace gapi.client {
16784
16914
  prettyPrint?: boolean;
16785
16915
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16786
16916
  quotaUser?: string;
16787
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16917
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16788
16918
  returnPartialSuccess?: boolean;
16789
16919
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16790
16920
  upload_protocol?: string;
@@ -17139,7 +17269,7 @@ declare namespace gapi.client {
17139
17269
  prettyPrint?: boolean;
17140
17270
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17141
17271
  quotaUser?: string;
17142
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17272
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17143
17273
  returnPartialSuccess?: boolean;
17144
17274
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17145
17275
  upload_protocol?: string;
@@ -17496,7 +17626,7 @@ declare namespace gapi.client {
17496
17626
  prettyPrint?: boolean;
17497
17627
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17498
17628
  quotaUser?: string;
17499
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17629
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17500
17630
  returnPartialSuccess?: boolean;
17501
17631
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17502
17632
  upload_protocol?: string;
@@ -17675,7 +17805,7 @@ declare namespace gapi.client {
17675
17805
  prettyPrint?: boolean;
17676
17806
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17677
17807
  quotaUser?: string;
17678
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17808
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17679
17809
  returnPartialSuccess?: boolean;
17680
17810
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17681
17811
  upload_protocol?: string;
@@ -17862,7 +17992,7 @@ declare namespace gapi.client {
17862
17992
  prettyPrint?: boolean;
17863
17993
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17864
17994
  quotaUser?: string;
17865
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17995
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17866
17996
  returnPartialSuccess?: boolean;
17867
17997
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17868
17998
  upload_protocol?: string;
@@ -18292,7 +18422,7 @@ declare namespace gapi.client {
18292
18422
  prettyPrint?: boolean;
18293
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. */
18294
18424
  quotaUser?: string;
18295
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
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. */
18296
18426
  returnPartialSuccess?: boolean;
18297
18427
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18298
18428
  upload_protocol?: string;
@@ -18439,7 +18569,7 @@ declare namespace gapi.client {
18439
18569
  prettyPrint?: boolean;
18440
18570
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18441
18571
  quotaUser?: string;
18442
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18572
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18443
18573
  returnPartialSuccess?: boolean;
18444
18574
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18445
18575
  upload_protocol?: string;
@@ -19130,7 +19260,7 @@ declare namespace gapi.client {
19130
19260
  prettyPrint?: boolean;
19131
19261
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19132
19262
  quotaUser?: string;
19133
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19263
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19134
19264
  returnPartialSuccess?: boolean;
19135
19265
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19136
19266
  upload_protocol?: string;
@@ -19838,7 +19968,7 @@ declare namespace gapi.client {
19838
19968
  prettyPrint?: boolean;
19839
19969
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19840
19970
  quotaUser?: string;
19841
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19971
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19842
19972
  returnPartialSuccess?: boolean;
19843
19973
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19844
19974
  upload_protocol?: string;
@@ -21735,7 +21865,7 @@ declare namespace gapi.client {
21735
21865
  prettyPrint?: boolean;
21736
21866
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
21737
21867
  quotaUser?: string;
21738
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21868
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21739
21869
  returnPartialSuccess?: boolean;
21740
21870
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21741
21871
  upload_protocol?: string;
@@ -22133,7 +22263,7 @@ declare namespace gapi.client {
22133
22263
  prettyPrint?: boolean;
22134
22264
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
22135
22265
  quotaUser?: string;
22136
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22266
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22137
22267
  returnPartialSuccess?: boolean;
22138
22268
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22139
22269
  upload_protocol?: string;
@@ -22624,7 +22754,7 @@ declare namespace gapi.client {
22624
22754
  prettyPrint?: boolean;
22625
22755
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
22626
22756
  quotaUser?: string;
22627
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22757
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22628
22758
  returnPartialSuccess?: boolean;
22629
22759
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22630
22760
  upload_protocol?: string;
@@ -23343,7 +23473,7 @@ declare namespace gapi.client {
23343
23473
  prettyPrint?: boolean;
23344
23474
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
23345
23475
  quotaUser?: string;
23346
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23476
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23347
23477
  returnPartialSuccess?: boolean;
23348
23478
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23349
23479
  upload_protocol?: string;
@@ -23797,7 +23927,7 @@ declare namespace gapi.client {
23797
23927
  prettyPrint?: boolean;
23798
23928
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
23799
23929
  quotaUser?: string;
23800
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23930
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23801
23931
  returnPartialSuccess?: boolean;
23802
23932
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23803
23933
  upload_protocol?: string;
@@ -24222,7 +24352,7 @@ declare namespace gapi.client {
24222
24352
  prettyPrint?: boolean;
24223
24353
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
24224
24354
  quotaUser?: string;
24225
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
24355
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
24226
24356
  returnPartialSuccess?: boolean;
24227
24357
  /** Upload protocol for media (e.g. "raw", "multipart"). */
24228
24358
  upload_protocol?: string;
@@ -25026,7 +25156,7 @@ declare namespace gapi.client {
25026
25156
  prettyPrint?: boolean;
25027
25157
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
25028
25158
  quotaUser?: string;
25029
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25159
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25030
25160
  returnPartialSuccess?: boolean;
25031
25161
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25032
25162
  upload_protocol?: string;
@@ -25573,7 +25703,7 @@ declare namespace gapi.client {
25573
25703
  prettyPrint?: boolean;
25574
25704
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
25575
25705
  quotaUser?: string;
25576
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25706
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25577
25707
  returnPartialSuccess?: boolean;
25578
25708
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25579
25709
  upload_protocol?: string;
@@ -25928,7 +26058,7 @@ declare namespace gapi.client {
25928
26058
  prettyPrint?: boolean;
25929
26059
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
25930
26060
  quotaUser?: string;
25931
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26061
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25932
26062
  returnPartialSuccess?: boolean;
25933
26063
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25934
26064
  upload_protocol?: string;
@@ -26577,7 +26707,7 @@ declare namespace gapi.client {
26577
26707
  prettyPrint?: boolean;
26578
26708
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
26579
26709
  quotaUser?: string;
26580
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26710
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26581
26711
  returnPartialSuccess?: boolean;
26582
26712
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26583
26713
  upload_protocol?: string;
@@ -27052,7 +27182,7 @@ declare namespace gapi.client {
27052
27182
  prettyPrint?: boolean;
27053
27183
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
27054
27184
  quotaUser?: string;
27055
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27185
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27056
27186
  returnPartialSuccess?: boolean;
27057
27187
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27058
27188
  upload_protocol?: string;
@@ -27510,7 +27640,7 @@ declare namespace gapi.client {
27510
27640
  prettyPrint?: boolean;
27511
27641
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
27512
27642
  quotaUser?: string;
27513
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27643
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27514
27644
  returnPartialSuccess?: boolean;
27515
27645
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27516
27646
  upload_protocol?: string;
@@ -28140,7 +28270,7 @@ declare namespace gapi.client {
28140
28270
  prettyPrint?: boolean;
28141
28271
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
28142
28272
  quotaUser?: string;
28143
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28273
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28144
28274
  returnPartialSuccess?: boolean;
28145
28275
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28146
28276
  upload_protocol?: string;
@@ -28776,7 +28906,7 @@ declare namespace gapi.client {
28776
28906
  prettyPrint?: boolean;
28777
28907
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
28778
28908
  quotaUser?: string;
28779
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28909
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28780
28910
  returnPartialSuccess?: boolean;
28781
28911
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28782
28912
  upload_protocol?: string;
@@ -29079,7 +29209,7 @@ declare namespace gapi.client {
29079
29209
  prettyPrint?: boolean;
29080
29210
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
29081
29211
  quotaUser?: string;
29082
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29212
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29083
29213
  returnPartialSuccess?: boolean;
29084
29214
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29085
29215
  upload_protocol?: string;
@@ -29345,7 +29475,7 @@ declare namespace gapi.client {
29345
29475
  prettyPrint?: boolean;
29346
29476
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
29347
29477
  quotaUser?: string;
29348
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29478
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29349
29479
  returnPartialSuccess?: boolean;
29350
29480
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29351
29481
  upload_protocol?: string;
@@ -29878,7 +30008,7 @@ declare namespace gapi.client {
29878
30008
  prettyPrint?: boolean;
29879
30009
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
29880
30010
  quotaUser?: string;
29881
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30011
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29882
30012
  returnPartialSuccess?: boolean;
29883
30013
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29884
30014
  upload_protocol?: string;
@@ -30271,7 +30401,7 @@ declare namespace gapi.client {
30271
30401
  prettyPrint?: boolean;
30272
30402
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
30273
30403
  quotaUser?: string;
30274
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30404
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30275
30405
  returnPartialSuccess?: boolean;
30276
30406
  /** Upload protocol for media (e.g. "raw", "multipart"). */
30277
30407
  upload_protocol?: string;
@@ -31316,7 +31446,7 @@ declare namespace gapi.client {
31316
31446
  prettyPrint?: boolean;
31317
31447
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
31318
31448
  quotaUser?: string;
31319
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31449
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31320
31450
  returnPartialSuccess?: boolean;
31321
31451
  /** Upload protocol for media (e.g. "raw", "multipart"). */
31322
31452
  upload_protocol?: string;
@@ -31621,7 +31751,7 @@ declare namespace gapi.client {
31621
31751
  prettyPrint?: boolean;
31622
31752
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
31623
31753
  quotaUser?: string;
31624
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31754
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31625
31755
  returnPartialSuccess?: boolean;
31626
31756
  /** Upload protocol for media (e.g. "raw", "multipart"). */
31627
31757
  upload_protocol?: string;
@@ -32094,7 +32224,7 @@ declare namespace gapi.client {
32094
32224
  prettyPrint?: boolean;
32095
32225
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
32096
32226
  quotaUser?: string;
32097
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32227
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32098
32228
  returnPartialSuccess?: boolean;
32099
32229
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32100
32230
  upload_protocol?: string;
@@ -32547,7 +32677,7 @@ declare namespace gapi.client {
32547
32677
  prettyPrint?: boolean;
32548
32678
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
32549
32679
  quotaUser?: string;
32550
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32680
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32551
32681
  returnPartialSuccess?: boolean;
32552
32682
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32553
32683
  upload_protocol?: string;
@@ -32694,7 +32824,7 @@ declare namespace gapi.client {
32694
32824
  prettyPrint?: boolean;
32695
32825
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
32696
32826
  quotaUser?: string;
32697
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32827
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32698
32828
  returnPartialSuccess?: boolean;
32699
32829
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32700
32830
  upload_protocol?: string;
@@ -33111,7 +33241,7 @@ declare namespace gapi.client {
33111
33241
  prettyPrint?: boolean;
33112
33242
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
33113
33243
  quotaUser?: string;
33114
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33244
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33115
33245
  returnPartialSuccess?: boolean;
33116
33246
  /** Upload protocol for media (e.g. "raw", "multipart"). */
33117
33247
  upload_protocol?: string;
@@ -34230,7 +34360,7 @@ declare namespace gapi.client {
34230
34360
  prettyPrint?: boolean;
34231
34361
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34232
34362
  quotaUser?: string;
34233
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34363
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34234
34364
  returnPartialSuccess?: boolean;
34235
34365
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34236
34366
  upload_protocol?: string;
@@ -34377,7 +34507,7 @@ declare namespace gapi.client {
34377
34507
  prettyPrint?: boolean;
34378
34508
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34379
34509
  quotaUser?: string;
34380
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34510
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34381
34511
  returnPartialSuccess?: boolean;
34382
34512
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34383
34513
  upload_protocol?: string;
@@ -34879,7 +35009,7 @@ declare namespace gapi.client {
34879
35009
  prettyPrint?: boolean;
34880
35010
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34881
35011
  quotaUser?: string;
34882
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35012
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34883
35013
  returnPartialSuccess?: boolean;
34884
35014
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34885
35015
  upload_protocol?: string;
@@ -35029,7 +35159,7 @@ declare namespace gapi.client {
35029
35159
  prettyPrint?: boolean;
35030
35160
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
35031
35161
  quotaUser?: string;
35032
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35162
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35033
35163
  returnPartialSuccess?: boolean;
35034
35164
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35035
35165
  upload_protocol?: string;
@@ -35504,7 +35634,7 @@ declare namespace gapi.client {
35504
35634
  prettyPrint?: boolean;
35505
35635
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
35506
35636
  quotaUser?: string;
35507
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35637
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35508
35638
  returnPartialSuccess?: boolean;
35509
35639
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35510
35640
  upload_protocol?: string;
@@ -35979,7 +36109,7 @@ declare namespace gapi.client {
35979
36109
  prettyPrint?: boolean;
35980
36110
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
35981
36111
  quotaUser?: string;
35982
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36112
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35983
36113
  returnPartialSuccess?: boolean;
35984
36114
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35985
36115
  upload_protocol?: string;
@@ -36338,7 +36468,7 @@ declare namespace gapi.client {
36338
36468
  prettyPrint?: boolean;
36339
36469
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36340
36470
  quotaUser?: string;
36341
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36471
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36342
36472
  returnPartialSuccess?: boolean;
36343
36473
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36344
36474
  upload_protocol?: string;
@@ -36485,7 +36615,7 @@ declare namespace gapi.client {
36485
36615
  prettyPrint?: boolean;
36486
36616
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36487
36617
  quotaUser?: string;
36488
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36618
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36489
36619
  returnPartialSuccess?: boolean;
36490
36620
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36491
36621
  upload_protocol?: string;
@@ -37331,7 +37461,7 @@ declare namespace gapi.client {
37331
37461
  prettyPrint?: boolean;
37332
37462
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
37333
37463
  quotaUser?: string;
37334
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37464
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37335
37465
  returnPartialSuccess?: boolean;
37336
37466
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37337
37467
  upload_protocol?: string;
@@ -37478,7 +37608,7 @@ declare namespace gapi.client {
37478
37608
  prettyPrint?: boolean;
37479
37609
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
37480
37610
  quotaUser?: string;
37481
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37611
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37482
37612
  returnPartialSuccess?: boolean;
37483
37613
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37484
37614
  upload_protocol?: string;
@@ -37625,7 +37755,7 @@ declare namespace gapi.client {
37625
37755
  prettyPrint?: boolean;
37626
37756
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
37627
37757
  quotaUser?: string;
37628
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37758
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37629
37759
  returnPartialSuccess?: boolean;
37630
37760
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37631
37761
  upload_protocol?: string;
@@ -38778,7 +38908,7 @@ declare namespace gapi.client {
38778
38908
  prettyPrint?: boolean;
38779
38909
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
38780
38910
  quotaUser?: string;
38781
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38911
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38782
38912
  returnPartialSuccess?: boolean;
38783
38913
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38784
38914
  upload_protocol?: string;
@@ -39223,7 +39353,7 @@ declare namespace gapi.client {
39223
39353
  prettyPrint?: boolean;
39224
39354
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
39225
39355
  quotaUser?: string;
39226
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39356
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39227
39357
  returnPartialSuccess?: boolean;
39228
39358
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39229
39359
  upload_protocol?: string;
@@ -39578,7 +39708,7 @@ declare namespace gapi.client {
39578
39708
  prettyPrint?: boolean;
39579
39709
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
39580
39710
  quotaUser?: string;
39581
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39711
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39582
39712
  returnPartialSuccess?: boolean;
39583
39713
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39584
39714
  upload_protocol?: string;
@@ -41116,7 +41246,7 @@ declare namespace gapi.client {
41116
41246
  prettyPrint?: boolean;
41117
41247
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
41118
41248
  quotaUser?: string;
41119
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41249
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41120
41250
  returnPartialSuccess?: boolean;
41121
41251
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41122
41252
  upload_protocol?: string;
@@ -41263,7 +41393,7 @@ declare namespace gapi.client {
41263
41393
  prettyPrint?: boolean;
41264
41394
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
41265
41395
  quotaUser?: string;
41266
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41396
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41267
41397
  returnPartialSuccess?: boolean;
41268
41398
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41269
41399
  upload_protocol?: string;
@@ -41417,7 +41547,7 @@ declare namespace gapi.client {
41417
41547
  prettyPrint?: boolean;
41418
41548
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
41419
41549
  quotaUser?: string;
41420
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41550
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41421
41551
  returnPartialSuccess?: boolean;
41422
41552
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41423
41553
  upload_protocol?: string;
@@ -41567,7 +41697,7 @@ declare namespace gapi.client {
41567
41697
  prettyPrint?: boolean;
41568
41698
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
41569
41699
  quotaUser?: string;
41570
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41700
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41571
41701
  returnPartialSuccess?: boolean;
41572
41702
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41573
41703
  upload_protocol?: string;
@@ -42042,7 +42172,7 @@ declare namespace gapi.client {
42042
42172
  prettyPrint?: boolean;
42043
42173
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42044
42174
  quotaUser?: string;
42045
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42175
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42046
42176
  returnPartialSuccess?: boolean;
42047
42177
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42048
42178
  upload_protocol?: string;
@@ -42192,7 +42322,7 @@ declare namespace gapi.client {
42192
42322
  prettyPrint?: boolean;
42193
42323
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42194
42324
  quotaUser?: string;
42195
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42325
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42196
42326
  returnPartialSuccess?: boolean;
42197
42327
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42198
42328
  upload_protocol?: string;
@@ -42342,7 +42472,7 @@ declare namespace gapi.client {
42342
42472
  prettyPrint?: boolean;
42343
42473
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42344
42474
  quotaUser?: string;
42345
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42475
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42346
42476
  returnPartialSuccess?: boolean;
42347
42477
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42348
42478
  upload_protocol?: string;
@@ -42489,7 +42619,7 @@ declare namespace gapi.client {
42489
42619
  prettyPrint?: boolean;
42490
42620
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42491
42621
  quotaUser?: string;
42492
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42622
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42493
42623
  returnPartialSuccess?: boolean;
42494
42624
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42495
42625
  upload_protocol?: string;
@@ -42643,7 +42773,7 @@ declare namespace gapi.client {
42643
42773
  prettyPrint?: boolean;
42644
42774
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42645
42775
  quotaUser?: string;
42646
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42776
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42647
42777
  returnPartialSuccess?: boolean;
42648
42778
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42649
42779
  upload_protocol?: string;
@@ -42790,7 +42920,7 @@ declare namespace gapi.client {
42790
42920
  prettyPrint?: boolean;
42791
42921
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42792
42922
  quotaUser?: string;
42793
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42923
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42794
42924
  returnPartialSuccess?: boolean;
42795
42925
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42796
42926
  upload_protocol?: string;
@@ -42937,7 +43067,7 @@ declare namespace gapi.client {
42937
43067
  prettyPrint?: boolean;
42938
43068
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42939
43069
  quotaUser?: string;
42940
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43070
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42941
43071
  returnPartialSuccess?: boolean;
42942
43072
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42943
43073
  upload_protocol?: string;
@@ -43095,7 +43225,7 @@ declare namespace gapi.client {
43095
43225
  prettyPrint?: boolean;
43096
43226
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
43097
43227
  quotaUser?: string;
43098
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43228
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43099
43229
  returnPartialSuccess?: boolean;
43100
43230
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43101
43231
  upload_protocol?: string;
@@ -43246,7 +43376,7 @@ declare namespace gapi.client {
43246
43376
  prettyPrint?: boolean;
43247
43377
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
43248
43378
  quotaUser?: string;
43249
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43379
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43250
43380
  returnPartialSuccess?: boolean;
43251
43381
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43252
43382
  upload_protocol?: string;
@@ -43396,7 +43526,7 @@ declare namespace gapi.client {
43396
43526
  prettyPrint?: boolean;
43397
43527
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
43398
43528
  quotaUser?: string;
43399
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43529
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43400
43530
  returnPartialSuccess?: boolean;
43401
43531
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43402
43532
  upload_protocol?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1",
3
- "version": "0.4.20251107",
3
+ "version": "0.4.20251117",
4
4
  "description": "TypeScript typings for Vertex AI API v1",
5
5
  "repository": {
6
6
  "type": "git",