@maxim_mazurok/gapi.client.aiplatform-v1 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.
- package/index.d.ts +1174 -70
- package/package.json +1 -1
- package/readme.md +20 -0
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: 20251219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -777,6 +777,14 @@ declare namespace gapi.client {
|
|
|
777
777
|
/** True if the Trial should stop. */
|
|
778
778
|
shouldStop?: boolean;
|
|
779
779
|
}
|
|
780
|
+
interface GoogleCloudAiplatformV1Chunk {
|
|
781
|
+
/** Required. The data in the chunk. */
|
|
782
|
+
data?: string;
|
|
783
|
+
/** Optional. Metadata that is associated with the data in the payload. */
|
|
784
|
+
metadata?: GoogleCloudAiplatformV1Metadata;
|
|
785
|
+
/** Required. Mime type of the chunk data. See https://www.iana.org/assignments/media-types/media-types.xhtml for the full list. */
|
|
786
|
+
mimeType?: string;
|
|
787
|
+
}
|
|
780
788
|
interface GoogleCloudAiplatformV1Citation {
|
|
781
789
|
/** Output only. The end index of the citation in the content. */
|
|
782
790
|
endIndex?: number;
|
|
@@ -1741,7 +1749,7 @@ declare namespace gapi.client {
|
|
|
1741
1749
|
values?: number[];
|
|
1742
1750
|
}
|
|
1743
1751
|
interface GoogleCloudAiplatformV1EncryptionSpec {
|
|
1744
|
-
/** Required.
|
|
1752
|
+
/** 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}`. */
|
|
1745
1753
|
kmsKeyName?: string;
|
|
1746
1754
|
}
|
|
1747
1755
|
interface GoogleCloudAiplatformV1Endpoint {
|
|
@@ -1873,6 +1881,8 @@ declare namespace gapi.client {
|
|
|
1873
1881
|
autoraterConfig?: GoogleCloudAiplatformV1AutoraterConfig;
|
|
1874
1882
|
/** Required. The dataset used for evaluation. */
|
|
1875
1883
|
dataset?: GoogleCloudAiplatformV1EvaluationDataset;
|
|
1884
|
+
/** Required. The resource name of the Location to evaluate the dataset. Format: `projects/{project}/locations/{location}` */
|
|
1885
|
+
location?: string;
|
|
1876
1886
|
/** Required. The metrics used for evaluation. */
|
|
1877
1887
|
metrics?: GoogleCloudAiplatformV1Metric[];
|
|
1878
1888
|
/** Required. Config for evaluation output. */
|
|
@@ -1897,6 +1907,8 @@ declare namespace gapi.client {
|
|
|
1897
1907
|
groundednessInput?: GoogleCloudAiplatformV1GroundednessInput;
|
|
1898
1908
|
/** The instance to be evaluated. */
|
|
1899
1909
|
instance?: GoogleCloudAiplatformV1EvaluationInstance;
|
|
1910
|
+
/** Required. The resource name of the Location to evaluate the instances. Format: `projects/{project}/locations/{location}` */
|
|
1911
|
+
location?: string;
|
|
1900
1912
|
/** 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. */
|
|
1901
1913
|
metrics?: GoogleCloudAiplatformV1Metric[];
|
|
1902
1914
|
/** Input for Metricx metric. */
|
|
@@ -2411,6 +2423,22 @@ declare namespace gapi.client {
|
|
|
2411
2423
|
/** Required. Programming language of the `code`. */
|
|
2412
2424
|
language?: string;
|
|
2413
2425
|
}
|
|
2426
|
+
interface GoogleCloudAiplatformV1ExecuteCodeRequest {
|
|
2427
|
+
/** Required. The inputs used for the stateless code execution. */
|
|
2428
|
+
inputs?: GoogleCloudAiplatformV1Chunk[];
|
|
2429
|
+
}
|
|
2430
|
+
interface GoogleCloudAiplatformV1ExecuteCodeResponse {
|
|
2431
|
+
/** The outputs from the sandbox environment. */
|
|
2432
|
+
outputs?: GoogleCloudAiplatformV1Chunk[];
|
|
2433
|
+
}
|
|
2434
|
+
interface GoogleCloudAiplatformV1ExecuteSandboxEnvironmentRequest {
|
|
2435
|
+
/** Required. The inputs to the sandbox environment. */
|
|
2436
|
+
inputs?: GoogleCloudAiplatformV1Chunk[];
|
|
2437
|
+
}
|
|
2438
|
+
interface GoogleCloudAiplatformV1ExecuteSandboxEnvironmentResponse {
|
|
2439
|
+
/** The outputs from the sandbox environment. */
|
|
2440
|
+
outputs?: GoogleCloudAiplatformV1Chunk[];
|
|
2441
|
+
}
|
|
2414
2442
|
interface GoogleCloudAiplatformV1Execution {
|
|
2415
2443
|
/** Output only. Timestamp when this Execution was created. */
|
|
2416
2444
|
createTime?: string;
|
|
@@ -3468,6 +3496,8 @@ declare namespace gapi.client {
|
|
|
3468
3496
|
agentConfig?: GoogleCloudAiplatformV1EvaluationInstanceAgentConfig;
|
|
3469
3497
|
/** 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. */
|
|
3470
3498
|
contents?: GoogleCloudAiplatformV1Content[];
|
|
3499
|
+
/** Required. The resource name of the Location to generate rubrics from. Format: `projects/{project}/locations/{location}` */
|
|
3500
|
+
location?: string;
|
|
3471
3501
|
/** 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. */
|
|
3472
3502
|
predefinedRubricGenerationSpec?: GoogleCloudAiplatformV1PredefinedMetricSpec;
|
|
3473
3503
|
/** Optional. Specification for how the rubrics should be generated. */
|
|
@@ -3486,6 +3516,10 @@ declare namespace gapi.client {
|
|
|
3486
3516
|
disableConsolidation?: boolean;
|
|
3487
3517
|
/** Optional. If true, no revisions will be created for this request. */
|
|
3488
3518
|
disableMemoryRevisions?: boolean;
|
|
3519
|
+
/** Optional. User-provided metadata for the generated memories. This is not generated by Memory Bank. */
|
|
3520
|
+
metadata?: {[P in string]: GoogleCloudAiplatformV1MemoryMetadataValue};
|
|
3521
|
+
/** Optional. The strategy to use when applying metadata to existing memories. */
|
|
3522
|
+
metadataMergeStrategy?: string;
|
|
3489
3523
|
/** Optional. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
|
|
3490
3524
|
revisionExpireTime?: string;
|
|
3491
3525
|
/** Optional. Labels to be applied to the generated memory revisions. For example, you can use this to label a revision with its data source. */
|
|
@@ -4413,6 +4447,12 @@ declare namespace gapi.client {
|
|
|
4413
4447
|
/** List of ReasoningEngines in the requested page. */
|
|
4414
4448
|
reasoningEngines?: GoogleCloudAiplatformV1ReasoningEngine[];
|
|
4415
4449
|
}
|
|
4450
|
+
interface GoogleCloudAiplatformV1ListSandboxEnvironmentsResponse {
|
|
4451
|
+
/** 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. */
|
|
4452
|
+
nextPageToken?: string;
|
|
4453
|
+
/** The SandboxEnvironments matching the request. */
|
|
4454
|
+
sandboxEnvironments?: GoogleCloudAiplatformV1SandboxEnvironment[];
|
|
4455
|
+
}
|
|
4416
4456
|
interface GoogleCloudAiplatformV1ListSavedQueriesResponse {
|
|
4417
4457
|
/** The standard List next-page token. */
|
|
4418
4458
|
nextPageToken?: string;
|
|
@@ -4578,6 +4618,8 @@ declare namespace gapi.client {
|
|
|
4578
4618
|
expireTime?: string;
|
|
4579
4619
|
/** Required. Semantic knowledge extracted from the source content. */
|
|
4580
4620
|
fact?: string;
|
|
4621
|
+
/** 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. */
|
|
4622
|
+
metadata?: {[P in string]: GoogleCloudAiplatformV1MemoryMetadataValue};
|
|
4581
4623
|
/** Identifier. The resource name of the Memory. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/memories/{memory}` */
|
|
4582
4624
|
name?: string;
|
|
4583
4625
|
/** Optional. Input only. Timestamp of when the revision is considered expired. If not set, the memory revision will be kept until manually deleted. */
|
|
@@ -4596,6 +4638,8 @@ declare namespace gapi.client {
|
|
|
4596
4638
|
updateTime?: string;
|
|
4597
4639
|
}
|
|
4598
4640
|
interface GoogleCloudAiplatformV1MemoryBankCustomizationConfig {
|
|
4641
|
+
/** 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.") */
|
|
4642
|
+
enableThirdPersonMemories?: boolean;
|
|
4599
4643
|
/** Optional. Examples of how to generate memories for a particular scope. */
|
|
4600
4644
|
generateMemoriesExamples?: GoogleCloudAiplatformV1MemoryBankCustomizationConfigGenerateMemoriesExample[];
|
|
4601
4645
|
/** 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. */
|
|
@@ -4639,6 +4683,30 @@ declare namespace gapi.client {
|
|
|
4639
4683
|
/** Required. The managed topic. */
|
|
4640
4684
|
managedTopicEnum?: string;
|
|
4641
4685
|
}
|
|
4686
|
+
interface GoogleCloudAiplatformV1MemoryConjunctionFilter {
|
|
4687
|
+
/** Filters that will combined using AND logic. */
|
|
4688
|
+
filters?: GoogleCloudAiplatformV1MemoryFilter[];
|
|
4689
|
+
}
|
|
4690
|
+
interface GoogleCloudAiplatformV1MemoryFilter {
|
|
4691
|
+
/** Key of the filter. For example, "author" would apply to `metadata` entries with the key "author". */
|
|
4692
|
+
key?: string;
|
|
4693
|
+
/** If true, the filter will be negated. */
|
|
4694
|
+
negate?: boolean;
|
|
4695
|
+
/** Operator to apply to the filter. If not set, then EQUAL will be used. */
|
|
4696
|
+
op?: string;
|
|
4697
|
+
/** Value to compare to. */
|
|
4698
|
+
value?: GoogleCloudAiplatformV1MemoryMetadataValue;
|
|
4699
|
+
}
|
|
4700
|
+
interface GoogleCloudAiplatformV1MemoryMetadataValue {
|
|
4701
|
+
/** Boolean value. */
|
|
4702
|
+
boolValue?: boolean;
|
|
4703
|
+
/** Double value. */
|
|
4704
|
+
doubleValue?: number;
|
|
4705
|
+
/** String value. */
|
|
4706
|
+
stringValue?: string;
|
|
4707
|
+
/** Timestamp value. When filtering on timestamp values, only the seconds field will be compared. */
|
|
4708
|
+
timestampValue?: string;
|
|
4709
|
+
}
|
|
4642
4710
|
interface GoogleCloudAiplatformV1MemoryRevision {
|
|
4643
4711
|
/** Output only. Timestamp when this Memory Revision was created. */
|
|
4644
4712
|
createTime?: string;
|
|
@@ -4663,6 +4731,10 @@ declare namespace gapi.client {
|
|
|
4663
4731
|
/** 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. */
|
|
4664
4732
|
versionAliases?: string[];
|
|
4665
4733
|
}
|
|
4734
|
+
interface GoogleCloudAiplatformV1Metadata {
|
|
4735
|
+
/** 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. */
|
|
4736
|
+
attributes?: {[P in string]: string};
|
|
4737
|
+
}
|
|
4666
4738
|
interface GoogleCloudAiplatformV1MetadataSchema {
|
|
4667
4739
|
/** Output only. Timestamp when this MetadataSchema was created. */
|
|
4668
4740
|
createTime?: string;
|
|
@@ -7097,9 +7169,9 @@ declare namespace gapi.client {
|
|
|
7097
7169
|
sourceArchive?: string;
|
|
7098
7170
|
}
|
|
7099
7171
|
interface GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecPythonSpec {
|
|
7100
|
-
/** 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. */
|
|
7172
|
+
/** 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`. */
|
|
7101
7173
|
entrypointModule?: string;
|
|
7102
|
-
/** Optional. The name of the callable object within the `entrypoint_module` to use as the application If not specified, defaults to "root_agent". */
|
|
7174
|
+
/** 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`. */
|
|
7103
7175
|
entrypointObject?: string;
|
|
7104
7176
|
/** Optional. The path to the requirements file, relative to the source root. If not specified, defaults to "requirements.txt". */
|
|
7105
7177
|
requirementsFile?: string;
|
|
@@ -7235,6 +7307,8 @@ declare namespace gapi.client {
|
|
|
7235
7307
|
interface GoogleCloudAiplatformV1RetrieveMemoriesRequest {
|
|
7236
7308
|
/** 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`) */
|
|
7237
7309
|
filter?: string;
|
|
7310
|
+
/** 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"))`. */
|
|
7311
|
+
filterGroups?: GoogleCloudAiplatformV1MemoryConjunctionFilter[];
|
|
7238
7312
|
/** 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. */
|
|
7239
7313
|
scope?: {[P in string]: string};
|
|
7240
7314
|
/** Parameters for semantic similarity search based retrieval. */
|
|
@@ -7431,6 +7505,44 @@ declare namespace gapi.client {
|
|
|
7431
7505
|
/** Sample rate (0, 1] */
|
|
7432
7506
|
sampleRate?: number;
|
|
7433
7507
|
}
|
|
7508
|
+
interface GoogleCloudAiplatformV1SandboxEnvironment {
|
|
7509
|
+
/** Output only. The connection information of the SandboxEnvironment. */
|
|
7510
|
+
connectionInfo?: GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo;
|
|
7511
|
+
/** Output only. The timestamp when this SandboxEnvironment was created. */
|
|
7512
|
+
createTime?: string;
|
|
7513
|
+
/** Required. The display name of the SandboxEnvironment. */
|
|
7514
|
+
displayName?: string;
|
|
7515
|
+
/** Optional. Timestamp in UTC of when this SandboxEnvironment is considered expired. This is *always* provided on output, regardless of what `expiration` was sent on input. */
|
|
7516
|
+
expireTime?: string;
|
|
7517
|
+
/** Identifier. The name of the SandboxEnvironment. */
|
|
7518
|
+
name?: string;
|
|
7519
|
+
/** Optional. The configuration of the SandboxEnvironment. */
|
|
7520
|
+
spec?: GoogleCloudAiplatformV1SandboxEnvironmentSpec;
|
|
7521
|
+
/** Output only. The runtime state of the SandboxEnvironment. */
|
|
7522
|
+
state?: string;
|
|
7523
|
+
/** Optional. Input only. The TTL for the sandbox environment. The expiration time is computed: now + TTL. */
|
|
7524
|
+
ttl?: string;
|
|
7525
|
+
/** Output only. The timestamp when this SandboxEnvironment was most recently updated. */
|
|
7526
|
+
updateTime?: string;
|
|
7527
|
+
}
|
|
7528
|
+
interface GoogleCloudAiplatformV1SandboxEnvironmentConnectionInfo {
|
|
7529
|
+
/** Output only. The hostname of the load balancer. */
|
|
7530
|
+
loadBalancerHostname?: string;
|
|
7531
|
+
/** Output only. The IP address of the load balancer. */
|
|
7532
|
+
loadBalancerIp?: string;
|
|
7533
|
+
/** Output only. The internal IP address of the SandboxEnvironment. */
|
|
7534
|
+
sandboxInternalIp?: string;
|
|
7535
|
+
}
|
|
7536
|
+
interface GoogleCloudAiplatformV1SandboxEnvironmentSpec {
|
|
7537
|
+
/** Optional. The code execution environment. */
|
|
7538
|
+
codeExecutionEnvironment?: GoogleCloudAiplatformV1SandboxEnvironmentSpecCodeExecutionEnvironment;
|
|
7539
|
+
}
|
|
7540
|
+
interface GoogleCloudAiplatformV1SandboxEnvironmentSpecCodeExecutionEnvironment {
|
|
7541
|
+
/** The coding language supported in this environment. */
|
|
7542
|
+
codeLanguage?: string;
|
|
7543
|
+
/** The machine config of the code execution environment. */
|
|
7544
|
+
machineConfig?: string;
|
|
7545
|
+
}
|
|
7434
7546
|
interface GoogleCloudAiplatformV1SavedQuery {
|
|
7435
7547
|
/** Output only. Filters on the Annotations in the dataset. */
|
|
7436
7548
|
annotationFilter?: string;
|
|
@@ -7516,55 +7628,55 @@ declare namespace gapi.client {
|
|
|
7516
7628
|
timeout?: string;
|
|
7517
7629
|
}
|
|
7518
7630
|
interface GoogleCloudAiplatformV1Schema {
|
|
7519
|
-
/** Optional.
|
|
7631
|
+
/** 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. */
|
|
7520
7632
|
additionalProperties?: any;
|
|
7521
|
-
/** Optional. The
|
|
7633
|
+
/** Optional. The instance must be valid against any (one or more) of the subschemas listed in `any_of`. */
|
|
7522
7634
|
anyOf?: GoogleCloudAiplatformV1Schema[];
|
|
7523
|
-
/** Optional. Default value
|
|
7635
|
+
/** Optional. Default value to use if the field is not specified. */
|
|
7524
7636
|
default?: any;
|
|
7525
|
-
/** Optional.
|
|
7637
|
+
/** 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. */
|
|
7526
7638
|
defs?: {[P in string]: GoogleCloudAiplatformV1Schema};
|
|
7527
|
-
/** Optional.
|
|
7639
|
+
/** Optional. Description of the schema. */
|
|
7528
7640
|
description?: string;
|
|
7529
|
-
/** Optional. Possible values of the
|
|
7641
|
+
/** 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"]}` */
|
|
7530
7642
|
enum?: string[];
|
|
7531
|
-
/** Optional. Example of
|
|
7643
|
+
/** Optional. Example of an instance of this schema. */
|
|
7532
7644
|
example?: any;
|
|
7533
|
-
/** Optional. The format of the data.
|
|
7645
|
+
/** 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. */
|
|
7534
7646
|
format?: string;
|
|
7535
|
-
/** Optional.
|
|
7647
|
+
/** Optional. If type is `ARRAY`, `items` specifies the schema of elements in the array. */
|
|
7536
7648
|
items?: GoogleCloudAiplatformV1Schema;
|
|
7537
|
-
/** Optional.
|
|
7649
|
+
/** Optional. If type is `INTEGER` or `NUMBER`, `maximum` specifies the maximum allowed value. */
|
|
7538
7650
|
maximum?: number;
|
|
7539
|
-
/** Optional.
|
|
7651
|
+
/** Optional. If type is `ARRAY`, `max_items` specifies the maximum number of items in an array. */
|
|
7540
7652
|
maxItems?: string;
|
|
7541
|
-
/** Optional.
|
|
7653
|
+
/** Optional. If type is `STRING`, `max_length` specifies the maximum length of the string. */
|
|
7542
7654
|
maxLength?: string;
|
|
7543
|
-
/** Optional.
|
|
7655
|
+
/** Optional. If type is `OBJECT`, `max_properties` specifies the maximum number of properties that can be provided. */
|
|
7544
7656
|
maxProperties?: string;
|
|
7545
|
-
/** Optional.
|
|
7657
|
+
/** Optional. If type is `INTEGER` or `NUMBER`, `minimum` specifies the minimum allowed value. */
|
|
7546
7658
|
minimum?: number;
|
|
7547
|
-
/** Optional.
|
|
7659
|
+
/** Optional. If type is `ARRAY`, `min_items` specifies the minimum number of items in an array. */
|
|
7548
7660
|
minItems?: string;
|
|
7549
|
-
/** Optional.
|
|
7661
|
+
/** Optional. If type is `STRING`, `min_length` specifies the minimum length of the string. */
|
|
7550
7662
|
minLength?: string;
|
|
7551
|
-
/** Optional.
|
|
7663
|
+
/** Optional. If type is `OBJECT`, `min_properties` specifies the minimum number of properties that can be provided. */
|
|
7552
7664
|
minProperties?: string;
|
|
7553
|
-
/** Optional. Indicates if the value
|
|
7665
|
+
/** Optional. Indicates if the value of this field can be null. */
|
|
7554
7666
|
nullable?: boolean;
|
|
7555
|
-
/** Optional.
|
|
7667
|
+
/** Optional. If type is `STRING`, `pattern` specifies a regular expression that the string must match. */
|
|
7556
7668
|
pattern?: string;
|
|
7557
|
-
/** Optional.
|
|
7669
|
+
/** Optional. If type is `OBJECT`, `properties` is a map of property names to schema definitions for each property of the object. */
|
|
7558
7670
|
properties?: {[P in string]: GoogleCloudAiplatformV1Schema};
|
|
7559
|
-
/** Optional.
|
|
7671
|
+
/** 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. */
|
|
7560
7672
|
propertyOrdering?: string[];
|
|
7561
|
-
/** Optional. Allows
|
|
7673
|
+
/** 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 */
|
|
7562
7674
|
ref?: string;
|
|
7563
|
-
/** Optional.
|
|
7675
|
+
/** Optional. If type is `OBJECT`, `required` lists the names of properties that must be present. */
|
|
7564
7676
|
required?: string[];
|
|
7565
|
-
/** Optional.
|
|
7677
|
+
/** Optional. Title for the schema. */
|
|
7566
7678
|
title?: string;
|
|
7567
|
-
/** Optional.
|
|
7679
|
+
/** Optional. Data type of the schema field. */
|
|
7568
7680
|
type?: string;
|
|
7569
7681
|
}
|
|
7570
7682
|
interface GoogleCloudAiplatformV1SchemaAnnotationSpecColor {
|
|
@@ -8219,6 +8331,8 @@ declare namespace gapi.client {
|
|
|
8219
8331
|
interface GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderData {
|
|
8220
8332
|
/** 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. */
|
|
8221
8333
|
codeRepositoryState?: string;
|
|
8334
|
+
/** Optional. Framework used to build the application. */
|
|
8335
|
+
framework?: string;
|
|
8222
8336
|
/** Linked resources attached to the application by the user. */
|
|
8223
8337
|
linkedResources?: GoogleCloudAiplatformV1SchemaPromptSpecAppBuilderDataLinkedResource[];
|
|
8224
8338
|
}
|
|
@@ -8960,9 +9074,9 @@ declare namespace gapi.client {
|
|
|
8960
9074
|
strideLength?: string;
|
|
8961
9075
|
}
|
|
8962
9076
|
interface GoogleCloudAiplatformV1SchemaVertex {
|
|
8963
|
-
/** X coordinate. */
|
|
9077
|
+
/** X coordinate of the vertex, normalized to [0.0, 1.0]. */
|
|
8964
9078
|
x?: number;
|
|
8965
|
-
/** Y coordinate. */
|
|
9079
|
+
/** Y coordinate of the vertex, normalized to [0.0, 1.0]. */
|
|
8966
9080
|
y?: number;
|
|
8967
9081
|
}
|
|
8968
9082
|
interface GoogleCloudAiplatformV1SchemaVideoActionRecognitionAnnotation {
|
|
@@ -9882,6 +9996,8 @@ declare namespace gapi.client {
|
|
|
9882
9996
|
googleSearch?: GoogleCloudAiplatformV1ToolGoogleSearch;
|
|
9883
9997
|
/** Optional. Specialized retrieval tool that is powered by Google Search. */
|
|
9884
9998
|
googleSearchRetrieval?: GoogleCloudAiplatformV1GoogleSearchRetrieval;
|
|
9999
|
+
/** 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 */
|
|
10000
|
+
parallelAiSearch?: GoogleCloudAiplatformV1ToolParallelAiSearch;
|
|
9885
10001
|
/** 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. */
|
|
9886
10002
|
retrieval?: GoogleCloudAiplatformV1Retrieval;
|
|
9887
10003
|
/** Optional. Tool to support URL context retrieval. */
|
|
@@ -9954,6 +10070,12 @@ declare namespace gapi.client {
|
|
|
9954
10070
|
toolNameMatchMetricValues?: GoogleCloudAiplatformV1ToolNameMatchMetricValue[];
|
|
9955
10071
|
}
|
|
9956
10072
|
interface GoogleCloudAiplatformV1ToolNameMatchSpec {}
|
|
10073
|
+
interface GoogleCloudAiplatformV1ToolParallelAiSearch {
|
|
10074
|
+
/** 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. */
|
|
10075
|
+
apiKey?: string;
|
|
10076
|
+
/** 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 } } */
|
|
10077
|
+
customConfigs?: {[P in string]: any};
|
|
10078
|
+
}
|
|
9957
10079
|
interface GoogleCloudAiplatformV1ToolParameterKeyMatchInput {
|
|
9958
10080
|
/** Required. Repeated tool parameter key match instances. */
|
|
9959
10081
|
instances?: GoogleCloudAiplatformV1ToolParameterKeyMatchInstance[];
|
|
@@ -20050,6 +20172,68 @@ declare namespace gapi.client {
|
|
|
20050
20172
|
): Request<GoogleApiHttpBody>;
|
|
20051
20173
|
}
|
|
20052
20174
|
interface OpenapiResource {
|
|
20175
|
+
/** 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. */
|
|
20176
|
+
completions(request: {
|
|
20177
|
+
/** V1 error format. */
|
|
20178
|
+
'$.xgafv'?: string;
|
|
20179
|
+
/** OAuth access token. */
|
|
20180
|
+
access_token?: string;
|
|
20181
|
+
/** Data format for response. */
|
|
20182
|
+
alt?: string;
|
|
20183
|
+
/** JSONP */
|
|
20184
|
+
callback?: string;
|
|
20185
|
+
/** ID of the DeployedModel that serves the invoke request. */
|
|
20186
|
+
deployedModelId?: string;
|
|
20187
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
20188
|
+
endpoint: string;
|
|
20189
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20190
|
+
fields?: string;
|
|
20191
|
+
/** 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. */
|
|
20192
|
+
key?: string;
|
|
20193
|
+
/** OAuth 2.0 token for the current user. */
|
|
20194
|
+
oauth_token?: string;
|
|
20195
|
+
/** Returns response with indentations and line breaks. */
|
|
20196
|
+
prettyPrint?: boolean;
|
|
20197
|
+
/** 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. */
|
|
20198
|
+
quotaUser?: string;
|
|
20199
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20200
|
+
upload_protocol?: string;
|
|
20201
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20202
|
+
uploadType?: string;
|
|
20203
|
+
/** Request body */
|
|
20204
|
+
resource: GoogleApiHttpBody;
|
|
20205
|
+
}): Request<GoogleApiHttpBody>;
|
|
20206
|
+
completions(
|
|
20207
|
+
request: {
|
|
20208
|
+
/** V1 error format. */
|
|
20209
|
+
'$.xgafv'?: string;
|
|
20210
|
+
/** OAuth access token. */
|
|
20211
|
+
access_token?: string;
|
|
20212
|
+
/** Data format for response. */
|
|
20213
|
+
alt?: string;
|
|
20214
|
+
/** JSONP */
|
|
20215
|
+
callback?: string;
|
|
20216
|
+
/** ID of the DeployedModel that serves the invoke request. */
|
|
20217
|
+
deployedModelId?: string;
|
|
20218
|
+
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
20219
|
+
endpoint: string;
|
|
20220
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20221
|
+
fields?: string;
|
|
20222
|
+
/** 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. */
|
|
20223
|
+
key?: string;
|
|
20224
|
+
/** OAuth 2.0 token for the current user. */
|
|
20225
|
+
oauth_token?: string;
|
|
20226
|
+
/** Returns response with indentations and line breaks. */
|
|
20227
|
+
prettyPrint?: boolean;
|
|
20228
|
+
/** 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. */
|
|
20229
|
+
quotaUser?: string;
|
|
20230
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20231
|
+
upload_protocol?: string;
|
|
20232
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20233
|
+
uploadType?: string;
|
|
20234
|
+
},
|
|
20235
|
+
body: GoogleApiHttpBody,
|
|
20236
|
+
): Request<GoogleApiHttpBody>;
|
|
20053
20237
|
/** 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. */
|
|
20054
20238
|
embeddings(request: {
|
|
20055
20239
|
/** V1 error format. */
|
|
@@ -21299,7 +21483,7 @@ declare namespace gapi.client {
|
|
|
21299
21483
|
alt?: string;
|
|
21300
21484
|
/** JSONP */
|
|
21301
21485
|
callback?: string;
|
|
21302
|
-
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
21486
|
+
/** 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}` */
|
|
21303
21487
|
endpoint: string;
|
|
21304
21488
|
/** Selector specifying which fields to include in a partial response. */
|
|
21305
21489
|
fields?: string;
|
|
@@ -21328,7 +21512,7 @@ declare namespace gapi.client {
|
|
|
21328
21512
|
alt?: string;
|
|
21329
21513
|
/** JSONP */
|
|
21330
21514
|
callback?: string;
|
|
21331
|
-
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
21515
|
+
/** 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}` */
|
|
21332
21516
|
endpoint: string;
|
|
21333
21517
|
/** Selector specifying which fields to include in a partial response. */
|
|
21334
21518
|
fields?: string;
|
|
@@ -34453,7 +34637,7 @@ declare namespace gapi.client {
|
|
|
34453
34637
|
alt?: string;
|
|
34454
34638
|
/** JSONP */
|
|
34455
34639
|
callback?: string;
|
|
34456
|
-
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
34640
|
+
/** 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}` */
|
|
34457
34641
|
endpoint: string;
|
|
34458
34642
|
/** Selector specifying which fields to include in a partial response. */
|
|
34459
34643
|
fields?: string;
|
|
@@ -34482,7 +34666,7 @@ declare namespace gapi.client {
|
|
|
34482
34666
|
alt?: string;
|
|
34483
34667
|
/** JSONP */
|
|
34484
34668
|
callback?: string;
|
|
34485
|
-
/** Required. The name of the Endpoint requested to serve the prediction. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}` */
|
|
34669
|
+
/** 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}` */
|
|
34486
34670
|
endpoint: string;
|
|
34487
34671
|
/** Selector specifying which fields to include in a partial response. */
|
|
34488
34672
|
fields?: string;
|
|
@@ -36105,6 +36289,324 @@ declare namespace gapi.client {
|
|
|
36105
36289
|
uploadType?: string;
|
|
36106
36290
|
}): Request<GoogleLongrunningOperation>;
|
|
36107
36291
|
}
|
|
36292
|
+
interface OperationsResource {
|
|
36293
|
+
/** 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`. */
|
|
36294
|
+
cancel(request?: {
|
|
36295
|
+
/** V1 error format. */
|
|
36296
|
+
'$.xgafv'?: string;
|
|
36297
|
+
/** OAuth access token. */
|
|
36298
|
+
access_token?: string;
|
|
36299
|
+
/** Data format for response. */
|
|
36300
|
+
alt?: string;
|
|
36301
|
+
/** JSONP */
|
|
36302
|
+
callback?: string;
|
|
36303
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36304
|
+
fields?: string;
|
|
36305
|
+
/** 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. */
|
|
36306
|
+
key?: string;
|
|
36307
|
+
/** The name of the operation resource to be cancelled. */
|
|
36308
|
+
name: string;
|
|
36309
|
+
/** OAuth 2.0 token for the current user. */
|
|
36310
|
+
oauth_token?: string;
|
|
36311
|
+
/** Returns response with indentations and line breaks. */
|
|
36312
|
+
prettyPrint?: boolean;
|
|
36313
|
+
/** 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. */
|
|
36314
|
+
quotaUser?: string;
|
|
36315
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36316
|
+
upload_protocol?: string;
|
|
36317
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36318
|
+
uploadType?: string;
|
|
36319
|
+
}): Request<{}>;
|
|
36320
|
+
/** 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`. */
|
|
36321
|
+
delete(request?: {
|
|
36322
|
+
/** V1 error format. */
|
|
36323
|
+
'$.xgafv'?: string;
|
|
36324
|
+
/** OAuth access token. */
|
|
36325
|
+
access_token?: string;
|
|
36326
|
+
/** Data format for response. */
|
|
36327
|
+
alt?: string;
|
|
36328
|
+
/** JSONP */
|
|
36329
|
+
callback?: string;
|
|
36330
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36331
|
+
fields?: string;
|
|
36332
|
+
/** 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. */
|
|
36333
|
+
key?: string;
|
|
36334
|
+
/** The name of the operation resource to be deleted. */
|
|
36335
|
+
name: string;
|
|
36336
|
+
/** OAuth 2.0 token for the current user. */
|
|
36337
|
+
oauth_token?: string;
|
|
36338
|
+
/** Returns response with indentations and line breaks. */
|
|
36339
|
+
prettyPrint?: boolean;
|
|
36340
|
+
/** 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. */
|
|
36341
|
+
quotaUser?: string;
|
|
36342
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36343
|
+
upload_protocol?: string;
|
|
36344
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36345
|
+
uploadType?: string;
|
|
36346
|
+
}): Request<{}>;
|
|
36347
|
+
/** 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. */
|
|
36348
|
+
get(request?: {
|
|
36349
|
+
/** V1 error format. */
|
|
36350
|
+
'$.xgafv'?: string;
|
|
36351
|
+
/** OAuth access token. */
|
|
36352
|
+
access_token?: string;
|
|
36353
|
+
/** Data format for response. */
|
|
36354
|
+
alt?: string;
|
|
36355
|
+
/** JSONP */
|
|
36356
|
+
callback?: string;
|
|
36357
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36358
|
+
fields?: string;
|
|
36359
|
+
/** 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. */
|
|
36360
|
+
key?: string;
|
|
36361
|
+
/** The name of the operation resource. */
|
|
36362
|
+
name: string;
|
|
36363
|
+
/** OAuth 2.0 token for the current user. */
|
|
36364
|
+
oauth_token?: string;
|
|
36365
|
+
/** Returns response with indentations and line breaks. */
|
|
36366
|
+
prettyPrint?: boolean;
|
|
36367
|
+
/** 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. */
|
|
36368
|
+
quotaUser?: string;
|
|
36369
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36370
|
+
upload_protocol?: string;
|
|
36371
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36372
|
+
uploadType?: string;
|
|
36373
|
+
}): Request<GoogleLongrunningOperation>;
|
|
36374
|
+
/** 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. */
|
|
36375
|
+
wait(request?: {
|
|
36376
|
+
/** V1 error format. */
|
|
36377
|
+
'$.xgafv'?: string;
|
|
36378
|
+
/** OAuth access token. */
|
|
36379
|
+
access_token?: string;
|
|
36380
|
+
/** Data format for response. */
|
|
36381
|
+
alt?: string;
|
|
36382
|
+
/** JSONP */
|
|
36383
|
+
callback?: string;
|
|
36384
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36385
|
+
fields?: string;
|
|
36386
|
+
/** 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. */
|
|
36387
|
+
key?: string;
|
|
36388
|
+
/** The name of the operation resource to wait on. */
|
|
36389
|
+
name: string;
|
|
36390
|
+
/** OAuth 2.0 token for the current user. */
|
|
36391
|
+
oauth_token?: string;
|
|
36392
|
+
/** Returns response with indentations and line breaks. */
|
|
36393
|
+
prettyPrint?: boolean;
|
|
36394
|
+
/** 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. */
|
|
36395
|
+
quotaUser?: string;
|
|
36396
|
+
/** 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. */
|
|
36397
|
+
timeout?: string;
|
|
36398
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36399
|
+
upload_protocol?: string;
|
|
36400
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36401
|
+
uploadType?: string;
|
|
36402
|
+
}): Request<GoogleLongrunningOperation>;
|
|
36403
|
+
}
|
|
36404
|
+
interface SandboxEnvironmentsResource {
|
|
36405
|
+
/** Creates a SandboxEnvironment in a given reasoning engine. */
|
|
36406
|
+
create(request: {
|
|
36407
|
+
/** V1 error format. */
|
|
36408
|
+
'$.xgafv'?: string;
|
|
36409
|
+
/** OAuth access token. */
|
|
36410
|
+
access_token?: string;
|
|
36411
|
+
/** Data format for response. */
|
|
36412
|
+
alt?: string;
|
|
36413
|
+
/** JSONP */
|
|
36414
|
+
callback?: string;
|
|
36415
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36416
|
+
fields?: string;
|
|
36417
|
+
/** 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. */
|
|
36418
|
+
key?: string;
|
|
36419
|
+
/** OAuth 2.0 token for the current user. */
|
|
36420
|
+
oauth_token?: string;
|
|
36421
|
+
/** Required. The resource name of the reasoning engine to create the SandboxEnvironment in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`. */
|
|
36422
|
+
parent: string;
|
|
36423
|
+
/** Returns response with indentations and line breaks. */
|
|
36424
|
+
prettyPrint?: boolean;
|
|
36425
|
+
/** 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. */
|
|
36426
|
+
quotaUser?: string;
|
|
36427
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36428
|
+
upload_protocol?: string;
|
|
36429
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36430
|
+
uploadType?: string;
|
|
36431
|
+
/** Request body */
|
|
36432
|
+
resource: GoogleCloudAiplatformV1SandboxEnvironment;
|
|
36433
|
+
}): Request<GoogleLongrunningOperation>;
|
|
36434
|
+
create(
|
|
36435
|
+
request: {
|
|
36436
|
+
/** V1 error format. */
|
|
36437
|
+
'$.xgafv'?: string;
|
|
36438
|
+
/** OAuth access token. */
|
|
36439
|
+
access_token?: string;
|
|
36440
|
+
/** Data format for response. */
|
|
36441
|
+
alt?: string;
|
|
36442
|
+
/** JSONP */
|
|
36443
|
+
callback?: string;
|
|
36444
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36445
|
+
fields?: string;
|
|
36446
|
+
/** 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. */
|
|
36447
|
+
key?: string;
|
|
36448
|
+
/** OAuth 2.0 token for the current user. */
|
|
36449
|
+
oauth_token?: string;
|
|
36450
|
+
/** Required. The resource name of the reasoning engine to create the SandboxEnvironment in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`. */
|
|
36451
|
+
parent: string;
|
|
36452
|
+
/** Returns response with indentations and line breaks. */
|
|
36453
|
+
prettyPrint?: boolean;
|
|
36454
|
+
/** 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. */
|
|
36455
|
+
quotaUser?: string;
|
|
36456
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36457
|
+
upload_protocol?: string;
|
|
36458
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36459
|
+
uploadType?: string;
|
|
36460
|
+
},
|
|
36461
|
+
body: GoogleCloudAiplatformV1SandboxEnvironment,
|
|
36462
|
+
): Request<GoogleLongrunningOperation>;
|
|
36463
|
+
/** Deletes the specific SandboxEnvironment. */
|
|
36464
|
+
delete(request?: {
|
|
36465
|
+
/** V1 error format. */
|
|
36466
|
+
'$.xgafv'?: string;
|
|
36467
|
+
/** OAuth access token. */
|
|
36468
|
+
access_token?: string;
|
|
36469
|
+
/** Data format for response. */
|
|
36470
|
+
alt?: string;
|
|
36471
|
+
/** JSONP */
|
|
36472
|
+
callback?: string;
|
|
36473
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36474
|
+
fields?: string;
|
|
36475
|
+
/** 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. */
|
|
36476
|
+
key?: string;
|
|
36477
|
+
/** Required. The resource name of the SandboxEnvironment to delete. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
36478
|
+
name: string;
|
|
36479
|
+
/** OAuth 2.0 token for the current user. */
|
|
36480
|
+
oauth_token?: string;
|
|
36481
|
+
/** Returns response with indentations and line breaks. */
|
|
36482
|
+
prettyPrint?: boolean;
|
|
36483
|
+
/** 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. */
|
|
36484
|
+
quotaUser?: string;
|
|
36485
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36486
|
+
upload_protocol?: string;
|
|
36487
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36488
|
+
uploadType?: string;
|
|
36489
|
+
}): Request<GoogleLongrunningOperation>;
|
|
36490
|
+
/** Executes using a sandbox environment. */
|
|
36491
|
+
execute(request: {
|
|
36492
|
+
/** V1 error format. */
|
|
36493
|
+
'$.xgafv'?: string;
|
|
36494
|
+
/** OAuth access token. */
|
|
36495
|
+
access_token?: string;
|
|
36496
|
+
/** Data format for response. */
|
|
36497
|
+
alt?: string;
|
|
36498
|
+
/** JSONP */
|
|
36499
|
+
callback?: string;
|
|
36500
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36501
|
+
fields?: string;
|
|
36502
|
+
/** 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. */
|
|
36503
|
+
key?: string;
|
|
36504
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
36505
|
+
name: string;
|
|
36506
|
+
/** OAuth 2.0 token for the current user. */
|
|
36507
|
+
oauth_token?: string;
|
|
36508
|
+
/** Returns response with indentations and line breaks. */
|
|
36509
|
+
prettyPrint?: boolean;
|
|
36510
|
+
/** 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. */
|
|
36511
|
+
quotaUser?: string;
|
|
36512
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36513
|
+
upload_protocol?: string;
|
|
36514
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36515
|
+
uploadType?: string;
|
|
36516
|
+
/** Request body */
|
|
36517
|
+
resource: GoogleCloudAiplatformV1ExecuteSandboxEnvironmentRequest;
|
|
36518
|
+
}): Request<GoogleCloudAiplatformV1ExecuteSandboxEnvironmentResponse>;
|
|
36519
|
+
execute(
|
|
36520
|
+
request: {
|
|
36521
|
+
/** V1 error format. */
|
|
36522
|
+
'$.xgafv'?: string;
|
|
36523
|
+
/** OAuth access token. */
|
|
36524
|
+
access_token?: string;
|
|
36525
|
+
/** Data format for response. */
|
|
36526
|
+
alt?: string;
|
|
36527
|
+
/** JSONP */
|
|
36528
|
+
callback?: string;
|
|
36529
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36530
|
+
fields?: string;
|
|
36531
|
+
/** 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. */
|
|
36532
|
+
key?: string;
|
|
36533
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
36534
|
+
name: string;
|
|
36535
|
+
/** OAuth 2.0 token for the current user. */
|
|
36536
|
+
oauth_token?: string;
|
|
36537
|
+
/** Returns response with indentations and line breaks. */
|
|
36538
|
+
prettyPrint?: boolean;
|
|
36539
|
+
/** 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. */
|
|
36540
|
+
quotaUser?: string;
|
|
36541
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36542
|
+
upload_protocol?: string;
|
|
36543
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36544
|
+
uploadType?: string;
|
|
36545
|
+
},
|
|
36546
|
+
body: GoogleCloudAiplatformV1ExecuteSandboxEnvironmentRequest,
|
|
36547
|
+
): Request<GoogleCloudAiplatformV1ExecuteSandboxEnvironmentResponse>;
|
|
36548
|
+
/** Gets details of the specific SandboxEnvironment. */
|
|
36549
|
+
get(request?: {
|
|
36550
|
+
/** V1 error format. */
|
|
36551
|
+
'$.xgafv'?: string;
|
|
36552
|
+
/** OAuth access token. */
|
|
36553
|
+
access_token?: string;
|
|
36554
|
+
/** Data format for response. */
|
|
36555
|
+
alt?: string;
|
|
36556
|
+
/** JSONP */
|
|
36557
|
+
callback?: string;
|
|
36558
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36559
|
+
fields?: string;
|
|
36560
|
+
/** 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. */
|
|
36561
|
+
key?: string;
|
|
36562
|
+
/** Required. The resource name of the sandbox environment. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
36563
|
+
name: string;
|
|
36564
|
+
/** OAuth 2.0 token for the current user. */
|
|
36565
|
+
oauth_token?: string;
|
|
36566
|
+
/** Returns response with indentations and line breaks. */
|
|
36567
|
+
prettyPrint?: boolean;
|
|
36568
|
+
/** 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. */
|
|
36569
|
+
quotaUser?: string;
|
|
36570
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36571
|
+
upload_protocol?: string;
|
|
36572
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36573
|
+
uploadType?: string;
|
|
36574
|
+
}): Request<GoogleCloudAiplatformV1SandboxEnvironment>;
|
|
36575
|
+
/** Lists SandboxEnvironments in a given reasoning engine. */
|
|
36576
|
+
list(request?: {
|
|
36577
|
+
/** V1 error format. */
|
|
36578
|
+
'$.xgafv'?: string;
|
|
36579
|
+
/** OAuth access token. */
|
|
36580
|
+
access_token?: string;
|
|
36581
|
+
/** Data format for response. */
|
|
36582
|
+
alt?: string;
|
|
36583
|
+
/** JSONP */
|
|
36584
|
+
callback?: string;
|
|
36585
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
36586
|
+
fields?: string;
|
|
36587
|
+
/** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). */
|
|
36588
|
+
filter?: string;
|
|
36589
|
+
/** 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. */
|
|
36590
|
+
key?: string;
|
|
36591
|
+
/** OAuth 2.0 token for the current user. */
|
|
36592
|
+
oauth_token?: string;
|
|
36593
|
+
/** 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. */
|
|
36594
|
+
pageSize?: number;
|
|
36595
|
+
/** Optional. The standard list page token, received from a previous `ListSandboxEnvironments` call. Provide this to retrieve the subsequent page. */
|
|
36596
|
+
pageToken?: string;
|
|
36597
|
+
/** Required. The resource name of the reasoning engine to list sandbox environments from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
36598
|
+
parent: string;
|
|
36599
|
+
/** Returns response with indentations and line breaks. */
|
|
36600
|
+
prettyPrint?: boolean;
|
|
36601
|
+
/** 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. */
|
|
36602
|
+
quotaUser?: string;
|
|
36603
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
36604
|
+
upload_protocol?: string;
|
|
36605
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36606
|
+
uploadType?: string;
|
|
36607
|
+
}): Request<GoogleCloudAiplatformV1ListSandboxEnvironmentsResponse>;
|
|
36608
|
+
operations: OperationsResource;
|
|
36609
|
+
}
|
|
36108
36610
|
interface EventsResource {
|
|
36109
36611
|
/** Lists Events in a given session. */
|
|
36110
36612
|
list(request?: {
|
|
@@ -36648,6 +37150,64 @@ declare namespace gapi.client {
|
|
|
36648
37150
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
36649
37151
|
uploadType?: string;
|
|
36650
37152
|
}): Request<GoogleLongrunningOperation>;
|
|
37153
|
+
/** Executes code statelessly. */
|
|
37154
|
+
executeCode(request: {
|
|
37155
|
+
/** V1 error format. */
|
|
37156
|
+
'$.xgafv'?: string;
|
|
37157
|
+
/** OAuth access token. */
|
|
37158
|
+
access_token?: string;
|
|
37159
|
+
/** Data format for response. */
|
|
37160
|
+
alt?: string;
|
|
37161
|
+
/** JSONP */
|
|
37162
|
+
callback?: string;
|
|
37163
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
37164
|
+
fields?: string;
|
|
37165
|
+
/** 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. */
|
|
37166
|
+
key?: string;
|
|
37167
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
37168
|
+
name: string;
|
|
37169
|
+
/** OAuth 2.0 token for the current user. */
|
|
37170
|
+
oauth_token?: string;
|
|
37171
|
+
/** Returns response with indentations and line breaks. */
|
|
37172
|
+
prettyPrint?: boolean;
|
|
37173
|
+
/** 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. */
|
|
37174
|
+
quotaUser?: string;
|
|
37175
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
37176
|
+
upload_protocol?: string;
|
|
37177
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
37178
|
+
uploadType?: string;
|
|
37179
|
+
/** Request body */
|
|
37180
|
+
resource: GoogleCloudAiplatformV1ExecuteCodeRequest;
|
|
37181
|
+
}): Request<GoogleCloudAiplatformV1ExecuteCodeResponse>;
|
|
37182
|
+
executeCode(
|
|
37183
|
+
request: {
|
|
37184
|
+
/** V1 error format. */
|
|
37185
|
+
'$.xgafv'?: string;
|
|
37186
|
+
/** OAuth access token. */
|
|
37187
|
+
access_token?: string;
|
|
37188
|
+
/** Data format for response. */
|
|
37189
|
+
alt?: string;
|
|
37190
|
+
/** JSONP */
|
|
37191
|
+
callback?: string;
|
|
37192
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
37193
|
+
fields?: string;
|
|
37194
|
+
/** 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. */
|
|
37195
|
+
key?: string;
|
|
37196
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
37197
|
+
name: string;
|
|
37198
|
+
/** OAuth 2.0 token for the current user. */
|
|
37199
|
+
oauth_token?: string;
|
|
37200
|
+
/** Returns response with indentations and line breaks. */
|
|
37201
|
+
prettyPrint?: boolean;
|
|
37202
|
+
/** 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. */
|
|
37203
|
+
quotaUser?: string;
|
|
37204
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
37205
|
+
upload_protocol?: string;
|
|
37206
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
37207
|
+
uploadType?: string;
|
|
37208
|
+
},
|
|
37209
|
+
body: GoogleCloudAiplatformV1ExecuteCodeRequest,
|
|
37210
|
+
): Request<GoogleCloudAiplatformV1ExecuteCodeResponse>;
|
|
36651
37211
|
/** Gets a reasoning engine. */
|
|
36652
37212
|
get(request?: {
|
|
36653
37213
|
/** V1 error format. */
|
|
@@ -36888,6 +37448,7 @@ declare namespace gapi.client {
|
|
|
36888
37448
|
): Request<GoogleApiHttpBody>;
|
|
36889
37449
|
memories: MemoriesResource;
|
|
36890
37450
|
operations: OperationsResource;
|
|
37451
|
+
sandboxEnvironments: SandboxEnvironmentsResource;
|
|
36891
37452
|
sessions: SessionsResource;
|
|
36892
37453
|
}
|
|
36893
37454
|
interface OperationsResource {
|
|
@@ -43100,12 +43661,271 @@ declare namespace gapi.client {
|
|
|
43100
43661
|
uploadType?: string;
|
|
43101
43662
|
}): Request<GoogleLongrunningOperation>;
|
|
43102
43663
|
}
|
|
43103
|
-
interface MemoriesResource {
|
|
43104
|
-
operations: OperationsResource;
|
|
43105
|
-
}
|
|
43106
|
-
interface OperationsResource {
|
|
43107
|
-
/** 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`. */
|
|
43108
|
-
cancel(request?: {
|
|
43664
|
+
interface MemoriesResource {
|
|
43665
|
+
operations: OperationsResource;
|
|
43666
|
+
}
|
|
43667
|
+
interface OperationsResource {
|
|
43668
|
+
/** 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`. */
|
|
43669
|
+
cancel(request?: {
|
|
43670
|
+
/** V1 error format. */
|
|
43671
|
+
'$.xgafv'?: string;
|
|
43672
|
+
/** OAuth access token. */
|
|
43673
|
+
access_token?: string;
|
|
43674
|
+
/** Data format for response. */
|
|
43675
|
+
alt?: string;
|
|
43676
|
+
/** JSONP */
|
|
43677
|
+
callback?: string;
|
|
43678
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43679
|
+
fields?: string;
|
|
43680
|
+
/** 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. */
|
|
43681
|
+
key?: string;
|
|
43682
|
+
/** The name of the operation resource to be cancelled. */
|
|
43683
|
+
name: string;
|
|
43684
|
+
/** OAuth 2.0 token for the current user. */
|
|
43685
|
+
oauth_token?: string;
|
|
43686
|
+
/** Returns response with indentations and line breaks. */
|
|
43687
|
+
prettyPrint?: boolean;
|
|
43688
|
+
/** 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. */
|
|
43689
|
+
quotaUser?: string;
|
|
43690
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43691
|
+
upload_protocol?: string;
|
|
43692
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43693
|
+
uploadType?: string;
|
|
43694
|
+
}): Request<{}>;
|
|
43695
|
+
/** 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`. */
|
|
43696
|
+
delete(request?: {
|
|
43697
|
+
/** V1 error format. */
|
|
43698
|
+
'$.xgafv'?: string;
|
|
43699
|
+
/** OAuth access token. */
|
|
43700
|
+
access_token?: string;
|
|
43701
|
+
/** Data format for response. */
|
|
43702
|
+
alt?: string;
|
|
43703
|
+
/** JSONP */
|
|
43704
|
+
callback?: string;
|
|
43705
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43706
|
+
fields?: string;
|
|
43707
|
+
/** 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. */
|
|
43708
|
+
key?: string;
|
|
43709
|
+
/** The name of the operation resource to be deleted. */
|
|
43710
|
+
name: string;
|
|
43711
|
+
/** OAuth 2.0 token for the current user. */
|
|
43712
|
+
oauth_token?: string;
|
|
43713
|
+
/** Returns response with indentations and line breaks. */
|
|
43714
|
+
prettyPrint?: boolean;
|
|
43715
|
+
/** 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. */
|
|
43716
|
+
quotaUser?: string;
|
|
43717
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43718
|
+
upload_protocol?: string;
|
|
43719
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43720
|
+
uploadType?: string;
|
|
43721
|
+
}): Request<{}>;
|
|
43722
|
+
/** 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. */
|
|
43723
|
+
get(request?: {
|
|
43724
|
+
/** V1 error format. */
|
|
43725
|
+
'$.xgafv'?: string;
|
|
43726
|
+
/** OAuth access token. */
|
|
43727
|
+
access_token?: string;
|
|
43728
|
+
/** Data format for response. */
|
|
43729
|
+
alt?: string;
|
|
43730
|
+
/** JSONP */
|
|
43731
|
+
callback?: string;
|
|
43732
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43733
|
+
fields?: string;
|
|
43734
|
+
/** 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. */
|
|
43735
|
+
key?: string;
|
|
43736
|
+
/** The name of the operation resource. */
|
|
43737
|
+
name: string;
|
|
43738
|
+
/** OAuth 2.0 token for the current user. */
|
|
43739
|
+
oauth_token?: string;
|
|
43740
|
+
/** Returns response with indentations and line breaks. */
|
|
43741
|
+
prettyPrint?: boolean;
|
|
43742
|
+
/** 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. */
|
|
43743
|
+
quotaUser?: string;
|
|
43744
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43745
|
+
upload_protocol?: string;
|
|
43746
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43747
|
+
uploadType?: string;
|
|
43748
|
+
}): Request<GoogleLongrunningOperation>;
|
|
43749
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
43750
|
+
list(request?: {
|
|
43751
|
+
/** V1 error format. */
|
|
43752
|
+
'$.xgafv'?: string;
|
|
43753
|
+
/** OAuth access token. */
|
|
43754
|
+
access_token?: string;
|
|
43755
|
+
/** Data format for response. */
|
|
43756
|
+
alt?: string;
|
|
43757
|
+
/** JSONP */
|
|
43758
|
+
callback?: string;
|
|
43759
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43760
|
+
fields?: string;
|
|
43761
|
+
/** The standard list filter. */
|
|
43762
|
+
filter?: string;
|
|
43763
|
+
/** 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. */
|
|
43764
|
+
key?: string;
|
|
43765
|
+
/** The name of the operation's parent resource. */
|
|
43766
|
+
name: string;
|
|
43767
|
+
/** OAuth 2.0 token for the current user. */
|
|
43768
|
+
oauth_token?: string;
|
|
43769
|
+
/** The standard list page size. */
|
|
43770
|
+
pageSize?: number;
|
|
43771
|
+
/** The standard list page token. */
|
|
43772
|
+
pageToken?: string;
|
|
43773
|
+
/** Returns response with indentations and line breaks. */
|
|
43774
|
+
prettyPrint?: boolean;
|
|
43775
|
+
/** 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. */
|
|
43776
|
+
quotaUser?: string;
|
|
43777
|
+
/** 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. */
|
|
43778
|
+
returnPartialSuccess?: boolean;
|
|
43779
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43780
|
+
upload_protocol?: string;
|
|
43781
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43782
|
+
uploadType?: string;
|
|
43783
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
43784
|
+
/** 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. */
|
|
43785
|
+
wait(request?: {
|
|
43786
|
+
/** V1 error format. */
|
|
43787
|
+
'$.xgafv'?: string;
|
|
43788
|
+
/** OAuth access token. */
|
|
43789
|
+
access_token?: string;
|
|
43790
|
+
/** Data format for response. */
|
|
43791
|
+
alt?: string;
|
|
43792
|
+
/** JSONP */
|
|
43793
|
+
callback?: string;
|
|
43794
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43795
|
+
fields?: string;
|
|
43796
|
+
/** 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. */
|
|
43797
|
+
key?: string;
|
|
43798
|
+
/** The name of the operation resource to wait on. */
|
|
43799
|
+
name: string;
|
|
43800
|
+
/** OAuth 2.0 token for the current user. */
|
|
43801
|
+
oauth_token?: string;
|
|
43802
|
+
/** Returns response with indentations and line breaks. */
|
|
43803
|
+
prettyPrint?: boolean;
|
|
43804
|
+
/** 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. */
|
|
43805
|
+
quotaUser?: string;
|
|
43806
|
+
/** 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. */
|
|
43807
|
+
timeout?: string;
|
|
43808
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43809
|
+
upload_protocol?: string;
|
|
43810
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43811
|
+
uploadType?: string;
|
|
43812
|
+
}): Request<GoogleLongrunningOperation>;
|
|
43813
|
+
}
|
|
43814
|
+
interface OperationsResource {
|
|
43815
|
+
/** 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`. */
|
|
43816
|
+
cancel(request?: {
|
|
43817
|
+
/** V1 error format. */
|
|
43818
|
+
'$.xgafv'?: string;
|
|
43819
|
+
/** OAuth access token. */
|
|
43820
|
+
access_token?: string;
|
|
43821
|
+
/** Data format for response. */
|
|
43822
|
+
alt?: string;
|
|
43823
|
+
/** JSONP */
|
|
43824
|
+
callback?: string;
|
|
43825
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43826
|
+
fields?: string;
|
|
43827
|
+
/** 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. */
|
|
43828
|
+
key?: string;
|
|
43829
|
+
/** The name of the operation resource to be cancelled. */
|
|
43830
|
+
name: string;
|
|
43831
|
+
/** OAuth 2.0 token for the current user. */
|
|
43832
|
+
oauth_token?: string;
|
|
43833
|
+
/** Returns response with indentations and line breaks. */
|
|
43834
|
+
prettyPrint?: boolean;
|
|
43835
|
+
/** 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. */
|
|
43836
|
+
quotaUser?: string;
|
|
43837
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43838
|
+
upload_protocol?: string;
|
|
43839
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43840
|
+
uploadType?: string;
|
|
43841
|
+
}): Request<{}>;
|
|
43842
|
+
/** 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`. */
|
|
43843
|
+
delete(request?: {
|
|
43844
|
+
/** V1 error format. */
|
|
43845
|
+
'$.xgafv'?: string;
|
|
43846
|
+
/** OAuth access token. */
|
|
43847
|
+
access_token?: string;
|
|
43848
|
+
/** Data format for response. */
|
|
43849
|
+
alt?: string;
|
|
43850
|
+
/** JSONP */
|
|
43851
|
+
callback?: string;
|
|
43852
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43853
|
+
fields?: string;
|
|
43854
|
+
/** 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. */
|
|
43855
|
+
key?: string;
|
|
43856
|
+
/** The name of the operation resource to be deleted. */
|
|
43857
|
+
name: string;
|
|
43858
|
+
/** OAuth 2.0 token for the current user. */
|
|
43859
|
+
oauth_token?: string;
|
|
43860
|
+
/** Returns response with indentations and line breaks. */
|
|
43861
|
+
prettyPrint?: boolean;
|
|
43862
|
+
/** 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. */
|
|
43863
|
+
quotaUser?: string;
|
|
43864
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43865
|
+
upload_protocol?: string;
|
|
43866
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43867
|
+
uploadType?: string;
|
|
43868
|
+
}): Request<{}>;
|
|
43869
|
+
/** 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. */
|
|
43870
|
+
get(request?: {
|
|
43871
|
+
/** V1 error format. */
|
|
43872
|
+
'$.xgafv'?: string;
|
|
43873
|
+
/** OAuth access token. */
|
|
43874
|
+
access_token?: string;
|
|
43875
|
+
/** Data format for response. */
|
|
43876
|
+
alt?: string;
|
|
43877
|
+
/** JSONP */
|
|
43878
|
+
callback?: string;
|
|
43879
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43880
|
+
fields?: string;
|
|
43881
|
+
/** 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. */
|
|
43882
|
+
key?: string;
|
|
43883
|
+
/** The name of the operation resource. */
|
|
43884
|
+
name: string;
|
|
43885
|
+
/** OAuth 2.0 token for the current user. */
|
|
43886
|
+
oauth_token?: string;
|
|
43887
|
+
/** Returns response with indentations and line breaks. */
|
|
43888
|
+
prettyPrint?: boolean;
|
|
43889
|
+
/** 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. */
|
|
43890
|
+
quotaUser?: string;
|
|
43891
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43892
|
+
upload_protocol?: string;
|
|
43893
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43894
|
+
uploadType?: string;
|
|
43895
|
+
}): Request<GoogleLongrunningOperation>;
|
|
43896
|
+
/** 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. */
|
|
43897
|
+
wait(request?: {
|
|
43898
|
+
/** V1 error format. */
|
|
43899
|
+
'$.xgafv'?: string;
|
|
43900
|
+
/** OAuth access token. */
|
|
43901
|
+
access_token?: string;
|
|
43902
|
+
/** Data format for response. */
|
|
43903
|
+
alt?: string;
|
|
43904
|
+
/** JSONP */
|
|
43905
|
+
callback?: string;
|
|
43906
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43907
|
+
fields?: string;
|
|
43908
|
+
/** 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. */
|
|
43909
|
+
key?: string;
|
|
43910
|
+
/** The name of the operation resource to wait on. */
|
|
43911
|
+
name: string;
|
|
43912
|
+
/** OAuth 2.0 token for the current user. */
|
|
43913
|
+
oauth_token?: string;
|
|
43914
|
+
/** Returns response with indentations and line breaks. */
|
|
43915
|
+
prettyPrint?: boolean;
|
|
43916
|
+
/** 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. */
|
|
43917
|
+
quotaUser?: string;
|
|
43918
|
+
/** 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. */
|
|
43919
|
+
timeout?: string;
|
|
43920
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43921
|
+
upload_protocol?: string;
|
|
43922
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43923
|
+
uploadType?: string;
|
|
43924
|
+
}): Request<GoogleLongrunningOperation>;
|
|
43925
|
+
}
|
|
43926
|
+
interface SandboxEnvironmentsResource {
|
|
43927
|
+
/** Creates a SandboxEnvironment in a given reasoning engine. */
|
|
43928
|
+
create(request: {
|
|
43109
43929
|
/** V1 error format. */
|
|
43110
43930
|
'$.xgafv'?: string;
|
|
43111
43931
|
/** OAuth access token. */
|
|
@@ -43118,10 +43938,10 @@ declare namespace gapi.client {
|
|
|
43118
43938
|
fields?: string;
|
|
43119
43939
|
/** 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. */
|
|
43120
43940
|
key?: string;
|
|
43121
|
-
/** The name of the operation resource to be cancelled. */
|
|
43122
|
-
name: string;
|
|
43123
43941
|
/** OAuth 2.0 token for the current user. */
|
|
43124
43942
|
oauth_token?: string;
|
|
43943
|
+
/** Required. The resource name of the reasoning engine to create the SandboxEnvironment in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`. */
|
|
43944
|
+
parent: string;
|
|
43125
43945
|
/** Returns response with indentations and line breaks. */
|
|
43126
43946
|
prettyPrint?: boolean;
|
|
43127
43947
|
/** 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. */
|
|
@@ -43130,8 +43950,39 @@ declare namespace gapi.client {
|
|
|
43130
43950
|
upload_protocol?: string;
|
|
43131
43951
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43132
43952
|
uploadType?: string;
|
|
43133
|
-
|
|
43134
|
-
|
|
43953
|
+
/** Request body */
|
|
43954
|
+
resource: GoogleCloudAiplatformV1SandboxEnvironment;
|
|
43955
|
+
}): Request<GoogleLongrunningOperation>;
|
|
43956
|
+
create(
|
|
43957
|
+
request: {
|
|
43958
|
+
/** V1 error format. */
|
|
43959
|
+
'$.xgafv'?: string;
|
|
43960
|
+
/** OAuth access token. */
|
|
43961
|
+
access_token?: string;
|
|
43962
|
+
/** Data format for response. */
|
|
43963
|
+
alt?: string;
|
|
43964
|
+
/** JSONP */
|
|
43965
|
+
callback?: string;
|
|
43966
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
43967
|
+
fields?: string;
|
|
43968
|
+
/** 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. */
|
|
43969
|
+
key?: string;
|
|
43970
|
+
/** OAuth 2.0 token for the current user. */
|
|
43971
|
+
oauth_token?: string;
|
|
43972
|
+
/** Required. The resource name of the reasoning engine to create the SandboxEnvironment in. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}`. */
|
|
43973
|
+
parent: string;
|
|
43974
|
+
/** Returns response with indentations and line breaks. */
|
|
43975
|
+
prettyPrint?: boolean;
|
|
43976
|
+
/** 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. */
|
|
43977
|
+
quotaUser?: string;
|
|
43978
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43979
|
+
upload_protocol?: string;
|
|
43980
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43981
|
+
uploadType?: string;
|
|
43982
|
+
},
|
|
43983
|
+
body: GoogleCloudAiplatformV1SandboxEnvironment,
|
|
43984
|
+
): Request<GoogleLongrunningOperation>;
|
|
43985
|
+
/** Deletes the specific SandboxEnvironment. */
|
|
43135
43986
|
delete(request?: {
|
|
43136
43987
|
/** V1 error format. */
|
|
43137
43988
|
'$.xgafv'?: string;
|
|
@@ -43145,7 +43996,7 @@ declare namespace gapi.client {
|
|
|
43145
43996
|
fields?: string;
|
|
43146
43997
|
/** 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. */
|
|
43147
43998
|
key?: string;
|
|
43148
|
-
/** The name of the
|
|
43999
|
+
/** Required. The resource name of the SandboxEnvironment to delete. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
43149
44000
|
name: string;
|
|
43150
44001
|
/** OAuth 2.0 token for the current user. */
|
|
43151
44002
|
oauth_token?: string;
|
|
@@ -43157,9 +44008,9 @@ declare namespace gapi.client {
|
|
|
43157
44008
|
upload_protocol?: string;
|
|
43158
44009
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43159
44010
|
uploadType?: string;
|
|
43160
|
-
}): Request<
|
|
43161
|
-
/**
|
|
43162
|
-
|
|
44011
|
+
}): Request<GoogleLongrunningOperation>;
|
|
44012
|
+
/** Executes using a sandbox environment. */
|
|
44013
|
+
execute(request: {
|
|
43163
44014
|
/** V1 error format. */
|
|
43164
44015
|
'$.xgafv'?: string;
|
|
43165
44016
|
/** OAuth access token. */
|
|
@@ -43172,7 +44023,7 @@ declare namespace gapi.client {
|
|
|
43172
44023
|
fields?: string;
|
|
43173
44024
|
/** 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. */
|
|
43174
44025
|
key?: string;
|
|
43175
|
-
/** The name of the
|
|
44026
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
43176
44027
|
name: string;
|
|
43177
44028
|
/** OAuth 2.0 token for the current user. */
|
|
43178
44029
|
oauth_token?: string;
|
|
@@ -43184,9 +44035,40 @@ declare namespace gapi.client {
|
|
|
43184
44035
|
upload_protocol?: string;
|
|
43185
44036
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43186
44037
|
uploadType?: string;
|
|
43187
|
-
|
|
43188
|
-
|
|
43189
|
-
|
|
44038
|
+
/** Request body */
|
|
44039
|
+
resource: GoogleCloudAiplatformV1ExecuteSandboxEnvironmentRequest;
|
|
44040
|
+
}): Request<GoogleCloudAiplatformV1ExecuteSandboxEnvironmentResponse>;
|
|
44041
|
+
execute(
|
|
44042
|
+
request: {
|
|
44043
|
+
/** V1 error format. */
|
|
44044
|
+
'$.xgafv'?: string;
|
|
44045
|
+
/** OAuth access token. */
|
|
44046
|
+
access_token?: string;
|
|
44047
|
+
/** Data format for response. */
|
|
44048
|
+
alt?: string;
|
|
44049
|
+
/** JSONP */
|
|
44050
|
+
callback?: string;
|
|
44051
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44052
|
+
fields?: string;
|
|
44053
|
+
/** 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. */
|
|
44054
|
+
key?: string;
|
|
44055
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
44056
|
+
name: string;
|
|
44057
|
+
/** OAuth 2.0 token for the current user. */
|
|
44058
|
+
oauth_token?: string;
|
|
44059
|
+
/** Returns response with indentations and line breaks. */
|
|
44060
|
+
prettyPrint?: boolean;
|
|
44061
|
+
/** 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. */
|
|
44062
|
+
quotaUser?: string;
|
|
44063
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
44064
|
+
upload_protocol?: string;
|
|
44065
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
44066
|
+
uploadType?: string;
|
|
44067
|
+
},
|
|
44068
|
+
body: GoogleCloudAiplatformV1ExecuteSandboxEnvironmentRequest,
|
|
44069
|
+
): Request<GoogleCloudAiplatformV1ExecuteSandboxEnvironmentResponse>;
|
|
44070
|
+
/** Gets details of the specific SandboxEnvironment. */
|
|
44071
|
+
get(request?: {
|
|
43190
44072
|
/** V1 error format. */
|
|
43191
44073
|
'$.xgafv'?: string;
|
|
43192
44074
|
/** OAuth access token. */
|
|
@@ -43197,31 +44079,23 @@ declare namespace gapi.client {
|
|
|
43197
44079
|
callback?: string;
|
|
43198
44080
|
/** Selector specifying which fields to include in a partial response. */
|
|
43199
44081
|
fields?: string;
|
|
43200
|
-
/** The standard list filter. */
|
|
43201
|
-
filter?: string;
|
|
43202
44082
|
/** 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. */
|
|
43203
44083
|
key?: string;
|
|
43204
|
-
/** The name of the
|
|
44084
|
+
/** Required. The resource name of the sandbox environment. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}/sandboxEnvironments/{sandbox_environment}` */
|
|
43205
44085
|
name: string;
|
|
43206
44086
|
/** OAuth 2.0 token for the current user. */
|
|
43207
44087
|
oauth_token?: string;
|
|
43208
|
-
/** The standard list page size. */
|
|
43209
|
-
pageSize?: number;
|
|
43210
|
-
/** The standard list page token. */
|
|
43211
|
-
pageToken?: string;
|
|
43212
44088
|
/** Returns response with indentations and line breaks. */
|
|
43213
44089
|
prettyPrint?: boolean;
|
|
43214
44090
|
/** 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. */
|
|
43215
44091
|
quotaUser?: string;
|
|
43216
|
-
/** 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. */
|
|
43217
|
-
returnPartialSuccess?: boolean;
|
|
43218
44092
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43219
44093
|
upload_protocol?: string;
|
|
43220
44094
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43221
44095
|
uploadType?: string;
|
|
43222
|
-
}): Request<
|
|
43223
|
-
/**
|
|
43224
|
-
|
|
44096
|
+
}): Request<GoogleCloudAiplatformV1SandboxEnvironment>;
|
|
44097
|
+
/** Lists SandboxEnvironments in a given reasoning engine. */
|
|
44098
|
+
list(request?: {
|
|
43225
44099
|
/** V1 error format. */
|
|
43226
44100
|
'$.xgafv'?: string;
|
|
43227
44101
|
/** OAuth access token. */
|
|
@@ -43232,23 +44106,28 @@ declare namespace gapi.client {
|
|
|
43232
44106
|
callback?: string;
|
|
43233
44107
|
/** Selector specifying which fields to include in a partial response. */
|
|
43234
44108
|
fields?: string;
|
|
44109
|
+
/** Optional. The standard list filter. More detail in [AIP-160](https://google.aip.dev/160). */
|
|
44110
|
+
filter?: string;
|
|
43235
44111
|
/** 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. */
|
|
43236
44112
|
key?: string;
|
|
43237
|
-
/** The name of the operation resource to wait on. */
|
|
43238
|
-
name: string;
|
|
43239
44113
|
/** OAuth 2.0 token for the current user. */
|
|
43240
44114
|
oauth_token?: string;
|
|
44115
|
+
/** 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. */
|
|
44116
|
+
pageSize?: number;
|
|
44117
|
+
/** Optional. The standard list page token, received from a previous `ListSandboxEnvironments` call. Provide this to retrieve the subsequent page. */
|
|
44118
|
+
pageToken?: string;
|
|
44119
|
+
/** Required. The resource name of the reasoning engine to list sandbox environments from. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
44120
|
+
parent: string;
|
|
43241
44121
|
/** Returns response with indentations and line breaks. */
|
|
43242
44122
|
prettyPrint?: boolean;
|
|
43243
44123
|
/** 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. */
|
|
43244
44124
|
quotaUser?: string;
|
|
43245
|
-
/** 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. */
|
|
43246
|
-
timeout?: string;
|
|
43247
44125
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
43248
44126
|
upload_protocol?: string;
|
|
43249
44127
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43250
44128
|
uploadType?: string;
|
|
43251
|
-
}): Request<
|
|
44129
|
+
}): Request<GoogleCloudAiplatformV1ListSandboxEnvironmentsResponse>;
|
|
44130
|
+
operations: OperationsResource;
|
|
43252
44131
|
}
|
|
43253
44132
|
interface OperationsResource {
|
|
43254
44133
|
/** 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`. */
|
|
@@ -43488,6 +44367,64 @@ declare namespace gapi.client {
|
|
|
43488
44367
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
43489
44368
|
uploadType?: string;
|
|
43490
44369
|
}): Request<GoogleLongrunningOperation>;
|
|
44370
|
+
/** Executes code statelessly. */
|
|
44371
|
+
executeCode(request: {
|
|
44372
|
+
/** V1 error format. */
|
|
44373
|
+
'$.xgafv'?: string;
|
|
44374
|
+
/** OAuth access token. */
|
|
44375
|
+
access_token?: string;
|
|
44376
|
+
/** Data format for response. */
|
|
44377
|
+
alt?: string;
|
|
44378
|
+
/** JSONP */
|
|
44379
|
+
callback?: string;
|
|
44380
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44381
|
+
fields?: string;
|
|
44382
|
+
/** 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. */
|
|
44383
|
+
key?: string;
|
|
44384
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
44385
|
+
name: string;
|
|
44386
|
+
/** OAuth 2.0 token for the current user. */
|
|
44387
|
+
oauth_token?: string;
|
|
44388
|
+
/** Returns response with indentations and line breaks. */
|
|
44389
|
+
prettyPrint?: boolean;
|
|
44390
|
+
/** 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. */
|
|
44391
|
+
quotaUser?: string;
|
|
44392
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
44393
|
+
upload_protocol?: string;
|
|
44394
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
44395
|
+
uploadType?: string;
|
|
44396
|
+
/** Request body */
|
|
44397
|
+
resource: GoogleCloudAiplatformV1ExecuteCodeRequest;
|
|
44398
|
+
}): Request<GoogleCloudAiplatformV1ExecuteCodeResponse>;
|
|
44399
|
+
executeCode(
|
|
44400
|
+
request: {
|
|
44401
|
+
/** V1 error format. */
|
|
44402
|
+
'$.xgafv'?: string;
|
|
44403
|
+
/** OAuth access token. */
|
|
44404
|
+
access_token?: string;
|
|
44405
|
+
/** Data format for response. */
|
|
44406
|
+
alt?: string;
|
|
44407
|
+
/** JSONP */
|
|
44408
|
+
callback?: string;
|
|
44409
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
44410
|
+
fields?: string;
|
|
44411
|
+
/** 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. */
|
|
44412
|
+
key?: string;
|
|
44413
|
+
/** Required. The resource name of the sandbox environment to execute. Format: `projects/{project}/locations/{location}/reasoningEngines/{reasoning_engine}` */
|
|
44414
|
+
name: string;
|
|
44415
|
+
/** OAuth 2.0 token for the current user. */
|
|
44416
|
+
oauth_token?: string;
|
|
44417
|
+
/** Returns response with indentations and line breaks. */
|
|
44418
|
+
prettyPrint?: boolean;
|
|
44419
|
+
/** 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. */
|
|
44420
|
+
quotaUser?: string;
|
|
44421
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
44422
|
+
upload_protocol?: string;
|
|
44423
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
44424
|
+
uploadType?: string;
|
|
44425
|
+
},
|
|
44426
|
+
body: GoogleCloudAiplatformV1ExecuteCodeRequest,
|
|
44427
|
+
): Request<GoogleCloudAiplatformV1ExecuteCodeResponse>;
|
|
43491
44428
|
/** Gets a reasoning engine. */
|
|
43492
44429
|
get(request?: {
|
|
43493
44430
|
/** V1 error format. */
|
|
@@ -43728,6 +44665,7 @@ declare namespace gapi.client {
|
|
|
43728
44665
|
): Request<GoogleApiHttpBody>;
|
|
43729
44666
|
memories: MemoriesResource;
|
|
43730
44667
|
operations: OperationsResource;
|
|
44668
|
+
sandboxEnvironments: SandboxEnvironmentsResource;
|
|
43731
44669
|
sessions: SessionsResource;
|
|
43732
44670
|
}
|
|
43733
44671
|
interface OperationsResource {
|
|
@@ -45205,6 +46143,170 @@ declare namespace gapi.client {
|
|
|
45205
46143
|
interface TuningJobsResource {
|
|
45206
46144
|
operations: OperationsResource;
|
|
45207
46145
|
}
|
|
46146
|
+
interface V1Resource {
|
|
46147
|
+
/** Evaluates a dataset based on a set of given metrics. */
|
|
46148
|
+
evaluateDataset(request: {
|
|
46149
|
+
/** V1 error format. */
|
|
46150
|
+
'$.xgafv'?: string;
|
|
46151
|
+
/** OAuth access token. */
|
|
46152
|
+
access_token?: string;
|
|
46153
|
+
/** Data format for response. */
|
|
46154
|
+
alt?: string;
|
|
46155
|
+
/** JSONP */
|
|
46156
|
+
callback?: string;
|
|
46157
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
46158
|
+
fields?: string;
|
|
46159
|
+
/** 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. */
|
|
46160
|
+
key?: string;
|
|
46161
|
+
/** OAuth 2.0 token for the current user. */
|
|
46162
|
+
oauth_token?: string;
|
|
46163
|
+
/** Returns response with indentations and line breaks. */
|
|
46164
|
+
prettyPrint?: boolean;
|
|
46165
|
+
/** 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. */
|
|
46166
|
+
quotaUser?: string;
|
|
46167
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
46168
|
+
upload_protocol?: string;
|
|
46169
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
46170
|
+
uploadType?: string;
|
|
46171
|
+
/** Request body */
|
|
46172
|
+
resource: GoogleCloudAiplatformV1EvaluateDatasetRequest;
|
|
46173
|
+
}): Request<GoogleLongrunningOperation>;
|
|
46174
|
+
evaluateDataset(
|
|
46175
|
+
request: {
|
|
46176
|
+
/** V1 error format. */
|
|
46177
|
+
'$.xgafv'?: string;
|
|
46178
|
+
/** OAuth access token. */
|
|
46179
|
+
access_token?: string;
|
|
46180
|
+
/** Data format for response. */
|
|
46181
|
+
alt?: string;
|
|
46182
|
+
/** JSONP */
|
|
46183
|
+
callback?: string;
|
|
46184
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
46185
|
+
fields?: string;
|
|
46186
|
+
/** 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. */
|
|
46187
|
+
key?: string;
|
|
46188
|
+
/** OAuth 2.0 token for the current user. */
|
|
46189
|
+
oauth_token?: string;
|
|
46190
|
+
/** Returns response with indentations and line breaks. */
|
|
46191
|
+
prettyPrint?: boolean;
|
|
46192
|
+
/** 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. */
|
|
46193
|
+
quotaUser?: string;
|
|
46194
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
46195
|
+
upload_protocol?: string;
|
|
46196
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
46197
|
+
uploadType?: string;
|
|
46198
|
+
},
|
|
46199
|
+
body: GoogleCloudAiplatformV1EvaluateDatasetRequest,
|
|
46200
|
+
): Request<GoogleLongrunningOperation>;
|
|
46201
|
+
/** Evaluates instances based on a given metric. */
|
|
46202
|
+
evaluateInstances(request: {
|
|
46203
|
+
/** V1 error format. */
|
|
46204
|
+
'$.xgafv'?: string;
|
|
46205
|
+
/** OAuth access token. */
|
|
46206
|
+
access_token?: string;
|
|
46207
|
+
/** Data format for response. */
|
|
46208
|
+
alt?: string;
|
|
46209
|
+
/** JSONP */
|
|
46210
|
+
callback?: string;
|
|
46211
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
46212
|
+
fields?: string;
|
|
46213
|
+
/** 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. */
|
|
46214
|
+
key?: string;
|
|
46215
|
+
/** OAuth 2.0 token for the current user. */
|
|
46216
|
+
oauth_token?: string;
|
|
46217
|
+
/** Returns response with indentations and line breaks. */
|
|
46218
|
+
prettyPrint?: boolean;
|
|
46219
|
+
/** 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. */
|
|
46220
|
+
quotaUser?: string;
|
|
46221
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
46222
|
+
upload_protocol?: string;
|
|
46223
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
46224
|
+
uploadType?: string;
|
|
46225
|
+
/** Request body */
|
|
46226
|
+
resource: GoogleCloudAiplatformV1EvaluateInstancesRequest;
|
|
46227
|
+
}): Request<GoogleCloudAiplatformV1EvaluateInstancesResponse>;
|
|
46228
|
+
evaluateInstances(
|
|
46229
|
+
request: {
|
|
46230
|
+
/** V1 error format. */
|
|
46231
|
+
'$.xgafv'?: string;
|
|
46232
|
+
/** OAuth access token. */
|
|
46233
|
+
access_token?: string;
|
|
46234
|
+
/** Data format for response. */
|
|
46235
|
+
alt?: string;
|
|
46236
|
+
/** JSONP */
|
|
46237
|
+
callback?: string;
|
|
46238
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
46239
|
+
fields?: string;
|
|
46240
|
+
/** 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. */
|
|
46241
|
+
key?: string;
|
|
46242
|
+
/** OAuth 2.0 token for the current user. */
|
|
46243
|
+
oauth_token?: string;
|
|
46244
|
+
/** Returns response with indentations and line breaks. */
|
|
46245
|
+
prettyPrint?: boolean;
|
|
46246
|
+
/** 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. */
|
|
46247
|
+
quotaUser?: string;
|
|
46248
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
46249
|
+
upload_protocol?: string;
|
|
46250
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
46251
|
+
uploadType?: string;
|
|
46252
|
+
},
|
|
46253
|
+
body: GoogleCloudAiplatformV1EvaluateInstancesRequest,
|
|
46254
|
+
): Request<GoogleCloudAiplatformV1EvaluateInstancesResponse>;
|
|
46255
|
+
/** 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. */
|
|
46256
|
+
generateInstanceRubrics(request: {
|
|
46257
|
+
/** V1 error format. */
|
|
46258
|
+
'$.xgafv'?: string;
|
|
46259
|
+
/** OAuth access token. */
|
|
46260
|
+
access_token?: string;
|
|
46261
|
+
/** Data format for response. */
|
|
46262
|
+
alt?: string;
|
|
46263
|
+
/** JSONP */
|
|
46264
|
+
callback?: string;
|
|
46265
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
46266
|
+
fields?: string;
|
|
46267
|
+
/** 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. */
|
|
46268
|
+
key?: string;
|
|
46269
|
+
/** OAuth 2.0 token for the current user. */
|
|
46270
|
+
oauth_token?: string;
|
|
46271
|
+
/** Returns response with indentations and line breaks. */
|
|
46272
|
+
prettyPrint?: boolean;
|
|
46273
|
+
/** 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. */
|
|
46274
|
+
quotaUser?: string;
|
|
46275
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
46276
|
+
upload_protocol?: string;
|
|
46277
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
46278
|
+
uploadType?: string;
|
|
46279
|
+
/** Request body */
|
|
46280
|
+
resource: GoogleCloudAiplatformV1GenerateInstanceRubricsRequest;
|
|
46281
|
+
}): Request<GoogleCloudAiplatformV1GenerateInstanceRubricsResponse>;
|
|
46282
|
+
generateInstanceRubrics(
|
|
46283
|
+
request: {
|
|
46284
|
+
/** V1 error format. */
|
|
46285
|
+
'$.xgafv'?: string;
|
|
46286
|
+
/** OAuth access token. */
|
|
46287
|
+
access_token?: string;
|
|
46288
|
+
/** Data format for response. */
|
|
46289
|
+
alt?: string;
|
|
46290
|
+
/** JSONP */
|
|
46291
|
+
callback?: string;
|
|
46292
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
46293
|
+
fields?: string;
|
|
46294
|
+
/** 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. */
|
|
46295
|
+
key?: string;
|
|
46296
|
+
/** OAuth 2.0 token for the current user. */
|
|
46297
|
+
oauth_token?: string;
|
|
46298
|
+
/** Returns response with indentations and line breaks. */
|
|
46299
|
+
prettyPrint?: boolean;
|
|
46300
|
+
/** 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. */
|
|
46301
|
+
quotaUser?: string;
|
|
46302
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
46303
|
+
upload_protocol?: string;
|
|
46304
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
46305
|
+
uploadType?: string;
|
|
46306
|
+
},
|
|
46307
|
+
body: GoogleCloudAiplatformV1GenerateInstanceRubricsRequest,
|
|
46308
|
+
): Request<GoogleCloudAiplatformV1GenerateInstanceRubricsResponse>;
|
|
46309
|
+
}
|
|
45208
46310
|
|
|
45209
46311
|
const batchPredictionJobs: BatchPredictionJobsResource;
|
|
45210
46312
|
|
|
@@ -45273,5 +46375,7 @@ declare namespace gapi.client {
|
|
|
45273
46375
|
const trainingPipelines: TrainingPipelinesResource;
|
|
45274
46376
|
|
|
45275
46377
|
const tuningJobs: TuningJobsResource;
|
|
46378
|
+
|
|
46379
|
+
const v1: V1Resource;
|
|
45276
46380
|
}
|
|
45277
46381
|
}
|