@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250307 → 0.0.20250319
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 +11 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250319
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3056,6 +3056,8 @@ declare namespace gapi.client {
|
|
|
3056
3056
|
interface GoogleCloudAiplatformV1beta1FunctionCall {
|
|
3057
3057
|
/** Optional. Required. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details. */
|
|
3058
3058
|
args?: {[P in string]: any};
|
|
3059
|
+
/** Optional. The unique id of the function call. If populated, the client to execute the `function_call` and return the response with the matching `id`. */
|
|
3060
|
+
id?: string;
|
|
3059
3061
|
/** Required. The name of the function to call. Matches [FunctionDeclaration.name]. */
|
|
3060
3062
|
name?: string;
|
|
3061
3063
|
}
|
|
@@ -3076,6 +3078,8 @@ declare namespace gapi.client {
|
|
|
3076
3078
|
response?: GoogleCloudAiplatformV1beta1Schema;
|
|
3077
3079
|
}
|
|
3078
3080
|
interface GoogleCloudAiplatformV1beta1FunctionResponse {
|
|
3081
|
+
/** Optional. The id of the function call this response is for. Populated by the client to match the corresponding function call `id`. */
|
|
3082
|
+
id?: string;
|
|
3079
3083
|
/** Required. The name of the function to call. Matches [FunctionDeclaration.name] and [FunctionCall.name]. */
|
|
3080
3084
|
name?: string;
|
|
3081
3085
|
/** Required. The function response in JSON object format. Use "output" key to specify function output and "error" key to specify error details (if any). If "output" and "error" keys are not specified, then whole "response" is treated as function output. */
|
|
@@ -3334,6 +3338,8 @@ declare namespace gapi.client {
|
|
|
3334
3338
|
uri?: string;
|
|
3335
3339
|
}
|
|
3336
3340
|
interface GoogleCloudAiplatformV1beta1GroundingChunkWeb {
|
|
3341
|
+
/** Domain of the (original) URI. */
|
|
3342
|
+
domain?: string;
|
|
3337
3343
|
/** Title of the chunk. */
|
|
3338
3344
|
title?: string;
|
|
3339
3345
|
/** URI reference of the chunk. */
|
|
@@ -6657,7 +6663,7 @@ declare namespace gapi.client {
|
|
|
6657
6663
|
etag?: string;
|
|
6658
6664
|
/** Identifier. The resource name of the ReasoningEngine. */
|
|
6659
6665
|
name?: string;
|
|
6660
|
-
/**
|
|
6666
|
+
/** Optional. Configurations of the ReasoningEngine */
|
|
6661
6667
|
spec?: GoogleCloudAiplatformV1beta1ReasoningEngineSpec;
|
|
6662
6668
|
/** Output only. Timestamp when this ReasoningEngine was most recently updated. */
|
|
6663
6669
|
updateTime?: string;
|
|
@@ -6669,7 +6675,7 @@ declare namespace gapi.client {
|
|
|
6669
6675
|
classMethods?: Array<{[P in string]: any}>;
|
|
6670
6676
|
/** Optional. The specification of a Reasoning Engine deployment. */
|
|
6671
6677
|
deploymentSpec?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec;
|
|
6672
|
-
/**
|
|
6678
|
+
/** 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. */
|
|
6673
6679
|
packageSpec?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec;
|
|
6674
6680
|
}
|
|
6675
6681
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineSpecDeploymentSpec {
|
|
@@ -8674,7 +8680,7 @@ declare namespace gapi.client {
|
|
|
8674
8680
|
secretRef?: GoogleCloudAiplatformV1beta1SecretRef;
|
|
8675
8681
|
}
|
|
8676
8682
|
interface GoogleCloudAiplatformV1beta1SecretRef {
|
|
8677
|
-
/** Required. The name of the secret in Cloud Secret Manager. Format: {secret_name}
|
|
8683
|
+
/** Required. The name of the secret in Cloud Secret Manager. Format: {secret_name}. */
|
|
8678
8684
|
secret?: string;
|
|
8679
8685
|
/** The Cloud Secret Manager secret version. Can be 'latest' for the latest version, an integer for a specific version, or a version alias. */
|
|
8680
8686
|
version?: string;
|
|
@@ -12746,7 +12752,7 @@ declare namespace gapi.client {
|
|
|
12746
12752
|
}): Request<GoogleLongrunningOperation>;
|
|
12747
12753
|
}
|
|
12748
12754
|
interface AnnotationsResource {
|
|
12749
|
-
/** Lists Annotations belongs to a dataitem
|
|
12755
|
+
/** Lists Annotations belongs to a dataitem. */
|
|
12750
12756
|
list(request?: {
|
|
12751
12757
|
/** V1 error format. */
|
|
12752
12758
|
'$.xgafv'?: string;
|