@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20250318 → 0.0.20250322

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +189 -8
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -9,7 +9,7 @@
9
9
  // This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
10
10
  // In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
11
11
  // Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20250318
12
+ // Revision: 20250322
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -809,6 +809,14 @@ declare namespace gapi.client {
809
809
  /** Optional. The producer of the content. Must be either 'user' or 'model'. Useful to set for multi-turn conversations, otherwise can be left blank or unset. */
810
810
  role?: string;
811
811
  }
812
+ interface GoogleCloudAiplatformV1ContentMap {
813
+ /** Optional. Map of placeholder to contents. */
814
+ values?: {[P in string]: GoogleCloudAiplatformV1ContentMapContents};
815
+ }
816
+ interface GoogleCloudAiplatformV1ContentMapContents {
817
+ /** Optional. Repeated contents. */
818
+ contents?: GoogleCloudAiplatformV1Content[];
819
+ }
812
820
  interface GoogleCloudAiplatformV1Context {
813
821
  /** Output only. Timestamp when this Context was created. */
814
822
  createTime?: string;
@@ -1095,6 +1103,14 @@ declare namespace gapi.client {
1095
1103
  /** Required. The spec of the worker pools including machine type and Docker image. All worker pools except the first one are optional and can be skipped by providing an empty value. */
1096
1104
  workerPoolSpecs?: GoogleCloudAiplatformV1WorkerPoolSpec[];
1097
1105
  }
1106
+ interface GoogleCloudAiplatformV1CustomOutput {
1107
+ /** Output only. List of raw output strings. */
1108
+ rawOutputs?: GoogleCloudAiplatformV1RawOutput;
1109
+ }
1110
+ interface GoogleCloudAiplatformV1CustomOutputFormatConfig {
1111
+ /** Optional. Whether to return raw output. */
1112
+ returnRawOutput?: boolean;
1113
+ }
1098
1114
  interface GoogleCloudAiplatformV1DataItem {
1099
1115
  /** Output only. Timestamp when this DataItem was created. */
1100
1116
  createTime?: string;
@@ -1477,7 +1493,7 @@ declare namespace gapi.client {
1477
1493
  clientConnectionConfig?: GoogleCloudAiplatformV1ClientConnectionConfig;
1478
1494
  /** Output only. Timestamp when this Endpoint was created. */
1479
1495
  createTime?: string;
1480
- /** Output only. DNS of the dedicated endpoint. Will only be populated if dedicated_endpoint_enabled is true. Format: `https://{endpoint_id}.{region}-{project_number}.prediction.vertexai.goog`. */
1496
+ /** Output only. DNS of the dedicated endpoint. Will only be populated if dedicated_endpoint_enabled is true. Depending on the features enabled, uid might be a random number or a string. For example, if fast_tryout is enabled, uid will be fasttryout. Format: `https://{endpoint_id}.{region}-{uid}.prediction.vertexai.goog`. */
1481
1497
  dedicatedEndpointDns?: string;
1482
1498
  /** If true, the endpoint will be exposed through a dedicated DNS [Endpoint.dedicated_endpoint_dns]. Your request to the dedicated DNS will be isolated from other users' traffic and will have better performance and reliability. Note: Once you enabled dedicated endpoint, you won't be able to send request to the shared DNS {region}-aiplatform.googleapis.com. The limitation will be removed soon. */
1483
1499
  dedicatedEndpointEnabled?: boolean;
@@ -1590,7 +1606,7 @@ declare namespace gapi.client {
1590
1606
  explanationType?: string;
1591
1607
  }
1592
1608
  interface GoogleCloudAiplatformV1EvaluateDatasetRequest {
1593
- /** Optional. Autorater config used for evaluation. */
1609
+ /** Optional. Autorater config used for evaluation. Currently only publisher Gemini models are supported. Format: `projects/{PROJECT}/locations/{LOCATION}/publishers/google/models/{MODEL}.` */
1594
1610
  autoraterConfig?: GoogleCloudAiplatformV1AutoraterConfig;
1595
1611
  /** Required. The dataset used for evaluation. */
1596
1612
  dataset?: GoogleCloudAiplatformV1EvaluationDataset;
@@ -1636,6 +1652,8 @@ declare namespace gapi.client {
1636
1652
  questionAnsweringRelevanceInput?: GoogleCloudAiplatformV1QuestionAnsweringRelevanceInput;
1637
1653
  /** Instances and metric spec for rouge metric. */
1638
1654
  rougeInput?: GoogleCloudAiplatformV1RougeInput;
1655
+ /** Rubric Based Instruction Following metric. */
1656
+ rubricBasedInstructionFollowingInput?: GoogleCloudAiplatformV1RubricBasedInstructionFollowingInput;
1639
1657
  /** Input for safety metric. */
1640
1658
  safetyInput?: GoogleCloudAiplatformV1SafetyInput;
1641
1659
  /** Input for summarization helpfulness metric. */
@@ -1700,6 +1718,8 @@ declare namespace gapi.client {
1700
1718
  questionAnsweringRelevanceResult?: GoogleCloudAiplatformV1QuestionAnsweringRelevanceResult;
1701
1719
  /** Results for rouge metric. */
1702
1720
  rougeResults?: GoogleCloudAiplatformV1RougeResults;
1721
+ /** Result for rubric based instruction following metric. */
1722
+ rubricBasedInstructionFollowingResult?: GoogleCloudAiplatformV1RubricBasedInstructionFollowingResult;
1703
1723
  /** Result for safety metric. */
1704
1724
  safetyResult?: GoogleCloudAiplatformV1SafetyResult;
1705
1725
  /** Result for summarization helpfulness metric. */
@@ -1732,7 +1752,7 @@ declare namespace gapi.client {
1732
1752
  interface GoogleCloudAiplatformV1EvaluationDataset {
1733
1753
  /** BigQuery source holds the dataset. */
1734
1754
  bigquerySource?: GoogleCloudAiplatformV1BigQuerySource;
1735
- /** Cloud storage source holds the dataset. */
1755
+ /** Cloud storage source holds the dataset. Currently only one Cloud Storage file path is supported. */
1736
1756
  gcsSource?: GoogleCloudAiplatformV1GcsSource;
1737
1757
  }
1738
1758
  interface GoogleCloudAiplatformV1Event {
@@ -2141,6 +2161,10 @@ declare namespace gapi.client {
2141
2161
  labels?: {[P in string]: string};
2142
2162
  /** Identifier. Name of the FeatureGroup. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
2143
2163
  name?: string;
2164
+ /** Output only. A Service Account unique to this FeatureGroup. The role bigquery.dataViewer should be granted to this service account to allow Vertex AI Feature Store to access source data while running jobs under this FeatureGroup. */
2165
+ serviceAccountEmail?: string;
2166
+ /** Optional. Service agent type used during jobs under a FeatureGroup. By default, the Vertex AI Service Agent is used. When using an IAM Policy to isolate this FeatureGroup within a project, a separate service account should be provisioned by setting this field to `SERVICE_AGENT_TYPE_FEATURE_GROUP`. This will generate a separate service account to access the BigQuery source table. */
2167
+ serviceAgentType?: string;
2144
2168
  /** Output only. Timestamp when this FeatureGroup was last updated. */
2145
2169
  updateTime?: string;
2146
2170
  }
@@ -2723,6 +2747,8 @@ declare namespace gapi.client {
2723
2747
  toolUsePromptTokensDetails?: GoogleCloudAiplatformV1ModalityTokenCount[];
2724
2748
  /** Total token count for prompt, response candidates, and tool-use prompts (if present). */
2725
2749
  totalTokenCount?: number;
2750
+ /** Output only. Traffic type. This shows whether a request consumes Pay-As-You-Go or Provisioned Throughput quota. */
2751
+ trafficType?: string;
2726
2752
  }
2727
2753
  interface GoogleCloudAiplatformV1GenerateVideoResponse {
2728
2754
  /** The cloud storage uris of the generated videos. */
@@ -2859,6 +2885,8 @@ declare namespace gapi.client {
2859
2885
  uri?: string;
2860
2886
  }
2861
2887
  interface GoogleCloudAiplatformV1GroundingChunkWeb {
2888
+ /** Domain of the (original) URI. */
2889
+ domain?: string;
2862
2890
  /** Title of the chunk. */
2863
2891
  title?: string;
2864
2892
  /** URI reference of the chunk. */
@@ -4616,10 +4644,14 @@ declare namespace gapi.client {
4616
4644
  metricSpec?: GoogleCloudAiplatformV1PairwiseMetricSpec;
4617
4645
  }
4618
4646
  interface GoogleCloudAiplatformV1PairwiseMetricInstance {
4647
+ /** Key-value contents for the mutlimodality input, including text, image, video, audio, and pdf, etc. The key is placeholder in metric prompt template, and the value is the multimodal content. */
4648
+ contentMapInstance?: GoogleCloudAiplatformV1ContentMap;
4619
4649
  /** Instance specified as a json string. String key-value pairs are expected in the json_instance to render PairwiseMetricSpec.instance_prompt_template. */
4620
4650
  jsonInstance?: string;
4621
4651
  }
4622
4652
  interface GoogleCloudAiplatformV1PairwiseMetricResult {
4653
+ /** Output only. Spec for custom output. */
4654
+ customOutput?: GoogleCloudAiplatformV1CustomOutput;
4623
4655
  /** Output only. Explanation for pairwise metric score. */
4624
4656
  explanation?: string;
4625
4657
  /** Output only. Pairwise metric choice. */
@@ -4630,6 +4662,8 @@ declare namespace gapi.client {
4630
4662
  baselineResponseFieldName?: string;
4631
4663
  /** Optional. The field name of the candidate response. */
4632
4664
  candidateResponseFieldName?: string;
4665
+ /** Optional. CustomOutputFormatConfig allows customization of metric output. When this config is set, the default output is replaced with the raw output string. If a custom format is chosen, the `pairwise_choice` and `explanation` fields in the corresponding metric result will be empty. */
4666
+ customOutputFormatConfig?: GoogleCloudAiplatformV1CustomOutputFormatConfig;
4633
4667
  /** Required. Metric prompt template for pairwise metric. */
4634
4668
  metricPromptTemplate?: string;
4635
4669
  /** Optional. System instructions for pairwise metric. */
@@ -4904,16 +4938,22 @@ declare namespace gapi.client {
4904
4938
  metricSpec?: GoogleCloudAiplatformV1PointwiseMetricSpec;
4905
4939
  }
4906
4940
  interface GoogleCloudAiplatformV1PointwiseMetricInstance {
4941
+ /** Key-value contents for the mutlimodality input, including text, image, video, audio, and pdf, etc. The key is placeholder in metric prompt template, and the value is the multimodal content. */
4942
+ contentMapInstance?: GoogleCloudAiplatformV1ContentMap;
4907
4943
  /** Instance specified as a json string. String key-value pairs are expected in the json_instance to render PointwiseMetricSpec.instance_prompt_template. */
4908
4944
  jsonInstance?: string;
4909
4945
  }
4910
4946
  interface GoogleCloudAiplatformV1PointwiseMetricResult {
4947
+ /** Output only. Spec for custom output. */
4948
+ customOutput?: GoogleCloudAiplatformV1CustomOutput;
4911
4949
  /** Output only. Explanation for pointwise metric score. */
4912
4950
  explanation?: string;
4913
4951
  /** Output only. Pointwise metric score. */
4914
4952
  score?: number;
4915
4953
  }
4916
4954
  interface GoogleCloudAiplatformV1PointwiseMetricSpec {
4955
+ /** Optional. CustomOutputFormatConfig allows customization of metric output. By default, metrics return a score and explanation. When this config is set, the default output is replaced with either: - The raw output string. - A parsed output based on a user-defined schema. If a custom format is chosen, the `score` and `explanation` fields in the corresponding metric result will be empty. */
4956
+ customOutputFormatConfig?: GoogleCloudAiplatformV1CustomOutputFormatConfig;
4917
4957
  /** Required. Metric prompt template for pointwise metric. */
4918
4958
  metricPromptTemplate?: string;
4919
4959
  /** Optional. System instructions for pointwise metric. */
@@ -5436,6 +5476,8 @@ declare namespace gapi.client {
5436
5476
  updateTime?: string;
5437
5477
  /** Optional. Immutable. The config for the Vector DBs. */
5438
5478
  vectorDbConfig?: GoogleCloudAiplatformV1RagVectorDbConfig;
5479
+ /** Optional. Immutable. The config for the Vertex AI Search. */
5480
+ vertexAiSearchConfig?: GoogleCloudAiplatformV1VertexAiSearchConfig;
5439
5481
  }
5440
5482
  interface GoogleCloudAiplatformV1RagEmbeddingModelConfig {
5441
5483
  /** The Vertex AI Prediction Endpoint that either refers to a publisher model or an endpoint that is hosting a 1P fine-tuned text embedding model. Endpoints hosting non-1P fine-tuned text embedding models are currently not supported. This is used for dense vector search. */
@@ -5508,6 +5550,8 @@ declare namespace gapi.client {
5508
5550
  interface GoogleCloudAiplatformV1RagRetrievalConfig {
5509
5551
  /** Optional. Config for filters. */
5510
5552
  filter?: GoogleCloudAiplatformV1RagRetrievalConfigFilter;
5553
+ /** Optional. Config for ranking and reranking. */
5554
+ ranking?: GoogleCloudAiplatformV1RagRetrievalConfigRanking;
5511
5555
  /** Optional. The number of contexts to retrieve. */
5512
5556
  topK?: number;
5513
5557
  }
@@ -5519,6 +5563,20 @@ declare namespace gapi.client {
5519
5563
  /** Optional. Only returns contexts with vector similarity larger than the threshold. */
5520
5564
  vectorSimilarityThreshold?: number;
5521
5565
  }
5566
+ interface GoogleCloudAiplatformV1RagRetrievalConfigRanking {
5567
+ /** Optional. Config for LlmRanker. */
5568
+ llmRanker?: GoogleCloudAiplatformV1RagRetrievalConfigRankingLlmRanker;
5569
+ /** Optional. Config for Rank Service. */
5570
+ rankService?: GoogleCloudAiplatformV1RagRetrievalConfigRankingRankService;
5571
+ }
5572
+ interface GoogleCloudAiplatformV1RagRetrievalConfigRankingLlmRanker {
5573
+ /** Optional. The model name used for ranking. Format: `gemini-1.5-pro` */
5574
+ modelName?: string;
5575
+ }
5576
+ interface GoogleCloudAiplatformV1RagRetrievalConfigRankingRankService {
5577
+ /** Optional. The model name of the rank service. Format: `semantic-ranker-512@latest` */
5578
+ modelName?: string;
5579
+ }
5522
5580
  interface GoogleCloudAiplatformV1RagVectorDbConfig {
5523
5581
  /** Authentication config for the chosen Vector DB. */
5524
5582
  apiAuth?: GoogleCloudAiplatformV1ApiAuth;
@@ -5542,6 +5600,10 @@ declare namespace gapi.client {
5542
5600
  /** The resource name of the Index Endpoint. Format: `projects/{project}/locations/{location}/indexEndpoints/{index_endpoint}` */
5543
5601
  indexEndpoint?: string;
5544
5602
  }
5603
+ interface GoogleCloudAiplatformV1RawOutput {
5604
+ /** Output only. Raw output string. */
5605
+ rawOutput?: string[];
5606
+ }
5545
5607
  interface GoogleCloudAiplatformV1RawPredictRequest {
5546
5608
  /** The prediction input. Supports HTTP headers and arbitrary data payload. A DeployedModel may have an upper limit on the number of instances it supports per request. When this limit it is exceeded for an AutoML model, the RawPredict method returns an error. When this limit is exceeded for a custom-trained model, the behavior varies depending on the model. You can specify the schema for each instance in the predict_schemata.instance_schema_uri field when you create a Model. This schema applies when you deploy the `Model` as a `DeployedModel` to an Endpoint and use the `RawPredict` method. */
5547
5609
  httpBody?: GoogleApiHttpBody;
@@ -5649,7 +5711,7 @@ declare namespace gapi.client {
5649
5711
  etag?: string;
5650
5712
  /** Identifier. The resource name of the ReasoningEngine. */
5651
5713
  name?: string;
5652
- /** Required. Configurations of the ReasoningEngine */
5714
+ /** Optional. Configurations of the ReasoningEngine */
5653
5715
  spec?: GoogleCloudAiplatformV1ReasoningEngineSpec;
5654
5716
  /** Output only. Timestamp when this ReasoningEngine was most recently updated. */
5655
5717
  updateTime?: string;
@@ -5661,7 +5723,7 @@ declare namespace gapi.client {
5661
5723
  classMethods?: Array<{[P in string]: any}>;
5662
5724
  /** Optional. The specification of a Reasoning Engine deployment. */
5663
5725
  deploymentSpec?: GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpec;
5664
- /** Required. User provided package spec of the ReasoningEngine. Ignored when users directly specify a deployment image through `deployment_spec.first_party_image_override`, but keeping the field_behavior to avoid introducing breaking changes. */
5726
+ /** Optional. User provided package spec of the ReasoningEngine. Ignored when users directly specify a deployment image through `deployment_spec.first_party_image_override`, but keeping the field_behavior to avoid introducing breaking changes. */
5665
5727
  packageSpec?: GoogleCloudAiplatformV1ReasoningEngineSpecPackageSpec;
5666
5728
  }
5667
5729
  interface GoogleCloudAiplatformV1ReasoningEngineSpecDeploymentSpec {
@@ -5826,6 +5888,29 @@ declare namespace gapi.client {
5826
5888
  /** Optional. Whether to use stemmer to compute rouge score. */
5827
5889
  useStemmer?: boolean;
5828
5890
  }
5891
+ interface GoogleCloudAiplatformV1RubricBasedInstructionFollowingInput {
5892
+ /** Required. Instance for RubricBasedInstructionFollowing metric. */
5893
+ instance?: GoogleCloudAiplatformV1RubricBasedInstructionFollowingInstance;
5894
+ /** Required. Spec for RubricBasedInstructionFollowing metric. */
5895
+ metricSpec?: any;
5896
+ }
5897
+ interface GoogleCloudAiplatformV1RubricBasedInstructionFollowingInstance {
5898
+ /** Required. Instance specified as a json string. String key-value pairs are expected in the json_instance to render RubricBasedInstructionFollowing prompt templates. */
5899
+ jsonInstance?: string;
5900
+ }
5901
+ interface GoogleCloudAiplatformV1RubricBasedInstructionFollowingResult {
5902
+ /** Output only. List of per rubric critique results. */
5903
+ rubricCritiqueResults?: GoogleCloudAiplatformV1RubricCritiqueResult[];
5904
+ /** Output only. Overall score for the instruction following. */
5905
+ score?: number;
5906
+ }
5907
+ interface GoogleCloudAiplatformV1RubricBasedInstructionFollowingSpec {}
5908
+ interface GoogleCloudAiplatformV1RubricCritiqueResult {
5909
+ /** Output only. Rubric to be evaluated. */
5910
+ rubric?: string;
5911
+ /** Output only. Verdict for the rubric - true if the rubric is met, false otherwise. */
5912
+ verdict?: boolean;
5913
+ }
5829
5914
  interface GoogleCloudAiplatformV1SafetyInput {
5830
5915
  /** Required. Safety instance. */
5831
5916
  instance?: GoogleCloudAiplatformV1SafetyInstance;
@@ -7529,7 +7614,7 @@ declare namespace gapi.client {
7529
7614
  secretRef?: GoogleCloudAiplatformV1SecretRef;
7530
7615
  }
7531
7616
  interface GoogleCloudAiplatformV1SecretRef {
7532
- /** Required. The name of the secret in Cloud Secret Manager. Format: {secret_name} if the secret is in the same project. projects/{project}/secrets/{secret_name} if the secret is in a different project. */
7617
+ /** Required. The name of the secret in Cloud Secret Manager. Format: {secret_name}. */
7533
7618
  secret?: string;
7534
7619
  /** The Cloud Secret Manager secret version. Can be 'latest' for the latest version, an integer for a specific version, or a version alias. */
7535
7620
  version?: string;
@@ -8771,6 +8856,10 @@ declare namespace gapi.client {
8771
8856
  /** Optional. Fully-qualified Vertex AI Search engine resource ID. Format: `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}` */
8772
8857
  engine?: string;
8773
8858
  }
8859
+ interface GoogleCloudAiplatformV1VertexAiSearchConfig {
8860
+ /** Vertex AI Search Serving Config resource full name. For example, `projects/{project}/locations/{location}/collections/{collection}/engines/{engine}/servingConfigs/{serving_config}` or `projects/{project}/locations/{location}/collections/{collection}/dataStores/{data_store}/servingConfigs/{serving_config}`. */
8861
+ servingConfig?: string;
8862
+ }
8774
8863
  interface GoogleCloudAiplatformV1VertexRagStore {
8775
8864
  /** Optional. The representation of the rag source. It can be used to specify corpus only or ragfiles. Currently only support one corpus or multiple files from one corpus. In the future we may open up multiple corpora support. */
8776
8865
  ragResources?: GoogleCloudAiplatformV1VertexRagStoreRagResource[];
@@ -11214,7 +11303,7 @@ declare namespace gapi.client {
11214
11303
  }): Request<GoogleLongrunningOperation>;
11215
11304
  }
11216
11305
  interface AnnotationsResource {
11217
- /** Lists Annotations belongs to a dataitem This RPC is only available in InternalDatasetService. It is only used for exporting conversation data to CCAI Insights. */
11306
+ /** Lists Annotations belongs to a dataitem. */
11218
11307
  list(request?: {
11219
11308
  /** V1 error format. */
11220
11309
  '$.xgafv'?: string;
@@ -14853,6 +14942,35 @@ declare namespace gapi.client {
14853
14942
  /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14854
14943
  uploadType?: string;
14855
14944
  }): Request<GoogleCloudAiplatformV1FeatureGroup>;
14945
+ /** Gets the access control policy for a resource. Returns an empty policy if the resource exists and does not have a policy set. */
14946
+ getIamPolicy(request?: {
14947
+ /** V1 error format. */
14948
+ '$.xgafv'?: string;
14949
+ /** OAuth access token. */
14950
+ access_token?: string;
14951
+ /** Data format for response. */
14952
+ alt?: string;
14953
+ /** JSONP */
14954
+ callback?: string;
14955
+ /** Selector specifying which fields to include in a partial response. */
14956
+ fields?: string;
14957
+ /** 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. */
14958
+ key?: string;
14959
+ /** OAuth 2.0 token for the current user. */
14960
+ oauth_token?: string;
14961
+ /** Optional. The maximum policy version that will be used to format the policy. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for policies with any conditional role bindings must specify version 3. Policies with no conditional role bindings may specify any valid value or leave the field unset. The policy in the response might use the policy version that you specified, or it might use a lower policy version. For example, if you specify version 3, but the policy has no conditional role bindings, the response uses version 1. To learn which resources support conditions in their IAM policies, see the [IAM documentation](https://cloud.google.com/iam/help/conditions/resource-policies). */
14962
+ 'options.requestedPolicyVersion'?: number;
14963
+ /** Returns response with indentations and line breaks. */
14964
+ prettyPrint?: boolean;
14965
+ /** 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. */
14966
+ quotaUser?: string;
14967
+ /** REQUIRED: The resource for which the policy is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
14968
+ resource: string;
14969
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
14970
+ upload_protocol?: string;
14971
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
14972
+ uploadType?: string;
14973
+ }): Request<GoogleIamV1Policy>;
14856
14974
  /** Lists FeatureGroups in a given project and location. */
14857
14975
  list(request?: {
14858
14976
  /** V1 error format. */
@@ -14950,6 +15068,65 @@ declare namespace gapi.client {
14950
15068
  },
14951
15069
  body: GoogleCloudAiplatformV1FeatureGroup,
14952
15070
  ): Request<GoogleLongrunningOperation>;
15071
+ /** Sets the access control policy on the specified resource. Replaces any existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `PERMISSION_DENIED` errors. */
15072
+ setIamPolicy(
15073
+ request: {
15074
+ /** V1 error format. */
15075
+ '$.xgafv'?: string;
15076
+ /** OAuth access token. */
15077
+ access_token?: string;
15078
+ /** Data format for response. */
15079
+ alt?: string;
15080
+ /** JSONP */
15081
+ callback?: string;
15082
+ /** Selector specifying which fields to include in a partial response. */
15083
+ fields?: string;
15084
+ /** 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. */
15085
+ key?: string;
15086
+ /** OAuth 2.0 token for the current user. */
15087
+ oauth_token?: string;
15088
+ /** Returns response with indentations and line breaks. */
15089
+ prettyPrint?: boolean;
15090
+ /** 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. */
15091
+ quotaUser?: string;
15092
+ /** REQUIRED: The resource for which the policy is being specified. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
15093
+ resource: string;
15094
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15095
+ upload_protocol?: string;
15096
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15097
+ uploadType?: string;
15098
+ },
15099
+ body: GoogleIamV1SetIamPolicyRequest,
15100
+ ): Request<GoogleIamV1Policy>;
15101
+ /** Returns permissions that a caller has on the specified resource. If the resource does not exist, this will return an empty set of permissions, not a `NOT_FOUND` error. Note: This operation is designed to be used for building permission-aware UIs and command-line tools, not for authorization checking. This operation may "fail open" without warning. */
15102
+ testIamPermissions(request?: {
15103
+ /** V1 error format. */
15104
+ '$.xgafv'?: string;
15105
+ /** OAuth access token. */
15106
+ access_token?: string;
15107
+ /** Data format for response. */
15108
+ alt?: string;
15109
+ /** JSONP */
15110
+ callback?: string;
15111
+ /** Selector specifying which fields to include in a partial response. */
15112
+ fields?: string;
15113
+ /** 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. */
15114
+ key?: string;
15115
+ /** OAuth 2.0 token for the current user. */
15116
+ oauth_token?: string;
15117
+ /** The set of permissions to check for the `resource`. Permissions with wildcards (such as `*` or `storage.*`) are not allowed. For more information see [IAM Overview](https://cloud.google.com/iam/docs/overview#permissions). */
15118
+ permissions?: string | string[];
15119
+ /** Returns response with indentations and line breaks. */
15120
+ prettyPrint?: boolean;
15121
+ /** 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. */
15122
+ quotaUser?: string;
15123
+ /** REQUIRED: The resource for which the policy detail is being requested. See [Resource names](https://cloud.google.com/apis/design/resource_names) for the appropriate value for this field. */
15124
+ resource: string;
15125
+ /** Upload protocol for media (e.g. "raw", "multipart"). */
15126
+ upload_protocol?: string;
15127
+ /** Legacy upload protocol for media (e.g. "media", "multipart"). */
15128
+ uploadType?: string;
15129
+ }): Request<GoogleIamV1TestIamPermissionsResponse>;
14953
15130
  features: FeaturesResource;
14954
15131
  operations: OperationsResource;
14955
15132
  }
@@ -27237,6 +27414,8 @@ declare namespace gapi.client {
27237
27414
  callback?: string;
27238
27415
  /** Selector specifying which fields to include in a partial response. */
27239
27416
  fields?: string;
27417
+ /** Optional. If set to true, child resources of this reasoning engine will also be deleted. Otherwise, the request will fail with FAILED_PRECONDITION error when the reasoning engine has undeleted child resources. */
27418
+ force?: boolean;
27240
27419
  /** 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. */
27241
27420
  key?: string;
27242
27421
  /** Required. The name of the ReasoningEngine resource to be deleted. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
@@ -32171,6 +32350,8 @@ declare namespace gapi.client {
32171
32350
  alt?: string;
32172
32351
  /** JSONP */
32173
32352
  callback?: string;
32353
+ /** Optional. A list of extra location types that should be used as conditions for controlling the visibility of the locations. */
32354
+ extraLocationTypes?: string | string[];
32174
32355
  /** Selector specifying which fields to include in a partial response. */
32175
32356
  fields?: string;
32176
32357
  /** A filter to narrow down results to a preferred subset. The filtering language accepts strings like `"displayName=tokyo"`, and is documented in more detail in [AIP-160](https://google.aip.dev/160). */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1",
3
- "version": "0.0.20250318",
3
+ "version": "0.0.20250322",
4
4
  "description": "TypeScript typings for Vertex AI API v1",
5
5
  "repository": {
6
6
  "type": "git",