@maxim_mazurok/gapi.client.aiplatform-v1 0.2.20250926 → 0.3.20251010
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 +326 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20251010
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1419,7 +1419,7 @@ declare namespace gapi.client {
|
|
|
1419
1419
|
deployedIndexAuthConfig?: GoogleCloudAiplatformV1DeployedIndexAuthConfig;
|
|
1420
1420
|
/** Optional. The deployment group can be no longer than 64 characters (eg: 'test', 'prod'). If not set, we will use the 'default' deployment group. Creating `deployment_groups` with `reserved_ip_ranges` is a recommended practice when the peered network has multiple peering ranges. This creates your deployments from predictable IP spaces for easier traffic administration. Also, one deployment_group (except 'default') can only be used with the same reserved_ip_ranges which means if the deployment_group has been used with reserved_ip_ranges: [a, b, c], using it with [a, b] or [d, e] is disallowed. Note: we only support up to 5 deployment groups(not including 'default'). */
|
|
1421
1421
|
deploymentGroup?: string;
|
|
1422
|
-
/** Optional. The deployment tier that the index is deployed to. DEPLOYMENT_TIER_UNSPECIFIED
|
|
1422
|
+
/** Optional. The deployment tier that the index is deployed to. DEPLOYMENT_TIER_UNSPECIFIED will use a system-chosen default tier. */
|
|
1423
1423
|
deploymentTier?: string;
|
|
1424
1424
|
/** The display name of the DeployedIndex. If not provided upon creation, the Index's display_name is used. */
|
|
1425
1425
|
displayName?: string;
|
|
@@ -1605,6 +1605,8 @@ declare namespace gapi.client {
|
|
|
1605
1605
|
endpointDisplayName?: string;
|
|
1606
1606
|
/** 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. */
|
|
1607
1607
|
endpointUserId?: string;
|
|
1608
|
+
/** 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. */
|
|
1609
|
+
labels?: {[P in string]: string};
|
|
1608
1610
|
/** Optional. Configuration for private service connect. If set, the endpoint will be exposed through private service connect. */
|
|
1609
1611
|
privateServiceConnectConfig?: GoogleCloudAiplatformV1PrivateServiceConnectConfig;
|
|
1610
1612
|
}
|
|
@@ -1683,6 +1685,30 @@ declare namespace gapi.client {
|
|
|
1683
1685
|
/** The mode of the predictor to be used in dynamic retrieval. */
|
|
1684
1686
|
mode?: string;
|
|
1685
1687
|
}
|
|
1688
|
+
interface GoogleCloudAiplatformV1EmbedContentRequest {
|
|
1689
|
+
/** Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length. */
|
|
1690
|
+
autoTruncate?: boolean;
|
|
1691
|
+
/** Required. Input content to be embedded. Required. */
|
|
1692
|
+
content?: GoogleCloudAiplatformV1Content;
|
|
1693
|
+
/** Optional. Optional reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. */
|
|
1694
|
+
outputDimensionality?: number;
|
|
1695
|
+
/** Optional. The task type of the embedding. */
|
|
1696
|
+
taskType?: string;
|
|
1697
|
+
/** Optional. An optional title for the text. */
|
|
1698
|
+
title?: string;
|
|
1699
|
+
}
|
|
1700
|
+
interface GoogleCloudAiplatformV1EmbedContentResponse {
|
|
1701
|
+
/** The embedding generated from the input content. */
|
|
1702
|
+
embedding?: GoogleCloudAiplatformV1EmbedContentResponseEmbedding;
|
|
1703
|
+
/** Whether the input content was truncated before generating the embedding. */
|
|
1704
|
+
truncated?: boolean;
|
|
1705
|
+
/** Metadata about the response(s). */
|
|
1706
|
+
usageMetadata?: GoogleCloudAiplatformV1UsageMetadata;
|
|
1707
|
+
}
|
|
1708
|
+
interface GoogleCloudAiplatformV1EmbedContentResponseEmbedding {
|
|
1709
|
+
/** Embedding vector values. */
|
|
1710
|
+
values?: number[];
|
|
1711
|
+
}
|
|
1686
1712
|
interface GoogleCloudAiplatformV1EncryptionSpec {
|
|
1687
1713
|
/** Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource. Has the form: `projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key`. The key needs to be in the same region as where the compute resource is created. */
|
|
1688
1714
|
kmsKeyName?: string;
|
|
@@ -1734,6 +1760,8 @@ declare namespace gapi.client {
|
|
|
1734
1760
|
updateTime?: string;
|
|
1735
1761
|
}
|
|
1736
1762
|
interface GoogleCloudAiplatformV1EnterpriseWebSearch {
|
|
1763
|
+
/** Optional. Sites with confidence level chosen & above this value will be blocked from the search results. */
|
|
1764
|
+
blockingConfidence?: string;
|
|
1737
1765
|
/** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. */
|
|
1738
1766
|
excludeDomains?: string[];
|
|
1739
1767
|
}
|
|
@@ -2136,7 +2164,7 @@ declare namespace gapi.client {
|
|
|
2136
2164
|
interface GoogleCloudAiplatformV1EvaluationRunInferenceConfig {
|
|
2137
2165
|
/** Optional. Generation config. */
|
|
2138
2166
|
generationConfig?: GoogleCloudAiplatformV1GenerationConfig;
|
|
2139
|
-
/**
|
|
2167
|
+
/** 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}` */
|
|
2140
2168
|
model?: string;
|
|
2141
2169
|
}
|
|
2142
2170
|
interface GoogleCloudAiplatformV1EvaluationRunMetric {
|
|
@@ -2710,6 +2738,10 @@ declare namespace gapi.client {
|
|
|
2710
2738
|
interface GoogleCloudAiplatformV1FeatureOnlineStoreBigtable {
|
|
2711
2739
|
/** Required. Autoscaling config applied to Bigtable Instance. */
|
|
2712
2740
|
autoScaling?: GoogleCloudAiplatformV1FeatureOnlineStoreBigtableAutoScaling;
|
|
2741
|
+
/** Output only. Metadata of the Bigtable instance. Output only. */
|
|
2742
|
+
bigtableMetadata?: GoogleCloudAiplatformV1FeatureOnlineStoreBigtableBigtableMetadata;
|
|
2743
|
+
/** Optional. It true, enable direct access to the Bigtable instance. */
|
|
2744
|
+
enableDirectBigtableAccess?: boolean;
|
|
2713
2745
|
}
|
|
2714
2746
|
interface GoogleCloudAiplatformV1FeatureOnlineStoreBigtableAutoScaling {
|
|
2715
2747
|
/** Optional. A percentage of the cluster's CPU capacity. Can be from 10% to 80%. When a cluster's CPU utilization exceeds the target that you have set, Bigtable immediately adds nodes to the cluster. When CPU utilization is substantially lower than the target, Bigtable removes nodes. If not set will default to 50%. */
|
|
@@ -2719,6 +2751,14 @@ declare namespace gapi.client {
|
|
|
2719
2751
|
/** Required. The minimum number of nodes to scale down to. Must be greater than or equal to 1. */
|
|
2720
2752
|
minNodeCount?: number;
|
|
2721
2753
|
}
|
|
2754
|
+
interface GoogleCloudAiplatformV1FeatureOnlineStoreBigtableBigtableMetadata {
|
|
2755
|
+
/** The Cloud Bigtable instance id. */
|
|
2756
|
+
instanceId?: string;
|
|
2757
|
+
/** The Cloud Bigtable table id. */
|
|
2758
|
+
tableId?: string;
|
|
2759
|
+
/** Tenant project ID. */
|
|
2760
|
+
tenantProjectId?: string;
|
|
2761
|
+
}
|
|
2722
2762
|
interface GoogleCloudAiplatformV1FeatureOnlineStoreDedicatedServingEndpoint {
|
|
2723
2763
|
/** Optional. Private service connect config. The private service connection is available only for Optimized storage type, not for embedding management now. If PrivateServiceConnectConfig.enable_private_service_connect set to true, customers will use private service connection to send request. Otherwise, the connection will set to public endpoint. */
|
|
2724
2764
|
privateServiceConnectConfig?: GoogleCloudAiplatformV1PrivateServiceConnectConfig;
|
|
@@ -2857,6 +2897,8 @@ declare namespace gapi.client {
|
|
|
2857
2897
|
interface GoogleCloudAiplatformV1FeatureView {
|
|
2858
2898
|
/** Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore. */
|
|
2859
2899
|
bigQuerySource?: GoogleCloudAiplatformV1FeatureViewBigQuerySource;
|
|
2900
|
+
/** Output only. Metadata containing information about the Cloud Bigtable. */
|
|
2901
|
+
bigtableMetadata?: GoogleCloudAiplatformV1FeatureViewBigtableMetadata;
|
|
2860
2902
|
/** Output only. Timestamp when this FeatureView was created. */
|
|
2861
2903
|
createTime?: string;
|
|
2862
2904
|
/** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
@@ -2892,6 +2934,10 @@ declare namespace gapi.client {
|
|
|
2892
2934
|
/** Required. The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig. */
|
|
2893
2935
|
uri?: string;
|
|
2894
2936
|
}
|
|
2937
|
+
interface GoogleCloudAiplatformV1FeatureViewBigtableMetadata {
|
|
2938
|
+
/** Output only. The Bigtable App Profile to use for reading from Bigtable. */
|
|
2939
|
+
readAppProfile?: string;
|
|
2940
|
+
}
|
|
2895
2941
|
interface GoogleCloudAiplatformV1FeatureViewDataKey {
|
|
2896
2942
|
/** The actual Entity ID will be composed from this struct. This should match with the way ID is defined in the FeatureView spec. */
|
|
2897
2943
|
compositeKey?: GoogleCloudAiplatformV1FeatureViewDataKeyCompositeKey;
|
|
@@ -3269,6 +3315,13 @@ declare namespace gapi.client {
|
|
|
3269
3315
|
/** Output only. The traffic type for this request. */
|
|
3270
3316
|
trafficType?: string;
|
|
3271
3317
|
}
|
|
3318
|
+
interface GoogleCloudAiplatformV1GenerateFetchAccessTokenRequest {}
|
|
3319
|
+
interface GoogleCloudAiplatformV1GenerateFetchAccessTokenResponse {
|
|
3320
|
+
/** The OAuth 2.0 access token. */
|
|
3321
|
+
accessToken?: string;
|
|
3322
|
+
/** Token expiration time. This is always set */
|
|
3323
|
+
expireTime?: string;
|
|
3324
|
+
}
|
|
3272
3325
|
interface GoogleCloudAiplatformV1GenerateInstanceRubricsRequest {
|
|
3273
3326
|
/** Required. The prompt to generate rubrics from. For single-turn queries, this is a single instance. For multi-turn queries, this is a repeated field that contains conversation history + latest request. */
|
|
3274
3327
|
contents?: GoogleCloudAiplatformV1Content[];
|
|
@@ -3322,6 +3375,8 @@ declare namespace gapi.client {
|
|
|
3322
3375
|
enableAffectiveDialog?: boolean;
|
|
3323
3376
|
/** Optional. Frequency penalties. */
|
|
3324
3377
|
frequencyPenalty?: number;
|
|
3378
|
+
/** Optional. Config for image generation features. */
|
|
3379
|
+
imageConfig?: GoogleCloudAiplatformV1ImageConfig;
|
|
3325
3380
|
/** Optional. Logit probabilities. */
|
|
3326
3381
|
logprobs?: number;
|
|
3327
3382
|
/** Optional. The maximum number of output tokens to generate per message. */
|
|
@@ -3555,6 +3610,10 @@ declare namespace gapi.client {
|
|
|
3555
3610
|
/** Required. The following are accepted as `ids`: * A single-element list containing only `*`, which selects all Features in the target EntityType, or * A list containing only Feature IDs, which selects only Features with those IDs in the target EntityType. */
|
|
3556
3611
|
ids?: string[];
|
|
3557
3612
|
}
|
|
3613
|
+
interface GoogleCloudAiplatformV1ImageConfig {
|
|
3614
|
+
/** Optional. The desired aspect ratio for the generated images. The following aspect ratios are supported: "1:1" "2:3", "3:2" "3:4", "4:3" "4:5", "5:4" "9:16", "16:9" "21:9" */
|
|
3615
|
+
aspectRatio?: string;
|
|
3616
|
+
}
|
|
3558
3617
|
interface GoogleCloudAiplatformV1ImportDataConfig {
|
|
3559
3618
|
/** Labels that will be applied to newly imported Annotations. If two Annotations are identical, one of them will be deduped. Two Annotations are considered identical if their payload, payload_schema_uri and all of their labels are the same. These labels will be overridden by Annotation labels specified inside index file referenced by import_schema_uri, e.g. jsonl file. */
|
|
3560
3619
|
annotationLabels?: {[P in string]: string};
|
|
@@ -4883,6 +4942,10 @@ declare namespace gapi.client {
|
|
|
4883
4942
|
/** The step of the checkpoint. */
|
|
4884
4943
|
step?: string;
|
|
4885
4944
|
}
|
|
4945
|
+
interface GoogleCloudAiplatformV1MultiSpeakerVoiceConfig {
|
|
4946
|
+
/** Required. A list of configurations for the voices of the speakers. Exactly two speaker voice configurations must be provided. */
|
|
4947
|
+
speakerVoiceConfigs?: GoogleCloudAiplatformV1SpeakerVoiceConfig[];
|
|
4948
|
+
}
|
|
4886
4949
|
interface GoogleCloudAiplatformV1MutateDeployedIndexOperationMetadata {
|
|
4887
4950
|
/** The unique index id specified by user */
|
|
4888
4951
|
deployedIndexId?: string;
|
|
@@ -5703,6 +5766,8 @@ declare namespace gapi.client {
|
|
|
5703
5766
|
interface GoogleCloudAiplatformV1PredictRequest {
|
|
5704
5767
|
/** Required. The instances that are the input to the prediction call. A DeployedModel may have an upper limit on the number of instances it supports per request, and when it is exceeded the prediction call errors in case of AutoML Models, or, in case of customer created Models, the behaviour is as documented by that Model. The schema of any single instance may be specified via Endpoint's DeployedModels' Model's PredictSchemata's instance_schema_uri. */
|
|
5705
5768
|
instances?: any[];
|
|
5769
|
+
/** Optional. The user labels for Imagen billing usage only. Only Imagen supports labels. For other use cases, it will be ignored. */
|
|
5770
|
+
labels?: {[P in string]: string};
|
|
5706
5771
|
/** The parameters that govern the prediction. The schema of the parameters may be specified via Endpoint's DeployedModels' Model's PredictSchemata's parameters_schema_uri. */
|
|
5707
5772
|
parameters?: any;
|
|
5708
5773
|
}
|
|
@@ -5742,6 +5807,14 @@ declare namespace gapi.client {
|
|
|
5742
5807
|
/** Preset option controlling parameters for speed-precision trade-off when querying for examples. If omitted, defaults to `PRECISE`. */
|
|
5743
5808
|
query?: string;
|
|
5744
5809
|
}
|
|
5810
|
+
interface GoogleCloudAiplatformV1PreTunedModel {
|
|
5811
|
+
/** Output only. The name of the base model this PreTunedModel was tuned from. */
|
|
5812
|
+
baseModel?: string;
|
|
5813
|
+
/** Optional. The source checkpoint id. If not specified, the default checkpoint will be used. */
|
|
5814
|
+
checkpointId?: string;
|
|
5815
|
+
/** The resource name of the Model. E.g., a model resource name with a specified version id or alias: `projects/{project}/locations/{location}/models/{model}@{version_id}` `projects/{project}/locations/{location}/models/{model}@{alias}` Or, omit the version id to use the default version: `projects/{project}/locations/{location}/models/{model}` */
|
|
5816
|
+
tunedModelName?: string;
|
|
5817
|
+
}
|
|
5745
5818
|
interface GoogleCloudAiplatformV1PrivateEndpoints {
|
|
5746
5819
|
/** Output only. Http(s) path to send explain requests. */
|
|
5747
5820
|
explainHttpUri?: string;
|
|
@@ -8551,6 +8624,12 @@ declare namespace gapi.client {
|
|
|
8551
8624
|
/** The number of gradient samples to use for approximation. The higher this number, the more accurate the gradient is, but the runtime complexity increases by this factor as well. Valid range of its value is [1, 50]. Defaults to 3. */
|
|
8552
8625
|
noisySampleCount?: number;
|
|
8553
8626
|
}
|
|
8627
|
+
interface GoogleCloudAiplatformV1SpeakerVoiceConfig {
|
|
8628
|
+
/** Required. The name of the speaker. This should be the same as the speaker name used in the prompt. */
|
|
8629
|
+
speaker?: string;
|
|
8630
|
+
/** Required. The configuration for the voice of this speaker. */
|
|
8631
|
+
voiceConfig?: GoogleCloudAiplatformV1VoiceConfig;
|
|
8632
|
+
}
|
|
8554
8633
|
interface GoogleCloudAiplatformV1SpecialistPool {
|
|
8555
8634
|
/** Required. The user-defined name of the SpecialistPool. The name can be up to 128 characters long and can consist of any UTF-8 characters. This field should be unique on project-level. */
|
|
8556
8635
|
displayName?: string;
|
|
@@ -8584,6 +8663,8 @@ declare namespace gapi.client {
|
|
|
8584
8663
|
interface GoogleCloudAiplatformV1SpeechConfig {
|
|
8585
8664
|
/** Optional. Language code (ISO 639. e.g. en-US) for the speech synthesization. */
|
|
8586
8665
|
languageCode?: string;
|
|
8666
|
+
/** The configuration for a multi-speaker text-to-speech request. This field is mutually exclusive with `voice_config`. */
|
|
8667
|
+
multiSpeakerVoiceConfig?: GoogleCloudAiplatformV1MultiSpeakerVoiceConfig;
|
|
8587
8668
|
/** The configuration for the speaker to use. */
|
|
8588
8669
|
voiceConfig?: GoogleCloudAiplatformV1VoiceConfig;
|
|
8589
8670
|
}
|
|
@@ -9256,6 +9337,8 @@ declare namespace gapi.client {
|
|
|
9256
9337
|
retrievalConfig?: GoogleCloudAiplatformV1RetrievalConfig;
|
|
9257
9338
|
}
|
|
9258
9339
|
interface GoogleCloudAiplatformV1ToolGoogleSearch {
|
|
9340
|
+
/** Optional. Sites with confidence level chosen & above this value will be blocked from the search results. */
|
|
9341
|
+
blockingConfidence?: string;
|
|
9259
9342
|
/** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"]. */
|
|
9260
9343
|
excludeDomains?: string[];
|
|
9261
9344
|
}
|
|
@@ -9539,7 +9622,7 @@ declare namespace gapi.client {
|
|
|
9539
9622
|
checkpoints?: GoogleCloudAiplatformV1TunedModelCheckpoint[];
|
|
9540
9623
|
/** Output only. A resource name of an Endpoint. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
|
|
9541
9624
|
endpoint?: string;
|
|
9542
|
-
/** Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base model, the
|
|
9625
|
+
/** Output only. The resource name of the TunedModel. Format: `projects/{project}/locations/{location}/models/{model}@{version_id}` When tuning from a base model, the version ID will be 1. For continuous tuning, if the provided tuned_model_display_name is set and different from parent model's display name, the tuned model will have a new parent model with version 1. Otherwise the version id will be incremented by 1 from the last version ID in the parent model. E.g., `projects/{project}/locations/{location}/models/{model}@{last_version_id + 1}` */
|
|
9543
9626
|
model?: string;
|
|
9544
9627
|
}
|
|
9545
9628
|
interface GoogleCloudAiplatformV1TunedModelCheckpoint {
|
|
@@ -9583,6 +9666,8 @@ declare namespace gapi.client {
|
|
|
9583
9666
|
labels?: {[P in string]: string};
|
|
9584
9667
|
/** Output only. Identifier. Resource name of a TuningJob. Format: `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` */
|
|
9585
9668
|
name?: string;
|
|
9669
|
+
/** The pre-tuned model for continuous tuning. */
|
|
9670
|
+
preTunedModel?: GoogleCloudAiplatformV1PreTunedModel;
|
|
9586
9671
|
/** The service account that the tuningJob workload runs as. If not specified, the Vertex AI Secure Fine-Tuned Service Agent in the project will be used. See https://cloud.google.com/iam/docs/service-agents#vertex-ai-secure-fine-tuning-service-agent Users starting the pipeline must have the `iam.serviceAccounts.actAs` permission on this service account. */
|
|
9587
9672
|
serviceAccount?: string;
|
|
9588
9673
|
/** Output only. Time when the TuningJob for the first time entered the `JOB_STATE_RUNNING` state. */
|
|
@@ -9593,7 +9678,7 @@ declare namespace gapi.client {
|
|
|
9593
9678
|
supervisedTuningSpec?: GoogleCloudAiplatformV1SupervisedTuningSpec;
|
|
9594
9679
|
/** Output only. The tuned model resources associated with this TuningJob. */
|
|
9595
9680
|
tunedModel?: GoogleCloudAiplatformV1TunedModel;
|
|
9596
|
-
/** Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
|
|
9681
|
+
/** Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters. For continuous tuning, tuned_model_display_name will by default use the same display name as the pre-tuned model. If a new display name is provided, the tuning job will create a new model instead of a new version. */
|
|
9597
9682
|
tunedModelDisplayName?: string;
|
|
9598
9683
|
/** Output only. The tuning data statistics associated with this TuningJob. */
|
|
9599
9684
|
tuningDataStats?: GoogleCloudAiplatformV1TuningDataStats;
|
|
@@ -9752,6 +9837,30 @@ declare namespace gapi.client {
|
|
|
9752
9837
|
/** Status of the url retrieval. */
|
|
9753
9838
|
urlRetrievalStatus?: string;
|
|
9754
9839
|
}
|
|
9840
|
+
interface GoogleCloudAiplatformV1UsageMetadata {
|
|
9841
|
+
/** Output only. The number of tokens in the cached content that was used for this request. */
|
|
9842
|
+
cachedContentTokenCount?: number;
|
|
9843
|
+
/** Output only. A detailed breakdown of the token count for each modality in the cached content. */
|
|
9844
|
+
cacheTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
|
|
9845
|
+
/** The total number of tokens in the generated candidates. */
|
|
9846
|
+
candidatesTokenCount?: number;
|
|
9847
|
+
/** Output only. A detailed breakdown of the token count for each modality in the generated candidates. */
|
|
9848
|
+
candidatesTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
|
|
9849
|
+
/** The total number of tokens in the prompt. This includes any text, images, or other media provided in the request. When `cached_content` is set, this also includes the number of tokens in the cached content. */
|
|
9850
|
+
promptTokenCount?: number;
|
|
9851
|
+
/** Output only. A detailed breakdown of the token count for each modality in the prompt. */
|
|
9852
|
+
promptTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
|
|
9853
|
+
/** Output only. The number of tokens that were part of the model's generated "thoughts" output, if applicable. */
|
|
9854
|
+
thoughtsTokenCount?: number;
|
|
9855
|
+
/** Output only. The number of tokens in the results from tool executions, which are provided back to the model as input, if applicable. */
|
|
9856
|
+
toolUsePromptTokenCount?: number;
|
|
9857
|
+
/** Output only. A detailed breakdown by modality of the token counts from the results of tool executions, which are provided back to the model as input. */
|
|
9858
|
+
toolUsePromptTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
|
|
9859
|
+
/** The total number of tokens for the entire request. This is the sum of `prompt_token_count`, `candidates_token_count`, `tool_use_prompt_token_count`, and `thoughts_token_count`. */
|
|
9860
|
+
totalTokenCount?: number;
|
|
9861
|
+
/** Output only. The traffic type for this request. */
|
|
9862
|
+
trafficType?: string;
|
|
9863
|
+
}
|
|
9755
9864
|
interface GoogleCloudAiplatformV1UserActionReference {
|
|
9756
9865
|
/** For API calls that start a LabelingJob. Resource name of the LabelingJob. Format: `projects/{project}/locations/{location}/dataLabelingJobs/{data_labeling_job}` */
|
|
9757
9866
|
dataLabelingJob?: string;
|
|
@@ -9912,6 +10021,8 @@ declare namespace gapi.client {
|
|
|
9912
10021
|
nextPageToken?: string;
|
|
9913
10022
|
/** A list of operations that matches the specified filter in the request. */
|
|
9914
10023
|
operations?: GoogleLongrunningOperation[];
|
|
10024
|
+
/** 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. */
|
|
10025
|
+
unreachable?: string[];
|
|
9915
10026
|
}
|
|
9916
10027
|
interface GoogleLongrunningOperation {
|
|
9917
10028
|
/** 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. */
|
|
@@ -11614,6 +11725,8 @@ declare namespace gapi.client {
|
|
|
11614
11725
|
prettyPrint?: boolean;
|
|
11615
11726
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
11616
11727
|
quotaUser?: string;
|
|
11728
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
11729
|
+
returnPartialSuccess?: boolean;
|
|
11617
11730
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11618
11731
|
upload_protocol?: string;
|
|
11619
11732
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -11967,6 +12080,8 @@ declare namespace gapi.client {
|
|
|
11967
12080
|
prettyPrint?: boolean;
|
|
11968
12081
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
11969
12082
|
quotaUser?: string;
|
|
12083
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
12084
|
+
returnPartialSuccess?: boolean;
|
|
11970
12085
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11971
12086
|
upload_protocol?: string;
|
|
11972
12087
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -12322,6 +12437,8 @@ declare namespace gapi.client {
|
|
|
12322
12437
|
prettyPrint?: boolean;
|
|
12323
12438
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
12324
12439
|
quotaUser?: string;
|
|
12440
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
12441
|
+
returnPartialSuccess?: boolean;
|
|
12325
12442
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12326
12443
|
upload_protocol?: string;
|
|
12327
12444
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -12499,6 +12616,8 @@ declare namespace gapi.client {
|
|
|
12499
12616
|
prettyPrint?: boolean;
|
|
12500
12617
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
12501
12618
|
quotaUser?: string;
|
|
12619
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
12620
|
+
returnPartialSuccess?: boolean;
|
|
12502
12621
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12503
12622
|
upload_protocol?: string;
|
|
12504
12623
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -12684,6 +12803,8 @@ declare namespace gapi.client {
|
|
|
12684
12803
|
prettyPrint?: boolean;
|
|
12685
12804
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
12686
12805
|
quotaUser?: string;
|
|
12806
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
12807
|
+
returnPartialSuccess?: boolean;
|
|
12687
12808
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12688
12809
|
upload_protocol?: string;
|
|
12689
12810
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -13112,6 +13233,8 @@ declare namespace gapi.client {
|
|
|
13112
13233
|
prettyPrint?: boolean;
|
|
13113
13234
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
13114
13235
|
quotaUser?: string;
|
|
13236
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
13237
|
+
returnPartialSuccess?: boolean;
|
|
13115
13238
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13116
13239
|
upload_protocol?: string;
|
|
13117
13240
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -13257,6 +13380,8 @@ declare namespace gapi.client {
|
|
|
13257
13380
|
prettyPrint?: boolean;
|
|
13258
13381
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
13259
13382
|
quotaUser?: string;
|
|
13383
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
13384
|
+
returnPartialSuccess?: boolean;
|
|
13260
13385
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13261
13386
|
upload_protocol?: string;
|
|
13262
13387
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -13858,6 +13983,8 @@ declare namespace gapi.client {
|
|
|
13858
13983
|
prettyPrint?: boolean;
|
|
13859
13984
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
13860
13985
|
quotaUser?: string;
|
|
13986
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
13987
|
+
returnPartialSuccess?: boolean;
|
|
13861
13988
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
13862
13989
|
upload_protocol?: string;
|
|
13863
13990
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -14497,6 +14624,8 @@ declare namespace gapi.client {
|
|
|
14497
14624
|
prettyPrint?: boolean;
|
|
14498
14625
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
14499
14626
|
quotaUser?: string;
|
|
14627
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
14628
|
+
returnPartialSuccess?: boolean;
|
|
14500
14629
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14501
14630
|
upload_protocol?: string;
|
|
14502
14631
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -16391,6 +16520,8 @@ declare namespace gapi.client {
|
|
|
16391
16520
|
prettyPrint?: boolean;
|
|
16392
16521
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16393
16522
|
quotaUser?: string;
|
|
16523
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
16524
|
+
returnPartialSuccess?: boolean;
|
|
16394
16525
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16395
16526
|
upload_protocol?: string;
|
|
16396
16527
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -16787,6 +16918,8 @@ declare namespace gapi.client {
|
|
|
16787
16918
|
prettyPrint?: boolean;
|
|
16788
16919
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
16789
16920
|
quotaUser?: string;
|
|
16921
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
16922
|
+
returnPartialSuccess?: boolean;
|
|
16790
16923
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16791
16924
|
upload_protocol?: string;
|
|
16792
16925
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -17276,6 +17409,8 @@ declare namespace gapi.client {
|
|
|
17276
17409
|
prettyPrint?: boolean;
|
|
17277
17410
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
17278
17411
|
quotaUser?: string;
|
|
17412
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
17413
|
+
returnPartialSuccess?: boolean;
|
|
17279
17414
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17280
17415
|
upload_protocol?: string;
|
|
17281
17416
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -17521,6 +17656,64 @@ declare namespace gapi.client {
|
|
|
17521
17656
|
},
|
|
17522
17657
|
body: GoogleCloudAiplatformV1FetchFeatureValuesRequest,
|
|
17523
17658
|
): Request<GoogleCloudAiplatformV1FetchFeatureValuesResponse>;
|
|
17659
|
+
/** RPC to generate an access token for the given feature view. FeatureViews under the same FeatureOnlineStore share the same access token. */
|
|
17660
|
+
generateFetchAccessToken(request: {
|
|
17661
|
+
/** V1 error format. */
|
|
17662
|
+
'$.xgafv'?: string;
|
|
17663
|
+
/** OAuth access token. */
|
|
17664
|
+
access_token?: string;
|
|
17665
|
+
/** Data format for response. */
|
|
17666
|
+
alt?: string;
|
|
17667
|
+
/** JSONP */
|
|
17668
|
+
callback?: string;
|
|
17669
|
+
/** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
17670
|
+
featureView: string;
|
|
17671
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17672
|
+
fields?: string;
|
|
17673
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
17674
|
+
key?: string;
|
|
17675
|
+
/** OAuth 2.0 token for the current user. */
|
|
17676
|
+
oauth_token?: string;
|
|
17677
|
+
/** Returns response with indentations and line breaks. */
|
|
17678
|
+
prettyPrint?: boolean;
|
|
17679
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
17680
|
+
quotaUser?: string;
|
|
17681
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17682
|
+
upload_protocol?: string;
|
|
17683
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17684
|
+
uploadType?: string;
|
|
17685
|
+
/** Request body */
|
|
17686
|
+
resource: GoogleCloudAiplatformV1GenerateFetchAccessTokenRequest;
|
|
17687
|
+
}): Request<GoogleCloudAiplatformV1GenerateFetchAccessTokenResponse>;
|
|
17688
|
+
generateFetchAccessToken(
|
|
17689
|
+
request: {
|
|
17690
|
+
/** V1 error format. */
|
|
17691
|
+
'$.xgafv'?: string;
|
|
17692
|
+
/** OAuth access token. */
|
|
17693
|
+
access_token?: string;
|
|
17694
|
+
/** Data format for response. */
|
|
17695
|
+
alt?: string;
|
|
17696
|
+
/** JSONP */
|
|
17697
|
+
callback?: string;
|
|
17698
|
+
/** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
|
|
17699
|
+
featureView: string;
|
|
17700
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
17701
|
+
fields?: string;
|
|
17702
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
17703
|
+
key?: string;
|
|
17704
|
+
/** OAuth 2.0 token for the current user. */
|
|
17705
|
+
oauth_token?: string;
|
|
17706
|
+
/** Returns response with indentations and line breaks. */
|
|
17707
|
+
prettyPrint?: boolean;
|
|
17708
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
17709
|
+
quotaUser?: string;
|
|
17710
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17711
|
+
upload_protocol?: string;
|
|
17712
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
17713
|
+
uploadType?: string;
|
|
17714
|
+
},
|
|
17715
|
+
body: GoogleCloudAiplatformV1GenerateFetchAccessTokenRequest,
|
|
17716
|
+
): Request<GoogleCloudAiplatformV1GenerateFetchAccessTokenResponse>;
|
|
17524
17717
|
/** Gets details of a single FeatureView. */
|
|
17525
17718
|
get(request?: {
|
|
17526
17719
|
/** V1 error format. */
|
|
@@ -17935,6 +18128,8 @@ declare namespace gapi.client {
|
|
|
17935
18128
|
prettyPrint?: boolean;
|
|
17936
18129
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
17937
18130
|
quotaUser?: string;
|
|
18131
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
18132
|
+
returnPartialSuccess?: boolean;
|
|
17938
18133
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
17939
18134
|
upload_protocol?: string;
|
|
17940
18135
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -18387,6 +18582,8 @@ declare namespace gapi.client {
|
|
|
18387
18582
|
prettyPrint?: boolean;
|
|
18388
18583
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18389
18584
|
quotaUser?: string;
|
|
18585
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
18586
|
+
returnPartialSuccess?: boolean;
|
|
18390
18587
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18391
18588
|
upload_protocol?: string;
|
|
18392
18589
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -18810,6 +19007,8 @@ declare namespace gapi.client {
|
|
|
18810
19007
|
prettyPrint?: boolean;
|
|
18811
19008
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
18812
19009
|
quotaUser?: string;
|
|
19010
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
19011
|
+
returnPartialSuccess?: boolean;
|
|
18813
19012
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
18814
19013
|
upload_protocol?: string;
|
|
18815
19014
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -19612,6 +19811,8 @@ declare namespace gapi.client {
|
|
|
19612
19811
|
prettyPrint?: boolean;
|
|
19613
19812
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
19614
19813
|
quotaUser?: string;
|
|
19814
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
19815
|
+
returnPartialSuccess?: boolean;
|
|
19615
19816
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
19616
19817
|
upload_protocol?: string;
|
|
19617
19818
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -20157,6 +20358,8 @@ declare namespace gapi.client {
|
|
|
20157
20358
|
prettyPrint?: boolean;
|
|
20158
20359
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
20159
20360
|
quotaUser?: string;
|
|
20361
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
20362
|
+
returnPartialSuccess?: boolean;
|
|
20160
20363
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20161
20364
|
upload_protocol?: string;
|
|
20162
20365
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -20510,6 +20713,8 @@ declare namespace gapi.client {
|
|
|
20510
20713
|
prettyPrint?: boolean;
|
|
20511
20714
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
20512
20715
|
quotaUser?: string;
|
|
20716
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
20717
|
+
returnPartialSuccess?: boolean;
|
|
20513
20718
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20514
20719
|
upload_protocol?: string;
|
|
20515
20720
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -21157,6 +21362,8 @@ declare namespace gapi.client {
|
|
|
21157
21362
|
prettyPrint?: boolean;
|
|
21158
21363
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
21159
21364
|
quotaUser?: string;
|
|
21365
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
21366
|
+
returnPartialSuccess?: boolean;
|
|
21160
21367
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21161
21368
|
upload_protocol?: string;
|
|
21162
21369
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -21630,6 +21837,8 @@ declare namespace gapi.client {
|
|
|
21630
21837
|
prettyPrint?: boolean;
|
|
21631
21838
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
21632
21839
|
quotaUser?: string;
|
|
21840
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
21841
|
+
returnPartialSuccess?: boolean;
|
|
21633
21842
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21634
21843
|
upload_protocol?: string;
|
|
21635
21844
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -22086,6 +22295,8 @@ declare namespace gapi.client {
|
|
|
22086
22295
|
prettyPrint?: boolean;
|
|
22087
22296
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
22088
22297
|
quotaUser?: string;
|
|
22298
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
22299
|
+
returnPartialSuccess?: boolean;
|
|
22089
22300
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
22090
22301
|
upload_protocol?: string;
|
|
22091
22302
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -22714,6 +22925,8 @@ declare namespace gapi.client {
|
|
|
22714
22925
|
prettyPrint?: boolean;
|
|
22715
22926
|
/** Available 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
22927
|
quotaUser?: string;
|
|
22928
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
22929
|
+
returnPartialSuccess?: boolean;
|
|
22717
22930
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
22718
22931
|
upload_protocol?: string;
|
|
22719
22932
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -23348,6 +23561,8 @@ declare namespace gapi.client {
|
|
|
23348
23561
|
prettyPrint?: boolean;
|
|
23349
23562
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
23350
23563
|
quotaUser?: string;
|
|
23564
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
23565
|
+
returnPartialSuccess?: boolean;
|
|
23351
23566
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
23352
23567
|
upload_protocol?: string;
|
|
23353
23568
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -23649,6 +23864,8 @@ declare namespace gapi.client {
|
|
|
23649
23864
|
prettyPrint?: boolean;
|
|
23650
23865
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
23651
23866
|
quotaUser?: string;
|
|
23867
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
23868
|
+
returnPartialSuccess?: boolean;
|
|
23652
23869
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
23653
23870
|
upload_protocol?: string;
|
|
23654
23871
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -23913,6 +24130,8 @@ declare namespace gapi.client {
|
|
|
23913
24130
|
prettyPrint?: boolean;
|
|
23914
24131
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
23915
24132
|
quotaUser?: string;
|
|
24133
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
24134
|
+
returnPartialSuccess?: boolean;
|
|
23916
24135
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
23917
24136
|
upload_protocol?: string;
|
|
23918
24137
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -24444,6 +24663,8 @@ declare namespace gapi.client {
|
|
|
24444
24663
|
prettyPrint?: boolean;
|
|
24445
24664
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
24446
24665
|
quotaUser?: string;
|
|
24666
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
24667
|
+
returnPartialSuccess?: boolean;
|
|
24447
24668
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24448
24669
|
upload_protocol?: string;
|
|
24449
24670
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -24835,6 +25056,8 @@ declare namespace gapi.client {
|
|
|
24835
25056
|
prettyPrint?: boolean;
|
|
24836
25057
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
24837
25058
|
quotaUser?: string;
|
|
25059
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
25060
|
+
returnPartialSuccess?: boolean;
|
|
24838
25061
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
24839
25062
|
upload_protocol?: string;
|
|
24840
25063
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -25878,6 +26101,8 @@ declare namespace gapi.client {
|
|
|
25878
26101
|
prettyPrint?: boolean;
|
|
25879
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. */
|
|
25880
26103
|
quotaUser?: string;
|
|
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 e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
26105
|
+
returnPartialSuccess?: boolean;
|
|
25881
26106
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
25882
26107
|
upload_protocol?: string;
|
|
25883
26108
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -26181,6 +26406,8 @@ declare namespace gapi.client {
|
|
|
26181
26406
|
prettyPrint?: boolean;
|
|
26182
26407
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
26183
26408
|
quotaUser?: string;
|
|
26409
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
26410
|
+
returnPartialSuccess?: boolean;
|
|
26184
26411
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26185
26412
|
upload_protocol?: string;
|
|
26186
26413
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -26652,6 +26879,8 @@ declare namespace gapi.client {
|
|
|
26652
26879
|
prettyPrint?: boolean;
|
|
26653
26880
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
26654
26881
|
quotaUser?: string;
|
|
26882
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
26883
|
+
returnPartialSuccess?: boolean;
|
|
26655
26884
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
26656
26885
|
upload_protocol?: string;
|
|
26657
26886
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -27103,6 +27332,8 @@ declare namespace gapi.client {
|
|
|
27103
27332
|
prettyPrint?: boolean;
|
|
27104
27333
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
27105
27334
|
quotaUser?: string;
|
|
27335
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
27336
|
+
returnPartialSuccess?: boolean;
|
|
27106
27337
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27107
27338
|
upload_protocol?: string;
|
|
27108
27339
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -27248,6 +27479,8 @@ declare namespace gapi.client {
|
|
|
27248
27479
|
prettyPrint?: boolean;
|
|
27249
27480
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
27250
27481
|
quotaUser?: string;
|
|
27482
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
27483
|
+
returnPartialSuccess?: boolean;
|
|
27251
27484
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27252
27485
|
upload_protocol?: string;
|
|
27253
27486
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -27663,6 +27896,8 @@ declare namespace gapi.client {
|
|
|
27663
27896
|
prettyPrint?: boolean;
|
|
27664
27897
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
27665
27898
|
quotaUser?: string;
|
|
27899
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
27900
|
+
returnPartialSuccess?: boolean;
|
|
27666
27901
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27667
27902
|
upload_protocol?: string;
|
|
27668
27903
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -28145,6 +28380,64 @@ declare namespace gapi.client {
|
|
|
28145
28380
|
},
|
|
28146
28381
|
body: GoogleCloudAiplatformV1CountTokensRequest,
|
|
28147
28382
|
): Request<GoogleCloudAiplatformV1CountTokensResponse>;
|
|
28383
|
+
/** Embed content with multimodal inputs. */
|
|
28384
|
+
embedContent(request: {
|
|
28385
|
+
/** V1 error format. */
|
|
28386
|
+
'$.xgafv'?: string;
|
|
28387
|
+
/** OAuth access token. */
|
|
28388
|
+
access_token?: string;
|
|
28389
|
+
/** Data format for response. */
|
|
28390
|
+
alt?: string;
|
|
28391
|
+
/** JSONP */
|
|
28392
|
+
callback?: string;
|
|
28393
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
28394
|
+
fields?: string;
|
|
28395
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
28396
|
+
key?: string;
|
|
28397
|
+
/** Required. The name of the publisher model requested to serve the prediction. Format: `projects/{project}/locations/{location}/publishers/*/models/*` */
|
|
28398
|
+
model: string;
|
|
28399
|
+
/** OAuth 2.0 token for the current user. */
|
|
28400
|
+
oauth_token?: string;
|
|
28401
|
+
/** Returns response with indentations and line breaks. */
|
|
28402
|
+
prettyPrint?: boolean;
|
|
28403
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
28404
|
+
quotaUser?: string;
|
|
28405
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28406
|
+
upload_protocol?: string;
|
|
28407
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28408
|
+
uploadType?: string;
|
|
28409
|
+
/** Request body */
|
|
28410
|
+
resource: GoogleCloudAiplatformV1EmbedContentRequest;
|
|
28411
|
+
}): Request<GoogleCloudAiplatformV1EmbedContentResponse>;
|
|
28412
|
+
embedContent(
|
|
28413
|
+
request: {
|
|
28414
|
+
/** V1 error format. */
|
|
28415
|
+
'$.xgafv'?: string;
|
|
28416
|
+
/** OAuth access token. */
|
|
28417
|
+
access_token?: string;
|
|
28418
|
+
/** Data format for response. */
|
|
28419
|
+
alt?: string;
|
|
28420
|
+
/** JSONP */
|
|
28421
|
+
callback?: string;
|
|
28422
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
28423
|
+
fields?: string;
|
|
28424
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
28425
|
+
key?: string;
|
|
28426
|
+
/** Required. The name of the publisher model requested to serve the prediction. Format: `projects/{project}/locations/{location}/publishers/*/models/*` */
|
|
28427
|
+
model: string;
|
|
28428
|
+
/** OAuth 2.0 token for the current user. */
|
|
28429
|
+
oauth_token?: string;
|
|
28430
|
+
/** Returns response with indentations and line breaks. */
|
|
28431
|
+
prettyPrint?: boolean;
|
|
28432
|
+
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
28433
|
+
quotaUser?: string;
|
|
28434
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28435
|
+
upload_protocol?: string;
|
|
28436
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28437
|
+
uploadType?: string;
|
|
28438
|
+
},
|
|
28439
|
+
body: GoogleCloudAiplatformV1EmbedContentRequest,
|
|
28440
|
+
): Request<GoogleCloudAiplatformV1EmbedContentResponse>;
|
|
28148
28441
|
/** Fetch an asynchronous online prediction operation. */
|
|
28149
28442
|
fetchPredictOperation(request: {
|
|
28150
28443
|
/** V1 error format. */
|
|
@@ -28722,6 +29015,8 @@ declare namespace gapi.client {
|
|
|
28722
29015
|
prettyPrint?: boolean;
|
|
28723
29016
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
28724
29017
|
quotaUser?: string;
|
|
29018
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
29019
|
+
returnPartialSuccess?: boolean;
|
|
28725
29020
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28726
29021
|
upload_protocol?: string;
|
|
28727
29022
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -28867,6 +29162,8 @@ declare namespace gapi.client {
|
|
|
28867
29162
|
prettyPrint?: boolean;
|
|
28868
29163
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
28869
29164
|
quotaUser?: string;
|
|
29165
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
29166
|
+
returnPartialSuccess?: boolean;
|
|
28870
29167
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28871
29168
|
upload_protocol?: string;
|
|
28872
29169
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -29367,6 +29664,8 @@ declare namespace gapi.client {
|
|
|
29367
29664
|
prettyPrint?: boolean;
|
|
29368
29665
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
29369
29666
|
quotaUser?: string;
|
|
29667
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
29668
|
+
returnPartialSuccess?: boolean;
|
|
29370
29669
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29371
29670
|
upload_protocol?: string;
|
|
29372
29671
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -29515,6 +29814,8 @@ declare namespace gapi.client {
|
|
|
29515
29814
|
prettyPrint?: boolean;
|
|
29516
29815
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
29517
29816
|
quotaUser?: string;
|
|
29817
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
29818
|
+
returnPartialSuccess?: boolean;
|
|
29518
29819
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29519
29820
|
upload_protocol?: string;
|
|
29520
29821
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -29988,6 +30289,8 @@ declare namespace gapi.client {
|
|
|
29988
30289
|
prettyPrint?: boolean;
|
|
29989
30290
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
29990
30291
|
quotaUser?: string;
|
|
30292
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
30293
|
+
returnPartialSuccess?: boolean;
|
|
29991
30294
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29992
30295
|
upload_protocol?: string;
|
|
29993
30296
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -30461,6 +30764,8 @@ declare namespace gapi.client {
|
|
|
30461
30764
|
prettyPrint?: boolean;
|
|
30462
30765
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
30463
30766
|
quotaUser?: string;
|
|
30767
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
30768
|
+
returnPartialSuccess?: boolean;
|
|
30464
30769
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
30465
30770
|
upload_protocol?: string;
|
|
30466
30771
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -30818,6 +31123,8 @@ declare namespace gapi.client {
|
|
|
30818
31123
|
prettyPrint?: boolean;
|
|
30819
31124
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
30820
31125
|
quotaUser?: string;
|
|
31126
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
31127
|
+
returnPartialSuccess?: boolean;
|
|
30821
31128
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
30822
31129
|
upload_protocol?: string;
|
|
30823
31130
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -30963,6 +31270,8 @@ declare namespace gapi.client {
|
|
|
30963
31270
|
prettyPrint?: boolean;
|
|
30964
31271
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
30965
31272
|
quotaUser?: string;
|
|
31273
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
31274
|
+
returnPartialSuccess?: boolean;
|
|
30966
31275
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
30967
31276
|
upload_protocol?: string;
|
|
30968
31277
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -31807,6 +32116,8 @@ declare namespace gapi.client {
|
|
|
31807
32116
|
prettyPrint?: boolean;
|
|
31808
32117
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
31809
32118
|
quotaUser?: string;
|
|
32119
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
32120
|
+
returnPartialSuccess?: boolean;
|
|
31810
32121
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
31811
32122
|
upload_protocol?: string;
|
|
31812
32123
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -31952,6 +32263,8 @@ declare namespace gapi.client {
|
|
|
31952
32263
|
prettyPrint?: boolean;
|
|
31953
32264
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
31954
32265
|
quotaUser?: string;
|
|
32266
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
32267
|
+
returnPartialSuccess?: boolean;
|
|
31955
32268
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
31956
32269
|
upload_protocol?: string;
|
|
31957
32270
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -32097,6 +32410,8 @@ declare namespace gapi.client {
|
|
|
32097
32410
|
prettyPrint?: boolean;
|
|
32098
32411
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
32099
32412
|
quotaUser?: string;
|
|
32413
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
32414
|
+
returnPartialSuccess?: boolean;
|
|
32100
32415
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
32101
32416
|
upload_protocol?: string;
|
|
32102
32417
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -33248,6 +33563,8 @@ declare namespace gapi.client {
|
|
|
33248
33563
|
prettyPrint?: boolean;
|
|
33249
33564
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
33250
33565
|
quotaUser?: string;
|
|
33566
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
33567
|
+
returnPartialSuccess?: boolean;
|
|
33251
33568
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33252
33569
|
upload_protocol?: string;
|
|
33253
33570
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -33691,6 +34008,8 @@ declare namespace gapi.client {
|
|
|
33691
34008
|
prettyPrint?: boolean;
|
|
33692
34009
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
33693
34010
|
quotaUser?: string;
|
|
34011
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
34012
|
+
returnPartialSuccess?: boolean;
|
|
33694
34013
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
33695
34014
|
upload_protocol?: string;
|
|
33696
34015
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
@@ -34044,6 +34363,8 @@ declare namespace gapi.client {
|
|
|
34044
34363
|
prettyPrint?: boolean;
|
|
34045
34364
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
34046
34365
|
quotaUser?: string;
|
|
34366
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
34367
|
+
returnPartialSuccess?: boolean;
|
|
34047
34368
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34048
34369
|
upload_protocol?: string;
|
|
34049
34370
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|