@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20241007 → 0.0.20241026
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 +893 -22
- 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: 20241026
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -127,6 +127,10 @@ declare namespace gapi.client {
|
|
|
127
127
|
passedSemanticFilter?: boolean;
|
|
128
128
|
}
|
|
129
129
|
interface CloudAiLargeModelsVisionVideo {
|
|
130
|
+
/** Base 64 encoded video bytes. */
|
|
131
|
+
encodedVideo?: string;
|
|
132
|
+
/** Video encoding, for example "video/mp4". */
|
|
133
|
+
encoding?: string;
|
|
130
134
|
/** Path to another storage (typically Google Cloud Storage). */
|
|
131
135
|
uri?: string;
|
|
132
136
|
/** Raw bytes. */
|
|
@@ -745,6 +749,16 @@ declare namespace gapi.client {
|
|
|
745
749
|
/** Index in the input text where the claim starts (inclusive). */
|
|
746
750
|
startIndex?: number;
|
|
747
751
|
}
|
|
752
|
+
interface GoogleCloudAiplatformV1beta1ClientConnectionConfig {
|
|
753
|
+
/** Customizable online prediction request timeout. */
|
|
754
|
+
inferenceTimeout?: string;
|
|
755
|
+
}
|
|
756
|
+
interface GoogleCloudAiplatformV1beta1CodeExecutionResult {
|
|
757
|
+
/** Required. Outcome of the code execution. */
|
|
758
|
+
outcome?: string;
|
|
759
|
+
/** Optional. Contains stdout when code execution is successful, stderr or other description otherwise. */
|
|
760
|
+
output?: string;
|
|
761
|
+
}
|
|
748
762
|
interface GoogleCloudAiplatformV1beta1CoherenceInput {
|
|
749
763
|
/** Required. Coherence instance. */
|
|
750
764
|
instance?: GoogleCloudAiplatformV1beta1CoherenceInstance;
|
|
@@ -1412,6 +1426,8 @@ declare namespace gapi.client {
|
|
|
1412
1426
|
enableContainerLogging?: boolean;
|
|
1413
1427
|
/** Explanation configuration for this DeployedModel. When deploying a Model using EndpointService.DeployModel, this value overrides the value of Model.explanation_spec. All fields of explanation_spec are optional in the request. If a field of explanation_spec is not populated, the value of the same field of Model.explanation_spec is inherited. If the corresponding Model.explanation_spec is not populated, all fields of the explanation_spec will be used for the explanation configuration. */
|
|
1414
1428
|
explanationSpec?: GoogleCloudAiplatformV1beta1ExplanationSpec;
|
|
1429
|
+
/** Configuration for faster model deployment. */
|
|
1430
|
+
fasterDeploymentConfig?: GoogleCloudAiplatformV1beta1FasterDeploymentConfig;
|
|
1415
1431
|
/** Immutable. The ID of the DeployedModel. If not provided upon deployment, Vertex AI will generate a value for this ID. This value should be 1-10 characters, and valid characters are `/[0-9]/`. */
|
|
1416
1432
|
id?: string;
|
|
1417
1433
|
/** Required. The resource name of the Model that this is the deployment of. Note that the Model may be in a different location than the DeployedModel's Endpoint. The resource name may contain version id or version alias to specify the version. Example: `projects/{project}/locations/{location}/models/{model}@2` or `projects/{project}/locations/{location}/models/{model}@golden` if no version is specified, the default version will be deployed. */
|
|
@@ -1424,6 +1440,8 @@ declare namespace gapi.client {
|
|
|
1424
1440
|
serviceAccount?: string;
|
|
1425
1441
|
/** The resource name of the shared DeploymentResourcePool to deploy on. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
|
|
1426
1442
|
sharedResources?: string;
|
|
1443
|
+
/** System labels to apply to Model Garden deployments. System labels are managed by Google for internal use only. */
|
|
1444
|
+
systemLabels?: {[P in string]: string};
|
|
1427
1445
|
}
|
|
1428
1446
|
interface GoogleCloudAiplatformV1beta1DeployedModelRef {
|
|
1429
1447
|
/** Immutable. An ID of a DeployedModel in the above Endpoint. */
|
|
@@ -1559,6 +1577,8 @@ declare namespace gapi.client {
|
|
|
1559
1577
|
kmsKeyName?: string;
|
|
1560
1578
|
}
|
|
1561
1579
|
interface GoogleCloudAiplatformV1beta1Endpoint {
|
|
1580
|
+
/** Configurations that are applied to the endpoint for online prediction. */
|
|
1581
|
+
clientConnectionConfig?: GoogleCloudAiplatformV1beta1ClientConnectionConfig;
|
|
1562
1582
|
/** Output only. Timestamp when this Endpoint was created. */
|
|
1563
1583
|
createTime?: string;
|
|
1564
1584
|
/** Output only. DNS of the dedicated endpoint. Will only be populated if dedicated_endpoint_enabled is true. Format: `https://{endpoint_id}.{region}-{project_number}.prediction.vertexai.goog`. */
|
|
@@ -1837,6 +1857,12 @@ declare namespace gapi.client {
|
|
|
1837
1857
|
/** The namespace name. */
|
|
1838
1858
|
namespaceName?: string;
|
|
1839
1859
|
}
|
|
1860
|
+
interface GoogleCloudAiplatformV1beta1ExecutableCode {
|
|
1861
|
+
/** Required. The code to be executed. */
|
|
1862
|
+
code?: string;
|
|
1863
|
+
/** Required. Programming language of the `code`. */
|
|
1864
|
+
language?: string;
|
|
1865
|
+
}
|
|
1840
1866
|
interface GoogleCloudAiplatformV1beta1ExecuteExtensionRequest {
|
|
1841
1867
|
/** Required. The desired ID of the operation to be executed in this extension as defined in ExtensionOperation.operation_id. */
|
|
1842
1868
|
operationId?: string;
|
|
@@ -2134,7 +2160,7 @@ declare namespace gapi.client {
|
|
|
2134
2160
|
manifest?: GoogleCloudAiplatformV1beta1ExtensionManifest;
|
|
2135
2161
|
/** Identifier. The resource name of the Extension. */
|
|
2136
2162
|
name?: string;
|
|
2137
|
-
/** Optional. The PrivateServiceConnect config for the extension. If specified, the service endpoints associated with the Extension should be registered with private network access in the provided Service Directory
|
|
2163
|
+
/** Optional. The PrivateServiceConnect config for the extension. If specified, the service endpoints associated with the Extension should be [registered with private network access in the provided Service Directory](https://cloud.google.com/service-directory/docs/configuring-private-network-access). If the service contains more than one endpoint with a network, the service will arbitrarilty choose one of the endpoints to use for extension execution. */
|
|
2138
2164
|
privateServiceConnectConfig?: GoogleCloudAiplatformV1beta1ExtensionPrivateServiceConnectConfig;
|
|
2139
2165
|
/** Optional. Runtime config controlling the runtime behavior of this Extension. */
|
|
2140
2166
|
runtimeConfig?: GoogleCloudAiplatformV1beta1RuntimeConfig;
|
|
@@ -2181,6 +2207,10 @@ declare namespace gapi.client {
|
|
|
2181
2207
|
/** If present, the distance between the query vector and this fact vector. */
|
|
2182
2208
|
vectorDistance?: number;
|
|
2183
2209
|
}
|
|
2210
|
+
interface GoogleCloudAiplatformV1beta1FasterDeploymentConfig {
|
|
2211
|
+
/** If true, enable fast tryout feature for this deployed model. */
|
|
2212
|
+
fastTryoutEnabled?: boolean;
|
|
2213
|
+
}
|
|
2184
2214
|
interface GoogleCloudAiplatformV1beta1Feature {
|
|
2185
2215
|
/** Output only. Only applicable for Vertex AI Feature Store (Legacy). Timestamp when this EntityType was created. */
|
|
2186
2216
|
createTime?: string;
|
|
@@ -2190,6 +2220,8 @@ declare namespace gapi.client {
|
|
|
2190
2220
|
disableMonitoring?: boolean;
|
|
2191
2221
|
/** Used to perform a consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
2192
2222
|
etag?: string;
|
|
2223
|
+
/** Output only. Only applicable for Vertex AI Feature Store. The list of historical stats and anomalies. */
|
|
2224
|
+
featureStatsAndAnomaly?: GoogleCloudAiplatformV1beta1FeatureStatsAndAnomaly[];
|
|
2193
2225
|
/** Optional. The labels with user-defined metadata to organize your Features. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information on and examples of labels. No more than 64 user labels can be associated with one Feature (System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. */
|
|
2194
2226
|
labels?: {[P in string]: string};
|
|
2195
2227
|
/** Optional. Only applicable for Vertex AI Feature Store (Legacy). Deprecated: The custom monitoring configuration for this Feature, if not set, use the monitoring_config defined for the EntityType this Feature belongs to. Only Features with type (Feature.ValueType) BOOL, STRING, DOUBLE or INT64 can enable monitoring. If this is populated with FeaturestoreMonitoringConfig.disabled = true, snapshot analysis monitoring is disabled; if FeaturestoreMonitoringConfig.monitoring_interval specified, snapshot analysis monitoring is enabled. Otherwise, snapshot analysis monitoring config is same as the EntityType's this Feature belongs to. */
|
|
@@ -2241,12 +2273,58 @@ declare namespace gapi.client {
|
|
|
2241
2273
|
/** Optional. Column hosting timestamp values for a time-series source. Will be used to determine the latest `feature_values` for each entity. Optional. If not provided, column named `feature_timestamp` of type `TIMESTAMP` will be used. */
|
|
2242
2274
|
timestampColumn?: string;
|
|
2243
2275
|
}
|
|
2276
|
+
interface GoogleCloudAiplatformV1beta1FeatureMonitor {
|
|
2277
|
+
/** Output only. Timestamp when this FeatureMonitor was created. */
|
|
2278
|
+
createTime?: string;
|
|
2279
|
+
/** Optional. Description of the FeatureMonitor. */
|
|
2280
|
+
description?: string;
|
|
2281
|
+
/** Optional. Used to perform consistent read-modify-write updates. If not set, a blind "overwrite" update happens. */
|
|
2282
|
+
etag?: string;
|
|
2283
|
+
/** Required. Feature selection config for the FeatureMonitor. */
|
|
2284
|
+
featureSelectionConfig?: GoogleCloudAiplatformV1beta1FeatureSelectionConfig;
|
|
2285
|
+
/** Optional. The labels with user-defined metadata to organize your FeatureMonitor. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information on and examples of labels. No more than 64 user labels can be associated with one FeatureMonitor(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. */
|
|
2286
|
+
labels?: {[P in string]: string};
|
|
2287
|
+
/** Identifier. Name of the FeatureMonitor. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}/featureMonitors/{featureMonitor}` */
|
|
2288
|
+
name?: string;
|
|
2289
|
+
/** Required. Schedule config for the FeatureMonitor. */
|
|
2290
|
+
scheduleConfig?: GoogleCloudAiplatformV1beta1ScheduleConfig;
|
|
2291
|
+
/** Output only. Timestamp when this FeatureMonitor was last updated. */
|
|
2292
|
+
updateTime?: string;
|
|
2293
|
+
}
|
|
2244
2294
|
interface GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly {
|
|
2245
2295
|
/** Output only. The stats and anomalies generated at specific timestamp. */
|
|
2246
2296
|
featureStatsAnomaly?: GoogleCloudAiplatformV1beta1FeatureStatsAnomaly;
|
|
2247
2297
|
/** Output only. The objective for each stats. */
|
|
2248
2298
|
objective?: string;
|
|
2249
2299
|
}
|
|
2300
|
+
interface GoogleCloudAiplatformV1beta1FeatureMonitorJob {
|
|
2301
|
+
/** Output only. Timestamp when this FeatureMonitorJob was created. Creation of a FeatureMonitorJob means that the job is pending / waiting for sufficient resources but may not have started running yet. */
|
|
2302
|
+
createTime?: string;
|
|
2303
|
+
/** Optional. Description of the FeatureMonitor. */
|
|
2304
|
+
description?: string;
|
|
2305
|
+
/** Output only. FeatureMonitorJob ID comparing to which the drift is calculated. */
|
|
2306
|
+
driftBaseFeatureMonitorJobId?: string;
|
|
2307
|
+
/** Output only. Data snapshot time comparing to which the drift is calculated. */
|
|
2308
|
+
driftBaseSnapshotTime?: string;
|
|
2309
|
+
/** Output only. Feature selection config used when creating FeatureMonitorJob. */
|
|
2310
|
+
featureSelectionConfig?: GoogleCloudAiplatformV1beta1FeatureSelectionConfig;
|
|
2311
|
+
/** Output only. Final status of the FeatureMonitorJob. */
|
|
2312
|
+
finalStatus?: GoogleRpcStatus;
|
|
2313
|
+
/** Output only. Summary from the FeatureMonitorJob. */
|
|
2314
|
+
jobSummary?: GoogleCloudAiplatformV1beta1FeatureMonitorJobJobSummary;
|
|
2315
|
+
/** Optional. The labels with user-defined metadata to organize your FeatureMonitorJob. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information on and examples of labels. No more than 64 user labels can be associated with one FeatureMonitor(System labels are excluded)." System reserved label keys are prefixed with "aiplatform.googleapis.com/" and are immutable. */
|
|
2316
|
+
labels?: {[P in string]: string};
|
|
2317
|
+
/** Identifier. Name of the FeatureMonitorJob. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}/featureMonitors/{feature_monitor}/featureMonitorJobs/{feature_monitor_job}`. */
|
|
2318
|
+
name?: string;
|
|
2319
|
+
/** Output only. Trigger type of the Feature Monitor Job. */
|
|
2320
|
+
triggerType?: string;
|
|
2321
|
+
}
|
|
2322
|
+
interface GoogleCloudAiplatformV1beta1FeatureMonitorJobJobSummary {
|
|
2323
|
+
/** Output only. Features and their stats and anomalies */
|
|
2324
|
+
featureStatsAndAnomalies?: GoogleCloudAiplatformV1beta1FeatureStatsAndAnomaly[];
|
|
2325
|
+
/** Output only. BigQuery slot milliseconds consumed. */
|
|
2326
|
+
totalSlotMs?: string;
|
|
2327
|
+
}
|
|
2250
2328
|
interface GoogleCloudAiplatformV1beta1FeatureNoiseSigma {
|
|
2251
2329
|
/** Noise sigma per feature. No noise is added to features that are not set. */
|
|
2252
2330
|
noiseSigma?: GoogleCloudAiplatformV1beta1FeatureNoiseSigmaNoiseSigmaForFeature[];
|
|
@@ -2310,10 +2388,38 @@ declare namespace gapi.client {
|
|
|
2310
2388
|
enabled?: boolean;
|
|
2311
2389
|
}
|
|
2312
2390
|
interface GoogleCloudAiplatformV1beta1FeatureOnlineStoreOptimized {}
|
|
2391
|
+
interface GoogleCloudAiplatformV1beta1FeatureSelectionConfig {
|
|
2392
|
+
/** Optional. A list of features to be monitored and each feature's drift threshold. */
|
|
2393
|
+
featureConfigs?: GoogleCloudAiplatformV1beta1FeatureSelectionConfigFeatureConfig[];
|
|
2394
|
+
}
|
|
2395
|
+
interface GoogleCloudAiplatformV1beta1FeatureSelectionConfigFeatureConfig {
|
|
2396
|
+
/** Optional. Drift threshold. If calculated difference with baseline data larger than threshold, it will be considered as the feature has drift. If not present, the threshold will be default to 0.3. */
|
|
2397
|
+
driftThreshold?: number;
|
|
2398
|
+
/** Required. The ID of the feature resource. Final component of the Feature's resource name. */
|
|
2399
|
+
featureId?: string;
|
|
2400
|
+
}
|
|
2313
2401
|
interface GoogleCloudAiplatformV1beta1FeatureSelector {
|
|
2314
2402
|
/** Required. Matches Features based on ID. */
|
|
2315
2403
|
idMatcher?: GoogleCloudAiplatformV1beta1IdMatcher;
|
|
2316
2404
|
}
|
|
2405
|
+
interface GoogleCloudAiplatformV1beta1FeatureStatsAndAnomaly {
|
|
2406
|
+
/** Deviation from the current stats to baseline stats. 1. For categorical feature, the distribution distance is calculated by L-inifinity norm. 2. For numerical feature, the distribution distance is calculated by Jensen–Shannon divergence. */
|
|
2407
|
+
distributionDeviation?: number;
|
|
2408
|
+
/** If set to true, indicates current stats is detected as and comparing with baseline stats. */
|
|
2409
|
+
driftDetected?: boolean;
|
|
2410
|
+
/** This is the threshold used when detecting drifts, which is set in FeatureMonitor.FeatureSelectionConfig.FeatureConfig.drift_threshold */
|
|
2411
|
+
driftDetectionThreshold?: number;
|
|
2412
|
+
/** Feature Id. */
|
|
2413
|
+
featureId?: string;
|
|
2414
|
+
/** The ID of the FeatureMonitor that this FeatureStatsAndAnomaly generated according to. */
|
|
2415
|
+
featureMonitorId?: string;
|
|
2416
|
+
/** The ID of the FeatureMonitorJob that generated this FeatureStatsAndAnomaly. */
|
|
2417
|
+
featureMonitorJobId?: string;
|
|
2418
|
+
/** Feature stats. e.g. histogram buckets. In the format of tensorflow.metadata.v0.DatasetFeatureStatistics. */
|
|
2419
|
+
featureStats?: any;
|
|
2420
|
+
/** The timestamp we take snapshot for feature values to generate stats. */
|
|
2421
|
+
statsTime?: string;
|
|
2422
|
+
}
|
|
2317
2423
|
interface GoogleCloudAiplatformV1beta1FeatureStatsAnomaly {
|
|
2318
2424
|
/** This is the threshold used when detecting anomalies. The threshold can be changed by user, so this one might be different from ThresholdConfig.value. */
|
|
2319
2425
|
anomalyDetectionThreshold?: number;
|
|
@@ -2610,6 +2716,10 @@ declare namespace gapi.client {
|
|
|
2610
2716
|
/** Feature value. */
|
|
2611
2717
|
value?: GoogleCloudAiplatformV1beta1FeatureValue;
|
|
2612
2718
|
}
|
|
2719
|
+
interface GoogleCloudAiplatformV1beta1FetchPredictOperationRequest {
|
|
2720
|
+
/** Required. The server-assigned name for the operation. */
|
|
2721
|
+
operationName?: string;
|
|
2722
|
+
}
|
|
2613
2723
|
interface GoogleCloudAiplatformV1beta1FileData {
|
|
2614
2724
|
/** Required. URI. */
|
|
2615
2725
|
fileUri?: string;
|
|
@@ -2935,6 +3045,8 @@ declare namespace gapi.client {
|
|
|
2935
3045
|
web?: GoogleCloudAiplatformV1beta1GroundingChunkWeb;
|
|
2936
3046
|
}
|
|
2937
3047
|
interface GoogleCloudAiplatformV1beta1GroundingChunkRetrievedContext {
|
|
3048
|
+
/** Text of the attribution. */
|
|
3049
|
+
text?: string;
|
|
2938
3050
|
/** Title of the attribution. */
|
|
2939
3051
|
title?: string;
|
|
2940
3052
|
/** URI reference of the attribution. */
|
|
@@ -3097,9 +3209,9 @@ declare namespace gapi.client {
|
|
|
3097
3209
|
jiraSource?: GoogleCloudAiplatformV1beta1JiraSource;
|
|
3098
3210
|
/** Optional. The max number of queries per minute that this job is allowed to make to the embedding model specified on the corpus. This value is specific to this job and not shared across other import jobs. Consult the Quotas page on the project to set an appropriate value here. If unspecified, a default value of 1,000 QPM would be used. */
|
|
3099
3211
|
maxEmbeddingRequestsPerMin?: number;
|
|
3100
|
-
/** The BigQuery destination to write partial failures to. It should be a bigquery table resource name (e.g. "bq://projectId.bqDatasetId.bqTableId").
|
|
3212
|
+
/** The BigQuery destination to write partial failures to. It should be a bigquery table resource name (e.g. "bq://projectId.bqDatasetId.bqTableId"). The dataset must exist. If the table does not exist, it will be created with the expected schema. If the table exists, the schema will be validated and data will be added to this existing table. Deprecated. Prefer to use `import_result_bq_sink`. */
|
|
3101
3213
|
partialFailureBigquerySink?: GoogleCloudAiplatformV1beta1BigQueryDestination;
|
|
3102
|
-
/** The Cloud Storage path to write partial failures to. */
|
|
3214
|
+
/** The Cloud Storage path to write partial failures to. Deprecated. Prefer to use `import_result_gcs_sink`. */
|
|
3103
3215
|
partialFailureGcsSink?: GoogleCloudAiplatformV1beta1GcsDestination;
|
|
3104
3216
|
/** Specifies the size and overlap of chunks after importing RagFiles. */
|
|
3105
3217
|
ragFileChunkingConfig?: GoogleCloudAiplatformV1beta1RagFileChunkingConfig;
|
|
@@ -3289,7 +3401,7 @@ declare namespace gapi.client {
|
|
|
3289
3401
|
jiraQueries?: GoogleCloudAiplatformV1beta1JiraSourceJiraQueries[];
|
|
3290
3402
|
}
|
|
3291
3403
|
interface GoogleCloudAiplatformV1beta1JiraSourceJiraQueries {
|
|
3292
|
-
/** Required. The SecretManager secret version resource name (e.g. projects/{project}/secrets/{secret}/versions/{version}) storing the Jira API key (https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/). */
|
|
3404
|
+
/** Required. The SecretManager secret version resource name (e.g. projects/{project}/secrets/{secret}/versions/{version}) storing the Jira API key. See [Manage API tokens for your Atlassian account](https://support.atlassian.com/atlassian-account/docs/manage-api-tokens-for-your-atlassian-account/). */
|
|
3293
3405
|
apiKeyConfig?: GoogleCloudAiplatformV1beta1ApiAuthApiKeyConfig;
|
|
3294
3406
|
/** A list of custom Jira queries to import. For information about JQL (Jira Query Language), see https://support.atlassian.com/jira-service-management-cloud/docs/use-advanced-search-with-jira-query-language-jql/ */
|
|
3295
3407
|
customQueries?: string[];
|
|
@@ -3408,6 +3520,18 @@ declare namespace gapi.client {
|
|
|
3408
3520
|
/** A token, which can be sent as ListFeatureGroupsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
3409
3521
|
nextPageToken?: string;
|
|
3410
3522
|
}
|
|
3523
|
+
interface GoogleCloudAiplatformV1beta1ListFeatureMonitorJobsResponse {
|
|
3524
|
+
/** The FeatureMonitorJobs matching the request. */
|
|
3525
|
+
featureMonitorJobs?: GoogleCloudAiplatformV1beta1FeatureMonitorJob[];
|
|
3526
|
+
/** A token, which can be sent as ListFeatureMonitorJobsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
3527
|
+
nextPageToken?: string;
|
|
3528
|
+
}
|
|
3529
|
+
interface GoogleCloudAiplatformV1beta1ListFeatureMonitorsResponse {
|
|
3530
|
+
/** The FeatureMonitors matching the request. */
|
|
3531
|
+
featureMonitors?: GoogleCloudAiplatformV1beta1FeatureMonitor[];
|
|
3532
|
+
/** A token, which can be sent as ListFeatureMonitorsRequest.page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
|
3533
|
+
nextPageToken?: string;
|
|
3534
|
+
}
|
|
3411
3535
|
interface GoogleCloudAiplatformV1beta1ListFeatureOnlineStoresResponse {
|
|
3412
3536
|
/** The FeatureOnlineStores matching the request. */
|
|
3413
3537
|
featureOnlineStores?: GoogleCloudAiplatformV1beta1FeatureOnlineStore[];
|
|
@@ -4761,6 +4885,8 @@ declare namespace gapi.client {
|
|
|
4761
4885
|
interface GoogleCloudAiplatformV1beta1NotebookExecutionJob {
|
|
4762
4886
|
/** Output only. Timestamp when this NotebookExecutionJob was created. */
|
|
4763
4887
|
createTime?: string;
|
|
4888
|
+
/** The custom compute configuration for an execution job. */
|
|
4889
|
+
customEnvironmentSpec?: GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec;
|
|
4764
4890
|
/** The Dataform Repository pointing to a single file notebook repository. */
|
|
4765
4891
|
dataformRepositorySource?: GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource;
|
|
4766
4892
|
/** The contents of an input notebook file. */
|
|
@@ -4794,6 +4920,14 @@ declare namespace gapi.client {
|
|
|
4794
4920
|
/** Output only. Timestamp when this NotebookExecutionJob was most recently updated. */
|
|
4795
4921
|
updateTime?: string;
|
|
4796
4922
|
}
|
|
4923
|
+
interface GoogleCloudAiplatformV1beta1NotebookExecutionJobCustomEnvironmentSpec {
|
|
4924
|
+
/** The specification of a single machine for the execution job. */
|
|
4925
|
+
machineSpec?: GoogleCloudAiplatformV1beta1MachineSpec;
|
|
4926
|
+
/** The network configuration to use for the execution job. */
|
|
4927
|
+
networkSpec?: GoogleCloudAiplatformV1beta1NetworkSpec;
|
|
4928
|
+
/** The specification of a persistent disk to attach for the execution job. */
|
|
4929
|
+
persistentDiskSpec?: GoogleCloudAiplatformV1beta1PersistentDiskSpec;
|
|
4930
|
+
}
|
|
4797
4931
|
interface GoogleCloudAiplatformV1beta1NotebookExecutionJobDataformRepositorySource {
|
|
4798
4932
|
/** The commit SHA to read repository with. If unset, the file will be read at HEAD. */
|
|
4799
4933
|
commitSha?: string;
|
|
@@ -4987,6 +5121,10 @@ declare namespace gapi.client {
|
|
|
4987
5121
|
version?: number;
|
|
4988
5122
|
}
|
|
4989
5123
|
interface GoogleCloudAiplatformV1beta1Part {
|
|
5124
|
+
/** Optional. Result of executing the [ExecutableCode]. */
|
|
5125
|
+
codeExecutionResult?: GoogleCloudAiplatformV1beta1CodeExecutionResult;
|
|
5126
|
+
/** Optional. Code generated by the model that is meant to be executed. */
|
|
5127
|
+
executableCode?: GoogleCloudAiplatformV1beta1ExecutableCode;
|
|
4990
5128
|
/** Optional. URI based data. */
|
|
4991
5129
|
fileData?: GoogleCloudAiplatformV1beta1FileData;
|
|
4992
5130
|
/** Optional. A predicted [FunctionCall] returned from the model that contains a string representing the [FunctionDeclaration.name] with the parameters and their values. */
|
|
@@ -5113,6 +5251,8 @@ declare namespace gapi.client {
|
|
|
5113
5251
|
taskDetails?: GoogleCloudAiplatformV1beta1PipelineTaskDetail[];
|
|
5114
5252
|
}
|
|
5115
5253
|
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfig {
|
|
5254
|
+
/** Optional. The default runtime for the PipelineJob. If not provided, Vertex Custom Job(on demand) is used as the runtime. For Vertex Custom Job, please refer to https://cloud.google.com/vertex-ai/docs/training/overview. */
|
|
5255
|
+
defaultRuntime?: GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigDefaultRuntime;
|
|
5116
5256
|
/** 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. */
|
|
5117
5257
|
failurePolicy?: string;
|
|
5118
5258
|
/** 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. */
|
|
@@ -5126,10 +5266,22 @@ declare namespace gapi.client {
|
|
|
5126
5266
|
/** 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. */
|
|
5127
5267
|
parameterValues?: {[P in string]: any};
|
|
5128
5268
|
}
|
|
5269
|
+
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigDefaultRuntime {
|
|
5270
|
+
/** Persistent resource based runtime detail. */
|
|
5271
|
+
persistentResourceRuntimeDetail?: GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigPersistentResourceRuntimeDetail;
|
|
5272
|
+
}
|
|
5129
5273
|
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigInputArtifact {
|
|
5130
5274
|
/** 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. */
|
|
5131
5275
|
artifactId?: string;
|
|
5132
5276
|
}
|
|
5277
|
+
interface GoogleCloudAiplatformV1beta1PipelineJobRuntimeConfigPersistentResourceRuntimeDetail {
|
|
5278
|
+
/** Persistent resource name. Format: `projects/{project}/locations/{location}/persistentResources/{persistent_resource}` */
|
|
5279
|
+
persistentResourceName?: string;
|
|
5280
|
+
/** Specifies the behavior to take if the timeout is reached. */
|
|
5281
|
+
taskResourceUnavailableTimeoutBehavior?: string;
|
|
5282
|
+
/** The max time a pipeline task waits for the required CPU, memory, or accelerator resource to become available from the specified persistent resource. Default wait time is 0. */
|
|
5283
|
+
taskResourceUnavailableWaitTimeMs?: string;
|
|
5284
|
+
}
|
|
5133
5285
|
interface GoogleCloudAiplatformV1beta1PipelineTaskDetail {
|
|
5134
5286
|
/** Output only. Task create time. */
|
|
5135
5287
|
createTime?: string;
|
|
@@ -5253,6 +5405,12 @@ declare namespace gapi.client {
|
|
|
5253
5405
|
key?: string;
|
|
5254
5406
|
}
|
|
5255
5407
|
interface GoogleCloudAiplatformV1beta1PredictLongRunningMetadata {}
|
|
5408
|
+
interface GoogleCloudAiplatformV1beta1PredictLongRunningRequest {
|
|
5409
|
+
/** Required. The instances that are the input to the prediction call. A DeployedModel may have an upper limit on the number of instances it supports per request, and when it is exceeded the prediction call errors in case of AutoML Models, or, in case of customer created Models, the behaviour is as documented by that Model. The schema of any single instance may be specified via Endpoint's DeployedModels' Model's PredictSchemata's instance_schema_uri. */
|
|
5410
|
+
instances?: any[];
|
|
5411
|
+
/** Optional. The parameters that govern the prediction. The schema of the parameters may be specified via Endpoint's DeployedModels' Model's PredictSchemata's parameters_schema_uri. */
|
|
5412
|
+
parameters?: any;
|
|
5413
|
+
}
|
|
5256
5414
|
interface GoogleCloudAiplatformV1beta1PredictLongRunningResponse {
|
|
5257
5415
|
/** The response of the video generation prediction. */
|
|
5258
5416
|
generateVideoResponse?: GoogleCloudAiplatformV1beta1GenerateVideoResponse;
|
|
@@ -5346,7 +5504,7 @@ declare namespace gapi.client {
|
|
|
5346
5504
|
projectId?: string;
|
|
5347
5505
|
}
|
|
5348
5506
|
interface GoogleCloudAiplatformV1beta1PscInterfaceConfig {
|
|
5349
|
-
/** Optional. The
|
|
5507
|
+
/** Optional. The name of the Compute Engine [network attachment](https://cloud.google.com/vpc/docs/about-network-attachments) to attach to the resource within the region and user project. To specify this field, you must have already [created a network attachment] (https://cloud.google.com/vpc/docs/create-manage-network-attachments#create-network-attachments). This field is only used for resources using PSC-I. */
|
|
5350
5508
|
networkAttachment?: string;
|
|
5351
5509
|
}
|
|
5352
5510
|
interface GoogleCloudAiplatformV1beta1PublisherModel {
|
|
@@ -5426,7 +5584,7 @@ declare namespace gapi.client {
|
|
|
5426
5584
|
title?: string;
|
|
5427
5585
|
}
|
|
5428
5586
|
interface GoogleCloudAiplatformV1beta1PublisherModelCallToActionDeployDeployMetadata {
|
|
5429
|
-
/** Optional. Labels for the deployment. For managing deployment config like verifying, source of deployment config, etc. */
|
|
5587
|
+
/** Optional. Labels for the deployment config. For managing deployment config like verifying, source of deployment config, etc. */
|
|
5430
5588
|
labels?: {[P in string]: string};
|
|
5431
5589
|
/** Optional. Sample request for deployed endpoint. */
|
|
5432
5590
|
sampleRequest?: string;
|
|
@@ -5572,6 +5730,8 @@ declare namespace gapi.client {
|
|
|
5572
5730
|
steps?: GoogleCloudAiplatformV1beta1Content[];
|
|
5573
5731
|
}
|
|
5574
5732
|
interface GoogleCloudAiplatformV1beta1QueryReasoningEngineRequest {
|
|
5733
|
+
/** Optional. Class method to be used for the query. It is optional and defaults to "query" if unspecified. */
|
|
5734
|
+
classMethod?: string;
|
|
5575
5735
|
/** Optional. Input content provided by users in JSON object format. Examples include text query, function calling parameters, media bytes, etc. */
|
|
5576
5736
|
input?: {[P in string]: any};
|
|
5577
5737
|
}
|
|
@@ -5867,6 +6027,8 @@ declare namespace gapi.client {
|
|
|
5867
6027
|
headNodeResourcePoolId?: string;
|
|
5868
6028
|
/** 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. */
|
|
5869
6029
|
imageUri?: string;
|
|
6030
|
+
/** Optional. Use if you want to mount to any NFS storages. */
|
|
6031
|
+
nfsMounts?: GoogleCloudAiplatformV1beta1NfsMount[];
|
|
5870
6032
|
/** Optional. OSS Ray logging configurations. */
|
|
5871
6033
|
rayLogsSpec?: GoogleCloudAiplatformV1beta1RayLogsSpec;
|
|
5872
6034
|
/** Optional. Ray metrics configurations. */
|
|
@@ -5963,7 +6125,7 @@ declare namespace gapi.client {
|
|
|
5963
6125
|
updateTime?: string;
|
|
5964
6126
|
}
|
|
5965
6127
|
interface GoogleCloudAiplatformV1beta1ReasoningEngineSpec {
|
|
5966
|
-
/** Optional. Declarations for object class methods. */
|
|
6128
|
+
/** Optional. Declarations for object class methods in OpenAPI specification format. */
|
|
5967
6129
|
classMethods?: Array<{[P in string]: any}>;
|
|
5968
6130
|
/** Required. User provided package spec of the ReasoningEngine. */
|
|
5969
6131
|
packageSpec?: GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec;
|
|
@@ -6313,6 +6475,10 @@ declare namespace gapi.client {
|
|
|
6313
6475
|
/** Output only. Timestamp when this Schedule was updated. */
|
|
6314
6476
|
updateTime?: string;
|
|
6315
6477
|
}
|
|
6478
|
+
interface GoogleCloudAiplatformV1beta1ScheduleConfig {
|
|
6479
|
+
/** 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 * * * *". */
|
|
6480
|
+
cron?: string;
|
|
6481
|
+
}
|
|
6316
6482
|
interface GoogleCloudAiplatformV1beta1ScheduleRunResponse {
|
|
6317
6483
|
/** The response of the scheduled run. */
|
|
6318
6484
|
runResponse?: string;
|
|
@@ -7013,6 +7179,8 @@ declare namespace gapi.client {
|
|
|
7013
7179
|
multimodalPrompt?: GoogleCloudAiplatformV1beta1SchemaPromptSpecMultimodalPrompt;
|
|
7014
7180
|
/** The prompt variation that stores preambles in separate fields. */
|
|
7015
7181
|
structuredPrompt?: GoogleCloudAiplatformV1beta1SchemaPromptSpecStructuredPrompt;
|
|
7182
|
+
/** The prompt variation for Translation use case. */
|
|
7183
|
+
translationPrompt?: GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationPrompt;
|
|
7016
7184
|
}
|
|
7017
7185
|
interface GoogleCloudAiplatformV1beta1SchemaPromptInstancePromptExecution {
|
|
7018
7186
|
/** Maps variable names to their value. */
|
|
@@ -7048,18 +7216,74 @@ declare namespace gapi.client {
|
|
|
7048
7216
|
/** 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. */
|
|
7049
7217
|
tools?: GoogleCloudAiplatformV1beta1Tool[];
|
|
7050
7218
|
}
|
|
7219
|
+
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecReferenceSentencePair {
|
|
7220
|
+
/** Source sentence in the sentence pair. */
|
|
7221
|
+
sourceSentence?: string;
|
|
7222
|
+
/** Target sentence in the sentence pair. */
|
|
7223
|
+
targetSentence?: string;
|
|
7224
|
+
}
|
|
7225
|
+
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecReferenceSentencePairList {
|
|
7226
|
+
/** Reference sentence pairs. */
|
|
7227
|
+
referenceSentencePairs?: GoogleCloudAiplatformV1beta1SchemaPromptSpecReferenceSentencePair[];
|
|
7228
|
+
}
|
|
7051
7229
|
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecStructuredPrompt {
|
|
7052
7230
|
/** Preamble: The context of the prompt. */
|
|
7053
7231
|
context?: GoogleCloudAiplatformV1beta1Content;
|
|
7054
7232
|
/** Preamble: A set of examples for expected model response. */
|
|
7055
7233
|
examples?: GoogleCloudAiplatformV1beta1SchemaPromptSpecPartList[];
|
|
7234
|
+
/** Preamble: For infill prompt, the prefix before expected model response. */
|
|
7235
|
+
infillPrefix?: string;
|
|
7236
|
+
/** Preamble: For infill prompt, the suffix after expected model response. */
|
|
7237
|
+
infillSuffix?: string;
|
|
7056
7238
|
/** Preamble: The input prefixes before each example input. */
|
|
7057
7239
|
inputPrefixes?: string[];
|
|
7058
7240
|
/** Preamble: The output prefixes before each example output. */
|
|
7059
7241
|
outputPrefixes?: string[];
|
|
7242
|
+
/** Preamble: The input test data for prediction. Each PartList in this field represents one text-only input set for a single model request. */
|
|
7243
|
+
predictionInputs?: GoogleCloudAiplatformV1beta1SchemaPromptSpecPartList[];
|
|
7060
7244
|
/** The prompt message. */
|
|
7061
7245
|
promptMessage?: GoogleCloudAiplatformV1beta1SchemaPromptSpecPromptMessage;
|
|
7062
7246
|
}
|
|
7247
|
+
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationExample {
|
|
7248
|
+
/** The reference sentences from inline text. */
|
|
7249
|
+
referenceSentencePairLists?: GoogleCloudAiplatformV1beta1SchemaPromptSpecReferenceSentencePairList[];
|
|
7250
|
+
/** The reference sentences from file. */
|
|
7251
|
+
referenceSentencesFileInputs?: GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationSentenceFileInput[];
|
|
7252
|
+
}
|
|
7253
|
+
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationFileInputSource {
|
|
7254
|
+
/** The file's contents. */
|
|
7255
|
+
content?: string;
|
|
7256
|
+
/** The file's display name. */
|
|
7257
|
+
displayName?: string;
|
|
7258
|
+
/** The file's mime type. */
|
|
7259
|
+
mimeType?: string;
|
|
7260
|
+
}
|
|
7261
|
+
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationGcsInputSource {
|
|
7262
|
+
/** Source data URI. For example, `gs://my_bucket/my_object`. */
|
|
7263
|
+
inputUri?: string;
|
|
7264
|
+
}
|
|
7265
|
+
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationOption {
|
|
7266
|
+
/** How many shots to use. */
|
|
7267
|
+
numberOfShots?: number;
|
|
7268
|
+
}
|
|
7269
|
+
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationPrompt {
|
|
7270
|
+
/** The translation example. */
|
|
7271
|
+
example?: GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationExample;
|
|
7272
|
+
/** The translation option. */
|
|
7273
|
+
option?: GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationOption;
|
|
7274
|
+
/** The prompt message. */
|
|
7275
|
+
promptMessage?: GoogleCloudAiplatformV1beta1SchemaPromptSpecPromptMessage;
|
|
7276
|
+
/** The source language code. */
|
|
7277
|
+
sourceLanguageCode?: string;
|
|
7278
|
+
/** The target language code. */
|
|
7279
|
+
targetLanguageCode?: string;
|
|
7280
|
+
}
|
|
7281
|
+
interface GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationSentenceFileInput {
|
|
7282
|
+
/** Inlined file source. */
|
|
7283
|
+
fileInputSource?: GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationFileInputSource;
|
|
7284
|
+
/** Cloud Storage file source. */
|
|
7285
|
+
gcsInputSource?: GoogleCloudAiplatformV1beta1SchemaPromptSpecTranslationGcsInputSource;
|
|
7286
|
+
}
|
|
7063
7287
|
interface GoogleCloudAiplatformV1beta1SchemaTablesDatasetMetadata {
|
|
7064
7288
|
inputConfig?: GoogleCloudAiplatformV1beta1SchemaTablesDatasetMetadataInputConfig;
|
|
7065
7289
|
}
|
|
@@ -7966,6 +8190,7 @@ declare namespace gapi.client {
|
|
|
7966
8190
|
progressMessage?: string;
|
|
7967
8191
|
}
|
|
7968
8192
|
interface GoogleCloudAiplatformV1beta1StartNotebookRuntimeRequest {}
|
|
8193
|
+
interface GoogleCloudAiplatformV1beta1StopNotebookRuntimeRequest {}
|
|
7969
8194
|
interface GoogleCloudAiplatformV1beta1StopTrialRequest {}
|
|
7970
8195
|
interface GoogleCloudAiplatformV1beta1StratifiedSplit {
|
|
7971
8196
|
/** Required. The key is a name of one of the Dataset's data columns. The key provided must be for a categorical column. */
|
|
@@ -8576,6 +8801,8 @@ declare namespace gapi.client {
|
|
|
8576
8801
|
tokens?: string[];
|
|
8577
8802
|
}
|
|
8578
8803
|
interface GoogleCloudAiplatformV1beta1Tool {
|
|
8804
|
+
/** Optional. CodeExecution tool type. Enables the model to execute code as part of generation. This field is only used by the Gemini Developer API services. */
|
|
8805
|
+
codeExecution?: any;
|
|
8579
8806
|
/** 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 128 function declarations can be provided. */
|
|
8580
8807
|
functionDeclarations?: GoogleCloudAiplatformV1beta1FunctionDeclaration[];
|
|
8581
8808
|
/** Optional. GoogleSearchRetrieval tool type. Specialized retrieval tool that is powered by Google search. */
|
|
@@ -8604,6 +8831,7 @@ declare namespace gapi.client {
|
|
|
8604
8831
|
toolCallValidMetricValues?: GoogleCloudAiplatformV1beta1ToolCallValidMetricValue[];
|
|
8605
8832
|
}
|
|
8606
8833
|
interface GoogleCloudAiplatformV1beta1ToolCallValidSpec {}
|
|
8834
|
+
interface GoogleCloudAiplatformV1beta1ToolCodeExecution {}
|
|
8607
8835
|
interface GoogleCloudAiplatformV1beta1ToolConfig {
|
|
8608
8836
|
/** Optional. Function calling config. */
|
|
8609
8837
|
functionCallingConfig?: GoogleCloudAiplatformV1beta1FunctionCallingConfig;
|
|
@@ -8795,7 +9023,7 @@ declare namespace gapi.client {
|
|
|
8795
9023
|
supervisedTuningDataStats?: GoogleCloudAiplatformV1beta1SupervisedTuningDataStats;
|
|
8796
9024
|
}
|
|
8797
9025
|
interface GoogleCloudAiplatformV1beta1TuningJob {
|
|
8798
|
-
/** The base model that is being tuned, e.g., "gemini-1.0-pro-002". */
|
|
9026
|
+
/** The base model that is being tuned, e.g., "gemini-1.0-pro-002". . */
|
|
8799
9027
|
baseModel?: string;
|
|
8800
9028
|
/** Output only. Time when the TuningJob was created. */
|
|
8801
9029
|
createTime?: string;
|
|
@@ -8870,6 +9098,10 @@ declare namespace gapi.client {
|
|
|
8870
9098
|
/** The operation generic information. */
|
|
8871
9099
|
genericMetadata?: GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
8872
9100
|
}
|
|
9101
|
+
interface GoogleCloudAiplatformV1beta1UpdateEndpointLongRunningRequest {
|
|
9102
|
+
/** Required. The Endpoint which replaces the resource on the server. Currently we only support updating the `client_connection_config` field, all the other fields' update will be blocked. */
|
|
9103
|
+
endpoint?: GoogleCloudAiplatformV1beta1Endpoint;
|
|
9104
|
+
}
|
|
8873
9105
|
interface GoogleCloudAiplatformV1beta1UpdateExplanationDatasetOperationMetadata {
|
|
8874
9106
|
/** The common part of the operation metadata. */
|
|
8875
9107
|
genericMetadata?: GoogleCloudAiplatformV1beta1GenericOperationMetadata;
|
|
@@ -14070,6 +14302,64 @@ declare namespace gapi.client {
|
|
|
14070
14302
|
},
|
|
14071
14303
|
body: GoogleCloudAiplatformV1beta1ExplainRequest
|
|
14072
14304
|
): Request<GoogleCloudAiplatformV1beta1ExplainResponse>;
|
|
14305
|
+
/** Fetch an asynchronous online prediction operation. */
|
|
14306
|
+
fetchPredictOperation(request: {
|
|
14307
|
+
/** V1 error format. */
|
|
14308
|
+
'$.xgafv'?: string;
|
|
14309
|
+
/** OAuth access token. */
|
|
14310
|
+
access_token?: string;
|
|
14311
|
+
/** Data format for response. */
|
|
14312
|
+
alt?: string;
|
|
14313
|
+
/** JSONP */
|
|
14314
|
+
callback?: string;
|
|
14315
|
+
/** 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}` */
|
|
14316
|
+
endpoint: string;
|
|
14317
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
14318
|
+
fields?: string;
|
|
14319
|
+
/** 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. */
|
|
14320
|
+
key?: string;
|
|
14321
|
+
/** OAuth 2.0 token for the current user. */
|
|
14322
|
+
oauth_token?: string;
|
|
14323
|
+
/** Returns response with indentations and line breaks. */
|
|
14324
|
+
prettyPrint?: boolean;
|
|
14325
|
+
/** 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. */
|
|
14326
|
+
quotaUser?: string;
|
|
14327
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14328
|
+
upload_protocol?: string;
|
|
14329
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14330
|
+
uploadType?: string;
|
|
14331
|
+
/** Request body */
|
|
14332
|
+
resource: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest;
|
|
14333
|
+
}): Request<GoogleLongrunningOperation>;
|
|
14334
|
+
fetchPredictOperation(
|
|
14335
|
+
request: {
|
|
14336
|
+
/** V1 error format. */
|
|
14337
|
+
'$.xgafv'?: string;
|
|
14338
|
+
/** OAuth access token. */
|
|
14339
|
+
access_token?: string;
|
|
14340
|
+
/** Data format for response. */
|
|
14341
|
+
alt?: string;
|
|
14342
|
+
/** JSONP */
|
|
14343
|
+
callback?: string;
|
|
14344
|
+
/** 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}` */
|
|
14345
|
+
endpoint: string;
|
|
14346
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
14347
|
+
fields?: string;
|
|
14348
|
+
/** 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. */
|
|
14349
|
+
key?: string;
|
|
14350
|
+
/** OAuth 2.0 token for the current user. */
|
|
14351
|
+
oauth_token?: string;
|
|
14352
|
+
/** Returns response with indentations and line breaks. */
|
|
14353
|
+
prettyPrint?: boolean;
|
|
14354
|
+
/** 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. */
|
|
14355
|
+
quotaUser?: string;
|
|
14356
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14357
|
+
upload_protocol?: string;
|
|
14358
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14359
|
+
uploadType?: string;
|
|
14360
|
+
},
|
|
14361
|
+
body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest
|
|
14362
|
+
): Request<GoogleLongrunningOperation>;
|
|
14073
14363
|
/** Generate content with multimodal inputs. */
|
|
14074
14364
|
generateContent(request: {
|
|
14075
14365
|
/** V1 error format. */
|
|
@@ -14397,6 +14687,63 @@ declare namespace gapi.client {
|
|
|
14397
14687
|
},
|
|
14398
14688
|
body: GoogleCloudAiplatformV1beta1PredictRequest
|
|
14399
14689
|
): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
|
|
14690
|
+
predictLongRunning(request: {
|
|
14691
|
+
/** V1 error format. */
|
|
14692
|
+
'$.xgafv'?: string;
|
|
14693
|
+
/** OAuth access token. */
|
|
14694
|
+
access_token?: string;
|
|
14695
|
+
/** Data format for response. */
|
|
14696
|
+
alt?: string;
|
|
14697
|
+
/** JSONP */
|
|
14698
|
+
callback?: string;
|
|
14699
|
+
/** 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}` */
|
|
14700
|
+
endpoint: string;
|
|
14701
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
14702
|
+
fields?: string;
|
|
14703
|
+
/** 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. */
|
|
14704
|
+
key?: string;
|
|
14705
|
+
/** OAuth 2.0 token for the current user. */
|
|
14706
|
+
oauth_token?: string;
|
|
14707
|
+
/** Returns response with indentations and line breaks. */
|
|
14708
|
+
prettyPrint?: boolean;
|
|
14709
|
+
/** 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. */
|
|
14710
|
+
quotaUser?: string;
|
|
14711
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14712
|
+
upload_protocol?: string;
|
|
14713
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14714
|
+
uploadType?: string;
|
|
14715
|
+
/** Request body */
|
|
14716
|
+
resource: GoogleCloudAiplatformV1beta1PredictLongRunningRequest;
|
|
14717
|
+
}): Request<GoogleLongrunningOperation>;
|
|
14718
|
+
predictLongRunning(
|
|
14719
|
+
request: {
|
|
14720
|
+
/** V1 error format. */
|
|
14721
|
+
'$.xgafv'?: string;
|
|
14722
|
+
/** OAuth access token. */
|
|
14723
|
+
access_token?: string;
|
|
14724
|
+
/** Data format for response. */
|
|
14725
|
+
alt?: string;
|
|
14726
|
+
/** JSONP */
|
|
14727
|
+
callback?: string;
|
|
14728
|
+
/** 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}` */
|
|
14729
|
+
endpoint: string;
|
|
14730
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
14731
|
+
fields?: string;
|
|
14732
|
+
/** 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. */
|
|
14733
|
+
key?: string;
|
|
14734
|
+
/** OAuth 2.0 token for the current user. */
|
|
14735
|
+
oauth_token?: string;
|
|
14736
|
+
/** Returns response with indentations and line breaks. */
|
|
14737
|
+
prettyPrint?: boolean;
|
|
14738
|
+
/** 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. */
|
|
14739
|
+
quotaUser?: string;
|
|
14740
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
14741
|
+
upload_protocol?: string;
|
|
14742
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
14743
|
+
uploadType?: string;
|
|
14744
|
+
},
|
|
14745
|
+
body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest
|
|
14746
|
+
): Request<GoogleLongrunningOperation>;
|
|
14400
14747
|
/** Perform an online prediction with an arbitrary HTTP payload. The response includes the following HTTP headers: * `X-Vertex-AI-Endpoint-Id`: ID of the Endpoint that served this prediction. * `X-Vertex-AI-Deployed-Model-Id`: ID of the Endpoint's DeployedModel that served this prediction. */
|
|
14401
14748
|
rawPredict(request: {
|
|
14402
14749
|
/** V1 error format. */
|
|
@@ -14746,6 +15093,64 @@ declare namespace gapi.client {
|
|
|
14746
15093
|
},
|
|
14747
15094
|
body: GoogleCloudAiplatformV1beta1UndeployModelRequest
|
|
14748
15095
|
): Request<GoogleLongrunningOperation>;
|
|
15096
|
+
/** Updates an Endpoint with a long running operation. */
|
|
15097
|
+
update(request: {
|
|
15098
|
+
/** V1 error format. */
|
|
15099
|
+
'$.xgafv'?: string;
|
|
15100
|
+
/** OAuth access token. */
|
|
15101
|
+
access_token?: string;
|
|
15102
|
+
/** Data format for response. */
|
|
15103
|
+
alt?: string;
|
|
15104
|
+
/** JSONP */
|
|
15105
|
+
callback?: string;
|
|
15106
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
15107
|
+
fields?: string;
|
|
15108
|
+
/** 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. */
|
|
15109
|
+
key?: string;
|
|
15110
|
+
/** Output only. The resource name of the Endpoint. */
|
|
15111
|
+
name: string;
|
|
15112
|
+
/** OAuth 2.0 token for the current user. */
|
|
15113
|
+
oauth_token?: string;
|
|
15114
|
+
/** Returns response with indentations and line breaks. */
|
|
15115
|
+
prettyPrint?: boolean;
|
|
15116
|
+
/** 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. */
|
|
15117
|
+
quotaUser?: string;
|
|
15118
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15119
|
+
upload_protocol?: string;
|
|
15120
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15121
|
+
uploadType?: string;
|
|
15122
|
+
/** Request body */
|
|
15123
|
+
resource: GoogleCloudAiplatformV1beta1UpdateEndpointLongRunningRequest;
|
|
15124
|
+
}): Request<GoogleLongrunningOperation>;
|
|
15125
|
+
update(
|
|
15126
|
+
request: {
|
|
15127
|
+
/** V1 error format. */
|
|
15128
|
+
'$.xgafv'?: string;
|
|
15129
|
+
/** OAuth access token. */
|
|
15130
|
+
access_token?: string;
|
|
15131
|
+
/** Data format for response. */
|
|
15132
|
+
alt?: string;
|
|
15133
|
+
/** JSONP */
|
|
15134
|
+
callback?: string;
|
|
15135
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
15136
|
+
fields?: string;
|
|
15137
|
+
/** 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. */
|
|
15138
|
+
key?: string;
|
|
15139
|
+
/** Output only. The resource name of the Endpoint. */
|
|
15140
|
+
name: string;
|
|
15141
|
+
/** OAuth 2.0 token for the current user. */
|
|
15142
|
+
oauth_token?: string;
|
|
15143
|
+
/** Returns response with indentations and line breaks. */
|
|
15144
|
+
prettyPrint?: boolean;
|
|
15145
|
+
/** 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. */
|
|
15146
|
+
quotaUser?: string;
|
|
15147
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
15148
|
+
upload_protocol?: string;
|
|
15149
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15150
|
+
uploadType?: string;
|
|
15151
|
+
},
|
|
15152
|
+
body: GoogleCloudAiplatformV1beta1UpdateEndpointLongRunningRequest
|
|
15153
|
+
): Request<GoogleLongrunningOperation>;
|
|
14749
15154
|
chat: ChatResource;
|
|
14750
15155
|
operations: OperationsResource;
|
|
14751
15156
|
}
|
|
@@ -15639,9 +16044,9 @@ declare namespace gapi.client {
|
|
|
15639
16044
|
): Request<GoogleCloudAiplatformV1beta1QueryExtensionResponse>;
|
|
15640
16045
|
operations: OperationsResource;
|
|
15641
16046
|
}
|
|
15642
|
-
interface
|
|
15643
|
-
/**
|
|
15644
|
-
|
|
16047
|
+
interface FeatureMonitorJobsResource {
|
|
16048
|
+
/** Creates a new feature monitor job. */
|
|
16049
|
+
create(request: {
|
|
15645
16050
|
/** V1 error format. */
|
|
15646
16051
|
'$.xgafv'?: string;
|
|
15647
16052
|
/** OAuth access token. */
|
|
@@ -15650,14 +16055,16 @@ declare namespace gapi.client {
|
|
|
15650
16055
|
alt?: string;
|
|
15651
16056
|
/** JSONP */
|
|
15652
16057
|
callback?: string;
|
|
16058
|
+
/** Optional. Output only. System-generated ID for feature monitor job. */
|
|
16059
|
+
featureMonitorJobId?: string;
|
|
15653
16060
|
/** Selector specifying which fields to include in a partial response. */
|
|
15654
16061
|
fields?: string;
|
|
15655
16062
|
/** 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. */
|
|
15656
16063
|
key?: string;
|
|
15657
|
-
/** The name of the operation resource to be deleted. */
|
|
15658
|
-
name: string;
|
|
15659
16064
|
/** OAuth 2.0 token for the current user. */
|
|
15660
16065
|
oauth_token?: string;
|
|
16066
|
+
/** Required. The resource name of FeatureMonitor to create FeatureMonitorJob. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}/featureMonitors/{feature_monitor}` */
|
|
16067
|
+
parent: string;
|
|
15661
16068
|
/** Returns response with indentations and line breaks. */
|
|
15662
16069
|
prettyPrint?: boolean;
|
|
15663
16070
|
/** 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. */
|
|
@@ -15666,8 +16073,41 @@ declare namespace gapi.client {
|
|
|
15666
16073
|
upload_protocol?: string;
|
|
15667
16074
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15668
16075
|
uploadType?: string;
|
|
15669
|
-
|
|
15670
|
-
|
|
16076
|
+
/** Request body */
|
|
16077
|
+
resource: GoogleCloudAiplatformV1beta1FeatureMonitorJob;
|
|
16078
|
+
}): Request<GoogleCloudAiplatformV1beta1FeatureMonitorJob>;
|
|
16079
|
+
create(
|
|
16080
|
+
request: {
|
|
16081
|
+
/** V1 error format. */
|
|
16082
|
+
'$.xgafv'?: string;
|
|
16083
|
+
/** OAuth access token. */
|
|
16084
|
+
access_token?: string;
|
|
16085
|
+
/** Data format for response. */
|
|
16086
|
+
alt?: string;
|
|
16087
|
+
/** JSONP */
|
|
16088
|
+
callback?: string;
|
|
16089
|
+
/** Optional. Output only. System-generated ID for feature monitor job. */
|
|
16090
|
+
featureMonitorJobId?: string;
|
|
16091
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16092
|
+
fields?: string;
|
|
16093
|
+
/** 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. */
|
|
16094
|
+
key?: string;
|
|
16095
|
+
/** OAuth 2.0 token for the current user. */
|
|
16096
|
+
oauth_token?: string;
|
|
16097
|
+
/** Required. The resource name of FeatureMonitor to create FeatureMonitorJob. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}/featureMonitors/{feature_monitor}` */
|
|
16098
|
+
parent: string;
|
|
16099
|
+
/** Returns response with indentations and line breaks. */
|
|
16100
|
+
prettyPrint?: boolean;
|
|
16101
|
+
/** 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. */
|
|
16102
|
+
quotaUser?: string;
|
|
16103
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16104
|
+
upload_protocol?: string;
|
|
16105
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16106
|
+
uploadType?: string;
|
|
16107
|
+
},
|
|
16108
|
+
body: GoogleCloudAiplatformV1beta1FeatureMonitorJob
|
|
16109
|
+
): Request<GoogleCloudAiplatformV1beta1FeatureMonitorJob>;
|
|
16110
|
+
/** Get a feature monitor job. */
|
|
15671
16111
|
get(request?: {
|
|
15672
16112
|
/** V1 error format. */
|
|
15673
16113
|
'$.xgafv'?: string;
|
|
@@ -15681,7 +16121,7 @@ declare namespace gapi.client {
|
|
|
15681
16121
|
fields?: string;
|
|
15682
16122
|
/** 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. */
|
|
15683
16123
|
key?: string;
|
|
15684
|
-
/** The name of the
|
|
16124
|
+
/** Required. The name of the FeatureMonitorJob resource. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}/featureMonitors/{feature_monitor}/featureMonitorJobs/{feature_monitor_job}` */
|
|
15685
16125
|
name: string;
|
|
15686
16126
|
/** OAuth 2.0 token for the current user. */
|
|
15687
16127
|
oauth_token?: string;
|
|
@@ -15693,8 +16133,8 @@ declare namespace gapi.client {
|
|
|
15693
16133
|
upload_protocol?: string;
|
|
15694
16134
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
15695
16135
|
uploadType?: string;
|
|
15696
|
-
}): Request<
|
|
15697
|
-
/**
|
|
16136
|
+
}): Request<GoogleCloudAiplatformV1beta1FeatureMonitorJob>;
|
|
16137
|
+
/** List feature monitor jobs. */
|
|
15698
16138
|
list(request?: {
|
|
15699
16139
|
/** V1 error format. */
|
|
15700
16140
|
'$.xgafv'?: string;
|
|
@@ -15706,7 +16146,252 @@ declare namespace gapi.client {
|
|
|
15706
16146
|
callback?: string;
|
|
15707
16147
|
/** Selector specifying which fields to include in a partial response. */
|
|
15708
16148
|
fields?: string;
|
|
15709
|
-
/**
|
|
16149
|
+
/** Optional. Lists the FeatureMonitorJobs that match the filter expression. The following fields are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values must be Examples: * `create_time > "2020-01-01"` FeatureMonitorJobs created after 2020-01-01. */
|
|
16150
|
+
filter?: string;
|
|
16151
|
+
/** 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. */
|
|
16152
|
+
key?: string;
|
|
16153
|
+
/** OAuth 2.0 token for the current user. */
|
|
16154
|
+
oauth_token?: string;
|
|
16155
|
+
/** Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported Fields: * `create_time` */
|
|
16156
|
+
orderBy?: string;
|
|
16157
|
+
/** Optional. The maximum number of FeatureMonitorJobs to return. The service may return fewer than this value. If unspecified, at most 100 FeatureMonitorJobs will be returned. The maximum value is 100; any value greater than 100 will be coerced to 100. */
|
|
16158
|
+
pageSize?: number;
|
|
16159
|
+
/** Optional. A page token, received from a previous FeatureRegistryService.ListFeatureMonitorJobs call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to FeatureRegistryService.ListFeatureMonitorJobs must match the call that provided the page token. */
|
|
16160
|
+
pageToken?: string;
|
|
16161
|
+
/** Required. The resource name of the FeatureMonitor to list FeatureMonitorJobs. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}/featureMonitors/{feature_monitor}` */
|
|
16162
|
+
parent: string;
|
|
16163
|
+
/** Returns response with indentations and line breaks. */
|
|
16164
|
+
prettyPrint?: boolean;
|
|
16165
|
+
/** 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. */
|
|
16166
|
+
quotaUser?: string;
|
|
16167
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16168
|
+
upload_protocol?: string;
|
|
16169
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16170
|
+
uploadType?: string;
|
|
16171
|
+
}): Request<GoogleCloudAiplatformV1beta1ListFeatureMonitorJobsResponse>;
|
|
16172
|
+
}
|
|
16173
|
+
interface FeatureMonitorsResource {
|
|
16174
|
+
/** Creates a new FeatureMonitor in a given project, location and FeatureGroup. */
|
|
16175
|
+
create(request: {
|
|
16176
|
+
/** V1 error format. */
|
|
16177
|
+
'$.xgafv'?: string;
|
|
16178
|
+
/** OAuth access token. */
|
|
16179
|
+
access_token?: string;
|
|
16180
|
+
/** Data format for response. */
|
|
16181
|
+
alt?: string;
|
|
16182
|
+
/** JSONP */
|
|
16183
|
+
callback?: string;
|
|
16184
|
+
/** Required. The ID to use for this FeatureMonitor, which will become the final component of the FeatureGroup's resource name. This value may be up to 60 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the FeatureGroup. */
|
|
16185
|
+
featureMonitorId?: string;
|
|
16186
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16187
|
+
fields?: string;
|
|
16188
|
+
/** 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. */
|
|
16189
|
+
key?: string;
|
|
16190
|
+
/** OAuth 2.0 token for the current user. */
|
|
16191
|
+
oauth_token?: string;
|
|
16192
|
+
/** Required. The resource name of FeatureGroup to create FeatureMonitor. Format: `projects/{project}/locations/{location}/featureGroups/{featuregroup}` */
|
|
16193
|
+
parent: string;
|
|
16194
|
+
/** Returns response with indentations and line breaks. */
|
|
16195
|
+
prettyPrint?: boolean;
|
|
16196
|
+
/** 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. */
|
|
16197
|
+
quotaUser?: string;
|
|
16198
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16199
|
+
upload_protocol?: string;
|
|
16200
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16201
|
+
uploadType?: string;
|
|
16202
|
+
/** Request body */
|
|
16203
|
+
resource: GoogleCloudAiplatformV1beta1FeatureMonitor;
|
|
16204
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16205
|
+
create(
|
|
16206
|
+
request: {
|
|
16207
|
+
/** V1 error format. */
|
|
16208
|
+
'$.xgafv'?: string;
|
|
16209
|
+
/** OAuth access token. */
|
|
16210
|
+
access_token?: string;
|
|
16211
|
+
/** Data format for response. */
|
|
16212
|
+
alt?: string;
|
|
16213
|
+
/** JSONP */
|
|
16214
|
+
callback?: string;
|
|
16215
|
+
/** Required. The ID to use for this FeatureMonitor, which will become the final component of the FeatureGroup's resource name. This value may be up to 60 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the FeatureGroup. */
|
|
16216
|
+
featureMonitorId?: string;
|
|
16217
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16218
|
+
fields?: string;
|
|
16219
|
+
/** 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. */
|
|
16220
|
+
key?: string;
|
|
16221
|
+
/** OAuth 2.0 token for the current user. */
|
|
16222
|
+
oauth_token?: string;
|
|
16223
|
+
/** Required. The resource name of FeatureGroup to create FeatureMonitor. Format: `projects/{project}/locations/{location}/featureGroups/{featuregroup}` */
|
|
16224
|
+
parent: string;
|
|
16225
|
+
/** Returns response with indentations and line breaks. */
|
|
16226
|
+
prettyPrint?: boolean;
|
|
16227
|
+
/** 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. */
|
|
16228
|
+
quotaUser?: string;
|
|
16229
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16230
|
+
upload_protocol?: string;
|
|
16231
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16232
|
+
uploadType?: string;
|
|
16233
|
+
},
|
|
16234
|
+
body: GoogleCloudAiplatformV1beta1FeatureMonitor
|
|
16235
|
+
): Request<GoogleLongrunningOperation>;
|
|
16236
|
+
/** Deletes a single FeatureMonitor. */
|
|
16237
|
+
delete(request?: {
|
|
16238
|
+
/** V1 error format. */
|
|
16239
|
+
'$.xgafv'?: string;
|
|
16240
|
+
/** OAuth access token. */
|
|
16241
|
+
access_token?: string;
|
|
16242
|
+
/** Data format for response. */
|
|
16243
|
+
alt?: string;
|
|
16244
|
+
/** JSONP */
|
|
16245
|
+
callback?: string;
|
|
16246
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16247
|
+
fields?: string;
|
|
16248
|
+
/** 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. */
|
|
16249
|
+
key?: string;
|
|
16250
|
+
/** Required. The name of the FeatureMonitor to be deleted. Format: `projects/{project}/locations/{location}/featureGroups/{feature_group}/featureMonitors/{feature_monitor}` */
|
|
16251
|
+
name: string;
|
|
16252
|
+
/** OAuth 2.0 token for the current user. */
|
|
16253
|
+
oauth_token?: string;
|
|
16254
|
+
/** Returns response with indentations and line breaks. */
|
|
16255
|
+
prettyPrint?: boolean;
|
|
16256
|
+
/** 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. */
|
|
16257
|
+
quotaUser?: string;
|
|
16258
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16259
|
+
upload_protocol?: string;
|
|
16260
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16261
|
+
uploadType?: string;
|
|
16262
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16263
|
+
/** Gets details of a single FeatureMonitor. */
|
|
16264
|
+
get(request?: {
|
|
16265
|
+
/** V1 error format. */
|
|
16266
|
+
'$.xgafv'?: string;
|
|
16267
|
+
/** OAuth access token. */
|
|
16268
|
+
access_token?: string;
|
|
16269
|
+
/** Data format for response. */
|
|
16270
|
+
alt?: string;
|
|
16271
|
+
/** JSONP */
|
|
16272
|
+
callback?: string;
|
|
16273
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16274
|
+
fields?: string;
|
|
16275
|
+
/** 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. */
|
|
16276
|
+
key?: string;
|
|
16277
|
+
/** Required. The name of the FeatureMonitor resource. */
|
|
16278
|
+
name: string;
|
|
16279
|
+
/** OAuth 2.0 token for the current user. */
|
|
16280
|
+
oauth_token?: string;
|
|
16281
|
+
/** Returns response with indentations and line breaks. */
|
|
16282
|
+
prettyPrint?: boolean;
|
|
16283
|
+
/** 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. */
|
|
16284
|
+
quotaUser?: string;
|
|
16285
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16286
|
+
upload_protocol?: string;
|
|
16287
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16288
|
+
uploadType?: string;
|
|
16289
|
+
}): Request<GoogleCloudAiplatformV1beta1FeatureMonitor>;
|
|
16290
|
+
/** Lists FeatureGroups in a given project and location. */
|
|
16291
|
+
list(request?: {
|
|
16292
|
+
/** V1 error format. */
|
|
16293
|
+
'$.xgafv'?: string;
|
|
16294
|
+
/** OAuth access token. */
|
|
16295
|
+
access_token?: string;
|
|
16296
|
+
/** Data format for response. */
|
|
16297
|
+
alt?: string;
|
|
16298
|
+
/** JSONP */
|
|
16299
|
+
callback?: string;
|
|
16300
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16301
|
+
fields?: string;
|
|
16302
|
+
/** Optional. Lists the FeatureMonitors that match the filter expression. The following fields are supported: * `create_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values must be in RFC 3339 format. * `update_time`: Supports `=`, `!=`, `<`, `>`, `<=`, and `>=` comparisons. Values must be in RFC 3339 format. * `labels`: Supports key-value equality and key presence. Examples: * `create_time > "2020-01-01" OR update_time > "2020-01-01"` FeatureMonitors created or updated after 2020-01-01. * `labels.env = "prod"` FeatureGroups with label "env" set to "prod". */
|
|
16303
|
+
filter?: string;
|
|
16304
|
+
/** 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. */
|
|
16305
|
+
key?: string;
|
|
16306
|
+
/** OAuth 2.0 token for the current user. */
|
|
16307
|
+
oauth_token?: string;
|
|
16308
|
+
/** Optional. A comma-separated list of fields to order by, sorted in ascending order. Use "desc" after a field name for descending. Supported Fields: * `create_time` * `update_time` */
|
|
16309
|
+
orderBy?: string;
|
|
16310
|
+
/** Optional. The maximum number of FeatureGroups to return. The service may return fewer than this value. If unspecified, at most 100 FeatureMonitors will be returned. The maximum value is 100; any value greater than 100 will be coerced to 100. */
|
|
16311
|
+
pageSize?: number;
|
|
16312
|
+
/** Optional. A page token, received from a previous FeatureRegistryService.ListFeatureMonitors call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to FeatureRegistryService.ListFeatureMonitors must match the call that provided the page token. */
|
|
16313
|
+
pageToken?: string;
|
|
16314
|
+
/** Required. The resource name of the FeatureGroup to list FeatureMonitors. Format: `projects/{project}/locations/{location}/featureGroups/{featureGroup}` */
|
|
16315
|
+
parent: string;
|
|
16316
|
+
/** Returns response with indentations and line breaks. */
|
|
16317
|
+
prettyPrint?: boolean;
|
|
16318
|
+
/** 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. */
|
|
16319
|
+
quotaUser?: string;
|
|
16320
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16321
|
+
upload_protocol?: string;
|
|
16322
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16323
|
+
uploadType?: string;
|
|
16324
|
+
}): Request<GoogleCloudAiplatformV1beta1ListFeatureMonitorsResponse>;
|
|
16325
|
+
featureMonitorJobs: FeatureMonitorJobsResource;
|
|
16326
|
+
}
|
|
16327
|
+
interface OperationsResource {
|
|
16328
|
+
/** 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`. */
|
|
16329
|
+
delete(request?: {
|
|
16330
|
+
/** V1 error format. */
|
|
16331
|
+
'$.xgafv'?: string;
|
|
16332
|
+
/** OAuth access token. */
|
|
16333
|
+
access_token?: string;
|
|
16334
|
+
/** Data format for response. */
|
|
16335
|
+
alt?: string;
|
|
16336
|
+
/** JSONP */
|
|
16337
|
+
callback?: string;
|
|
16338
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16339
|
+
fields?: string;
|
|
16340
|
+
/** 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. */
|
|
16341
|
+
key?: string;
|
|
16342
|
+
/** The name of the operation resource to be deleted. */
|
|
16343
|
+
name: string;
|
|
16344
|
+
/** OAuth 2.0 token for the current user. */
|
|
16345
|
+
oauth_token?: string;
|
|
16346
|
+
/** Returns response with indentations and line breaks. */
|
|
16347
|
+
prettyPrint?: boolean;
|
|
16348
|
+
/** 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. */
|
|
16349
|
+
quotaUser?: string;
|
|
16350
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16351
|
+
upload_protocol?: string;
|
|
16352
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16353
|
+
uploadType?: string;
|
|
16354
|
+
}): Request<{}>;
|
|
16355
|
+
/** 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. */
|
|
16356
|
+
get(request?: {
|
|
16357
|
+
/** V1 error format. */
|
|
16358
|
+
'$.xgafv'?: string;
|
|
16359
|
+
/** OAuth access token. */
|
|
16360
|
+
access_token?: string;
|
|
16361
|
+
/** Data format for response. */
|
|
16362
|
+
alt?: string;
|
|
16363
|
+
/** JSONP */
|
|
16364
|
+
callback?: string;
|
|
16365
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16366
|
+
fields?: string;
|
|
16367
|
+
/** 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. */
|
|
16368
|
+
key?: string;
|
|
16369
|
+
/** The name of the operation resource. */
|
|
16370
|
+
name: string;
|
|
16371
|
+
/** OAuth 2.0 token for the current user. */
|
|
16372
|
+
oauth_token?: string;
|
|
16373
|
+
/** Returns response with indentations and line breaks. */
|
|
16374
|
+
prettyPrint?: boolean;
|
|
16375
|
+
/** 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. */
|
|
16376
|
+
quotaUser?: string;
|
|
16377
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16378
|
+
upload_protocol?: string;
|
|
16379
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
16380
|
+
uploadType?: string;
|
|
16381
|
+
}): Request<GoogleLongrunningOperation>;
|
|
16382
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
16383
|
+
list(request?: {
|
|
16384
|
+
/** V1 error format. */
|
|
16385
|
+
'$.xgafv'?: string;
|
|
16386
|
+
/** OAuth access token. */
|
|
16387
|
+
access_token?: string;
|
|
16388
|
+
/** Data format for response. */
|
|
16389
|
+
alt?: string;
|
|
16390
|
+
/** JSONP */
|
|
16391
|
+
callback?: string;
|
|
16392
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
16393
|
+
fields?: string;
|
|
16394
|
+
/** The standard list filter. */
|
|
15710
16395
|
filter?: string;
|
|
15711
16396
|
/** 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. */
|
|
15712
16397
|
key?: string;
|
|
@@ -15915,6 +16600,12 @@ declare namespace gapi.client {
|
|
|
15915
16600
|
alt?: string;
|
|
15916
16601
|
/** JSONP */
|
|
15917
16602
|
callback?: string;
|
|
16603
|
+
/** Optional. If set, returns the most recent count of stats. Valid value is [0, 100]. If stats_time_range is set, return most recent count of stats within the stats_time_range. */
|
|
16604
|
+
'featureStatsAndAnomalySpec.latestStatsCount'?: number;
|
|
16605
|
+
/** Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end. */
|
|
16606
|
+
'featureStatsAndAnomalySpec.statsTimeRange.endTime'?: string;
|
|
16607
|
+
/** Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start. */
|
|
16608
|
+
'featureStatsAndAnomalySpec.statsTimeRange.startTime'?: string;
|
|
15918
16609
|
/** Selector specifying which fields to include in a partial response. */
|
|
15919
16610
|
fields?: string;
|
|
15920
16611
|
/** 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. */
|
|
@@ -16369,6 +17060,7 @@ declare namespace gapi.client {
|
|
|
16369
17060
|
},
|
|
16370
17061
|
body: GoogleCloudAiplatformV1beta1FeatureGroup
|
|
16371
17062
|
): Request<GoogleLongrunningOperation>;
|
|
17063
|
+
featureMonitors: FeatureMonitorsResource;
|
|
16372
17064
|
features: FeaturesResource;
|
|
16373
17065
|
operations: OperationsResource;
|
|
16374
17066
|
}
|
|
@@ -16819,7 +17511,7 @@ declare namespace gapi.client {
|
|
|
16819
17511
|
prettyPrint?: boolean;
|
|
16820
17512
|
/** 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. */
|
|
16821
17513
|
quotaUser?: string;
|
|
16822
|
-
/** 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` * `service_agent_type` * `big_query_source` * `big_query_source.uri` * `big_query_source.entity_id_columns` * `feature_registry_source` * `feature_registry_source.feature_groups` * `sync_config` * `sync_config.cron` */
|
|
17514
|
+
/** 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` * `service_agent_type` * `big_query_source` * `big_query_source.uri` * `big_query_source.entity_id_columns` * `feature_registry_source` * `feature_registry_source.feature_groups` * `sync_config` * `sync_config.cron` * `optimized_config.automatic_resources` */
|
|
16823
17515
|
updateMask?: string;
|
|
16824
17516
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16825
17517
|
upload_protocol?: string;
|
|
@@ -16850,7 +17542,7 @@ declare namespace gapi.client {
|
|
|
16850
17542
|
prettyPrint?: boolean;
|
|
16851
17543
|
/** 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. */
|
|
16852
17544
|
quotaUser?: string;
|
|
16853
|
-
/** 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` * `service_agent_type` * `big_query_source` * `big_query_source.uri` * `big_query_source.entity_id_columns` * `feature_registry_source` * `feature_registry_source.feature_groups` * `sync_config` * `sync_config.cron` */
|
|
17545
|
+
/** 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` * `service_agent_type` * `big_query_source` * `big_query_source.uri` * `big_query_source.entity_id_columns` * `feature_registry_source` * `feature_registry_source.feature_groups` * `sync_config` * `sync_config.cron` * `optimized_config.automatic_resources` */
|
|
16854
17546
|
updateMask?: string;
|
|
16855
17547
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
16856
17548
|
upload_protocol?: string;
|
|
@@ -17823,6 +18515,12 @@ declare namespace gapi.client {
|
|
|
17823
18515
|
alt?: string;
|
|
17824
18516
|
/** JSONP */
|
|
17825
18517
|
callback?: string;
|
|
18518
|
+
/** Optional. If set, returns the most recent count of stats. Valid value is [0, 100]. If stats_time_range is set, return most recent count of stats within the stats_time_range. */
|
|
18519
|
+
'featureStatsAndAnomalySpec.latestStatsCount'?: number;
|
|
18520
|
+
/** Optional. Exclusive end of the interval. If specified, a Timestamp matching this interval will have to be before the end. */
|
|
18521
|
+
'featureStatsAndAnomalySpec.statsTimeRange.endTime'?: string;
|
|
18522
|
+
/** Optional. Inclusive start of the interval. If specified, a Timestamp matching this interval will have to be the same or after the start. */
|
|
18523
|
+
'featureStatsAndAnomalySpec.statsTimeRange.startTime'?: string;
|
|
17826
18524
|
/** Selector specifying which fields to include in a partial response. */
|
|
17827
18525
|
fields?: string;
|
|
17828
18526
|
/** 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. */
|
|
@@ -26499,6 +27197,64 @@ declare namespace gapi.client {
|
|
|
26499
27197
|
},
|
|
26500
27198
|
body: GoogleCloudAiplatformV1beta1StartNotebookRuntimeRequest
|
|
26501
27199
|
): Request<GoogleLongrunningOperation>;
|
|
27200
|
+
/** Stops a NotebookRuntime. */
|
|
27201
|
+
stop(request: {
|
|
27202
|
+
/** V1 error format. */
|
|
27203
|
+
'$.xgafv'?: string;
|
|
27204
|
+
/** OAuth access token. */
|
|
27205
|
+
access_token?: string;
|
|
27206
|
+
/** Data format for response. */
|
|
27207
|
+
alt?: string;
|
|
27208
|
+
/** JSONP */
|
|
27209
|
+
callback?: string;
|
|
27210
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
27211
|
+
fields?: string;
|
|
27212
|
+
/** 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. */
|
|
27213
|
+
key?: string;
|
|
27214
|
+
/** Required. The name of the NotebookRuntime resource to be stopped. Instead of checking whether the name is in valid NotebookRuntime resource name format, directly throw NotFound exception if there is no such NotebookRuntime in spanner. */
|
|
27215
|
+
name: string;
|
|
27216
|
+
/** OAuth 2.0 token for the current user. */
|
|
27217
|
+
oauth_token?: string;
|
|
27218
|
+
/** Returns response with indentations and line breaks. */
|
|
27219
|
+
prettyPrint?: boolean;
|
|
27220
|
+
/** 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. */
|
|
27221
|
+
quotaUser?: string;
|
|
27222
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27223
|
+
upload_protocol?: string;
|
|
27224
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27225
|
+
uploadType?: string;
|
|
27226
|
+
/** Request body */
|
|
27227
|
+
resource: GoogleCloudAiplatformV1beta1StopNotebookRuntimeRequest;
|
|
27228
|
+
}): Request<GoogleLongrunningOperation>;
|
|
27229
|
+
stop(
|
|
27230
|
+
request: {
|
|
27231
|
+
/** V1 error format. */
|
|
27232
|
+
'$.xgafv'?: string;
|
|
27233
|
+
/** OAuth access token. */
|
|
27234
|
+
access_token?: string;
|
|
27235
|
+
/** Data format for response. */
|
|
27236
|
+
alt?: string;
|
|
27237
|
+
/** JSONP */
|
|
27238
|
+
callback?: string;
|
|
27239
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
27240
|
+
fields?: string;
|
|
27241
|
+
/** 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. */
|
|
27242
|
+
key?: string;
|
|
27243
|
+
/** Required. The name of the NotebookRuntime resource to be stopped. Instead of checking whether the name is in valid NotebookRuntime resource name format, directly throw NotFound exception if there is no such NotebookRuntime in spanner. */
|
|
27244
|
+
name: string;
|
|
27245
|
+
/** OAuth 2.0 token for the current user. */
|
|
27246
|
+
oauth_token?: string;
|
|
27247
|
+
/** Returns response with indentations and line breaks. */
|
|
27248
|
+
prettyPrint?: boolean;
|
|
27249
|
+
/** 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. */
|
|
27250
|
+
quotaUser?: string;
|
|
27251
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27252
|
+
upload_protocol?: string;
|
|
27253
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27254
|
+
uploadType?: string;
|
|
27255
|
+
},
|
|
27256
|
+
body: GoogleCloudAiplatformV1beta1StopNotebookRuntimeRequest
|
|
27257
|
+
): Request<GoogleLongrunningOperation>;
|
|
26502
27258
|
/** Upgrades a NotebookRuntime. */
|
|
26503
27259
|
upgrade(request: {
|
|
26504
27260
|
/** V1 error format. */
|
|
@@ -28162,6 +28918,64 @@ declare namespace gapi.client {
|
|
|
28162
28918
|
},
|
|
28163
28919
|
body: GoogleCloudAiplatformV1beta1CountTokensRequest
|
|
28164
28920
|
): Request<GoogleCloudAiplatformV1beta1CountTokensResponse>;
|
|
28921
|
+
/** Fetch an asynchronous online prediction operation. */
|
|
28922
|
+
fetchPredictOperation(request: {
|
|
28923
|
+
/** V1 error format. */
|
|
28924
|
+
'$.xgafv'?: string;
|
|
28925
|
+
/** OAuth access token. */
|
|
28926
|
+
access_token?: string;
|
|
28927
|
+
/** Data format for response. */
|
|
28928
|
+
alt?: string;
|
|
28929
|
+
/** JSONP */
|
|
28930
|
+
callback?: string;
|
|
28931
|
+
/** 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}` */
|
|
28932
|
+
endpoint: string;
|
|
28933
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
28934
|
+
fields?: string;
|
|
28935
|
+
/** 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. */
|
|
28936
|
+
key?: string;
|
|
28937
|
+
/** OAuth 2.0 token for the current user. */
|
|
28938
|
+
oauth_token?: string;
|
|
28939
|
+
/** Returns response with indentations and line breaks. */
|
|
28940
|
+
prettyPrint?: boolean;
|
|
28941
|
+
/** 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. */
|
|
28942
|
+
quotaUser?: string;
|
|
28943
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28944
|
+
upload_protocol?: string;
|
|
28945
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28946
|
+
uploadType?: string;
|
|
28947
|
+
/** Request body */
|
|
28948
|
+
resource: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest;
|
|
28949
|
+
}): Request<GoogleLongrunningOperation>;
|
|
28950
|
+
fetchPredictOperation(
|
|
28951
|
+
request: {
|
|
28952
|
+
/** V1 error format. */
|
|
28953
|
+
'$.xgafv'?: string;
|
|
28954
|
+
/** OAuth access token. */
|
|
28955
|
+
access_token?: string;
|
|
28956
|
+
/** Data format for response. */
|
|
28957
|
+
alt?: string;
|
|
28958
|
+
/** JSONP */
|
|
28959
|
+
callback?: string;
|
|
28960
|
+
/** 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}` */
|
|
28961
|
+
endpoint: string;
|
|
28962
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
28963
|
+
fields?: string;
|
|
28964
|
+
/** 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. */
|
|
28965
|
+
key?: string;
|
|
28966
|
+
/** OAuth 2.0 token for the current user. */
|
|
28967
|
+
oauth_token?: string;
|
|
28968
|
+
/** Returns response with indentations and line breaks. */
|
|
28969
|
+
prettyPrint?: boolean;
|
|
28970
|
+
/** 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. */
|
|
28971
|
+
quotaUser?: string;
|
|
28972
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
28973
|
+
upload_protocol?: string;
|
|
28974
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
28975
|
+
uploadType?: string;
|
|
28976
|
+
},
|
|
28977
|
+
body: GoogleCloudAiplatformV1beta1FetchPredictOperationRequest
|
|
28978
|
+
): Request<GoogleLongrunningOperation>;
|
|
28165
28979
|
/** Generate content with multimodal inputs. */
|
|
28166
28980
|
generateContent(request: {
|
|
28167
28981
|
/** V1 error format. */
|
|
@@ -28307,6 +29121,63 @@ declare namespace gapi.client {
|
|
|
28307
29121
|
},
|
|
28308
29122
|
body: GoogleCloudAiplatformV1beta1PredictRequest
|
|
28309
29123
|
): Request<GoogleCloudAiplatformV1beta1PredictResponse>;
|
|
29124
|
+
predictLongRunning(request: {
|
|
29125
|
+
/** V1 error format. */
|
|
29126
|
+
'$.xgafv'?: string;
|
|
29127
|
+
/** OAuth access token. */
|
|
29128
|
+
access_token?: string;
|
|
29129
|
+
/** Data format for response. */
|
|
29130
|
+
alt?: string;
|
|
29131
|
+
/** JSONP */
|
|
29132
|
+
callback?: string;
|
|
29133
|
+
/** 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}` */
|
|
29134
|
+
endpoint: string;
|
|
29135
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29136
|
+
fields?: string;
|
|
29137
|
+
/** 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. */
|
|
29138
|
+
key?: string;
|
|
29139
|
+
/** OAuth 2.0 token for the current user. */
|
|
29140
|
+
oauth_token?: string;
|
|
29141
|
+
/** Returns response with indentations and line breaks. */
|
|
29142
|
+
prettyPrint?: boolean;
|
|
29143
|
+
/** 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. */
|
|
29144
|
+
quotaUser?: string;
|
|
29145
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29146
|
+
upload_protocol?: string;
|
|
29147
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29148
|
+
uploadType?: string;
|
|
29149
|
+
/** Request body */
|
|
29150
|
+
resource: GoogleCloudAiplatformV1beta1PredictLongRunningRequest;
|
|
29151
|
+
}): Request<GoogleLongrunningOperation>;
|
|
29152
|
+
predictLongRunning(
|
|
29153
|
+
request: {
|
|
29154
|
+
/** V1 error format. */
|
|
29155
|
+
'$.xgafv'?: string;
|
|
29156
|
+
/** OAuth access token. */
|
|
29157
|
+
access_token?: string;
|
|
29158
|
+
/** Data format for response. */
|
|
29159
|
+
alt?: string;
|
|
29160
|
+
/** JSONP */
|
|
29161
|
+
callback?: string;
|
|
29162
|
+
/** 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}` */
|
|
29163
|
+
endpoint: string;
|
|
29164
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
29165
|
+
fields?: string;
|
|
29166
|
+
/** 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. */
|
|
29167
|
+
key?: string;
|
|
29168
|
+
/** OAuth 2.0 token for the current user. */
|
|
29169
|
+
oauth_token?: string;
|
|
29170
|
+
/** Returns response with indentations and line breaks. */
|
|
29171
|
+
prettyPrint?: boolean;
|
|
29172
|
+
/** 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. */
|
|
29173
|
+
quotaUser?: string;
|
|
29174
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
29175
|
+
upload_protocol?: string;
|
|
29176
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
29177
|
+
uploadType?: string;
|
|
29178
|
+
},
|
|
29179
|
+
body: GoogleCloudAiplatformV1beta1PredictLongRunningRequest
|
|
29180
|
+
): Request<GoogleLongrunningOperation>;
|
|
28310
29181
|
/** Perform an online prediction with an arbitrary HTTP payload. The response includes the following HTTP headers: * `X-Vertex-AI-Endpoint-Id`: ID of the Endpoint that served this prediction. * `X-Vertex-AI-Deployed-Model-Id`: ID of the Endpoint's DeployedModel that served this prediction. */
|
|
28311
29182
|
rawPredict(request: {
|
|
28312
29183
|
/** V1 error format. */
|