@maxim_mazurok/gapi.client.aiplatform-v1beta1 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.
Files changed (2) hide show
  1. package/index.d.ts +693 -7
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
12
- // Revision: 20250926
12
+ // Revision: 20251010
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1532,6 +1532,8 @@ declare namespace gapi.client {
1532
1532
  autoscalingMetricSpecs?: GoogleCloudAiplatformV1beta1AutoscalingMetricSpec[];
1533
1533
  /** Optional. Immutable. If set, use DWS resource to schedule the deployment workload. reference: (https://cloud.google.com/blog/products/compute/introducing-dynamic-workload-scheduler) */
1534
1534
  flexStart?: GoogleCloudAiplatformV1beta1FlexStart;
1535
+ /** Immutable. Number of initial replicas being deployed on when scaling the workload up from zero or when creating the workload in case min_replica_count = 0. When min_replica_count > 0 (meaning that the scale-to-zero feature is not enabled), initial_replica_count should not be set. When min_replica_count = 0 (meaning that the scale-to-zero feature is enabled), initial_replica_count should be larger than zero, but no greater than max_replica_count. */
1536
+ initialReplicaCount?: number;
1535
1537
  /** Required. Immutable. The specification of a single machine being used. */
1536
1538
  machineSpec?: GoogleCloudAiplatformV1beta1MachineSpec;
1537
1539
  /** Immutable. The maximum number of replicas that may be deployed on when the traffic against it increases. If the requested value is too large, the deployment will error, but if deployment succeeds then the ability to scale to that many replicas is guaranteed (barring service outages). If traffic increases beyond what its replicas at maximum may handle, a portion of the traffic will be dropped. If this value is not provided, will use min_replica_count as the default value. The value of this field impacts the charge against Vertex CPU and GPU quotas. Specifically, you will be charged for (max_replica_count * number of cores in the selected machine type) and (max_replica_count * number of GPUs per replica in the selected machine type). */
@@ -1540,9 +1542,17 @@ declare namespace gapi.client {
1540
1542
  minReplicaCount?: number;
1541
1543
  /** Optional. Number of required available replicas for the deployment to succeed. This field is only needed when partial deployment/mutation is desired. If set, the deploy/mutate operation will succeed once available_replica_count reaches required_replica_count, and the rest of the replicas will be retried. If not set, the default required_replica_count will be min_replica_count. */
1542
1544
  requiredReplicaCount?: number;
1545
+ /** Optional. Specification for scale-to-zero feature. */
1546
+ scaleToZeroSpec?: GoogleCloudAiplatformV1beta1DedicatedResourcesScaleToZeroSpec;
1543
1547
  /** Optional. If true, schedule the deployment workload on [spot VMs](https://cloud.google.com/kubernetes-engine/docs/concepts/spot-vms). */
1544
1548
  spot?: boolean;
1545
1549
  }
1550
+ interface GoogleCloudAiplatformV1beta1DedicatedResourcesScaleToZeroSpec {
1551
+ /** Optional. Duration of no traffic before scaling to zero. [MinValue=3600] (5 minutes) [MaxValue=28800] (8 hours) */
1552
+ idleScaledownPeriod?: string;
1553
+ /** Optional. Minimum duration that a deployment will be scaled up before traffic is evaluated for potential scale-down. [MinValue=300] (5 minutes) [MaxValue=28800] (8 hours) */
1554
+ minScaleupPeriod?: string;
1555
+ }
1546
1556
  interface GoogleCloudAiplatformV1beta1DeleteFeatureValuesOperationMetadata {
1547
1557
  /** Operation metadata for Featurestore delete Features values. */
1548
1558
  genericMetadata?: GoogleCloudAiplatformV1beta1GenericOperationMetadata;
@@ -1604,7 +1614,7 @@ declare namespace gapi.client {
1604
1614
  deployedIndexAuthConfig?: GoogleCloudAiplatformV1beta1DeployedIndexAuthConfig;
1605
1615
  /** 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'). */
1606
1616
  deploymentGroup?: string;
1607
- /** Optional. The deployment tier that the index is deployed to. DEPLOYMENT_TIER_UNSPECIFIED defaults to PERFORMANCE. */
1617
+ /** Optional. The deployment tier that the index is deployed to. DEPLOYMENT_TIER_UNSPECIFIED will use a system-chosen default tier. */
1608
1618
  deploymentTier?: string;
1609
1619
  /** The display name of the DeployedIndex. If not provided upon creation, the Index's display_name is used. */
1610
1620
  displayName?: string;
@@ -1804,6 +1814,8 @@ declare namespace gapi.client {
1804
1814
  endpointDisplayName?: string;
1805
1815
  /** Optional. Immutable. The ID to use for endpoint, which will become the final component of the endpoint resource name. If not provided, Vertex AI will generate a value for this ID. If the first character is a letter, this value may be up to 63 characters, and valid characters are `[a-z0-9-]`. The last character must be a letter or number. If the first character is a number, this value may be up to 9 characters, and valid characters are `[0-9]` with no leading zeros. When using HTTP/JSON, this field is populated based on a query string argument, such as `?endpoint_id=12345`. This is the fallback for fields that are not included in either the URI or the body. */
1806
1816
  endpointUserId?: string;
1817
+ /** Optional. The labels with user-defined metadata to organize your Endpoints. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */
1818
+ labels?: {[P in string]: string};
1807
1819
  /** Optional. Configuration for private service connect. If set, the endpoint will be exposed through private service connect. */
1808
1820
  privateServiceConnectConfig?: GoogleCloudAiplatformV1beta1PrivateServiceConnectConfig;
1809
1821
  }
@@ -1906,6 +1918,30 @@ declare namespace gapi.client {
1906
1918
  /** The mode of the predictor to be used in dynamic retrieval. */
1907
1919
  mode?: string;
1908
1920
  }
1921
+ interface GoogleCloudAiplatformV1beta1EmbedContentRequest {
1922
+ /** Optional. Whether to silently truncate the input content if it's longer than the maximum sequence length. */
1923
+ autoTruncate?: boolean;
1924
+ /** Required. Input content to be embedded. Required. */
1925
+ content?: GoogleCloudAiplatformV1beta1Content;
1926
+ /** Optional. Optional reduced dimension for the output embedding. If set, excessive values in the output embedding are truncated from the end. */
1927
+ outputDimensionality?: number;
1928
+ /** Optional. The task type of the embedding. */
1929
+ taskType?: string;
1930
+ /** Optional. An optional title for the text. */
1931
+ title?: string;
1932
+ }
1933
+ interface GoogleCloudAiplatformV1beta1EmbedContentResponse {
1934
+ /** The embedding generated from the input content. */
1935
+ embedding?: GoogleCloudAiplatformV1beta1EmbedContentResponseEmbedding;
1936
+ /** Whether the input content was truncated before generating the embedding. */
1937
+ truncated?: boolean;
1938
+ /** Metadata about the response(s). */
1939
+ usageMetadata?: GoogleCloudAiplatformV1beta1UsageMetadata;
1940
+ }
1941
+ interface GoogleCloudAiplatformV1beta1EmbedContentResponseEmbedding {
1942
+ /** Embedding vector values. */
1943
+ values?: number[];
1944
+ }
1909
1945
  interface GoogleCloudAiplatformV1beta1EnableModelRequest {
1910
1946
  /** Optional. The ID links the Marketplace listing to the underlying Vertex AI model endpoint. Format: `services/{service_id}` Format: `services/{service_id}` */
1911
1947
  service?: string;
@@ -1967,6 +2003,8 @@ declare namespace gapi.client {
1967
2003
  updateTime?: string;
1968
2004
  }
1969
2005
  interface GoogleCloudAiplatformV1beta1EnterpriseWebSearch {
2006
+ /** Optional. Sites with confidence level chosen & above this value will be blocked from the search results. */
2007
+ blockingConfidence?: string;
1970
2008
  /** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. */
1971
2009
  excludeDomains?: string[];
1972
2010
  }
@@ -2393,7 +2431,7 @@ declare namespace gapi.client {
2393
2431
  interface GoogleCloudAiplatformV1beta1EvaluationRunInferenceConfig {
2394
2432
  /** Optional. Generation config. */
2395
2433
  generationConfig?: GoogleCloudAiplatformV1beta1GenerationConfig;
2396
- /** Required. 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}` */
2434
+ /** Optional. The fully qualified name of the publisher model or endpoint to use. Publisher model format: `projects/{project}/locations/{location}/publishers/*‍/models/*` Endpoint format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
2397
2435
  model?: string;
2398
2436
  }
2399
2437
  interface GoogleCloudAiplatformV1beta1EvaluationRunMetric {
@@ -2493,8 +2531,6 @@ declare namespace gapi.client {
2493
2531
  stateDelta?: {[P in string]: any};
2494
2532
  /** Optional. If set, the event transfers to the specified agent. */
2495
2533
  transferAgent?: string;
2496
- /** Deprecated. If set, the event transfers to the specified agent. */
2497
- transferToAgent?: boolean;
2498
2534
  }
2499
2535
  interface GoogleCloudAiplatformV1beta1EventMetadata {
2500
2536
  /** Optional. The branch of the event. The format is like agent_1.agent_2.agent_3, where agent_1 is the parent of agent_2, and agent_2 is the parent of agent_3. Branch is used when multiple child agents shouldn't see their siblings' conversation history. */
@@ -3171,6 +3207,10 @@ declare namespace gapi.client {
3171
3207
  interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtable {
3172
3208
  /** Required. Autoscaling config applied to Bigtable Instance. */
3173
3209
  autoScaling?: GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling;
3210
+ /** Output only. Metadata of the Bigtable instance. Output only. */
3211
+ bigtableMetadata?: GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata;
3212
+ /** Optional. It true, enable direct access to the Bigtable instance. */
3213
+ enableDirectBigtableAccess?: boolean;
3174
3214
  }
3175
3215
  interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableAutoScaling {
3176
3216
  /** 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%. */
@@ -3180,6 +3220,14 @@ declare namespace gapi.client {
3180
3220
  /** Required. The minimum number of nodes to scale down to. Must be greater than or equal to 1. */
3181
3221
  minNodeCount?: number;
3182
3222
  }
3223
+ interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata {
3224
+ /** The Cloud Bigtable instance id. */
3225
+ instanceId?: string;
3226
+ /** The Cloud Bigtable table id. */
3227
+ tableId?: string;
3228
+ /** Tenant project ID. */
3229
+ tenantProjectId?: string;
3230
+ }
3183
3231
  interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreDedicatedServingEndpoint {
3184
3232
  /** 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. */
3185
3233
  privateServiceConnectConfig?: GoogleCloudAiplatformV1beta1PrivateServiceConnectConfig;
@@ -3352,6 +3400,8 @@ declare namespace gapi.client {
3352
3400
  interface GoogleCloudAiplatformV1beta1FeatureView {
3353
3401
  /** Optional. Configures how data is supposed to be extracted from a BigQuery source to be loaded onto the FeatureOnlineStore. */
3354
3402
  bigQuerySource?: GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource;
3403
+ /** Output only. Metadata containing information about the Cloud Bigtable. */
3404
+ bigtableMetadata?: GoogleCloudAiplatformV1beta1FeatureViewBigtableMetadata;
3355
3405
  /** Output only. Timestamp when this FeatureView was created. */
3356
3406
  createTime?: string;
3357
3407
  /** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
@@ -3389,6 +3439,10 @@ declare namespace gapi.client {
3389
3439
  /** Required. The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig. */
3390
3440
  uri?: string;
3391
3441
  }
3442
+ interface GoogleCloudAiplatformV1beta1FeatureViewBigtableMetadata {
3443
+ /** Output only. The Bigtable App Profile to use for reading from Bigtable. */
3444
+ readAppProfile?: string;
3445
+ }
3392
3446
  interface GoogleCloudAiplatformV1beta1FeatureViewDataKey {
3393
3447
  /** The actual Entity ID will be composed from this struct. This should match with the way ID is defined in the FeatureView spec. */
3394
3448
  compositeKey?: GoogleCloudAiplatformV1beta1FeatureViewDataKeyCompositeKey;
@@ -3701,6 +3755,14 @@ declare namespace gapi.client {
3701
3755
  /** Optional. Which version to use for evaluation. */
3702
3756
  version?: number;
3703
3757
  }
3758
+ interface GoogleCloudAiplatformV1beta1FullFineTuningSpec {
3759
+ /** Optional. Hyperparameters for Full Fine Tuning. */
3760
+ hyperParameters?: GoogleCloudAiplatformV1beta1SupervisedHyperParameters;
3761
+ /** Required. Training dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
3762
+ trainingDatasetUri?: string;
3763
+ /** Optional. Validation dataset used for tuning. The dataset can be specified as either a Cloud Storage path to a JSONL file or as the resource name of a Vertex Multimodal Dataset. */
3764
+ validationDatasetUri?: string;
3765
+ }
3704
3766
  interface GoogleCloudAiplatformV1beta1FunctionCall {
3705
3767
  /** Optional. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details. */
3706
3768
  args?: {[P in string]: any};
@@ -3734,9 +3796,33 @@ declare namespace gapi.client {
3734
3796
  id?: string;
3735
3797
  /** Required. The name of the function to call. Matches [FunctionDeclaration.name] and [FunctionCall.name]. */
3736
3798
  name?: string;
3799
+ /** Optional. Ordered `Parts` that constitute a function response. Parts may have different IANA MIME types. */
3800
+ parts?: GoogleCloudAiplatformV1beta1FunctionResponsePart[];
3737
3801
  /** Required. The function response in JSON object format. Use "output" key to specify function output and "error" key to specify error details (if any). If "output" and "error" keys are not specified, then whole "response" is treated as function output. */
3738
3802
  response?: {[P in string]: any};
3739
3803
  }
3804
+ interface GoogleCloudAiplatformV1beta1FunctionResponseBlob {
3805
+ /** Required. Raw bytes. */
3806
+ data?: string;
3807
+ /** Optional. Display name of the blob. Used to provide a label or filename to distinguish blobs. This field is only returned in PromptMessage for prompt management. It is currently used in the Gemini GenerateContent calls only when server side tools (code_execution, google_search, and url_context) are enabled. */
3808
+ displayName?: string;
3809
+ /** Required. The IANA standard MIME type of the source data. */
3810
+ mimeType?: string;
3811
+ }
3812
+ interface GoogleCloudAiplatformV1beta1FunctionResponseFileData {
3813
+ /** Optional. Display name of the file data. Used to provide a label or filename to distinguish file datas. This field is only returned in PromptMessage for prompt management. It is currently used in the Gemini GenerateContent calls only when server side tools (code_execution, google_search, and url_context) are enabled. */
3814
+ displayName?: string;
3815
+ /** Required. URI. */
3816
+ fileUri?: string;
3817
+ /** Required. The IANA standard MIME type of the source data. */
3818
+ mimeType?: string;
3819
+ }
3820
+ interface GoogleCloudAiplatformV1beta1FunctionResponsePart {
3821
+ /** URI based data. */
3822
+ fileData?: GoogleCloudAiplatformV1beta1FunctionResponseFileData;
3823
+ /** Inline media bytes. */
3824
+ inlineData?: GoogleCloudAiplatformV1beta1FunctionResponseBlob;
3825
+ }
3740
3826
  interface GoogleCloudAiplatformV1beta1GcsDestination {
3741
3827
  /** Required. Google Cloud Storage URI to output directory. If the uri doesn't end with '/', a '/' will be automatically appended. The directory is created if it doesn't exist. */
3742
3828
  outputUriPrefix?: string;
@@ -3881,6 +3967,13 @@ declare namespace gapi.client {
3881
3967
  /** Output only. The traffic type for this request. */
3882
3968
  trafficType?: string;
3883
3969
  }
3970
+ interface GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest {}
3971
+ interface GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse {
3972
+ /** The OAuth 2.0 access token. */
3973
+ accessToken?: string;
3974
+ /** Token expiration time. This is always set */
3975
+ expireTime?: string;
3976
+ }
3884
3977
  interface GoogleCloudAiplatformV1beta1GenerateInstanceRubricsRequest {
3885
3978
  /** 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. */
3886
3979
  contents?: GoogleCloudAiplatformV1beta1Content[];
@@ -3900,6 +3993,14 @@ declare namespace gapi.client {
3900
3993
  directMemoriesSource?: GoogleCloudAiplatformV1beta1GenerateMemoriesRequestDirectMemoriesSource;
3901
3994
  /** Optional. If true, generated memories will not be consolidated with existing memories; all generated memories will be added as new memories regardless of whether they are duplicates of or contradictory to existing memories. By default, memory consolidation is enabled. */
3902
3995
  disableConsolidation?: boolean;
3996
+ /** Optional. If true, no revisions will be created for this request. */
3997
+ disableMemoryRevisions?: boolean;
3998
+ /** Optional. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
3999
+ revisionExpireTime?: string;
4000
+ /** Optional. Labels to be applied to the generated memory revisions. For example, you can use this to label a revision with its data source. */
4001
+ revisionLabels?: {[P in string]: string};
4002
+ /** Optional. The TTL for the revision. The expiration time is computed: now + TTL. */
4003
+ revisionTtl?: string;
3903
4004
  /** Optional. The scope of the memories that should be generated. Memories will be consolidated across memories with the same scope. Must be provided unless the scope is defined in the source content. If `scope` is provided, it will override the scope defined in the source content. Scope values cannot contain the wildcard character '*'. */
3904
4005
  scope?: {[P in string]: string};
3905
4006
  /** Defines a Vertex Session as the source content from which to generate memories. */
@@ -3970,6 +4071,8 @@ declare namespace gapi.client {
3970
4071
  enableAffectiveDialog?: boolean;
3971
4072
  /** Optional. Frequency penalties. */
3972
4073
  frequencyPenalty?: number;
4074
+ /** Optional. Config for image generation features. */
4075
+ imageConfig?: GoogleCloudAiplatformV1beta1ImageConfig;
3973
4076
  /** Optional. Logit probabilities. */
3974
4077
  logprobs?: number;
3975
4078
  /** Optional. The maximum number of output tokens to generate per message. */
@@ -4211,6 +4314,10 @@ declare namespace gapi.client {
4211
4314
  /** 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. */
4212
4315
  ids?: string[];
4213
4316
  }
4317
+ interface GoogleCloudAiplatformV1beta1ImageConfig {
4318
+ /** 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" */
4319
+ aspectRatio?: string;
4320
+ }
4214
4321
  interface GoogleCloudAiplatformV1beta1ImportDataConfig {
4215
4322
  /** 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. */
4216
4323
  annotationLabels?: {[P in string]: string};
@@ -4769,6 +4876,12 @@ declare namespace gapi.client {
4769
4876
  /** A token to retrieve the next page of results. Pass to ListMemoriesRequest.page_token to obtain that page. */
4770
4877
  nextPageToken?: string;
4771
4878
  }
4879
+ interface GoogleCloudAiplatformV1beta1ListMemoryRevisionsResponse {
4880
+ /** The list of Memory Revisions in the request page. */
4881
+ memoryRevisions?: GoogleCloudAiplatformV1beta1MemoryRevision[];
4882
+ /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
4883
+ nextPageToken?: string;
4884
+ }
4772
4885
  interface GoogleCloudAiplatformV1beta1ListMetadataSchemasResponse {
4773
4886
  /** The MetadataSchemas found for the MetadataStore. */
4774
4887
  metadataSchemas?: GoogleCloudAiplatformV1beta1MetadataSchema[];
@@ -5064,6 +5177,8 @@ declare namespace gapi.client {
5064
5177
  createTime?: string;
5065
5178
  /** Optional. Description of the Memory. */
5066
5179
  description?: string;
5180
+ /** Optional. Input only. If true, no revision will be created for this request. */
5181
+ disableMemoryRevisions?: boolean;
5067
5182
  /** Optional. Display name of the Memory. */
5068
5183
  displayName?: string;
5069
5184
  /** Optional. Timestamp of when this resource is considered expired. This is *always* provided on output when `expiration` is set on input, regardless of whether `expire_time` or `ttl` was provided. */
@@ -5072,6 +5187,10 @@ declare namespace gapi.client {
5072
5187
  fact?: string;
5073
5188
  /** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
5074
5189
  name?: string;
5190
+ /** Optional. Input only. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
5191
+ revisionExpireTime?: string;
5192
+ /** Optional. Input only. The TTL for the revision. The expiration time is computed: now + TTL. */
5193
+ revisionTtl?: string;
5075
5194
  /** Required. Immutable. The scope of the Memory. Memories are isolated within their scope. The scope is defined when creating or generating memories. Scope values cannot contain the wildcard character '*'. */
5076
5195
  scope?: {[P in string]: string};
5077
5196
  /** Optional. Input only. The TTL for this resource. The expiration time is computed: now + TTL. */
@@ -5123,6 +5242,18 @@ declare namespace gapi.client {
5123
5242
  /** Required. The managed topic. */
5124
5243
  managedTopicEnum?: string;
5125
5244
  }
5245
+ interface GoogleCloudAiplatformV1beta1MemoryRevision {
5246
+ /** Output only. Timestamp when this Memory Revision was created. */
5247
+ createTime?: string;
5248
+ /** Output only. Timestamp of when this resource is considered expired. */
5249
+ expireTime?: string;
5250
+ /** Output only. The fact of the Memory Revision. This corresponds to the `fact` field of the parent Memory at the time of revision creation. */
5251
+ fact?: string;
5252
+ /** Output only. The labels of the Memory Revision. These labels are applied to the MemoryRevision when it is created based on `GenerateMemoriesRequest.revision_labels`. */
5253
+ labels?: {[P in string]: string};
5254
+ /** Identifier. The resource name of the Memory Revision. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}/revisions/{memory_revision}` */
5255
+ name?: string;
5256
+ }
5126
5257
  interface GoogleCloudAiplatformV1beta1MemoryTopicId {
5127
5258
  /** Optional. The custom memory topic label. */
5128
5259
  customMemoryTopicLabel?: string;
@@ -6033,6 +6164,10 @@ declare namespace gapi.client {
6033
6164
  /** The step of the checkpoint. */
6034
6165
  step?: string;
6035
6166
  }
6167
+ interface GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig {
6168
+ /** Required. A list of configurations for the voices of the speakers. Exactly two speaker voice configurations must be provided. */
6169
+ speakerVoiceConfigs?: GoogleCloudAiplatformV1beta1SpeakerVoiceConfig[];
6170
+ }
6036
6171
  interface GoogleCloudAiplatformV1beta1MutateDeployedIndexOperationMetadata {
6037
6172
  /** The unique index id specified by user */
6038
6173
  deployedIndexId?: string;
@@ -6924,6 +7059,8 @@ declare namespace gapi.client {
6924
7059
  interface GoogleCloudAiplatformV1beta1PredictRequest {
6925
7060
  /** 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. */
6926
7061
  instances?: any[];
7062
+ /** Optional. The user labels for Imagen billing usage only. Only Imagen supports labels. For other use cases, it will be ignored. */
7063
+ labels?: {[P in string]: string};
6927
7064
  /** 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. */
6928
7065
  parameters?: any;
6929
7066
  }
@@ -7940,6 +8077,8 @@ declare namespace gapi.client {
7940
8077
  interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfig {
7941
8078
  /** Optional. Configuration for how to customize Memory Bank behavior for a particular scope. */
7942
8079
  customizationConfigs?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfig[];
8080
+ /** If true, no memory revisions will be created for any requests to the Memory Bank. */
8081
+ disableMemoryRevisions?: boolean;
7943
8082
  /** Optional. Configuration for how to generate memories for the Memory Bank. */
7944
8083
  generationConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig;
7945
8084
  /** Optional. Configuration for how to perform similarity search on memories. If not set, the Memory Bank will use the default embedding model `text-embedding-005`. */
@@ -7960,6 +8099,8 @@ declare namespace gapi.client {
7960
8099
  defaultTtl?: string;
7961
8100
  /** Optional. The granular TTL configuration of the memories in the Memory Bank. */
7962
8101
  granularTtlConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig;
8102
+ /** Optional. The default TTL duration of the memory revisions in the Memory Bank. This applies to all operations that create a memory revision. If not set, a default TTL of 365 days will be used. */
8103
+ memoryRevisionDefaultTtl?: string;
7963
8104
  }
7964
8105
  interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig {
7965
8106
  /** Optional. The TTL duration for memories uploaded via CreateMemory. */
@@ -8230,6 +8371,10 @@ declare namespace gapi.client {
8230
8371
  /** The retrieved Memory. */
8231
8372
  memory?: GoogleCloudAiplatformV1beta1Memory;
8232
8373
  }
8374
+ interface GoogleCloudAiplatformV1beta1RollbackMemoryRequest {
8375
+ /** Required. The ID of the revision to rollback to. */
8376
+ targetRevisionId?: string;
8377
+ }
8233
8378
  interface GoogleCloudAiplatformV1beta1RolloutOptions {
8234
8379
  /** Percentage of allowed additional replicas. For autoscaling deployments, this refers to the target replica count. */
8235
8380
  maxSurgePercentage?: number;
@@ -8440,6 +8585,8 @@ declare namespace gapi.client {
8440
8585
  sampleRate?: number;
8441
8586
  }
8442
8587
  interface GoogleCloudAiplatformV1beta1SandboxEnvironment {
8588
+ /** Output only. The connection information of the SandboxEnvironment. */
8589
+ connectionInfo?: GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo;
8443
8590
  /** Output only. The timestamp when this SandboxEnvironment was created. */
8444
8591
  createTime?: string;
8445
8592
  /** Required. The display name of the SandboxEnvironment. */
@@ -8457,9 +8604,19 @@ declare namespace gapi.client {
8457
8604
  /** Output only. The timestamp when this SandboxEnvironment was most recently updated. */
8458
8605
  updateTime?: string;
8459
8606
  }
8607
+ interface GoogleCloudAiplatformV1beta1SandboxEnvironmentConnectionInfo {
8608
+ /** Output only. The hostname of the load balancer. */
8609
+ loadBalancerHostname?: string;
8610
+ /** Output only. The IP address of the load balancer. */
8611
+ loadBalancerIp?: string;
8612
+ /** Output only. The internal IP address of the SandboxEnvironment. */
8613
+ sandboxInternalIp?: string;
8614
+ }
8460
8615
  interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec {
8461
8616
  /** Optional. The code execution environment. */
8462
8617
  codeExecutionEnvironment?: GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment;
8618
+ /** Optional. The computer use environment. */
8619
+ computerUseEnvironment?: any;
8463
8620
  }
8464
8621
  interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment {
8465
8622
  /** The coding language supported in this environment. */
@@ -8467,6 +8624,7 @@ declare namespace gapi.client {
8467
8624
  /** The machine config of the code execution environment. */
8468
8625
  machineConfig?: string;
8469
8626
  }
8627
+ interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecComputerUseEnvironment {}
8470
8628
  interface GoogleCloudAiplatformV1beta1SavedQuery {
8471
8629
  /** Output only. Filters on the Annotations in the dataset. */
8472
8630
  annotationFilter?: string;
@@ -10305,6 +10463,12 @@ declare namespace gapi.client {
10305
10463
  /** 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. */
10306
10464
  noisySampleCount?: number;
10307
10465
  }
10466
+ interface GoogleCloudAiplatformV1beta1SpeakerVoiceConfig {
10467
+ /** Required. The name of the speaker. This should be the same as the speaker name used in the prompt. */
10468
+ speaker?: string;
10469
+ /** Required. The configuration for the voice of this speaker. */
10470
+ voiceConfig?: GoogleCloudAiplatformV1beta1VoiceConfig;
10471
+ }
10308
10472
  interface GoogleCloudAiplatformV1beta1SpecialistPool {
10309
10473
  /** 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. */
10310
10474
  displayName?: string;
@@ -10338,6 +10502,8 @@ declare namespace gapi.client {
10338
10502
  interface GoogleCloudAiplatformV1beta1SpeechConfig {
10339
10503
  /** Optional. Language code (ISO 639. e.g. en-US) for the speech synthesization. */
10340
10504
  languageCode?: string;
10505
+ /** The configuration for a multi-speaker text-to-speech request. This field is mutually exclusive with `voice_config`. */
10506
+ multiSpeakerVoiceConfig?: GoogleCloudAiplatformV1beta1MultiSpeakerVoiceConfig;
10341
10507
  /** The configuration for the speaker to use. */
10342
10508
  voiceConfig?: GoogleCloudAiplatformV1beta1VoiceConfig;
10343
10509
  }
@@ -11034,6 +11200,8 @@ declare namespace gapi.client {
11034
11200
  interface GoogleCloudAiplatformV1beta1Tool {
11035
11201
  /** Optional. CodeExecution tool type. Enables the model to execute code as part of generation. */
11036
11202
  codeExecution?: any;
11203
+ /** Optional. Tool to support the model interacting directly with the computer. If enabled, it automatically populates computer-use specific Function Declarations. */
11204
+ computerUse?: GoogleCloudAiplatformV1beta1ToolComputerUse;
11037
11205
  /** Optional. Tool to support searching public web data, powered by Vertex AI Search and Sec4 compliance. */
11038
11206
  enterpriseWebSearch?: GoogleCloudAiplatformV1beta1EnterpriseWebSearch;
11039
11207
  /** Optional. Function tool type. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum 512 function declarations can be provided. */
@@ -11077,6 +11245,12 @@ declare namespace gapi.client {
11077
11245
  }
11078
11246
  interface GoogleCloudAiplatformV1beta1ToolCallValidSpec {}
11079
11247
  interface GoogleCloudAiplatformV1beta1ToolCodeExecution {}
11248
+ interface GoogleCloudAiplatformV1beta1ToolComputerUse {
11249
+ /** Required. The environment being operated. */
11250
+ environment?: string;
11251
+ /** Optional. By default, predefined functions are included in the final model call. Some of them can be explicitly excluded from being automatically included. This can serve two purposes: 1. Using a more restricted / different action space. 2. Improving the definitions / instructions of predefined functions. */
11252
+ excludedPredefinedFunctions?: string[];
11253
+ }
11080
11254
  interface GoogleCloudAiplatformV1beta1ToolConfig {
11081
11255
  /** Optional. Function calling config. */
11082
11256
  functionCallingConfig?: GoogleCloudAiplatformV1beta1FunctionCallingConfig;
@@ -11084,6 +11258,8 @@ declare namespace gapi.client {
11084
11258
  retrievalConfig?: GoogleCloudAiplatformV1beta1RetrievalConfig;
11085
11259
  }
11086
11260
  interface GoogleCloudAiplatformV1beta1ToolGoogleSearch {
11261
+ /** Optional. Sites with confidence level chosen & above this value will be blocked from the search results. */
11262
+ blockingConfidence?: string;
11087
11263
  /** Optional. List of domains to be excluded from the search results. The default limit is 2000 domains. Example: ["amazon.com", "facebook.com"]. */
11088
11264
  excludeDomains?: string[];
11089
11265
  }
@@ -11389,7 +11565,7 @@ declare namespace gapi.client {
11389
11565
  checkpoints?: GoogleCloudAiplatformV1beta1TunedModelCheckpoint[];
11390
11566
  /** Output only. A resource name of an Endpoint. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`. */
11391
11567
  endpoint?: string;
11392
- /** 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, 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}` */
11568
+ /** 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}` */
11393
11569
  model?: string;
11394
11570
  }
11395
11571
  interface GoogleCloudAiplatformV1beta1TunedModelCheckpoint {
@@ -11439,6 +11615,8 @@ declare namespace gapi.client {
11439
11615
  evaluateDatasetRuns?: GoogleCloudAiplatformV1beta1EvaluateDatasetRun[];
11440
11616
  /** Output only. The Experiment associated with this TuningJob. */
11441
11617
  experiment?: string;
11618
+ /** Tuning Spec for Full Fine Tuning. */
11619
+ fullFineTuningSpec?: GoogleCloudAiplatformV1beta1FullFineTuningSpec;
11442
11620
  /** Optional. The labels with user-defined metadata to organize TuningJob and generated resources such as Model and Endpoint. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels. */
11443
11621
  labels?: {[P in string]: string};
11444
11622
  /** Output only. Identifier. Resource name of a TuningJob. Format: `projects/{project}/locations/{location}/tuningJobs/{tuning_job}` */
@@ -11467,7 +11645,7 @@ declare namespace gapi.client {
11467
11645
  supervisedTuningSpec?: GoogleCloudAiplatformV1beta1SupervisedTuningSpec;
11468
11646
  /** Output only. The tuned model resources associated with this TuningJob. */
11469
11647
  tunedModel?: GoogleCloudAiplatformV1beta1TunedModel;
11470
- /** Optional. The display name of the TunedModel. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
11648
+ /** 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. */
11471
11649
  tunedModelDisplayName?: string;
11472
11650
  /** Output only. The tuning data statistics associated with this TuningJob. */
11473
11651
  tuningDataStats?: GoogleCloudAiplatformV1beta1TuningDataStats;
@@ -11660,6 +11838,30 @@ declare namespace gapi.client {
11660
11838
  /** Status of the url retrieval. */
11661
11839
  urlRetrievalStatus?: string;
11662
11840
  }
11841
+ interface GoogleCloudAiplatformV1beta1UsageMetadata {
11842
+ /** Output only. The number of tokens in the cached content that was used for this request. */
11843
+ cachedContentTokenCount?: number;
11844
+ /** Output only. A detailed breakdown of the token count for each modality in the cached content. */
11845
+ cacheTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
11846
+ /** The total number of tokens in the generated candidates. */
11847
+ candidatesTokenCount?: number;
11848
+ /** Output only. A detailed breakdown of the token count for each modality in the generated candidates. */
11849
+ candidatesTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
11850
+ /** 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. */
11851
+ promptTokenCount?: number;
11852
+ /** Output only. A detailed breakdown of the token count for each modality in the prompt. */
11853
+ promptTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
11854
+ /** Output only. The number of tokens that were part of the model's generated "thoughts" output, if applicable. */
11855
+ thoughtsTokenCount?: number;
11856
+ /** Output only. The number of tokens in the results from tool executions, which are provided back to the model as input, if applicable. */
11857
+ toolUsePromptTokenCount?: number;
11858
+ /** 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. */
11859
+ toolUsePromptTokensDetails?: GoogleCloudAiplatformV1beta1ModalityTokenCount[];
11860
+ /** 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`. */
11861
+ totalTokenCount?: number;
11862
+ /** Output only. The traffic type for this request. */
11863
+ trafficType?: string;
11864
+ }
11663
11865
  interface GoogleCloudAiplatformV1beta1UserActionReference {
11664
11866
  /** For API calls that start a LabelingJob. Resource name of the LabelingJob. Format: `projects/{project}/locations/{location}/dataLabelingJobs/{data_labeling_job}` */
11665
11867
  dataLabelingJob?: string;
@@ -11852,6 +12054,8 @@ declare namespace gapi.client {
11852
12054
  nextPageToken?: string;
11853
12055
  /** A list of operations that matches the specified filter in the request. */
11854
12056
  operations?: GoogleLongrunningOperation[];
12057
+ /** 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. */
12058
+ unreachable?: string[];
11855
12059
  }
11856
12060
  interface GoogleLongrunningOperation {
11857
12061
  /** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
@@ -13140,6 +13344,8 @@ declare namespace gapi.client {
13140
13344
  prettyPrint?: boolean;
13141
13345
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13142
13346
  quotaUser?: string;
13347
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13348
+ returnPartialSuccess?: boolean;
13143
13349
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13144
13350
  upload_protocol?: string;
13145
13351
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -13288,6 +13494,8 @@ declare namespace gapi.client {
13288
13494
  prettyPrint?: boolean;
13289
13495
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13290
13496
  quotaUser?: string;
13497
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
13498
+ returnPartialSuccess?: boolean;
13291
13499
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13292
13500
  upload_protocol?: string;
13293
13501
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -13850,6 +14058,8 @@ declare namespace gapi.client {
13850
14058
  prettyPrint?: boolean;
13851
14059
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
13852
14060
  quotaUser?: string;
14061
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14062
+ returnPartialSuccess?: boolean;
13853
14063
  /** Upload protocol for media (e.g. "raw", "multipart"). */
13854
14064
  upload_protocol?: string;
13855
14065
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -14203,6 +14413,8 @@ declare namespace gapi.client {
14203
14413
  prettyPrint?: boolean;
14204
14414
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14205
14415
  quotaUser?: string;
14416
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14417
+ returnPartialSuccess?: boolean;
14206
14418
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14207
14419
  upload_protocol?: string;
14208
14420
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -14558,6 +14770,8 @@ declare namespace gapi.client {
14558
14770
  prettyPrint?: boolean;
14559
14771
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14560
14772
  quotaUser?: string;
14773
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14774
+ returnPartialSuccess?: boolean;
14561
14775
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14562
14776
  upload_protocol?: string;
14563
14777
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -14735,6 +14949,8 @@ declare namespace gapi.client {
14735
14949
  prettyPrint?: boolean;
14736
14950
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14737
14951
  quotaUser?: string;
14952
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
14953
+ returnPartialSuccess?: boolean;
14738
14954
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14739
14955
  upload_protocol?: string;
14740
14956
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -14920,6 +15136,8 @@ declare namespace gapi.client {
14920
15136
  prettyPrint?: boolean;
14921
15137
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
14922
15138
  quotaUser?: string;
15139
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15140
+ returnPartialSuccess?: boolean;
14923
15141
  /** Upload protocol for media (e.g. "raw", "multipart"). */
14924
15142
  upload_protocol?: string;
14925
15143
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -15348,6 +15566,8 @@ declare namespace gapi.client {
15348
15566
  prettyPrint?: boolean;
15349
15567
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15350
15568
  quotaUser?: string;
15569
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15570
+ returnPartialSuccess?: boolean;
15351
15571
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15352
15572
  upload_protocol?: string;
15353
15573
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -15493,6 +15713,8 @@ declare namespace gapi.client {
15493
15713
  prettyPrint?: boolean;
15494
15714
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
15495
15715
  quotaUser?: string;
15716
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
15717
+ returnPartialSuccess?: boolean;
15496
15718
  /** Upload protocol for media (e.g. "raw", "multipart"). */
15497
15719
  upload_protocol?: string;
15498
15720
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -16210,6 +16432,8 @@ declare namespace gapi.client {
16210
16432
  prettyPrint?: boolean;
16211
16433
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16212
16434
  quotaUser?: string;
16435
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16436
+ returnPartialSuccess?: boolean;
16213
16437
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16214
16438
  upload_protocol?: string;
16215
16439
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -16594,6 +16818,8 @@ declare namespace gapi.client {
16594
16818
  prettyPrint?: boolean;
16595
16819
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16596
16820
  quotaUser?: string;
16821
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
16822
+ returnPartialSuccess?: boolean;
16597
16823
  /** Upload protocol for media (e.g. "raw", "multipart"). */
16598
16824
  upload_protocol?: string;
16599
16825
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -16997,6 +17223,8 @@ declare namespace gapi.client {
16997
17223
  prettyPrint?: boolean;
16998
17224
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
16999
17225
  quotaUser?: string;
17226
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
17227
+ returnPartialSuccess?: boolean;
17000
17228
  /** Upload protocol for media (e.g. "raw", "multipart"). */
17001
17229
  upload_protocol?: string;
17002
17230
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -18410,6 +18638,8 @@ declare namespace gapi.client {
18410
18638
  prettyPrint?: boolean;
18411
18639
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18412
18640
  quotaUser?: string;
18641
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18642
+ returnPartialSuccess?: boolean;
18413
18643
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18414
18644
  upload_protocol?: string;
18415
18645
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -18678,6 +18908,8 @@ declare namespace gapi.client {
18678
18908
  prettyPrint?: boolean;
18679
18909
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18680
18910
  quotaUser?: string;
18911
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
18912
+ returnPartialSuccess?: boolean;
18681
18913
  /** Upload protocol for media (e.g. "raw", "multipart"). */
18682
18914
  upload_protocol?: string;
18683
18915
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -19004,6 +19236,8 @@ declare namespace gapi.client {
19004
19236
  prettyPrint?: boolean;
19005
19237
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19006
19238
  quotaUser?: string;
19239
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19240
+ returnPartialSuccess?: boolean;
19007
19241
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19008
19242
  upload_protocol?: string;
19009
19243
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -19334,6 +19568,8 @@ declare namespace gapi.client {
19334
19568
  prettyPrint?: boolean;
19335
19569
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19336
19570
  quotaUser?: string;
19571
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19572
+ returnPartialSuccess?: boolean;
19337
19573
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19338
19574
  upload_protocol?: string;
19339
19575
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -19482,6 +19718,8 @@ declare namespace gapi.client {
19482
19718
  prettyPrint?: boolean;
19483
19719
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
19484
19720
  quotaUser?: string;
19721
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
19722
+ returnPartialSuccess?: boolean;
19485
19723
  /** Upload protocol for media (e.g. "raw", "multipart"). */
19486
19724
  upload_protocol?: string;
19487
19725
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -20050,6 +20288,8 @@ declare namespace gapi.client {
20050
20288
  prettyPrint?: boolean;
20051
20289
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
20052
20290
  quotaUser?: string;
20291
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20292
+ returnPartialSuccess?: boolean;
20053
20293
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20054
20294
  upload_protocol?: string;
20055
20295
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -20198,6 +20438,8 @@ declare namespace gapi.client {
20198
20438
  prettyPrint?: boolean;
20199
20439
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
20200
20440
  quotaUser?: string;
20441
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
20442
+ returnPartialSuccess?: boolean;
20201
20443
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20202
20444
  upload_protocol?: string;
20203
20445
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -20770,6 +21012,8 @@ declare namespace gapi.client {
20770
21012
  prettyPrint?: boolean;
20771
21013
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
20772
21014
  quotaUser?: string;
21015
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21016
+ returnPartialSuccess?: boolean;
20773
21017
  /** Upload protocol for media (e.g. "raw", "multipart"). */
20774
21018
  upload_protocol?: string;
20775
21019
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -21105,6 +21349,8 @@ declare namespace gapi.client {
21105
21349
  prettyPrint?: boolean;
21106
21350
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
21107
21351
  quotaUser?: string;
21352
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21353
+ returnPartialSuccess?: boolean;
21108
21354
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21109
21355
  upload_protocol?: string;
21110
21356
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -21507,6 +21753,8 @@ declare namespace gapi.client {
21507
21753
  prettyPrint?: boolean;
21508
21754
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
21509
21755
  quotaUser?: string;
21756
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
21757
+ returnPartialSuccess?: boolean;
21510
21758
  /** Upload protocol for media (e.g. "raw", "multipart"). */
21511
21759
  upload_protocol?: string;
21512
21760
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -21997,6 +22245,8 @@ declare namespace gapi.client {
21997
22245
  prettyPrint?: boolean;
21998
22246
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
21999
22247
  quotaUser?: string;
22248
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
22249
+ returnPartialSuccess?: boolean;
22000
22250
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22001
22251
  upload_protocol?: string;
22002
22252
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -22242,6 +22492,64 @@ declare namespace gapi.client {
22242
22492
  },
22243
22493
  body: GoogleCloudAiplatformV1beta1FetchFeatureValuesRequest,
22244
22494
  ): Request<GoogleCloudAiplatformV1beta1FetchFeatureValuesResponse>;
22495
+ /** RPC to generate an access token for the given feature view. FeatureViews under the same FeatureOnlineStore share the same access token. */
22496
+ generateFetchAccessToken(request: {
22497
+ /** V1 error format. */
22498
+ '$.xgafv'?: string;
22499
+ /** OAuth access token. */
22500
+ access_token?: string;
22501
+ /** Data format for response. */
22502
+ alt?: string;
22503
+ /** JSONP */
22504
+ callback?: string;
22505
+ /** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
22506
+ featureView: string;
22507
+ /** Selector specifying which fields to include in a partial response. */
22508
+ fields?: string;
22509
+ /** 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. */
22510
+ key?: string;
22511
+ /** OAuth 2.0 token for the current user. */
22512
+ oauth_token?: string;
22513
+ /** Returns response with indentations and line breaks. */
22514
+ prettyPrint?: boolean;
22515
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
22516
+ quotaUser?: string;
22517
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
22518
+ upload_protocol?: string;
22519
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22520
+ uploadType?: string;
22521
+ /** Request body */
22522
+ resource: GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest;
22523
+ }): Request<GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse>;
22524
+ generateFetchAccessToken(
22525
+ request: {
22526
+ /** V1 error format. */
22527
+ '$.xgafv'?: string;
22528
+ /** OAuth access token. */
22529
+ access_token?: string;
22530
+ /** Data format for response. */
22531
+ alt?: string;
22532
+ /** JSONP */
22533
+ callback?: string;
22534
+ /** FeatureView resource format `projects/{project}/locations/{location}/featureOnlineStores/{featureOnlineStore}/featureViews/{featureView}` */
22535
+ featureView: string;
22536
+ /** Selector specifying which fields to include in a partial response. */
22537
+ fields?: string;
22538
+ /** 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. */
22539
+ key?: string;
22540
+ /** OAuth 2.0 token for the current user. */
22541
+ oauth_token?: string;
22542
+ /** Returns response with indentations and line breaks. */
22543
+ prettyPrint?: boolean;
22544
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
22545
+ quotaUser?: string;
22546
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
22547
+ upload_protocol?: string;
22548
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
22549
+ uploadType?: string;
22550
+ },
22551
+ body: GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenRequest,
22552
+ ): Request<GoogleCloudAiplatformV1beta1GenerateFetchAccessTokenResponse>;
22245
22553
  /** Gets details of a single FeatureView. */
22246
22554
  get(request?: {
22247
22555
  /** V1 error format. */
@@ -22714,6 +23022,8 @@ declare namespace gapi.client {
22714
23022
  prettyPrint?: boolean;
22715
23023
  /** Available 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
23024
  quotaUser?: string;
23025
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23026
+ returnPartialSuccess?: boolean;
22717
23027
  /** Upload protocol for media (e.g. "raw", "multipart"). */
22718
23028
  upload_protocol?: string;
22719
23029
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -23166,6 +23476,8 @@ declare namespace gapi.client {
23166
23476
  prettyPrint?: boolean;
23167
23477
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
23168
23478
  quotaUser?: string;
23479
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23480
+ returnPartialSuccess?: boolean;
23169
23481
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23170
23482
  upload_protocol?: string;
23171
23483
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -23595,6 +23907,8 @@ declare namespace gapi.client {
23595
23907
  prettyPrint?: boolean;
23596
23908
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
23597
23909
  quotaUser?: string;
23910
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
23911
+ returnPartialSuccess?: boolean;
23598
23912
  /** Upload protocol for media (e.g. "raw", "multipart"). */
23599
23913
  upload_protocol?: string;
23600
23914
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -24397,6 +24711,8 @@ declare namespace gapi.client {
24397
24711
  prettyPrint?: boolean;
24398
24712
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
24399
24713
  quotaUser?: string;
24714
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
24715
+ returnPartialSuccess?: boolean;
24400
24716
  /** Upload protocol for media (e.g. "raw", "multipart"). */
24401
24717
  upload_protocol?: string;
24402
24718
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -24944,6 +25260,8 @@ declare namespace gapi.client {
24944
25260
  prettyPrint?: boolean;
24945
25261
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
24946
25262
  quotaUser?: string;
25263
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25264
+ returnPartialSuccess?: boolean;
24947
25265
  /** Upload protocol for media (e.g. "raw", "multipart"). */
24948
25266
  upload_protocol?: string;
24949
25267
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -25297,6 +25615,8 @@ declare namespace gapi.client {
25297
25615
  prettyPrint?: boolean;
25298
25616
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
25299
25617
  quotaUser?: string;
25618
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
25619
+ returnPartialSuccess?: boolean;
25300
25620
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25301
25621
  upload_protocol?: string;
25302
25622
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -25944,6 +26264,8 @@ declare namespace gapi.client {
25944
26264
  prettyPrint?: boolean;
25945
26265
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
25946
26266
  quotaUser?: string;
26267
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26268
+ returnPartialSuccess?: boolean;
25947
26269
  /** Upload protocol for media (e.g. "raw", "multipart"). */
25948
26270
  upload_protocol?: string;
25949
26271
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -26475,6 +26797,8 @@ declare namespace gapi.client {
26475
26797
  prettyPrint?: boolean;
26476
26798
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
26477
26799
  quotaUser?: string;
26800
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
26801
+ returnPartialSuccess?: boolean;
26478
26802
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26479
26803
  upload_protocol?: string;
26480
26804
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -26931,6 +27255,8 @@ declare namespace gapi.client {
26931
27255
  prettyPrint?: boolean;
26932
27256
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
26933
27257
  quotaUser?: string;
27258
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27259
+ returnPartialSuccess?: boolean;
26934
27260
  /** Upload protocol for media (e.g. "raw", "multipart"). */
26935
27261
  upload_protocol?: string;
26936
27262
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -27559,6 +27885,8 @@ declare namespace gapi.client {
27559
27885
  prettyPrint?: boolean;
27560
27886
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
27561
27887
  quotaUser?: string;
27888
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
27889
+ returnPartialSuccess?: boolean;
27562
27890
  /** Upload protocol for media (e.g. "raw", "multipart"). */
27563
27891
  upload_protocol?: string;
27564
27892
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -28193,6 +28521,8 @@ declare namespace gapi.client {
28193
28521
  prettyPrint?: boolean;
28194
28522
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
28195
28523
  quotaUser?: string;
28524
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28525
+ returnPartialSuccess?: boolean;
28196
28526
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28197
28527
  upload_protocol?: string;
28198
28528
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -28494,6 +28824,8 @@ declare namespace gapi.client {
28494
28824
  prettyPrint?: boolean;
28495
28825
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
28496
28826
  quotaUser?: string;
28827
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
28828
+ returnPartialSuccess?: boolean;
28497
28829
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28498
28830
  upload_protocol?: string;
28499
28831
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -28758,6 +29090,8 @@ declare namespace gapi.client {
28758
29090
  prettyPrint?: boolean;
28759
29091
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
28760
29092
  quotaUser?: string;
29093
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29094
+ returnPartialSuccess?: boolean;
28761
29095
  /** Upload protocol for media (e.g. "raw", "multipart"). */
28762
29096
  upload_protocol?: string;
28763
29097
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -29442,6 +29776,8 @@ declare namespace gapi.client {
29442
29776
  prettyPrint?: boolean;
29443
29777
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
29444
29778
  quotaUser?: string;
29779
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
29780
+ returnPartialSuccess?: boolean;
29445
29781
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29446
29782
  upload_protocol?: string;
29447
29783
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -29922,6 +30258,8 @@ declare namespace gapi.client {
29922
30258
  prettyPrint?: boolean;
29923
30259
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
29924
30260
  quotaUser?: string;
30261
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30262
+ returnPartialSuccess?: boolean;
29925
30263
  /** Upload protocol for media (e.g. "raw", "multipart"). */
29926
30264
  upload_protocol?: string;
29927
30265
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -30313,6 +30651,8 @@ declare namespace gapi.client {
30313
30651
  prettyPrint?: boolean;
30314
30652
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
30315
30653
  quotaUser?: string;
30654
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
30655
+ returnPartialSuccess?: boolean;
30316
30656
  /** Upload protocol for media (e.g. "raw", "multipart"). */
30317
30657
  upload_protocol?: string;
30318
30658
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -31354,6 +31694,8 @@ declare namespace gapi.client {
31354
31694
  prettyPrint?: boolean;
31355
31695
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
31356
31696
  quotaUser?: string;
31697
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
31698
+ returnPartialSuccess?: boolean;
31357
31699
  /** Upload protocol for media (e.g. "raw", "multipart"). */
31358
31700
  upload_protocol?: string;
31359
31701
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -31772,6 +32114,8 @@ declare namespace gapi.client {
31772
32114
  prettyPrint?: boolean;
31773
32115
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
31774
32116
  quotaUser?: string;
32117
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32118
+ returnPartialSuccess?: boolean;
31775
32119
  /** Upload protocol for media (e.g. "raw", "multipart"). */
31776
32120
  upload_protocol?: string;
31777
32121
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -32358,6 +32702,8 @@ declare namespace gapi.client {
32358
32702
  prettyPrint?: boolean;
32359
32703
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
32360
32704
  quotaUser?: string;
32705
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
32706
+ returnPartialSuccess?: boolean;
32361
32707
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32362
32708
  upload_protocol?: string;
32363
32709
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -32809,6 +33155,8 @@ declare namespace gapi.client {
32809
33155
  prettyPrint?: boolean;
32810
33156
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
32811
33157
  quotaUser?: string;
33158
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33159
+ returnPartialSuccess?: boolean;
32812
33160
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32813
33161
  upload_protocol?: string;
32814
33162
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -32954,6 +33302,8 @@ declare namespace gapi.client {
32954
33302
  prettyPrint?: boolean;
32955
33303
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
32956
33304
  quotaUser?: string;
33305
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33306
+ returnPartialSuccess?: boolean;
32957
33307
  /** Upload protocol for media (e.g. "raw", "multipart"). */
32958
33308
  upload_protocol?: string;
32959
33309
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -33369,6 +33719,8 @@ declare namespace gapi.client {
33369
33719
  prettyPrint?: boolean;
33370
33720
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
33371
33721
  quotaUser?: string;
33722
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
33723
+ returnPartialSuccess?: boolean;
33372
33724
  /** Upload protocol for media (e.g. "raw", "multipart"). */
33373
33725
  upload_protocol?: string;
33374
33726
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -33851,6 +34203,64 @@ declare namespace gapi.client {
33851
34203
  },
33852
34204
  body: GoogleCloudAiplatformV1beta1CountTokensRequest,
33853
34205
  ): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
34206
+ /** Embed content with multimodal inputs. */
34207
+ embedContent(request: {
34208
+ /** V1 error format. */
34209
+ '$.xgafv'?: string;
34210
+ /** OAuth access token. */
34211
+ access_token?: string;
34212
+ /** Data format for response. */
34213
+ alt?: string;
34214
+ /** JSONP */
34215
+ callback?: string;
34216
+ /** Selector specifying which fields to include in a partial response. */
34217
+ fields?: string;
34218
+ /** 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. */
34219
+ key?: string;
34220
+ /** Required. The name of the publisher model requested to serve the prediction. Format: `projects/{project}/locations/{location}/publishers/*‍/models/*` */
34221
+ model: string;
34222
+ /** OAuth 2.0 token for the current user. */
34223
+ oauth_token?: string;
34224
+ /** Returns response with indentations and line breaks. */
34225
+ prettyPrint?: boolean;
34226
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34227
+ quotaUser?: string;
34228
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
34229
+ upload_protocol?: string;
34230
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34231
+ uploadType?: string;
34232
+ /** Request body */
34233
+ resource: GoogleCloudAiplatformV1beta1EmbedContentRequest;
34234
+ }): Request<GoogleCloudAiplatformV1beta1EmbedContentResponse>;
34235
+ embedContent(
34236
+ request: {
34237
+ /** V1 error format. */
34238
+ '$.xgafv'?: string;
34239
+ /** OAuth access token. */
34240
+ access_token?: string;
34241
+ /** Data format for response. */
34242
+ alt?: string;
34243
+ /** JSONP */
34244
+ callback?: string;
34245
+ /** Selector specifying which fields to include in a partial response. */
34246
+ fields?: string;
34247
+ /** 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. */
34248
+ key?: string;
34249
+ /** Required. The name of the publisher model requested to serve the prediction. Format: `projects/{project}/locations/{location}/publishers/*‍/models/*` */
34250
+ model: string;
34251
+ /** OAuth 2.0 token for the current user. */
34252
+ oauth_token?: string;
34253
+ /** Returns response with indentations and line breaks. */
34254
+ prettyPrint?: boolean;
34255
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34256
+ quotaUser?: string;
34257
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
34258
+ upload_protocol?: string;
34259
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34260
+ uploadType?: string;
34261
+ },
34262
+ body: GoogleCloudAiplatformV1beta1EmbedContentRequest,
34263
+ ): Request<GoogleCloudAiplatformV1beta1EmbedContentResponse>;
33854
34264
  /** Exports a publisher model to a user provided Google Cloud Storage bucket. */
33855
34265
  export(request: {
33856
34266
  /** V1 error format. */
@@ -34604,6 +35014,8 @@ declare namespace gapi.client {
34604
35014
  prettyPrint?: boolean;
34605
35015
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34606
35016
  quotaUser?: string;
35017
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35018
+ returnPartialSuccess?: boolean;
34607
35019
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34608
35020
  upload_protocol?: string;
34609
35021
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -34749,6 +35161,8 @@ declare namespace gapi.client {
34749
35161
  prettyPrint?: boolean;
34750
35162
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34751
35163
  quotaUser?: string;
35164
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35165
+ returnPartialSuccess?: boolean;
34752
35166
  /** Upload protocol for media (e.g. "raw", "multipart"). */
34753
35167
  upload_protocol?: string;
34754
35168
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -35249,6 +35663,8 @@ declare namespace gapi.client {
35249
35663
  prettyPrint?: boolean;
35250
35664
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
35251
35665
  quotaUser?: string;
35666
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
35667
+ returnPartialSuccess?: boolean;
35252
35668
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35253
35669
  upload_protocol?: string;
35254
35670
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -35735,6 +36151,8 @@ declare namespace gapi.client {
35735
36151
  prettyPrint?: boolean;
35736
36152
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
35737
36153
  quotaUser?: string;
36154
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36155
+ returnPartialSuccess?: boolean;
35738
36156
  /** Upload protocol for media (e.g. "raw", "multipart"). */
35739
36157
  upload_protocol?: string;
35740
36158
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -35770,6 +36188,68 @@ declare namespace gapi.client {
35770
36188
  uploadType?: string;
35771
36189
  }): Request<GoogleLongrunningOperation>;
35772
36190
  }
36191
+ interface RevisionsResource {
36192
+ /** Get a Memory Revision. */
36193
+ get(request?: {
36194
+ /** V1 error format. */
36195
+ '$.xgafv'?: string;
36196
+ /** OAuth access token. */
36197
+ access_token?: string;
36198
+ /** Data format for response. */
36199
+ alt?: string;
36200
+ /** JSONP */
36201
+ callback?: string;
36202
+ /** Selector specifying which fields to include in a partial response. */
36203
+ fields?: string;
36204
+ /** 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. */
36205
+ key?: string;
36206
+ /** Required. The resource name of the Memory Revision to retrieve. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}/revisions/{revision}` */
36207
+ name: string;
36208
+ /** OAuth 2.0 token for the current user. */
36209
+ oauth_token?: string;
36210
+ /** Returns response with indentations and line breaks. */
36211
+ prettyPrint?: boolean;
36212
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36213
+ quotaUser?: string;
36214
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36215
+ upload_protocol?: string;
36216
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36217
+ uploadType?: string;
36218
+ }): Request<GoogleCloudAiplatformV1beta1MemoryRevision>;
36219
+ /** List Memory Revisions for a Memory. */
36220
+ list(request?: {
36221
+ /** V1 error format. */
36222
+ '$.xgafv'?: string;
36223
+ /** OAuth access token. */
36224
+ access_token?: string;
36225
+ /** Data format for response. */
36226
+ alt?: string;
36227
+ /** JSONP */
36228
+ callback?: string;
36229
+ /** Selector specifying which fields to include in a partial response. */
36230
+ fields?: string;
36231
+ /** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). Supported fields (equality match only): * `labels` */
36232
+ filter?: string;
36233
+ /** 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. */
36234
+ key?: string;
36235
+ /** OAuth 2.0 token for the current user. */
36236
+ oauth_token?: string;
36237
+ /** Optional. The standard list page size. */
36238
+ pageSize?: number;
36239
+ /** Optional. The standard list page token. */
36240
+ pageToken?: string;
36241
+ /** Required. The resource name of the Memory to list revisions for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
36242
+ parent: string;
36243
+ /** Returns response with indentations and line breaks. */
36244
+ prettyPrint?: boolean;
36245
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36246
+ quotaUser?: string;
36247
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36248
+ upload_protocol?: string;
36249
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36250
+ uploadType?: string;
36251
+ }): Request<GoogleCloudAiplatformV1beta1ListMemoryRevisionsResponse>;
36252
+ }
35773
36253
  interface MemoriesResource {
35774
36254
  /** Create a Memory. */
35775
36255
  create(request: {
@@ -36096,7 +36576,66 @@ declare namespace gapi.client {
36096
36576
  },
36097
36577
  body: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest,
36098
36578
  ): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
36579
+ /** Rollback Memory to a specific revision. */
36580
+ rollback(request: {
36581
+ /** V1 error format. */
36582
+ '$.xgafv'?: string;
36583
+ /** OAuth access token. */
36584
+ access_token?: string;
36585
+ /** Data format for response. */
36586
+ alt?: string;
36587
+ /** JSONP */
36588
+ callback?: string;
36589
+ /** Selector specifying which fields to include in a partial response. */
36590
+ fields?: string;
36591
+ /** 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. */
36592
+ key?: string;
36593
+ /** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
36594
+ name: string;
36595
+ /** OAuth 2.0 token for the current user. */
36596
+ oauth_token?: string;
36597
+ /** Returns response with indentations and line breaks. */
36598
+ prettyPrint?: boolean;
36599
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36600
+ quotaUser?: string;
36601
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36602
+ upload_protocol?: string;
36603
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36604
+ uploadType?: string;
36605
+ /** Request body */
36606
+ resource: GoogleCloudAiplatformV1beta1RollbackMemoryRequest;
36607
+ }): Request<GoogleLongrunningOperation>;
36608
+ rollback(
36609
+ request: {
36610
+ /** V1 error format. */
36611
+ '$.xgafv'?: string;
36612
+ /** OAuth access token. */
36613
+ access_token?: string;
36614
+ /** Data format for response. */
36615
+ alt?: string;
36616
+ /** JSONP */
36617
+ callback?: string;
36618
+ /** Selector specifying which fields to include in a partial response. */
36619
+ fields?: string;
36620
+ /** 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. */
36621
+ key?: string;
36622
+ /** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
36623
+ name: string;
36624
+ /** OAuth 2.0 token for the current user. */
36625
+ oauth_token?: string;
36626
+ /** Returns response with indentations and line breaks. */
36627
+ prettyPrint?: boolean;
36628
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36629
+ quotaUser?: string;
36630
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
36631
+ upload_protocol?: string;
36632
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
36633
+ uploadType?: string;
36634
+ },
36635
+ body: GoogleCloudAiplatformV1beta1RollbackMemoryRequest,
36636
+ ): Request<GoogleLongrunningOperation>;
36099
36637
  operations: OperationsResource;
36638
+ revisions: RevisionsResource;
36100
36639
  }
36101
36640
  interface OperationsResource {
36102
36641
  /** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of `1`, corresponding to `Code.CANCELLED`. */
@@ -36208,6 +36747,8 @@ declare namespace gapi.client {
36208
36747
  prettyPrint?: boolean;
36209
36748
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36210
36749
  quotaUser?: string;
36750
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36751
+ returnPartialSuccess?: boolean;
36211
36752
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36212
36753
  upload_protocol?: string;
36213
36754
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -36353,6 +36894,8 @@ declare namespace gapi.client {
36353
36894
  prettyPrint?: boolean;
36354
36895
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36355
36896
  quotaUser?: string;
36897
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
36898
+ returnPartialSuccess?: boolean;
36356
36899
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36357
36900
  upload_protocol?: string;
36358
36901
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -36739,6 +37282,8 @@ declare namespace gapi.client {
36739
37282
  prettyPrint?: boolean;
36740
37283
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
36741
37284
  quotaUser?: string;
37285
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
37286
+ returnPartialSuccess?: boolean;
36742
37287
  /** Upload protocol for media (e.g. "raw", "multipart"). */
36743
37288
  upload_protocol?: string;
36744
37289
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -37488,6 +38033,8 @@ declare namespace gapi.client {
37488
38033
  prettyPrint?: boolean;
37489
38034
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
37490
38035
  quotaUser?: string;
38036
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38037
+ returnPartialSuccess?: boolean;
37491
38038
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37492
38039
  upload_protocol?: string;
37493
38040
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -37934,6 +38481,8 @@ declare namespace gapi.client {
37934
38481
  prettyPrint?: boolean;
37935
38482
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
37936
38483
  quotaUser?: string;
38484
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38485
+ returnPartialSuccess?: boolean;
37937
38486
  /** Upload protocol for media (e.g. "raw", "multipart"). */
37938
38487
  upload_protocol?: string;
37939
38488
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -38053,6 +38602,8 @@ declare namespace gapi.client {
38053
38602
  prettyPrint?: boolean;
38054
38603
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
38055
38604
  quotaUser?: string;
38605
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38606
+ returnPartialSuccess?: boolean;
38056
38607
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38057
38608
  upload_protocol?: string;
38058
38609
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -38410,6 +38961,8 @@ declare namespace gapi.client {
38410
38961
  prettyPrint?: boolean;
38411
38962
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
38412
38963
  quotaUser?: string;
38964
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
38965
+ returnPartialSuccess?: boolean;
38413
38966
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38414
38967
  upload_protocol?: string;
38415
38968
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -38555,6 +39108,8 @@ declare namespace gapi.client {
38555
39108
  prettyPrint?: boolean;
38556
39109
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
38557
39110
  quotaUser?: string;
39111
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39112
+ returnPartialSuccess?: boolean;
38558
39113
  /** Upload protocol for media (e.g. "raw", "multipart"). */
38559
39114
  upload_protocol?: string;
38560
39115
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -39399,6 +39954,8 @@ declare namespace gapi.client {
39399
39954
  prettyPrint?: boolean;
39400
39955
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
39401
39956
  quotaUser?: string;
39957
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
39958
+ returnPartialSuccess?: boolean;
39402
39959
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39403
39960
  upload_protocol?: string;
39404
39961
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -39544,6 +40101,8 @@ declare namespace gapi.client {
39544
40101
  prettyPrint?: boolean;
39545
40102
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
39546
40103
  quotaUser?: string;
40104
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40105
+ returnPartialSuccess?: boolean;
39547
40106
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39548
40107
  upload_protocol?: string;
39549
40108
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -39689,6 +40248,8 @@ declare namespace gapi.client {
39689
40248
  prettyPrint?: boolean;
39690
40249
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
39691
40250
  quotaUser?: string;
40251
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
40252
+ returnPartialSuccess?: boolean;
39692
40253
  /** Upload protocol for media (e.g. "raw", "multipart"). */
39693
40254
  upload_protocol?: string;
39694
40255
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -40840,6 +41401,8 @@ declare namespace gapi.client {
40840
41401
  prettyPrint?: boolean;
40841
41402
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
40842
41403
  quotaUser?: string;
41404
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41405
+ returnPartialSuccess?: boolean;
40843
41406
  /** Upload protocol for media (e.g. "raw", "multipart"). */
40844
41407
  upload_protocol?: string;
40845
41408
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -41283,6 +41846,8 @@ declare namespace gapi.client {
41283
41846
  prettyPrint?: boolean;
41284
41847
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
41285
41848
  quotaUser?: string;
41849
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the [ListOperationsResponse.unreachable] field. This can only be `true` when reading across collections e.g. when `parent` is set to `"projects/example/locations/-"`. This field is not by default supported and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
41850
+ returnPartialSuccess?: boolean;
41286
41851
  /** Upload protocol for media (e.g. "raw", "multipart"). */
41287
41852
  upload_protocol?: string;
41288
41853
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
@@ -43696,6 +44261,68 @@ declare namespace gapi.client {
43696
44261
  interface A2aResource {
43697
44262
  v1: V1Resource;
43698
44263
  }
44264
+ interface RevisionsResource {
44265
+ /** Get a Memory Revision. */
44266
+ get(request?: {
44267
+ /** V1 error format. */
44268
+ '$.xgafv'?: string;
44269
+ /** OAuth access token. */
44270
+ access_token?: string;
44271
+ /** Data format for response. */
44272
+ alt?: string;
44273
+ /** JSONP */
44274
+ callback?: string;
44275
+ /** Selector specifying which fields to include in a partial response. */
44276
+ fields?: string;
44277
+ /** 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. */
44278
+ key?: string;
44279
+ /** Required. The resource name of the Memory Revision to retrieve. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}/revisions/{revision}` */
44280
+ name: string;
44281
+ /** OAuth 2.0 token for the current user. */
44282
+ oauth_token?: string;
44283
+ /** Returns response with indentations and line breaks. */
44284
+ prettyPrint?: boolean;
44285
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
44286
+ quotaUser?: string;
44287
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
44288
+ upload_protocol?: string;
44289
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
44290
+ uploadType?: string;
44291
+ }): Request<GoogleCloudAiplatformV1beta1MemoryRevision>;
44292
+ /** List Memory Revisions for a Memory. */
44293
+ list(request?: {
44294
+ /** V1 error format. */
44295
+ '$.xgafv'?: string;
44296
+ /** OAuth access token. */
44297
+ access_token?: string;
44298
+ /** Data format for response. */
44299
+ alt?: string;
44300
+ /** JSONP */
44301
+ callback?: string;
44302
+ /** Selector specifying which fields to include in a partial response. */
44303
+ fields?: string;
44304
+ /** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). Supported fields (equality match only): * `labels` */
44305
+ filter?: string;
44306
+ /** 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. */
44307
+ key?: string;
44308
+ /** OAuth 2.0 token for the current user. */
44309
+ oauth_token?: string;
44310
+ /** Optional. The standard list page size. */
44311
+ pageSize?: number;
44312
+ /** Optional. The standard list page token. */
44313
+ pageToken?: string;
44314
+ /** Required. The resource name of the Memory to list revisions for. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
44315
+ parent: string;
44316
+ /** Returns response with indentations and line breaks. */
44317
+ prettyPrint?: boolean;
44318
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
44319
+ quotaUser?: string;
44320
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
44321
+ upload_protocol?: string;
44322
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
44323
+ uploadType?: string;
44324
+ }): Request<GoogleCloudAiplatformV1beta1ListMemoryRevisionsResponse>;
44325
+ }
43699
44326
  interface MemoriesResource {
43700
44327
  /** Create a Memory. */
43701
44328
  create(request: {
@@ -44022,6 +44649,65 @@ declare namespace gapi.client {
44022
44649
  },
44023
44650
  body: GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest,
44024
44651
  ): Request<GoogleCloudAiplatformV1beta1RetrieveMemoriesResponse>;
44652
+ /** Rollback Memory to a specific revision. */
44653
+ rollback(request: {
44654
+ /** V1 error format. */
44655
+ '$.xgafv'?: string;
44656
+ /** OAuth access token. */
44657
+ access_token?: string;
44658
+ /** Data format for response. */
44659
+ alt?: string;
44660
+ /** JSONP */
44661
+ callback?: string;
44662
+ /** Selector specifying which fields to include in a partial response. */
44663
+ fields?: string;
44664
+ /** 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. */
44665
+ key?: string;
44666
+ /** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
44667
+ name: string;
44668
+ /** OAuth 2.0 token for the current user. */
44669
+ oauth_token?: string;
44670
+ /** Returns response with indentations and line breaks. */
44671
+ prettyPrint?: boolean;
44672
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
44673
+ quotaUser?: string;
44674
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
44675
+ upload_protocol?: string;
44676
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
44677
+ uploadType?: string;
44678
+ /** Request body */
44679
+ resource: GoogleCloudAiplatformV1beta1RollbackMemoryRequest;
44680
+ }): Request<GoogleLongrunningOperation>;
44681
+ rollback(
44682
+ request: {
44683
+ /** V1 error format. */
44684
+ '$.xgafv'?: string;
44685
+ /** OAuth access token. */
44686
+ access_token?: string;
44687
+ /** Data format for response. */
44688
+ alt?: string;
44689
+ /** JSONP */
44690
+ callback?: string;
44691
+ /** Selector specifying which fields to include in a partial response. */
44692
+ fields?: string;
44693
+ /** 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. */
44694
+ key?: string;
44695
+ /** Required. The resource name of the Memory to rollback. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
44696
+ name: string;
44697
+ /** OAuth 2.0 token for the current user. */
44698
+ oauth_token?: string;
44699
+ /** Returns response with indentations and line breaks. */
44700
+ prettyPrint?: boolean;
44701
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
44702
+ quotaUser?: string;
44703
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
44704
+ upload_protocol?: string;
44705
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
44706
+ uploadType?: string;
44707
+ },
44708
+ body: GoogleCloudAiplatformV1beta1RollbackMemoryRequest,
44709
+ ): Request<GoogleLongrunningOperation>;
44710
+ revisions: RevisionsResource;
44025
44711
  }
44026
44712
  interface EventsResource {
44027
44713
  /** Lists Events in a given session. */