@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.2.20250926 → 0.3.20250926
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +150 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1532,6 +1532,8 @@ declare namespace gapi.client {
|
|
|
1532
1532
|
autoscalingMetricSpecs?: GoogleCloudAiplatformV1beta1AutoscalingMetricSpec[];
|
|
1533
1533
|
/** Optional. Immutable. If set, use DWS resource to schedule the deployment workload. reference: (https://cloud.google.com/blog/products/compute/introducing-dynamic-workload-scheduler) */
|
|
1534
1534
|
flexStart?: GoogleCloudAiplatformV1beta1FlexStart;
|
|
1535
|
+
/** Immutable. Number of initial replicas being deployed on when scaling the workload up from zero or when creating the workload in case min_replica_count = 0. When min_replica_count > 0 (meaning that the scale-to-zero feature is not enabled), initial_replica_count should not be set. When min_replica_count = 0 (meaning that the scale-to-zero feature is enabled), initial_replica_count should be larger than zero, but no greater than max_replica_count. */
|
|
1536
|
+
initialReplicaCount?: number;
|
|
1535
1537
|
/** Required. Immutable. The specification of a single machine being used. */
|
|
1536
1538
|
machineSpec?: GoogleCloudAiplatformV1beta1MachineSpec;
|
|
1537
1539
|
/** Immutable. The maximum number of replicas that may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale to that many replicas is guaranteed (barring service outages). If traffic increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, will use min_replica_count as the default value. The value of this field impacts the charge against Vertex CPU and GPU quotas. Specifically, you will be charged for (max_replica_count * number of cores in the selected machine type) and (max_replica_count * number of GPUs per replica in the selected machine type). */
|
|
@@ -1540,9 +1542,17 @@ declare namespace gapi.client {
|
|
|
1540
1542
|
minReplicaCount?: number;
|
|
1541
1543
|
/** Optional. Number of required available replicas for the deployment to succeed. This field is only needed when partial deployment/mutation is desired. If set, the deploy/mutate operation will succeed once available_replica_count reaches required_replica_count, and the rest of the replicas will be retried. If not set, the default required_replica_count will be min_replica_count. */
|
|
1542
1544
|
requiredReplicaCount?: number;
|
|
1545
|
+
/** Optional. Specification for scale-to-zero feature. */
|
|
1546
|
+
scaleToZeroSpec?: GoogleCloudAiplatformV1beta1DedicatedResourcesScaleToZeroSpec;
|
|
1543
1547
|
/** Optional. If true, schedule the deployment workload on [spot VMs](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms). */
|
|
1544
1548
|
spot?: boolean;
|
|
1545
1549
|
}
|
|
1550
|
+
interface GoogleCloudAiplatformV1beta1DedicatedResourcesScaleToZeroSpec {
|
|
1551
|
+
/** Optional. Duration of no traffic before scaling to zero. [MinValue=3600] (5 minutes) [MaxValue=28800] (8 hours) */
|
|
1552
|
+
idleScaledownPeriod?: string;
|
|
1553
|
+
/** Optional. Minimum duration that a deployment will be scaled up before traffic is evaluated for potential scale-down. [MinValue=300] (5 minutes) [MaxValue=28800] (8 hours) */
|
|
1554
|
+
minScaleupPeriod?: string;
|
|
1555
|
+
}
|
|
1546
1556
|
interface GoogleCloudAiplatformV1beta1DeleteFeatureValuesOperationMetadata {
|
|
1547
1557
|
/** Operation metadata for Featurestore delete Features values. */
|
|
1548
1558
|
genericMetadata?: GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
@@ -1804,6 +1814,8 @@ declare namespace gapi.client {
|
|
|
1804
1814
|
endpointDisplayName?: string;
|
|
1805
1815
|
/** Optional. Immutable. The ID to use for endpoint, which will become the final component of the endpoint resource name. If not provided, Vertex AI will generate a value for this ID. If the first character is a letter, this value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The last character must be a letter or number. If the first character is a number, this value may be up to 9 characters, and valid characters are `[0-9]` with no leading zeros. When using HTTP/JSON, this field is populated based on a query string argument, such as `?endpoint_id=12345`. This is the fallback for fields that are not included in either the URI or the body. */
|
|
1806
1816
|
endpointUserId?: string;
|
|
1817
|
+
/** Optional. The labels with user-defined metadata to organize your Endpoints. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */
|
|
1818
|
+
labels?: {[P in string]: string};
|
|
1807
1819
|
/** Optional. Configuration for private service connect. If set, the endpoint will be exposed through private service connect. */
|
|
1808
1820
|
privateServiceConnectConfig?: GoogleCloudAiplatformV1beta1PrivateServiceConnectConfig;
|
|
1809
1821
|
}
|
|
@@ -2393,7 +2405,7 @@ declare namespace gapi.client {
|
|
|
2393
2405
|
interface GoogleCloudAiplatformV1beta1EvaluationRunInferenceConfig {
|
|
2394
2406
|
/** Optional. Generation config. */
|
|
2395
2407
|
generationConfig?: GoogleCloudAiplatformV1beta1GenerationConfig;
|
|
2396
|
-
/**
|
|
2408
|
+
/** Optional. The fully qualified name of the publisher model or endpoint to use. Publisher model format: `projects/{project}/locations/{location}/publishers/*/models/*` Endpoint format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
2397
2409
|
model?: string;
|
|
2398
2410
|
}
|
|
2399
2411
|
interface GoogleCloudAiplatformV1beta1EvaluationRunMetric {
|
|
@@ -3701,6 +3713,12 @@ declare namespace gapi.client {
|
|
|
3701
3713
|
/** Optional. Which version to use for evaluation. */
|
|
3702
3714
|
version?: number;
|
|
3703
3715
|
}
|
|
3716
|
+
interface GoogleCloudAiplatformV1beta1FullFineTuningSpec {
|
|
3717
|
+
/** Required. Training dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
|
|
3718
|
+
trainingDatasetUri?: string;
|
|
3719
|
+
/** Optional. Validation dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
|
|
3720
|
+
validationDatasetUri?: string;
|
|
3721
|
+
}
|
|
3704
3722
|
interface GoogleCloudAiplatformV1beta1FunctionCall {
|
|
3705
3723
|
/** Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details. */
|
|
3706
3724
|
args?: {[P in string]: any};
|
|
@@ -8460,6 +8478,8 @@ declare namespace gapi.client {
|
|
|
8460
8478
|
interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec {
|
|
8461
8479
|
/** Optional. The code execution environment. */
|
|
8462
8480
|
codeExecutionEnvironment?: GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment;
|
|
8481
|
+
/** Optional. The computer use environment. */
|
|
8482
|
+
computerUseEnvironment?: any;
|
|
8463
8483
|
}
|
|
8464
8484
|
interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment {
|
|
8465
8485
|
/** The coding language supported in this environment. */
|
|
@@ -8467,6 +8487,7 @@ declare namespace gapi.client {
|
|
|
8467
8487
|
/** The machine config of the code execution environment. */
|
|
8468
8488
|
machineConfig?: string;
|
|
8469
8489
|
}
|
|
8490
|
+
interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecComputerUseEnvironment {}
|
|
8470
8491
|
interface GoogleCloudAiplatformV1beta1SavedQuery {
|
|
8471
8492
|
/** Output only. Filters on the Annotations in the dataset. */
|
|
8472
8493
|
annotationFilter?: string;
|
|
@@ -11439,6 +11460,8 @@ declare namespace gapi.client {
|
|
|
11439
11460
|
evaluateDatasetRuns?: GoogleCloudAiplatformV1beta1EvaluateDatasetRun[];
|
|
11440
11461
|
/** Output only. The Experiment associated with this TuningJob. */
|
|
11441
11462
|
experiment?: string;
|
|
11463
|
+
/** Tuning Spec for Full Fine Tuning. */
|
|
11464
|
+
fullFineTuningSpec?: GoogleCloudAiplatformV1beta1FullFineTuningSpec;
|
|
11442
11465
|
/** Optional. The labels with user-defined metadata to organize TuningJob and generated resources such as Model and Endpoint. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */
|
|
11443
11466
|
labels?: {[P in string]: string};
|
|
11444
11467
|
/** Output only. Identifier. Resource name of a TuningJob. Format: `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` */
|
|
@@ -11852,6 +11875,8 @@ declare namespace gapi.client {
|
|
|
11852
11875
|
nextPageToken?: string;
|
|
11853
11876
|
/** A list of operations that matches the specified filter in the request. */
|
|
11854
11877
|
operations?: GoogleLongrunningOperation[];
|
|
11878
|
+
/** 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. */
|
|
11879
|
+
unreachable?: string[];
|
|
11855
11880
|
}
|
|
11856
11881
|
interface GoogleLongrunningOperation {
|
|
11857
11882
|
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
|
@@ -13140,6 +13165,8 @@ declare namespace gapi.client {
|
|
|
13140
13165
|
prettyPrint?: boolean;
|
|
13141
13166
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
13142
13167
|
quotaUser?: string;
|
|
13168
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
13169
|
+
returnPartialSuccess?: boolean;
|
|
13143
13170
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13144
13171
|
upload_protocol?: string;
|
|
13145
13172
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -13288,6 +13315,8 @@ declare namespace gapi.client {
|
|
|
13288
13315
|
prettyPrint?: boolean;
|
|
13289
13316
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
13290
13317
|
quotaUser?: string;
|
|
13318
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
13319
|
+
returnPartialSuccess?: boolean;
|
|
13291
13320
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13292
13321
|
upload_protocol?: string;
|
|
13293
13322
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -13850,6 +13879,8 @@ declare namespace gapi.client {
|
|
|
13850
13879
|
prettyPrint?: boolean;
|
|
13851
13880
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
13852
13881
|
quotaUser?: string;
|
|
13882
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
13883
|
+
returnPartialSuccess?: boolean;
|
|
13853
13884
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13854
13885
|
upload_protocol?: string;
|
|
13855
13886
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -14203,6 +14234,8 @@ declare namespace gapi.client {
|
|
|
14203
14234
|
prettyPrint?: boolean;
|
|
14204
14235
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
14205
14236
|
quotaUser?: string;
|
|
14237
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
14238
|
+
returnPartialSuccess?: boolean;
|
|
14206
14239
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14207
14240
|
upload_protocol?: string;
|
|
14208
14241
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -14558,6 +14591,8 @@ declare namespace gapi.client {
|
|
|
14558
14591
|
prettyPrint?: boolean;
|
|
14559
14592
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
14560
14593
|
quotaUser?: string;
|
|
14594
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
14595
|
+
returnPartialSuccess?: boolean;
|
|
14561
14596
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14562
14597
|
upload_protocol?: string;
|
|
14563
14598
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -14735,6 +14770,8 @@ declare namespace gapi.client {
|
|
|
14735
14770
|
prettyPrint?: boolean;
|
|
14736
14771
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
14737
14772
|
quotaUser?: string;
|
|
14773
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
14774
|
+
returnPartialSuccess?: boolean;
|
|
14738
14775
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14739
14776
|
upload_protocol?: string;
|
|
14740
14777
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -14920,6 +14957,8 @@ declare namespace gapi.client {
|
|
|
14920
14957
|
prettyPrint?: boolean;
|
|
14921
14958
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
14922
14959
|
quotaUser?: string;
|
|
14960
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
14961
|
+
returnPartialSuccess?: boolean;
|
|
14923
14962
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14924
14963
|
upload_protocol?: string;
|
|
14925
14964
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -15348,6 +15387,8 @@ declare namespace gapi.client {
|
|
|
15348
15387
|
prettyPrint?: boolean;
|
|
15349
15388
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
15350
15389
|
quotaUser?: string;
|
|
15390
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
15391
|
+
returnPartialSuccess?: boolean;
|
|
15351
15392
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15352
15393
|
upload_protocol?: string;
|
|
15353
15394
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -15493,6 +15534,8 @@ declare namespace gapi.client {
|
|
|
15493
15534
|
prettyPrint?: boolean;
|
|
15494
15535
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
15495
15536
|
quotaUser?: string;
|
|
15537
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
15538
|
+
returnPartialSuccess?: boolean;
|
|
15496
15539
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15497
15540
|
upload_protocol?: string;
|
|
15498
15541
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -16210,6 +16253,8 @@ declare namespace gapi.client {
|
|
|
16210
16253
|
prettyPrint?: boolean;
|
|
16211
16254
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16212
16255
|
quotaUser?: string;
|
|
16256
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
16257
|
+
returnPartialSuccess?: boolean;
|
|
16213
16258
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16214
16259
|
upload_protocol?: string;
|
|
16215
16260
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -16594,6 +16639,8 @@ declare namespace gapi.client {
|
|
|
16594
16639
|
prettyPrint?: boolean;
|
|
16595
16640
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16596
16641
|
quotaUser?: string;
|
|
16642
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
16643
|
+
returnPartialSuccess?: boolean;
|
|
16597
16644
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16598
16645
|
upload_protocol?: string;
|
|
16599
16646
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -16997,6 +17044,8 @@ declare namespace gapi.client {
|
|
|
16997
17044
|
prettyPrint?: boolean;
|
|
16998
17045
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16999
17046
|
quotaUser?: string;
|
|
17047
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
17048
|
+
returnPartialSuccess?: boolean;
|
|
17000
17049
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17001
17050
|
upload_protocol?: string;
|
|
17002
17051
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -18410,6 +18459,8 @@ declare namespace gapi.client {
|
|
|
18410
18459
|
prettyPrint?: boolean;
|
|
18411
18460
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18412
18461
|
quotaUser?: string;
|
|
18462
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
18463
|
+
returnPartialSuccess?: boolean;
|
|
18413
18464
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18414
18465
|
upload_protocol?: string;
|
|
18415
18466
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -18678,6 +18729,8 @@ declare namespace gapi.client {
|
|
|
18678
18729
|
prettyPrint?: boolean;
|
|
18679
18730
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18680
18731
|
quotaUser?: string;
|
|
18732
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
18733
|
+
returnPartialSuccess?: boolean;
|
|
18681
18734
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18682
18735
|
upload_protocol?: string;
|
|
18683
18736
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -19004,6 +19057,8 @@ declare namespace gapi.client {
|
|
|
19004
19057
|
prettyPrint?: boolean;
|
|
19005
19058
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
19006
19059
|
quotaUser?: string;
|
|
19060
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
19061
|
+
returnPartialSuccess?: boolean;
|
|
19007
19062
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
19008
19063
|
upload_protocol?: string;
|
|
19009
19064
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -19334,6 +19389,8 @@ declare namespace gapi.client {
|
|
|
19334
19389
|
prettyPrint?: boolean;
|
|
19335
19390
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
19336
19391
|
quotaUser?: string;
|
|
19392
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
19393
|
+
returnPartialSuccess?: boolean;
|
|
19337
19394
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
19338
19395
|
upload_protocol?: string;
|
|
19339
19396
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -19482,6 +19539,8 @@ declare namespace gapi.client {
|
|
|
19482
19539
|
prettyPrint?: boolean;
|
|
19483
19540
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
19484
19541
|
quotaUser?: string;
|
|
19542
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
19543
|
+
returnPartialSuccess?: boolean;
|
|
19485
19544
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
19486
19545
|
upload_protocol?: string;
|
|
19487
19546
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -20050,6 +20109,8 @@ declare namespace gapi.client {
|
|
|
20050
20109
|
prettyPrint?: boolean;
|
|
20051
20110
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
20052
20111
|
quotaUser?: string;
|
|
20112
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
20113
|
+
returnPartialSuccess?: boolean;
|
|
20053
20114
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20054
20115
|
upload_protocol?: string;
|
|
20055
20116
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -20198,6 +20259,8 @@ declare namespace gapi.client {
|
|
|
20198
20259
|
prettyPrint?: boolean;
|
|
20199
20260
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
20200
20261
|
quotaUser?: string;
|
|
20262
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
20263
|
+
returnPartialSuccess?: boolean;
|
|
20201
20264
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20202
20265
|
upload_protocol?: string;
|
|
20203
20266
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -20770,6 +20833,8 @@ declare namespace gapi.client {
|
|
|
20770
20833
|
prettyPrint?: boolean;
|
|
20771
20834
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
20772
20835
|
quotaUser?: string;
|
|
20836
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
20837
|
+
returnPartialSuccess?: boolean;
|
|
20773
20838
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20774
20839
|
upload_protocol?: string;
|
|
20775
20840
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -21105,6 +21170,8 @@ declare namespace gapi.client {
|
|
|
21105
21170
|
prettyPrint?: boolean;
|
|
21106
21171
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
21107
21172
|
quotaUser?: string;
|
|
21173
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
21174
|
+
returnPartialSuccess?: boolean;
|
|
21108
21175
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21109
21176
|
upload_protocol?: string;
|
|
21110
21177
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -21507,6 +21574,8 @@ declare namespace gapi.client {
|
|
|
21507
21574
|
prettyPrint?: boolean;
|
|
21508
21575
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
21509
21576
|
quotaUser?: string;
|
|
21577
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
21578
|
+
returnPartialSuccess?: boolean;
|
|
21510
21579
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21511
21580
|
upload_protocol?: string;
|
|
21512
21581
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -21997,6 +22066,8 @@ declare namespace gapi.client {
|
|
|
21997
22066
|
prettyPrint?: boolean;
|
|
21998
22067
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
21999
22068
|
quotaUser?: string;
|
|
22069
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
22070
|
+
returnPartialSuccess?: boolean;
|
|
22000
22071
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
22001
22072
|
upload_protocol?: string;
|
|
22002
22073
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -22714,6 +22785,8 @@ declare namespace gapi.client {
|
|
|
22714
22785
|
prettyPrint?: boolean;
|
|
22715
22786
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
22716
22787
|
quotaUser?: string;
|
|
22788
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
22789
|
+
returnPartialSuccess?: boolean;
|
|
22717
22790
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
22718
22791
|
upload_protocol?: string;
|
|
22719
22792
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -23166,6 +23239,8 @@ declare namespace gapi.client {
|
|
|
23166
23239
|
prettyPrint?: boolean;
|
|
23167
23240
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
23168
23241
|
quotaUser?: string;
|
|
23242
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
23243
|
+
returnPartialSuccess?: boolean;
|
|
23169
23244
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
23170
23245
|
upload_protocol?: string;
|
|
23171
23246
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -23595,6 +23670,8 @@ declare namespace gapi.client {
|
|
|
23595
23670
|
prettyPrint?: boolean;
|
|
23596
23671
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
23597
23672
|
quotaUser?: string;
|
|
23673
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
23674
|
+
returnPartialSuccess?: boolean;
|
|
23598
23675
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
23599
23676
|
upload_protocol?: string;
|
|
23600
23677
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -24397,6 +24474,8 @@ declare namespace gapi.client {
|
|
|
24397
24474
|
prettyPrint?: boolean;
|
|
24398
24475
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
24399
24476
|
quotaUser?: string;
|
|
24477
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
24478
|
+
returnPartialSuccess?: boolean;
|
|
24400
24479
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24401
24480
|
upload_protocol?: string;
|
|
24402
24481
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -24944,6 +25023,8 @@ declare namespace gapi.client {
|
|
|
24944
25023
|
prettyPrint?: boolean;
|
|
24945
25024
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
24946
25025
|
quotaUser?: string;
|
|
25026
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
25027
|
+
returnPartialSuccess?: boolean;
|
|
24947
25028
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24948
25029
|
upload_protocol?: string;
|
|
24949
25030
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -25297,6 +25378,8 @@ declare namespace gapi.client {
|
|
|
25297
25378
|
prettyPrint?: boolean;
|
|
25298
25379
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
25299
25380
|
quotaUser?: string;
|
|
25381
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
25382
|
+
returnPartialSuccess?: boolean;
|
|
25300
25383
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
25301
25384
|
upload_protocol?: string;
|
|
25302
25385
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -25944,6 +26027,8 @@ declare namespace gapi.client {
|
|
|
25944
26027
|
prettyPrint?: boolean;
|
|
25945
26028
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
25946
26029
|
quotaUser?: string;
|
|
26030
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
26031
|
+
returnPartialSuccess?: boolean;
|
|
25947
26032
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
25948
26033
|
upload_protocol?: string;
|
|
25949
26034
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -26475,6 +26560,8 @@ declare namespace gapi.client {
|
|
|
26475
26560
|
prettyPrint?: boolean;
|
|
26476
26561
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
26477
26562
|
quotaUser?: string;
|
|
26563
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
26564
|
+
returnPartialSuccess?: boolean;
|
|
26478
26565
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26479
26566
|
upload_protocol?: string;
|
|
26480
26567
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -26931,6 +27018,8 @@ declare namespace gapi.client {
|
|
|
26931
27018
|
prettyPrint?: boolean;
|
|
26932
27019
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
26933
27020
|
quotaUser?: string;
|
|
27021
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
27022
|
+
returnPartialSuccess?: boolean;
|
|
26934
27023
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26935
27024
|
upload_protocol?: string;
|
|
26936
27025
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -27559,6 +27648,8 @@ declare namespace gapi.client {
|
|
|
27559
27648
|
prettyPrint?: boolean;
|
|
27560
27649
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
27561
27650
|
quotaUser?: string;
|
|
27651
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
27652
|
+
returnPartialSuccess?: boolean;
|
|
27562
27653
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27563
27654
|
upload_protocol?: string;
|
|
27564
27655
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -28193,6 +28284,8 @@ declare namespace gapi.client {
|
|
|
28193
28284
|
prettyPrint?: boolean;
|
|
28194
28285
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
28195
28286
|
quotaUser?: string;
|
|
28287
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
28288
|
+
returnPartialSuccess?: boolean;
|
|
28196
28289
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28197
28290
|
upload_protocol?: string;
|
|
28198
28291
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -28494,6 +28587,8 @@ declare namespace gapi.client {
|
|
|
28494
28587
|
prettyPrint?: boolean;
|
|
28495
28588
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
28496
28589
|
quotaUser?: string;
|
|
28590
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
28591
|
+
returnPartialSuccess?: boolean;
|
|
28497
28592
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28498
28593
|
upload_protocol?: string;
|
|
28499
28594
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -28758,6 +28853,8 @@ declare namespace gapi.client {
|
|
|
28758
28853
|
prettyPrint?: boolean;
|
|
28759
28854
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
28760
28855
|
quotaUser?: string;
|
|
28856
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
28857
|
+
returnPartialSuccess?: boolean;
|
|
28761
28858
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28762
28859
|
upload_protocol?: string;
|
|
28763
28860
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -29442,6 +29539,8 @@ declare namespace gapi.client {
|
|
|
29442
29539
|
prettyPrint?: boolean;
|
|
29443
29540
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
29444
29541
|
quotaUser?: string;
|
|
29542
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
29543
|
+
returnPartialSuccess?: boolean;
|
|
29445
29544
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29446
29545
|
upload_protocol?: string;
|
|
29447
29546
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -29922,6 +30021,8 @@ declare namespace gapi.client {
|
|
|
29922
30021
|
prettyPrint?: boolean;
|
|
29923
30022
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
29924
30023
|
quotaUser?: string;
|
|
30024
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
30025
|
+
returnPartialSuccess?: boolean;
|
|
29925
30026
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29926
30027
|
upload_protocol?: string;
|
|
29927
30028
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -30313,6 +30414,8 @@ declare namespace gapi.client {
|
|
|
30313
30414
|
prettyPrint?: boolean;
|
|
30314
30415
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
30315
30416
|
quotaUser?: string;
|
|
30417
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
30418
|
+
returnPartialSuccess?: boolean;
|
|
30316
30419
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
30317
30420
|
upload_protocol?: string;
|
|
30318
30421
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -31354,6 +31457,8 @@ declare namespace gapi.client {
|
|
|
31354
31457
|
prettyPrint?: boolean;
|
|
31355
31458
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
31356
31459
|
quotaUser?: string;
|
|
31460
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
31461
|
+
returnPartialSuccess?: boolean;
|
|
31357
31462
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
31358
31463
|
upload_protocol?: string;
|
|
31359
31464
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -31772,6 +31877,8 @@ declare namespace gapi.client {
|
|
|
31772
31877
|
prettyPrint?: boolean;
|
|
31773
31878
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
31774
31879
|
quotaUser?: string;
|
|
31880
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
31881
|
+
returnPartialSuccess?: boolean;
|
|
31775
31882
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
31776
31883
|
upload_protocol?: string;
|
|
31777
31884
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -32358,6 +32465,8 @@ declare namespace gapi.client {
|
|
|
32358
32465
|
prettyPrint?: boolean;
|
|
32359
32466
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
32360
32467
|
quotaUser?: string;
|
|
32468
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
32469
|
+
returnPartialSuccess?: boolean;
|
|
32361
32470
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
32362
32471
|
upload_protocol?: string;
|
|
32363
32472
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -32809,6 +32918,8 @@ declare namespace gapi.client {
|
|
|
32809
32918
|
prettyPrint?: boolean;
|
|
32810
32919
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
32811
32920
|
quotaUser?: string;
|
|
32921
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
32922
|
+
returnPartialSuccess?: boolean;
|
|
32812
32923
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
32813
32924
|
upload_protocol?: string;
|
|
32814
32925
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -32954,6 +33065,8 @@ declare namespace gapi.client {
|
|
|
32954
33065
|
prettyPrint?: boolean;
|
|
32955
33066
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
32956
33067
|
quotaUser?: string;
|
|
33068
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
33069
|
+
returnPartialSuccess?: boolean;
|
|
32957
33070
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
32958
33071
|
upload_protocol?: string;
|
|
32959
33072
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -33369,6 +33482,8 @@ declare namespace gapi.client {
|
|
|
33369
33482
|
prettyPrint?: boolean;
|
|
33370
33483
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
33371
33484
|
quotaUser?: string;
|
|
33485
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
33486
|
+
returnPartialSuccess?: boolean;
|
|
33372
33487
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33373
33488
|
upload_protocol?: string;
|
|
33374
33489
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -34604,6 +34719,8 @@ declare namespace gapi.client {
|
|
|
34604
34719
|
prettyPrint?: boolean;
|
|
34605
34720
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
34606
34721
|
quotaUser?: string;
|
|
34722
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
34723
|
+
returnPartialSuccess?: boolean;
|
|
34607
34724
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34608
34725
|
upload_protocol?: string;
|
|
34609
34726
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -34749,6 +34866,8 @@ declare namespace gapi.client {
|
|
|
34749
34866
|
prettyPrint?: boolean;
|
|
34750
34867
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
34751
34868
|
quotaUser?: string;
|
|
34869
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
34870
|
+
returnPartialSuccess?: boolean;
|
|
34752
34871
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34753
34872
|
upload_protocol?: string;
|
|
34754
34873
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -35249,6 +35368,8 @@ declare namespace gapi.client {
|
|
|
35249
35368
|
prettyPrint?: boolean;
|
|
35250
35369
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
35251
35370
|
quotaUser?: string;
|
|
35371
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
35372
|
+
returnPartialSuccess?: boolean;
|
|
35252
35373
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
35253
35374
|
upload_protocol?: string;
|
|
35254
35375
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -35735,6 +35856,8 @@ declare namespace gapi.client {
|
|
|
35735
35856
|
prettyPrint?: boolean;
|
|
35736
35857
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
35737
35858
|
quotaUser?: string;
|
|
35859
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
35860
|
+
returnPartialSuccess?: boolean;
|
|
35738
35861
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
35739
35862
|
upload_protocol?: string;
|
|
35740
35863
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -36208,6 +36331,8 @@ declare namespace gapi.client {
|
|
|
36208
36331
|
prettyPrint?: boolean;
|
|
36209
36332
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
36210
36333
|
quotaUser?: string;
|
|
36334
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
36335
|
+
returnPartialSuccess?: boolean;
|
|
36211
36336
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36212
36337
|
upload_protocol?: string;
|
|
36213
36338
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -36353,6 +36478,8 @@ declare namespace gapi.client {
|
|
|
36353
36478
|
prettyPrint?: boolean;
|
|
36354
36479
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
36355
36480
|
quotaUser?: string;
|
|
36481
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
36482
|
+
returnPartialSuccess?: boolean;
|
|
36356
36483
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36357
36484
|
upload_protocol?: string;
|
|
36358
36485
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -36739,6 +36866,8 @@ declare namespace gapi.client {
|
|
|
36739
36866
|
prettyPrint?: boolean;
|
|
36740
36867
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
36741
36868
|
quotaUser?: string;
|
|
36869
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
36870
|
+
returnPartialSuccess?: boolean;
|
|
36742
36871
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36743
36872
|
upload_protocol?: string;
|
|
36744
36873
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -37488,6 +37617,8 @@ declare namespace gapi.client {
|
|
|
37488
37617
|
prettyPrint?: boolean;
|
|
37489
37618
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
37490
37619
|
quotaUser?: string;
|
|
37620
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
37621
|
+
returnPartialSuccess?: boolean;
|
|
37491
37622
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
37492
37623
|
upload_protocol?: string;
|
|
37493
37624
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -37934,6 +38065,8 @@ declare namespace gapi.client {
|
|
|
37934
38065
|
prettyPrint?: boolean;
|
|
37935
38066
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
37936
38067
|
quotaUser?: string;
|
|
38068
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
38069
|
+
returnPartialSuccess?: boolean;
|
|
37937
38070
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
37938
38071
|
upload_protocol?: string;
|
|
37939
38072
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -38053,6 +38186,8 @@ declare namespace gapi.client {
|
|
|
38053
38186
|
prettyPrint?: boolean;
|
|
38054
38187
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
38055
38188
|
quotaUser?: string;
|
|
38189
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
38190
|
+
returnPartialSuccess?: boolean;
|
|
38056
38191
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
38057
38192
|
upload_protocol?: string;
|
|
38058
38193
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -38410,6 +38545,8 @@ declare namespace gapi.client {
|
|
|
38410
38545
|
prettyPrint?: boolean;
|
|
38411
38546
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
38412
38547
|
quotaUser?: string;
|
|
38548
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
38549
|
+
returnPartialSuccess?: boolean;
|
|
38413
38550
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
38414
38551
|
upload_protocol?: string;
|
|
38415
38552
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -38555,6 +38692,8 @@ declare namespace gapi.client {
|
|
|
38555
38692
|
prettyPrint?: boolean;
|
|
38556
38693
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
38557
38694
|
quotaUser?: string;
|
|
38695
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
38696
|
+
returnPartialSuccess?: boolean;
|
|
38558
38697
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
38559
38698
|
upload_protocol?: string;
|
|
38560
38699
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -39399,6 +39538,8 @@ declare namespace gapi.client {
|
|
|
39399
39538
|
prettyPrint?: boolean;
|
|
39400
39539
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
39401
39540
|
quotaUser?: string;
|
|
39541
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
39542
|
+
returnPartialSuccess?: boolean;
|
|
39402
39543
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39403
39544
|
upload_protocol?: string;
|
|
39404
39545
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -39544,6 +39685,8 @@ declare namespace gapi.client {
|
|
|
39544
39685
|
prettyPrint?: boolean;
|
|
39545
39686
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
39546
39687
|
quotaUser?: string;
|
|
39688
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
39689
|
+
returnPartialSuccess?: boolean;
|
|
39547
39690
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39548
39691
|
upload_protocol?: string;
|
|
39549
39692
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -39689,6 +39832,8 @@ declare namespace gapi.client {
|
|
|
39689
39832
|
prettyPrint?: boolean;
|
|
39690
39833
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
39691
39834
|
quotaUser?: string;
|
|
39835
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
39836
|
+
returnPartialSuccess?: boolean;
|
|
39692
39837
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
39693
39838
|
upload_protocol?: string;
|
|
39694
39839
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -40840,6 +40985,8 @@ declare namespace gapi.client {
|
|
|
40840
40985
|
prettyPrint?: boolean;
|
|
40841
40986
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
40842
40987
|
quotaUser?: string;
|
|
40988
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
40989
|
+
returnPartialSuccess?: boolean;
|
|
40843
40990
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40844
40991
|
upload_protocol?: string;
|
|
40845
40992
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -41283,6 +41430,8 @@ declare namespace gapi.client {
|
|
|
41283
41430
|
prettyPrint?: boolean;
|
|
41284
41431
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
41285
41432
|
quotaUser?: string;
|
|
41433
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
41434
|
+
returnPartialSuccess?: boolean;
|
|
41286
41435
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
41287
41436
|
upload_protocol?: string;
|
|
41288
41437
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|