|
10004 | 10004 | ], |
10005 | 10005 | "parameters": { |
10006 | 10006 | "name": { |
10007 | | - "description": "Output only. The resource name of the Endpoint.", |
| 10007 | + "description": "Identifier. The resource name of the Endpoint.", |
10008 | 10008 | "location": "path", |
10009 | 10009 | "pattern": "^projects/[^/]+/locations/[^/]+/endpoints/[^/]+$", |
10010 | 10010 | "required": true, |
|
10240 | 10240 | ], |
10241 | 10241 | "parameters": { |
10242 | 10242 | "name": { |
10243 | | - "description": "Output only. The resource name of the Endpoint.", |
| 10243 | + "description": "Identifier. The resource name of the Endpoint.", |
10244 | 10244 | "location": "path", |
10245 | 10245 | "pattern": "^projects/[^/]+/locations/[^/]+/endpoints/[^/]+$", |
10246 | 10246 | "required": true, |
|
30639 | 30639 | } |
30640 | 30640 | } |
30641 | 30641 | }, |
30642 | | - "revision": "20260106", |
| 30642 | + "revision": "20260110", |
30643 | 30643 | "rootUrl": "https://aiplatform.googleapis.com/", |
30644 | 30644 | "schemas": { |
30645 | 30645 | "CloudAiLargeModelsVisionGenerateVideoResponse": { |
|
31183 | 31183 | }, |
31184 | 31184 | "type": "object" |
31185 | 31185 | }, |
| 31186 | + "GoogleCloudAiplatformV1AggregationOutput": { |
| 31187 | + "description": "The aggregation result for the entire dataset and all metrics.", |
| 31188 | + "id": "GoogleCloudAiplatformV1AggregationOutput", |
| 31189 | + "properties": { |
| 31190 | + "aggregationResults": { |
| 31191 | + "description": "One AggregationResult per metric.", |
| 31192 | + "items": { |
| 31193 | + "$ref": "GoogleCloudAiplatformV1AggregationResult" |
| 31194 | + }, |
| 31195 | + "type": "array" |
| 31196 | + }, |
| 31197 | + "dataset": { |
| 31198 | + "$ref": "GoogleCloudAiplatformV1EvaluationDataset", |
| 31199 | + "description": "The dataset used for evaluation \u0026 aggregation." |
| 31200 | + } |
| 31201 | + }, |
| 31202 | + "type": "object" |
| 31203 | + }, |
| 31204 | + "GoogleCloudAiplatformV1AggregationResult": { |
| 31205 | + "description": "The aggregation result for a single metric.", |
| 31206 | + "id": "GoogleCloudAiplatformV1AggregationResult", |
| 31207 | + "properties": { |
| 31208 | + "aggregationMetric": { |
| 31209 | + "description": "Aggregation metric.", |
| 31210 | + "enum": [ |
| 31211 | + "AGGREGATION_METRIC_UNSPECIFIED", |
| 31212 | + "AVERAGE", |
| 31213 | + "MODE", |
| 31214 | + "STANDARD_DEVIATION", |
| 31215 | + "VARIANCE", |
| 31216 | + "MINIMUM", |
| 31217 | + "MAXIMUM", |
| 31218 | + "MEDIAN", |
| 31219 | + "PERCENTILE_P90", |
| 31220 | + "PERCENTILE_P95", |
| 31221 | + "PERCENTILE_P99" |
| 31222 | + ], |
| 31223 | + "enumDescriptions": [ |
| 31224 | + "Unspecified aggregation metric.", |
| 31225 | + "Average aggregation metric. Not supported for Pairwise metric.", |
| 31226 | + "Mode aggregation metric.", |
| 31227 | + "Standard deviation aggregation metric. Not supported for pairwise metric.", |
| 31228 | + "Variance aggregation metric. Not supported for pairwise metric.", |
| 31229 | + "Minimum aggregation metric. Not supported for pairwise metric.", |
| 31230 | + "Maximum aggregation metric. Not supported for pairwise metric.", |
| 31231 | + "Median aggregation metric. Not supported for pairwise metric.", |
| 31232 | + "90th percentile aggregation metric. Not supported for pairwise metric.", |
| 31233 | + "95th percentile aggregation metric. Not supported for pairwise metric.", |
| 31234 | + "99th percentile aggregation metric. Not supported for pairwise metric." |
| 31235 | + ], |
| 31236 | + "type": "string" |
| 31237 | + }, |
| 31238 | + "bleuMetricValue": { |
| 31239 | + "$ref": "GoogleCloudAiplatformV1BleuMetricValue", |
| 31240 | + "description": "Results for bleu metric." |
| 31241 | + }, |
| 31242 | + "customCodeExecutionResult": { |
| 31243 | + "$ref": "GoogleCloudAiplatformV1CustomCodeExecutionResult", |
| 31244 | + "description": "Result for code execution metric." |
| 31245 | + }, |
| 31246 | + "exactMatchMetricValue": { |
| 31247 | + "$ref": "GoogleCloudAiplatformV1ExactMatchMetricValue", |
| 31248 | + "description": "Results for exact match metric." |
| 31249 | + }, |
| 31250 | + "pairwiseMetricResult": { |
| 31251 | + "$ref": "GoogleCloudAiplatformV1PairwiseMetricResult", |
| 31252 | + "description": "Result for pairwise metric." |
| 31253 | + }, |
| 31254 | + "pointwiseMetricResult": { |
| 31255 | + "$ref": "GoogleCloudAiplatformV1PointwiseMetricResult", |
| 31256 | + "description": "Result for pointwise metric." |
| 31257 | + }, |
| 31258 | + "rougeMetricValue": { |
| 31259 | + "$ref": "GoogleCloudAiplatformV1RougeMetricValue", |
| 31260 | + "description": "Results for rouge metric." |
| 31261 | + } |
| 31262 | + }, |
| 31263 | + "type": "object" |
| 31264 | + }, |
31186 | 31265 | "GoogleCloudAiplatformV1Annotation": { |
31187 | 31266 | "description": "Used to assign specific AnnotationSpec to a particular area of a DataItem or the whole part of the DataItem.", |
31188 | 31267 | "id": "GoogleCloudAiplatformV1Annotation", |
|
31699 | 31778 | "id": "GoogleCloudAiplatformV1AutoscalingMetricSpec", |
31700 | 31779 | "properties": { |
31701 | 31780 | "metricName": { |
31702 | | - "description": "Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.googleapis.com/prediction/online/request_count` * `pubsub.googleapis.com/subscription/num_undelivered_messages`", |
| 31781 | + "description": "Required. The resource metric name. Supported metrics: * For Online Prediction: * `aiplatform.googleapis.com/prediction/online/accelerator/duty_cycle` * `aiplatform.googleapis.com/prediction/online/cpu/utilization` * `aiplatform.googleapis.com/prediction/online/request_count` * `pubsub.googleapis.com/subscription/num_undelivered_messages` * `prometheus.googleapis.com/vertex_dcgm_fi_dev_gpu_util` * `prometheus.googleapis.com/vertex_vllm_gpu_cache_usage_perc` * `prometheus.googleapis.com/vertex_vllm_num_requests_waiting`", |
31703 | 31782 | "type": "string" |
31704 | 31783 | }, |
31705 | 31784 | "target": { |
|
34072 | 34151 | }, |
34073 | 34152 | "type": "object" |
34074 | 34153 | }, |
| 34154 | + "GoogleCloudAiplatformV1CustomCodeExecutionResult": { |
| 34155 | + "description": "Result for custom code execution metric.", |
| 34156 | + "id": "GoogleCloudAiplatformV1CustomCodeExecutionResult", |
| 34157 | + "properties": { |
| 34158 | + "score": { |
| 34159 | + "description": "Output only. Custom code execution score.", |
| 34160 | + "format": "float", |
| 34161 | + "readOnly": true, |
| 34162 | + "type": "number" |
| 34163 | + } |
| 34164 | + }, |
| 34165 | + "type": "object" |
| 34166 | + }, |
34075 | 34167 | "GoogleCloudAiplatformV1CustomCodeExecutionSpec": { |
34076 | 34168 | "description": "Specificies a metric that is populated by evaluating user-defined Python code.", |
34077 | 34169 | "id": "GoogleCloudAiplatformV1CustomCodeExecutionSpec", |
|
35812 | 35904 | "type": "string" |
35813 | 35905 | }, |
35814 | 35906 | "name": { |
35815 | | - "description": "Output only. The resource name of the Endpoint.", |
35816 | | - "readOnly": true, |
| 35907 | + "description": "Identifier. The resource name of the Endpoint.", |
35817 | 35908 | "type": "string" |
35818 | 35909 | }, |
35819 | 35910 | "network": { |
|
36064 | 36155 | }, |
36065 | 36156 | "type": "object" |
36066 | 36157 | }, |
| 36158 | + "GoogleCloudAiplatformV1EvaluateDatasetResponse": { |
| 36159 | + "description": "The results from an evaluation run performed by the EvaluationService.", |
| 36160 | + "id": "GoogleCloudAiplatformV1EvaluateDatasetResponse", |
| 36161 | + "properties": { |
| 36162 | + "aggregationOutput": { |
| 36163 | + "$ref": "GoogleCloudAiplatformV1AggregationOutput", |
| 36164 | + "description": "Output only. Aggregation statistics derived from results of EvaluationService.", |
| 36165 | + "readOnly": true |
| 36166 | + }, |
| 36167 | + "outputInfo": { |
| 36168 | + "$ref": "GoogleCloudAiplatformV1OutputInfo", |
| 36169 | + "description": "Output only. Output info for EvaluationService.", |
| 36170 | + "readOnly": true |
| 36171 | + } |
| 36172 | + }, |
| 36173 | + "type": "object" |
| 36174 | + }, |
36067 | 36175 | "GoogleCloudAiplatformV1EvaluateInstancesRequest": { |
36068 | 36176 | "description": "Request message for EvaluationService.EvaluateInstances.", |
36069 | 36177 | "id": "GoogleCloudAiplatformV1EvaluateInstancesRequest", |
|
47642 | 47750 | }, |
47643 | 47751 | "type": "object" |
47644 | 47752 | }, |
| 47753 | + "GoogleCloudAiplatformV1OutputInfo": { |
| 47754 | + "description": "Describes the info for output of EvaluationService.", |
| 47755 | + "id": "GoogleCloudAiplatformV1OutputInfo", |
| 47756 | + "properties": { |
| 47757 | + "gcsOutputDirectory": { |
| 47758 | + "description": "Output only. The full path of the Cloud Storage directory created, into which the evaluation results and aggregation results are written.", |
| 47759 | + "readOnly": true, |
| 47760 | + "type": "string" |
| 47761 | + } |
| 47762 | + }, |
| 47763 | + "type": "object" |
| 47764 | + }, |
47645 | 47765 | "GoogleCloudAiplatformV1PSCAutomationConfig": { |
47646 | 47766 | "description": "PSC config that is used to automatically create PSC endpoints in the user projects.", |
47647 | 47767 | "id": "GoogleCloudAiplatformV1PSCAutomationConfig", |
|
47997 | 48117 | "description": "per part media resolution. Media resolution for the input media." |
47998 | 48118 | }, |
47999 | 48119 | "text": { |
48000 | | - "description": "Optional. The text content of the part.", |
| 48120 | + "description": "Optional. The text content of the part. When sent from the VSCode Gemini Code Assist extension, references to @mentioned items will be converted to markdown boldface text. For example `@my-repo` will be converted to and sent as `**my-repo**` by the IDE agent.", |
48001 | 48121 | "type": "string" |
48002 | 48122 | }, |
48003 | 48123 | "thought": { |
|
51457 | 51577 | "type": "string" |
51458 | 51578 | }, |
51459 | 51579 | "pythonVersion": { |
51460 | | - "description": "Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, the default value is 3.10.", |
| 51580 | + "description": "Optional. The Python version. Supported values are 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, the default value is 3.10.", |
51461 | 51581 | "type": "string" |
51462 | 51582 | }, |
51463 | 51583 | "requirementsGcsUri": { |
|
51545 | 51665 | "type": "string" |
51546 | 51666 | }, |
51547 | 51667 | "version": { |
51548 | | - "description": "Optional. The version of Python to use. Support version includes 3.9, 3.10, 3.11, 3.12, 3.13. If not specified, default value is 3.10.", |
| 51668 | + "description": "Optional. The version of Python to use. Support version includes 3.9, 3.10, 3.11, 3.12, 3.13, 3.14. If not specified, default value is 3.10.", |
51549 | 51669 | "type": "string" |
51550 | 51670 | } |
51551 | 51671 | }, |
|
0 commit comments