@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20240209 → 0.0.20240219
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 +287 -38
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -59,10 +59,12 @@ declare namespace gapi.client {
|
|
|
59
59
|
image?: string;
|
|
60
60
|
/** RAI scores for generated image. */
|
|
61
61
|
imageRaiScores?: CloudAiLargeModelsVisionImageRAIScores;
|
|
62
|
-
/** RAI info for image */
|
|
62
|
+
/** RAI info for image. */
|
|
63
63
|
raiInfo?: CloudAiLargeModelsVisionRaiInfo;
|
|
64
64
|
/** Semantic filter info for image. */
|
|
65
65
|
semanticFilterResponse?: CloudAiLargeModelsVisionSemanticFilterResponse;
|
|
66
|
+
/** Text/Expanded text input for imagen. */
|
|
67
|
+
text?: string;
|
|
66
68
|
/** Path to another storage (typically Google Cloud Storage). */
|
|
67
69
|
uri?: string;
|
|
68
70
|
}
|
|
@@ -284,8 +286,26 @@ declare namespace gapi.client {
|
|
|
284
286
|
blocked?: boolean;
|
|
285
287
|
/** Harm category. */
|
|
286
288
|
category?: string;
|
|
289
|
+
/** The influential terms that could potentially block the response. */
|
|
290
|
+
influentialTerms?: CloudAiNlLlmProtoServiceSafetyRatingInfluentialTerm[];
|
|
287
291
|
/** Harm probability levels in the content. */
|
|
288
292
|
probability?: string;
|
|
293
|
+
/** Harm probability score. */
|
|
294
|
+
probabilityScore?: number;
|
|
295
|
+
/** Harm severity levels in the content. */
|
|
296
|
+
severity?: string;
|
|
297
|
+
/** Harm severity score. */
|
|
298
|
+
severityScore?: number;
|
|
299
|
+
}
|
|
300
|
+
interface CloudAiNlLlmProtoServiceSafetyRatingInfluentialTerm {
|
|
301
|
+
/** The beginning offset of the influential term. */
|
|
302
|
+
beginOffset?: number;
|
|
303
|
+
/** The confidence score of the influential term. */
|
|
304
|
+
confidence?: number;
|
|
305
|
+
/** The source of the influential term, prompt or response. */
|
|
306
|
+
source?: string;
|
|
307
|
+
/** The influential term. */
|
|
308
|
+
term?: string;
|
|
289
309
|
}
|
|
290
310
|
interface CloudAiNlLlmProtoServiceUsageMetadata {
|
|
291
311
|
/** Number of tokens in the response(s). */
|
|
@@ -696,6 +716,8 @@ declare namespace gapi.client {
|
|
|
696
716
|
finishMessage?: string;
|
|
697
717
|
/** Output only. The reason why the model stopped generating tokens. If empty, the model has not stopped generating the tokens. */
|
|
698
718
|
finishReason?: string;
|
|
719
|
+
/** Output only. Metadata specifies sources used to ground generated content. */
|
|
720
|
+
groundingMetadata?: GoogleCloudAiplatformV1beta1GroundingMetadata;
|
|
699
721
|
/** Output only. Index of the candidate. */
|
|
700
722
|
index?: number;
|
|
701
723
|
/** Output only. List of ratings for the safety of a response candidate. There is at most one rating per category. */
|
|
@@ -925,8 +947,6 @@ declare namespace gapi.client {
|
|
|
925
947
|
pipelineJob?: GoogleCloudAiplatformV1beta1PipelineJob;
|
|
926
948
|
/** The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be less than 128 characters, and valid characters are `/a-z-/`. */
|
|
927
949
|
pipelineJobId?: string;
|
|
928
|
-
/** Optional. Whether to do component level validations before job creation. Currently we only support Google First Party Component/Pipelines. */
|
|
929
|
-
preflightValidations?: boolean;
|
|
930
950
|
}
|
|
931
951
|
interface GoogleCloudAiplatformV1beta1CreateRegistryFeatureOperationMetadata {
|
|
932
952
|
/** Operation metadata for Feature. */
|
|
@@ -1117,8 +1137,12 @@ declare namespace gapi.client {
|
|
|
1117
1137
|
bigQueryDatasetName?: string;
|
|
1118
1138
|
/** Output only. Timestamp when this DatasetVersion was created. */
|
|
1119
1139
|
createTime?: string;
|
|
1140
|
+
/** The user-defined name of the DatasetVersion. The name can be up to 128 characters long and can consist of any UTF-8 characters. */
|
|
1141
|
+
displayName?: string;
|
|
1120
1142
|
/** Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
1121
1143
|
etag?: string;
|
|
1144
|
+
/** Required. Additional information about the DatasetVersion. */
|
|
1145
|
+
metadata?: any;
|
|
1122
1146
|
/** Output only. The resource name of the DatasetVersion. */
|
|
1123
1147
|
name?: string;
|
|
1124
1148
|
/** Output only. Timestamp when this DatasetVersion was last updated. */
|
|
@@ -1371,6 +1395,8 @@ declare namespace gapi.client {
|
|
|
1371
1395
|
network?: string;
|
|
1372
1396
|
/** Configures the request-response logging for online prediction. */
|
|
1373
1397
|
predictRequestResponseLoggingConfig?: GoogleCloudAiplatformV1beta1PredictRequestResponseLoggingConfig;
|
|
1398
|
+
/** Optional. Configuration for private service connect. network and private_service_connect_config are mutually exclusive. */
|
|
1399
|
+
privateServiceConnectConfig?: GoogleCloudAiplatformV1beta1PrivateServiceConnectConfig;
|
|
1374
1400
|
/** A map from a DeployedModel's ID to the percentage of this Endpoint's traffic that should be forwarded to that DeployedModel. If a DeployedModel's ID is not listed in this map, then it receives no traffic. The traffic percentage values must add up to 100, or map must be empty if the Endpoint is to not accept any traffic at a moment. */
|
|
1375
1401
|
trafficSplit?: {[P in string]: number};
|
|
1376
1402
|
/** Output only. Timestamp when this Endpoint was last updated. */
|
|
@@ -1686,18 +1712,6 @@ declare namespace gapi.client {
|
|
|
1686
1712
|
/** All of the files that are exported in this export operation. For custom code training export, only three (training, validation and test) Cloud Storage paths in wildcard format are populated (for example, gs://.../training-*). */
|
|
1687
1713
|
exportedFiles?: string[];
|
|
1688
1714
|
}
|
|
1689
|
-
interface GoogleCloudAiplatformV1beta1ExportEndpointOperationMetadata {
|
|
1690
|
-
/** The common part of the operation metadata. */
|
|
1691
|
-
genericMetadata?: GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
1692
|
-
}
|
|
1693
|
-
interface GoogleCloudAiplatformV1beta1ExportEndpointResponse {
|
|
1694
|
-
/** Information further describing the output of this Endpoint export. */
|
|
1695
|
-
outputInfo?: GoogleCloudAiplatformV1beta1ExportEndpointResponseOutputInfo;
|
|
1696
|
-
}
|
|
1697
|
-
interface GoogleCloudAiplatformV1beta1ExportEndpointResponseOutputInfo {
|
|
1698
|
-
/** If the Endpoint is being exported to BigQuery this is the full path of the BigQuery ML model created. */
|
|
1699
|
-
bigQueryDestination?: GoogleCloudAiplatformV1beta1BigQueryDestination;
|
|
1700
|
-
}
|
|
1701
1715
|
interface GoogleCloudAiplatformV1beta1ExportFeatureValuesOperationMetadata {
|
|
1702
1716
|
/** Operation metadata for Featurestore export Feature values. */
|
|
1703
1717
|
genericMetadata?: GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
@@ -1795,6 +1809,8 @@ declare namespace gapi.client {
|
|
|
1795
1809
|
monitoringStatsAnomalies?: GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly[];
|
|
1796
1810
|
/** Immutable. Name of the Feature. Format: `projects/{project}/locations/{location}/featurestores/{featurestore}/entityTypes/{entity_type}/features/{feature}` `projects/{project}/locations/{location}/featureGroups/{feature_group}/features/{feature}` The last part feature is assigned by the client. The feature can be up to 64 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscore(_), and ASCII digits 0-9 starting with a letter. The value will be unique given an entity type. */
|
|
1797
1811
|
name?: string;
|
|
1812
|
+
/** Entity responsible for maintaining this feature. Can be comma separated list of email addresses or URIs. */
|
|
1813
|
+
pointOfContact?: string;
|
|
1798
1814
|
/** Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp when this EntityType was most recently updated. */
|
|
1799
1815
|
updateTime?: string;
|
|
1800
1816
|
/** Immutable. Only applicable for Vertex AI Feature Store (Legacy). Type of Feature value. */
|
|
@@ -1821,7 +1837,7 @@ declare namespace gapi.client {
|
|
|
1821
1837
|
interface GoogleCloudAiplatformV1beta1FeatureGroupBigQuery {
|
|
1822
1838
|
/** Required. Immutable. The BigQuery source URI that points to either a BigQuery Table or View. */
|
|
1823
1839
|
bigQuerySource?: GoogleCloudAiplatformV1beta1BigQuerySource;
|
|
1824
|
-
/** Optional. Columns to construct entity_id / row keys.
|
|
1840
|
+
/** Optional. Columns to construct entity_id / row keys. If not provided defaults to `entity_id`. */
|
|
1825
1841
|
entityIdColumns?: string[];
|
|
1826
1842
|
}
|
|
1827
1843
|
interface GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly {
|
|
@@ -2022,6 +2038,10 @@ declare namespace gapi.client {
|
|
|
2022
2038
|
labels?: {[P in string]: string};
|
|
2023
2039
|
/** Identifier. Name of the FeatureView. Format: `projects/{project}/locations/{location}/featureOnlineStores/{feature_online_store}/featureViews/{feature_view}` */
|
|
2024
2040
|
name?: string;
|
|
2041
|
+
/** Output only. A Service Account unique to this FeatureView. The role bigquery.dataViewer should be granted to this service account to allow Vertex AI Feature Store to sync data to the online store. */
|
|
2042
|
+
serviceAccountEmail?: string;
|
|
2043
|
+
/** Optional. Service agent type used during data sync. By default, the Vertex AI Service Agent is used. When using an IAM Policy to isolate this FeatureView within a project (https://cloud.google.com/vertex-ai/docs/featurestore/latest/resource-policy) a separate service account should be provisioned by setting this field to `SERVICE_AGENT_TYPE_FEATURE_VIEW`. This will generate a separate service account to access the BigQuery source table. */
|
|
2044
|
+
serviceAgentType?: string;
|
|
2025
2045
|
/** Configures when data is to be synced/updated for this FeatureView. At the end of the sync the latest featureValues for each entityId of this FeatureView are made ready for online serving. */
|
|
2026
2046
|
syncConfig?: GoogleCloudAiplatformV1beta1FeatureViewSyncConfig;
|
|
2027
2047
|
/** Output only. Timestamp when this FeatureView was last updated. */
|
|
@@ -2030,18 +2050,26 @@ declare namespace gapi.client {
|
|
|
2030
2050
|
vectorSearchConfig?: GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfig;
|
|
2031
2051
|
}
|
|
2032
2052
|
interface GoogleCloudAiplatformV1beta1FeatureViewBigQuerySource {
|
|
2033
|
-
/** Required. Columns to construct entity_id / row keys.
|
|
2053
|
+
/** Required. Columns to construct entity_id / row keys. */
|
|
2034
2054
|
entityIdColumns?: string[];
|
|
2035
2055
|
/** Required. The BigQuery view URI that will be materialized on each sync trigger based on FeatureView.SyncConfig. */
|
|
2036
2056
|
uri?: string;
|
|
2037
2057
|
}
|
|
2038
2058
|
interface GoogleCloudAiplatformV1beta1FeatureViewDataKey {
|
|
2059
|
+
/** The actual Entity ID will be composed from this struct. This should match with the way ID is defined in the FeatureView spec. */
|
|
2060
|
+
compositeKey?: GoogleCloudAiplatformV1beta1FeatureViewDataKeyCompositeKey;
|
|
2039
2061
|
/** String key to use for lookup. */
|
|
2040
2062
|
key?: string;
|
|
2041
2063
|
}
|
|
2064
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewDataKeyCompositeKey {
|
|
2065
|
+
/** Parts to construct Entity ID. Should match with the same ID columns as defined in FeatureView in the same order. */
|
|
2066
|
+
parts?: string[];
|
|
2067
|
+
}
|
|
2042
2068
|
interface GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySource {
|
|
2043
2069
|
/** Required. List of features that need to be synced to Online Store. */
|
|
2044
2070
|
featureGroups?: GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySourceFeatureGroup[];
|
|
2071
|
+
/** Optional. The project number of the parent project of the Feature Groups. */
|
|
2072
|
+
projectNumber?: string;
|
|
2045
2073
|
}
|
|
2046
2074
|
interface GoogleCloudAiplatformV1beta1FeatureViewFeatureRegistrySourceFeatureGroup {
|
|
2047
2075
|
/** Required. Identifier of the feature group. */
|
|
@@ -2058,11 +2086,19 @@ declare namespace gapi.client {
|
|
|
2058
2086
|
name?: string;
|
|
2059
2087
|
/** Output only. Time when this FeatureViewSync is finished. */
|
|
2060
2088
|
runTime?: GoogleTypeInterval;
|
|
2089
|
+
/** Output only. Summary of the sync job. */
|
|
2090
|
+
syncSummary?: GoogleCloudAiplatformV1beta1FeatureViewSyncSyncSummary;
|
|
2061
2091
|
}
|
|
2062
2092
|
interface GoogleCloudAiplatformV1beta1FeatureViewSyncConfig {
|
|
2063
2093
|
/** Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * * *", or "TZ=America/New_York 1 * * * *". */
|
|
2064
2094
|
cron?: string;
|
|
2065
2095
|
}
|
|
2096
|
+
interface GoogleCloudAiplatformV1beta1FeatureViewSyncSyncSummary {
|
|
2097
|
+
/** Output only. Total number of rows synced. */
|
|
2098
|
+
rowSynced?: string;
|
|
2099
|
+
/** Output only. BigQuery slot milliseconds consumed for the sync job. */
|
|
2100
|
+
totalSlot?: string;
|
|
2101
|
+
}
|
|
2066
2102
|
interface GoogleCloudAiplatformV1beta1FeatureViewVectorSearchConfig {
|
|
2067
2103
|
/** Optional. Configuration options for using brute force search, which simply implements the standard linear search in the database for each query. It is primarily meant for benchmarking and to generate the ground truth for approximate search. */
|
|
2068
2104
|
bruteForceConfig?: any;
|
|
@@ -2217,7 +2253,7 @@ declare namespace gapi.client {
|
|
|
2217
2253
|
generationConfig?: GoogleCloudAiplatformV1beta1GenerationConfig;
|
|
2218
2254
|
/** Optional. Per request settings for blocking unsafe content. Enforced on GenerateContentResponse.candidates. */
|
|
2219
2255
|
safetySettings?: GoogleCloudAiplatformV1beta1SafetySetting[];
|
|
2220
|
-
/** Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model.
|
|
2256
|
+
/** Optional. A list of `Tools` the model may use to generate the next response. A `Tool` is a piece of code that enables the system to interact with external systems to perform an action, or set of actions, outside of knowledge and scope of the model. */
|
|
2221
2257
|
tools?: GoogleCloudAiplatformV1beta1Tool[];
|
|
2222
2258
|
}
|
|
2223
2259
|
interface GoogleCloudAiplatformV1beta1GenerateContentResponse {
|
|
@@ -2265,6 +2301,34 @@ declare namespace gapi.client {
|
|
|
2265
2301
|
/** Output only. Time when the operation was updated for the last time. If the operation has finished (successfully or not), this is the finish time. */
|
|
2266
2302
|
updateTime?: string;
|
|
2267
2303
|
}
|
|
2304
|
+
interface GoogleCloudAiplatformV1beta1GenieSource {
|
|
2305
|
+
/** Required. The public base model URI. */
|
|
2306
|
+
baseModelUri?: string;
|
|
2307
|
+
}
|
|
2308
|
+
interface GoogleCloudAiplatformV1beta1GoogleSearchRetrieval {
|
|
2309
|
+
/** Optional. Disable using the result from this tool in detecting grounding attribution. This does not affect how the result is given to the model for generation. */
|
|
2310
|
+
disableAttribution?: boolean;
|
|
2311
|
+
}
|
|
2312
|
+
interface GoogleCloudAiplatformV1beta1GroundingAttribution {
|
|
2313
|
+
/** Optional. Output only. Confidence score of the attribution. Ranges from 0 to 1. 1 is the most confident. */
|
|
2314
|
+
confidenceScore?: number;
|
|
2315
|
+
/** Output only. Segment of the content this attribution belongs to. */
|
|
2316
|
+
segment?: GoogleCloudAiplatformV1beta1Segment;
|
|
2317
|
+
/** Optional. Attribution from the web. */
|
|
2318
|
+
web?: GoogleCloudAiplatformV1beta1GroundingAttributionWeb;
|
|
2319
|
+
}
|
|
2320
|
+
interface GoogleCloudAiplatformV1beta1GroundingAttributionWeb {
|
|
2321
|
+
/** Output only. Title of the attribution. */
|
|
2322
|
+
title?: string;
|
|
2323
|
+
/** Output only. URI reference of the attribution. */
|
|
2324
|
+
uri?: string;
|
|
2325
|
+
}
|
|
2326
|
+
interface GoogleCloudAiplatformV1beta1GroundingMetadata {
|
|
2327
|
+
/** Optional. List of grounding attributions. */
|
|
2328
|
+
groundingAttributions?: GoogleCloudAiplatformV1beta1GroundingAttribution[];
|
|
2329
|
+
/** Optional. Web search queries for the following-up web search. */
|
|
2330
|
+
webSearchQueries?: string[];
|
|
2331
|
+
}
|
|
2268
2332
|
interface GoogleCloudAiplatformV1beta1HyperparameterTuningJob {
|
|
2269
2333
|
/** Output only. Time when the HyperparameterTuningJob was created. */
|
|
2270
2334
|
createTime?: string;
|
|
@@ -2992,6 +3056,8 @@ declare namespace gapi.client {
|
|
|
2992
3056
|
interface GoogleCloudAiplatformV1beta1Model {
|
|
2993
3057
|
/** Immutable. The path to the directory containing the Model artifact and any of its supporting files. Not required for AutoML Models. */
|
|
2994
3058
|
artifactUri?: string;
|
|
3059
|
+
/** Optional. User input field to specify the base model source. Currently it only supports specifing the Model Garden models and Genie models. */
|
|
3060
|
+
baseModelSource?: GoogleCloudAiplatformV1beta1ModelBaseModelSource;
|
|
2995
3061
|
/** Input only. The specification of the container that is to be used when deploying this Model. The specification is ingested upon ModelService.UploadModel, and all binaries it contains are copied and stored internally by Vertex AI. Not required for AutoML Models. */
|
|
2996
3062
|
containerSpec?: GoogleCloudAiplatformV1beta1ModelContainerSpec;
|
|
2997
3063
|
/** Output only. Timestamp when this Model was uploaded into Vertex AI. */
|
|
@@ -3047,6 +3113,12 @@ declare namespace gapi.client {
|
|
|
3047
3113
|
/** Output only. Timestamp when this version was most recently updated. */
|
|
3048
3114
|
versionUpdateTime?: string;
|
|
3049
3115
|
}
|
|
3116
|
+
interface GoogleCloudAiplatformV1beta1ModelBaseModelSource {
|
|
3117
|
+
/** Information about the base model of Genie models. */
|
|
3118
|
+
genieSource?: GoogleCloudAiplatformV1beta1GenieSource;
|
|
3119
|
+
/** Source information of Model Garden models. */
|
|
3120
|
+
modelGardenSource?: GoogleCloudAiplatformV1beta1ModelGardenSource;
|
|
3121
|
+
}
|
|
3050
3122
|
interface GoogleCloudAiplatformV1beta1ModelContainerSpec {
|
|
3051
3123
|
/** Immutable. Specifies arguments for the command that runs when the container starts. This overrides the container's [`CMD`](https://docs.docker.com/engine/reference/builder/#cmd). Specify this field as an array of executable and arguments, similar to a Docker `CMD`'s "default parameters" form. If you don't specify this field but do specify the command field, then the command from the `command` field runs without any additional arguments. See the [Kubernetes documentation about how the `command` and `args` fields interact with a container's `ENTRYPOINT` and `CMD`](https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#notes). If you don't specify this field and don't specify the `command` field, then the container's [`ENTRYPOINT`](https://docs.docker.com/engine/reference/builder/#cmd) and `CMD` determine what runs based on their default behavior. See the Docker documentation about [how `CMD` and `ENTRYPOINT` interact](https://docs.docker.com/engine/reference/builder/#understand-how-cmd-and-entrypoint-interact). In this field, you can reference [environment variables set by Vertex AI](https://cloud.google.com/vertex-ai/docs/predictions/custom-container-requirements#aip-variables) and environment variables set in the env field. You cannot reference environment variables set in the Docker image. In order for environment variables to be expanded, reference them by using the following syntax: $( VARIABLE_NAME) Note that this differs from Bash variable expansion, which does not use parentheses. If a variable cannot be resolved, the reference in the input string is used unchanged. To avoid variable expansion, you can escape this syntax with `$$`; for example: $$(VARIABLE_NAME) This field corresponds to the `args` field of the Kubernetes Containers [v1 core API](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.23/#container-v1-core). */
|
|
3052
3124
|
args?: string[];
|
|
@@ -3241,6 +3313,10 @@ declare namespace gapi.client {
|
|
|
3241
3313
|
/** Output only. The ID of the export format. The possible format IDs are: * `tflite` Used for Android mobile devices. * `edgetpu-tflite` Used for [Edge TPU](https://cloud.google.com/edge-tpu/) devices. * `tf-saved-model` A tensorflow model in SavedModel format. * `tf-js` A [TensorFlow.js](https://www.tensorflow.org/js) model that can be used in the browser and in Node.js using JavaScript. * `core-ml` Used for iOS mobile devices. * `custom-trained` A Model that was uploaded or trained by custom code. */
|
|
3242
3314
|
id?: string;
|
|
3243
3315
|
}
|
|
3316
|
+
interface GoogleCloudAiplatformV1beta1ModelGardenSource {
|
|
3317
|
+
/** Required. The model garden source model resource name. */
|
|
3318
|
+
publicModelName?: string;
|
|
3319
|
+
}
|
|
3244
3320
|
interface GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig {
|
|
3245
3321
|
/** Email alert config. */
|
|
3246
3322
|
emailAlertConfig?: GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfigEmailAlertConfig;
|
|
@@ -3748,6 +3824,8 @@ declare namespace gapi.client {
|
|
|
3748
3824
|
network?: string;
|
|
3749
3825
|
/** The spec of the pipeline. */
|
|
3750
3826
|
pipelineSpec?: {[P in string]: any};
|
|
3827
|
+
/** Optional. Whether to do component level validations before job creation. */
|
|
3828
|
+
preflightValidations?: boolean;
|
|
3751
3829
|
/** A list of names for the reserved ip ranges under the VPC network that can be used for this Pipeline Job's workload. If set, we will deploy the Pipeline Job's workload within the provided ip ranges. Otherwise, the job will be deployed to any ip ranges under the provided VPC network. Example: ['vertex-ai-ip-range']. */
|
|
3752
3830
|
reservedIpRanges?: string[];
|
|
3753
3831
|
/** Runtime config of the pipeline. */
|
|
@@ -3776,8 +3854,6 @@ declare namespace gapi.client {
|
|
|
3776
3854
|
taskDetails?: GoogleCloudAiplatformV1beta1PipelineTaskDetail[];
|
|
3777
3855
|
}
|
|
3778
3856
|
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfig {
|
|
3779
|
-
/** Optional. The default runtime for the PipelineJob. If not provided, Vertex Custom Job is used as the runtime. For Vertex Custom Job, please refer to https://cloud.google.com/vertex-ai/docs/training/overview */
|
|
3780
|
-
defaultRuntime?: GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigDefaultRuntime;
|
|
3781
3857
|
/** Represents the failure policy of a pipeline. Currently, the default of a pipeline is that the pipeline will continue to run until no more tasks can be executed, also known as PIPELINE_FAILURE_POLICY_FAIL_SLOW. However, if a pipeline is set to PIPELINE_FAILURE_POLICY_FAIL_FAST, it will stop scheduling any new tasks when a task has failed. Any scheduled tasks will continue to completion. */
|
|
3782
3858
|
failurePolicy?: string;
|
|
3783
3859
|
/** Required. A path in a Cloud Storage bucket, which will be treated as the root output directory of the pipeline. It is used by the system to generate the paths of output artifacts. The artifact paths are generated with a sub-path pattern `{job_id}/{task_id}/{output_key}` under the specified output directory. The service account specified in this pipeline must have the `storage.objects.get` and `storage.objects.create` permissions for this bucket. */
|
|
@@ -3791,18 +3867,10 @@ declare namespace gapi.client {
|
|
|
3791
3867
|
/** The runtime parameters of the PipelineJob. The parameters will be passed into PipelineJob.pipeline_spec to replace the placeholders at runtime. This field is used by pipelines built using `PipelineJob.pipeline_spec.schema_version` 2.1.0, such as pipelines built using Kubeflow Pipelines SDK 1.9 or higher and the v2 DSL. */
|
|
3792
3868
|
parameterValues?: {[P in string]: any};
|
|
3793
3869
|
}
|
|
3794
|
-
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigDefaultRuntime {
|
|
3795
|
-
/** Persistent resource based runtime detail. */
|
|
3796
|
-
persistentResourceRuntimeDetail?: GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigPersistentResourceRuntimeDetail;
|
|
3797
|
-
}
|
|
3798
3870
|
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigInputArtifact {
|
|
3799
3871
|
/** Artifact resource id from MLMD. Which is the last portion of an artifact resource name: `projects/{project}/locations/{location}/metadataStores/default/artifacts/{artifact_id}`. The artifact must stay within the same project, location and default metadatastore as the pipeline. */
|
|
3800
3872
|
artifactId?: string;
|
|
3801
3873
|
}
|
|
3802
|
-
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigPersistentResourceRuntimeDetail {
|
|
3803
|
-
/** Persistent resource name. Format: `projects/{project}/locations/{location}/persistentResources/{persistent_resource}` */
|
|
3804
|
-
persistentResourceName?: string;
|
|
3805
|
-
}
|
|
3806
3874
|
interface GoogleCloudAiplatformV1beta1PipelineTaskDetail {
|
|
3807
3875
|
/** Output only. Task create time. */
|
|
3808
3876
|
createTime?: string;
|
|
@@ -4159,11 +4227,17 @@ declare namespace gapi.client {
|
|
|
4159
4227
|
/** The prediction input. Supports HTTP headers and arbitrary data payload. A DeployedModel may have an upper limit on the number of instances it supports per request. When this limit it is exceeded for an AutoML model, the RawPredict method returns an error. When this limit is exceeded for a custom-trained model, the behavior varies depending on the model. You can specify the schema for each instance in the predict_schemata.instance_schema_uri field when you create a Model. This schema applies when you deploy the `Model` as a `DeployedModel` to an Endpoint and use the `RawPredict` method. */
|
|
4160
4228
|
httpBody?: GoogleApiHttpBody;
|
|
4161
4229
|
}
|
|
4230
|
+
interface GoogleCloudAiplatformV1beta1RayMetricSpec {
|
|
4231
|
+
/** Optional. Flag to disable the Ray metrics collection. */
|
|
4232
|
+
disabled?: boolean;
|
|
4233
|
+
}
|
|
4162
4234
|
interface GoogleCloudAiplatformV1beta1RaySpec {
|
|
4163
4235
|
/** Optional. This will be used to indicate which resource pool will serve as the Ray head node(the first node within that pool). Will use the machine from the first workerpool as the head node by default if this field isn't set. */
|
|
4164
4236
|
headNodeResourcePoolId?: string;
|
|
4165
4237
|
/** Optional. Default image for user to choose a preferred ML framework (for example, TensorFlow or Pytorch) by choosing from [Vertex prebuilt images](https://cloud.google.com/vertex-ai/docs/training/pre-built-containers). Either this or the resource_pool_images is required. Use this field if you need all the resource pools to have the same Ray image. Otherwise, use the {@code resource_pool_images} field. */
|
|
4166
4238
|
imageUri?: string;
|
|
4239
|
+
/** Optional. Ray metrics configurations. */
|
|
4240
|
+
rayMetricSpec?: GoogleCloudAiplatformV1beta1RayMetricSpec;
|
|
4167
4241
|
/** Optional. Required if image_uri isn't set. A map of resource_pool_id to prebuild Ray image if user need to use different images for different head/worker pools. This map needs to cover all the resource pool ids. Example: { "ray_head_node_pool": "head image" "ray_worker_node_pool1": "worker image" "ray_worker_node_pool2": "another worker image" } */
|
|
4168
4242
|
resourcePoolImages?: {[P in string]: string};
|
|
4169
4243
|
}
|
|
@@ -4319,6 +4393,12 @@ declare namespace gapi.client {
|
|
|
4319
4393
|
/** Optional. Whether to backfill missed runs when the schedule is resumed from PAUSED state. If set to true, all missed runs will be scheduled. New runs will be scheduled after the backfill is complete. This will also update Schedule.catch_up field. Default to false. */
|
|
4320
4394
|
catchUp?: boolean;
|
|
4321
4395
|
}
|
|
4396
|
+
interface GoogleCloudAiplatformV1beta1Retrieval {
|
|
4397
|
+
/** Optional. Disable using the result from this tool in detecting grounding attribution. This does not affect how the result is given to the model for generation. */
|
|
4398
|
+
disableAttribution?: boolean;
|
|
4399
|
+
/** Set to use data source powered by Vertex AI Search. */
|
|
4400
|
+
vertexAiSearch?: GoogleCloudAiplatformV1beta1VertexAISearch;
|
|
4401
|
+
}
|
|
4322
4402
|
interface GoogleCloudAiplatformV1beta1SafetyRating {
|
|
4323
4403
|
/** Output only. Indicates whether the content was filtered out because of this rating. */
|
|
4324
4404
|
blocked?: boolean;
|
|
@@ -4326,6 +4406,12 @@ declare namespace gapi.client {
|
|
|
4326
4406
|
category?: string;
|
|
4327
4407
|
/** Output only. Harm probability levels in the content. */
|
|
4328
4408
|
probability?: string;
|
|
4409
|
+
/** Output only. Harm probability score. */
|
|
4410
|
+
probabilityScore?: number;
|
|
4411
|
+
/** Output only. Harm severity levels in the content. */
|
|
4412
|
+
severity?: string;
|
|
4413
|
+
/** Output only. Harm severity score. */
|
|
4414
|
+
severityScore?: number;
|
|
4329
4415
|
}
|
|
4330
4416
|
interface GoogleCloudAiplatformV1beta1SafetySetting {
|
|
4331
4417
|
/** Required. Harm category. */
|
|
@@ -5751,6 +5837,14 @@ declare namespace gapi.client {
|
|
|
5751
5837
|
/** The nearest neighbors of the query entity. */
|
|
5752
5838
|
nearestNeighbors?: GoogleCloudAiplatformV1beta1NearestNeighbors;
|
|
5753
5839
|
}
|
|
5840
|
+
interface GoogleCloudAiplatformV1beta1Segment {
|
|
5841
|
+
/** Output only. End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero. */
|
|
5842
|
+
endIndex?: number;
|
|
5843
|
+
/** Output only. The index of a Part object within its parent Content object. */
|
|
5844
|
+
partIndex?: number;
|
|
5845
|
+
/** Output only. Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero. */
|
|
5846
|
+
startIndex?: number;
|
|
5847
|
+
}
|
|
5754
5848
|
interface GoogleCloudAiplatformV1beta1ServiceAccountSpec {
|
|
5755
5849
|
/** Required. If true, custom user-managed service account is enforced to run any workloads (for example, Vertex Jobs) on the resource. Otherwise, uses the [Vertex AI Custom Code Service Agent](https://cloud.google.com/vertex-ai/docs/general/access-control#service-agents). */
|
|
5756
5850
|
enableCustomServiceAccount?: boolean;
|
|
@@ -6211,8 +6305,12 @@ declare namespace gapi.client {
|
|
|
6211
6305
|
tokens?: string[];
|
|
6212
6306
|
}
|
|
6213
6307
|
interface GoogleCloudAiplatformV1beta1Tool {
|
|
6214
|
-
/** Optional. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum 64 function declarations can be provided. */
|
|
6308
|
+
/** Optional. Function tool type. One or more function declarations to be passed to the model along with the current user query. Model may decide to call a subset of these functions by populating FunctionCall in the response. User should provide a FunctionResponse for each function call in the next turn. Based on the function responses, Model will generate the final response back to the user. Maximum 64 function declarations can be provided. */
|
|
6215
6309
|
functionDeclarations?: GoogleCloudAiplatformV1beta1FunctionDeclaration[];
|
|
6310
|
+
/** Optional. GoogleSearchRetrieval tool type. Specialized retrieval tool that is powered by Google search. */
|
|
6311
|
+
googleSearchRetrieval?: GoogleCloudAiplatformV1beta1GoogleSearchRetrieval;
|
|
6312
|
+
/** 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. */
|
|
6313
|
+
retrieval?: GoogleCloudAiplatformV1beta1Retrieval;
|
|
6216
6314
|
}
|
|
6217
6315
|
interface GoogleCloudAiplatformV1beta1TrainingConfig {
|
|
6218
6316
|
/** The timeout hours for the CMLE training job, expressed in milli hours i.e. 1,000 value in this field means 1 hour. */
|
|
@@ -6433,6 +6531,10 @@ declare namespace gapi.client {
|
|
|
6433
6531
|
/** A string value. */
|
|
6434
6532
|
stringValue?: string;
|
|
6435
6533
|
}
|
|
6534
|
+
interface GoogleCloudAiplatformV1beta1VertexAISearch {
|
|
6535
|
+
/** Required. Fully-qualified Vertex AI Search's datastore resource ID. projects/<>/locations/<>/collections/<>/dataStores/<> */
|
|
6536
|
+
datastore?: string;
|
|
6537
|
+
}
|
|
6436
6538
|
interface GoogleCloudAiplatformV1beta1VideoMetadata {
|
|
6437
6539
|
/** Optional. The end offset of the video. */
|
|
6438
6540
|
endOffset?: string;
|
|
@@ -6675,7 +6777,7 @@ declare namespace gapi.client {
|
|
|
6675
6777
|
}
|
|
6676
6778
|
interface LanguageLabsAidaTrustRecitationProtoRecitationResult {
|
|
6677
6779
|
dynamicSegmentResults?: LanguageLabsAidaTrustRecitationProtoSegmentResult[];
|
|
6678
|
-
/** The recitation action for one given input. When its segments contain different actions, the overall action will be returned in the precedence of BLOCK > CITE > NO_ACTION. */
|
|
6780
|
+
/** The recitation action for one given input. When its segments contain different actions, the overall action will be returned in the precedence of BLOCK > CITE > NO_ACTION. When the given input is not found in any source, the recitation action will not be specified. */
|
|
6679
6781
|
recitationAction?: string;
|
|
6680
6782
|
trainingSegmentResults?: LanguageLabsAidaTrustRecitationProtoSegmentResult[];
|
|
6681
6783
|
}
|
|
@@ -6748,7 +6850,7 @@ declare namespace gapi.client {
|
|
|
6748
6850
|
}
|
|
6749
6851
|
interface LearningGenaiRecitationRecitationResult {
|
|
6750
6852
|
dynamicSegmentResults?: LearningGenaiRecitationSegmentResult[];
|
|
6751
|
-
/** The recitation action for one given input. When its segments contain different actions, the overall action will be returned in the precedence of BLOCK > CITE > NO_ACTION. */
|
|
6853
|
+
/** The recitation action for one given input. When its segments contain different actions, the overall action will be returned in the precedence of BLOCK > CITE > NO_ACTION. When the given input is not found in any source, the recitation action will be NO_ACTION. */
|
|
6752
6854
|
recitationAction?: string;
|
|
6753
6855
|
trainingSegmentResults?: LearningGenaiRecitationSegmentResult[];
|
|
6754
6856
|
}
|
|
@@ -6791,6 +6893,31 @@ declare namespace gapi.client {
|
|
|
6791
6893
|
dataProviderOutput?: LearningGenaiRootDataProviderOutput[];
|
|
6792
6894
|
metricOutput?: LearningGenaiRootMetricOutput[];
|
|
6793
6895
|
}
|
|
6896
|
+
interface LearningGenaiRootCodeyChatMetadata {
|
|
6897
|
+
/** Indicates the programming language of the code if the message is a code chunk. */
|
|
6898
|
+
codeLanguage?: string;
|
|
6899
|
+
}
|
|
6900
|
+
interface LearningGenaiRootCodeyCheckpoint {
|
|
6901
|
+
/** Metadata that describes what was truncated at this checkpoint. */
|
|
6902
|
+
codeyTruncatorMetadata?: LearningGenaiRootCodeyTruncatorMetadata;
|
|
6903
|
+
/** Current state of the sample after truncator. */
|
|
6904
|
+
currentSample?: string;
|
|
6905
|
+
/** Postprocessor run that yielded this checkpoint. */
|
|
6906
|
+
postInferenceStep?: string;
|
|
6907
|
+
}
|
|
6908
|
+
interface LearningGenaiRootCodeyCompletionMetadata {
|
|
6909
|
+
checkpoints?: LearningGenaiRootCodeyCheckpoint[];
|
|
6910
|
+
}
|
|
6911
|
+
interface LearningGenaiRootCodeyOutput {
|
|
6912
|
+
codeyChatMetadata?: LearningGenaiRootCodeyChatMetadata;
|
|
6913
|
+
codeyCompletionMetadata?: LearningGenaiRootCodeyCompletionMetadata;
|
|
6914
|
+
}
|
|
6915
|
+
interface LearningGenaiRootCodeyTruncatorMetadata {
|
|
6916
|
+
/** Index of the current sample that trims off truncated text. */
|
|
6917
|
+
cutoffIndex?: number;
|
|
6918
|
+
/** Text that was truncated at a specific checkpoint. */
|
|
6919
|
+
truncatedText?: string;
|
|
6920
|
+
}
|
|
6794
6921
|
interface LearningGenaiRootDataProviderOutput {
|
|
6795
6922
|
name?: string;
|
|
6796
6923
|
/** If set, this DataProvider failed and this is the error message. */
|
|
@@ -7025,6 +7152,8 @@ declare namespace gapi.client {
|
|
|
7025
7152
|
interface LearningServingLlmMessageMetadata {
|
|
7026
7153
|
/** Summary of classifier output. We attach this to all messages regardless of whether classification rules triggered or not. */
|
|
7027
7154
|
classifierSummary?: LearningGenaiRootClassifierOutputSummary;
|
|
7155
|
+
/** Contains metadata related to Codey Processors. */
|
|
7156
|
+
codeyOutput?: LearningGenaiRootCodeyOutput;
|
|
7028
7157
|
currentStreamTextLength?: number;
|
|
7029
7158
|
/** Whether the corresponding message has been deleted. */
|
|
7030
7159
|
deleted?: boolean;
|
|
@@ -7035,6 +7164,8 @@ declare namespace gapi.client {
|
|
|
7035
7164
|
/** NOT YET IMPLEMENTED. */
|
|
7036
7165
|
finishReason?: string;
|
|
7037
7166
|
groundingMetadata?: LearningGenaiRootGroundingMetadata;
|
|
7167
|
+
/** Applies to streaming response message only. Whether the message is a code. */
|
|
7168
|
+
isCode?: boolean;
|
|
7038
7169
|
/** Applies to Response message only. Indicates whether the message is a fallback and the response would have otherwise been empty. */
|
|
7039
7170
|
isFallback?: boolean;
|
|
7040
7171
|
/** Result from nlp_saft DetectLanguage method. Currently the predicted language code and language probability is used. */
|
|
@@ -11172,6 +11303,127 @@ declare namespace gapi.client {
|
|
|
11172
11303
|
): Request<GoogleLongrunningOperation>;
|
|
11173
11304
|
operations: OperationsResource;
|
|
11174
11305
|
}
|
|
11306
|
+
interface OperationsResource {
|
|
11307
|
+
/** 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`. */
|
|
11308
|
+
delete(request?: {
|
|
11309
|
+
/** V1 error format. */
|
|
11310
|
+
'$.xgafv'?: string;
|
|
11311
|
+
/** OAuth access token. */
|
|
11312
|
+
access_token?: string;
|
|
11313
|
+
/** Data format for response. */
|
|
11314
|
+
alt?: string;
|
|
11315
|
+
/** JSONP */
|
|
11316
|
+
callback?: string;
|
|
11317
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11318
|
+
fields?: string;
|
|
11319
|
+
/** 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. */
|
|
11320
|
+
key?: string;
|
|
11321
|
+
/** The name of the operation resource to be deleted. */
|
|
11322
|
+
name: string;
|
|
11323
|
+
/** OAuth 2.0 token for the current user. */
|
|
11324
|
+
oauth_token?: string;
|
|
11325
|
+
/** Returns response with indentations and line breaks. */
|
|
11326
|
+
prettyPrint?: boolean;
|
|
11327
|
+
/** 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. */
|
|
11328
|
+
quotaUser?: string;
|
|
11329
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11330
|
+
upload_protocol?: string;
|
|
11331
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11332
|
+
uploadType?: string;
|
|
11333
|
+
}): Request<{}>;
|
|
11334
|
+
/** 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. */
|
|
11335
|
+
get(request?: {
|
|
11336
|
+
/** V1 error format. */
|
|
11337
|
+
'$.xgafv'?: string;
|
|
11338
|
+
/** OAuth access token. */
|
|
11339
|
+
access_token?: string;
|
|
11340
|
+
/** Data format for response. */
|
|
11341
|
+
alt?: string;
|
|
11342
|
+
/** JSONP */
|
|
11343
|
+
callback?: string;
|
|
11344
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11345
|
+
fields?: string;
|
|
11346
|
+
/** 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. */
|
|
11347
|
+
key?: string;
|
|
11348
|
+
/** The name of the operation resource. */
|
|
11349
|
+
name: string;
|
|
11350
|
+
/** OAuth 2.0 token for the current user. */
|
|
11351
|
+
oauth_token?: string;
|
|
11352
|
+
/** Returns response with indentations and line breaks. */
|
|
11353
|
+
prettyPrint?: boolean;
|
|
11354
|
+
/** 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. */
|
|
11355
|
+
quotaUser?: string;
|
|
11356
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11357
|
+
upload_protocol?: string;
|
|
11358
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11359
|
+
uploadType?: string;
|
|
11360
|
+
}): Request<GoogleLongrunningOperation>;
|
|
11361
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
11362
|
+
list(request?: {
|
|
11363
|
+
/** V1 error format. */
|
|
11364
|
+
'$.xgafv'?: string;
|
|
11365
|
+
/** OAuth access token. */
|
|
11366
|
+
access_token?: string;
|
|
11367
|
+
/** Data format for response. */
|
|
11368
|
+
alt?: string;
|
|
11369
|
+
/** JSONP */
|
|
11370
|
+
callback?: string;
|
|
11371
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11372
|
+
fields?: string;
|
|
11373
|
+
/** The standard list filter. */
|
|
11374
|
+
filter?: string;
|
|
11375
|
+
/** 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. */
|
|
11376
|
+
key?: string;
|
|
11377
|
+
/** The name of the operation's parent resource. */
|
|
11378
|
+
name: string;
|
|
11379
|
+
/** OAuth 2.0 token for the current user. */
|
|
11380
|
+
oauth_token?: string;
|
|
11381
|
+
/** The standard list page size. */
|
|
11382
|
+
pageSize?: number;
|
|
11383
|
+
/** The standard list page token. */
|
|
11384
|
+
pageToken?: string;
|
|
11385
|
+
/** Returns response with indentations and line breaks. */
|
|
11386
|
+
prettyPrint?: boolean;
|
|
11387
|
+
/** 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. */
|
|
11388
|
+
quotaUser?: string;
|
|
11389
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11390
|
+
upload_protocol?: string;
|
|
11391
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11392
|
+
uploadType?: string;
|
|
11393
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
11394
|
+
/** 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. */
|
|
11395
|
+
wait(request?: {
|
|
11396
|
+
/** V1 error format. */
|
|
11397
|
+
'$.xgafv'?: string;
|
|
11398
|
+
/** OAuth access token. */
|
|
11399
|
+
access_token?: string;
|
|
11400
|
+
/** Data format for response. */
|
|
11401
|
+
alt?: string;
|
|
11402
|
+
/** JSONP */
|
|
11403
|
+
callback?: string;
|
|
11404
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
11405
|
+
fields?: string;
|
|
11406
|
+
/** 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. */
|
|
11407
|
+
key?: string;
|
|
11408
|
+
/** The name of the operation resource to wait on. */
|
|
11409
|
+
name: string;
|
|
11410
|
+
/** OAuth 2.0 token for the current user. */
|
|
11411
|
+
oauth_token?: string;
|
|
11412
|
+
/** Returns response with indentations and line breaks. */
|
|
11413
|
+
prettyPrint?: boolean;
|
|
11414
|
+
/** 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. */
|
|
11415
|
+
quotaUser?: string;
|
|
11416
|
+
/** 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. */
|
|
11417
|
+
timeout?: string;
|
|
11418
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
11419
|
+
upload_protocol?: string;
|
|
11420
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
11421
|
+
uploadType?: string;
|
|
11422
|
+
}): Request<GoogleLongrunningOperation>;
|
|
11423
|
+
}
|
|
11424
|
+
interface EvaluationTasksResource {
|
|
11425
|
+
operations: OperationsResource;
|
|
11426
|
+
}
|
|
11175
11427
|
interface OperationsResource {
|
|
11176
11428
|
/** 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`. */
|
|
11177
11429
|
cancel(request?: {
|
|
@@ -12858,7 +13110,7 @@ declare namespace gapi.client {
|
|
|
12858
13110
|
prettyPrint?: boolean;
|
|
12859
13111
|
/** 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. */
|
|
12860
13112
|
quotaUser?: string;
|
|
12861
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` */
|
|
13113
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `serviceAgentType` */
|
|
12862
13114
|
updateMask?: string;
|
|
12863
13115
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12864
13116
|
upload_protocol?: string;
|
|
@@ -12889,7 +13141,7 @@ declare namespace gapi.client {
|
|
|
12889
13141
|
prettyPrint?: boolean;
|
|
12890
13142
|
/** 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. */
|
|
12891
13143
|
quotaUser?: string;
|
|
12892
|
-
/** Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` */
|
|
13144
|
+
/** Field mask is used to specify the fields to be overwritten in the FeatureView resource by the update. The fields specified in the update_mask are relative to the resource, not the full request. A field will be overwritten if it is in the mask. If the user does not provide a mask then only the non-empty fields present in the request will be overwritten. Set the update_mask to `*` to override all fields. Updatable fields: * `labels` * `serviceAgentType` */
|
|
12893
13145
|
updateMask?: string;
|
|
12894
13146
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
12895
13147
|
upload_protocol?: string;
|
|
@@ -22546,8 +22798,6 @@ declare namespace gapi.client {
|
|
|
22546
22798
|
parent: string;
|
|
22547
22799
|
/** The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be less than 128 characters, and valid characters are `/a-z-/`. */
|
|
22548
22800
|
pipelineJobId?: string;
|
|
22549
|
-
/** Optional. Whether to do component level validations before job creation. Currently we only support Google First Party Component/Pipelines. */
|
|
22550
|
-
preflightValidations?: boolean;
|
|
22551
22801
|
/** Returns response with indentations and line breaks. */
|
|
22552
22802
|
prettyPrint?: boolean;
|
|
22553
22803
|
/** 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. */
|
|
@@ -22579,8 +22829,6 @@ declare namespace gapi.client {
|
|
|
22579
22829
|
parent: string;
|
|
22580
22830
|
/** The ID to use for the PipelineJob, which will become the final component of the PipelineJob name. If not provided, an ID will be automatically generated. This value should be less than 128 characters, and valid characters are `/a-z-/`. */
|
|
22581
22831
|
pipelineJobId?: string;
|
|
22582
|
-
/** Optional. Whether to do component level validations before job creation. Currently we only support Google First Party Component/Pipelines. */
|
|
22583
|
-
preflightValidations?: boolean;
|
|
22584
22832
|
/** Returns response with indentations and line breaks. */
|
|
22585
22833
|
prettyPrint?: boolean;
|
|
22586
22834
|
/** 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. */
|
|
@@ -27489,6 +27737,7 @@ declare namespace gapi.client {
|
|
|
27489
27737
|
deploymentResourcePools: DeploymentResourcePoolsResource;
|
|
27490
27738
|
edgeDevices: EdgeDevicesResource;
|
|
27491
27739
|
endpoints: EndpointsResource;
|
|
27740
|
+
evaluationTasks: EvaluationTasksResource;
|
|
27492
27741
|
exampleStores: ExampleStoresResource;
|
|
27493
27742
|
extensionControllers: ExtensionControllersResource;
|
|
27494
27743
|
extensions: ExtensionsResource;
|