@maxim_mazurok/gapi.client.aiplatform-v1 0.3.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 +227 -4
- 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;
|
|
@@ -1685,6 +1685,30 @@ declare namespace gapi.client {
|
|
|
1685
1685
|
/** The mode of the predictor to be used in dynamic retrieval. */
|
|
1686
1686
|
mode?: string;
|
|
1687
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
|
+
}
|
|
1688
1712
|
interface GoogleCloudAiplatformV1EncryptionSpec {
|
|
1689
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. */
|
|
1690
1714
|
kmsKeyName?: string;
|
|
@@ -1736,6 +1760,8 @@ declare namespace gapi.client {
|
|
|
1736
1760
|
updateTime?: string;
|
|
1737
1761
|
}
|
|
1738
1762
|
interface GoogleCloudAiplatformV1EnterpriseWebSearch {
|
|
1763
|
+
/** Optional. Sites with confidence level chosen & above this value will be blocked from the search results. */
|
|
1764
|
+
blockingConfidence?: string;
|
|
1739
1765
|
/** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. */
|
|
1740
1766
|
excludeDomains?: string[];
|
|
1741
1767
|
}
|
|
@@ -2712,6 +2738,10 @@ declare namespace gapi.client {
|
|
|
2712
2738
|
interface GoogleCloudAiplatformV1FeatureOnlineStoreBigtable {
|
|
2713
2739
|
/** Required. Autoscaling config applied to Bigtable Instance. */
|
|
2714
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;
|
|
2715
2745
|
}
|
|
2716
2746
|
interface GoogleCloudAiplatformV1FeatureOnlineStoreBigtableAutoScaling {
|
|
2717
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%. */
|
|
@@ -2721,6 +2751,14 @@ declare namespace gapi.client {
|
|
|
2721
2751
|
/** Required. The minimum number of nodes to scale down to. Must be greater than or equal to 1. */
|
|
2722
2752
|
minNodeCount?: number;
|
|
2723
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
|
+
}
|
|
2724
2762
|
interface GoogleCloudAiplatformV1FeatureOnlineStoreDedicatedServingEndpoint {
|
|
2725
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. */
|
|
2726
2764
|
privateServiceConnectConfig?: GoogleCloudAiplatformV1PrivateServiceConnectConfig;
|
|
@@ -2859,6 +2897,8 @@ declare namespace gapi.client {
|
|
|
2859
2897
|
interface GoogleCloudAiplatformV1FeatureView {
|
|
2860
2898
|
/** Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore. */
|
|
2861
2899
|
bigQuerySource?: GoogleCloudAiplatformV1FeatureViewBigQuerySource;
|
|
2900
|
+
/** Output only. Metadata containing information about the Cloud Bigtable. */
|
|
2901
|
+
bigtableMetadata?: GoogleCloudAiplatformV1FeatureViewBigtableMetadata;
|
|
2862
2902
|
/** Output only. Timestamp when this FeatureView was created. */
|
|
2863
2903
|
createTime?: string;
|
|
2864
2904
|
/** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
@@ -2894,6 +2934,10 @@ declare namespace gapi.client {
|
|
|
2894
2934
|
/** Required. The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig. */
|
|
2895
2935
|
uri?: string;
|
|
2896
2936
|
}
|
|
2937
|
+
interface GoogleCloudAiplatformV1FeatureViewBigtableMetadata {
|
|
2938
|
+
/** Output only. The Bigtable App Profile to use for reading from Bigtable. */
|
|
2939
|
+
readAppProfile?: string;
|
|
2940
|
+
}
|
|
2897
2941
|
interface GoogleCloudAiplatformV1FeatureViewDataKey {
|
|
2898
2942
|
/** The actual Entity ID will be composed from this struct. This should match with the way ID is defined in the FeatureView spec. */
|
|
2899
2943
|
compositeKey?: GoogleCloudAiplatformV1FeatureViewDataKeyCompositeKey;
|
|
@@ -3271,6 +3315,13 @@ declare namespace gapi.client {
|
|
|
3271
3315
|
/** Output only. The traffic type for this request. */
|
|
3272
3316
|
trafficType?: string;
|
|
3273
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
|
+
}
|
|
3274
3325
|
interface GoogleCloudAiplatformV1GenerateInstanceRubricsRequest {
|
|
3275
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. */
|
|
3276
3327
|
contents?: GoogleCloudAiplatformV1Content[];
|
|
@@ -3324,6 +3375,8 @@ declare namespace gapi.client {
|
|
|
3324
3375
|
enableAffectiveDialog?: boolean;
|
|
3325
3376
|
/** Optional. Frequency penalties. */
|
|
3326
3377
|
frequencyPenalty?: number;
|
|
3378
|
+
/** Optional. Config for image generation features. */
|
|
3379
|
+
imageConfig?: GoogleCloudAiplatformV1ImageConfig;
|
|
3327
3380
|
/** Optional. Logit probabilities. */
|
|
3328
3381
|
logprobs?: number;
|
|
3329
3382
|
/** Optional. The maximum number of output tokens to generate per message. */
|
|
@@ -3557,6 +3610,10 @@ declare namespace gapi.client {
|
|
|
3557
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. */
|
|
3558
3611
|
ids?: string[];
|
|
3559
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
|
+
}
|
|
3560
3617
|
interface GoogleCloudAiplatformV1ImportDataConfig {
|
|
3561
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. */
|
|
3562
3619
|
annotationLabels?: {[P in string]: string};
|
|
@@ -4885,6 +4942,10 @@ declare namespace gapi.client {
|
|
|
4885
4942
|
/** The step of the checkpoint. */
|
|
4886
4943
|
step?: string;
|
|
4887
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
|
+
}
|
|
4888
4949
|
interface GoogleCloudAiplatformV1MutateDeployedIndexOperationMetadata {
|
|
4889
4950
|
/** The unique index id specified by user */
|
|
4890
4951
|
deployedIndexId?: string;
|
|
@@ -5705,6 +5766,8 @@ declare namespace gapi.client {
|
|
|
5705
5766
|
interface GoogleCloudAiplatformV1PredictRequest {
|
|
5706
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. */
|
|
5707
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};
|
|
5708
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. */
|
|
5709
5772
|
parameters?: any;
|
|
5710
5773
|
}
|
|
@@ -5744,6 +5807,14 @@ declare namespace gapi.client {
|
|
|
5744
5807
|
/** Preset option controlling parameters for speed-precision trade-off when querying for examples. If omitted, defaults to `PRECISE`. */
|
|
5745
5808
|
query?: string;
|
|
5746
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
|
+
}
|
|
5747
5818
|
interface GoogleCloudAiplatformV1PrivateEndpoints {
|
|
5748
5819
|
/** Output only. Http(s) path to send explain requests. */
|
|
5749
5820
|
explainHttpUri?: string;
|
|
@@ -8553,6 +8624,12 @@ declare namespace gapi.client {
|
|
|
8553
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. */
|
|
8554
8625
|
noisySampleCount?: number;
|
|
8555
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
|
+
}
|
|
8556
8633
|
interface GoogleCloudAiplatformV1SpecialistPool {
|
|
8557
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. */
|
|
8558
8635
|
displayName?: string;
|
|
@@ -8586,6 +8663,8 @@ declare namespace gapi.client {
|
|
|
8586
8663
|
interface GoogleCloudAiplatformV1SpeechConfig {
|
|
8587
8664
|
/** Optional. Language code (ISO 639. e.g. en-US) for the speech synthesization. */
|
|
8588
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;
|
|
8589
8668
|
/** The configuration for the speaker to use. */
|
|
8590
8669
|
voiceConfig?: GoogleCloudAiplatformV1VoiceConfig;
|
|
8591
8670
|
}
|
|
@@ -9258,6 +9337,8 @@ declare namespace gapi.client {
|
|
|
9258
9337
|
retrievalConfig?: GoogleCloudAiplatformV1RetrievalConfig;
|
|
9259
9338
|
}
|
|
9260
9339
|
interface GoogleCloudAiplatformV1ToolGoogleSearch {
|
|
9340
|
+
/** Optional. Sites with confidence level chosen & above this value will be blocked from the search results. */
|
|
9341
|
+
blockingConfidence?: string;
|
|
9261
9342
|
/** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"]. */
|
|
9262
9343
|
excludeDomains?: string[];
|
|
9263
9344
|
}
|
|
@@ -9541,7 +9622,7 @@ declare namespace gapi.client {
|
|
|
9541
9622
|
checkpoints?: GoogleCloudAiplatformV1TunedModelCheckpoint[];
|
|
9542
9623
|
/** Output only. A resource name of an Endpoint. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
|
|
9543
9624
|
endpoint?: string;
|
|
9544
|
-
/** 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}` */
|
|
9545
9626
|
model?: string;
|
|
9546
9627
|
}
|
|
9547
9628
|
interface GoogleCloudAiplatformV1TunedModelCheckpoint {
|
|
@@ -9585,6 +9666,8 @@ declare namespace gapi.client {
|
|
|
9585
9666
|
labels?: {[P in string]: string};
|
|
9586
9667
|
/** Output only. Identifier. Resource name of a TuningJob. Format: `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` */
|
|
9587
9668
|
name?: string;
|
|
9669
|
+
/** The pre-tuned model for continuous tuning. */
|
|
9670
|
+
preTunedModel?: GoogleCloudAiplatformV1PreTunedModel;
|
|
9588
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. */
|
|
9589
9672
|
serviceAccount?: string;
|
|
9590
9673
|
/** Output only. Time when the TuningJob for the first time entered the `JOB_STATE_RUNNING` state. */
|
|
@@ -9595,7 +9678,7 @@ declare namespace gapi.client {
|
|
|
9595
9678
|
supervisedTuningSpec?: GoogleCloudAiplatformV1SupervisedTuningSpec;
|
|
9596
9679
|
/** Output only. The tuned model resources associated with this TuningJob. */
|
|
9597
9680
|
tunedModel?: GoogleCloudAiplatformV1TunedModel;
|
|
9598
|
-
/** 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. */
|
|
9599
9682
|
tunedModelDisplayName?: string;
|
|
9600
9683
|
/** Output only. The tuning data statistics associated with this TuningJob. */
|
|
9601
9684
|
tuningDataStats?: GoogleCloudAiplatformV1TuningDataStats;
|
|
@@ -9754,6 +9837,30 @@ declare namespace gapi.client {
|
|
|
9754
9837
|
/** Status of the url retrieval. */
|
|
9755
9838
|
urlRetrievalStatus?: string;
|
|
9756
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
|
+
}
|
|
9757
9864
|
interface GoogleCloudAiplatformV1UserActionReference {
|
|
9758
9865
|
/** For API calls that start a LabelingJob. Resource name of the LabelingJob. Format: `projects/{project}/locations/{location}/dataLabelingJobs/{data_labeling_job}` */
|
|
9759
9866
|
dataLabelingJob?: string;
|
|
@@ -17549,6 +17656,64 @@ declare namespace gapi.client {
|
|
|
17549
17656
|
},
|
|
17550
17657
|
body: GoogleCloudAiplatformV1FetchFeatureValuesRequest,
|
|
17551
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>;
|
|
17552
17717
|
/** Gets details of a single FeatureView. */
|
|
17553
17718
|
get(request?: {
|
|
17554
17719
|
/** V1 error format. */
|
|
@@ -28215,6 +28380,64 @@ declare namespace gapi.client {
|
|
|
28215
28380
|
},
|
|
28216
28381
|
body: GoogleCloudAiplatformV1CountTokensRequest,
|
|
28217
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>;
|
|
28218
28441
|
/** Fetch an asynchronous online prediction operation. */
|
|
28219
28442
|
fetchPredictOperation(request: {
|
|
28220
28443
|
/** V1 error format. */
|