@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20240609 → 0.0.20240628
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 +1324 -77
- 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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240628
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -31,6 +31,8 @@ declare namespace gapi.client {
|
|
|
31
31
|
raiMediaFilteredCount?: number;
|
|
32
32
|
/** Returns rai failure reasons if any. */
|
|
33
33
|
raiMediaFilteredReasons?: string[];
|
|
34
|
+
/** Billable prediction metrics. */
|
|
35
|
+
reportingMetrics?: IntelligenceCloudAutomlXpsReportingMetrics;
|
|
34
36
|
}
|
|
35
37
|
interface CloudAiLargeModelsVisionImage {
|
|
36
38
|
/** Image encoding, encoded as "image/png" or "image/jpg". */
|
|
@@ -70,6 +72,8 @@ declare namespace gapi.client {
|
|
|
70
72
|
interface CloudAiLargeModelsVisionRaiInfo {
|
|
71
73
|
/** The list of detected labels for different rai categories. */
|
|
72
74
|
detectedLabels?: CloudAiLargeModelsVisionRaiInfoDetectedLabels[];
|
|
75
|
+
/** The model name used to indexing into the RaiFilterConfig map. Would either be one of imagegeneration@002-006, imagen-3.0-... api endpoint names, or internal names used for mapping to different filter configs (genselfie, ai_watermark) than its api endpoint. */
|
|
76
|
+
modelName?: string;
|
|
73
77
|
/** List of rai categories' information to return */
|
|
74
78
|
raiCategories?: string[];
|
|
75
79
|
/** List of rai scores mapping to the rai categories. Rounded to 1 decimal place. */
|
|
@@ -479,6 +483,30 @@ declare namespace gapi.client {
|
|
|
479
483
|
/** Required. BigQuery URI to a table, up to 2000 characters long. Accepted forms: * BigQuery path. For example: `bq://projectId.bqDatasetId.bqTableId`. */
|
|
480
484
|
inputUri?: string;
|
|
481
485
|
}
|
|
486
|
+
interface GoogleCloudAiplatformV1BleuInput {
|
|
487
|
+
/** Required. Repeated bleu instances. */
|
|
488
|
+
instances?: GoogleCloudAiplatformV1BleuInstance[];
|
|
489
|
+
/** Required. Spec for bleu score metric. */
|
|
490
|
+
metricSpec?: GoogleCloudAiplatformV1BleuSpec;
|
|
491
|
+
}
|
|
492
|
+
interface GoogleCloudAiplatformV1BleuInstance {
|
|
493
|
+
/** Required. Output of the evaluated model. */
|
|
494
|
+
prediction?: string;
|
|
495
|
+
/** Required. Ground truth used to compare against the prediction. */
|
|
496
|
+
reference?: string;
|
|
497
|
+
}
|
|
498
|
+
interface GoogleCloudAiplatformV1BleuMetricValue {
|
|
499
|
+
/** Output only. Bleu score. */
|
|
500
|
+
score?: number;
|
|
501
|
+
}
|
|
502
|
+
interface GoogleCloudAiplatformV1BleuResults {
|
|
503
|
+
/** Output only. Bleu metric values. */
|
|
504
|
+
bleuMetricValues?: GoogleCloudAiplatformV1BleuMetricValue[];
|
|
505
|
+
}
|
|
506
|
+
interface GoogleCloudAiplatformV1BleuSpec {
|
|
507
|
+
/** Optional. Whether to use_effective_order to compute bleu score. */
|
|
508
|
+
useEffectiveOrder?: boolean;
|
|
509
|
+
}
|
|
482
510
|
interface GoogleCloudAiplatformV1Blob {
|
|
483
511
|
/** Required. Raw bytes. */
|
|
484
512
|
data?: string;
|
|
@@ -548,6 +576,28 @@ declare namespace gapi.client {
|
|
|
548
576
|
/** Output only. List of citations. */
|
|
549
577
|
citations?: GoogleCloudAiplatformV1Citation[];
|
|
550
578
|
}
|
|
579
|
+
interface GoogleCloudAiplatformV1CoherenceInput {
|
|
580
|
+
/** Required. Coherence instance. */
|
|
581
|
+
instance?: GoogleCloudAiplatformV1CoherenceInstance;
|
|
582
|
+
/** Required. Spec for coherence score metric. */
|
|
583
|
+
metricSpec?: GoogleCloudAiplatformV1CoherenceSpec;
|
|
584
|
+
}
|
|
585
|
+
interface GoogleCloudAiplatformV1CoherenceInstance {
|
|
586
|
+
/** Required. Output of the evaluated model. */
|
|
587
|
+
prediction?: string;
|
|
588
|
+
}
|
|
589
|
+
interface GoogleCloudAiplatformV1CoherenceResult {
|
|
590
|
+
/** Output only. Confidence for coherence score. */
|
|
591
|
+
confidence?: number;
|
|
592
|
+
/** Output only. Explanation for coherence score. */
|
|
593
|
+
explanation?: string;
|
|
594
|
+
/** Output only. Coherence score. */
|
|
595
|
+
score?: number;
|
|
596
|
+
}
|
|
597
|
+
interface GoogleCloudAiplatformV1CoherenceSpec {
|
|
598
|
+
/** Optional. Which version to use for evaluation. */
|
|
599
|
+
version?: number;
|
|
600
|
+
}
|
|
551
601
|
interface GoogleCloudAiplatformV1CompleteTrialRequest {
|
|
552
602
|
/** Optional. If provided, it will be used as the completed Trial's final_measurement; Otherwise, the service will auto-select a previously reported measurement as the final-measurement */
|
|
553
603
|
finalMeasurement?: GoogleCloudAiplatformV1Measurement;
|
|
@@ -567,8 +617,12 @@ declare namespace gapi.client {
|
|
|
567
617
|
successfulForecastPointCount?: string;
|
|
568
618
|
}
|
|
569
619
|
interface GoogleCloudAiplatformV1ComputeTokensRequest {
|
|
620
|
+
/** Required. Input content. */
|
|
621
|
+
contents?: GoogleCloudAiplatformV1Content[];
|
|
570
622
|
/** Required. The instances that are the input to token computing API call. Schema is identical to the prediction schema of the text model, even for the non-text models, like chat models, or Codey models. */
|
|
571
623
|
instances?: any[];
|
|
624
|
+
/** Required. The name of the publisher model requested to serve the prediction. Format: projects/{project}/locations/{location}/publishers/*/models/* */
|
|
625
|
+
model?: string;
|
|
572
626
|
}
|
|
573
627
|
interface GoogleCloudAiplatformV1ComputeTokensResponse {
|
|
574
628
|
/** Lists of tokens info from the input. A ComputeTokensRequest could have multiple instances with a prompt in each instance. We also need to return lists of tokens info for the request with multiple instances. */
|
|
@@ -920,50 +974,6 @@ declare namespace gapi.client {
|
|
|
920
974
|
/** Output only. Timestamp when this Dataset was last updated. */
|
|
921
975
|
updateTime?: string;
|
|
922
976
|
}
|
|
923
|
-
interface GoogleCloudAiplatformV1DatasetDistribution {
|
|
924
|
-
/** Output only. Defines the histogram bucket. */
|
|
925
|
-
buckets?: GoogleCloudAiplatformV1DatasetDistributionDistributionBucket[];
|
|
926
|
-
/** Output only. The maximum of the population values. */
|
|
927
|
-
max?: number;
|
|
928
|
-
/** Output only. The arithmetic mean of the values in the population. */
|
|
929
|
-
mean?: number;
|
|
930
|
-
/** Output only. The median of the values in the population. */
|
|
931
|
-
median?: number;
|
|
932
|
-
/** Output only. The minimum of the population values. */
|
|
933
|
-
min?: number;
|
|
934
|
-
/** Output only. The 5th percentile of the values in the population. */
|
|
935
|
-
p5?: number;
|
|
936
|
-
/** Output only. The 95th percentile of the values in the population. */
|
|
937
|
-
p95?: number;
|
|
938
|
-
/** Output only. Sum of a given population of values. */
|
|
939
|
-
sum?: number;
|
|
940
|
-
}
|
|
941
|
-
interface GoogleCloudAiplatformV1DatasetDistributionDistributionBucket {
|
|
942
|
-
/** Output only. Number of values in the bucket. */
|
|
943
|
-
count?: string;
|
|
944
|
-
/** Output only. Left bound of the bucket. */
|
|
945
|
-
left?: number;
|
|
946
|
-
/** Output only. Right bound of the bucket. */
|
|
947
|
-
right?: number;
|
|
948
|
-
}
|
|
949
|
-
interface GoogleCloudAiplatformV1DatasetStats {
|
|
950
|
-
/** Output only. Number of billable characters in the tuning dataset. */
|
|
951
|
-
totalBillableCharacterCount?: string;
|
|
952
|
-
/** Output only. Number of tuning characters in the tuning dataset. */
|
|
953
|
-
totalTuningCharacterCount?: string;
|
|
954
|
-
/** Output only. Number of examples in the tuning dataset. */
|
|
955
|
-
tuningDatasetExampleCount?: string;
|
|
956
|
-
/** Output only. Number of tuning steps for this Tuning Job. */
|
|
957
|
-
tuningStepCount?: string;
|
|
958
|
-
/** Output only. Sample user messages in the training dataset uri. */
|
|
959
|
-
userDatasetExamples?: GoogleCloudAiplatformV1Content[];
|
|
960
|
-
/** Output only. Dataset distributions for the user input tokens. */
|
|
961
|
-
userInputTokenDistribution?: GoogleCloudAiplatformV1DatasetDistribution;
|
|
962
|
-
/** Output only. Dataset distributions for the messages per example. */
|
|
963
|
-
userMessagePerExampleDistribution?: GoogleCloudAiplatformV1DatasetDistribution;
|
|
964
|
-
/** Output only. Dataset distributions for the user output tokens. */
|
|
965
|
-
userOutputTokenDistribution?: GoogleCloudAiplatformV1DatasetDistribution;
|
|
966
|
-
}
|
|
967
977
|
interface GoogleCloudAiplatformV1DatasetVersion {
|
|
968
978
|
/** Output only. Name of the associated BigQuery dataset. */
|
|
969
979
|
bigQueryDatasetName?: string;
|
|
@@ -1198,10 +1208,6 @@ declare namespace gapi.client {
|
|
|
1198
1208
|
/** Type of the boot disk (default is "pd-ssd"). Valid values: "pd-ssd" (Persistent Disk Solid State Drive) or "pd-standard" (Persistent Disk Hard Disk Drive). */
|
|
1199
1209
|
bootDiskType?: string;
|
|
1200
1210
|
}
|
|
1201
|
-
interface GoogleCloudAiplatformV1DistillationDataStats {
|
|
1202
|
-
/** Output only. Statistics computed for the training dataset. */
|
|
1203
|
-
trainingDatasetStats?: GoogleCloudAiplatformV1DatasetStats;
|
|
1204
|
-
}
|
|
1205
1211
|
interface GoogleCloudAiplatformV1DoubleArray {
|
|
1206
1212
|
/** A list of double values. */
|
|
1207
1213
|
values?: number[];
|
|
@@ -1310,6 +1316,94 @@ declare namespace gapi.client {
|
|
|
1310
1316
|
/** Explanation type. For AutoML Image Classification models, possible values are: * `image-integrated-gradients` * `image-xrai` */
|
|
1311
1317
|
explanationType?: string;
|
|
1312
1318
|
}
|
|
1319
|
+
interface GoogleCloudAiplatformV1EvaluateInstancesRequest {
|
|
1320
|
+
/** Instances and metric spec for bleu metric. */
|
|
1321
|
+
bleuInput?: GoogleCloudAiplatformV1BleuInput;
|
|
1322
|
+
/** Input for coherence metric. */
|
|
1323
|
+
coherenceInput?: GoogleCloudAiplatformV1CoherenceInput;
|
|
1324
|
+
/** Auto metric instances. Instances and metric spec for exact match metric. */
|
|
1325
|
+
exactMatchInput?: GoogleCloudAiplatformV1ExactMatchInput;
|
|
1326
|
+
/** LLM-based metric instance. General text generation metrics, applicable to other categories. Input for fluency metric. */
|
|
1327
|
+
fluencyInput?: GoogleCloudAiplatformV1FluencyInput;
|
|
1328
|
+
/** Input for fulfillment metric. */
|
|
1329
|
+
fulfillmentInput?: GoogleCloudAiplatformV1FulfillmentInput;
|
|
1330
|
+
/** Input for groundedness metric. */
|
|
1331
|
+
groundednessInput?: GoogleCloudAiplatformV1GroundednessInput;
|
|
1332
|
+
/** Input for pairwise question answering quality metric. */
|
|
1333
|
+
pairwiseQuestionAnsweringQualityInput?: GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualityInput;
|
|
1334
|
+
/** Input for pairwise summarization quality metric. */
|
|
1335
|
+
pairwiseSummarizationQualityInput?: GoogleCloudAiplatformV1PairwiseSummarizationQualityInput;
|
|
1336
|
+
/** Input for question answering correctness metric. */
|
|
1337
|
+
questionAnsweringCorrectnessInput?: GoogleCloudAiplatformV1QuestionAnsweringCorrectnessInput;
|
|
1338
|
+
/** Input for question answering helpfulness metric. */
|
|
1339
|
+
questionAnsweringHelpfulnessInput?: GoogleCloudAiplatformV1QuestionAnsweringHelpfulnessInput;
|
|
1340
|
+
/** Input for question answering quality metric. */
|
|
1341
|
+
questionAnsweringQualityInput?: GoogleCloudAiplatformV1QuestionAnsweringQualityInput;
|
|
1342
|
+
/** Input for question answering relevance metric. */
|
|
1343
|
+
questionAnsweringRelevanceInput?: GoogleCloudAiplatformV1QuestionAnsweringRelevanceInput;
|
|
1344
|
+
/** Instances and metric spec for rouge metric. */
|
|
1345
|
+
rougeInput?: GoogleCloudAiplatformV1RougeInput;
|
|
1346
|
+
/** Input for safety metric. */
|
|
1347
|
+
safetyInput?: GoogleCloudAiplatformV1SafetyInput;
|
|
1348
|
+
/** Input for summarization helpfulness metric. */
|
|
1349
|
+
summarizationHelpfulnessInput?: GoogleCloudAiplatformV1SummarizationHelpfulnessInput;
|
|
1350
|
+
/** Input for summarization quality metric. */
|
|
1351
|
+
summarizationQualityInput?: GoogleCloudAiplatformV1SummarizationQualityInput;
|
|
1352
|
+
/** Input for summarization verbosity metric. */
|
|
1353
|
+
summarizationVerbosityInput?: GoogleCloudAiplatformV1SummarizationVerbosityInput;
|
|
1354
|
+
/** Tool call metric instances. Input for tool call valid metric. */
|
|
1355
|
+
toolCallValidInput?: GoogleCloudAiplatformV1ToolCallValidInput;
|
|
1356
|
+
/** Input for tool name match metric. */
|
|
1357
|
+
toolNameMatchInput?: GoogleCloudAiplatformV1ToolNameMatchInput;
|
|
1358
|
+
/** Input for tool parameter key match metric. */
|
|
1359
|
+
toolParameterKeyMatchInput?: GoogleCloudAiplatformV1ToolParameterKeyMatchInput;
|
|
1360
|
+
/** Input for tool parameter key value match metric. */
|
|
1361
|
+
toolParameterKvMatchInput?: GoogleCloudAiplatformV1ToolParameterKVMatchInput;
|
|
1362
|
+
}
|
|
1363
|
+
interface GoogleCloudAiplatformV1EvaluateInstancesResponse {
|
|
1364
|
+
/** Results for bleu metric. */
|
|
1365
|
+
bleuResults?: GoogleCloudAiplatformV1BleuResults;
|
|
1366
|
+
/** Result for coherence metric. */
|
|
1367
|
+
coherenceResult?: GoogleCloudAiplatformV1CoherenceResult;
|
|
1368
|
+
/** Auto metric evaluation results. Results for exact match metric. */
|
|
1369
|
+
exactMatchResults?: GoogleCloudAiplatformV1ExactMatchResults;
|
|
1370
|
+
/** LLM-based metric evaluation result. General text generation metrics, applicable to other categories. Result for fluency metric. */
|
|
1371
|
+
fluencyResult?: GoogleCloudAiplatformV1FluencyResult;
|
|
1372
|
+
/** Result for fulfillment metric. */
|
|
1373
|
+
fulfillmentResult?: GoogleCloudAiplatformV1FulfillmentResult;
|
|
1374
|
+
/** Result for groundedness metric. */
|
|
1375
|
+
groundednessResult?: GoogleCloudAiplatformV1GroundednessResult;
|
|
1376
|
+
/** Result for pairwise question answering quality metric. */
|
|
1377
|
+
pairwiseQuestionAnsweringQualityResult?: GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualityResult;
|
|
1378
|
+
/** Result for pairwise summarization quality metric. */
|
|
1379
|
+
pairwiseSummarizationQualityResult?: GoogleCloudAiplatformV1PairwiseSummarizationQualityResult;
|
|
1380
|
+
/** Result for question answering correctness metric. */
|
|
1381
|
+
questionAnsweringCorrectnessResult?: GoogleCloudAiplatformV1QuestionAnsweringCorrectnessResult;
|
|
1382
|
+
/** Result for question answering helpfulness metric. */
|
|
1383
|
+
questionAnsweringHelpfulnessResult?: GoogleCloudAiplatformV1QuestionAnsweringHelpfulnessResult;
|
|
1384
|
+
/** Question answering only metrics. Result for question answering quality metric. */
|
|
1385
|
+
questionAnsweringQualityResult?: GoogleCloudAiplatformV1QuestionAnsweringQualityResult;
|
|
1386
|
+
/** Result for question answering relevance metric. */
|
|
1387
|
+
questionAnsweringRelevanceResult?: GoogleCloudAiplatformV1QuestionAnsweringRelevanceResult;
|
|
1388
|
+
/** Results for rouge metric. */
|
|
1389
|
+
rougeResults?: GoogleCloudAiplatformV1RougeResults;
|
|
1390
|
+
/** Result for safety metric. */
|
|
1391
|
+
safetyResult?: GoogleCloudAiplatformV1SafetyResult;
|
|
1392
|
+
/** Result for summarization helpfulness metric. */
|
|
1393
|
+
summarizationHelpfulnessResult?: GoogleCloudAiplatformV1SummarizationHelpfulnessResult;
|
|
1394
|
+
/** Summarization only metrics. Result for summarization quality metric. */
|
|
1395
|
+
summarizationQualityResult?: GoogleCloudAiplatformV1SummarizationQualityResult;
|
|
1396
|
+
/** Result for summarization verbosity metric. */
|
|
1397
|
+
summarizationVerbosityResult?: GoogleCloudAiplatformV1SummarizationVerbosityResult;
|
|
1398
|
+
/** Tool call metrics. Results for tool call valid metric. */
|
|
1399
|
+
toolCallValidResults?: GoogleCloudAiplatformV1ToolCallValidResults;
|
|
1400
|
+
/** Results for tool name match metric. */
|
|
1401
|
+
toolNameMatchResults?: GoogleCloudAiplatformV1ToolNameMatchResults;
|
|
1402
|
+
/** Results for tool parameter key match metric. */
|
|
1403
|
+
toolParameterKeyMatchResults?: GoogleCloudAiplatformV1ToolParameterKeyMatchResults;
|
|
1404
|
+
/** Results for tool parameter key value match metric. */
|
|
1405
|
+
toolParameterKvMatchResults?: GoogleCloudAiplatformV1ToolParameterKVMatchResults;
|
|
1406
|
+
}
|
|
1313
1407
|
interface GoogleCloudAiplatformV1Event {
|
|
1314
1408
|
/** Required. The relative resource name of the Artifact in the Event. */
|
|
1315
1409
|
artifact?: string;
|
|
@@ -1322,6 +1416,27 @@ declare namespace gapi.client {
|
|
|
1322
1416
|
/** Required. The type of the Event. */
|
|
1323
1417
|
type?: string;
|
|
1324
1418
|
}
|
|
1419
|
+
interface GoogleCloudAiplatformV1ExactMatchInput {
|
|
1420
|
+
/** Required. Repeated exact match instances. */
|
|
1421
|
+
instances?: GoogleCloudAiplatformV1ExactMatchInstance[];
|
|
1422
|
+
/** Required. Spec for exact match metric. */
|
|
1423
|
+
metricSpec?: any;
|
|
1424
|
+
}
|
|
1425
|
+
interface GoogleCloudAiplatformV1ExactMatchInstance {
|
|
1426
|
+
/** Required. Output of the evaluated model. */
|
|
1427
|
+
prediction?: string;
|
|
1428
|
+
/** Required. Ground truth used to compare against the prediction. */
|
|
1429
|
+
reference?: string;
|
|
1430
|
+
}
|
|
1431
|
+
interface GoogleCloudAiplatformV1ExactMatchMetricValue {
|
|
1432
|
+
/** Output only. Exact match score. */
|
|
1433
|
+
score?: number;
|
|
1434
|
+
}
|
|
1435
|
+
interface GoogleCloudAiplatformV1ExactMatchResults {
|
|
1436
|
+
/** Output only. Exact match metric values. */
|
|
1437
|
+
exactMatchMetricValues?: GoogleCloudAiplatformV1ExactMatchMetricValue[];
|
|
1438
|
+
}
|
|
1439
|
+
interface GoogleCloudAiplatformV1ExactMatchSpec {}
|
|
1325
1440
|
interface GoogleCloudAiplatformV1Examples {
|
|
1326
1441
|
/** The Cloud Storage input instances. */
|
|
1327
1442
|
exampleGcsSource?: GoogleCloudAiplatformV1ExamplesExampleGcsSource;
|
|
@@ -1731,8 +1846,12 @@ declare namespace gapi.client {
|
|
|
1731
1846
|
minNodeCount?: number;
|
|
1732
1847
|
}
|
|
1733
1848
|
interface GoogleCloudAiplatformV1FeatureOnlineStoreDedicatedServingEndpoint {
|
|
1849
|
+
/** Optional. Private service connect config. The private service connection is available only for Optimized storage type, not for embedding management now. If PrivateServiceConnectConfig.enable_private_service_connect set to true, customers will use private service connection to send request. Otherwise, the connection will set to public endpoint. */
|
|
1850
|
+
privateServiceConnectConfig?: GoogleCloudAiplatformV1PrivateServiceConnectConfig;
|
|
1734
1851
|
/** Output only. This field will be populated with the domain name to use for this FeatureOnlineStore */
|
|
1735
1852
|
publicEndpointDomainName?: string;
|
|
1853
|
+
/** Output only. The name of the service attachment resource. Populated if private service connect is enabled and after FeatureViewSync is created. */
|
|
1854
|
+
serviceAttachment?: string;
|
|
1736
1855
|
}
|
|
1737
1856
|
interface GoogleCloudAiplatformV1FeatureOnlineStoreOptimized {}
|
|
1738
1857
|
interface GoogleCloudAiplatformV1FeatureSelector {
|
|
@@ -2030,6 +2149,28 @@ declare namespace gapi.client {
|
|
|
2030
2149
|
/** The distance between the neighbor and the query sparse_embedding. */
|
|
2031
2150
|
sparseDistance?: number;
|
|
2032
2151
|
}
|
|
2152
|
+
interface GoogleCloudAiplatformV1FluencyInput {
|
|
2153
|
+
/** Required. Fluency instance. */
|
|
2154
|
+
instance?: GoogleCloudAiplatformV1FluencyInstance;
|
|
2155
|
+
/** Required. Spec for fluency score metric. */
|
|
2156
|
+
metricSpec?: GoogleCloudAiplatformV1FluencySpec;
|
|
2157
|
+
}
|
|
2158
|
+
interface GoogleCloudAiplatformV1FluencyInstance {
|
|
2159
|
+
/** Required. Output of the evaluated model. */
|
|
2160
|
+
prediction?: string;
|
|
2161
|
+
}
|
|
2162
|
+
interface GoogleCloudAiplatformV1FluencyResult {
|
|
2163
|
+
/** Output only. Confidence for fluency score. */
|
|
2164
|
+
confidence?: number;
|
|
2165
|
+
/** Output only. Explanation for fluency score. */
|
|
2166
|
+
explanation?: string;
|
|
2167
|
+
/** Output only. Fluency score. */
|
|
2168
|
+
score?: number;
|
|
2169
|
+
}
|
|
2170
|
+
interface GoogleCloudAiplatformV1FluencySpec {
|
|
2171
|
+
/** Optional. Which version to use for evaluation. */
|
|
2172
|
+
version?: number;
|
|
2173
|
+
}
|
|
2033
2174
|
interface GoogleCloudAiplatformV1FractionSplit {
|
|
2034
2175
|
/** The fraction of the input data that is to be used to evaluate the Model. */
|
|
2035
2176
|
testFraction?: number;
|
|
@@ -2038,6 +2179,30 @@ declare namespace gapi.client {
|
|
|
2038
2179
|
/** The fraction of the input data that is to be used to validate the Model. */
|
|
2039
2180
|
validationFraction?: number;
|
|
2040
2181
|
}
|
|
2182
|
+
interface GoogleCloudAiplatformV1FulfillmentInput {
|
|
2183
|
+
/** Required. Fulfillment instance. */
|
|
2184
|
+
instance?: GoogleCloudAiplatformV1FulfillmentInstance;
|
|
2185
|
+
/** Required. Spec for fulfillment score metric. */
|
|
2186
|
+
metricSpec?: GoogleCloudAiplatformV1FulfillmentSpec;
|
|
2187
|
+
}
|
|
2188
|
+
interface GoogleCloudAiplatformV1FulfillmentInstance {
|
|
2189
|
+
/** Required. Inference instruction prompt to compare prediction with. */
|
|
2190
|
+
instruction?: string;
|
|
2191
|
+
/** Required. Output of the evaluated model. */
|
|
2192
|
+
prediction?: string;
|
|
2193
|
+
}
|
|
2194
|
+
interface GoogleCloudAiplatformV1FulfillmentResult {
|
|
2195
|
+
/** Output only. Confidence for fulfillment score. */
|
|
2196
|
+
confidence?: number;
|
|
2197
|
+
/** Output only. Explanation for fulfillment score. */
|
|
2198
|
+
explanation?: string;
|
|
2199
|
+
/** Output only. Fulfillment score. */
|
|
2200
|
+
score?: number;
|
|
2201
|
+
}
|
|
2202
|
+
interface GoogleCloudAiplatformV1FulfillmentSpec {
|
|
2203
|
+
/** Optional. Which version to use for evaluation. */
|
|
2204
|
+
version?: number;
|
|
2205
|
+
}
|
|
2041
2206
|
interface GoogleCloudAiplatformV1FunctionCall {
|
|
2042
2207
|
/** Optional. Required. The function parameters and values in JSON object format. See [FunctionDeclaration.parameters] for parameter details. */
|
|
2043
2208
|
args?: {[P in string]: any};
|
|
@@ -2144,12 +2309,82 @@ declare namespace gapi.client {
|
|
|
2144
2309
|
baseModelUri?: string;
|
|
2145
2310
|
}
|
|
2146
2311
|
interface GoogleCloudAiplatformV1GoogleSearchRetrieval {}
|
|
2312
|
+
interface GoogleCloudAiplatformV1GroundednessInput {
|
|
2313
|
+
/** Required. Groundedness instance. */
|
|
2314
|
+
instance?: GoogleCloudAiplatformV1GroundednessInstance;
|
|
2315
|
+
/** Required. Spec for groundedness metric. */
|
|
2316
|
+
metricSpec?: GoogleCloudAiplatformV1GroundednessSpec;
|
|
2317
|
+
}
|
|
2318
|
+
interface GoogleCloudAiplatformV1GroundednessInstance {
|
|
2319
|
+
/** Required. Background information provided in context used to compare against the prediction. */
|
|
2320
|
+
context?: string;
|
|
2321
|
+
/** Required. Output of the evaluated model. */
|
|
2322
|
+
prediction?: string;
|
|
2323
|
+
}
|
|
2324
|
+
interface GoogleCloudAiplatformV1GroundednessResult {
|
|
2325
|
+
/** Output only. Confidence for groundedness score. */
|
|
2326
|
+
confidence?: number;
|
|
2327
|
+
/** Output only. Explanation for groundedness score. */
|
|
2328
|
+
explanation?: string;
|
|
2329
|
+
/** Output only. Groundedness score. */
|
|
2330
|
+
score?: number;
|
|
2331
|
+
}
|
|
2332
|
+
interface GoogleCloudAiplatformV1GroundednessSpec {
|
|
2333
|
+
/** Optional. Which version to use for evaluation. */
|
|
2334
|
+
version?: number;
|
|
2335
|
+
}
|
|
2336
|
+
interface GoogleCloudAiplatformV1GroundingAttribution {
|
|
2337
|
+
/** Optional. Output only. Confidence score of the attribution. Ranges from 0 to 1. 1 is the most confident. */
|
|
2338
|
+
confidenceScore?: number;
|
|
2339
|
+
/** Output only. Segment of the content this attribution belongs to. */
|
|
2340
|
+
segment?: GoogleCloudAiplatformV1Segment;
|
|
2341
|
+
/** Optional. Attribution from the web. */
|
|
2342
|
+
web?: GoogleCloudAiplatformV1GroundingAttributionWeb;
|
|
2343
|
+
}
|
|
2344
|
+
interface GoogleCloudAiplatformV1GroundingAttributionWeb {
|
|
2345
|
+
/** Output only. Title of the attribution. */
|
|
2346
|
+
title?: string;
|
|
2347
|
+
/** Output only. URI reference of the attribution. */
|
|
2348
|
+
uri?: string;
|
|
2349
|
+
}
|
|
2350
|
+
interface GoogleCloudAiplatformV1GroundingChunk {
|
|
2351
|
+
/** Grounding chunk from context retrieved by the retrieval tools. */
|
|
2352
|
+
retrievedContext?: GoogleCloudAiplatformV1GroundingChunkRetrievedContext;
|
|
2353
|
+
/** Grounding chunk from the web. */
|
|
2354
|
+
web?: GoogleCloudAiplatformV1GroundingChunkWeb;
|
|
2355
|
+
}
|
|
2356
|
+
interface GoogleCloudAiplatformV1GroundingChunkRetrievedContext {
|
|
2357
|
+
/** Title of the attribution. */
|
|
2358
|
+
title?: string;
|
|
2359
|
+
/** URI reference of the attribution. */
|
|
2360
|
+
uri?: string;
|
|
2361
|
+
}
|
|
2362
|
+
interface GoogleCloudAiplatformV1GroundingChunkWeb {
|
|
2363
|
+
/** Title of the chunk. */
|
|
2364
|
+
title?: string;
|
|
2365
|
+
/** URI reference of the chunk. */
|
|
2366
|
+
uri?: string;
|
|
2367
|
+
}
|
|
2147
2368
|
interface GoogleCloudAiplatformV1GroundingMetadata {
|
|
2369
|
+
/** Optional. List of grounding attributions. */
|
|
2370
|
+
groundingAttributions?: GoogleCloudAiplatformV1GroundingAttribution[];
|
|
2371
|
+
/** List of supporting references retrieved from specified grounding source. */
|
|
2372
|
+
groundingChunks?: GoogleCloudAiplatformV1GroundingChunk[];
|
|
2373
|
+
/** Optional. List of grounding support. */
|
|
2374
|
+
groundingSupports?: GoogleCloudAiplatformV1GroundingSupport[];
|
|
2148
2375
|
/** Optional. Google search entry for the following-up web searches. */
|
|
2149
2376
|
searchEntryPoint?: GoogleCloudAiplatformV1SearchEntryPoint;
|
|
2150
2377
|
/** Optional. Web search queries for the following-up web search. */
|
|
2151
2378
|
webSearchQueries?: string[];
|
|
2152
2379
|
}
|
|
2380
|
+
interface GoogleCloudAiplatformV1GroundingSupport {
|
|
2381
|
+
/** Confidence score of the support references. Ranges from 0 to 1. 1 is the most confident. This list must have the same size as the grounding_chunk_indices. */
|
|
2382
|
+
confidenceScores?: number[];
|
|
2383
|
+
/** A list of indices (into 'grounding_chunk') specifying the citations associated with the claim. For instance [1,3,4] means that grounding_chunk[1], grounding_chunk[3], grounding_chunk[4] are the retrieved content attributed to the claim. */
|
|
2384
|
+
groundingChunkIndices?: number[];
|
|
2385
|
+
/** Segment of the content this support belongs to. */
|
|
2386
|
+
segment?: GoogleCloudAiplatformV1Segment;
|
|
2387
|
+
}
|
|
2153
2388
|
interface GoogleCloudAiplatformV1HyperparameterTuningJob {
|
|
2154
2389
|
/** Output only. Time when the HyperparameterTuningJob was created. */
|
|
2155
2390
|
createTime?: string;
|
|
@@ -2921,6 +3156,10 @@ declare namespace gapi.client {
|
|
|
2921
3156
|
pipelineJob?: string;
|
|
2922
3157
|
/** The schemata that describe formats of the Model's predictions and explanations as given and returned via PredictionService.Predict and PredictionService.Explain. */
|
|
2923
3158
|
predictSchemata?: GoogleCloudAiplatformV1PredictSchemata;
|
|
3159
|
+
/** Output only. A read only boolean field reflecting Zone Isolation status of the model. It's false by default. Since Model is a type ZICY 4.2 resource, the field is an aggregated value of ZI status of its underlying dependencies. */
|
|
3160
|
+
satisfiesPzi?: boolean;
|
|
3161
|
+
/** Output only. A read only boolean field reflecting ZS status of the model. It's false by default. Since Model is a type ZICY 4.2 resource, the field is an aggregated value of ZS status of its underlying dependencies. */
|
|
3162
|
+
satisfiesPzs?: boolean;
|
|
2924
3163
|
/** Output only. When this Model is deployed, its prediction resources are described by the `prediction_resources` field of the Endpoint.deployed_models object. Because not all Models support all resource configuration types, the configuration types this Model supports are listed here. If no configuration types are listed, the Model cannot be deployed to an Endpoint and does not support online predictions (PredictionService.Predict or PredictionService.Explain). Such a Model can serve predictions by using a BatchPredictionJob, if it has at least one entry each in supported_input_storage_formats and supported_output_storage_formats. */
|
|
2925
3164
|
supportedDeploymentResourcesTypes?: string[];
|
|
2926
3165
|
/** Output only. The formats in which this Model may be exported. If empty, this Model is not available for export. */
|
|
@@ -3580,6 +3819,70 @@ declare namespace gapi.client {
|
|
|
3580
3819
|
/** Immutable. A resource name of the NotebookRuntimeTemplate. */
|
|
3581
3820
|
notebookRuntimeTemplate?: string;
|
|
3582
3821
|
}
|
|
3822
|
+
interface GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualityInput {
|
|
3823
|
+
/** Required. Pairwise question answering quality instance. */
|
|
3824
|
+
instance?: GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualityInstance;
|
|
3825
|
+
/** Required. Spec for pairwise question answering quality score metric. */
|
|
3826
|
+
metricSpec?: GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualitySpec;
|
|
3827
|
+
}
|
|
3828
|
+
interface GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualityInstance {
|
|
3829
|
+
/** Required. Output of the baseline model. */
|
|
3830
|
+
baselinePrediction?: string;
|
|
3831
|
+
/** Required. Text to answer the question. */
|
|
3832
|
+
context?: string;
|
|
3833
|
+
/** Required. Question Answering prompt for LLM. */
|
|
3834
|
+
instruction?: string;
|
|
3835
|
+
/** Required. Output of the candidate model. */
|
|
3836
|
+
prediction?: string;
|
|
3837
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
3838
|
+
reference?: string;
|
|
3839
|
+
}
|
|
3840
|
+
interface GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualityResult {
|
|
3841
|
+
/** Output only. Confidence for question answering quality score. */
|
|
3842
|
+
confidence?: number;
|
|
3843
|
+
/** Output only. Explanation for question answering quality score. */
|
|
3844
|
+
explanation?: string;
|
|
3845
|
+
/** Output only. Pairwise question answering prediction choice. */
|
|
3846
|
+
pairwiseChoice?: string;
|
|
3847
|
+
}
|
|
3848
|
+
interface GoogleCloudAiplatformV1PairwiseQuestionAnsweringQualitySpec {
|
|
3849
|
+
/** Optional. Whether to use instance.reference to compute question answering quality. */
|
|
3850
|
+
useReference?: boolean;
|
|
3851
|
+
/** Optional. Which version to use for evaluation. */
|
|
3852
|
+
version?: number;
|
|
3853
|
+
}
|
|
3854
|
+
interface GoogleCloudAiplatformV1PairwiseSummarizationQualityInput {
|
|
3855
|
+
/** Required. Pairwise summarization quality instance. */
|
|
3856
|
+
instance?: GoogleCloudAiplatformV1PairwiseSummarizationQualityInstance;
|
|
3857
|
+
/** Required. Spec for pairwise summarization quality score metric. */
|
|
3858
|
+
metricSpec?: GoogleCloudAiplatformV1PairwiseSummarizationQualitySpec;
|
|
3859
|
+
}
|
|
3860
|
+
interface GoogleCloudAiplatformV1PairwiseSummarizationQualityInstance {
|
|
3861
|
+
/** Required. Output of the baseline model. */
|
|
3862
|
+
baselinePrediction?: string;
|
|
3863
|
+
/** Required. Text to be summarized. */
|
|
3864
|
+
context?: string;
|
|
3865
|
+
/** Required. Summarization prompt for LLM. */
|
|
3866
|
+
instruction?: string;
|
|
3867
|
+
/** Required. Output of the candidate model. */
|
|
3868
|
+
prediction?: string;
|
|
3869
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
3870
|
+
reference?: string;
|
|
3871
|
+
}
|
|
3872
|
+
interface GoogleCloudAiplatformV1PairwiseSummarizationQualityResult {
|
|
3873
|
+
/** Output only. Confidence for summarization quality score. */
|
|
3874
|
+
confidence?: number;
|
|
3875
|
+
/** Output only. Explanation for summarization quality score. */
|
|
3876
|
+
explanation?: string;
|
|
3877
|
+
/** Output only. Pairwise summarization prediction choice. */
|
|
3878
|
+
pairwiseChoice?: string;
|
|
3879
|
+
}
|
|
3880
|
+
interface GoogleCloudAiplatformV1PairwiseSummarizationQualitySpec {
|
|
3881
|
+
/** Optional. Whether to use instance.reference to compute pairwise summarization quality. */
|
|
3882
|
+
useReference?: boolean;
|
|
3883
|
+
/** Optional. Which version to use for evaluation. */
|
|
3884
|
+
version?: number;
|
|
3885
|
+
}
|
|
3583
3886
|
interface GoogleCloudAiplatformV1Part {
|
|
3584
3887
|
/** Optional. URI based data. */
|
|
3585
3888
|
fileData?: GoogleCloudAiplatformV1FileData;
|
|
@@ -3653,6 +3956,8 @@ declare namespace gapi.client {
|
|
|
3653
3956
|
network?: string;
|
|
3654
3957
|
/** The spec of the pipeline. */
|
|
3655
3958
|
pipelineSpec?: {[P in string]: any};
|
|
3959
|
+
/** Optional. Whether to do component level validations before job creation. */
|
|
3960
|
+
preflightValidations?: boolean;
|
|
3656
3961
|
/** A list of names for the reserved ip ranges under the VPC network that can be used for this Pipeline Job's workload. If set, we will deploy the Pipeline Job's workload within the provided ip ranges. Otherwise, the job will be deployed to any ip ranges under the provided VPC network. Example: ['vertex-ai-ip-range']. */
|
|
3657
3962
|
reservedIpRanges?: string[];
|
|
3658
3963
|
/** Runtime config of the pipeline. */
|
|
@@ -3911,6 +4216,8 @@ declare namespace gapi.client {
|
|
|
3911
4216
|
containerSpec?: GoogleCloudAiplatformV1ModelContainerSpec;
|
|
3912
4217
|
/** A description of resources that are dedicated to the DeployedModel, and that need a higher degree of manual configuration. */
|
|
3913
4218
|
dedicatedResources?: GoogleCloudAiplatformV1DedicatedResources;
|
|
4219
|
+
/** Optional. Metadata information about this deployment config. */
|
|
4220
|
+
deployMetadata?: GoogleCloudAiplatformV1PublisherModelCallToActionDeployDeployMetadata;
|
|
3914
4221
|
/** Optional. The name of the deploy task (e.g., "text to image generation"). */
|
|
3915
4222
|
deployTaskName?: string;
|
|
3916
4223
|
/** Optional. Large model reference. When this is set, model_artifact_spec is not needed. */
|
|
@@ -3924,6 +4231,10 @@ declare namespace gapi.client {
|
|
|
3924
4231
|
/** Required. The title of the regional resource reference. */
|
|
3925
4232
|
title?: string;
|
|
3926
4233
|
}
|
|
4234
|
+
interface GoogleCloudAiplatformV1PublisherModelCallToActionDeployDeployMetadata {
|
|
4235
|
+
/** Optional. Labels for the deployment. For managing deployment config like verifying, source of deployment config, etc. */
|
|
4236
|
+
labels?: {[P in string]: string};
|
|
4237
|
+
}
|
|
3927
4238
|
interface GoogleCloudAiplatformV1PublisherModelCallToActionDeployGke {
|
|
3928
4239
|
/** Optional. GKE deployment configuration in yaml format. */
|
|
3929
4240
|
gkeYamlConfigs?: string[];
|
|
@@ -4044,6 +4355,126 @@ declare namespace gapi.client {
|
|
|
4044
4355
|
/** The total number of Endpoints that have DeployedModels on this DeploymentResourcePool. */
|
|
4045
4356
|
totalEndpointCount?: number;
|
|
4046
4357
|
}
|
|
4358
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringCorrectnessInput {
|
|
4359
|
+
/** Required. Question answering correctness instance. */
|
|
4360
|
+
instance?: GoogleCloudAiplatformV1QuestionAnsweringCorrectnessInstance;
|
|
4361
|
+
/** Required. Spec for question answering correctness score metric. */
|
|
4362
|
+
metricSpec?: GoogleCloudAiplatformV1QuestionAnsweringCorrectnessSpec;
|
|
4363
|
+
}
|
|
4364
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringCorrectnessInstance {
|
|
4365
|
+
/** Optional. Text provided as context to answer the question. */
|
|
4366
|
+
context?: string;
|
|
4367
|
+
/** Required. The question asked and other instruction in the inference prompt. */
|
|
4368
|
+
instruction?: string;
|
|
4369
|
+
/** Required. Output of the evaluated model. */
|
|
4370
|
+
prediction?: string;
|
|
4371
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
4372
|
+
reference?: string;
|
|
4373
|
+
}
|
|
4374
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringCorrectnessResult {
|
|
4375
|
+
/** Output only. Confidence for question answering correctness score. */
|
|
4376
|
+
confidence?: number;
|
|
4377
|
+
/** Output only. Explanation for question answering correctness score. */
|
|
4378
|
+
explanation?: string;
|
|
4379
|
+
/** Output only. Question Answering Correctness score. */
|
|
4380
|
+
score?: number;
|
|
4381
|
+
}
|
|
4382
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringCorrectnessSpec {
|
|
4383
|
+
/** Optional. Whether to use instance.reference to compute question answering correctness. */
|
|
4384
|
+
useReference?: boolean;
|
|
4385
|
+
/** Optional. Which version to use for evaluation. */
|
|
4386
|
+
version?: number;
|
|
4387
|
+
}
|
|
4388
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringHelpfulnessInput {
|
|
4389
|
+
/** Required. Question answering helpfulness instance. */
|
|
4390
|
+
instance?: GoogleCloudAiplatformV1QuestionAnsweringHelpfulnessInstance;
|
|
4391
|
+
/** Required. Spec for question answering helpfulness score metric. */
|
|
4392
|
+
metricSpec?: GoogleCloudAiplatformV1QuestionAnsweringHelpfulnessSpec;
|
|
4393
|
+
}
|
|
4394
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringHelpfulnessInstance {
|
|
4395
|
+
/** Optional. Text provided as context to answer the question. */
|
|
4396
|
+
context?: string;
|
|
4397
|
+
/** Required. The question asked and other instruction in the inference prompt. */
|
|
4398
|
+
instruction?: string;
|
|
4399
|
+
/** Required. Output of the evaluated model. */
|
|
4400
|
+
prediction?: string;
|
|
4401
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
4402
|
+
reference?: string;
|
|
4403
|
+
}
|
|
4404
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringHelpfulnessResult {
|
|
4405
|
+
/** Output only. Confidence for question answering helpfulness score. */
|
|
4406
|
+
confidence?: number;
|
|
4407
|
+
/** Output only. Explanation for question answering helpfulness score. */
|
|
4408
|
+
explanation?: string;
|
|
4409
|
+
/** Output only. Question Answering Helpfulness score. */
|
|
4410
|
+
score?: number;
|
|
4411
|
+
}
|
|
4412
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringHelpfulnessSpec {
|
|
4413
|
+
/** Optional. Whether to use instance.reference to compute question answering helpfulness. */
|
|
4414
|
+
useReference?: boolean;
|
|
4415
|
+
/** Optional. Which version to use for evaluation. */
|
|
4416
|
+
version?: number;
|
|
4417
|
+
}
|
|
4418
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringQualityInput {
|
|
4419
|
+
/** Required. Question answering quality instance. */
|
|
4420
|
+
instance?: GoogleCloudAiplatformV1QuestionAnsweringQualityInstance;
|
|
4421
|
+
/** Required. Spec for question answering quality score metric. */
|
|
4422
|
+
metricSpec?: GoogleCloudAiplatformV1QuestionAnsweringQualitySpec;
|
|
4423
|
+
}
|
|
4424
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringQualityInstance {
|
|
4425
|
+
/** Required. Text to answer the question. */
|
|
4426
|
+
context?: string;
|
|
4427
|
+
/** Required. Question Answering prompt for LLM. */
|
|
4428
|
+
instruction?: string;
|
|
4429
|
+
/** Required. Output of the evaluated model. */
|
|
4430
|
+
prediction?: string;
|
|
4431
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
4432
|
+
reference?: string;
|
|
4433
|
+
}
|
|
4434
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringQualityResult {
|
|
4435
|
+
/** Output only. Confidence for question answering quality score. */
|
|
4436
|
+
confidence?: number;
|
|
4437
|
+
/** Output only. Explanation for question answering quality score. */
|
|
4438
|
+
explanation?: string;
|
|
4439
|
+
/** Output only. Question Answering Quality score. */
|
|
4440
|
+
score?: number;
|
|
4441
|
+
}
|
|
4442
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringQualitySpec {
|
|
4443
|
+
/** Optional. Whether to use instance.reference to compute question answering quality. */
|
|
4444
|
+
useReference?: boolean;
|
|
4445
|
+
/** Optional. Which version to use for evaluation. */
|
|
4446
|
+
version?: number;
|
|
4447
|
+
}
|
|
4448
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringRelevanceInput {
|
|
4449
|
+
/** Required. Question answering relevance instance. */
|
|
4450
|
+
instance?: GoogleCloudAiplatformV1QuestionAnsweringRelevanceInstance;
|
|
4451
|
+
/** Required. Spec for question answering relevance score metric. */
|
|
4452
|
+
metricSpec?: GoogleCloudAiplatformV1QuestionAnsweringRelevanceSpec;
|
|
4453
|
+
}
|
|
4454
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringRelevanceInstance {
|
|
4455
|
+
/** Optional. Text provided as context to answer the question. */
|
|
4456
|
+
context?: string;
|
|
4457
|
+
/** Required. The question asked and other instruction in the inference prompt. */
|
|
4458
|
+
instruction?: string;
|
|
4459
|
+
/** Required. Output of the evaluated model. */
|
|
4460
|
+
prediction?: string;
|
|
4461
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
4462
|
+
reference?: string;
|
|
4463
|
+
}
|
|
4464
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringRelevanceResult {
|
|
4465
|
+
/** Output only. Confidence for question answering relevance score. */
|
|
4466
|
+
confidence?: number;
|
|
4467
|
+
/** Output only. Explanation for question answering relevance score. */
|
|
4468
|
+
explanation?: string;
|
|
4469
|
+
/** Output only. Question Answering Relevance score. */
|
|
4470
|
+
score?: number;
|
|
4471
|
+
}
|
|
4472
|
+
interface GoogleCloudAiplatformV1QuestionAnsweringRelevanceSpec {
|
|
4473
|
+
/** Optional. Whether to use instance.reference to compute question answering relevance. */
|
|
4474
|
+
useReference?: boolean;
|
|
4475
|
+
/** Optional. Which version to use for evaluation. */
|
|
4476
|
+
version?: number;
|
|
4477
|
+
}
|
|
4047
4478
|
interface GoogleCloudAiplatformV1RawPredictRequest {
|
|
4048
4479
|
/** The prediction input. Supports HTTP headers and arbitrary data payload. A DeployedModel may have an upper limit on the number of instances it supports per request. When this limit it is exceeded for an AutoML model, the RawPredict method returns an error. When this limit is exceeded for a custom-trained model, the behavior varies depending on the model. You can specify the schema for each instance in the predict_schemata.instance_schema_uri field when you create a Model. This schema applies when you deploy the `Model` as a `DeployedModel` to an Endpoint and use the `RawPredict` method. */
|
|
4049
4480
|
httpBody?: GoogleApiHttpBody;
|
|
@@ -4141,12 +4572,6 @@ declare namespace gapi.client {
|
|
|
4141
4572
|
progressMessage?: string;
|
|
4142
4573
|
}
|
|
4143
4574
|
interface GoogleCloudAiplatformV1RebootPersistentResourceRequest {}
|
|
4144
|
-
interface GoogleCloudAiplatformV1ReinforcementLearningDataStats {
|
|
4145
|
-
/** Output only. Statistics computed for the preference dataset. This can be either a human preference dataset or a preference dataset generated from AI feedback. */
|
|
4146
|
-
preferenceDatasetStats?: GoogleCloudAiplatformV1DatasetStats;
|
|
4147
|
-
/** Output only. Statistics computed for the prompt dataset used during reinforcement learning. */
|
|
4148
|
-
promptDatasetStats?: GoogleCloudAiplatformV1DatasetStats;
|
|
4149
|
-
}
|
|
4150
4575
|
interface GoogleCloudAiplatformV1RemoveContextChildrenRequest {
|
|
4151
4576
|
/** The resource names of the child Contexts. */
|
|
4152
4577
|
childContexts?: string[];
|
|
@@ -4206,6 +4631,44 @@ declare namespace gapi.client {
|
|
|
4206
4631
|
/** Set to use data source powered by Vertex AI Search. */
|
|
4207
4632
|
vertexAiSearch?: GoogleCloudAiplatformV1VertexAISearch;
|
|
4208
4633
|
}
|
|
4634
|
+
interface GoogleCloudAiplatformV1RougeInput {
|
|
4635
|
+
/** Required. Repeated rouge instances. */
|
|
4636
|
+
instances?: GoogleCloudAiplatformV1RougeInstance[];
|
|
4637
|
+
/** Required. Spec for rouge score metric. */
|
|
4638
|
+
metricSpec?: GoogleCloudAiplatformV1RougeSpec;
|
|
4639
|
+
}
|
|
4640
|
+
interface GoogleCloudAiplatformV1RougeInstance {
|
|
4641
|
+
/** Required. Output of the evaluated model. */
|
|
4642
|
+
prediction?: string;
|
|
4643
|
+
/** Required. Ground truth used to compare against the prediction. */
|
|
4644
|
+
reference?: string;
|
|
4645
|
+
}
|
|
4646
|
+
interface GoogleCloudAiplatformV1RougeMetricValue {
|
|
4647
|
+
/** Output only. Rouge score. */
|
|
4648
|
+
score?: number;
|
|
4649
|
+
}
|
|
4650
|
+
interface GoogleCloudAiplatformV1RougeResults {
|
|
4651
|
+
/** Output only. Rouge metric values. */
|
|
4652
|
+
rougeMetricValues?: GoogleCloudAiplatformV1RougeMetricValue[];
|
|
4653
|
+
}
|
|
4654
|
+
interface GoogleCloudAiplatformV1RougeSpec {
|
|
4655
|
+
/** Optional. Supported rouge types are rougen[1-9], rougeL, and rougeLsum. */
|
|
4656
|
+
rougeType?: string;
|
|
4657
|
+
/** Optional. Whether to split summaries while using rougeLsum. */
|
|
4658
|
+
splitSummaries?: boolean;
|
|
4659
|
+
/** Optional. Whether to use stemmer to compute rouge score. */
|
|
4660
|
+
useStemmer?: boolean;
|
|
4661
|
+
}
|
|
4662
|
+
interface GoogleCloudAiplatformV1SafetyInput {
|
|
4663
|
+
/** Required. Safety instance. */
|
|
4664
|
+
instance?: GoogleCloudAiplatformV1SafetyInstance;
|
|
4665
|
+
/** Required. Spec for safety metric. */
|
|
4666
|
+
metricSpec?: GoogleCloudAiplatformV1SafetySpec;
|
|
4667
|
+
}
|
|
4668
|
+
interface GoogleCloudAiplatformV1SafetyInstance {
|
|
4669
|
+
/** Required. Output of the evaluated model. */
|
|
4670
|
+
prediction?: string;
|
|
4671
|
+
}
|
|
4209
4672
|
interface GoogleCloudAiplatformV1SafetyRating {
|
|
4210
4673
|
/** Output only. Indicates whether the content was filtered out because of this rating. */
|
|
4211
4674
|
blocked?: boolean;
|
|
@@ -4220,6 +4683,14 @@ declare namespace gapi.client {
|
|
|
4220
4683
|
/** Output only. Harm severity score. */
|
|
4221
4684
|
severityScore?: number;
|
|
4222
4685
|
}
|
|
4686
|
+
interface GoogleCloudAiplatformV1SafetyResult {
|
|
4687
|
+
/** Output only. Confidence for safety score. */
|
|
4688
|
+
confidence?: number;
|
|
4689
|
+
/** Output only. Explanation for safety score. */
|
|
4690
|
+
explanation?: string;
|
|
4691
|
+
/** Output only. Safety score. */
|
|
4692
|
+
score?: number;
|
|
4693
|
+
}
|
|
4223
4694
|
interface GoogleCloudAiplatformV1SafetySetting {
|
|
4224
4695
|
/** Required. Harm category. */
|
|
4225
4696
|
category?: string;
|
|
@@ -4228,6 +4699,10 @@ declare namespace gapi.client {
|
|
|
4228
4699
|
/** Required. The harm block threshold. */
|
|
4229
4700
|
threshold?: string;
|
|
4230
4701
|
}
|
|
4702
|
+
interface GoogleCloudAiplatformV1SafetySpec {
|
|
4703
|
+
/** Optional. Which version to use for evaluation. */
|
|
4704
|
+
version?: number;
|
|
4705
|
+
}
|
|
4231
4706
|
interface GoogleCloudAiplatformV1SampleConfig {
|
|
4232
4707
|
/** The percentage of data needed to be labeled in each following batch (except the first batch). */
|
|
4233
4708
|
followingBatchSamplePercentage?: number;
|
|
@@ -5748,6 +6223,16 @@ declare namespace gapi.client {
|
|
|
5748
6223
|
/** The nearest neighbors of the query entity. */
|
|
5749
6224
|
nearestNeighbors?: GoogleCloudAiplatformV1NearestNeighbors;
|
|
5750
6225
|
}
|
|
6226
|
+
interface GoogleCloudAiplatformV1Segment {
|
|
6227
|
+
/** Output only. End index in the given Part, measured in bytes. Offset from the start of the Part, exclusive, starting at zero. */
|
|
6228
|
+
endIndex?: number;
|
|
6229
|
+
/** Output only. The index of a Part object within its parent Content object. */
|
|
6230
|
+
partIndex?: number;
|
|
6231
|
+
/** Output only. Start index in the given Part, measured in bytes. Offset from the start of the Part, inclusive, starting at zero. */
|
|
6232
|
+
startIndex?: number;
|
|
6233
|
+
/** Output only. The text corresponding to the segment from the response. */
|
|
6234
|
+
text?: string;
|
|
6235
|
+
}
|
|
5751
6236
|
interface GoogleCloudAiplatformV1ServiceAccountSpec {
|
|
5752
6237
|
/** Required. If true, custom user-managed service account is enforced to run any workloads (for example, Vertex Jobs) on the resource. Otherwise, uses the [Vertex AI Custom Code Service Agent](https://cloud.google.com/vertex-ai/docs/general/access-control#service-agents). */
|
|
5753
6238
|
enableCustomServiceAccount?: boolean;
|
|
@@ -6016,6 +6501,96 @@ declare namespace gapi.client {
|
|
|
6016
6501
|
/** A list of Trials. */
|
|
6017
6502
|
trials?: GoogleCloudAiplatformV1Trial[];
|
|
6018
6503
|
}
|
|
6504
|
+
interface GoogleCloudAiplatformV1SummarizationHelpfulnessInput {
|
|
6505
|
+
/** Required. Summarization helpfulness instance. */
|
|
6506
|
+
instance?: GoogleCloudAiplatformV1SummarizationHelpfulnessInstance;
|
|
6507
|
+
/** Required. Spec for summarization helpfulness score metric. */
|
|
6508
|
+
metricSpec?: GoogleCloudAiplatformV1SummarizationHelpfulnessSpec;
|
|
6509
|
+
}
|
|
6510
|
+
interface GoogleCloudAiplatformV1SummarizationHelpfulnessInstance {
|
|
6511
|
+
/** Required. Text to be summarized. */
|
|
6512
|
+
context?: string;
|
|
6513
|
+
/** Optional. Summarization prompt for LLM. */
|
|
6514
|
+
instruction?: string;
|
|
6515
|
+
/** Required. Output of the evaluated model. */
|
|
6516
|
+
prediction?: string;
|
|
6517
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
6518
|
+
reference?: string;
|
|
6519
|
+
}
|
|
6520
|
+
interface GoogleCloudAiplatformV1SummarizationHelpfulnessResult {
|
|
6521
|
+
/** Output only. Confidence for summarization helpfulness score. */
|
|
6522
|
+
confidence?: number;
|
|
6523
|
+
/** Output only. Explanation for summarization helpfulness score. */
|
|
6524
|
+
explanation?: string;
|
|
6525
|
+
/** Output only. Summarization Helpfulness score. */
|
|
6526
|
+
score?: number;
|
|
6527
|
+
}
|
|
6528
|
+
interface GoogleCloudAiplatformV1SummarizationHelpfulnessSpec {
|
|
6529
|
+
/** Optional. Whether to use instance.reference to compute summarization helpfulness. */
|
|
6530
|
+
useReference?: boolean;
|
|
6531
|
+
/** Optional. Which version to use for evaluation. */
|
|
6532
|
+
version?: number;
|
|
6533
|
+
}
|
|
6534
|
+
interface GoogleCloudAiplatformV1SummarizationQualityInput {
|
|
6535
|
+
/** Required. Summarization quality instance. */
|
|
6536
|
+
instance?: GoogleCloudAiplatformV1SummarizationQualityInstance;
|
|
6537
|
+
/** Required. Spec for summarization quality score metric. */
|
|
6538
|
+
metricSpec?: GoogleCloudAiplatformV1SummarizationQualitySpec;
|
|
6539
|
+
}
|
|
6540
|
+
interface GoogleCloudAiplatformV1SummarizationQualityInstance {
|
|
6541
|
+
/** Required. Text to be summarized. */
|
|
6542
|
+
context?: string;
|
|
6543
|
+
/** Required. Summarization prompt for LLM. */
|
|
6544
|
+
instruction?: string;
|
|
6545
|
+
/** Required. Output of the evaluated model. */
|
|
6546
|
+
prediction?: string;
|
|
6547
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
6548
|
+
reference?: string;
|
|
6549
|
+
}
|
|
6550
|
+
interface GoogleCloudAiplatformV1SummarizationQualityResult {
|
|
6551
|
+
/** Output only. Confidence for summarization quality score. */
|
|
6552
|
+
confidence?: number;
|
|
6553
|
+
/** Output only. Explanation for summarization quality score. */
|
|
6554
|
+
explanation?: string;
|
|
6555
|
+
/** Output only. Summarization Quality score. */
|
|
6556
|
+
score?: number;
|
|
6557
|
+
}
|
|
6558
|
+
interface GoogleCloudAiplatformV1SummarizationQualitySpec {
|
|
6559
|
+
/** Optional. Whether to use instance.reference to compute summarization quality. */
|
|
6560
|
+
useReference?: boolean;
|
|
6561
|
+
/** Optional. Which version to use for evaluation. */
|
|
6562
|
+
version?: number;
|
|
6563
|
+
}
|
|
6564
|
+
interface GoogleCloudAiplatformV1SummarizationVerbosityInput {
|
|
6565
|
+
/** Required. Summarization verbosity instance. */
|
|
6566
|
+
instance?: GoogleCloudAiplatformV1SummarizationVerbosityInstance;
|
|
6567
|
+
/** Required. Spec for summarization verbosity score metric. */
|
|
6568
|
+
metricSpec?: GoogleCloudAiplatformV1SummarizationVerbositySpec;
|
|
6569
|
+
}
|
|
6570
|
+
interface GoogleCloudAiplatformV1SummarizationVerbosityInstance {
|
|
6571
|
+
/** Required. Text to be summarized. */
|
|
6572
|
+
context?: string;
|
|
6573
|
+
/** Optional. Summarization prompt for LLM. */
|
|
6574
|
+
instruction?: string;
|
|
6575
|
+
/** Required. Output of the evaluated model. */
|
|
6576
|
+
prediction?: string;
|
|
6577
|
+
/** Optional. Ground truth used to compare against the prediction. */
|
|
6578
|
+
reference?: string;
|
|
6579
|
+
}
|
|
6580
|
+
interface GoogleCloudAiplatformV1SummarizationVerbosityResult {
|
|
6581
|
+
/** Output only. Confidence for summarization verbosity score. */
|
|
6582
|
+
confidence?: number;
|
|
6583
|
+
/** Output only. Explanation for summarization verbosity score. */
|
|
6584
|
+
explanation?: string;
|
|
6585
|
+
/** Output only. Summarization Verbosity score. */
|
|
6586
|
+
score?: number;
|
|
6587
|
+
}
|
|
6588
|
+
interface GoogleCloudAiplatformV1SummarizationVerbositySpec {
|
|
6589
|
+
/** Optional. Whether to use instance.reference to compute summarization verbosity. */
|
|
6590
|
+
useReference?: boolean;
|
|
6591
|
+
/** Optional. Which version to use for evaluation. */
|
|
6592
|
+
version?: number;
|
|
6593
|
+
}
|
|
6019
6594
|
interface GoogleCloudAiplatformV1SupervisedHyperParameters {
|
|
6020
6595
|
/** Optional. Adapter size for tuning. */
|
|
6021
6596
|
adapterSize?: string;
|
|
@@ -6025,6 +6600,8 @@ declare namespace gapi.client {
|
|
|
6025
6600
|
learningRateMultiplier?: number;
|
|
6026
6601
|
}
|
|
6027
6602
|
interface GoogleCloudAiplatformV1SupervisedTuningDatasetDistribution {
|
|
6603
|
+
/** Output only. Sum of a given population of values that are billable. */
|
|
6604
|
+
billableSum?: string;
|
|
6028
6605
|
/** Output only. Defines the histogram bucket. */
|
|
6029
6606
|
buckets?: GoogleCloudAiplatformV1SupervisedTuningDatasetDistributionDatasetBucket[];
|
|
6030
6607
|
/** Output only. The maximum of the population values. */
|
|
@@ -6254,6 +6831,8 @@ declare namespace gapi.client {
|
|
|
6254
6831
|
validationFraction?: number;
|
|
6255
6832
|
}
|
|
6256
6833
|
interface GoogleCloudAiplatformV1TokensInfo {
|
|
6834
|
+
/** Optional. Optional fields for the role from the corresponding Content. */
|
|
6835
|
+
role?: string;
|
|
6257
6836
|
/** A list of token ids from the input. */
|
|
6258
6837
|
tokenIds?: string[];
|
|
6259
6838
|
/** A list of tokens from the input. */
|
|
@@ -6267,10 +6846,97 @@ declare namespace gapi.client {
|
|
|
6267
6846
|
/** Optional. Retrieval tool type. System will always execute the provided retrieval tool(s) to get external knowledge to answer the prompt. Retrieval results are presented to the model for generation. */
|
|
6268
6847
|
retrieval?: GoogleCloudAiplatformV1Retrieval;
|
|
6269
6848
|
}
|
|
6849
|
+
interface GoogleCloudAiplatformV1ToolCallValidInput {
|
|
6850
|
+
/** Required. Repeated tool call valid instances. */
|
|
6851
|
+
instances?: GoogleCloudAiplatformV1ToolCallValidInstance[];
|
|
6852
|
+
/** Required. Spec for tool call valid metric. */
|
|
6853
|
+
metricSpec?: any;
|
|
6854
|
+
}
|
|
6855
|
+
interface GoogleCloudAiplatformV1ToolCallValidInstance {
|
|
6856
|
+
/** Required. Output of the evaluated model. */
|
|
6857
|
+
prediction?: string;
|
|
6858
|
+
/** Required. Ground truth used to compare against the prediction. */
|
|
6859
|
+
reference?: string;
|
|
6860
|
+
}
|
|
6861
|
+
interface GoogleCloudAiplatformV1ToolCallValidMetricValue {
|
|
6862
|
+
/** Output only. Tool call valid score. */
|
|
6863
|
+
score?: number;
|
|
6864
|
+
}
|
|
6865
|
+
interface GoogleCloudAiplatformV1ToolCallValidResults {
|
|
6866
|
+
/** Output only. Tool call valid metric values. */
|
|
6867
|
+
toolCallValidMetricValues?: GoogleCloudAiplatformV1ToolCallValidMetricValue[];
|
|
6868
|
+
}
|
|
6869
|
+
interface GoogleCloudAiplatformV1ToolCallValidSpec {}
|
|
6270
6870
|
interface GoogleCloudAiplatformV1ToolConfig {
|
|
6271
6871
|
/** Optional. Function calling config. */
|
|
6272
6872
|
functionCallingConfig?: GoogleCloudAiplatformV1FunctionCallingConfig;
|
|
6273
6873
|
}
|
|
6874
|
+
interface GoogleCloudAiplatformV1ToolNameMatchInput {
|
|
6875
|
+
/** Required. Repeated tool name match instances. */
|
|
6876
|
+
instances?: GoogleCloudAiplatformV1ToolNameMatchInstance[];
|
|
6877
|
+
/** Required. Spec for tool name match metric. */
|
|
6878
|
+
metricSpec?: any;
|
|
6879
|
+
}
|
|
6880
|
+
interface GoogleCloudAiplatformV1ToolNameMatchInstance {
|
|
6881
|
+
/** Required. Output of the evaluated model. */
|
|
6882
|
+
prediction?: string;
|
|
6883
|
+
/** Required. Ground truth used to compare against the prediction. */
|
|
6884
|
+
reference?: string;
|
|
6885
|
+
}
|
|
6886
|
+
interface GoogleCloudAiplatformV1ToolNameMatchMetricValue {
|
|
6887
|
+
/** Output only. Tool name match score. */
|
|
6888
|
+
score?: number;
|
|
6889
|
+
}
|
|
6890
|
+
interface GoogleCloudAiplatformV1ToolNameMatchResults {
|
|
6891
|
+
/** Output only. Tool name match metric values. */
|
|
6892
|
+
toolNameMatchMetricValues?: GoogleCloudAiplatformV1ToolNameMatchMetricValue[];
|
|
6893
|
+
}
|
|
6894
|
+
interface GoogleCloudAiplatformV1ToolNameMatchSpec {}
|
|
6895
|
+
interface GoogleCloudAiplatformV1ToolParameterKeyMatchInput {
|
|
6896
|
+
/** Required. Repeated tool parameter key match instances. */
|
|
6897
|
+
instances?: GoogleCloudAiplatformV1ToolParameterKeyMatchInstance[];
|
|
6898
|
+
/** Required. Spec for tool parameter key match metric. */
|
|
6899
|
+
metricSpec?: any;
|
|
6900
|
+
}
|
|
6901
|
+
interface GoogleCloudAiplatformV1ToolParameterKeyMatchInstance {
|
|
6902
|
+
/** Required. Output of the evaluated model. */
|
|
6903
|
+
prediction?: string;
|
|
6904
|
+
/** Required. Ground truth used to compare against the prediction. */
|
|
6905
|
+
reference?: string;
|
|
6906
|
+
}
|
|
6907
|
+
interface GoogleCloudAiplatformV1ToolParameterKeyMatchMetricValue {
|
|
6908
|
+
/** Output only. Tool parameter key match score. */
|
|
6909
|
+
score?: number;
|
|
6910
|
+
}
|
|
6911
|
+
interface GoogleCloudAiplatformV1ToolParameterKeyMatchResults {
|
|
6912
|
+
/** Output only. Tool parameter key match metric values. */
|
|
6913
|
+
toolParameterKeyMatchMetricValues?: GoogleCloudAiplatformV1ToolParameterKeyMatchMetricValue[];
|
|
6914
|
+
}
|
|
6915
|
+
interface GoogleCloudAiplatformV1ToolParameterKeyMatchSpec {}
|
|
6916
|
+
interface GoogleCloudAiplatformV1ToolParameterKVMatchInput {
|
|
6917
|
+
/** Required. Repeated tool parameter key value match instances. */
|
|
6918
|
+
instances?: GoogleCloudAiplatformV1ToolParameterKVMatchInstance[];
|
|
6919
|
+
/** Required. Spec for tool parameter key value match metric. */
|
|
6920
|
+
metricSpec?: GoogleCloudAiplatformV1ToolParameterKVMatchSpec;
|
|
6921
|
+
}
|
|
6922
|
+
interface GoogleCloudAiplatformV1ToolParameterKVMatchInstance {
|
|
6923
|
+
/** Required. Output of the evaluated model. */
|
|
6924
|
+
prediction?: string;
|
|
6925
|
+
/** Required. Ground truth used to compare against the prediction. */
|
|
6926
|
+
reference?: string;
|
|
6927
|
+
}
|
|
6928
|
+
interface GoogleCloudAiplatformV1ToolParameterKVMatchMetricValue {
|
|
6929
|
+
/** Output only. Tool parameter key value match score. */
|
|
6930
|
+
score?: number;
|
|
6931
|
+
}
|
|
6932
|
+
interface GoogleCloudAiplatformV1ToolParameterKVMatchResults {
|
|
6933
|
+
/** Output only. Tool parameter key value match metric values. */
|
|
6934
|
+
toolParameterKvMatchMetricValues?: GoogleCloudAiplatformV1ToolParameterKVMatchMetricValue[];
|
|
6935
|
+
}
|
|
6936
|
+
interface GoogleCloudAiplatformV1ToolParameterKVMatchSpec {
|
|
6937
|
+
/** Optional. Whether to use STRCIT string match on parameter values. */
|
|
6938
|
+
useStrictStringMatch?: boolean;
|
|
6939
|
+
}
|
|
6274
6940
|
interface GoogleCloudAiplatformV1TrainingConfig {
|
|
6275
6941
|
/** The timeout hours for the CMLE training job, expressed in milli hours i.e. 1,000 value in this field means 1 hour. */
|
|
6276
6942
|
timeoutTrainingMilliHours?: string;
|
|
@@ -6356,10 +7022,6 @@ declare namespace gapi.client {
|
|
|
6356
7022
|
model?: string;
|
|
6357
7023
|
}
|
|
6358
7024
|
interface GoogleCloudAiplatformV1TuningDataStats {
|
|
6359
|
-
/** Statistics for distillation. */
|
|
6360
|
-
distillationDataStats?: GoogleCloudAiplatformV1DistillationDataStats;
|
|
6361
|
-
/** Statistics for reinforcement learning. */
|
|
6362
|
-
reinforcementLearningDataStats?: GoogleCloudAiplatformV1ReinforcementLearningDataStats;
|
|
6363
7025
|
/** The SFT Tuning data stats. */
|
|
6364
7026
|
supervisedTuningDataStats?: GoogleCloudAiplatformV1SupervisedTuningDataStats;
|
|
6365
7027
|
}
|
|
@@ -6700,6 +7362,30 @@ declare namespace gapi.client {
|
|
|
6700
7362
|
/** The whole units of the amount. For example if `currencyCode` is `"USD"`, then 1 unit is one US dollar. */
|
|
6701
7363
|
units?: string;
|
|
6702
7364
|
}
|
|
7365
|
+
interface IntelligenceCloudAutomlXpsMetricEntry {
|
|
7366
|
+
/** For billing metrics that are using legacy sku's, set the legacy billing metric id here. This will be sent to Chemist as the "cloudbilling.googleapis.com/argentum_metric_id" label. Otherwise leave empty. */
|
|
7367
|
+
argentumMetricId?: string;
|
|
7368
|
+
/** A double value. */
|
|
7369
|
+
doubleValue?: number;
|
|
7370
|
+
/** A signed 64-bit integer value. */
|
|
7371
|
+
int64Value?: string;
|
|
7372
|
+
/** The metric name defined in the service configuration. */
|
|
7373
|
+
metricName?: string;
|
|
7374
|
+
/** Billing system labels for this (metric, value) pair. */
|
|
7375
|
+
systemLabels?: IntelligenceCloudAutomlXpsMetricEntryLabel[];
|
|
7376
|
+
}
|
|
7377
|
+
interface IntelligenceCloudAutomlXpsMetricEntryLabel {
|
|
7378
|
+
/** The name of the label. */
|
|
7379
|
+
labelName?: string;
|
|
7380
|
+
/** The value of the label. */
|
|
7381
|
+
labelValue?: string;
|
|
7382
|
+
}
|
|
7383
|
+
interface IntelligenceCloudAutomlXpsReportingMetrics {
|
|
7384
|
+
/** The effective time training used. If set, this is used for quota management and billing. Deprecated. AutoML BE doesn't use this. Don't set. */
|
|
7385
|
+
effectiveTrainingDuration?: string;
|
|
7386
|
+
/** One entry per metric name. The values must be aggregated per metric name. */
|
|
7387
|
+
metricEntries?: IntelligenceCloudAutomlXpsMetricEntry[];
|
|
7388
|
+
}
|
|
6703
7389
|
interface BatchPredictionJobsResource {
|
|
6704
7390
|
/** Cancels a BatchPredictionJob. Starts asynchronous cancellation on the BatchPredictionJob. The server makes the best effort to cancel the job, but success is not guaranteed. Clients can use JobService.GetBatchPredictionJob or other methods to check whether the cancellation succeeded or whether the job completed despite cancellation. On a successful cancellation, the BatchPredictionJob is not deleted;instead its BatchPredictionJob.state is set to `CANCELLED`. Any files already outputted by the job are not deleted. */
|
|
6705
7391
|
cancel(request: {
|
|
@@ -9440,6 +10126,68 @@ declare namespace gapi.client {
|
|
|
9440
10126
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
9441
10127
|
uploadType?: string;
|
|
9442
10128
|
}): Request<GoogleCloudAiplatformV1ListDeploymentResourcePoolsResponse>;
|
|
10129
|
+
/** Update a DeploymentResourcePool. */
|
|
10130
|
+
patch(request: {
|
|
10131
|
+
/** V1 error format. */
|
|
10132
|
+
'$.xgafv'?: string;
|
|
10133
|
+
/** OAuth access token. */
|
|
10134
|
+
access_token?: string;
|
|
10135
|
+
/** Data format for response. */
|
|
10136
|
+
alt?: string;
|
|
10137
|
+
/** JSONP */
|
|
10138
|
+
callback?: string;
|
|
10139
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10140
|
+
fields?: string;
|
|
10141
|
+
/** 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. */
|
|
10142
|
+
key?: string;
|
|
10143
|
+
/** Immutable. The resource name of the DeploymentResourcePool. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
|
|
10144
|
+
name: string;
|
|
10145
|
+
/** OAuth 2.0 token for the current user. */
|
|
10146
|
+
oauth_token?: string;
|
|
10147
|
+
/** Returns response with indentations and line breaks. */
|
|
10148
|
+
prettyPrint?: boolean;
|
|
10149
|
+
/** 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. */
|
|
10150
|
+
quotaUser?: string;
|
|
10151
|
+
/** Required. The list of fields to update. */
|
|
10152
|
+
updateMask?: string;
|
|
10153
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10154
|
+
upload_protocol?: string;
|
|
10155
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10156
|
+
uploadType?: string;
|
|
10157
|
+
/** Request body */
|
|
10158
|
+
resource: GoogleCloudAiplatformV1DeploymentResourcePool;
|
|
10159
|
+
}): Request<GoogleLongrunningOperation>;
|
|
10160
|
+
patch(
|
|
10161
|
+
request: {
|
|
10162
|
+
/** V1 error format. */
|
|
10163
|
+
'$.xgafv'?: string;
|
|
10164
|
+
/** OAuth access token. */
|
|
10165
|
+
access_token?: string;
|
|
10166
|
+
/** Data format for response. */
|
|
10167
|
+
alt?: string;
|
|
10168
|
+
/** JSONP */
|
|
10169
|
+
callback?: string;
|
|
10170
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
10171
|
+
fields?: string;
|
|
10172
|
+
/** 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. */
|
|
10173
|
+
key?: string;
|
|
10174
|
+
/** Immutable. The resource name of the DeploymentResourcePool. Format: `projects/{project}/locations/{location}/deploymentResourcePools/{deployment_resource_pool}` */
|
|
10175
|
+
name: string;
|
|
10176
|
+
/** OAuth 2.0 token for the current user. */
|
|
10177
|
+
oauth_token?: string;
|
|
10178
|
+
/** Returns response with indentations and line breaks. */
|
|
10179
|
+
prettyPrint?: boolean;
|
|
10180
|
+
/** 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. */
|
|
10181
|
+
quotaUser?: string;
|
|
10182
|
+
/** Required. The list of fields to update. */
|
|
10183
|
+
updateMask?: string;
|
|
10184
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
10185
|
+
upload_protocol?: string;
|
|
10186
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
10187
|
+
uploadType?: string;
|
|
10188
|
+
},
|
|
10189
|
+
body: GoogleCloudAiplatformV1DeploymentResourcePool
|
|
10190
|
+
): Request<GoogleLongrunningOperation>;
|
|
9443
10191
|
/** List DeployedModels that have been deployed on this DeploymentResourcePool. */
|
|
9444
10192
|
queryDeployedModels(request?: {
|
|
9445
10193
|
/** V1 error format. */
|
|
@@ -19697,9 +20445,9 @@ declare namespace gapi.client {
|
|
|
19697
20445
|
}): Request<GoogleCloudAiplatformV1ListNasJobsResponse>;
|
|
19698
20446
|
nasTrialDetails: NasTrialDetailsResource;
|
|
19699
20447
|
}
|
|
19700
|
-
interface
|
|
19701
|
-
/**
|
|
19702
|
-
|
|
20448
|
+
interface OperationsResource {
|
|
20449
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. */
|
|
20450
|
+
cancel(request?: {
|
|
19703
20451
|
/** V1 error format. */
|
|
19704
20452
|
'$.xgafv'?: string;
|
|
19705
20453
|
/** OAuth access token. */
|
|
@@ -19712,10 +20460,10 @@ declare namespace gapi.client {
|
|
|
19712
20460
|
fields?: string;
|
|
19713
20461
|
/** 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. */
|
|
19714
20462
|
key?: string;
|
|
20463
|
+
/** The name of the operation resource to be cancelled. */
|
|
20464
|
+
name: string;
|
|
19715
20465
|
/** OAuth 2.0 token for the current user. */
|
|
19716
20466
|
oauth_token?: string;
|
|
19717
|
-
/** Required. The resource name of the Location to get the NotebookRuntime assignment. Format: `projects/{project}/locations/{location}` */
|
|
19718
|
-
parent: string;
|
|
19719
20467
|
/** Returns response with indentations and line breaks. */
|
|
19720
20468
|
prettyPrint?: boolean;
|
|
19721
20469
|
/** 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. */
|
|
@@ -19724,19 +20472,312 @@ declare namespace gapi.client {
|
|
|
19724
20472
|
upload_protocol?: string;
|
|
19725
20473
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
19726
20474
|
uploadType?: string;
|
|
19727
|
-
|
|
19728
|
-
|
|
19729
|
-
|
|
19730
|
-
|
|
19731
|
-
|
|
19732
|
-
|
|
19733
|
-
|
|
19734
|
-
|
|
19735
|
-
|
|
19736
|
-
|
|
19737
|
-
|
|
19738
|
-
|
|
19739
|
-
|
|
20475
|
+
}): Request<{}>;
|
|
20476
|
+
/** 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`. */
|
|
20477
|
+
delete(request?: {
|
|
20478
|
+
/** V1 error format. */
|
|
20479
|
+
'$.xgafv'?: string;
|
|
20480
|
+
/** OAuth access token. */
|
|
20481
|
+
access_token?: string;
|
|
20482
|
+
/** Data format for response. */
|
|
20483
|
+
alt?: string;
|
|
20484
|
+
/** JSONP */
|
|
20485
|
+
callback?: string;
|
|
20486
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20487
|
+
fields?: string;
|
|
20488
|
+
/** 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. */
|
|
20489
|
+
key?: string;
|
|
20490
|
+
/** The name of the operation resource to be deleted. */
|
|
20491
|
+
name: string;
|
|
20492
|
+
/** OAuth 2.0 token for the current user. */
|
|
20493
|
+
oauth_token?: string;
|
|
20494
|
+
/** Returns response with indentations and line breaks. */
|
|
20495
|
+
prettyPrint?: boolean;
|
|
20496
|
+
/** 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. */
|
|
20497
|
+
quotaUser?: string;
|
|
20498
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20499
|
+
upload_protocol?: string;
|
|
20500
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20501
|
+
uploadType?: string;
|
|
20502
|
+
}): Request<{}>;
|
|
20503
|
+
/** 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. */
|
|
20504
|
+
get(request?: {
|
|
20505
|
+
/** V1 error format. */
|
|
20506
|
+
'$.xgafv'?: string;
|
|
20507
|
+
/** OAuth access token. */
|
|
20508
|
+
access_token?: string;
|
|
20509
|
+
/** Data format for response. */
|
|
20510
|
+
alt?: string;
|
|
20511
|
+
/** JSONP */
|
|
20512
|
+
callback?: string;
|
|
20513
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20514
|
+
fields?: string;
|
|
20515
|
+
/** 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. */
|
|
20516
|
+
key?: string;
|
|
20517
|
+
/** The name of the operation resource. */
|
|
20518
|
+
name: string;
|
|
20519
|
+
/** OAuth 2.0 token for the current user. */
|
|
20520
|
+
oauth_token?: string;
|
|
20521
|
+
/** Returns response with indentations and line breaks. */
|
|
20522
|
+
prettyPrint?: boolean;
|
|
20523
|
+
/** 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. */
|
|
20524
|
+
quotaUser?: string;
|
|
20525
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20526
|
+
upload_protocol?: string;
|
|
20527
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20528
|
+
uploadType?: string;
|
|
20529
|
+
}): Request<GoogleLongrunningOperation>;
|
|
20530
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
20531
|
+
list(request?: {
|
|
20532
|
+
/** V1 error format. */
|
|
20533
|
+
'$.xgafv'?: string;
|
|
20534
|
+
/** OAuth access token. */
|
|
20535
|
+
access_token?: string;
|
|
20536
|
+
/** Data format for response. */
|
|
20537
|
+
alt?: string;
|
|
20538
|
+
/** JSONP */
|
|
20539
|
+
callback?: string;
|
|
20540
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20541
|
+
fields?: string;
|
|
20542
|
+
/** The standard list filter. */
|
|
20543
|
+
filter?: string;
|
|
20544
|
+
/** 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. */
|
|
20545
|
+
key?: string;
|
|
20546
|
+
/** The name of the operation's parent resource. */
|
|
20547
|
+
name: string;
|
|
20548
|
+
/** OAuth 2.0 token for the current user. */
|
|
20549
|
+
oauth_token?: string;
|
|
20550
|
+
/** The standard list page size. */
|
|
20551
|
+
pageSize?: number;
|
|
20552
|
+
/** The standard list page token. */
|
|
20553
|
+
pageToken?: string;
|
|
20554
|
+
/** Returns response with indentations and line breaks. */
|
|
20555
|
+
prettyPrint?: boolean;
|
|
20556
|
+
/** 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. */
|
|
20557
|
+
quotaUser?: string;
|
|
20558
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20559
|
+
upload_protocol?: string;
|
|
20560
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20561
|
+
uploadType?: string;
|
|
20562
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
20563
|
+
/** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
|
|
20564
|
+
wait(request?: {
|
|
20565
|
+
/** V1 error format. */
|
|
20566
|
+
'$.xgafv'?: string;
|
|
20567
|
+
/** OAuth access token. */
|
|
20568
|
+
access_token?: string;
|
|
20569
|
+
/** Data format for response. */
|
|
20570
|
+
alt?: string;
|
|
20571
|
+
/** JSONP */
|
|
20572
|
+
callback?: string;
|
|
20573
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20574
|
+
fields?: string;
|
|
20575
|
+
/** 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. */
|
|
20576
|
+
key?: string;
|
|
20577
|
+
/** The name of the operation resource to wait on. */
|
|
20578
|
+
name: string;
|
|
20579
|
+
/** OAuth 2.0 token for the current user. */
|
|
20580
|
+
oauth_token?: string;
|
|
20581
|
+
/** Returns response with indentations and line breaks. */
|
|
20582
|
+
prettyPrint?: boolean;
|
|
20583
|
+
/** 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. */
|
|
20584
|
+
quotaUser?: string;
|
|
20585
|
+
/** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
|
|
20586
|
+
timeout?: string;
|
|
20587
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20588
|
+
upload_protocol?: string;
|
|
20589
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20590
|
+
uploadType?: string;
|
|
20591
|
+
}): Request<GoogleLongrunningOperation>;
|
|
20592
|
+
}
|
|
20593
|
+
interface NotebookExecutionJobsResource {
|
|
20594
|
+
operations: OperationsResource;
|
|
20595
|
+
}
|
|
20596
|
+
interface OperationsResource {
|
|
20597
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. */
|
|
20598
|
+
cancel(request?: {
|
|
20599
|
+
/** V1 error format. */
|
|
20600
|
+
'$.xgafv'?: string;
|
|
20601
|
+
/** OAuth access token. */
|
|
20602
|
+
access_token?: string;
|
|
20603
|
+
/** Data format for response. */
|
|
20604
|
+
alt?: string;
|
|
20605
|
+
/** JSONP */
|
|
20606
|
+
callback?: string;
|
|
20607
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20608
|
+
fields?: string;
|
|
20609
|
+
/** 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. */
|
|
20610
|
+
key?: string;
|
|
20611
|
+
/** The name of the operation resource to be cancelled. */
|
|
20612
|
+
name: string;
|
|
20613
|
+
/** OAuth 2.0 token for the current user. */
|
|
20614
|
+
oauth_token?: string;
|
|
20615
|
+
/** Returns response with indentations and line breaks. */
|
|
20616
|
+
prettyPrint?: boolean;
|
|
20617
|
+
/** 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. */
|
|
20618
|
+
quotaUser?: string;
|
|
20619
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20620
|
+
upload_protocol?: string;
|
|
20621
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20622
|
+
uploadType?: string;
|
|
20623
|
+
}): Request<{}>;
|
|
20624
|
+
/** 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`. */
|
|
20625
|
+
delete(request?: {
|
|
20626
|
+
/** V1 error format. */
|
|
20627
|
+
'$.xgafv'?: string;
|
|
20628
|
+
/** OAuth access token. */
|
|
20629
|
+
access_token?: string;
|
|
20630
|
+
/** Data format for response. */
|
|
20631
|
+
alt?: string;
|
|
20632
|
+
/** JSONP */
|
|
20633
|
+
callback?: string;
|
|
20634
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20635
|
+
fields?: string;
|
|
20636
|
+
/** 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. */
|
|
20637
|
+
key?: string;
|
|
20638
|
+
/** The name of the operation resource to be deleted. */
|
|
20639
|
+
name: string;
|
|
20640
|
+
/** OAuth 2.0 token for the current user. */
|
|
20641
|
+
oauth_token?: string;
|
|
20642
|
+
/** Returns response with indentations and line breaks. */
|
|
20643
|
+
prettyPrint?: boolean;
|
|
20644
|
+
/** 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. */
|
|
20645
|
+
quotaUser?: string;
|
|
20646
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20647
|
+
upload_protocol?: string;
|
|
20648
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20649
|
+
uploadType?: string;
|
|
20650
|
+
}): Request<{}>;
|
|
20651
|
+
/** 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. */
|
|
20652
|
+
get(request?: {
|
|
20653
|
+
/** V1 error format. */
|
|
20654
|
+
'$.xgafv'?: string;
|
|
20655
|
+
/** OAuth access token. */
|
|
20656
|
+
access_token?: string;
|
|
20657
|
+
/** Data format for response. */
|
|
20658
|
+
alt?: string;
|
|
20659
|
+
/** JSONP */
|
|
20660
|
+
callback?: string;
|
|
20661
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20662
|
+
fields?: string;
|
|
20663
|
+
/** 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. */
|
|
20664
|
+
key?: string;
|
|
20665
|
+
/** The name of the operation resource. */
|
|
20666
|
+
name: string;
|
|
20667
|
+
/** OAuth 2.0 token for the current user. */
|
|
20668
|
+
oauth_token?: string;
|
|
20669
|
+
/** Returns response with indentations and line breaks. */
|
|
20670
|
+
prettyPrint?: boolean;
|
|
20671
|
+
/** 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. */
|
|
20672
|
+
quotaUser?: string;
|
|
20673
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20674
|
+
upload_protocol?: string;
|
|
20675
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20676
|
+
uploadType?: string;
|
|
20677
|
+
}): Request<GoogleLongrunningOperation>;
|
|
20678
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
20679
|
+
list(request?: {
|
|
20680
|
+
/** V1 error format. */
|
|
20681
|
+
'$.xgafv'?: string;
|
|
20682
|
+
/** OAuth access token. */
|
|
20683
|
+
access_token?: string;
|
|
20684
|
+
/** Data format for response. */
|
|
20685
|
+
alt?: string;
|
|
20686
|
+
/** JSONP */
|
|
20687
|
+
callback?: string;
|
|
20688
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20689
|
+
fields?: string;
|
|
20690
|
+
/** The standard list filter. */
|
|
20691
|
+
filter?: string;
|
|
20692
|
+
/** 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. */
|
|
20693
|
+
key?: string;
|
|
20694
|
+
/** The name of the operation's parent resource. */
|
|
20695
|
+
name: string;
|
|
20696
|
+
/** OAuth 2.0 token for the current user. */
|
|
20697
|
+
oauth_token?: string;
|
|
20698
|
+
/** The standard list page size. */
|
|
20699
|
+
pageSize?: number;
|
|
20700
|
+
/** The standard list page token. */
|
|
20701
|
+
pageToken?: string;
|
|
20702
|
+
/** Returns response with indentations and line breaks. */
|
|
20703
|
+
prettyPrint?: boolean;
|
|
20704
|
+
/** 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. */
|
|
20705
|
+
quotaUser?: string;
|
|
20706
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20707
|
+
upload_protocol?: string;
|
|
20708
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20709
|
+
uploadType?: string;
|
|
20710
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
20711
|
+
/** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
|
|
20712
|
+
wait(request?: {
|
|
20713
|
+
/** V1 error format. */
|
|
20714
|
+
'$.xgafv'?: string;
|
|
20715
|
+
/** OAuth access token. */
|
|
20716
|
+
access_token?: string;
|
|
20717
|
+
/** Data format for response. */
|
|
20718
|
+
alt?: string;
|
|
20719
|
+
/** JSONP */
|
|
20720
|
+
callback?: string;
|
|
20721
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20722
|
+
fields?: string;
|
|
20723
|
+
/** 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. */
|
|
20724
|
+
key?: string;
|
|
20725
|
+
/** The name of the operation resource to wait on. */
|
|
20726
|
+
name: string;
|
|
20727
|
+
/** OAuth 2.0 token for the current user. */
|
|
20728
|
+
oauth_token?: string;
|
|
20729
|
+
/** Returns response with indentations and line breaks. */
|
|
20730
|
+
prettyPrint?: boolean;
|
|
20731
|
+
/** 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. */
|
|
20732
|
+
quotaUser?: string;
|
|
20733
|
+
/** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
|
|
20734
|
+
timeout?: string;
|
|
20735
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20736
|
+
upload_protocol?: string;
|
|
20737
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20738
|
+
uploadType?: string;
|
|
20739
|
+
}): Request<GoogleLongrunningOperation>;
|
|
20740
|
+
}
|
|
20741
|
+
interface NotebookRuntimesResource {
|
|
20742
|
+
/** Assigns a NotebookRuntime to a user for a particular Notebook file. This method will either returns an existing assignment or generates a new one. */
|
|
20743
|
+
assign(request: {
|
|
20744
|
+
/** V1 error format. */
|
|
20745
|
+
'$.xgafv'?: string;
|
|
20746
|
+
/** OAuth access token. */
|
|
20747
|
+
access_token?: string;
|
|
20748
|
+
/** Data format for response. */
|
|
20749
|
+
alt?: string;
|
|
20750
|
+
/** JSONP */
|
|
20751
|
+
callback?: string;
|
|
20752
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
20753
|
+
fields?: string;
|
|
20754
|
+
/** 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. */
|
|
20755
|
+
key?: string;
|
|
20756
|
+
/** OAuth 2.0 token for the current user. */
|
|
20757
|
+
oauth_token?: string;
|
|
20758
|
+
/** Required. The resource name of the Location to get the NotebookRuntime assignment. Format: `projects/{project}/locations/{location}` */
|
|
20759
|
+
parent: string;
|
|
20760
|
+
/** Returns response with indentations and line breaks. */
|
|
20761
|
+
prettyPrint?: boolean;
|
|
20762
|
+
/** 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. */
|
|
20763
|
+
quotaUser?: string;
|
|
20764
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
20765
|
+
upload_protocol?: string;
|
|
20766
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20767
|
+
uploadType?: string;
|
|
20768
|
+
/** Request body */
|
|
20769
|
+
resource: GoogleCloudAiplatformV1AssignNotebookRuntimeRequest;
|
|
20770
|
+
}): Request<GoogleLongrunningOperation>;
|
|
20771
|
+
assign(
|
|
20772
|
+
request: {
|
|
20773
|
+
/** V1 error format. */
|
|
20774
|
+
'$.xgafv'?: string;
|
|
20775
|
+
/** OAuth access token. */
|
|
20776
|
+
access_token?: string;
|
|
20777
|
+
/** Data format for response. */
|
|
20778
|
+
alt?: string;
|
|
20779
|
+
/** JSONP */
|
|
20780
|
+
callback?: string;
|
|
19740
20781
|
/** Selector specifying which fields to include in a partial response. */
|
|
19741
20782
|
fields?: string;
|
|
19742
20783
|
/** 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. */
|
|
@@ -19963,6 +21004,152 @@ declare namespace gapi.client {
|
|
|
19963
21004
|
},
|
|
19964
21005
|
body: GoogleCloudAiplatformV1UpgradeNotebookRuntimeRequest
|
|
19965
21006
|
): Request<GoogleLongrunningOperation>;
|
|
21007
|
+
operations: OperationsResource;
|
|
21008
|
+
}
|
|
21009
|
+
interface OperationsResource {
|
|
21010
|
+
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. */
|
|
21011
|
+
cancel(request?: {
|
|
21012
|
+
/** V1 error format. */
|
|
21013
|
+
'$.xgafv'?: string;
|
|
21014
|
+
/** OAuth access token. */
|
|
21015
|
+
access_token?: string;
|
|
21016
|
+
/** Data format for response. */
|
|
21017
|
+
alt?: string;
|
|
21018
|
+
/** JSONP */
|
|
21019
|
+
callback?: string;
|
|
21020
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
21021
|
+
fields?: string;
|
|
21022
|
+
/** 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. */
|
|
21023
|
+
key?: string;
|
|
21024
|
+
/** The name of the operation resource to be cancelled. */
|
|
21025
|
+
name: string;
|
|
21026
|
+
/** OAuth 2.0 token for the current user. */
|
|
21027
|
+
oauth_token?: string;
|
|
21028
|
+
/** Returns response with indentations and line breaks. */
|
|
21029
|
+
prettyPrint?: boolean;
|
|
21030
|
+
/** 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. */
|
|
21031
|
+
quotaUser?: string;
|
|
21032
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21033
|
+
upload_protocol?: string;
|
|
21034
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21035
|
+
uploadType?: string;
|
|
21036
|
+
}): Request<{}>;
|
|
21037
|
+
/** 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`. */
|
|
21038
|
+
delete(request?: {
|
|
21039
|
+
/** V1 error format. */
|
|
21040
|
+
'$.xgafv'?: string;
|
|
21041
|
+
/** OAuth access token. */
|
|
21042
|
+
access_token?: string;
|
|
21043
|
+
/** Data format for response. */
|
|
21044
|
+
alt?: string;
|
|
21045
|
+
/** JSONP */
|
|
21046
|
+
callback?: string;
|
|
21047
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
21048
|
+
fields?: string;
|
|
21049
|
+
/** 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. */
|
|
21050
|
+
key?: string;
|
|
21051
|
+
/** The name of the operation resource to be deleted. */
|
|
21052
|
+
name: string;
|
|
21053
|
+
/** OAuth 2.0 token for the current user. */
|
|
21054
|
+
oauth_token?: string;
|
|
21055
|
+
/** Returns response with indentations and line breaks. */
|
|
21056
|
+
prettyPrint?: boolean;
|
|
21057
|
+
/** 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. */
|
|
21058
|
+
quotaUser?: string;
|
|
21059
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21060
|
+
upload_protocol?: string;
|
|
21061
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21062
|
+
uploadType?: string;
|
|
21063
|
+
}): Request<{}>;
|
|
21064
|
+
/** 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. */
|
|
21065
|
+
get(request?: {
|
|
21066
|
+
/** V1 error format. */
|
|
21067
|
+
'$.xgafv'?: string;
|
|
21068
|
+
/** OAuth access token. */
|
|
21069
|
+
access_token?: string;
|
|
21070
|
+
/** Data format for response. */
|
|
21071
|
+
alt?: string;
|
|
21072
|
+
/** JSONP */
|
|
21073
|
+
callback?: string;
|
|
21074
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
21075
|
+
fields?: string;
|
|
21076
|
+
/** 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. */
|
|
21077
|
+
key?: string;
|
|
21078
|
+
/** The name of the operation resource. */
|
|
21079
|
+
name: string;
|
|
21080
|
+
/** OAuth 2.0 token for the current user. */
|
|
21081
|
+
oauth_token?: string;
|
|
21082
|
+
/** Returns response with indentations and line breaks. */
|
|
21083
|
+
prettyPrint?: boolean;
|
|
21084
|
+
/** 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. */
|
|
21085
|
+
quotaUser?: string;
|
|
21086
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21087
|
+
upload_protocol?: string;
|
|
21088
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21089
|
+
uploadType?: string;
|
|
21090
|
+
}): Request<GoogleLongrunningOperation>;
|
|
21091
|
+
/** Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. */
|
|
21092
|
+
list(request?: {
|
|
21093
|
+
/** V1 error format. */
|
|
21094
|
+
'$.xgafv'?: string;
|
|
21095
|
+
/** OAuth access token. */
|
|
21096
|
+
access_token?: string;
|
|
21097
|
+
/** Data format for response. */
|
|
21098
|
+
alt?: string;
|
|
21099
|
+
/** JSONP */
|
|
21100
|
+
callback?: string;
|
|
21101
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
21102
|
+
fields?: string;
|
|
21103
|
+
/** The standard list filter. */
|
|
21104
|
+
filter?: string;
|
|
21105
|
+
/** 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. */
|
|
21106
|
+
key?: string;
|
|
21107
|
+
/** The name of the operation's parent resource. */
|
|
21108
|
+
name: string;
|
|
21109
|
+
/** OAuth 2.0 token for the current user. */
|
|
21110
|
+
oauth_token?: string;
|
|
21111
|
+
/** The standard list page size. */
|
|
21112
|
+
pageSize?: number;
|
|
21113
|
+
/** The standard list page token. */
|
|
21114
|
+
pageToken?: string;
|
|
21115
|
+
/** Returns response with indentations and line breaks. */
|
|
21116
|
+
prettyPrint?: boolean;
|
|
21117
|
+
/** 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. */
|
|
21118
|
+
quotaUser?: string;
|
|
21119
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21120
|
+
upload_protocol?: string;
|
|
21121
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21122
|
+
uploadType?: string;
|
|
21123
|
+
}): Request<GoogleLongrunningListOperationsResponse>;
|
|
21124
|
+
/** Waits until the specified long-running operation is done or reaches at most a specified timeout, returning the latest state. If the operation is already done, the latest state is immediately returned. If the timeout specified is greater than the default HTTP/RPC timeout, the HTTP/RPC timeout is used. If the server does not support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Note that this method is on a best-effort basis. It may return the latest state before the specified timeout (including immediately), meaning even an immediate response is no guarantee that the operation is done. */
|
|
21125
|
+
wait(request?: {
|
|
21126
|
+
/** V1 error format. */
|
|
21127
|
+
'$.xgafv'?: string;
|
|
21128
|
+
/** OAuth access token. */
|
|
21129
|
+
access_token?: string;
|
|
21130
|
+
/** Data format for response. */
|
|
21131
|
+
alt?: string;
|
|
21132
|
+
/** JSONP */
|
|
21133
|
+
callback?: string;
|
|
21134
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
21135
|
+
fields?: string;
|
|
21136
|
+
/** 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. */
|
|
21137
|
+
key?: string;
|
|
21138
|
+
/** The name of the operation resource to wait on. */
|
|
21139
|
+
name: string;
|
|
21140
|
+
/** OAuth 2.0 token for the current user. */
|
|
21141
|
+
oauth_token?: string;
|
|
21142
|
+
/** Returns response with indentations and line breaks. */
|
|
21143
|
+
prettyPrint?: boolean;
|
|
21144
|
+
/** 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. */
|
|
21145
|
+
quotaUser?: string;
|
|
21146
|
+
/** The maximum duration to wait before timing out. If left blank, the wait will be at most the time permitted by the underlying HTTP/RPC protocol. If RPC context deadline is also specified, the shorter one will be used. */
|
|
21147
|
+
timeout?: string;
|
|
21148
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
21149
|
+
upload_protocol?: string;
|
|
21150
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
21151
|
+
uploadType?: string;
|
|
21152
|
+
}): Request<GoogleLongrunningOperation>;
|
|
19966
21153
|
}
|
|
19967
21154
|
interface NotebookRuntimeTemplatesResource {
|
|
19968
21155
|
/** Creates a NotebookRuntimeTemplate. */
|
|
@@ -20268,6 +21455,7 @@ declare namespace gapi.client {
|
|
|
20268
21455
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
20269
21456
|
uploadType?: string;
|
|
20270
21457
|
}): Request<GoogleIamV1TestIamPermissionsResponse>;
|
|
21458
|
+
operations: OperationsResource;
|
|
20271
21459
|
}
|
|
20272
21460
|
interface OperationsResource {
|
|
20273
21461
|
/** Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`. */
|
|
@@ -26098,6 +27286,64 @@ declare namespace gapi.client {
|
|
|
26098
27286
|
operations: OperationsResource;
|
|
26099
27287
|
}
|
|
26100
27288
|
interface LocationsResource {
|
|
27289
|
+
/** Evaluates instances based on a given metric. */
|
|
27290
|
+
evaluateInstances(request: {
|
|
27291
|
+
/** V1 error format. */
|
|
27292
|
+
'$.xgafv'?: string;
|
|
27293
|
+
/** OAuth access token. */
|
|
27294
|
+
access_token?: string;
|
|
27295
|
+
/** Data format for response. */
|
|
27296
|
+
alt?: string;
|
|
27297
|
+
/** JSONP */
|
|
27298
|
+
callback?: string;
|
|
27299
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
27300
|
+
fields?: string;
|
|
27301
|
+
/** 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. */
|
|
27302
|
+
key?: string;
|
|
27303
|
+
/** Required. The resource name of the Location to evaluate the instances. Format: `projects/{project}/locations/{location}` */
|
|
27304
|
+
location: string;
|
|
27305
|
+
/** OAuth 2.0 token for the current user. */
|
|
27306
|
+
oauth_token?: string;
|
|
27307
|
+
/** Returns response with indentations and line breaks. */
|
|
27308
|
+
prettyPrint?: boolean;
|
|
27309
|
+
/** 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. */
|
|
27310
|
+
quotaUser?: string;
|
|
27311
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27312
|
+
upload_protocol?: string;
|
|
27313
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27314
|
+
uploadType?: string;
|
|
27315
|
+
/** Request body */
|
|
27316
|
+
resource: GoogleCloudAiplatformV1EvaluateInstancesRequest;
|
|
27317
|
+
}): Request<GoogleCloudAiplatformV1EvaluateInstancesResponse>;
|
|
27318
|
+
evaluateInstances(
|
|
27319
|
+
request: {
|
|
27320
|
+
/** V1 error format. */
|
|
27321
|
+
'$.xgafv'?: string;
|
|
27322
|
+
/** OAuth access token. */
|
|
27323
|
+
access_token?: string;
|
|
27324
|
+
/** Data format for response. */
|
|
27325
|
+
alt?: string;
|
|
27326
|
+
/** JSONP */
|
|
27327
|
+
callback?: string;
|
|
27328
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
27329
|
+
fields?: string;
|
|
27330
|
+
/** 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. */
|
|
27331
|
+
key?: string;
|
|
27332
|
+
/** Required. The resource name of the Location to evaluate the instances. Format: `projects/{project}/locations/{location}` */
|
|
27333
|
+
location: string;
|
|
27334
|
+
/** OAuth 2.0 token for the current user. */
|
|
27335
|
+
oauth_token?: string;
|
|
27336
|
+
/** Returns response with indentations and line breaks. */
|
|
27337
|
+
prettyPrint?: boolean;
|
|
27338
|
+
/** 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. */
|
|
27339
|
+
quotaUser?: string;
|
|
27340
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
27341
|
+
upload_protocol?: string;
|
|
27342
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
27343
|
+
uploadType?: string;
|
|
27344
|
+
},
|
|
27345
|
+
body: GoogleCloudAiplatformV1EvaluateInstancesRequest
|
|
27346
|
+
): Request<GoogleCloudAiplatformV1EvaluateInstancesResponse>;
|
|
26101
27347
|
/** Gets information about a location. */
|
|
26102
27348
|
get(request?: {
|
|
26103
27349
|
/** V1 error format. */
|
|
@@ -26175,6 +27421,7 @@ declare namespace gapi.client {
|
|
|
26175
27421
|
modelDeploymentMonitoringJobs: ModelDeploymentMonitoringJobsResource;
|
|
26176
27422
|
models: ModelsResource;
|
|
26177
27423
|
nasJobs: NasJobsResource;
|
|
27424
|
+
notebookExecutionJobs: NotebookExecutionJobsResource;
|
|
26178
27425
|
notebookRuntimes: NotebookRuntimesResource;
|
|
26179
27426
|
notebookRuntimeTemplates: NotebookRuntimeTemplatesResource;
|
|
26180
27427
|
operations: OperationsResource;
|