@maxim_mazurok/gapi.client.aiplatform-v1beta1 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 +168 -128
  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=v1beta1
12
- // Revision: 20251107
12
+ // Revision: 20251117
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -3834,17 +3834,23 @@ declare namespace gapi.client {
3834
3834
  id?: string;
3835
3835
  /** Optional. The name of the function to call. Matches [FunctionDeclaration.name]. */
3836
3836
  name?: string;
3837
+ /** Optional. The partial argument value of the function call. If provided, represents the arguments/fields that are streamed incrementally. */
3838
+ partialArgs?: GoogleCloudAiplatformV1beta1PartialArg[];
3839
+ /** Optional. Whether this is the last part of the FunctionCall. If true, another partial message for the current FunctionCall is expected to follow. */
3840
+ willContinue?: boolean;
3837
3841
  }
3838
3842
  interface GoogleCloudAiplatformV1beta1FunctionCallingConfig {
3839
3843
  /** Optional. Function names to call. Only set when the Mode is ANY. Function names should match [FunctionDeclaration.name]. With mode set to ANY, model will predict a function call from the set of function names provided. */
3840
3844
  allowedFunctionNames?: string[];
3841
3845
  /** Optional. Function calling mode. */
3842
3846
  mode?: string;
3847
+ /** 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. */
3848
+ streamFunctionCallArguments?: boolean;
3843
3849
  }
3844
3850
  interface GoogleCloudAiplatformV1beta1FunctionDeclaration {
3845
3851
  /** Optional. Description and purpose of the function. Model uses it to decide how and whether to call the function. */
3846
3852
  description?: string;
3847
- /** Required. The name of the function to call. Must start with a letter or an underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots and dashes, with a maximum length of 64. */
3853
+ /** Required. The name of the function to call. Must start with a letter or an underscore. Must be a-z, A-Z, 0-9, or contain underscores, dots, colons and dashes, with a maximum length of 64. */
3848
3854
  name?: string;
3849
3855
  /** Optional. Describes the parameters to this function in JSON Schema Object format. Reflects the Open API 3.03 Parameter Object. string Key: the name of the parameter. Parameter names are case sensitive. Schema Value: the Schema defining the type used for the parameter. For function with no parameters, this can be left unset. Parameter names must start with a letter or an underscore and must only contain chars a-z, A-Z, 0-9, or underscores with a maximum length of 64. Example with 1 required and 1 optional parameter: type: OBJECT properties: param1: type: STRING param2: type: INTEGER required: - param1 */
3850
3856
  parameters?: GoogleCloudAiplatformV1beta1Schema;
@@ -4201,6 +4207,8 @@ declare namespace gapi.client {
4201
4207
  includeThoughts?: boolean;
4202
4208
  /** Optional. The token budget for the model's thinking process. The model will make a best effort to stay within this budget. This can be used to control the trade-off between response quality and latency. */
4203
4209
  thinkingBudget?: number;
4210
+ /** Optional. The number of thoughts tokens that the model should generate. */
4211
+ thinkingLevel?: string;
4204
4212
  }
4205
4213
  interface GoogleCloudAiplatformV1beta1GenericOperationMetadata {
4206
4214
  /** Output only. Time when the operation was created. */
@@ -4387,6 +4395,8 @@ declare namespace gapi.client {
4387
4395
  aspectRatio?: string;
4388
4396
  /** Optional. The image output format for generated images. */
4389
4397
  imageOutputOptions?: GoogleCloudAiplatformV1beta1ImageConfigImageOutputOptions;
4398
+ /** Optional. Specifies the size of generated images. Supported values are `1K`, `2K`, `4K`. If not specified, the model will use default value `1K`. */
4399
+ imageSize?: string;
4390
4400
  /** Optional. Controls whether the model can generate people. */
4391
4401
  personGeneration?: string;
4392
4402
  }
@@ -5229,6 +5239,8 @@ declare namespace gapi.client {
5229
5239
  gpuPartitionSize?: string;
5230
5240
  /** Immutable. The type of the machine. See the [list of machine types supported for prediction](https://cloud.google.com/vertex-ai/docs/predictions/configure-compute#machine-types) See the [list of machine types supported for custom training](https://cloud.google.com/vertex-ai/docs/training/configure-compute#machine-types). For DeployedModel this field is optional, and the default value is `n1-standard-2`. For BatchPredictionJob or as part of WorkerPoolSpec this field is required. */
5231
5241
  machineType?: string;
5242
+ /** Optional. Immutable. The minimum GPU driver version that this machine requires. For example, "535.104.06". If not specified, the default GPU driver version will be used by the underlying infrastructure. */
5243
+ minGpuDriverVersion?: string;
5232
5244
  /** Optional. Immutable. The number of nodes per replica for multihost GPU deployments. */
5233
5245
  multihostGpuNodeCount?: number;
5234
5246
  /** Optional. Immutable. Configuration controlling how this resource pool consumes reservation. */
@@ -6834,6 +6846,8 @@ declare namespace gapi.client {
6834
6846
  functionResponse?: GoogleCloudAiplatformV1beta1FunctionResponse;
6835
6847
  /** Optional. The inline data content of the part. This can be used to include images, audio, or video in a request. */
6836
6848
  inlineData?: GoogleCloudAiplatformV1beta1Blob;
6849
+ /** per part media resolution. Media resolution for the input media. */
6850
+ mediaResolution?: GoogleCloudAiplatformV1beta1PartMediaResolution;
6837
6851
  /** Optional. The text content of the part. */
6838
6852
  text?: string;
6839
6853
  /** Optional. Indicates whether the `part` represents the model's thought process or reasoning. */
@@ -6843,6 +6857,24 @@ declare namespace gapi.client {
6843
6857
  /** Optional. Video metadata. The metadata should only be specified while the video data is presented in inline_data or file_data. */
6844
6858
  videoMetadata?: GoogleCloudAiplatformV1beta1VideoMetadata;
6845
6859
  }
6860
+ interface GoogleCloudAiplatformV1beta1PartialArg {
6861
+ /** Optional. Represents a boolean value. */
6862
+ boolValue?: boolean;
6863
+ /** Required. A JSON Path (RFC 9535) to the argument being streamed. https://datatracker.ietf.org/doc/html/rfc9535. e.g. "$.foo.bar[0].data". */
6864
+ jsonPath?: string;
6865
+ /** Optional. Represents a null value. */
6866
+ nullValue?: string;
6867
+ /** Optional. Represents a double value. */
6868
+ numberValue?: number;
6869
+ /** Optional. Represents a string value. */
6870
+ stringValue?: string;
6871
+ /** 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. */
6872
+ willContinue?: boolean;
6873
+ }
6874
+ interface GoogleCloudAiplatformV1beta1PartMediaResolution {
6875
+ /** The tokenization quality used for given media. */
6876
+ level?: string;
6877
+ }
6846
6878
  interface GoogleCloudAiplatformV1beta1PartnerModelTuningSpec {
6847
6879
  /** Hyperparameters for tuning. The accepted hyper_parameters and their valid range of values will differ depending on the base model. */
6848
6880
  hyperParameters?: {[P in string]: any};
@@ -8345,6 +8377,12 @@ declare namespace gapi.client {
8345
8377
  /** The IDs for the removed examples. */
8346
8378
  exampleIds?: string[];
8347
8379
  }
8380
+ interface GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig {
8381
+ /** 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. */
8382
+ mimeType?: string;
8383
+ /** Optional. The sample of the custom voice. */
8384
+ voiceSampleAudio?: string;
8385
+ }
8348
8386
  interface GoogleCloudAiplatformV1beta1ReportExecutionEventRequest {
8349
8387
  /** Required. The type of the event. */
8350
8388
  eventType?: string;
@@ -11735,7 +11773,7 @@ declare namespace gapi.client {
11735
11773
  tuningJob?: string;
11736
11774
  }
11737
11775
  interface GoogleCloudAiplatformV1beta1TuningDataStats {
11738
- /** Output only. Statistics for distillation. */
11776
+ /** Output only. Statistics for distillation prompt dataset. These statistics do not include the responses sampled from the teacher model. */
11739
11777
  distillationDataStats?: GoogleCloudAiplatformV1beta1DistillationDataStats;
11740
11778
  /** Output only. Statistics for preference optimization. */
11741
11779
  preferenceOptimizationDataStats?: GoogleCloudAiplatformV1beta1PreferenceOptimizationDataStats;
@@ -12095,6 +12133,8 @@ declare namespace gapi.client {
12095
12133
  interface GoogleCloudAiplatformV1beta1VoiceConfig {
12096
12134
  /** The configuration for a prebuilt voice. */
12097
12135
  prebuiltVoiceConfig?: GoogleCloudAiplatformV1beta1PrebuiltVoiceConfig;
12136
+ /** Optional. The configuration for a replicated voice. This enables users to replicate a voice from an audio sample. */
12137
+ replicatedVoiceConfig?: GoogleCloudAiplatformV1beta1ReplicatedVoiceConfig;
12098
12138
  }
12099
12139
  interface GoogleCloudAiplatformV1beta1WorkerPoolSpec {
12100
12140
  /** The custom container task. */
@@ -12202,7 +12242,7 @@ declare namespace gapi.client {
12202
12242
  nextPageToken?: string;
12203
12243
  /** A list of operations that matches the specified filter in the request. */
12204
12244
  operations?: GoogleLongrunningOperation[];
12205
- /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections e.g. when attempting to list all resources across all supported locations. */
12245
+ /** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
12206
12246
  unreachable?: string[];
12207
12247
  }
12208
12248
  interface GoogleLongrunningOperation {
@@ -12384,7 +12424,7 @@ declare namespace gapi.client {
12384
12424
  prettyPrint?: boolean;
12385
12425
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12386
12426
  quotaUser?: string;
12387
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12427
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12388
12428
  returnPartialSuccess?: boolean;
12389
12429
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12390
12430
  upload_protocol?: string;
@@ -12534,7 +12574,7 @@ declare namespace gapi.client {
12534
12574
  prettyPrint?: boolean;
12535
12575
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12536
12576
  quotaUser?: string;
12537
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12577
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12538
12578
  returnPartialSuccess?: boolean;
12539
12579
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12540
12580
  upload_protocol?: string;
@@ -12806,7 +12846,7 @@ declare namespace gapi.client {
12806
12846
  prettyPrint?: boolean;
12807
12847
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12808
12848
  quotaUser?: string;
12809
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12849
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12810
12850
  returnPartialSuccess?: boolean;
12811
12851
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12812
12852
  upload_protocol?: string;
@@ -12956,7 +12996,7 @@ declare namespace gapi.client {
12956
12996
  prettyPrint?: boolean;
12957
12997
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
12958
12998
  quotaUser?: string;
12959
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12999
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
12960
13000
  returnPartialSuccess?: boolean;
12961
13001
  /** Upload protocol for media (e.g. "raw", "multipart"). */
12962
13002
  upload_protocol?: string;
@@ -13106,7 +13146,7 @@ declare namespace gapi.client {
13106
13146
  prettyPrint?: boolean;
13107
13147
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13108
13148
  quotaUser?: string;
13109
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13149
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13110
13150
  returnPartialSuccess?: boolean;
13111
13151
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13112
13152
  upload_protocol?: string;
@@ -13256,7 +13296,7 @@ declare namespace gapi.client {
13256
13296
  prettyPrint?: boolean;
13257
13297
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13258
13298
  quotaUser?: string;
13259
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13299
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13260
13300
  returnPartialSuccess?: boolean;
13261
13301
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13262
13302
  upload_protocol?: string;
@@ -13406,7 +13446,7 @@ declare namespace gapi.client {
13406
13446
  prettyPrint?: boolean;
13407
13447
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13408
13448
  quotaUser?: string;
13409
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13449
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13410
13450
  returnPartialSuccess?: boolean;
13411
13451
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13412
13452
  upload_protocol?: string;
@@ -13799,7 +13839,7 @@ declare namespace gapi.client {
13799
13839
  prettyPrint?: boolean;
13800
13840
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13801
13841
  quotaUser?: string;
13802
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13842
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13803
13843
  returnPartialSuccess?: boolean;
13804
13844
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13805
13845
  upload_protocol?: string;
@@ -13946,7 +13986,7 @@ declare namespace gapi.client {
13946
13986
  prettyPrint?: boolean;
13947
13987
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13948
13988
  quotaUser?: string;
13949
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13989
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13950
13990
  returnPartialSuccess?: boolean;
13951
13991
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13952
13992
  upload_protocol?: string;
@@ -14316,7 +14356,7 @@ declare namespace gapi.client {
14316
14356
  prettyPrint?: boolean;
14317
14357
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14318
14358
  quotaUser?: string;
14319
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14359
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14320
14360
  returnPartialSuccess?: boolean;
14321
14361
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14322
14362
  upload_protocol?: string;
@@ -14466,7 +14506,7 @@ declare namespace gapi.client {
14466
14506
  prettyPrint?: boolean;
14467
14507
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14468
14508
  quotaUser?: string;
14469
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14509
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14470
14510
  returnPartialSuccess?: boolean;
14471
14511
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14472
14512
  upload_protocol?: string;
@@ -14676,7 +14716,7 @@ declare namespace gapi.client {
14676
14716
  prettyPrint?: boolean;
14677
14717
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14678
14718
  quotaUser?: string;
14679
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14719
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14680
14720
  returnPartialSuccess?: boolean;
14681
14721
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14682
14722
  upload_protocol?: string;
@@ -15205,7 +15245,7 @@ declare namespace gapi.client {
15205
15245
  prettyPrint?: boolean;
15206
15246
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15207
15247
  quotaUser?: string;
15208
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15248
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15209
15249
  returnPartialSuccess?: boolean;
15210
15250
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15211
15251
  upload_protocol?: string;
@@ -15328,7 +15368,7 @@ declare namespace gapi.client {
15328
15368
  prettyPrint?: boolean;
15329
15369
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15330
15370
  quotaUser?: string;
15331
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15371
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15332
15372
  returnPartialSuccess?: boolean;
15333
15373
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15334
15374
  upload_protocol?: string;
@@ -15451,7 +15491,7 @@ declare namespace gapi.client {
15451
15491
  prettyPrint?: boolean;
15452
15492
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15453
15493
  quotaUser?: string;
15454
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15494
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15455
15495
  returnPartialSuccess?: boolean;
15456
15496
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15457
15497
  upload_protocol?: string;
@@ -15574,7 +15614,7 @@ declare namespace gapi.client {
15574
15614
  prettyPrint?: boolean;
15575
15615
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15576
15616
  quotaUser?: string;
15577
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15617
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15578
15618
  returnPartialSuccess?: boolean;
15579
15619
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15580
15620
  upload_protocol?: string;
@@ -15724,7 +15764,7 @@ declare namespace gapi.client {
15724
15764
  prettyPrint?: boolean;
15725
15765
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15726
15766
  quotaUser?: string;
15727
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15767
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15728
15768
  returnPartialSuccess?: boolean;
15729
15769
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15730
15770
  upload_protocol?: string;
@@ -15874,7 +15914,7 @@ declare namespace gapi.client {
15874
15914
  prettyPrint?: boolean;
15875
15915
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15876
15916
  quotaUser?: string;
15877
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15917
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15878
15918
  returnPartialSuccess?: boolean;
15879
15919
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15880
15920
  upload_protocol?: string;
@@ -16024,7 +16064,7 @@ declare namespace gapi.client {
16024
16064
  prettyPrint?: boolean;
16025
16065
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16026
16066
  quotaUser?: string;
16027
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16067
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16028
16068
  returnPartialSuccess?: boolean;
16029
16069
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16030
16070
  upload_protocol?: string;
@@ -16147,7 +16187,7 @@ declare namespace gapi.client {
16147
16187
  prettyPrint?: boolean;
16148
16188
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16149
16189
  quotaUser?: string;
16150
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16190
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16151
16191
  returnPartialSuccess?: boolean;
16152
16192
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16153
16193
  upload_protocol?: string;
@@ -16270,7 +16310,7 @@ declare namespace gapi.client {
16270
16310
  prettyPrint?: boolean;
16271
16311
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16272
16312
  quotaUser?: string;
16273
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16313
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16274
16314
  returnPartialSuccess?: boolean;
16275
16315
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16276
16316
  upload_protocol?: string;
@@ -16393,7 +16433,7 @@ declare namespace gapi.client {
16393
16433
  prettyPrint?: boolean;
16394
16434
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16395
16435
  quotaUser?: string;
16396
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16436
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16397
16437
  returnPartialSuccess?: boolean;
16398
16438
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16399
16439
  upload_protocol?: string;
@@ -16518,7 +16558,7 @@ declare namespace gapi.client {
16518
16558
  prettyPrint?: boolean;
16519
16559
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16520
16560
  quotaUser?: string;
16521
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16561
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16522
16562
  returnPartialSuccess?: boolean;
16523
16563
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16524
16564
  upload_protocol?: string;
@@ -16641,7 +16681,7 @@ declare namespace gapi.client {
16641
16681
  prettyPrint?: boolean;
16642
16682
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16643
16683
  quotaUser?: string;
16644
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16684
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16645
16685
  returnPartialSuccess?: boolean;
16646
16686
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16647
16687
  upload_protocol?: string;
@@ -16792,7 +16832,7 @@ declare namespace gapi.client {
16792
16832
  prettyPrint?: boolean;
16793
16833
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16794
16834
  quotaUser?: string;
16795
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16835
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16796
16836
  returnPartialSuccess?: boolean;
16797
16837
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16798
16838
  upload_protocol?: string;
@@ -16942,7 +16982,7 @@ declare namespace gapi.client {
16942
16982
  prettyPrint?: boolean;
16943
16983
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16944
16984
  quotaUser?: string;
16945
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16985
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16946
16986
  returnPartialSuccess?: boolean;
16947
16987
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16948
16988
  upload_protocol?: string;
@@ -17093,7 +17133,7 @@ declare namespace gapi.client {
17093
17133
  prettyPrint?: boolean;
17094
17134
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17095
17135
  quotaUser?: string;
17096
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17136
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17097
17137
  returnPartialSuccess?: boolean;
17098
17138
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17099
17139
  upload_protocol?: string;
@@ -17244,7 +17284,7 @@ declare namespace gapi.client {
17244
17284
  prettyPrint?: boolean;
17245
17285
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17246
17286
  quotaUser?: string;
17247
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17287
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17248
17288
  returnPartialSuccess?: boolean;
17249
17289
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17250
17290
  upload_protocol?: string;
@@ -17394,7 +17434,7 @@ declare namespace gapi.client {
17394
17434
  prettyPrint?: boolean;
17395
17435
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17396
17436
  quotaUser?: string;
17397
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17437
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17398
17438
  returnPartialSuccess?: boolean;
17399
17439
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17400
17440
  upload_protocol?: string;
@@ -17544,7 +17584,7 @@ declare namespace gapi.client {
17544
17584
  prettyPrint?: boolean;
17545
17585
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17546
17586
  quotaUser?: string;
17547
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17587
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17548
17588
  returnPartialSuccess?: boolean;
17549
17589
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17550
17590
  upload_protocol?: string;
@@ -17754,7 +17794,7 @@ declare namespace gapi.client {
17754
17794
  prettyPrint?: boolean;
17755
17795
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17756
17796
  quotaUser?: string;
17757
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17797
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17758
17798
  returnPartialSuccess?: boolean;
17759
17799
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17760
17800
  upload_protocol?: string;
@@ -17904,7 +17944,7 @@ declare namespace gapi.client {
17904
17944
  prettyPrint?: boolean;
17905
17945
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
17906
17946
  quotaUser?: string;
17907
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17947
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17908
17948
  returnPartialSuccess?: boolean;
17909
17949
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17910
17950
  upload_protocol?: string;
@@ -18054,7 +18094,7 @@ declare namespace gapi.client {
18054
18094
  prettyPrint?: boolean;
18055
18095
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18056
18096
  quotaUser?: string;
18057
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18097
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18058
18098
  returnPartialSuccess?: boolean;
18059
18099
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18060
18100
  upload_protocol?: string;
@@ -18204,7 +18244,7 @@ declare namespace gapi.client {
18204
18244
  prettyPrint?: boolean;
18205
18245
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18206
18246
  quotaUser?: string;
18207
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18247
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18208
18248
  returnPartialSuccess?: boolean;
18209
18249
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18210
18250
  upload_protocol?: string;
@@ -18357,7 +18397,7 @@ declare namespace gapi.client {
18357
18397
  prettyPrint?: boolean;
18358
18398
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18359
18399
  quotaUser?: string;
18360
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18400
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18361
18401
  returnPartialSuccess?: boolean;
18362
18402
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18363
18403
  upload_protocol?: string;
@@ -18507,7 +18547,7 @@ declare namespace gapi.client {
18507
18547
  prettyPrint?: boolean;
18508
18548
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18509
18549
  quotaUser?: string;
18510
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18550
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18511
18551
  returnPartialSuccess?: boolean;
18512
18552
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18513
18553
  upload_protocol?: string;
@@ -18657,7 +18697,7 @@ declare namespace gapi.client {
18657
18697
  prettyPrint?: boolean;
18658
18698
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18659
18699
  quotaUser?: string;
18660
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18700
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18661
18701
  returnPartialSuccess?: boolean;
18662
18702
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18663
18703
  upload_protocol?: string;
@@ -18807,7 +18847,7 @@ declare namespace gapi.client {
18807
18847
  prettyPrint?: boolean;
18808
18848
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18809
18849
  quotaUser?: string;
18810
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18850
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18811
18851
  returnPartialSuccess?: boolean;
18812
18852
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18813
18853
  upload_protocol?: string;
@@ -18957,7 +18997,7 @@ declare namespace gapi.client {
18957
18997
  prettyPrint?: boolean;
18958
18998
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18959
18999
  quotaUser?: string;
18960
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19000
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18961
19001
  returnPartialSuccess?: boolean;
18962
19002
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18963
19003
  upload_protocol?: string;
@@ -19108,7 +19148,7 @@ declare namespace gapi.client {
19108
19148
  prettyPrint?: boolean;
19109
19149
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19110
19150
  quotaUser?: string;
19111
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19151
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19112
19152
  returnPartialSuccess?: boolean;
19113
19153
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19114
19154
  upload_protocol?: string;
@@ -19258,7 +19298,7 @@ declare namespace gapi.client {
19258
19298
  prettyPrint?: boolean;
19259
19299
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19260
19300
  quotaUser?: string;
19261
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19301
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19262
19302
  returnPartialSuccess?: boolean;
19263
19303
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19264
19304
  upload_protocol?: string;
@@ -19408,7 +19448,7 @@ declare namespace gapi.client {
19408
19448
  prettyPrint?: boolean;
19409
19449
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19410
19450
  quotaUser?: string;
19411
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19451
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19412
19452
  returnPartialSuccess?: boolean;
19413
19453
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19414
19454
  upload_protocol?: string;
@@ -19558,7 +19598,7 @@ declare namespace gapi.client {
19558
19598
  prettyPrint?: boolean;
19559
19599
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19560
19600
  quotaUser?: string;
19561
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19601
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19562
19602
  returnPartialSuccess?: boolean;
19563
19603
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19564
19604
  upload_protocol?: string;
@@ -19705,7 +19745,7 @@ declare namespace gapi.client {
19705
19745
  prettyPrint?: boolean;
19706
19746
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19707
19747
  quotaUser?: string;
19708
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19748
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19709
19749
  returnPartialSuccess?: boolean;
19710
19750
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19711
19751
  upload_protocol?: string;
@@ -19855,7 +19895,7 @@ declare namespace gapi.client {
19855
19895
  prettyPrint?: boolean;
19856
19896
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19857
19897
  quotaUser?: string;
19858
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19898
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19859
19899
  returnPartialSuccess?: boolean;
19860
19900
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19861
19901
  upload_protocol?: string;
@@ -20042,7 +20082,7 @@ declare namespace gapi.client {
20042
20082
  prettyPrint?: boolean;
20043
20083
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
20044
20084
  quotaUser?: string;
20045
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20085
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20046
20086
  returnPartialSuccess?: boolean;
20047
20087
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20048
20088
  upload_protocol?: string;
@@ -20192,7 +20232,7 @@ declare namespace gapi.client {
20192
20232
  prettyPrint?: boolean;
20193
20233
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
20194
20234
  quotaUser?: string;
20195
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20235
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20196
20236
  returnPartialSuccess?: boolean;
20197
20237
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20198
20238
  upload_protocol?: string;
@@ -20756,7 +20796,7 @@ declare namespace gapi.client {
20756
20796
  prettyPrint?: boolean;
20757
20797
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
20758
20798
  quotaUser?: string;
20759
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20799
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20760
20800
  returnPartialSuccess?: boolean;
20761
20801
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20762
20802
  upload_protocol?: string;
@@ -21111,7 +21151,7 @@ declare namespace gapi.client {
21111
21151
  prettyPrint?: boolean;
21112
21152
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
21113
21153
  quotaUser?: string;
21114
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21154
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21115
21155
  returnPartialSuccess?: boolean;
21116
21156
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21117
21157
  upload_protocol?: string;
@@ -21468,7 +21508,7 @@ declare namespace gapi.client {
21468
21508
  prettyPrint?: boolean;
21469
21509
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
21470
21510
  quotaUser?: string;
21471
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21511
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21472
21512
  returnPartialSuccess?: boolean;
21473
21513
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21474
21514
  upload_protocol?: string;
@@ -21647,7 +21687,7 @@ declare namespace gapi.client {
21647
21687
  prettyPrint?: boolean;
21648
21688
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
21649
21689
  quotaUser?: string;
21650
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21690
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21651
21691
  returnPartialSuccess?: boolean;
21652
21692
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21653
21693
  upload_protocol?: string;
@@ -21834,7 +21874,7 @@ declare namespace gapi.client {
21834
21874
  prettyPrint?: boolean;
21835
21875
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
21836
21876
  quotaUser?: string;
21837
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21877
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21838
21878
  returnPartialSuccess?: boolean;
21839
21879
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21840
21880
  upload_protocol?: string;
@@ -22264,7 +22304,7 @@ declare namespace gapi.client {
22264
22304
  prettyPrint?: boolean;
22265
22305
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
22266
22306
  quotaUser?: string;
22267
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22307
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22268
22308
  returnPartialSuccess?: boolean;
22269
22309
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22270
22310
  upload_protocol?: string;
@@ -22411,7 +22451,7 @@ declare namespace gapi.client {
22411
22451
  prettyPrint?: boolean;
22412
22452
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
22413
22453
  quotaUser?: string;
22414
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22454
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22415
22455
  returnPartialSuccess?: boolean;
22416
22456
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22417
22457
  upload_protocol?: string;
@@ -23189,7 +23229,7 @@ declare namespace gapi.client {
23189
23229
  prettyPrint?: boolean;
23190
23230
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
23191
23231
  quotaUser?: string;
23192
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23232
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23193
23233
  returnPartialSuccess?: boolean;
23194
23234
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23195
23235
  upload_protocol?: string;
@@ -23575,7 +23615,7 @@ declare namespace gapi.client {
23575
23615
  prettyPrint?: boolean;
23576
23616
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
23577
23617
  quotaUser?: string;
23578
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23618
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23579
23619
  returnPartialSuccess?: boolean;
23580
23620
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23581
23621
  upload_protocol?: string;
@@ -24047,7 +24087,7 @@ declare namespace gapi.client {
24047
24087
  prettyPrint?: boolean;
24048
24088
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
24049
24089
  quotaUser?: string;
24050
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
24090
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
24051
24091
  returnPartialSuccess?: boolean;
24052
24092
  /** Upload protocol for media (e.g. "raw", "multipart"). */
24053
24093
  upload_protocol?: string;
@@ -25463,7 +25503,7 @@ declare namespace gapi.client {
25463
25503
  prettyPrint?: boolean;
25464
25504
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
25465
25505
  quotaUser?: string;
25466
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25506
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25467
25507
  returnPartialSuccess?: boolean;
25468
25508
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25469
25509
  upload_protocol?: string;
@@ -25733,7 +25773,7 @@ declare namespace gapi.client {
25733
25773
  prettyPrint?: boolean;
25734
25774
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
25735
25775
  quotaUser?: string;
25736
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25776
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25737
25777
  returnPartialSuccess?: boolean;
25738
25778
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25739
25779
  upload_protocol?: string;
@@ -26061,7 +26101,7 @@ declare namespace gapi.client {
26061
26101
  prettyPrint?: boolean;
26062
26102
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
26063
26103
  quotaUser?: string;
26064
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26104
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26065
26105
  returnPartialSuccess?: boolean;
26066
26106
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26067
26107
  upload_protocol?: string;
@@ -26393,7 +26433,7 @@ declare namespace gapi.client {
26393
26433
  prettyPrint?: boolean;
26394
26434
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
26395
26435
  quotaUser?: string;
26396
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26436
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26397
26437
  returnPartialSuccess?: boolean;
26398
26438
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26399
26439
  upload_protocol?: string;
@@ -26543,7 +26583,7 @@ declare namespace gapi.client {
26543
26583
  prettyPrint?: boolean;
26544
26584
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
26545
26585
  quotaUser?: string;
26546
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26586
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26547
26587
  returnPartialSuccess?: boolean;
26548
26588
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26549
26589
  upload_protocol?: string;
@@ -27113,7 +27153,7 @@ declare namespace gapi.client {
27113
27153
  prettyPrint?: boolean;
27114
27154
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
27115
27155
  quotaUser?: string;
27116
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27156
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27117
27157
  returnPartialSuccess?: boolean;
27118
27158
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27119
27159
  upload_protocol?: string;
@@ -27263,7 +27303,7 @@ declare namespace gapi.client {
27263
27303
  prettyPrint?: boolean;
27264
27304
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
27265
27305
  quotaUser?: string;
27266
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27306
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27267
27307
  returnPartialSuccess?: boolean;
27268
27308
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27269
27309
  upload_protocol?: string;
@@ -27837,7 +27877,7 @@ declare namespace gapi.client {
27837
27877
  prettyPrint?: boolean;
27838
27878
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
27839
27879
  quotaUser?: string;
27840
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27880
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27841
27881
  returnPartialSuccess?: boolean;
27842
27882
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27843
27883
  upload_protocol?: string;
@@ -28174,7 +28214,7 @@ declare namespace gapi.client {
28174
28214
  prettyPrint?: boolean;
28175
28215
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
28176
28216
  quotaUser?: string;
28177
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28217
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28178
28218
  returnPartialSuccess?: boolean;
28179
28219
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28180
28220
  upload_protocol?: string;
@@ -28578,7 +28618,7 @@ declare namespace gapi.client {
28578
28618
  prettyPrint?: boolean;
28579
28619
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
28580
28620
  quotaUser?: string;
28581
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28621
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28582
28622
  returnPartialSuccess?: boolean;
28583
28623
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28584
28624
  upload_protocol?: string;
@@ -29070,7 +29110,7 @@ declare namespace gapi.client {
29070
29110
  prettyPrint?: boolean;
29071
29111
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
29072
29112
  quotaUser?: string;
29073
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29113
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29074
29114
  returnPartialSuccess?: boolean;
29075
29115
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29076
29116
  upload_protocol?: string;
@@ -29847,7 +29887,7 @@ declare namespace gapi.client {
29847
29887
  prettyPrint?: boolean;
29848
29888
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
29849
29889
  quotaUser?: string;
29850
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29890
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29851
29891
  returnPartialSuccess?: boolean;
29852
29892
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29853
29893
  upload_protocol?: string;
@@ -30301,7 +30341,7 @@ declare namespace gapi.client {
30301
30341
  prettyPrint?: boolean;
30302
30342
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
30303
30343
  quotaUser?: string;
30304
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30344
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30305
30345
  returnPartialSuccess?: boolean;
30306
30346
  /** Upload protocol for media (e.g. "raw", "multipart"). */
30307
30347
  upload_protocol?: string;
@@ -30732,7 +30772,7 @@ declare namespace gapi.client {
30732
30772
  prettyPrint?: boolean;
30733
30773
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
30734
30774
  quotaUser?: string;
30735
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30775
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30736
30776
  returnPartialSuccess?: boolean;
30737
30777
  /** Upload protocol for media (e.g. "raw", "multipart"). */
30738
30778
  upload_protocol?: string;
@@ -31536,7 +31576,7 @@ declare namespace gapi.client {
31536
31576
  prettyPrint?: boolean;
31537
31577
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
31538
31578
  quotaUser?: string;
31539
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31579
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31540
31580
  returnPartialSuccess?: boolean;
31541
31581
  /** Upload protocol for media (e.g. "raw", "multipart"). */
31542
31582
  upload_protocol?: string;
@@ -32085,7 +32125,7 @@ declare namespace gapi.client {
32085
32125
  prettyPrint?: boolean;
32086
32126
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
32087
32127
  quotaUser?: string;
32088
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32128
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32089
32129
  returnPartialSuccess?: boolean;
32090
32130
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32091
32131
  upload_protocol?: string;
@@ -32440,7 +32480,7 @@ declare namespace gapi.client {
32440
32480
  prettyPrint?: boolean;
32441
32481
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
32442
32482
  quotaUser?: string;
32443
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32483
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32444
32484
  returnPartialSuccess?: boolean;
32445
32485
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32446
32486
  upload_protocol?: string;
@@ -33089,7 +33129,7 @@ declare namespace gapi.client {
33089
33129
  prettyPrint?: boolean;
33090
33130
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
33091
33131
  quotaUser?: string;
33092
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33132
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33093
33133
  returnPartialSuccess?: boolean;
33094
33134
  /** Upload protocol for media (e.g. "raw", "multipart"). */
33095
33135
  upload_protocol?: string;
@@ -33622,7 +33662,7 @@ declare namespace gapi.client {
33622
33662
  prettyPrint?: boolean;
33623
33663
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
33624
33664
  quotaUser?: string;
33625
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33665
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33626
33666
  returnPartialSuccess?: boolean;
33627
33667
  /** Upload protocol for media (e.g. "raw", "multipart"). */
33628
33668
  upload_protocol?: string;
@@ -34080,7 +34120,7 @@ declare namespace gapi.client {
34080
34120
  prettyPrint?: boolean;
34081
34121
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34082
34122
  quotaUser?: string;
34083
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34123
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34084
34124
  returnPartialSuccess?: boolean;
34085
34125
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34086
34126
  upload_protocol?: string;
@@ -34710,7 +34750,7 @@ declare namespace gapi.client {
34710
34750
  prettyPrint?: boolean;
34711
34751
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34712
34752
  quotaUser?: string;
34713
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34753
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
34714
34754
  returnPartialSuccess?: boolean;
34715
34755
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34716
34756
  upload_protocol?: string;
@@ -35346,7 +35386,7 @@ declare namespace gapi.client {
35346
35386
  prettyPrint?: boolean;
35347
35387
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
35348
35388
  quotaUser?: string;
35349
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35389
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35350
35390
  returnPartialSuccess?: boolean;
35351
35391
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35352
35392
  upload_protocol?: string;
@@ -35649,7 +35689,7 @@ declare namespace gapi.client {
35649
35689
  prettyPrint?: boolean;
35650
35690
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
35651
35691
  quotaUser?: string;
35652
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35692
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35653
35693
  returnPartialSuccess?: boolean;
35654
35694
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35655
35695
  upload_protocol?: string;
@@ -35915,7 +35955,7 @@ declare namespace gapi.client {
35915
35955
  prettyPrint?: boolean;
35916
35956
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
35917
35957
  quotaUser?: string;
35918
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35958
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35919
35959
  returnPartialSuccess?: boolean;
35920
35960
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35921
35961
  upload_protocol?: string;
@@ -36601,7 +36641,7 @@ declare namespace gapi.client {
36601
36641
  prettyPrint?: boolean;
36602
36642
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36603
36643
  quotaUser?: string;
36604
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36644
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36605
36645
  returnPartialSuccess?: boolean;
36606
36646
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36607
36647
  upload_protocol?: string;
@@ -37083,7 +37123,7 @@ declare namespace gapi.client {
37083
37123
  prettyPrint?: boolean;
37084
37124
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
37085
37125
  quotaUser?: string;
37086
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37126
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37087
37127
  returnPartialSuccess?: boolean;
37088
37128
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37089
37129
  upload_protocol?: string;
@@ -37476,7 +37516,7 @@ declare namespace gapi.client {
37476
37516
  prettyPrint?: boolean;
37477
37517
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
37478
37518
  quotaUser?: string;
37479
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37519
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37480
37520
  returnPartialSuccess?: boolean;
37481
37521
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37482
37522
  upload_protocol?: string;
@@ -38519,7 +38559,7 @@ declare namespace gapi.client {
38519
38559
  prettyPrint?: boolean;
38520
38560
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
38521
38561
  quotaUser?: string;
38522
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38562
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38523
38563
  returnPartialSuccess?: boolean;
38524
38564
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38525
38565
  upload_protocol?: string;
@@ -38939,7 +38979,7 @@ declare namespace gapi.client {
38939
38979
  prettyPrint?: boolean;
38940
38980
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
38941
38981
  quotaUser?: string;
38942
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38982
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38943
38983
  returnPartialSuccess?: boolean;
38944
38984
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38945
38985
  upload_protocol?: string;
@@ -39527,7 +39567,7 @@ declare namespace gapi.client {
39527
39567
  prettyPrint?: boolean;
39528
39568
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
39529
39569
  quotaUser?: string;
39530
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39570
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39531
39571
  returnPartialSuccess?: boolean;
39532
39572
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39533
39573
  upload_protocol?: string;
@@ -39980,7 +40020,7 @@ declare namespace gapi.client {
39980
40020
  prettyPrint?: boolean;
39981
40021
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
39982
40022
  quotaUser?: string;
39983
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40023
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39984
40024
  returnPartialSuccess?: boolean;
39985
40025
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39986
40026
  upload_protocol?: string;
@@ -40127,7 +40167,7 @@ declare namespace gapi.client {
40127
40167
  prettyPrint?: boolean;
40128
40168
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
40129
40169
  quotaUser?: string;
40130
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40170
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40131
40171
  returnPartialSuccess?: boolean;
40132
40172
  /** Upload protocol for media (e.g. "raw", "multipart"). */
40133
40173
  upload_protocol?: string;
@@ -40544,7 +40584,7 @@ declare namespace gapi.client {
40544
40584
  prettyPrint?: boolean;
40545
40585
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
40546
40586
  quotaUser?: string;
40547
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40587
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40548
40588
  returnPartialSuccess?: boolean;
40549
40589
  /** Upload protocol for media (e.g. "raw", "multipart"). */
40550
40590
  upload_protocol?: string;
@@ -41839,7 +41879,7 @@ declare namespace gapi.client {
41839
41879
  prettyPrint?: boolean;
41840
41880
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
41841
41881
  quotaUser?: string;
41842
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41882
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41843
41883
  returnPartialSuccess?: boolean;
41844
41884
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41845
41885
  upload_protocol?: string;
@@ -41986,7 +42026,7 @@ declare namespace gapi.client {
41986
42026
  prettyPrint?: boolean;
41987
42027
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
41988
42028
  quotaUser?: string;
41989
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42029
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41990
42030
  returnPartialSuccess?: boolean;
41991
42031
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41992
42032
  upload_protocol?: string;
@@ -42488,7 +42528,7 @@ declare namespace gapi.client {
42488
42528
  prettyPrint?: boolean;
42489
42529
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42490
42530
  quotaUser?: string;
42491
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42531
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42492
42532
  returnPartialSuccess?: boolean;
42493
42533
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42494
42534
  upload_protocol?: string;
@@ -42976,7 +43016,7 @@ declare namespace gapi.client {
42976
43016
  prettyPrint?: boolean;
42977
43017
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
42978
43018
  quotaUser?: string;
42979
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43019
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
42980
43020
  returnPartialSuccess?: boolean;
42981
43021
  /** Upload protocol for media (e.g. "raw", "multipart"). */
42982
43022
  upload_protocol?: string;
@@ -43630,7 +43670,7 @@ declare namespace gapi.client {
43630
43670
  prettyPrint?: boolean;
43631
43671
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
43632
43672
  quotaUser?: string;
43633
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43673
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43634
43674
  returnPartialSuccess?: boolean;
43635
43675
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43636
43676
  upload_protocol?: string;
@@ -43777,7 +43817,7 @@ declare namespace gapi.client {
43777
43817
  prettyPrint?: boolean;
43778
43818
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
43779
43819
  quotaUser?: string;
43780
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43820
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
43781
43821
  returnPartialSuccess?: boolean;
43782
43822
  /** Upload protocol for media (e.g. "raw", "multipart"). */
43783
43823
  upload_protocol?: string;
@@ -44167,7 +44207,7 @@ declare namespace gapi.client {
44167
44207
  prettyPrint?: boolean;
44168
44208
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
44169
44209
  quotaUser?: string;
44170
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44210
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44171
44211
  returnPartialSuccess?: boolean;
44172
44212
  /** Upload protocol for media (e.g. "raw", "multipart"). */
44173
44213
  upload_protocol?: string;
@@ -44976,7 +45016,7 @@ declare namespace gapi.client {
44976
45016
  prettyPrint?: boolean;
44977
45017
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
44978
45018
  quotaUser?: string;
44979
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45019
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
44980
45020
  returnPartialSuccess?: boolean;
44981
45021
  /** Upload protocol for media (e.g. "raw", "multipart"). */
44982
45022
  upload_protocol?: string;
@@ -45424,7 +45464,7 @@ declare namespace gapi.client {
45424
45464
  prettyPrint?: boolean;
45425
45465
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
45426
45466
  quotaUser?: string;
45427
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45467
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45428
45468
  returnPartialSuccess?: boolean;
45429
45469
  /** Upload protocol for media (e.g. "raw", "multipart"). */
45430
45470
  upload_protocol?: string;
@@ -45545,7 +45585,7 @@ declare namespace gapi.client {
45545
45585
  prettyPrint?: boolean;
45546
45586
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
45547
45587
  quotaUser?: string;
45548
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45588
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45549
45589
  returnPartialSuccess?: boolean;
45550
45590
  /** Upload protocol for media (e.g. "raw", "multipart"). */
45551
45591
  upload_protocol?: string;
@@ -45904,7 +45944,7 @@ declare namespace gapi.client {
45904
45944
  prettyPrint?: boolean;
45905
45945
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
45906
45946
  quotaUser?: string;
45907
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45947
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
45908
45948
  returnPartialSuccess?: boolean;
45909
45949
  /** Upload protocol for media (e.g. "raw", "multipart"). */
45910
45950
  upload_protocol?: string;
@@ -46051,7 +46091,7 @@ declare namespace gapi.client {
46051
46091
  prettyPrint?: boolean;
46052
46092
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
46053
46093
  quotaUser?: string;
46054
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
46094
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
46055
46095
  returnPartialSuccess?: boolean;
46056
46096
  /** Upload protocol for media (e.g. "raw", "multipart"). */
46057
46097
  upload_protocol?: string;
@@ -46897,7 +46937,7 @@ declare namespace gapi.client {
46897
46937
  prettyPrint?: boolean;
46898
46938
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
46899
46939
  quotaUser?: string;
46900
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
46940
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
46901
46941
  returnPartialSuccess?: boolean;
46902
46942
  /** Upload protocol for media (e.g. "raw", "multipart"). */
46903
46943
  upload_protocol?: string;
@@ -47044,7 +47084,7 @@ declare namespace gapi.client {
47044
47084
  prettyPrint?: boolean;
47045
47085
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
47046
47086
  quotaUser?: string;
47047
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
47087
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
47048
47088
  returnPartialSuccess?: boolean;
47049
47089
  /** Upload protocol for media (e.g. "raw", "multipart"). */
47050
47090
  upload_protocol?: string;
@@ -47191,7 +47231,7 @@ declare namespace gapi.client {
47191
47231
  prettyPrint?: boolean;
47192
47232
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
47193
47233
  quotaUser?: string;
47194
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
47234
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
47195
47235
  returnPartialSuccess?: boolean;
47196
47236
  /** Upload protocol for media (e.g. "raw", "multipart"). */
47197
47237
  upload_protocol?: string;
@@ -48344,7 +48384,7 @@ declare namespace gapi.client {
48344
48384
  prettyPrint?: boolean;
48345
48385
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
48346
48386
  quotaUser?: string;
48347
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
48387
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
48348
48388
  returnPartialSuccess?: boolean;
48349
48389
  /** Upload protocol for media (e.g. "raw", "multipart"). */
48350
48390
  upload_protocol?: string;
@@ -48789,7 +48829,7 @@ declare namespace gapi.client {
48789
48829
  prettyPrint?: boolean;
48790
48830
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
48791
48831
  quotaUser?: string;
48792
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
48832
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
48793
48833
  returnPartialSuccess?: boolean;
48794
48834
  /** Upload protocol for media (e.g. "raw", "multipart"). */
48795
48835
  upload_protocol?: string;
@@ -51091,7 +51131,7 @@ declare namespace gapi.client {
51091
51131
  prettyPrint?: boolean;
51092
51132
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
51093
51133
  quotaUser?: string;
51094
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
51134
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
51095
51135
  returnPartialSuccess?: boolean;
51096
51136
  /** Upload protocol for media (e.g. "raw", "multipart"). */
51097
51137
  upload_protocol?: string;
@@ -51238,7 +51278,7 @@ declare namespace gapi.client {
51238
51278
  prettyPrint?: boolean;
51239
51279
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
51240
51280
  quotaUser?: string;
51241
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
51281
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
51242
51282
  returnPartialSuccess?: boolean;
51243
51283
  /** Upload protocol for media (e.g. "raw", "multipart"). */
51244
51284
  upload_protocol?: string;
@@ -51392,7 +51432,7 @@ declare namespace gapi.client {
51392
51432
  prettyPrint?: boolean;
51393
51433
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
51394
51434
  quotaUser?: string;
51395
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
51435
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
51396
51436
  returnPartialSuccess?: boolean;
51397
51437
  /** Upload protocol for media (e.g. "raw", "multipart"). */
51398
51438
  upload_protocol?: string;
@@ -51880,7 +51920,7 @@ declare namespace gapi.client {
51880
51920
  prettyPrint?: boolean;
51881
51921
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
51882
51922
  quotaUser?: string;
51883
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
51923
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
51884
51924
  returnPartialSuccess?: boolean;
51885
51925
  /** Upload protocol for media (e.g. "raw", "multipart"). */
51886
51926
  upload_protocol?: string;
@@ -52534,7 +52574,7 @@ declare namespace gapi.client {
52534
52574
  prettyPrint?: boolean;
52535
52575
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
52536
52576
  quotaUser?: string;
52537
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
52577
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
52538
52578
  returnPartialSuccess?: boolean;
52539
52579
  /** Upload protocol for media (e.g. "raw", "multipart"). */
52540
52580
  upload_protocol?: string;
@@ -52681,7 +52721,7 @@ declare namespace gapi.client {
52681
52721
  prettyPrint?: boolean;
52682
52722
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
52683
52723
  quotaUser?: string;
52684
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
52724
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
52685
52725
  returnPartialSuccess?: boolean;
52686
52726
  /** Upload protocol for media (e.g. "raw", "multipart"). */
52687
52727
  upload_protocol?: string;
@@ -53071,7 +53111,7 @@ declare namespace gapi.client {
53071
53111
  prettyPrint?: boolean;
53072
53112
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
53073
53113
  quotaUser?: string;
53074
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
53114
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
53075
53115
  returnPartialSuccess?: boolean;
53076
53116
  /** Upload protocol for media (e.g. "raw", "multipart"). */
53077
53117
  upload_protocol?: string;
@@ -53880,7 +53920,7 @@ declare namespace gapi.client {
53880
53920
  prettyPrint?: boolean;
53881
53921
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
53882
53922
  quotaUser?: string;
53883
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
53923
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
53884
53924
  returnPartialSuccess?: boolean;
53885
53925
  /** Upload protocol for media (e.g. "raw", "multipart"). */
53886
53926
  upload_protocol?: string;
@@ -54003,7 +54043,7 @@ declare namespace gapi.client {
54003
54043
  prettyPrint?: boolean;
54004
54044
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54005
54045
  quotaUser?: string;
54006
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54046
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54007
54047
  returnPartialSuccess?: boolean;
54008
54048
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54009
54049
  upload_protocol?: string;
@@ -54124,7 +54164,7 @@ declare namespace gapi.client {
54124
54164
  prettyPrint?: boolean;
54125
54165
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54126
54166
  quotaUser?: string;
54127
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54167
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54128
54168
  returnPartialSuccess?: boolean;
54129
54169
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54130
54170
  upload_protocol?: string;
@@ -54274,7 +54314,7 @@ declare namespace gapi.client {
54274
54314
  prettyPrint?: boolean;
54275
54315
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54276
54316
  quotaUser?: string;
54277
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54317
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54278
54318
  returnPartialSuccess?: boolean;
54279
54319
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54280
54320
  upload_protocol?: string;
@@ -54421,7 +54461,7 @@ declare namespace gapi.client {
54421
54461
  prettyPrint?: boolean;
54422
54462
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54423
54463
  quotaUser?: string;
54424
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54464
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54425
54465
  returnPartialSuccess?: boolean;
54426
54466
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54427
54467
  upload_protocol?: string;
@@ -54575,7 +54615,7 @@ declare namespace gapi.client {
54575
54615
  prettyPrint?: boolean;
54576
54616
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54577
54617
  quotaUser?: string;
54578
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54618
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54579
54619
  returnPartialSuccess?: boolean;
54580
54620
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54581
54621
  upload_protocol?: string;
@@ -54722,7 +54762,7 @@ declare namespace gapi.client {
54722
54762
  prettyPrint?: boolean;
54723
54763
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54724
54764
  quotaUser?: string;
54725
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54765
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54726
54766
  returnPartialSuccess?: boolean;
54727
54767
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54728
54768
  upload_protocol?: string;
@@ -54869,7 +54909,7 @@ declare namespace gapi.client {
54869
54909
  prettyPrint?: boolean;
54870
54910
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54871
54911
  quotaUser?: string;
54872
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54912
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54873
54913
  returnPartialSuccess?: boolean;
54874
54914
  /** Upload protocol for media (e.g. "raw", "multipart"). */
54875
54915
  upload_protocol?: string;
@@ -55027,7 +55067,7 @@ declare namespace gapi.client {
55027
55067
  prettyPrint?: boolean;
55028
55068
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
55029
55069
  quotaUser?: string;
55030
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
55070
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
55031
55071
  returnPartialSuccess?: boolean;
55032
55072
  /** Upload protocol for media (e.g. "raw", "multipart"). */
55033
55073
  upload_protocol?: string;
@@ -55178,7 +55218,7 @@ declare namespace gapi.client {
55178
55218
  prettyPrint?: boolean;
55179
55219
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
55180
55220
  quotaUser?: string;
55181
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
55221
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
55182
55222
  returnPartialSuccess?: boolean;
55183
55223
  /** Upload protocol for media (e.g. "raw", "multipart"). */
55184
55224
  upload_protocol?: string;