@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20250809 → 0.0.20250816
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +8 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250816
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3074,12 +3074,7 @@ declare namespace gapi.client {
|
|
|
3074
3074
|
/** Required. The type of the Google Drive resource. */
|
|
3075
3075
|
resourceType?: string;
|
|
3076
3076
|
}
|
|
3077
|
-
interface GoogleCloudAiplatformV1GoogleMaps {
|
|
3078
|
-
/** The authentication config to access the API. Deprecated. Please use auth_config instead. */
|
|
3079
|
-
apiAuth?: GoogleCloudAiplatformV1ApiAuth;
|
|
3080
|
-
/** The authentication config to access the API. Only API key is supported. */
|
|
3081
|
-
authConfig?: GoogleCloudAiplatformV1AuthConfig;
|
|
3082
|
-
}
|
|
3077
|
+
interface GoogleCloudAiplatformV1GoogleMaps {}
|
|
3083
3078
|
interface GoogleCloudAiplatformV1GoogleSearchRetrieval {
|
|
3084
3079
|
/** Specifies the dynamic retrieval configuration for the given source. */
|
|
3085
3080
|
dynamicRetrievalConfig?: GoogleCloudAiplatformV1DynamicRetrievalConfig;
|
|
@@ -6132,13 +6127,13 @@ declare namespace gapi.client {
|
|
|
6132
6127
|
containerConcurrency?: number;
|
|
6133
6128
|
/** Optional. Environment variables to be set with the Reasoning Engine deployment. The environment variables can be updated through the UpdateReasoningEngine API. */
|
|
6134
6129
|
env?: GoogleCloudAiplatformV1EnvVar[];
|
|
6135
|
-
/** Optional. The maximum number of application instances that can be launched to handle increased traffic. Defaults to 100. */
|
|
6130
|
+
/** Optional. The maximum number of application instances that can be launched to handle increased traffic. Defaults to 100. Range: [1, 1000]. If VPC-SC or PSC-I is enabled, the acceptable range is [1, 100]. */
|
|
6136
6131
|
maxInstances?: number;
|
|
6137
|
-
/** Optional. The minimum number of application instances that will be kept running at all times. Defaults to 1. */
|
|
6132
|
+
/** Optional. The minimum number of application instances that will be kept running at all times. Defaults to 1. Range: [0, 10]. */
|
|
6138
6133
|
minInstances?: number;
|
|
6139
6134
|
/** Optional. Configuration for PSC-I. */
|
|
6140
6135
|
pscInterfaceConfig?: GoogleCloudAiplatformV1PscInterfaceConfig;
|
|
6141
|
-
/** Optional. Resource limits for each container. Only 'cpu' and 'memory' keys are supported. Defaults to {"cpu": "4", "memory": "4Gi"}. * The only supported values for CPU are '1', '2', '4', and '8'. For more information, go to https://cloud.google.com/run/docs/configuring/cpu. *
|
|
6136
|
+
/** Optional. Resource limits for each container. Only 'cpu' and 'memory' keys are supported. Defaults to {"cpu": "4", "memory": "4Gi"}. * The only supported values for CPU are '1', '2', '4', '6' and '8'. For more information, go to https://cloud.google.com/run/docs/configuring/cpu. * The only supported values for memory are '1Gi', '2Gi', ... '32 Gi'. * For required cpu on different memory values, go to https://cloud.google.com/run/docs/configuring/memory-limits */
|
|
6142
6137
|
resourceLimits?: {[P in string]: string};
|
|
6143
6138
|
/** Optional. Environment variables where the value is a secret in Cloud Secret Manager. To use this feature, add 'Secret Manager Secret Accessor' role (roles/secretmanager.secretAccessor) to AI Platform Reasoning Engine Service Agent. */
|
|
6144
6139
|
secretEnv?: GoogleCloudAiplatformV1SecretEnvVar[];
|
|
@@ -8748,7 +8743,7 @@ declare namespace gapi.client {
|
|
|
8748
8743
|
/** Optional. Function tool type. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum 512 function declarations can be provided. */
|
|
8749
8744
|
functionDeclarations?: GoogleCloudAiplatformV1FunctionDeclaration[];
|
|
8750
8745
|
/** Optional. GoogleMaps tool type. Tool to support Google Maps in Model. */
|
|
8751
|
-
googleMaps?:
|
|
8746
|
+
googleMaps?: any;
|
|
8752
8747
|
/** Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. */
|
|
8753
8748
|
googleSearch?: GoogleCloudAiplatformV1ToolGoogleSearch;
|
|
8754
8749
|
/** Optional. GoogleSearchRetrieval tool type. Specialized retrieval tool that is powered by Google search. */
|
|
@@ -27685,6 +27680,8 @@ declare namespace gapi.client {
|
|
|
27685
27680
|
callback?: string;
|
|
27686
27681
|
/** Selector specifying which fields to include in a partial response. */
|
|
27687
27682
|
fields?: string;
|
|
27683
|
+
/** Optional. If set to true, any errors generated by external vector database during the deletion will be ignored. The default value is false. */
|
|
27684
|
+
forceDelete?: boolean;
|
|
27688
27685
|
/** 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. */
|
|
27689
27686
|
key?: string;
|
|
27690
27687
|
/** Required. The name of the RagFile resource to be deleted. Format: `projects/{project}/locations/{location}/ragCorpora/{rag_corpus}/ragFiles/{rag_file}` */
|