@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250809 → 0.0.20250820
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 +423 -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=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250820
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -419,6 +419,8 @@ declare namespace gapi.client {
|
|
|
419
419
|
interface GoogleCloudAiplatformV1beta1AutoscalingMetricSpec {
|
|
420
420
|
/** Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.googleapis.com/prediction/online/request_count` */
|
|
421
421
|
metricName?: string;
|
|
422
|
+
/** Optional. The Cloud Monitoring monitored resource labels as key value pairs used for metrics filtering. See Cloud Monitoring Labels https://cloud.google.com/monitoring/api/v3/metric-model#generic-label-info */
|
|
423
|
+
monitoredResourceLabels?: {[P in string]: string};
|
|
422
424
|
/** The target resource utilization in percentage (1% - 100%) for the given metric; once the real usage deviates from the target by a certain percentage, the machine replicas change. The default value is 60 (representing 60%) if not provided. */
|
|
423
425
|
target?: number;
|
|
424
426
|
}
|
|
@@ -806,6 +808,14 @@ declare namespace gapi.client {
|
|
|
806
808
|
/** True if the Trial should stop. */
|
|
807
809
|
shouldStop?: boolean;
|
|
808
810
|
}
|
|
811
|
+
interface GoogleCloudAiplatformV1beta1Chunk {
|
|
812
|
+
/** Required. The data in the chunk. */
|
|
813
|
+
data?: string;
|
|
814
|
+
/** Optional. Metadata that is associated with the data in the payload. */
|
|
815
|
+
metadata?: GoogleCloudAiplatformV1beta1Metadata;
|
|
816
|
+
/** Required. Mime type of the chunk data. See https://www.iana.org/assignments/media-types/media-types.xhtml for the full list. */
|
|
817
|
+
mimeType?: string;
|
|
818
|
+
}
|
|
809
819
|
interface GoogleCloudAiplatformV1beta1Citation {
|
|
810
820
|
/** Output only. End index into the content. */
|
|
811
821
|
endIndex?: number;
|
|
@@ -2274,6 +2284,14 @@ declare namespace gapi.client {
|
|
|
2274
2284
|
/** Response content from the extension. The content should be conformant to the response.content schema in the extension's manifest/OpenAPI spec. */
|
|
2275
2285
|
content?: string;
|
|
2276
2286
|
}
|
|
2287
|
+
interface GoogleCloudAiplatformV1beta1ExecuteSandboxEnvironmentRequest {
|
|
2288
|
+
/** Required. The inputs to the sandbox environment. */
|
|
2289
|
+
inputs?: GoogleCloudAiplatformV1beta1Chunk[];
|
|
2290
|
+
}
|
|
2291
|
+
interface GoogleCloudAiplatformV1beta1ExecuteSandboxEnvironmentResponse {
|
|
2292
|
+
/** The outputs from the sandbox environment. */
|
|
2293
|
+
outputs?: GoogleCloudAiplatformV1beta1Chunk[];
|
|
2294
|
+
}
|
|
2277
2295
|
interface GoogleCloudAiplatformV1beta1Execution {
|
|
2278
2296
|
/** Output only. Timestamp when this Execution was created. */
|
|
2279
2297
|
createTime?: string;
|
|
@@ -3560,6 +3578,20 @@ declare namespace gapi.client {
|
|
|
3560
3578
|
/** Optional. Time range to define which session events should be used to generate memories. Start time (inclusive) of the time range. If not set, the start time is unbounded. */
|
|
3561
3579
|
startTime?: string;
|
|
3562
3580
|
}
|
|
3581
|
+
interface GoogleCloudAiplatformV1beta1GenerateSyntheticDataRequest {
|
|
3582
|
+
/** Required. The number of synthetic examples to generate. For this stateless API, the count is limited to a small number. */
|
|
3583
|
+
count?: number;
|
|
3584
|
+
/** Optional. A list of few-shot examples to guide the model's output style and format. */
|
|
3585
|
+
examples?: GoogleCloudAiplatformV1beta1SyntheticExample[];
|
|
3586
|
+
/** Required. The schema of the desired output, defined by a list of fields. */
|
|
3587
|
+
outputFieldSpecs?: GoogleCloudAiplatformV1beta1OutputFieldSpec[];
|
|
3588
|
+
/** Generate data from a high-level task description. */
|
|
3589
|
+
taskDescription?: GoogleCloudAiplatformV1beta1TaskDescriptionStrategy;
|
|
3590
|
+
}
|
|
3591
|
+
interface GoogleCloudAiplatformV1beta1GenerateSyntheticDataResponse {
|
|
3592
|
+
/** A list of generated synthetic examples. */
|
|
3593
|
+
syntheticExamples?: GoogleCloudAiplatformV1beta1SyntheticExample[];
|
|
3594
|
+
}
|
|
3563
3595
|
interface GoogleCloudAiplatformV1beta1GenerateVideoResponse {
|
|
3564
3596
|
/** The cloud storage uris of the generated videos. */
|
|
3565
3597
|
generatedSamples?: string[];
|
|
@@ -3670,12 +3702,7 @@ declare namespace gapi.client {
|
|
|
3670
3702
|
/** Required. The type of the Google Drive resource. */
|
|
3671
3703
|
resourceType?: string;
|
|
3672
3704
|
}
|
|
3673
|
-
interface GoogleCloudAiplatformV1beta1GoogleMaps {
|
|
3674
|
-
/** The authentication config to access the API. Deprecated. Please use auth_config instead. */
|
|
3675
|
-
apiAuth?: GoogleCloudAiplatformV1beta1ApiAuth;
|
|
3676
|
-
/** The authentication config to access the API. Only API key is supported. */
|
|
3677
|
-
authConfig?: GoogleCloudAiplatformV1beta1AuthConfig;
|
|
3678
|
-
}
|
|
3705
|
+
interface GoogleCloudAiplatformV1beta1GoogleMaps {}
|
|
3679
3706
|
interface GoogleCloudAiplatformV1beta1GoogleSearchRetrieval {
|
|
3680
3707
|
/** Specifies the dynamic retrieval configuration for the given source. */
|
|
3681
3708
|
dynamicRetrievalConfig?: GoogleCloudAiplatformV1beta1DynamicRetrievalConfig;
|
|
@@ -4500,6 +4527,12 @@ declare namespace gapi.client {
|
|
|
4500
4527
|
/** List of ReasoningEngines in the requested page. */
|
|
4501
4528
|
reasoningEngines?: GoogleCloudAiplatformV1beta1ReasoningEngine[];
|
|
4502
4529
|
}
|
|
4530
|
+
interface GoogleCloudAiplatformV1beta1ListSandboxEnvironmentsResponse {
|
|
4531
|
+
/** A token, which can be sent as ListSandboxEnvironmentsRequest.page_token to retrieve the next page. Absence of this field indicates there are no subsequent pages. */
|
|
4532
|
+
nextPageToken?: string;
|
|
4533
|
+
/** The SandboxEnvironments matching the request. */
|
|
4534
|
+
sandboxEnvironments?: GoogleCloudAiplatformV1beta1SandboxEnvironment[];
|
|
4535
|
+
}
|
|
4503
4536
|
interface GoogleCloudAiplatformV1beta1ListSavedQueriesResponse {
|
|
4504
4537
|
/** The standard List next-page token. */
|
|
4505
4538
|
nextPageToken?: string;
|
|
@@ -4646,10 +4679,56 @@ declare namespace gapi.client {
|
|
|
4646
4679
|
/** Output only. Timestamp when this Memory was most recently updated. */
|
|
4647
4680
|
updateTime?: string;
|
|
4648
4681
|
}
|
|
4682
|
+
interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfig {
|
|
4683
|
+
/** Optional. Examples of how to generate memories for a particular scope. */
|
|
4684
|
+
generateMemoriesExamples?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExample[];
|
|
4685
|
+
/** 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. */
|
|
4686
|
+
memoryTopics?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopic[];
|
|
4687
|
+
/** Optional. The scope keys (i.e. 'user_id') for which to use this config. A request's scope must include all of the provided keys for the config to be used (order does not matter). If empty, then the config will be used for all requests that do not have a more specific config. Only one default config is allowed per Memory Bank. */
|
|
4688
|
+
scopeKeys?: string[];
|
|
4689
|
+
}
|
|
4690
|
+
interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExample {
|
|
4691
|
+
/** A conversation source for the example. */
|
|
4692
|
+
conversationSource?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSource;
|
|
4693
|
+
/** Optional. The memories that are expected to be generated from the input conversation. An empty list indicates that no memories are expected to be generated for the input conversation. */
|
|
4694
|
+
generatedMemories?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExampleGeneratedMemory[];
|
|
4695
|
+
}
|
|
4696
|
+
interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSource {
|
|
4697
|
+
/** Optional. The input conversation events for the example. */
|
|
4698
|
+
events?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSourceEvent[];
|
|
4699
|
+
}
|
|
4700
|
+
interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExampleConversationSourceEvent {
|
|
4701
|
+
/** Required. The content of the event. */
|
|
4702
|
+
content?: GoogleCloudAiplatformV1beta1Content;
|
|
4703
|
+
}
|
|
4704
|
+
interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigGenerateMemoriesExampleGeneratedMemory {
|
|
4705
|
+
/** Required. The fact to generate a memory from. */
|
|
4706
|
+
fact?: string;
|
|
4707
|
+
}
|
|
4708
|
+
interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopic {
|
|
4709
|
+
/** A custom memory topic defined by the developer. */
|
|
4710
|
+
customMemoryTopic?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic;
|
|
4711
|
+
/** A managed memory topic defined by Memory Bank. */
|
|
4712
|
+
managedMemoryTopic?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic;
|
|
4713
|
+
}
|
|
4714
|
+
interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopicCustomMemoryTopic {
|
|
4715
|
+
/** Required. Description of the memory topic. This should explain what information should be extracted for this topic. */
|
|
4716
|
+
description?: string;
|
|
4717
|
+
/** Required. The label of the topic. */
|
|
4718
|
+
label?: string;
|
|
4719
|
+
}
|
|
4720
|
+
interface GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfigMemoryTopicManagedMemoryTopic {
|
|
4721
|
+
/** Required. The managed topic. */
|
|
4722
|
+
managedTopicEnum?: string;
|
|
4723
|
+
}
|
|
4649
4724
|
interface GoogleCloudAiplatformV1beta1MergeVersionAliasesRequest {
|
|
4650
4725
|
/** Required. The set of version aliases to merge. The alias should be at most 128 characters, and match `a-z{0,126}[a-z-0-9]`. Add the `-` prefix to an alias means removing that alias from the version. `-` is NOT counted in the 128 characters. Example: `-golden` means removing the `golden` alias from the version. There is NO ordering in aliases, which means 1) The aliases returned from GetModel API might not have the exactly same order from this MergeVersionAliases API. 2) Adding and deleting the same alias in the request is not recommended, and the 2 operations will be cancelled out. */
|
|
4651
4726
|
versionAliases?: string[];
|
|
4652
4727
|
}
|
|
4728
|
+
interface GoogleCloudAiplatformV1beta1Metadata {
|
|
4729
|
+
/** Optional. Attributes attached to the data. The keys have semantic conventions and the consumers of the attributes should know how to deserialize the value bytes based on the keys. */
|
|
4730
|
+
attributes?: {[P in string]: string};
|
|
4731
|
+
}
|
|
4653
4732
|
interface GoogleCloudAiplatformV1beta1MetadataSchema {
|
|
4654
4733
|
/** Output only. Timestamp when this MetadataSchema was created. */
|
|
4655
4734
|
createTime?: string;
|
|
@@ -5985,6 +6064,14 @@ declare namespace gapi.client {
|
|
|
5985
6064
|
/** Cloud storage destination for evaluation output. */
|
|
5986
6065
|
gcsDestination?: GoogleCloudAiplatformV1beta1GcsDestination;
|
|
5987
6066
|
}
|
|
6067
|
+
interface GoogleCloudAiplatformV1beta1OutputFieldSpec {
|
|
6068
|
+
/** Required. The name of the output field. */
|
|
6069
|
+
fieldName?: string;
|
|
6070
|
+
/** Optional. The data type of the field. Defaults to CONTENT if not set. */
|
|
6071
|
+
fieldType?: string;
|
|
6072
|
+
/** Optional. Optional, but recommended. Additional guidance specific to this field to provide targeted instructions for the LLM to generate the content of a single output field. While the LLM can sometimes infer content from the field name, providing explicit guidance is preferred. */
|
|
6073
|
+
guidance?: string;
|
|
6074
|
+
}
|
|
5988
6075
|
interface GoogleCloudAiplatformV1beta1PairwiseMetricInput {
|
|
5989
6076
|
/** Required. Pairwise metric instance. */
|
|
5990
6077
|
instance?: GoogleCloudAiplatformV1beta1PairwiseMetricInstance;
|
|
@@ -7415,10 +7502,14 @@ declare namespace gapi.client {
|
|
|
7415
7502
|
memoryBankConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfig;
|
|
7416
7503
|
}
|
|
7417
7504
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfig {
|
|
7505
|
+
/** Optional. Configuration for how to customize Memory Bank behavior for a particular scope. */
|
|
7506
|
+
customizationConfigs?: GoogleCloudAiplatformV1beta1MemoryBankCustomizationConfig[];
|
|
7418
7507
|
/** Optional. Configuration for how to generate memories for the Memory Bank. */
|
|
7419
7508
|
generationConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig;
|
|
7420
7509
|
/** Optional. Configuration for how to perform similarity search on memories. If not set, the Memory Bank will use the default embedding model `text-embedding-005`. */
|
|
7421
7510
|
similaritySearchConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigSimilaritySearchConfig;
|
|
7511
|
+
/** Optional. Configuration for automatic TTL ("time-to-live") of the memories in the Memory Bank. If not set, TTL will not be applied automatically. The TTL can be explicitly set by modifying the `expire_time` of each Memory resource. */
|
|
7512
|
+
ttlConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigTtlConfig;
|
|
7422
7513
|
}
|
|
7423
7514
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigGenerationConfig {
|
|
7424
7515
|
/** Required. The model used to generate memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}`. */
|
|
@@ -7428,6 +7519,20 @@ declare namespace gapi.client {
|
|
|
7428
7519
|
/** Required. The model used to generate embeddings to lookup similar memories. Format: `projects/{project}/locations/{location}/publishers/google/models/{model}`. */
|
|
7429
7520
|
embeddingModel?: string;
|
|
7430
7521
|
}
|
|
7522
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigTtlConfig {
|
|
7523
|
+
/** Optional. The default TTL duration of the memories in the Memory Bank. This applies to all operations that create or update a memory. */
|
|
7524
|
+
defaultTtl?: string;
|
|
7525
|
+
/** Optional. The granular TTL configuration of the memories in the Memory Bank. */
|
|
7526
|
+
granularTtlConfig?: GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig;
|
|
7527
|
+
}
|
|
7528
|
+
interface GoogleCloudAiplatformV1beta1ReasoningEngineContextSpecMemoryBankConfigTtlConfigGranularTtlConfig {
|
|
7529
|
+
/** Optional. The TTL duration for memories uploaded via CreateMemory. */
|
|
7530
|
+
createTtl?: string;
|
|
7531
|
+
/** Optional. The TTL duration for memories newly generated via GenerateMemories (GenerateMemoriesResponse.GeneratedMemory.Action.CREATED). */
|
|
7532
|
+
generateCreatedTtl?: string;
|
|
7533
|
+
/** Optional. The TTL duration for memories updated via GenerateMemories (GenerateMemoriesResponse.GeneratedMemory.Action.CREATED). In the case of an UPDATE action, the `expire_time` of the existing memory will be updated to the new value (now + TTL). */
|
|
7534
|
+
generateUpdatedTtl?: string;
|
|
7535
|
+
}
|
|
7431
7536
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineSpec {
|
|
7432
7537
|
/** Optional. The OSS agent framework used to develop the agent. Currently supported values: "google-adk", "langchain", "langgraph", "ag2", "llama-index", "custom". */
|
|
7433
7538
|
agentFramework?: string;
|
|
@@ -7445,13 +7550,13 @@ declare namespace gapi.client {
|
|
|
7445
7550
|
containerConcurrency?: number;
|
|
7446
7551
|
/** Optional. Environment variables to be set with the Reasoning Engine deployment. The environment variables can be updated through the UpdateReasoningEngine API. */
|
|
7447
7552
|
env?: GoogleCloudAiplatformV1beta1EnvVar[];
|
|
7448
|
-
/** Optional. The maximum number of application instances that can be launched to handle increased traffic. Defaults to 100. */
|
|
7553
|
+
/** 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]. */
|
|
7449
7554
|
maxInstances?: number;
|
|
7450
|
-
/** Optional. The minimum number of application instances that will be kept running at all times. Defaults to 1. */
|
|
7555
|
+
/** Optional. The minimum number of application instances that will be kept running at all times. Defaults to 1. Range: [0, 10]. */
|
|
7451
7556
|
minInstances?: number;
|
|
7452
7557
|
/** Optional. Configuration for PSC-I. */
|
|
7453
7558
|
pscInterfaceConfig?: GoogleCloudAiplatformV1beta1PscInterfaceConfig;
|
|
7454
|
-
/** 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. *
|
|
7559
|
+
/** 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 */
|
|
7455
7560
|
resourceLimits?: {[P in string]: string};
|
|
7456
7561
|
/** 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. */
|
|
7457
7562
|
secretEnv?: GoogleCloudAiplatformV1beta1SecretEnvVar[];
|
|
@@ -7852,6 +7957,36 @@ declare namespace gapi.client {
|
|
|
7852
7957
|
/** Sample rate (0, 1] */
|
|
7853
7958
|
sampleRate?: number;
|
|
7854
7959
|
}
|
|
7960
|
+
interface GoogleCloudAiplatformV1beta1SandboxEnvironment {
|
|
7961
|
+
/** Output only. The timestamp when this SandboxEnvironment was created. */
|
|
7962
|
+
createTime?: string;
|
|
7963
|
+
/** Required. The display name of the SandboxEnvironment. */
|
|
7964
|
+
displayName?: string;
|
|
7965
|
+
/** Output only. Additional information about the SandboxEnvironment. */
|
|
7966
|
+
metadata?: any;
|
|
7967
|
+
/** Identifier. The name of the SandboxEnvironment. */
|
|
7968
|
+
name?: string;
|
|
7969
|
+
/** Optional. The configuration of the SandboxEnvironment. */
|
|
7970
|
+
spec?: GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec;
|
|
7971
|
+
/** Output only. The runtime state of the SandboxEnvironment. */
|
|
7972
|
+
state?: string;
|
|
7973
|
+
/** Output only. The timestamp when this SandboxEnvironment was most recently updated. */
|
|
7974
|
+
updateTime?: string;
|
|
7975
|
+
}
|
|
7976
|
+
interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec {
|
|
7977
|
+
/** Optional. The code execution environment. */
|
|
7978
|
+
codeExecutionEnvironment?: GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment;
|
|
7979
|
+
}
|
|
7980
|
+
interface GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment {
|
|
7981
|
+
/** The coding language supported in this environment. */
|
|
7982
|
+
codeLanguage?: string;
|
|
7983
|
+
/** Optional. The additional dependencies to install in the code execution environment. For example, "pandas==2.2.3". */
|
|
7984
|
+
dependencies?: string[];
|
|
7985
|
+
/** Optional. The environment variables to set in the code execution environment. */
|
|
7986
|
+
env?: GoogleCloudAiplatformV1beta1EnvVar[];
|
|
7987
|
+
/** The machine config of the code execution environment. */
|
|
7988
|
+
machineConfig?: string;
|
|
7989
|
+
}
|
|
7855
7990
|
interface GoogleCloudAiplatformV1beta1SavedQuery {
|
|
7856
7991
|
/** Output only. Filters on the Annotations in the dataset. */
|
|
7857
7992
|
annotationFilter?: string;
|
|
@@ -10210,6 +10345,20 @@ declare namespace gapi.client {
|
|
|
10210
10345
|
/** Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}/featureViewSyncs/{feature_view_sync}` */
|
|
10211
10346
|
featureViewSync?: string;
|
|
10212
10347
|
}
|
|
10348
|
+
interface GoogleCloudAiplatformV1beta1SyntheticExample {
|
|
10349
|
+
/** Required. A list of fields that constitute an example. */
|
|
10350
|
+
fields?: GoogleCloudAiplatformV1beta1SyntheticField[];
|
|
10351
|
+
}
|
|
10352
|
+
interface GoogleCloudAiplatformV1beta1SyntheticField {
|
|
10353
|
+
/** Required. The content of the field. */
|
|
10354
|
+
content?: GoogleCloudAiplatformV1beta1Content;
|
|
10355
|
+
/** Optional. The name of the field. */
|
|
10356
|
+
fieldName?: string;
|
|
10357
|
+
}
|
|
10358
|
+
interface GoogleCloudAiplatformV1beta1TaskDescriptionStrategy {
|
|
10359
|
+
/** Required. A high-level description of the synthetic data to be generated. */
|
|
10360
|
+
taskDescription?: string;
|
|
10361
|
+
}
|
|
10213
10362
|
interface GoogleCloudAiplatformV1beta1Tensor {
|
|
10214
10363
|
/** Type specific representations that make it easy to create tensor protos in all languages. Only the representation corresponding to "dtype" can be set. The values hold the flattened representation of the tensor in row major order. BOOL */
|
|
10215
10364
|
boolVal?: boolean[];
|
|
@@ -10402,7 +10551,7 @@ declare namespace gapi.client {
|
|
|
10402
10551
|
/** 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. */
|
|
10403
10552
|
functionDeclarations?: GoogleCloudAiplatformV1beta1FunctionDeclaration[];
|
|
10404
10553
|
/** Optional. GoogleMaps tool type. Tool to support Google Maps in Model. */
|
|
10405
|
-
googleMaps?:
|
|
10554
|
+
googleMaps?: any;
|
|
10406
10555
|
/** Optional. GoogleSearch tool type. Tool to support Google Search in Model. Powered by Google. */
|
|
10407
10556
|
googleSearch?: GoogleCloudAiplatformV1beta1ToolGoogleSearch;
|
|
10408
10557
|
/** Optional. GoogleSearchRetrieval tool type. Specialized retrieval tool that is powered by Google search. */
|
|
@@ -33399,6 +33548,8 @@ declare namespace gapi.client {
|
|
|
33399
33548
|
callback?: string;
|
|
33400
33549
|
/** Selector specifying which fields to include in a partial response. */
|
|
33401
33550
|
fields?: string;
|
|
33551
|
+
/** Optional. If set to true, any errors generated by external vector database during the deletion will be ignored. The default value is false. */
|
|
33552
|
+
forceDelete?: boolean;
|
|
33402
33553
|
/** 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. */
|
|
33403
33554
|
key?: string;
|
|
33404
33555
|
/** Required. The name of the RagFile resource to be deleted. Format: `projects/{project}/locations/{location}/ragCorpora/{rag_corpus}/ragFiles/{rag_file}` */
|
|
@@ -34764,6 +34915,209 @@ declare namespace gapi.client {
|
|
|
34764
34915
|
}): Request<GoogleLongrunningOperation>;
|
|
34765
34916
|
}
|
|
34766
34917
|
interface SandboxEnvironmentsResource {
|
|
34918
|
+
/** Creates a SandboxEnvironment in a given reasoning engine. */
|
|
34919
|
+
create(request: {
|
|
34920
|
+
/** V1 error format. */
|
|
34921
|
+
'$.xgafv'?: string;
|
|
34922
|
+
/** OAuth access token. */
|
|
34923
|
+
access_token?: string;
|
|
34924
|
+
/** Data format for response. */
|
|
34925
|
+
alt?: string;
|
|
34926
|
+
/** JSONP */
|
|
34927
|
+
callback?: string;
|
|
34928
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34929
|
+
fields?: string;
|
|
34930
|
+
/** 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. */
|
|
34931
|
+
key?: string;
|
|
34932
|
+
/** OAuth 2.0 token for the current user. */
|
|
34933
|
+
oauth_token?: string;
|
|
34934
|
+
/** Required. The resource name of the reasoning engine to create the SandboxEnvironment in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`. */
|
|
34935
|
+
parent: string;
|
|
34936
|
+
/** Returns response with indentations and line breaks. */
|
|
34937
|
+
prettyPrint?: boolean;
|
|
34938
|
+
/** 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. */
|
|
34939
|
+
quotaUser?: string;
|
|
34940
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34941
|
+
upload_protocol?: string;
|
|
34942
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34943
|
+
uploadType?: string;
|
|
34944
|
+
/** Request body */
|
|
34945
|
+
resource: GoogleCloudAiplatformV1beta1SandboxEnvironment;
|
|
34946
|
+
}): Request<GoogleLongrunningOperation>;
|
|
34947
|
+
create(
|
|
34948
|
+
request: {
|
|
34949
|
+
/** V1 error format. */
|
|
34950
|
+
'$.xgafv'?: string;
|
|
34951
|
+
/** OAuth access token. */
|
|
34952
|
+
access_token?: string;
|
|
34953
|
+
/** Data format for response. */
|
|
34954
|
+
alt?: string;
|
|
34955
|
+
/** JSONP */
|
|
34956
|
+
callback?: string;
|
|
34957
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34958
|
+
fields?: string;
|
|
34959
|
+
/** 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. */
|
|
34960
|
+
key?: string;
|
|
34961
|
+
/** OAuth 2.0 token for the current user. */
|
|
34962
|
+
oauth_token?: string;
|
|
34963
|
+
/** Required. The resource name of the reasoning engine to create the SandboxEnvironment in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`. */
|
|
34964
|
+
parent: string;
|
|
34965
|
+
/** Returns response with indentations and line breaks. */
|
|
34966
|
+
prettyPrint?: boolean;
|
|
34967
|
+
/** 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. */
|
|
34968
|
+
quotaUser?: string;
|
|
34969
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34970
|
+
upload_protocol?: string;
|
|
34971
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
34972
|
+
uploadType?: string;
|
|
34973
|
+
},
|
|
34974
|
+
body: GoogleCloudAiplatformV1beta1SandboxEnvironment,
|
|
34975
|
+
): Request<GoogleLongrunningOperation>;
|
|
34976
|
+
/** Deletes the specific SandboxEnvironment. */
|
|
34977
|
+
delete(request?: {
|
|
34978
|
+
/** V1 error format. */
|
|
34979
|
+
'$.xgafv'?: string;
|
|
34980
|
+
/** OAuth access token. */
|
|
34981
|
+
access_token?: string;
|
|
34982
|
+
/** Data format for response. */
|
|
34983
|
+
alt?: string;
|
|
34984
|
+
/** JSONP */
|
|
34985
|
+
callback?: string;
|
|
34986
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
34987
|
+
fields?: string;
|
|
34988
|
+
/** 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. */
|
|
34989
|
+
key?: string;
|
|
34990
|
+
/** Required. The resource name of the SandboxEnvironment to delete. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
34991
|
+
name: string;
|
|
34992
|
+
/** OAuth 2.0 token for the current user. */
|
|
34993
|
+
oauth_token?: string;
|
|
34994
|
+
/** Returns response with indentations and line breaks. */
|
|
34995
|
+
prettyPrint?: boolean;
|
|
34996
|
+
/** 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. */
|
|
34997
|
+
quotaUser?: string;
|
|
34998
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
34999
|
+
upload_protocol?: string;
|
|
35000
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
35001
|
+
uploadType?: string;
|
|
35002
|
+
}): Request<GoogleLongrunningOperation>;
|
|
35003
|
+
/** Executes using a sandbox environment. */
|
|
35004
|
+
execute(request: {
|
|
35005
|
+
/** V1 error format. */
|
|
35006
|
+
'$.xgafv'?: string;
|
|
35007
|
+
/** OAuth access token. */
|
|
35008
|
+
access_token?: string;
|
|
35009
|
+
/** Data format for response. */
|
|
35010
|
+
alt?: string;
|
|
35011
|
+
/** JSONP */
|
|
35012
|
+
callback?: string;
|
|
35013
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
35014
|
+
fields?: string;
|
|
35015
|
+
/** 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. */
|
|
35016
|
+
key?: string;
|
|
35017
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
35018
|
+
name: string;
|
|
35019
|
+
/** OAuth 2.0 token for the current user. */
|
|
35020
|
+
oauth_token?: string;
|
|
35021
|
+
/** Returns response with indentations and line breaks. */
|
|
35022
|
+
prettyPrint?: boolean;
|
|
35023
|
+
/** 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. */
|
|
35024
|
+
quotaUser?: string;
|
|
35025
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
35026
|
+
upload_protocol?: string;
|
|
35027
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
35028
|
+
uploadType?: string;
|
|
35029
|
+
/** Request body */
|
|
35030
|
+
resource: GoogleCloudAiplatformV1beta1ExecuteSandboxEnvironmentRequest;
|
|
35031
|
+
}): Request<GoogleCloudAiplatformV1beta1ExecuteSandboxEnvironmentResponse>;
|
|
35032
|
+
execute(
|
|
35033
|
+
request: {
|
|
35034
|
+
/** V1 error format. */
|
|
35035
|
+
'$.xgafv'?: string;
|
|
35036
|
+
/** OAuth access token. */
|
|
35037
|
+
access_token?: string;
|
|
35038
|
+
/** Data format for response. */
|
|
35039
|
+
alt?: string;
|
|
35040
|
+
/** JSONP */
|
|
35041
|
+
callback?: string;
|
|
35042
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
35043
|
+
fields?: string;
|
|
35044
|
+
/** 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. */
|
|
35045
|
+
key?: string;
|
|
35046
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
35047
|
+
name: string;
|
|
35048
|
+
/** OAuth 2.0 token for the current user. */
|
|
35049
|
+
oauth_token?: string;
|
|
35050
|
+
/** Returns response with indentations and line breaks. */
|
|
35051
|
+
prettyPrint?: boolean;
|
|
35052
|
+
/** 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. */
|
|
35053
|
+
quotaUser?: string;
|
|
35054
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
35055
|
+
upload_protocol?: string;
|
|
35056
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
35057
|
+
uploadType?: string;
|
|
35058
|
+
},
|
|
35059
|
+
body: GoogleCloudAiplatformV1beta1ExecuteSandboxEnvironmentRequest,
|
|
35060
|
+
): Request<GoogleCloudAiplatformV1beta1ExecuteSandboxEnvironmentResponse>;
|
|
35061
|
+
/** Gets details of the specific SandboxEnvironment. */
|
|
35062
|
+
get(request?: {
|
|
35063
|
+
/** V1 error format. */
|
|
35064
|
+
'$.xgafv'?: string;
|
|
35065
|
+
/** OAuth access token. */
|
|
35066
|
+
access_token?: string;
|
|
35067
|
+
/** Data format for response. */
|
|
35068
|
+
alt?: string;
|
|
35069
|
+
/** JSONP */
|
|
35070
|
+
callback?: string;
|
|
35071
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
35072
|
+
fields?: string;
|
|
35073
|
+
/** 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. */
|
|
35074
|
+
key?: string;
|
|
35075
|
+
/** Required. The resource name of the sandbox environment. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
35076
|
+
name: string;
|
|
35077
|
+
/** OAuth 2.0 token for the current user. */
|
|
35078
|
+
oauth_token?: string;
|
|
35079
|
+
/** Returns response with indentations and line breaks. */
|
|
35080
|
+
prettyPrint?: boolean;
|
|
35081
|
+
/** 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. */
|
|
35082
|
+
quotaUser?: string;
|
|
35083
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
35084
|
+
upload_protocol?: string;
|
|
35085
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
35086
|
+
uploadType?: string;
|
|
35087
|
+
}): Request<GoogleCloudAiplatformV1beta1SandboxEnvironment>;
|
|
35088
|
+
/** Lists SandboxEnvironments in a given reasoning engine. */
|
|
35089
|
+
list(request?: {
|
|
35090
|
+
/** V1 error format. */
|
|
35091
|
+
'$.xgafv'?: string;
|
|
35092
|
+
/** OAuth access token. */
|
|
35093
|
+
access_token?: string;
|
|
35094
|
+
/** Data format for response. */
|
|
35095
|
+
alt?: string;
|
|
35096
|
+
/** JSONP */
|
|
35097
|
+
callback?: string;
|
|
35098
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
35099
|
+
fields?: string;
|
|
35100
|
+
/** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). */
|
|
35101
|
+
filter?: string;
|
|
35102
|
+
/** 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. */
|
|
35103
|
+
key?: string;
|
|
35104
|
+
/** OAuth 2.0 token for the current user. */
|
|
35105
|
+
oauth_token?: string;
|
|
35106
|
+
/** Optional. The maximum number of SandboxEnvironments to return. The service may return fewer than this value. If unspecified, at most 100 SandboxEnvironments will be returned. */
|
|
35107
|
+
pageSize?: number;
|
|
35108
|
+
/** Optional. The standard list page token, received from a previous `ListSandboxEnvironments` call. Provide this to retrieve the subsequent page. */
|
|
35109
|
+
pageToken?: string;
|
|
35110
|
+
/** Required. The resource name of the reasoning engine to list sandbox environments from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
35111
|
+
parent: string;
|
|
35112
|
+
/** Returns response with indentations and line breaks. */
|
|
35113
|
+
prettyPrint?: boolean;
|
|
35114
|
+
/** 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. */
|
|
35115
|
+
quotaUser?: string;
|
|
35116
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
35117
|
+
upload_protocol?: string;
|
|
35118
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
35119
|
+
uploadType?: string;
|
|
35120
|
+
}): Request<GoogleCloudAiplatformV1beta1ListSandboxEnvironmentsResponse>;
|
|
34767
35121
|
operations: OperationsResource;
|
|
34768
35122
|
}
|
|
34769
35123
|
interface EventsResource {
|
|
@@ -40370,6 +40724,64 @@ declare namespace gapi.client {
|
|
|
40370
40724
|
},
|
|
40371
40725
|
body: GoogleCloudAiplatformV1beta1EvaluateInstancesRequest,
|
|
40372
40726
|
): Request<GoogleCloudAiplatformV1beta1EvaluateInstancesResponse>;
|
|
40727
|
+
/** Generates synthetic data based on the provided configuration. */
|
|
40728
|
+
generateSyntheticData(request: {
|
|
40729
|
+
/** V1 error format. */
|
|
40730
|
+
'$.xgafv'?: string;
|
|
40731
|
+
/** OAuth access token. */
|
|
40732
|
+
access_token?: string;
|
|
40733
|
+
/** Data format for response. */
|
|
40734
|
+
alt?: string;
|
|
40735
|
+
/** JSONP */
|
|
40736
|
+
callback?: string;
|
|
40737
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40738
|
+
fields?: string;
|
|
40739
|
+
/** 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. */
|
|
40740
|
+
key?: string;
|
|
40741
|
+
/** Required. The resource name of the Location to run the job. Format: `projects/{project}/locations/{location}` */
|
|
40742
|
+
location: string;
|
|
40743
|
+
/** OAuth 2.0 token for the current user. */
|
|
40744
|
+
oauth_token?: string;
|
|
40745
|
+
/** Returns response with indentations and line breaks. */
|
|
40746
|
+
prettyPrint?: boolean;
|
|
40747
|
+
/** 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. */
|
|
40748
|
+
quotaUser?: string;
|
|
40749
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40750
|
+
upload_protocol?: string;
|
|
40751
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40752
|
+
uploadType?: string;
|
|
40753
|
+
/** Request body */
|
|
40754
|
+
resource: GoogleCloudAiplatformV1beta1GenerateSyntheticDataRequest;
|
|
40755
|
+
}): Request<GoogleCloudAiplatformV1beta1GenerateSyntheticDataResponse>;
|
|
40756
|
+
generateSyntheticData(
|
|
40757
|
+
request: {
|
|
40758
|
+
/** V1 error format. */
|
|
40759
|
+
'$.xgafv'?: string;
|
|
40760
|
+
/** OAuth access token. */
|
|
40761
|
+
access_token?: string;
|
|
40762
|
+
/** Data format for response. */
|
|
40763
|
+
alt?: string;
|
|
40764
|
+
/** JSONP */
|
|
40765
|
+
callback?: string;
|
|
40766
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
40767
|
+
fields?: string;
|
|
40768
|
+
/** 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. */
|
|
40769
|
+
key?: string;
|
|
40770
|
+
/** Required. The resource name of the Location to run the job. Format: `projects/{project}/locations/{location}` */
|
|
40771
|
+
location: string;
|
|
40772
|
+
/** OAuth 2.0 token for the current user. */
|
|
40773
|
+
oauth_token?: string;
|
|
40774
|
+
/** Returns response with indentations and line breaks. */
|
|
40775
|
+
prettyPrint?: boolean;
|
|
40776
|
+
/** 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. */
|
|
40777
|
+
quotaUser?: string;
|
|
40778
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
40779
|
+
upload_protocol?: string;
|
|
40780
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
40781
|
+
uploadType?: string;
|
|
40782
|
+
},
|
|
40783
|
+
body: GoogleCloudAiplatformV1beta1GenerateSyntheticDataRequest,
|
|
40784
|
+
): Request<GoogleCloudAiplatformV1beta1GenerateSyntheticDataResponse>;
|
|
40373
40785
|
/** Gets information about a location. */
|
|
40374
40786
|
get(request?: {
|
|
40375
40787
|
/** V1 error format. */
|