@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.4.20251204 → 0.4.20251219

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 (3) hide show
  1. package/index.d.ts +435 -872
  2. package/package.json +1 -1
  3. package/readme.md +15 -15
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: 20251204
12
+ // Revision: 20251219
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1688,6 +1688,8 @@ declare namespace gapi.client {
1688
1688
  explanationSpec?: GoogleCloudAiplatformV1beta1ExplanationSpec;
1689
1689
  /** Configuration for faster model deployment. */
1690
1690
  fasterDeploymentConfig?: GoogleCloudAiplatformV1beta1FasterDeploymentConfig;
1691
+ /** Optional. Resources for a full fine tuned model. */
1692
+ fullFineTunedResources?: GoogleCloudAiplatformV1beta1FullFineTunedResources;
1691
1693
  /** GDC pretrained / Gemini model name. The model name is a plain model name, e.g. gemini-1.5-flash-002. */
1692
1694
  gdcConnectedModel?: string;
1693
1695
  /** Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID. This value should be 1-10 characters, and valid characters are `/[0-9]/`. */
@@ -1965,7 +1967,7 @@ declare namespace gapi.client {
1965
1967
  publisherEndpoint?: string;
1966
1968
  }
1967
1969
  interface GoogleCloudAiplatformV1beta1EncryptionSpec {
1968
- /** Required. The Cloud KMS resource identifier of the customer managed encryption key used to protect a resource. Has the form: `projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key`. The key needs to be in the same region as where the compute resource is created. */
1970
+ /** Required. Resource name of the Cloud KMS key used to protect the resource. The Cloud KMS key must be in the same region as the resource. It must have the format `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`. */
1969
1971
  kmsKeyName?: string;
1970
1972
  }
1971
1973
  interface GoogleCloudAiplatformV1beta1Endpoint {
@@ -2097,6 +2099,8 @@ declare namespace gapi.client {
2097
2099
  autoraterConfig?: GoogleCloudAiplatformV1beta1AutoraterConfig;
2098
2100
  /** Required. The dataset used for evaluation. */
2099
2101
  dataset?: GoogleCloudAiplatformV1beta1EvaluationDataset;
2102
+ /** Required. The resource name of the Location to evaluate the dataset. Format: `projects/{project}/locations/{location}` */
2103
+ location?: string;
2100
2104
  /** Required. The metrics used for evaluation. */
2101
2105
  metrics?: GoogleCloudAiplatformV1beta1Metric[];
2102
2106
  /** Required. Config for evaluation output. */
@@ -2137,6 +2141,8 @@ declare namespace gapi.client {
2137
2141
  groundednessInput?: GoogleCloudAiplatformV1beta1GroundednessInput;
2138
2142
  /** The instance to be evaluated. */
2139
2143
  instance?: GoogleCloudAiplatformV1beta1EvaluationInstance;
2144
+ /** Required. The resource name of the Location to evaluate the instances. Format: `projects/{project}/locations/{location}` */
2145
+ location?: string;
2140
2146
  /** The metrics used for evaluation. Currently, we only support evaluating a single metric. If multiple metrics are provided, only the first one will be evaluated. */
2141
2147
  metrics?: GoogleCloudAiplatformV1beta1Metric[];
2142
2148
  /** Input for Metricx metric. */
@@ -3821,6 +3827,12 @@ declare namespace gapi.client {
3821
3827
  /** Optional. Which version to use for evaluation. */
3822
3828
  version?: number;
3823
3829
  }
3830
+ interface GoogleCloudAiplatformV1beta1FullFineTunedResources {
3831
+ /** Required. The kind of deployment. */
3832
+ deploymentType?: string;
3833
+ /** Optional. The number of model inference units to use for this deployment. This can only be specified for DEPLOYMENT_TYPE_PROD. The following table lists the number of model inference units for different model types: * Gemini 2.5 Flash * Foundation FMIU: 25 * Expansion FMIU: 4 * Gemini 2.5 Pro * Foundation FMIU: 32 * Expansion FMIU: 16 * Veo 3.0 (undistilled) * Foundation FMIU: 63 * Expansion FMIU: 7 * Veo 3.0 (distilled) * Foundation FMIU: 30 * Expansion FMIU: 10 */
3834
+ modelInferenceUnitCount?: number;
3835
+ }
3824
3836
  interface GoogleCloudAiplatformV1beta1FullFineTuningSpec {
3825
3837
  /** Optional. Hyperparameters for Full Fine Tuning. */
3826
3838
  hyperParameters?: GoogleCloudAiplatformV1beta1SupervisedHyperParameters;
@@ -4051,6 +4063,8 @@ declare namespace gapi.client {
4051
4063
  agentConfig?: GoogleCloudAiplatformV1beta1EvaluationInstanceAgentConfig;
4052
4064
  /** 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. */
4053
4065
  contents?: GoogleCloudAiplatformV1beta1Content[];
4066
+ /** Required. The resource name of the Location to generate rubrics from. Format: `projects/{project}/locations/{location}` */
4067
+ location?: string;
4054
4068
  /** Optional. Specification for using the rubric generation configs of a pre-defined metric, e.g. "generic_quality_v1" and "instruction_following_v1". Some of the configs may be only used in rubric generation and not supporting evaluation, e.g. "fully_customized_generic_quality_v1". If this field is set, the `rubric_generation_spec` field will be ignored. */
4055
4069
  predefinedRubricGenerationSpec?: GoogleCloudAiplatformV1beta1PredefinedMetricSpec;
4056
4070
  /** Optional. Specification for how the rubrics should be generated. */
@@ -4069,6 +4083,12 @@ declare namespace gapi.client {
4069
4083
  disableConsolidation?: boolean;
4070
4084
  /** Optional. If true, no revisions will be created for this request. */
4071
4085
  disableMemoryRevisions?: boolean;
4086
+ /** Optional. User-provided metadata for the generated memories. This is not generated by Memory Bank. */
4087
+ metadata?: {
4088
+ [P in string]: GoogleCloudAiplatformV1beta1MemoryMetadataValue;
4089
+ };
4090
+ /** Optional. The strategy to use when applying metadata to existing memories. */
4091
+ metadataMergeStrategy?: string;
4072
4092
  /** Optional. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
4073
4093
  revisionExpireTime?: string;
4074
4094
  /** Optional. Labels to be applied to the generated memory revisions. For example, you can use this to label a revision with its data source. */
@@ -5281,6 +5301,10 @@ declare namespace gapi.client {
5281
5301
  expireTime?: string;
5282
5302
  /** Required. Semantic knowledge extracted from the source content. */
5283
5303
  fact?: string;
5304
+ /** Optional. User-provided metadata for the Memory. This information was provided when creating, updating, or generating the Memory. It was not generated by Memory Bank. */
5305
+ metadata?: {
5306
+ [P in string]: GoogleCloudAiplatformV1beta1MemoryMetadataValue;
5307
+ };
5284
5308
  /** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
5285
5309
  name?: string;
5286
5310
  /** Optional. Input only. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
@@ -5299,6 +5323,8 @@ declare namespace gapi.client {
5299
5323
  updateTime?: string;
5300
5324
  }
5301
5325
  interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfig {
5326
+ /** Optional. If true, then the memories will be generated in the third person (i.e. "The user generates memories with Memory Bank."). By default, the memories will be generated in the first person (i.e. "I generate memories with Memory Bank.") */
5327
+ enableThirdPersonMemories?: boolean;
5302
5328
  /** Optional. Examples of how to generate memories for a particular scope. */
5303
5329
  generateMemoriesExamples?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExample[];
5304
5330
  /** Optional. Topics of information that should be extracted from conversations and stored as memories. If not set, then Memory Bank's default topics will be used. */
@@ -5342,6 +5368,30 @@ declare namespace gapi.client {
5342
5368
  /** Required. The managed topic. */
5343
5369
  managedTopicEnum?: string;
5344
5370
  }
5371
+ interface GoogleCloudAiplatformV1beta1MemoryConjunctionFilter {
5372
+ /** Filters that will combined using AND logic. */
5373
+ filters?: GoogleCloudAiplatformV1beta1MemoryFilter[];
5374
+ }
5375
+ interface GoogleCloudAiplatformV1beta1MemoryFilter {
5376
+ /** Key of the filter. For example, "author" would apply to `metadata` entries with the key "author". */
5377
+ key?: string;
5378
+ /** If true, the filter will be negated. */
5379
+ negate?: boolean;
5380
+ /** Operator to apply to the filter. If not set, then EQUAL will be used. */
5381
+ op?: string;
5382
+ /** Value to compare to. */
5383
+ value?: GoogleCloudAiplatformV1beta1MemoryMetadataValue;
5384
+ }
5385
+ interface GoogleCloudAiplatformV1beta1MemoryMetadataValue {
5386
+ /** Boolean value. */
5387
+ boolValue?: boolean;
5388
+ /** Double value. */
5389
+ doubleValue?: number;
5390
+ /** String value. */
5391
+ stringValue?: string;
5392
+ /** Timestamp value. When filtering on timestamp values, only the seconds field will be compared. */
5393
+ timestampValue?: string;
5394
+ }
5345
5395
  interface GoogleCloudAiplatformV1beta1MemoryRevision {
5346
5396
  /** Output only. Timestamp when this Memory Revision was created. */
5347
5397
  createTime?: string;
@@ -8323,9 +8373,9 @@ declare namespace gapi.client {
8323
8373
  sourceArchive?: string;
8324
8374
  }
8325
8375
  interface GoogleCloudAiplatformV1beta1ReasoningEngineSpecSourceCodeSpecPythonSpec {
8326
- /** Optional. The Python module to load as the entrypoint, specified as a fully qualified module name. For example: path.to.agent. If not specified, defaults to "agent". The project root will be added to Python sys.path, allowing imports to be specified relative to the root. */
8376
+ /** Optional. The Python module to load as the entrypoint, specified as a fully qualified module name. For example: path.to.agent. If not specified, defaults to "agent". The project root will be added to Python sys.path, allowing imports to be specified relative to the root. This field should not be set if the source is `agent_config_source`. */
8327
8377
  entrypointModule?: string;
8328
- /** Optional. The name of the callable object within the `entrypoint_module` to use as the application If not specified, defaults to "root_agent". */
8378
+ /** Optional. The name of the callable object within the `entrypoint_module` to use as the application If not specified, defaults to "root_agent". This field should not be set if the source is `agent_config_source`. */
8329
8379
  entrypointObject?: string;
8330
8380
  /** Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt". */
8331
8381
  requirementsFile?: string;
@@ -8530,6 +8580,8 @@ declare namespace gapi.client {
8530
8580
  interface GoogleCloudAiplatformV1beta1RetrieveMemoriesRequest {
8531
8581
  /** Optional. The standard list filter that will be applied to the retrieved memories. More detail in [AIP-160](https://google.aip.dev/160). Supported fields: * `fact` * `create_time` * `update_time` * `topics` (i.e. `topics.custom_memory_topic_label: "example topic" OR topics.managed_memory_topic: USER_PREFERENCES`) */
8532
8582
  filter?: string;
8583
+ /** Optional. Metadata filters that will be applied to the retrieved memories' `metadata` using OR logic. Filters are defined using disjunctive normal form (OR of ANDs). For example: `filter_groups: [{filters: [{key: "author", value: {string_value: "agent 123"}, op: EQUAL}]}, {filters: [{key: "label", value: {string_value: "travel"}, op: EQUAL}, {key: "author", value: {string_value: "agent 321"}, op: EQUAL}]}]` would be equivalent to the logical expression: `(metadata.author = "agent 123" OR (metadata.label = "travel" AND metadata.author = "agent 321"))`. */
8584
+ filterGroups?: GoogleCloudAiplatformV1beta1MemoryConjunctionFilter[];
8533
8585
  /** Required. The scope of the memories to retrieve. A memory must have exactly the same scope (`Memory.scope`) as the scope provided here to be retrieved (same keys and values). Order does not matter, but it is case-sensitive. */
8534
8586
  scope?: {[P in string]: string};
8535
8587
  /** Parameters for semantic similarity search based retrieval. */
@@ -8906,55 +8958,55 @@ declare namespace gapi.client {
8906
8958
  timeout?: string;
8907
8959
  }
8908
8960
  interface GoogleCloudAiplatformV1beta1Schema {
8909
- /** Optional. Can either be a boolean or an object; controls the presence of additional properties. */
8961
+ /** Optional. If `type` is `OBJECT`, specifies how to handle properties not defined in `properties`. If it is a boolean `false`, no additional properties are allowed. If it is a schema, additional properties are allowed if they conform to the schema. */
8910
8962
  additionalProperties?: any;
8911
- /** Optional. The value should be validated against any (one or more) of the subschemas in the list. */
8963
+ /** Optional. The instance must be valid against any (one or more) of the subschemas listed in `any_of`. */
8912
8964
  anyOf?: GoogleCloudAiplatformV1beta1Schema[];
8913
- /** Optional. Default value of the data. */
8965
+ /** Optional. Default value to use if the field is not specified. */
8914
8966
  default?: any;
8915
- /** Optional. A map of definitions for use by `ref` Only allowed at the root of the schema. */
8967
+ /** Optional. `defs` provides a map of schema definitions that can be reused by `ref` elsewhere in the schema. Only allowed at root level of the schema. */
8916
8968
  defs?: {[P in string]: GoogleCloudAiplatformV1beta1Schema};
8917
- /** Optional. The description of the data. */
8969
+ /** Optional. Description of the schema. */
8918
8970
  description?: string;
8919
- /** Optional. Possible values of the element of primitive type with enum format. Examples: 1. We can define direction as : {type:STRING, format:enum, enum:["EAST", NORTH", "SOUTH", "WEST"]} 2. We can define apartment number as : {type:INTEGER, format:enum, enum:["101", "201", "301"]} */
8971
+ /** Optional. Possible values of the field. This field can be used to restrict a value to a fixed set of values. To mark a field as an enum, set `format` to `enum` and provide the list of possible values in `enum`. For example: 1. To define directions: `{type:STRING, format:enum, enum:["EAST", "NORTH", "SOUTH", "WEST"]}` 2. To define apartment numbers: `{type:INTEGER, format:enum, enum:["101", "201", "301"]}` */
8920
8972
  enum?: string[];
8921
- /** Optional. Example of the object. Will only populated when the object is the root. */
8973
+ /** Optional. Example of an instance of this schema. */
8922
8974
  example?: any;
8923
- /** Optional. The format of the data. Supported formats: for NUMBER type: "float", "double" for INTEGER type: "int32", "int64" for STRING type: "email", "byte", etc */
8975
+ /** Optional. The format of the data. For `NUMBER` type, format can be `float` or `double`. For `INTEGER` type, format can be `int32` or `int64`. For `STRING` type, format can be `email`, `byte`, `date`, `date-time`, `password`, and other formats to further refine the data type. */
8924
8976
  format?: string;
8925
- /** Optional. SCHEMA FIELDS FOR TYPE ARRAY Schema of the elements of Type.ARRAY. */
8977
+ /** Optional. If type is `ARRAY`, `items` specifies the schema of elements in the array. */
8926
8978
  items?: GoogleCloudAiplatformV1beta1Schema;
8927
- /** Optional. Maximum value of the Type.INTEGER and Type.NUMBER */
8979
+ /** Optional. If type is `INTEGER` or `NUMBER`, `maximum` specifies the maximum allowed value. */
8928
8980
  maximum?: number;
8929
- /** Optional. Maximum number of the elements for Type.ARRAY. */
8981
+ /** Optional. If type is `ARRAY`, `max_items` specifies the maximum number of items in an array. */
8930
8982
  maxItems?: string;
8931
- /** Optional. Maximum length of the Type.STRING */
8983
+ /** Optional. If type is `STRING`, `max_length` specifies the maximum length of the string. */
8932
8984
  maxLength?: string;
8933
- /** Optional. Maximum number of the properties for Type.OBJECT. */
8985
+ /** Optional. If type is `OBJECT`, `max_properties` specifies the maximum number of properties that can be provided. */
8934
8986
  maxProperties?: string;
8935
- /** Optional. SCHEMA FIELDS FOR TYPE INTEGER and NUMBER Minimum value of the Type.INTEGER and Type.NUMBER */
8987
+ /** Optional. If type is `INTEGER` or `NUMBER`, `minimum` specifies the minimum allowed value. */
8936
8988
  minimum?: number;
8937
- /** Optional. Minimum number of the elements for Type.ARRAY. */
8989
+ /** Optional. If type is `ARRAY`, `min_items` specifies the minimum number of items in an array. */
8938
8990
  minItems?: string;
8939
- /** Optional. SCHEMA FIELDS FOR TYPE STRING Minimum length of the Type.STRING */
8991
+ /** Optional. If type is `STRING`, `min_length` specifies the minimum length of the string. */
8940
8992
  minLength?: string;
8941
- /** Optional. Minimum number of the properties for Type.OBJECT. */
8993
+ /** Optional. If type is `OBJECT`, `min_properties` specifies the minimum number of properties that can be provided. */
8942
8994
  minProperties?: string;
8943
- /** Optional. Indicates if the value may be null. */
8995
+ /** Optional. Indicates if the value of this field can be null. */
8944
8996
  nullable?: boolean;
8945
- /** Optional. Pattern of the Type.STRING to restrict a string to a regular expression. */
8997
+ /** Optional. If type is `STRING`, `pattern` specifies a regular expression that the string must match. */
8946
8998
  pattern?: string;
8947
- /** Optional. SCHEMA FIELDS FOR TYPE OBJECT Properties of Type.OBJECT. */
8999
+ /** Optional. If type is `OBJECT`, `properties` is a map of property names to schema definitions for each property of the object. */
8948
9000
  properties?: {[P in string]: GoogleCloudAiplatformV1beta1Schema};
8949
- /** Optional. The order of the properties. Not a standard field in open api spec. Only used to support the order of the properties. */
9001
+ /** Optional. Order of properties displayed or used where order matters. This is not a standard field in OpenAPI specification, but can be used to control the order of properties. */
8950
9002
  propertyOrdering?: string[];
8951
- /** Optional. Allows indirect references between schema nodes. The value should be a valid reference to a child of the root `defs`. For example, the following schema defines a reference to a schema node named "Pet": type: object properties: pet: ref: #/defs/Pet defs: Pet: type: object properties: name: type: string The value of the "pet" property is a reference to the schema node named "Pet". See details in https://json-schema.org/understanding-json-schema/structuring */
9003
+ /** Optional. Allows referencing another schema definition to use in place of this schema. The value must be a valid reference to a schema in `defs`. For example, the following schema defines a reference to a schema node named "Pet": type: object properties: pet: ref: #/defs/Pet defs: Pet: type: object properties: name: type: string The value of the "pet" property is a reference to the schema node named "Pet". See details in https://json-schema.org/understanding-json-schema/structuring */
8952
9004
  ref?: string;
8953
- /** Optional. Required properties of Type.OBJECT. */
9005
+ /** Optional. If type is `OBJECT`, `required` lists the names of properties that must be present. */
8954
9006
  required?: string[];
8955
- /** Optional. The title of the Schema. */
9007
+ /** Optional. Title for the schema. */
8956
9008
  title?: string;
8957
- /** Optional. The type of the data. */
9009
+ /** Optional. Data type of the schema field. */
8958
9010
  type?: string;
8959
9011
  }
8960
9012
  interface GoogleCloudAiplatformV1beta1SchemaAnnotationSpecColor {
@@ -9609,6 +9661,8 @@ declare namespace gapi.client {
9609
9661
  interface GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderData {
9610
9662
  /** Serialized state of the code repository. This string will typically contain a JSON representation of the UI's CodeRepositoryService state (files, folders, content, and any metadata). The UI is responsible for serialization and deserialization. */
9611
9663
  codeRepositoryState?: string;
9664
+ /** Optional. Framework used to build the application. */
9665
+ framework?: string;
9612
9666
  /** Linked resources attached to the application by the user. */
9613
9667
  linkedResources?: GoogleCloudAiplatformV1beta1SchemaPromptSpecAppBuilderDataLinkedResource[];
9614
9668
  }
@@ -10350,9 +10404,9 @@ declare namespace gapi.client {
10350
10404
  strideLength?: string;
10351
10405
  }
10352
10406
  interface GoogleCloudAiplatformV1beta1SchemaVertex {
10353
- /** X coordinate. */
10407
+ /** X coordinate of the vertex, normalized to [0.0, 1.0]. */
10354
10408
  x?: number;
10355
- /** Y coordinate. */
10409
+ /** Y coordinate of the vertex, normalized to [0.0, 1.0]. */
10356
10410
  y?: number;
10357
10411
  }
10358
10412
  interface GoogleCloudAiplatformV1beta1SchemaVideoActionRecognitionAnnotation {
@@ -11420,6 +11474,8 @@ declare namespace gapi.client {
11420
11474
  googleSearch?: GoogleCloudAiplatformV1beta1ToolGoogleSearch;
11421
11475
  /** Optional. Specialized retrieval tool that is powered by Google Search. */
11422
11476
  googleSearchRetrieval?: GoogleCloudAiplatformV1beta1GoogleSearchRetrieval;
11477
+ /** Optional. If specified, Vertex AI will use Parallel.ai to search for information to answer user queries. The search results will be grounded on Parallel.ai and presented to the model for response generation */
11478
+ parallelAiSearch?: GoogleCloudAiplatformV1beta1ToolParallelAiSearch;
11423
11479
  /** Optional. Retrieval tool type. System will always execute the provided retrieval tool(s) to get external knowledge to answer the prompt. Retrieval results are presented to the model for generation. */
11424
11480
  retrieval?: GoogleCloudAiplatformV1beta1Retrieval;
11425
11481
  /** Optional. Tool to support URL context retrieval. */
@@ -11492,6 +11548,12 @@ declare namespace gapi.client {
11492
11548
  toolNameMatchMetricValues?: GoogleCloudAiplatformV1beta1ToolNameMatchMetricValue[];
11493
11549
  }
11494
11550
  interface GoogleCloudAiplatformV1beta1ToolNameMatchSpec {}
11551
+ interface GoogleCloudAiplatformV1beta1ToolParallelAiSearch {
11552
+ /** Optional. The API key for ParallelAiSearch. If an API key is not provided, the system will attempt to verify access by checking for an active Parallel.ai subscription through the Google Cloud Marketplace. See https://docs.parallel.ai/search/search-quickstart for more details. */
11553
+ apiKey?: string;
11554
+ /** Optional. Custom configs for ParallelAiSearch. This field can be used to pass any parameter from the Parallel.ai Search API. See the Parallel.ai documentation for the full list of available parameters and their usage: https://docs.parallel.ai/api-reference/search-beta/search Currently only `source_policy`, `excerpts`, `max_results`, `mode`, `fetch_policy` can be set via this field. For example: { "source_policy": { "include_domains": ["google.com", "wikipedia.org"], "exclude_domains": ["example.com"] }, "fetch_policy": { "max_age_seconds": 3600 } } */
11555
+ customConfigs?: {[P in string]: any};
11556
+ }
11495
11557
  interface GoogleCloudAiplatformV1beta1ToolParameterKeyMatchInput {
11496
11558
  /** Required. Repeated tool parameter key match instances. */
11497
11559
  instances?: GoogleCloudAiplatformV1beta1ToolParameterKeyMatchInstance[];
@@ -12093,6 +12155,8 @@ declare namespace gapi.client {
12093
12155
  learningRateMultiplier?: number;
12094
12156
  /** Optional. The tuning task. Either I2V or T2V. */
12095
12157
  tuningTask?: string;
12158
+ /** Optional. The ratio of Google internal dataset to use in the training mixture, in range of `[0, 1)`. If `0.2`, it means 20% of Google internal dataset and 80% of user dataset will be used for training. */
12159
+ veoDataMixtureRatio?: number;
12096
12160
  }
12097
12161
  interface GoogleCloudAiplatformV1beta1VeoTuningSpec {
12098
12162
  /** Optional. Hyperparameters for Veo. */
@@ -12259,521 +12323,6 @@ declare namespace gapi.client {
12259
12323
  /** A subset of `TestPermissionsRequest.permissions` that the caller is allowed. */
12260
12324
  permissions?: string[];
12261
12325
  }
12262
- interface GoogleLearningVertexApiInteractionsV1beta1AgentInteraction {
12263
- /** The name of the `Agent` used for generating the completion. */
12264
- agent?: string;
12265
- deep_research_config?: GoogleLearningVertexApiInteractionsV1beta1DeepResearchAgentConfig;
12266
- dynamic_config?: GoogleLearningVertexApiInteractionsV1beta1DynamicAgentConfig;
12267
- }
12268
- interface GoogleLearningVertexApiInteractionsV1beta1AllowedTools {
12269
- /** The mode of the tool choice. */
12270
- mode?: string;
12271
- /** The names of the allowed tools. */
12272
- tools?: string[];
12273
- }
12274
- interface GoogleLearningVertexApiInteractionsV1beta1AudioContent {
12275
- data?: string;
12276
- mime_type?: string;
12277
- /** Used as the OpenAPI type discriminator for the content oneof. */
12278
- type?: string;
12279
- uri?: string;
12280
- }
12281
- interface GoogleLearningVertexApiInteractionsV1beta1CodeExecution {
12282
- /** Used as the OpenAPI type discriminator for the content oneof. */
12283
- type?: string;
12284
- }
12285
- interface GoogleLearningVertexApiInteractionsV1beta1CodeExecutionCallContent {
12286
- /** The arguments to pass to the code execution. */
12287
- arguments?: GoogleLearningVertexApiInteractionsV1beta1CodeExecutionCallContentCodeExecutionCallArguments;
12288
- /** Used as the OpenAPI type discriminator for the content oneof. */
12289
- type?: string;
12290
- }
12291
- interface GoogleLearningVertexApiInteractionsV1beta1CodeExecutionCallContentCodeExecutionCallArguments {
12292
- /** The code to be executed. */
12293
- code?: string;
12294
- /** Programming language of the `code`. */
12295
- language?: string;
12296
- }
12297
- interface GoogleLearningVertexApiInteractionsV1beta1CodeExecutionResultContent {
12298
- /** Whether the code execution resulted in an error. */
12299
- is_error?: boolean;
12300
- /** The output of the code execution. */
12301
- result?: string;
12302
- /** A signature hash for backend validation. */
12303
- signature?: string;
12304
- /** Used as the OpenAPI type discriminator for the content oneof. */
12305
- type?: string;
12306
- }
12307
- interface GoogleLearningVertexApiInteractionsV1beta1ComputerUse {
12308
- /** The environment being operated. */
12309
- environment?: string;
12310
- /** The list of predefined functions that are excluded from the model call. */
12311
- excludedPredefinedFunctions?: string[];
12312
- /** Used as the OpenAPI type discriminator for the content oneof. */
12313
- type?: string;
12314
- }
12315
- interface GoogleLearningVertexApiInteractionsV1beta1Content {
12316
- audio?: GoogleLearningVertexApiInteractionsV1beta1AudioContent;
12317
- document?: GoogleLearningVertexApiInteractionsV1beta1DocumentContent;
12318
- function?: GoogleLearningVertexApiInteractionsV1beta1FunctionContent;
12319
- functionResponse?: GoogleLearningVertexApiInteractionsV1beta1FunctionResponseContent;
12320
- image?: GoogleLearningVertexApiInteractionsV1beta1ImageContent;
12321
- text?: GoogleLearningVertexApiInteractionsV1beta1TextContent;
12322
- thought?: GoogleLearningVertexApiInteractionsV1beta1ThoughtContent;
12323
- video?: GoogleLearningVertexApiInteractionsV1beta1VideoContent;
12324
- }
12325
- interface GoogleLearningVertexApiInteractionsV1beta1ContentDelta {
12326
- delta?: GoogleLearningVertexApiInteractionsV1beta1Content;
12327
- event_type?: string;
12328
- index?: number;
12329
- }
12330
- interface GoogleLearningVertexApiInteractionsV1beta1ContentList {
12331
- /** The contents of the list. */
12332
- contents?: GoogleLearningVertexApiInteractionsV1beta1Content[];
12333
- }
12334
- interface GoogleLearningVertexApiInteractionsV1beta1ContentStart {
12335
- content?: GoogleLearningVertexApiInteractionsV1beta1Content;
12336
- event_type?: string;
12337
- index?: number;
12338
- }
12339
- interface GoogleLearningVertexApiInteractionsV1beta1ContentStop {
12340
- event_type?: string;
12341
- index?: number;
12342
- }
12343
- interface GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams {
12344
- /** The interaction to create. */
12345
- interaction?: GoogleLearningVertexApiInteractionsV1beta1Interaction;
12346
- /** Input only. Whether to store the response and request for later retrieval. */
12347
- store?: boolean;
12348
- /** Input only. Whether the interaction will be streamed. */
12349
- stream?: boolean;
12350
- }
12351
- interface GoogleLearningVertexApiInteractionsV1beta1DeepResearchAgentConfig {
12352
- /** If true, pauses for user confirmation of the research plan before executing it. */
12353
- explicit_planning?: boolean;
12354
- /** Used as the OpenAPI type discriminator for the content oneof. */
12355
- type?: string;
12356
- }
12357
- interface GoogleLearningVertexApiInteractionsV1beta1DocumentContent {
12358
- data?: string;
12359
- mime_type?: string;
12360
- /** Used as the OpenAPI type discriminator for the content oneof. */
12361
- type?: string;
12362
- uri?: string;
12363
- }
12364
- interface GoogleLearningVertexApiInteractionsV1beta1DynamicAgentConfig {
12365
- /** For agents that are not supported statically in the API definition. */
12366
- config?: {[P in string]: any};
12367
- /** Used as the OpenAPI type discriminator for the content oneof. */
12368
- type?: string;
12369
- }
12370
- interface GoogleLearningVertexApiInteractionsV1beta1Error {
12371
- /** A URI that identifies the error type. */
12372
- code?: string;
12373
- /** A human-readable error message. */
12374
- message?: string;
12375
- }
12376
- interface GoogleLearningVertexApiInteractionsV1beta1ErrorEvent {
12377
- error?: GoogleLearningVertexApiInteractionsV1beta1Error;
12378
- event_type?: string;
12379
- }
12380
- interface GoogleLearningVertexApiInteractionsV1beta1FileSearchPreview {
12381
- /** The file search store names to search. */
12382
- file_search_store_names?: string[];
12383
- /** Used as the OpenAPI type discriminator for the content oneof. */
12384
- type?: string;
12385
- }
12386
- interface GoogleLearningVertexApiInteractionsV1beta1FileSearchResultContent {
12387
- /** The results of the File Search. */
12388
- result?: GoogleLearningVertexApiInteractionsV1beta1FileSearchResultContentFileSearchResult[];
12389
- /** Used as the OpenAPI type discriminator for the content oneof. */
12390
- type?: string;
12391
- }
12392
- interface GoogleLearningVertexApiInteractionsV1beta1FileSearchResultContentFileSearchResult {
12393
- /** The name of the file search store. */
12394
- file_search_store?: string;
12395
- /** The text of the search result. */
12396
- text?: string;
12397
- }
12398
- interface GoogleLearningVertexApiInteractionsV1beta1Function {
12399
- /** A description of the function. */
12400
- description?: string;
12401
- /** The name of the function. */
12402
- name?: string;
12403
- /** The JSON Schema for the function's parameters. */
12404
- parameters?: any;
12405
- /** Used as the OpenAPI type discriminator for the content oneof. */
12406
- type?: string;
12407
- }
12408
- interface GoogleLearningVertexApiInteractionsV1beta1FunctionCallContent {
12409
- /** The arguments to pass to the function. */
12410
- arguments?: {[P in string]: any};
12411
- /** The name of the tool to call. */
12412
- name?: string;
12413
- /** Used as the OpenAPI type discriminator for the content oneof. */
12414
- type?: string;
12415
- }
12416
- interface GoogleLearningVertexApiInteractionsV1beta1FunctionContent {
12417
- codeExecutionCall?: GoogleLearningVertexApiInteractionsV1beta1CodeExecutionCallContent;
12418
- functionCall?: GoogleLearningVertexApiInteractionsV1beta1FunctionCallContent;
12419
- googleSearchCall?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearchCallContent;
12420
- /** A unique ID for this specific tool call. */
12421
- id?: string;
12422
- mcpServerToolCall?: GoogleLearningVertexApiInteractionsV1beta1McpServerToolCallContent;
12423
- urlContextCall?: GoogleLearningVertexApiInteractionsV1beta1UrlContextCallContent;
12424
- }
12425
- interface GoogleLearningVertexApiInteractionsV1beta1FunctionResponseContent {
12426
- codeExecutionResult?: GoogleLearningVertexApiInteractionsV1beta1CodeExecutionResultContent;
12427
- fileSearchResult?: GoogleLearningVertexApiInteractionsV1beta1FileSearchResultContent;
12428
- functionResult?: GoogleLearningVertexApiInteractionsV1beta1FunctionResultContent;
12429
- googleSearchResult?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearchResultContent;
12430
- mcpServerToolResult?: GoogleLearningVertexApiInteractionsV1beta1McpServerToolResultContent;
12431
- /** ID to match the ID from the function call block. */
12432
- toolUseId?: string;
12433
- urlContextResult?: GoogleLearningVertexApiInteractionsV1beta1UrlContextResultContent;
12434
- }
12435
- interface GoogleLearningVertexApiInteractionsV1beta1FunctionResultContent {
12436
- contentList?: GoogleLearningVertexApiInteractionsV1beta1TextOrImageContentList;
12437
- /** Whether the tool call resulted in an error. */
12438
- is_error?: boolean;
12439
- /** The name of the tool that was called. */
12440
- name?: string;
12441
- stringResult?: string;
12442
- /** Used as the OpenAPI type discriminator for the content oneof. */
12443
- type?: string;
12444
- }
12445
- interface GoogleLearningVertexApiInteractionsV1beta1GenerationConfig {
12446
- /** The maximum number of tokens to include in the response. */
12447
- max_output_tokens?: number;
12448
- /** Seed used in decoding for reproducibility. */
12449
- seed?: number;
12450
- /** A list of character sequences that will stop output interaction. */
12451
- stop_sequences?: string[];
12452
- /** Controls the randomness of the output. */
12453
- temperature?: number;
12454
- /** The level of thought tokens that the model should generate. */
12455
- thinking_level?: string;
12456
- /** Whether to include thought summaries in the response. */
12457
- thinking_summaries?: string;
12458
- /** The tool choice for the interaction. */
12459
- tool_choice?: GoogleLearningVertexApiInteractionsV1beta1ToolChoice;
12460
- /** The maximum cumulative probability of tokens to consider when sampling. */
12461
- top_p?: number;
12462
- }
12463
- interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearch {
12464
- /** Used as the OpenAPI type discriminator for the content oneof. */
12465
- type?: string;
12466
- }
12467
- interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearchCallContent {
12468
- /** The arguments to pass to Google Search. */
12469
- arguments?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearchCallContentGoogleSearchCallArguments;
12470
- /** Used as the OpenAPI type discriminator for the content oneof. */
12471
- type?: string;
12472
- }
12473
- interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearchCallContentGoogleSearchCallArguments {
12474
- /** Web search queries for the following-up web search. */
12475
- queries?: string[];
12476
- }
12477
- interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearchResultContent {
12478
- /** Whether the Google Search resulted in an error. */
12479
- is_error?: boolean;
12480
- /** The results of the Google Search. */
12481
- result?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearchResultContentGoogleSearchResult[];
12482
- /** The signature of the Google Search result. */
12483
- signature?: string;
12484
- /** Used as the OpenAPI type discriminator for the content oneof. */
12485
- type?: string;
12486
- }
12487
- interface GoogleLearningVertexApiInteractionsV1beta1GoogleSearchResultContentGoogleSearchResult {
12488
- /** Web content snippet that can be embedded in a web page or an app webview. */
12489
- rendered_content?: string;
12490
- /** Title of the search result. */
12491
- title?: string;
12492
- /** URI reference of the search result. */
12493
- url?: string;
12494
- }
12495
- interface GoogleLearningVertexApiInteractionsV1beta1ImageContent {
12496
- data?: string;
12497
- mime_type?: string;
12498
- /** The resolution of the media. */
12499
- resolution?: string;
12500
- /** Used as the OpenAPI type discriminator for the content oneof. */
12501
- type?: string;
12502
- uri?: string;
12503
- }
12504
- interface GoogleLearningVertexApiInteractionsV1beta1Interaction {
12505
- /** Interaction for generating the completion using agents. */
12506
- agentInteraction?: GoogleLearningVertexApiInteractionsV1beta1AgentInteraction;
12507
- /** Whether to run the model interaction in the background. */
12508
- background?: boolean;
12509
- /** The content for the interaction. */
12510
- content?: GoogleLearningVertexApiInteractionsV1beta1Content;
12511
- /** The inputs for the interaction. */
12512
- contentList?: GoogleLearningVertexApiInteractionsV1beta1ContentList;
12513
- /** Output only. The time at which the response was created in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). */
12514
- created?: string;
12515
- /** Output only. The error message for the interaction, if any. */
12516
- error?: GoogleLearningVertexApiInteractionsV1beta1Error;
12517
- /** Output only. A unique identifier for the interaction completion. */
12518
- id?: string;
12519
- /** Interaction for generating the completion using models. */
12520
- modelInteraction?: GoogleLearningVertexApiInteractionsV1beta1ModelInteraction;
12521
- /** Output only. The object type of the interaction. Always set to `interaction`. */
12522
- object?: string;
12523
- /** Output only. Responses from the model. */
12524
- outputs?: GoogleLearningVertexApiInteractionsV1beta1Content[];
12525
- /** The ID of the previous interaction, if any. */
12526
- previous_interaction_id?: string;
12527
- /** Enforces that the generated response is a JSON object that complies with the JSON schema specified in this field. */
12528
- response_format?: any;
12529
- /** The mime type of the response. This is required if response_format is set. */
12530
- response_mime_type?: string;
12531
- /** The requested modalities of the response (TEXT, IMAGE, AUDIO). */
12532
- response_modalities?: string[];
12533
- /** Output only. The role of the interaction. */
12534
- role?: string;
12535
- /** Configuration for speech interaction. */
12536
- speech_config?: GoogleLearningVertexApiInteractionsV1beta1SpeechConfig[];
12537
- /** Output only. The status of the interaction. */
12538
- status?: string;
12539
- /** A string input for the interaction, it will be processed as a single text input. */
12540
- stringContent?: string;
12541
- /** System instruction for the interaction. */
12542
- system_instruction?: string;
12543
- /** A list of tool declarations the model may call during interaction. */
12544
- tools?: GoogleLearningVertexApiInteractionsV1beta1Tool[];
12545
- /** The turns for the interaction. */
12546
- turnList?: GoogleLearningVertexApiInteractionsV1beta1TurnList;
12547
- /** Output only. The time at which the response was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). */
12548
- updated?: string;
12549
- /** Output only. Statistics on the interaction request's token usage. */
12550
- usage?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsage;
12551
- }
12552
- interface GoogleLearningVertexApiInteractionsV1beta1InteractionEvent {
12553
- event_type?: string;
12554
- interaction?: GoogleLearningVertexApiInteractionsV1beta1Interaction;
12555
- }
12556
- interface GoogleLearningVertexApiInteractionsV1beta1InteractionMetadata {
12557
- /** Output only. The time at which the response was created in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). */
12558
- created?: string;
12559
- /** Output only. A unique identifier for the interaction completion. */
12560
- id?: string;
12561
- /** Output only. The status of the interaction. */
12562
- status?: string;
12563
- /** Output only. The time at which the response was last updated in ISO 8601 format (YYYY-MM-DDThh:mm:ssZ). */
12564
- updated?: string;
12565
- }
12566
- interface GoogleLearningVertexApiInteractionsV1beta1InteractionStatusUpdate {
12567
- event_type?: string;
12568
- interaction_id?: string;
12569
- status?: string;
12570
- }
12571
- interface GoogleLearningVertexApiInteractionsV1beta1InteractionStreamingEvent {
12572
- /** The content block delta data, used for content.delta events. */
12573
- contentDelta?: GoogleLearningVertexApiInteractionsV1beta1ContentDelta;
12574
- /** The content block start data, used for content.start events. */
12575
- contentStart?: GoogleLearningVertexApiInteractionsV1beta1ContentStart;
12576
- /** The content block stop data, used for content.stop events. */
12577
- contentStop?: GoogleLearningVertexApiInteractionsV1beta1ContentStop;
12578
- /** The error event data, used for error events. */
12579
- errorEvent?: GoogleLearningVertexApiInteractionsV1beta1ErrorEvent;
12580
- /** The interaction data, used for interaction.start and interaction.complete events. */
12581
- interactionEvent?: GoogleLearningVertexApiInteractionsV1beta1InteractionEvent;
12582
- /** The interaction status data, used for interaction.status_update events. */
12583
- interactionStatusUpdate?: GoogleLearningVertexApiInteractionsV1beta1InteractionStatusUpdate;
12584
- /** The raw data, used for raw events. */
12585
- rawData?: string;
12586
- }
12587
- interface GoogleLearningVertexApiInteractionsV1beta1InteractionUsage {
12588
- /** A breakdown of cached token usage by modality. */
12589
- cached_tokens_by_modality?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens[];
12590
- /** A breakdown of input token usage by modality. */
12591
- input_tokens_by_modality?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens[];
12592
- /** A breakdown of output token usage by modality. */
12593
- output_tokens_by_modality?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens[];
12594
- /** A breakdown of tool-use token usage by modality. */
12595
- tool_use_tokens_by_modality?: GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens[];
12596
- /** Number of tokens in the cached part of the prompt (the cached content). */
12597
- total_cached_tokens?: number;
12598
- /** Number of tokens in the prompt (context). */
12599
- total_input_tokens?: number;
12600
- /** Total number of tokens across all the generated responses. */
12601
- total_output_tokens?: number;
12602
- /** Number of tokens of thoughts for thinking models. */
12603
- total_reasoning_tokens?: number;
12604
- /** Total token count for the interaction request (prompt + responses + other internal tokens). */
12605
- total_tokens?: number;
12606
- /** Number of tokens present in tool-use prompt(s). */
12607
- total_tool_use_tokens?: number;
12608
- }
12609
- interface GoogleLearningVertexApiInteractionsV1beta1InteractionUsageModalityTokens {
12610
- /** The modality associated with the token count. */
12611
- modality?: string;
12612
- /** Number of tokens for the modality. */
12613
- tokens?: number;
12614
- }
12615
- interface GoogleLearningVertexApiInteractionsV1beta1ListInteractionsResponse {
12616
- /** The `InteractionMetadata` from the specified collection. */
12617
- interactionMetadatas?: GoogleLearningVertexApiInteractionsV1beta1InteractionMetadata[];
12618
- /** A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. */
12619
- next_page_token?: string;
12620
- }
12621
- interface GoogleLearningVertexApiInteractionsV1beta1McpServer {
12622
- /** The allowed tools. */
12623
- allowed_tools?: GoogleLearningVertexApiInteractionsV1beta1AllowedTools[];
12624
- /** Optional: Fields for authentication headers, timeouts, etc., if needed. */
12625
- headers?: {[P in string]: string};
12626
- /** The name of the MCPServer. */
12627
- name?: string;
12628
- /** Used as the OpenAPI type discriminator for the content oneof. */
12629
- type?: string;
12630
- /** The full URL for the MCPServer endpoint. Example: "https://api.example.com/mcp" */
12631
- url?: string;
12632
- }
12633
- interface GoogleLearningVertexApiInteractionsV1beta1McpServerToolCallContent {
12634
- /** The JSON object of arguments for the function. */
12635
- arguments?: {[P in string]: any};
12636
- /** The name of the tool which was called. */
12637
- name?: string;
12638
- /** The name of the used MCP server. */
12639
- server_name?: string;
12640
- /** Used as the OpenAPI type discriminator for the content oneof. */
12641
- type?: string;
12642
- }
12643
- interface GoogleLearningVertexApiInteractionsV1beta1McpServerToolResultContent {
12644
- contentList?: GoogleLearningVertexApiInteractionsV1beta1TextOrImageContentList;
12645
- /** Name of the tool which is called for this specific tool call. */
12646
- name?: string;
12647
- /** The name of the used MCP server. */
12648
- server_name?: string;
12649
- stringResult?: string;
12650
- /** Used as the OpenAPI type discriminator for the content oneof. */
12651
- type?: string;
12652
- }
12653
- interface GoogleLearningVertexApiInteractionsV1beta1ModelInteraction {
12654
- /** Input only. Configuration parameters for the model interaction. */
12655
- generation_config?: GoogleLearningVertexApiInteractionsV1beta1GenerationConfig;
12656
- /** The name of the `Model` used for generating the completion. */
12657
- model?: string;
12658
- }
12659
- interface GoogleLearningVertexApiInteractionsV1beta1SpeechConfig {
12660
- /** The language of the speech. */
12661
- language?: string;
12662
- /** The speaker's name, it should match the speaker name given in the prompt. */
12663
- speaker?: string;
12664
- /** The voice of the speaker. */
12665
- voice?: string;
12666
- }
12667
- interface GoogleLearningVertexApiInteractionsV1beta1TextContent {
12668
- /** Citation information for model-generated content. */
12669
- annotations?: GoogleLearningVertexApiInteractionsV1beta1TextContentAnnotation[];
12670
- /** The text content. */
12671
- text?: string;
12672
- /** Used as the OpenAPI type discriminator for the content oneof. */
12673
- type?: string;
12674
- }
12675
- interface GoogleLearningVertexApiInteractionsV1beta1TextContentAnnotation {
12676
- /** End of the attributed segment, exclusive. */
12677
- end_index?: number;
12678
- /** Source attributed for a portion of the text. Could be a URL, title, or other identifier. */
12679
- source?: string;
12680
- /** Start of segment of the response that is attributed to this source. Index indicates the start of the segment, measured in bytes. */
12681
- start_index?: number;
12682
- }
12683
- interface GoogleLearningVertexApiInteractionsV1beta1TextOrImageContent {
12684
- image?: GoogleLearningVertexApiInteractionsV1beta1ImageContent;
12685
- text?: string;
12686
- }
12687
- interface GoogleLearningVertexApiInteractionsV1beta1TextOrImageContentList {
12688
- contents?: GoogleLearningVertexApiInteractionsV1beta1TextOrImageContent[];
12689
- }
12690
- interface GoogleLearningVertexApiInteractionsV1beta1ThoughtContent {
12691
- /** Signature to match the backend source to be part of the generation. */
12692
- signature?: string;
12693
- /** A summary of the thought. */
12694
- summary?: GoogleLearningVertexApiInteractionsV1beta1ThoughtSummary;
12695
- /** Used as the OpenAPI type discriminator for the content oneof. */
12696
- type?: string;
12697
- }
12698
- interface GoogleLearningVertexApiInteractionsV1beta1ThoughtSummary {
12699
- items?: GoogleLearningVertexApiInteractionsV1beta1ThoughtSummaryContent[];
12700
- }
12701
- interface GoogleLearningVertexApiInteractionsV1beta1ThoughtSummaryContent {
12702
- image?: GoogleLearningVertexApiInteractionsV1beta1ImageContent;
12703
- text?: GoogleLearningVertexApiInteractionsV1beta1TextContent;
12704
- }
12705
- interface GoogleLearningVertexApiInteractionsV1beta1Tool {
12706
- /** A tool that can be used by the model to execute code. */
12707
- codeExecution?: GoogleLearningVertexApiInteractionsV1beta1CodeExecution;
12708
- /** Tool to support the model interacting directly with the computer. */
12709
- computerUse?: GoogleLearningVertexApiInteractionsV1beta1ComputerUse;
12710
- /** A tool that can be used by the model to search files. */
12711
- fileSearch?: GoogleLearningVertexApiInteractionsV1beta1FileSearchPreview;
12712
- /** A function that can be used by the model. */
12713
- function?: GoogleLearningVertexApiInteractionsV1beta1Function;
12714
- /** A tool that can be used by the model to search Google. */
12715
- googleSearch?: GoogleLearningVertexApiInteractionsV1beta1GoogleSearch;
12716
- /** A MCPServer is a server that can be called by the model to perform actions. */
12717
- mcpServer?: GoogleLearningVertexApiInteractionsV1beta1McpServer;
12718
- /** A tool that can be used by the model to fetch URL context. */
12719
- urlContext?: GoogleLearningVertexApiInteractionsV1beta1UrlContext;
12720
- }
12721
- interface GoogleLearningVertexApiInteractionsV1beta1ToolChoice {
12722
- /** The allowed tools. */
12723
- allowed_tools?: GoogleLearningVertexApiInteractionsV1beta1AllowedTools;
12724
- /** The mode of the tool choice. */
12725
- mode?: string;
12726
- }
12727
- interface GoogleLearningVertexApiInteractionsV1beta1Turn {
12728
- /** The content of the turn. An array of Content objects. */
12729
- contentList?: GoogleLearningVertexApiInteractionsV1beta1ContentList;
12730
- /** The content of the turn. A single string. */
12731
- contentString?: string;
12732
- /** The originator of this turn. Must be user for input or model for model output. */
12733
- role?: string;
12734
- }
12735
- interface GoogleLearningVertexApiInteractionsV1beta1TurnList {
12736
- turns?: GoogleLearningVertexApiInteractionsV1beta1Turn[];
12737
- }
12738
- interface GoogleLearningVertexApiInteractionsV1beta1UrlContext {
12739
- /** Used as the OpenAPI type discriminator for the content oneof. */
12740
- type?: string;
12741
- }
12742
- interface GoogleLearningVertexApiInteractionsV1beta1UrlContextCallContent {
12743
- /** The arguments to pass to the URL context. */
12744
- arguments?: GoogleLearningVertexApiInteractionsV1beta1UrlContextCallContentUrlContextCallArguments;
12745
- /** Used as the OpenAPI type discriminator for the content oneof. */
12746
- type?: string;
12747
- }
12748
- interface GoogleLearningVertexApiInteractionsV1beta1UrlContextCallContentUrlContextCallArguments {
12749
- /** The URLs to fetch. */
12750
- urls?: string[];
12751
- }
12752
- interface GoogleLearningVertexApiInteractionsV1beta1UrlContextResultContent {
12753
- /** Whether the URL context resulted in an error. */
12754
- is_error?: boolean;
12755
- /** The results of the URL context. */
12756
- result?: GoogleLearningVertexApiInteractionsV1beta1UrlContextResultContentUrlContextResult[];
12757
- /** The signature of the URL context result. */
12758
- signature?: string;
12759
- /** Used as the OpenAPI type discriminator for the content oneof. */
12760
- type?: string;
12761
- }
12762
- interface GoogleLearningVertexApiInteractionsV1beta1UrlContextResultContentUrlContextResult {
12763
- /** The status of the URL retrieval. */
12764
- status?: string;
12765
- /** The URL that was fetched. */
12766
- url?: string;
12767
- }
12768
- interface GoogleLearningVertexApiInteractionsV1beta1VideoContent {
12769
- data?: string;
12770
- mime_type?: string;
12771
- /** The resolution of the media. */
12772
- resolution?: string;
12773
- /** Used as the OpenAPI type discriminator for the content oneof. */
12774
- type?: string;
12775
- uri?: string;
12776
- }
12777
12326
  interface GoogleLongrunningListOperationsResponse {
12778
12327
  /** The standard List next-page token. */
12779
12328
  nextPageToken?: string;
@@ -18161,97 +17710,6 @@ declare namespace gapi.client {
18161
17710
  interface IndexesResource {
18162
17711
  operations: OperationsResource;
18163
17712
  }
18164
- interface InteractionsResource {
18165
- /** Fully typed proto, unary version of GetInteraction that returns Interaction proto. */
18166
- getPoll(request?: {
18167
- /** V1 error format. */
18168
- '$.xgafv'?: string;
18169
- /** OAuth access token. */
18170
- access_token?: string;
18171
- /** Data format for response. */
18172
- alt?: string;
18173
- /** JSONP */
18174
- callback?: string;
18175
- /** Selector specifying which fields to include in a partial response. */
18176
- fields?: string;
18177
- /** 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. */
18178
- key?: string;
18179
- /** Required. The name of the interaction to retrieve. Format: interactions/{interaction} */
18180
- name: string;
18181
- /** OAuth 2.0 token for the current user. */
18182
- oauth_token?: string;
18183
- /** Returns response with indentations and line breaks. */
18184
- prettyPrint?: boolean;
18185
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18186
- quotaUser?: string;
18187
- /** Optional. If true, streams the interaction events as Server-Sent Events. */
18188
- stream?: boolean;
18189
- /** Upload protocol for media (e.g. "raw", "multipart"). */
18190
- upload_protocol?: string;
18191
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18192
- uploadType?: string;
18193
- }): Request<GoogleLearningVertexApiInteractionsV1beta1Interaction>;
18194
- /** Fully typed proto, streaming version of GetInteraction that returns Interaction proto. */
18195
- getStream(request?: {
18196
- /** V1 error format. */
18197
- '$.xgafv'?: string;
18198
- /** OAuth access token. */
18199
- access_token?: string;
18200
- /** Data format for response. */
18201
- alt?: string;
18202
- /** JSONP */
18203
- callback?: string;
18204
- /** Selector specifying which fields to include in a partial response. */
18205
- fields?: string;
18206
- /** 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. */
18207
- key?: string;
18208
- /** Required. The name of the interaction to retrieve. Format: interactions/{interaction} */
18209
- name: string;
18210
- /** OAuth 2.0 token for the current user. */
18211
- oauth_token?: string;
18212
- /** Returns response with indentations and line breaks. */
18213
- prettyPrint?: boolean;
18214
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18215
- quotaUser?: string;
18216
- /** Optional. If true, streams the interaction events as Server-Sent Events. */
18217
- stream?: boolean;
18218
- /** Upload protocol for media (e.g. "raw", "multipart"). */
18219
- upload_protocol?: string;
18220
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18221
- uploadType?: string;
18222
- }): Request<GoogleLearningVertexApiInteractionsV1beta1InteractionStreamingEvent>;
18223
- }
18224
- interface InteractionsInternalResource {
18225
- /** Internal version of ListInteractions that returns a list of Interactions. */
18226
- list(request?: {
18227
- /** V1 error format. */
18228
- '$.xgafv'?: string;
18229
- /** OAuth access token. */
18230
- access_token?: string;
18231
- /** Data format for response. */
18232
- alt?: string;
18233
- /** JSONP */
18234
- callback?: string;
18235
- /** Selector specifying which fields to include in a partial response. */
18236
- fields?: string;
18237
- /** 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. */
18238
- key?: string;
18239
- /** OAuth 2.0 token for the current user. */
18240
- oauth_token?: string;
18241
- /** Optional. The maximum number of `Interactions` to return (per page). The service may return fewer `Interactions`. If unspecified, at most 10 `Interactions` will be returned. The maximum size limit is 20 `Interactions` per page. */
18242
- page_size?: number;
18243
- /** Optional. A page token, received from a previous `ListInteractions` call. Provide the `next_page_token` returned in the response as an argument to the next request to retrieve the next page. When paginating, all other parameters provided to `ListInteractions` must match the call that provided the page token. */
18244
- page_token?: string;
18245
- /** Returns response with indentations and line breaks. */
18246
- prettyPrint?: boolean;
18247
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
18248
- quotaUser?: string;
18249
- /** Upload protocol for media (e.g. "raw", "multipart"). */
18250
- upload_protocol?: string;
18251
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
18252
- uploadType?: string;
18253
- }): Request<GoogleLearningVertexApiInteractionsV1beta1ListInteractionsResponse>;
18254
- }
18255
17713
  interface MediaResource {
18256
17714
  /** Upload a file into a RagCorpus. */
18257
17715
  upload(request: {
@@ -24542,6 +24000,68 @@ declare namespace gapi.client {
24542
24000
  ): Request<GoogleApiHttpBody>;
24543
24001
  }
24544
24002
  interface OpenapiResource {
24003
+ /** Forwards arbitrary HTTP requests for both streaming and non-streaming cases. To use this method, invoke_route_prefix must be set to allow the paths that will be specified in the request. */
24004
+ completions(request: {
24005
+ /** V1 error format. */
24006
+ '$.xgafv'?: string;
24007
+ /** OAuth access token. */
24008
+ access_token?: string;
24009
+ /** Data format for response. */
24010
+ alt?: string;
24011
+ /** JSONP */
24012
+ callback?: string;
24013
+ /** ID of the DeployedModel that serves the invoke request. */
24014
+ deployedModelId?: string;
24015
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
24016
+ endpoint: string;
24017
+ /** Selector specifying which fields to include in a partial response. */
24018
+ fields?: string;
24019
+ /** 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. */
24020
+ key?: string;
24021
+ /** OAuth 2.0 token for the current user. */
24022
+ oauth_token?: string;
24023
+ /** Returns response with indentations and line breaks. */
24024
+ prettyPrint?: boolean;
24025
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
24026
+ quotaUser?: string;
24027
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
24028
+ upload_protocol?: string;
24029
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24030
+ uploadType?: string;
24031
+ /** Request body */
24032
+ resource: GoogleApiHttpBody;
24033
+ }): Request<GoogleApiHttpBody>;
24034
+ completions(
24035
+ request: {
24036
+ /** V1 error format. */
24037
+ '$.xgafv'?: string;
24038
+ /** OAuth access token. */
24039
+ access_token?: string;
24040
+ /** Data format for response. */
24041
+ alt?: string;
24042
+ /** JSONP */
24043
+ callback?: string;
24044
+ /** ID of the DeployedModel that serves the invoke request. */
24045
+ deployedModelId?: string;
24046
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
24047
+ endpoint: string;
24048
+ /** Selector specifying which fields to include in a partial response. */
24049
+ fields?: string;
24050
+ /** 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. */
24051
+ key?: string;
24052
+ /** OAuth 2.0 token for the current user. */
24053
+ oauth_token?: string;
24054
+ /** Returns response with indentations and line breaks. */
24055
+ prettyPrint?: boolean;
24056
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
24057
+ quotaUser?: string;
24058
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
24059
+ upload_protocol?: string;
24060
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
24061
+ uploadType?: string;
24062
+ },
24063
+ body: GoogleApiHttpBody,
24064
+ ): Request<GoogleApiHttpBody>;
24545
24065
  /** Forwards arbitrary HTTP requests for both streaming and non-streaming cases. To use this method, invoke_route_prefix must be set to allow the paths that will be specified in the request. */
24546
24066
  embeddings(request: {
24547
24067
  /** V1 error format. */
@@ -25848,7 +25368,7 @@ declare namespace gapi.client {
25848
25368
  alt?: string;
25849
25369
  /** JSONP */
25850
25370
  callback?: string;
25851
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
25371
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
25852
25372
  endpoint: string;
25853
25373
  /** Selector specifying which fields to include in a partial response. */
25854
25374
  fields?: string;
@@ -25877,7 +25397,7 @@ declare namespace gapi.client {
25877
25397
  alt?: string;
25878
25398
  /** JSONP */
25879
25399
  callback?: string;
25880
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
25400
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
25881
25401
  endpoint: string;
25882
25402
  /** Selector specifying which fields to include in a partial response. */
25883
25403
  fields?: string;
@@ -34180,124 +33700,6 @@ declare namespace gapi.client {
34180
33700
  ): Request<{}>;
34181
33701
  operations: OperationsResource;
34182
33702
  }
34183
- interface InteractionsResource {
34184
- /** Creates an interaction. */
34185
- create(request: {
34186
- /** V1 error format. */
34187
- '$.xgafv'?: string;
34188
- /** OAuth access token. */
34189
- access_token?: string;
34190
- /** Data format for response. */
34191
- alt?: string;
34192
- /** JSONP */
34193
- callback?: string;
34194
- /** Selector specifying which fields to include in a partial response. */
34195
- fields?: string;
34196
- /** 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. */
34197
- key?: string;
34198
- locationsId: string;
34199
- /** OAuth 2.0 token for the current user. */
34200
- oauth_token?: string;
34201
- /** Returns response with indentations and line breaks. */
34202
- prettyPrint?: boolean;
34203
- projectsId: string;
34204
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34205
- quotaUser?: string;
34206
- /** Upload protocol for media (e.g. "raw", "multipart"). */
34207
- upload_protocol?: string;
34208
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34209
- uploadType?: string;
34210
- /** Request body */
34211
- resource: GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams;
34212
- }): Request<GoogleLearningVertexApiInteractionsV1beta1Interaction>;
34213
- create(
34214
- request: {
34215
- /** V1 error format. */
34216
- '$.xgafv'?: string;
34217
- /** OAuth access token. */
34218
- access_token?: string;
34219
- /** Data format for response. */
34220
- alt?: string;
34221
- /** JSONP */
34222
- callback?: string;
34223
- /** Selector specifying which fields to include in a partial response. */
34224
- fields?: string;
34225
- /** 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. */
34226
- key?: string;
34227
- locationsId: string;
34228
- /** OAuth 2.0 token for the current user. */
34229
- oauth_token?: string;
34230
- /** Returns response with indentations and line breaks. */
34231
- prettyPrint?: boolean;
34232
- projectsId: string;
34233
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34234
- quotaUser?: string;
34235
- /** Upload protocol for media (e.g. "raw", "multipart"). */
34236
- upload_protocol?: string;
34237
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34238
- uploadType?: string;
34239
- },
34240
- body: GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams,
34241
- ): Request<GoogleLearningVertexApiInteractionsV1beta1Interaction>;
34242
- /** Creates an interaction and streams the response. */
34243
- createStream(request: {
34244
- /** V1 error format. */
34245
- '$.xgafv'?: string;
34246
- /** OAuth access token. */
34247
- access_token?: string;
34248
- /** Data format for response. */
34249
- alt?: string;
34250
- /** JSONP */
34251
- callback?: string;
34252
- /** Selector specifying which fields to include in a partial response. */
34253
- fields?: string;
34254
- /** 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. */
34255
- key?: string;
34256
- locationsId: string;
34257
- /** OAuth 2.0 token for the current user. */
34258
- oauth_token?: string;
34259
- /** Returns response with indentations and line breaks. */
34260
- prettyPrint?: boolean;
34261
- projectsId: string;
34262
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34263
- quotaUser?: string;
34264
- /** Upload protocol for media (e.g. "raw", "multipart"). */
34265
- upload_protocol?: string;
34266
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34267
- uploadType?: string;
34268
- /** Request body */
34269
- resource: GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams;
34270
- }): Request<GoogleLearningVertexApiInteractionsV1beta1InteractionStreamingEvent>;
34271
- createStream(
34272
- request: {
34273
- /** V1 error format. */
34274
- '$.xgafv'?: string;
34275
- /** OAuth access token. */
34276
- access_token?: string;
34277
- /** Data format for response. */
34278
- alt?: string;
34279
- /** JSONP */
34280
- callback?: string;
34281
- /** Selector specifying which fields to include in a partial response. */
34282
- fields?: string;
34283
- /** 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. */
34284
- key?: string;
34285
- locationsId: string;
34286
- /** OAuth 2.0 token for the current user. */
34287
- oauth_token?: string;
34288
- /** Returns response with indentations and line breaks. */
34289
- prettyPrint?: boolean;
34290
- projectsId: string;
34291
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
34292
- quotaUser?: string;
34293
- /** Upload protocol for media (e.g. "raw", "multipart"). */
34294
- upload_protocol?: string;
34295
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
34296
- uploadType?: string;
34297
- },
34298
- body: GoogleLearningVertexApiInteractionsV1beta1CreateInteractionParams,
34299
- ): Request<GoogleLearningVertexApiInteractionsV1beta1InteractionStreamingEvent>;
34300
- }
34301
33703
  interface OperationsResource {
34302
33704
  /** 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`. */
34303
33705
  cancel(request?: {
@@ -42463,7 +41865,7 @@ declare namespace gapi.client {
42463
41865
  alt?: string;
42464
41866
  /** JSONP */
42465
41867
  callback?: string;
42466
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
41868
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
42467
41869
  endpoint: string;
42468
41870
  /** Selector specifying which fields to include in a partial response. */
42469
41871
  fields?: string;
@@ -42492,7 +41894,7 @@ declare namespace gapi.client {
42492
41894
  alt?: string;
42493
41895
  /** JSONP */
42494
41896
  callback?: string;
42495
- /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
41897
+ /** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` or `projects/{project}/locations/{location}/publishers/{publisher}/models/{model}` */
42496
41898
  endpoint: string;
42497
41899
  /** Selector specifying which fields to include in a partial response. */
42498
41900
  fields?: string;
@@ -50895,7 +50297,6 @@ declare namespace gapi.client {
50895
50297
  hyperparameterTuningJobs: HyperparameterTuningJobsResource;
50896
50298
  indexEndpoints: IndexEndpointsResource;
50897
50299
  indexes: IndexesResource;
50898
- interactions: InteractionsResource;
50899
50300
  metadataStores: MetadataStoresResource;
50900
50301
  migratableResources: MigratableResourcesResource;
50901
50302
  modelDeploymentMonitoringJobs: ModelDeploymentMonitoringJobsResource;
@@ -54798,7 +54199,157 @@ declare namespace gapi.client {
54798
54199
  uploadType?: string;
54799
54200
  }): Request<GoogleLongrunningListOperationsResponse>;
54800
54201
  }
54801
- interface SolversResource {
54202
+ interface SolversResource {
54203
+ operations: OperationsResource;
54204
+ }
54205
+ interface OperationsResource {
54206
+ /** 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`. */
54207
+ cancel(request?: {
54208
+ /** V1 error format. */
54209
+ '$.xgafv'?: string;
54210
+ /** OAuth access token. */
54211
+ access_token?: string;
54212
+ /** Data format for response. */
54213
+ alt?: string;
54214
+ /** JSONP */
54215
+ callback?: string;
54216
+ /** Selector specifying which fields to include in a partial response. */
54217
+ fields?: string;
54218
+ /** 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. */
54219
+ key?: string;
54220
+ /** The name of the operation resource to be cancelled. */
54221
+ name: string;
54222
+ /** OAuth 2.0 token for the current user. */
54223
+ oauth_token?: string;
54224
+ /** Returns response with indentations and line breaks. */
54225
+ prettyPrint?: boolean;
54226
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54227
+ quotaUser?: string;
54228
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
54229
+ upload_protocol?: string;
54230
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
54231
+ uploadType?: string;
54232
+ }): Request<{}>;
54233
+ /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
54234
+ delete(request?: {
54235
+ /** V1 error format. */
54236
+ '$.xgafv'?: string;
54237
+ /** OAuth access token. */
54238
+ access_token?: string;
54239
+ /** Data format for response. */
54240
+ alt?: string;
54241
+ /** JSONP */
54242
+ callback?: string;
54243
+ /** Selector specifying which fields to include in a partial response. */
54244
+ fields?: string;
54245
+ /** 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. */
54246
+ key?: string;
54247
+ /** The name of the operation resource to be deleted. */
54248
+ name: string;
54249
+ /** OAuth 2.0 token for the current user. */
54250
+ oauth_token?: string;
54251
+ /** Returns response with indentations and line breaks. */
54252
+ prettyPrint?: boolean;
54253
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54254
+ quotaUser?: string;
54255
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
54256
+ upload_protocol?: string;
54257
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
54258
+ uploadType?: string;
54259
+ }): Request<{}>;
54260
+ /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
54261
+ get(request?: {
54262
+ /** V1 error format. */
54263
+ '$.xgafv'?: string;
54264
+ /** OAuth access token. */
54265
+ access_token?: string;
54266
+ /** Data format for response. */
54267
+ alt?: string;
54268
+ /** JSONP */
54269
+ callback?: string;
54270
+ /** Selector specifying which fields to include in a partial response. */
54271
+ fields?: string;
54272
+ /** 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. */
54273
+ key?: string;
54274
+ /** The name of the operation resource. */
54275
+ name: string;
54276
+ /** OAuth 2.0 token for the current user. */
54277
+ oauth_token?: string;
54278
+ /** Returns response with indentations and line breaks. */
54279
+ prettyPrint?: boolean;
54280
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54281
+ quotaUser?: string;
54282
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
54283
+ upload_protocol?: string;
54284
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
54285
+ uploadType?: string;
54286
+ }): Request<GoogleLongrunningOperation>;
54287
+ /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
54288
+ list(request?: {
54289
+ /** V1 error format. */
54290
+ '$.xgafv'?: string;
54291
+ /** OAuth access token. */
54292
+ access_token?: string;
54293
+ /** Data format for response. */
54294
+ alt?: string;
54295
+ /** JSONP */
54296
+ callback?: string;
54297
+ /** Selector specifying which fields to include in a partial response. */
54298
+ fields?: string;
54299
+ /** The standard list filter. */
54300
+ filter?: string;
54301
+ /** 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. */
54302
+ key?: string;
54303
+ /** The name of the operation's parent resource. */
54304
+ name: string;
54305
+ /** OAuth 2.0 token for the current user. */
54306
+ oauth_token?: string;
54307
+ /** The standard list page size. */
54308
+ pageSize?: number;
54309
+ /** The standard list page token. */
54310
+ pageToken?: string;
54311
+ /** Returns response with indentations and line breaks. */
54312
+ prettyPrint?: boolean;
54313
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54314
+ quotaUser?: string;
54315
+ /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
54316
+ returnPartialSuccess?: boolean;
54317
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
54318
+ upload_protocol?: string;
54319
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
54320
+ uploadType?: string;
54321
+ }): Request<GoogleLongrunningListOperationsResponse>;
54322
+ /** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
54323
+ wait(request?: {
54324
+ /** V1 error format. */
54325
+ '$.xgafv'?: string;
54326
+ /** OAuth access token. */
54327
+ access_token?: string;
54328
+ /** Data format for response. */
54329
+ alt?: string;
54330
+ /** JSONP */
54331
+ callback?: string;
54332
+ /** Selector specifying which fields to include in a partial response. */
54333
+ fields?: string;
54334
+ /** 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. */
54335
+ key?: string;
54336
+ /** The name of the operation resource to wait on. */
54337
+ name: string;
54338
+ /** OAuth 2.0 token for the current user. */
54339
+ oauth_token?: string;
54340
+ /** Returns response with indentations and line breaks. */
54341
+ prettyPrint?: boolean;
54342
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
54343
+ quotaUser?: string;
54344
+ /** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
54345
+ timeout?: string;
54346
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
54347
+ upload_protocol?: string;
54348
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
54349
+ uploadType?: string;
54350
+ }): Request<GoogleLongrunningOperation>;
54351
+ }
54352
+ interface SpecialistPoolsResource {
54802
54353
  operations: OperationsResource;
54803
54354
  }
54804
54355
  interface OperationsResource {
@@ -54948,9 +54499,6 @@ declare namespace gapi.client {
54948
54499
  uploadType?: string;
54949
54500
  }): Request<GoogleLongrunningOperation>;
54950
54501
  }
54951
- interface SpecialistPoolsResource {
54952
- operations: OperationsResource;
54953
- }
54954
54502
  interface OperationsResource {
54955
54503
  /** 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`. */
54956
54504
  cancel(request?: {
@@ -55098,6 +54646,13 @@ declare namespace gapi.client {
55098
54646
  uploadType?: string;
55099
54647
  }): Request<GoogleLongrunningOperation>;
55100
54648
  }
54649
+ interface TrialsResource {
54650
+ operations: OperationsResource;
54651
+ }
54652
+ interface StudiesResource {
54653
+ operations: OperationsResource;
54654
+ trials: TrialsResource;
54655
+ }
55101
54656
  interface OperationsResource {
55102
54657
  /** 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`. */
55103
54658
  cancel(request?: {
@@ -55245,13 +54800,6 @@ declare namespace gapi.client {
55245
54800
  uploadType?: string;
55246
54801
  }): Request<GoogleLongrunningOperation>;
55247
54802
  }
55248
- interface TrialsResource {
55249
- operations: OperationsResource;
55250
- }
55251
- interface StudiesResource {
55252
- operations: OperationsResource;
55253
- trials: TrialsResource;
55254
- }
55255
54803
  interface OperationsResource {
55256
54804
  /** 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`. */
55257
54805
  cancel(request?: {
@@ -55546,6 +55094,17 @@ declare namespace gapi.client {
55546
55094
  uploadType?: string;
55547
55095
  }): Request<GoogleLongrunningOperation>;
55548
55096
  }
55097
+ interface TimeSeriesResource {
55098
+ operations: OperationsResource;
55099
+ }
55100
+ interface RunsResource {
55101
+ operations: OperationsResource;
55102
+ timeSeries: TimeSeriesResource;
55103
+ }
55104
+ interface ExperimentsResource {
55105
+ operations: OperationsResource;
55106
+ runs: RunsResource;
55107
+ }
55549
55108
  interface OperationsResource {
55550
55109
  /** 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`. */
55551
55110
  cancel(request?: {
@@ -55693,16 +55252,9 @@ declare namespace gapi.client {
55693
55252
  uploadType?: string;
55694
55253
  }): Request<GoogleLongrunningOperation>;
55695
55254
  }
55696
- interface TimeSeriesResource {
55697
- operations: OperationsResource;
55698
- }
55699
- interface RunsResource {
55700
- operations: OperationsResource;
55701
- timeSeries: TimeSeriesResource;
55702
- }
55703
- interface ExperimentsResource {
55255
+ interface TensorboardsResource {
55256
+ experiments: ExperimentsResource;
55704
55257
  operations: OperationsResource;
55705
- runs: RunsResource;
55706
55258
  }
55707
55259
  interface OperationsResource {
55708
55260
  /** 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`. */
@@ -55851,38 +55403,10 @@ declare namespace gapi.client {
55851
55403
  uploadType?: string;
55852
55404
  }): Request<GoogleLongrunningOperation>;
55853
55405
  }
55854
- interface TensorboardsResource {
55855
- experiments: ExperimentsResource;
55406
+ interface TrainingPipelinesResource {
55856
55407
  operations: OperationsResource;
55857
55408
  }
55858
55409
  interface OperationsResource {
55859
- /** 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`. */
55860
- cancel(request?: {
55861
- /** V1 error format. */
55862
- '$.xgafv'?: string;
55863
- /** OAuth access token. */
55864
- access_token?: string;
55865
- /** Data format for response. */
55866
- alt?: string;
55867
- /** JSONP */
55868
- callback?: string;
55869
- /** Selector specifying which fields to include in a partial response. */
55870
- fields?: string;
55871
- /** 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. */
55872
- key?: string;
55873
- /** The name of the operation resource to be cancelled. */
55874
- name: string;
55875
- /** OAuth 2.0 token for the current user. */
55876
- oauth_token?: string;
55877
- /** Returns response with indentations and line breaks. */
55878
- prettyPrint?: boolean;
55879
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
55880
- quotaUser?: string;
55881
- /** Upload protocol for media (e.g. "raw", "multipart"). */
55882
- upload_protocol?: string;
55883
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
55884
- uploadType?: string;
55885
- }): Request<{}>;
55886
55410
  /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
55887
55411
  delete(request?: {
55888
55412
  /** V1 error format. */
@@ -55910,8 +55434,13 @@ declare namespace gapi.client {
55910
55434
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
55911
55435
  uploadType?: string;
55912
55436
  }): Request<{}>;
55913
- /** Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service. */
55914
- get(request?: {
55437
+ }
55438
+ interface TuningJobsResource {
55439
+ operations: OperationsResource;
55440
+ }
55441
+ interface V1beta1Resource {
55442
+ /** Evaluates a dataset based on a set of given metrics. */
55443
+ evaluateDataset(request: {
55915
55444
  /** V1 error format. */
55916
55445
  '$.xgafv'?: string;
55917
55446
  /** OAuth access token. */
@@ -55924,8 +55453,6 @@ declare namespace gapi.client {
55924
55453
  fields?: string;
55925
55454
  /** 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. */
55926
55455
  key?: string;
55927
- /** The name of the operation resource. */
55928
- name: string;
55929
55456
  /** OAuth 2.0 token for the current user. */
55930
55457
  oauth_token?: string;
55931
55458
  /** Returns response with indentations and line breaks. */
@@ -55936,44 +55463,38 @@ declare namespace gapi.client {
55936
55463
  upload_protocol?: string;
55937
55464
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
55938
55465
  uploadType?: string;
55466
+ /** Request body */
55467
+ resource: GoogleCloudAiplatformV1beta1EvaluateDatasetRequest;
55939
55468
  }): Request<GoogleLongrunningOperation>;
55940
- /** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
55941
- list(request?: {
55942
- /** V1 error format. */
55943
- '$.xgafv'?: string;
55944
- /** OAuth access token. */
55945
- access_token?: string;
55946
- /** Data format for response. */
55947
- alt?: string;
55948
- /** JSONP */
55949
- callback?: string;
55950
- /** Selector specifying which fields to include in a partial response. */
55951
- fields?: string;
55952
- /** The standard list filter. */
55953
- filter?: string;
55954
- /** 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. */
55955
- key?: string;
55956
- /** The name of the operation's parent resource. */
55957
- name: string;
55958
- /** OAuth 2.0 token for the current user. */
55959
- oauth_token?: string;
55960
- /** The standard list page size. */
55961
- pageSize?: number;
55962
- /** The standard list page token. */
55963
- pageToken?: string;
55964
- /** Returns response with indentations and line breaks. */
55965
- prettyPrint?: boolean;
55966
- /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
55967
- quotaUser?: string;
55968
- /** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
55969
- returnPartialSuccess?: boolean;
55970
- /** Upload protocol for media (e.g. "raw", "multipart"). */
55971
- upload_protocol?: string;
55972
- /** Legacy upload protocol for media (e.g. "media", "multipart"). */
55973
- uploadType?: string;
55974
- }): Request<GoogleLongrunningListOperationsResponse>;
55975
- /** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
55976
- wait(request?: {
55469
+ evaluateDataset(
55470
+ request: {
55471
+ /** V1 error format. */
55472
+ '$.xgafv'?: string;
55473
+ /** OAuth access token. */
55474
+ access_token?: string;
55475
+ /** Data format for response. */
55476
+ alt?: string;
55477
+ /** JSONP */
55478
+ callback?: string;
55479
+ /** Selector specifying which fields to include in a partial response. */
55480
+ fields?: string;
55481
+ /** 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. */
55482
+ key?: string;
55483
+ /** OAuth 2.0 token for the current user. */
55484
+ oauth_token?: string;
55485
+ /** Returns response with indentations and line breaks. */
55486
+ prettyPrint?: boolean;
55487
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
55488
+ quotaUser?: string;
55489
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
55490
+ upload_protocol?: string;
55491
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
55492
+ uploadType?: string;
55493
+ },
55494
+ body: GoogleCloudAiplatformV1beta1EvaluateDatasetRequest,
55495
+ ): Request<GoogleLongrunningOperation>;
55496
+ /** Evaluates instances based on a given metric. */
55497
+ evaluateInstances(request: {
55977
55498
  /** V1 error format. */
55978
55499
  '$.xgafv'?: string;
55979
55500
  /** OAuth access token. */
@@ -55986,28 +55507,48 @@ declare namespace gapi.client {
55986
55507
  fields?: string;
55987
55508
  /** 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. */
55988
55509
  key?: string;
55989
- /** The name of the operation resource to wait on. */
55990
- name: string;
55991
55510
  /** OAuth 2.0 token for the current user. */
55992
55511
  oauth_token?: string;
55993
55512
  /** Returns response with indentations and line breaks. */
55994
55513
  prettyPrint?: boolean;
55995
55514
  /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
55996
55515
  quotaUser?: string;
55997
- /** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
55998
- timeout?: string;
55999
55516
  /** Upload protocol for media (e.g. "raw", "multipart"). */
56000
55517
  upload_protocol?: string;
56001
55518
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
56002
55519
  uploadType?: string;
56003
- }): Request<GoogleLongrunningOperation>;
56004
- }
56005
- interface TrainingPipelinesResource {
56006
- operations: OperationsResource;
56007
- }
56008
- interface OperationsResource {
56009
- /** Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. */
56010
- delete(request?: {
55520
+ /** Request body */
55521
+ resource: GoogleCloudAiplatformV1beta1EvaluateInstancesRequest;
55522
+ }): Request<GoogleCloudAiplatformV1beta1EvaluateInstancesResponse>;
55523
+ evaluateInstances(
55524
+ request: {
55525
+ /** V1 error format. */
55526
+ '$.xgafv'?: string;
55527
+ /** OAuth access token. */
55528
+ access_token?: string;
55529
+ /** Data format for response. */
55530
+ alt?: string;
55531
+ /** JSONP */
55532
+ callback?: string;
55533
+ /** Selector specifying which fields to include in a partial response. */
55534
+ fields?: string;
55535
+ /** 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. */
55536
+ key?: string;
55537
+ /** OAuth 2.0 token for the current user. */
55538
+ oauth_token?: string;
55539
+ /** Returns response with indentations and line breaks. */
55540
+ prettyPrint?: boolean;
55541
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
55542
+ quotaUser?: string;
55543
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
55544
+ upload_protocol?: string;
55545
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
55546
+ uploadType?: string;
55547
+ },
55548
+ body: GoogleCloudAiplatformV1beta1EvaluateInstancesRequest,
55549
+ ): Request<GoogleCloudAiplatformV1beta1EvaluateInstancesResponse>;
55550
+ /** Generates rubrics for a given prompt. A rubric represents a single testable criterion for evaluation. One input prompt could have multiple rubrics This RPC allows users to get suggested rubrics based on provided prompt, which can then be reviewed and used for subsequent evaluations. */
55551
+ generateInstanceRubrics(request: {
56011
55552
  /** V1 error format. */
56012
55553
  '$.xgafv'?: string;
56013
55554
  /** OAuth access token. */
@@ -56020,8 +55561,6 @@ declare namespace gapi.client {
56020
55561
  fields?: string;
56021
55562
  /** 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. */
56022
55563
  key?: string;
56023
- /** The name of the operation resource to be deleted. */
56024
- name: string;
56025
55564
  /** OAuth 2.0 token for the current user. */
56026
55565
  oauth_token?: string;
56027
55566
  /** Returns response with indentations and line breaks. */
@@ -56032,10 +55571,36 @@ declare namespace gapi.client {
56032
55571
  upload_protocol?: string;
56033
55572
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
56034
55573
  uploadType?: string;
56035
- }): Request<{}>;
56036
- }
56037
- interface TuningJobsResource {
56038
- operations: OperationsResource;
55574
+ /** Request body */
55575
+ resource: GoogleCloudAiplatformV1beta1GenerateInstanceRubricsRequest;
55576
+ }): Request<GoogleCloudAiplatformV1beta1GenerateInstanceRubricsResponse>;
55577
+ generateInstanceRubrics(
55578
+ request: {
55579
+ /** V1 error format. */
55580
+ '$.xgafv'?: string;
55581
+ /** OAuth access token. */
55582
+ access_token?: string;
55583
+ /** Data format for response. */
55584
+ alt?: string;
55585
+ /** JSONP */
55586
+ callback?: string;
55587
+ /** Selector specifying which fields to include in a partial response. */
55588
+ fields?: string;
55589
+ /** 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. */
55590
+ key?: string;
55591
+ /** OAuth 2.0 token for the current user. */
55592
+ oauth_token?: string;
55593
+ /** Returns response with indentations and line breaks. */
55594
+ prettyPrint?: boolean;
55595
+ /** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
55596
+ quotaUser?: string;
55597
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
55598
+ upload_protocol?: string;
55599
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
55600
+ uploadType?: string;
55601
+ },
55602
+ body: GoogleCloudAiplatformV1beta1GenerateInstanceRubricsRequest,
55603
+ ): Request<GoogleCloudAiplatformV1beta1GenerateInstanceRubricsResponse>;
56039
55604
  }
56040
55605
 
56041
55606
  const agents: AgentsResource;
@@ -56082,10 +55647,6 @@ declare namespace gapi.client {
56082
55647
 
56083
55648
  const indexes: IndexesResource;
56084
55649
 
56085
- const interactions: InteractionsResource;
56086
-
56087
- const interactionsInternal: InteractionsInternalResource;
56088
-
56089
55650
  const media: MediaResource;
56090
55651
 
56091
55652
  const metadataStores: MetadataStoresResource;
@@ -56135,5 +55696,7 @@ declare namespace gapi.client {
56135
55696
  const trainingPipelines: TrainingPipelinesResource;
56136
55697
 
56137
55698
  const tuningJobs: TuningJobsResource;
55699
+
55700
+ const v1beta1: V1beta1Resource;
56138
55701
  }
56139
55702
  }